mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
f645bacd06
All the QCA9531 based boards from ALFA Network are based on the same design and share a common DTSI: 'qca9531_alfa-network_r36a.dtsi'. Instead of defining 'nvmem-cells' for the MAC address in every device's DTS, move definition to the common DTSI file. Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
123 lines
2.2 KiB
Plaintext
123 lines
2.2 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qca9531_alfa-network_r36a.dtsi"
|
|
|
|
/ {
|
|
model = "ALFA Network N2Q";
|
|
compatible = "alfa-network,n2q", "qca,qca9531";
|
|
|
|
aliases {
|
|
led-boot = &led_usb;
|
|
led-failsafe = &led_usb;
|
|
led-upgrade = &led_usb;
|
|
};
|
|
|
|
gpio-export-pcf8574 {
|
|
compatible = "gpio-export";
|
|
#size-cells = <0>;
|
|
|
|
poe-passthrough {
|
|
gpio-export,name = "poe-passthrough";
|
|
gpio-export,output = <1>;
|
|
gpios = <&pcf8574 0 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
usb-power {
|
|
gpio-export,name = "usb-power";
|
|
gpio-export,output = <0>;
|
|
gpios = <&pcf8574 2 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
i2c {
|
|
compatible = "i2c-gpio";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
sda-gpios = <&gpio 11 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
|
|
scl-gpios = <&gpio 3 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
|
|
|
|
pcf8574: pcf8574@20 {
|
|
compatible = "nxp,pcf8574";
|
|
reg = <0x20>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
};
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&enable_gpio4 &enable_gpio16>;
|
|
|
|
lan1 {
|
|
label = "orange:lan1";
|
|
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
lan2 {
|
|
label = "orange:lan2";
|
|
gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_usb: usb {
|
|
label = "green:usb";
|
|
gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
|
linux,default-trigger = "usbport";
|
|
trigger-sources = <&hub_port0>;
|
|
};
|
|
|
|
minipcie {
|
|
label = "green:minipcie";
|
|
gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wlan {
|
|
label = "green:wlan";
|
|
gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
|
|
linux,default-trigger = "phy0tpt";
|
|
};
|
|
};
|
|
|
|
leds-pcf8574 {
|
|
compatible = "gpio-leds";
|
|
|
|
poe-passthrough {
|
|
label = "green:poe-passthrough";
|
|
gpios = <&pcf8574 1 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
signal1 {
|
|
label = "red:signal1";
|
|
gpios = <&pcf8574 3 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
signal2 {
|
|
label = "orange:signal2";
|
|
gpios = <&pcf8574 4 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
signal3 {
|
|
label = "green:signal3";
|
|
gpios = <&pcf8574 5 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
nvmem-cells = <&macaddr_art_1002>;
|
|
nvmem-cell-names = "mac-address";
|
|
mac-address-increment = <(-2)>;
|
|
};
|
|
|
|
ð1 {
|
|
nvmem-cells = <&macaddr_art_1002>;
|
|
nvmem-cell-names = "mac-address";
|
|
mac-address-increment = <(-1)>;
|
|
};
|
|
|
|
&pcie0 {
|
|
status = "okay";
|
|
};
|