Skip to content

Commit f392ad2

Browse files
committedAug 20, 2017
migen: add second SPI flash, RTM serial, and second serial
1 parent 38fe2f9 commit f392ad2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

Diff for: ‎migen/build/platforms/sinara/sayma_amc.py

+18
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@
1515
Subsignal("rx", Pins("AL8")),
1616
IOStandard("LVCMOS18")
1717
),
18+
("serial", 1,
19+
Subsignal("tx", Pins("M27")),
20+
Subsignal("rx", Pins("L27")),
21+
IOStandard("LVCMOS18")
22+
),
23+
("serial_rtm", 0,
24+
Subsignal("tx", Pins("G27")),
25+
Subsignal("rx", Pins("H27")),
26+
IOStandard("LVCMOS18")
27+
),
28+
29+
# this is the second SPI flash (not containing the bitstream)
30+
# clock is shared with the bitstream flash and needs to be accessed through STARTUPE3
31+
("spiflash", 0,
32+
Subsignal("cs_n", Pins("K21")),
33+
Subsignal("dq", Pins("M20 L20 R21 R22")),
34+
IOStandard("LVCMOS25")
35+
),
1836

1937
("ddram_32", 1,
2038
Subsignal("a", Pins(

0 commit comments

Comments
 (0)