add pullups for kopflos ethernet
This commit is contained in:
parent
bd20b31a5c
commit
33cfe59614
|
@ -76,10 +76,10 @@ _io_vx = [
|
||||||
IOStandard("LVCMOS33")
|
IOStandard("LVCMOS33")
|
||||||
),
|
),
|
||||||
("eth", 0,
|
("eth", 0,
|
||||||
Subsignal("rx_data", Pins("N1 P2")),
|
Subsignal("rx_data", Pins("N1 P2"), Misc("PULLMODE=UP")),
|
||||||
Subsignal("tx_data", Pins("T2 R2")),
|
Subsignal("tx_data", Pins("T2 R2")),
|
||||||
Subsignal("tx_en", Pins("P3")),
|
Subsignal("tx_en", Pins("P3")),
|
||||||
Subsignal("crs_dv", Pins("M3")),
|
Subsignal("crs_dv", Pins("M3"), Misc("PULLMODE=UP")),
|
||||||
Subsignal("rst_n", Pins("N4")),
|
Subsignal("rst_n", Pins("N4")),
|
||||||
IOStandard("LVCMOS33")
|
IOStandard("LVCMOS33")
|
||||||
),
|
),
|
||||||
|
|
|
@ -151,7 +151,6 @@ class BaseSoC(SoCCore):
|
||||||
clock_pads = platform.request("eth_clocks"),
|
clock_pads = platform.request("eth_clocks"),
|
||||||
pads = platform.request("eth"),
|
pads = platform.request("eth"),
|
||||||
with_hw_init_reset=True,
|
with_hw_init_reset=True,
|
||||||
hw_init_mode_cfg=[1,1,1],
|
|
||||||
refclk_cd=None)
|
refclk_cd=None)
|
||||||
self.add_ethernet(phy=self.ethphy)
|
self.add_ethernet(phy=self.ethphy)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue