-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update cn0363 spi engine #1183
Update cn0363 spi engine #1183
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# cn0363 | ||
|
||
Pin Port Schematic_name System_top_name IOSTANDARD Termination | ||
|
||
PMOD [2] PMOD JA1 GAIN0 gain0_o LVCMOS33 #N/A | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The ports and pins should be updated similarly to the pulsar project. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
PMOD [4] PMOD JA2 GAIN1 gain1_o LVCMOS33 #N/A | ||
PMOD [8] PMOD JA4 EXT_LED_CLK led_clk_o LVCMOS33 #N/A | ||
PMOD [6] PMOD JA3 DA_CSn spi_cs[1] LVCMOS33 #N/A | ||
PMOD [1] PMOD JA7 AD_CSn spi_cs[0] LVCMOS33 #N/A | ||
PMOD [3] PMOD JA8 AD_DIN spi_sdo LVCMOS33 PULLTYPE PULLUP | ||
PMOD [5] PMOD JA9 AD_DOUT spi_sdi LVCMOS33 PULLTYPE PULLUP | ||
PMOD [7] PMOD JA10 AD_CLK spi_sclk LVCMOS33 #N/A |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,11 @@ | |
|
||
# PMOD JA | ||
|
||
set_property PACKAGE_PIN Y11 [get_ports gain0_o] | ||
set_property IOSTANDARD LVCMOS33 [get_ports gain0_o] | ||
set_property PACKAGE_PIN AA11 [get_ports gain1_o] | ||
set_property IOSTANDARD LVCMOS33 [get_ports gain1_o] | ||
set_property PACKAGE_PIN AA9 [get_ports led_clk_o] | ||
set_property IOSTANDARD LVCMOS33 [get_ports led_clk_o] | ||
set_property PACKAGE_PIN Y10 [get_ports {spi_cs[1]}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {spi_cs[1]}] | ||
|
||
set_property PACKAGE_PIN AB11 [get_ports {spi_cs[0]}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {spi_cs[0]}] | ||
set_property PACKAGE_PIN AB10 [get_ports spi_sdo] | ||
set_property IOSTANDARD LVCMOS33 [get_ports spi_sdo] | ||
set_property PULLUP true [get_ports spi_sdo] | ||
set_property PACKAGE_PIN AB9 [get_ports spi_sdi] | ||
set_property IOSTANDARD LVCMOS33 [get_ports spi_sdi] | ||
set_property PULLUP true [get_ports spi_sdi] | ||
set_property PACKAGE_PIN AA8 [get_ports spi_sclk] | ||
set_property IOSTANDARD LVCMOS33 [get_ports spi_sclk] | ||
|
||
set_property -dict {PACKAGE_PIN Y11 IOSTANDARD LVCMOS33} [get_ports gain0_o] ; ## PMOD [2] PMOD JA1 IO_L10P_T1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comments should be revised because they refer to ports that are routed to the FMC connector. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
set_property -dict {PACKAGE_PIN AA11 IOSTANDARD LVCMOS33} [get_ports gain1_o] ; ## PMOD [4] PMOD JA2 IO_L8P_T1 | ||
set_property -dict {PACKAGE_PIN AA9 IOSTANDARD LVCMOS33} [get_ports led_clk_o] ; ## PMOD [8] PMOD JA4 IO_L11P_T1_SRCC | ||
set_property -dict {PACKAGE_PIN Y10 IOSTANDARD LVCMOS33} [get_ports {spi_cs[1]}] ; ## PMOD [6] PMOD JA3 IO_L10N_T1 | ||
set_property -dict {PACKAGE_PIN AB11 IOSTANDARD LVCMOS33} [get_ports {spi_cs[0]}] ; ## PMOD [1] PMOD JA7 IO_L8N_T1 | ||
set_property -dict {PACKAGE_PIN AB10 IOSTANDARD LVCMOS33 PULLUP true} [get_ports spi_sdo] ; ## PMOD [3] PMOD JA8 IO_L9P_T1_DQS | ||
set_property -dict {PACKAGE_PIN AB9 IOSTANDARD LVCMOS33 PULLUP true} [get_ports spi_sdi] ; ## PMOD [5] PMOD JA9 IO_L9N_T1_DQS | ||
set_property -dict {PACKAGE_PIN AA8 IOSTANDARD LVCMOS33} [get_ports spi_sclk] ; ## PMOD [7] PMOD JA10 IO_L11N_T1_SRCC | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add an empty line. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add an empty line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.