Skip to content

Commit 5ce48cc

Browse files
committed
net: cadence: macb: enable EEE for Raspberry Pi RP1
Enable IEEE 802.3az Energy Efficient Ethernet on the Raspberry Pi 5's RP1 southbridge by adding MACB_CAPS_EEE to its platform config. The RP1 contains a Cadence GEM_GXL MAC (revision 0x00070109) paired with a Broadcom BCM54213PE PHY, both of which support EEE at 1000BASE-T and 100BASE-TX. Signed-off-by: Nicolai Buchwitz <nb@tipi-net.de>
1 parent 8040ebb commit 5ce48cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/net/ethernet/cadence/macb_main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5206,7 +5206,8 @@ static const struct macb_config versal_config = {
52065206
static const struct macb_config raspberrypi_rp1_config = {
52075207
.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_CLK_HW_CHG |
52085208
MACB_CAPS_JUMBO |
5209-
MACB_CAPS_GEM_HAS_PTP,
5209+
MACB_CAPS_GEM_HAS_PTP |
5210+
MACB_CAPS_EEE,
52105211
.dma_burst_length = 16,
52115212
.clk_init = macb_clk_init,
52125213
.init = macb_init,

0 commit comments

Comments
 (0)