-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
litepcie/tlp/packetizer: apply 256bit patch to devices in xcau series…
… as well
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# This file is part of LitePCIe. | ||
# | ||
# Copyright (c) 2015-2023 Florent Kermarrec <[email protected]> | ||
# Copyright (c) 2024 John Simons <[email protected]> | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
from migen import * | ||
|
@@ -804,7 +805,7 @@ def __init__(self, data_width, endianness, address_width=32, capabilities=["REQU | |
|
||
# On Ultrascale(+) / 256-bit, force to 64-bit (for 4DWs format). | ||
try: | ||
force_64b = (LiteXContext.platform.device[:4] in ["xcku", "xcvu", "xczu"]) and (data_width in [256]) | ||
force_64b = (LiteXContext.platform.device[:4] in ["xcku", "xcvu", "xczu", 'xcau']) and (data_width in [256]) | ||
except: | ||
force_64b = False | ||
|
||
|