Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
migen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-source
migen
Commits
1f82faa6
Commit
1f82faa6
authored
7 years ago
by
Sebastien Bourdeauducq
Browse files
Options
Downloads
Patches
Plain Diff
ku: fix IDDRE1 clocking
Prevents warnings (and more?) about CB being driven without a clock buffer.
parent
96f2fa6e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
migen/build/xilinx/common.py
+2
-1
2 additions, 1 deletion
migen/build/xilinx/common.py
with
2 additions
and
1 deletion
migen/build/xilinx/common.py
+
2
−
1
View file @
1f82faa6
...
...
@@ -206,9 +206,10 @@ class XilinxDDRInputImplKU(Module):
self
.
specials
+=
Instance
(
"
IDDRE1
"
,
p_DDR_CLK_EDGE
=
"
SAME_EDGE_PIPELINED
"
,
p_IS_C_INVERTED
=
0
,
p_IS_CB_INVERTED
=
1
,
i_D
=
i
,
o_Q1
=
o1
,
o_Q2
=
o2
,
i_C
=
clk
,
i_CB
=
~
clk
,
i_C
=
clk
,
i_CB
=
clk
,
i_R
=
0
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment