Skip to content

Commit

Permalink
phy/a7sataphy: use similar RXPD/TXPD than k7sataphy.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Nov 11, 2020
1 parent 7fe9a22 commit 86420ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litesata/phy/a7sataphy.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,8 @@ class Open(Signal): pass
i_PMARSVDIN4 = 0b0,

# Power-Down Ports
i_RXPD = Cat(rx_init.gtrxpd, rx_init.gtrxpd),
i_TXPD = 0b00,
i_RXPD = Replicate(self.rxpd, 2),
i_TXPD = Replicate(txpd, 2),

# RX 8B/10B Decoder Ports
i_SETERRSTATUS = 0,
Expand Down

0 comments on commit 86420ed

Please sign in to comment.