mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Describe the Ethernet LEDs for the Raspberry Pi 4 model B board as well as the Raspberry Pi 4 CM board. The Raspberry Pi 400 board does not include RJ45 connector LEDs so the 'leds' node is deleted accordingly. The Ethernet PHY LEDs are numbered in the PHY package/pin list from LED1 through LED4, however their address within the LED registers function selector is 0-indexed. Link: https://lore.kernel.org/r/20240423191500.1443636-1-florian.fainelli@broadcom.com Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com> Reviewed-by: Stefan Wahren <wahrenst@gmx.net>
44 lines
742 B
Text
44 lines
742 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
#include "bcm2711-rpi-4-b.dts"
|
|
|
|
/ {
|
|
compatible = "raspberrypi,400", "brcm,bcm2711";
|
|
model = "Raspberry Pi 400";
|
|
|
|
chosen {
|
|
/* 8250 auxiliary UART instead of pl011 */
|
|
stdout-path = "serial1:115200n8";
|
|
};
|
|
|
|
gpio-poweroff {
|
|
compatible = "gpio-poweroff";
|
|
gpios = <&expgpio 5 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
|
|
&expgpio {
|
|
gpio-line-names = "BT_ON",
|
|
"WL_ON",
|
|
"PWR_LED_OFF",
|
|
"GLOBAL_RESET",
|
|
"VDD_SD_IO_SEL",
|
|
"GLOBAL_SHUTDOWN",
|
|
"SD_PWR_ON",
|
|
"SHUTDOWN_REQUEST";
|
|
};
|
|
|
|
&genet_mdio {
|
|
clock-frequency = <1950000>;
|
|
/delete-node/ leds;
|
|
};
|
|
|
|
&led_pwr {
|
|
gpios = <&gpio 42 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
/delete-node/ &led_act;
|
|
|
|
&pm {
|
|
/delete-property/ system-power-controller;
|
|
};
|