Skip to content

Commit

Permalink
targets/kc705: update sata pads.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Oct 30, 2020
1 parent a410e44 commit e950a4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions litex_boards/targets/kc705.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ def __init__(self, sys_clk_freq=int(150e6), with_ethernet=False, with_sata=False
# IOs
_sata_io = [
# SFP 2 SATA Adapter / https://shop.trenz-electronic.de/en/TE0424-01-SFP-2-SATA-Adapter
("sfp", 0,
Subsignal("txp", Pins("H2")),
Subsignal("txn", Pins("H1")),
Subsignal("rxp", Pins("G4")),
Subsignal("rxn", Pins("G3")),
("sfp2sata", 0,
Subsignal("tx_p", Pins("H2")),
Subsignal("tx_n", Pins("H1")),
Subsignal("rx_p", Pins("G4")),
Subsignal("rx_n", Pins("G3")),
),
]
platform.add_extension(_sata_io)
Expand All @@ -112,7 +112,7 @@ def __init__(self, sys_clk_freq=int(150e6), with_ethernet=False, with_sata=False
# PHY
self.submodules.sata_phy = LiteSATAPHY(platform.device,
refclk = sata_refclk,
pads = platform.request("sfp"),
pads = platform.request("sfp2sata"),
gen = "gen2",
clk_freq = sys_clk_freq,
data_width = 16)
Expand Down

0 comments on commit e950a4a

Please sign in to comment.