Skip to content

Commit 92ba330

Browse files
nbuchwitzkuba-moo
authored andcommitted
net: cadence: macb: enable EEE for Raspberry Pi RP1
Set MACB_CAPS_EEE for the Raspberry Pi 5 RP1 southbridge (Cadence GEM_GXL rev 0x00070109 paired with BCM54213PE PHY). EEE has been verified on RP1 hardware: the LPI counter registers at 0x270-0x27c return valid data, the TXLPIEN bit in NCR (bit 19) controls LPI transmission correctly, and ethtool --show-eee reports the negotiated state after link-up. Other GEM variants that share the same LPI register layout (SAMA5D2, SAME70, PIC32CZ) can be enabled by adding MACB_CAPS_EEE to their respective config entries once tested. Reviewed-by: Claudiu Beznea <claudiu.beznea@tuxon.dev> Reviewed-by: Théo Lebrun <theo.lebrun@bootlin.com> Signed-off-by: Nicolai Buchwitz <nb@tipi-net.de> Link: https://patch.msgid.link/20260304105432.631186-5-nb@tipi-net.de Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 61332b7 commit 92ba330

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/net/ethernet/cadence/macb_main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5537,7 +5537,8 @@ static const struct macb_config eyeq5_config = {
55375537
static const struct macb_config raspberrypi_rp1_config = {
55385538
.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_CLK_HW_CHG |
55395539
MACB_CAPS_JUMBO |
5540-
MACB_CAPS_GEM_HAS_PTP,
5540+
MACB_CAPS_GEM_HAS_PTP |
5541+
MACB_CAPS_EEE,
55415542
.dma_burst_length = 16,
55425543
.clk_init = macb_clk_init,
55435544
.init = macb_init,

0 commit comments

Comments
 (0)