Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex-boards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kestrel Collaboration
Kestrel LiteX
litex-boards
Commits
75f7120f
Commit
75f7120f
authored
Mar 11, 2021
by
Florent Kermarrec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
targets/Ultrascale: Fix build since idelay's reset is now handled by the PLL (with_reset=True).
parent
8d3aaa8e
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
7 deletions
+0
-7
litex_boards/targets/alveo_u250.py
litex_boards/targets/alveo_u250.py
+0
-1
litex_boards/targets/alveo_u280.py
litex_boards/targets/alveo_u280.py
+0
-1
litex_boards/targets/kcu105.py
litex_boards/targets/kcu105.py
+0
-1
litex_boards/targets/mercury_xu5.py
litex_boards/targets/mercury_xu5.py
+0
-1
litex_boards/targets/vcu118.py
litex_boards/targets/vcu118.py
+0
-1
litex_boards/targets/xcu1525.py
litex_boards/targets/xcu1525.py
+0
-1
litex_boards/targets/zcu104.py
litex_boards/targets/zcu104.py
+0
-1
No files found.
litex_boards/targets/alveo_u250.py
View file @
75f7120f
...
...
@@ -52,7 +52,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
litex_boards/targets/alveo_u280.py
View file @
75f7120f
...
...
@@ -51,7 +51,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
litex_boards/targets/kcu105.py
View file @
75f7120f
...
...
@@ -55,7 +55,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
litex_boards/targets/mercury_xu5.py
View file @
75f7120f
...
...
@@ -48,7 +48,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
litex_boards/targets/vcu118.py
View file @
75f7120f
...
...
@@ -49,7 +49,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
litex_boards/targets/xcu1525.py
View file @
75f7120f
...
...
@@ -51,7 +51,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USPIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
litex_boards/targets/zcu104.py
View file @
75f7120f
...
...
@@ -50,7 +50,6 @@ class _CRG(Module):
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys
.
clk
),
Instance
(
"BUFGCE"
,
name
=
"main_bufgce"
,
i_CE
=
1
,
i_I
=
self
.
cd_pll4x
.
clk
,
o_O
=
self
.
cd_sys4x
.
clk
),
AsyncResetSynchronizer
(
self
.
cd_idelay
,
~
pll
.
locked
),
]
self
.
submodules
.
idelayctrl
=
USIDELAYCTRL
(
cd_ref
=
self
.
cd_idelay
,
cd_sys
=
self
.
cd_sys
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment