mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 14:06:15 +00:00
4589fa38c5
Initial conversion to new LED color/function format and drop label format where possible. The same label is composed at runtime. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
307 lines
5.3 KiB
Plaintext
307 lines
5.3 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later or MIT
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/input/input.h>
|
|
#include <dt-bindings/leds/common.h>
|
|
|
|
/include/ "fsl/p1010si-pre.dtsi"
|
|
|
|
/ {
|
|
model = "Enterasys WS-AP3715i";
|
|
compatible = "enterasys,ws-ap3715i";
|
|
|
|
aliases {
|
|
led-boot = &led_power_green;
|
|
led-failsafe = &led_power_red;
|
|
led-running = &led_power_green;
|
|
led-upgrade = &led_power_red;
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "console=ttyS0,115200";
|
|
};
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x0 0x0 0x0 0x10000000>;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
wifi1 {
|
|
gpios = <&spi_gpio 3 GPIO_ACTIVE_HIGH>;
|
|
label = "green:radio1";
|
|
linux,default-trigger = "phy1tpt";
|
|
};
|
|
|
|
wifi2 {
|
|
gpios = <&spi_gpio 2 GPIO_ACTIVE_HIGH>;
|
|
label = "green:radio2";
|
|
linux,default-trigger = "phy0tpt";
|
|
};
|
|
|
|
led_power_green: power_green {
|
|
gpios = <&spi_gpio 0 GPIO_ACTIVE_HIGH>;
|
|
function = LED_FUNCTION_POWER;
|
|
color = <LED_COLOR_ID_GREEN>;
|
|
};
|
|
|
|
led_power_red: power_red {
|
|
gpios = <&spi_gpio 1 GPIO_ACTIVE_HIGH>;
|
|
function = LED_FUNCTION_POWER;
|
|
color = <LED_COLOR_ID_RED>;
|
|
};
|
|
|
|
lan1_red {
|
|
gpios = <&spi_gpio 6 GPIO_ACTIVE_HIGH>;
|
|
label = "red:lan1";
|
|
};
|
|
|
|
lan1_green {
|
|
gpios = <&spi_gpio 4 GPIO_ACTIVE_HIGH>;
|
|
label = "green:lan1";
|
|
};
|
|
|
|
lan2_red {
|
|
gpios = <&spi_gpio 7 GPIO_ACTIVE_HIGH>;
|
|
label = "red:lan2";
|
|
};
|
|
|
|
lan2_green {
|
|
gpios = <&spi_gpio 5 GPIO_ACTIVE_HIGH>;
|
|
label = "green:lan2";
|
|
};
|
|
};
|
|
|
|
keys {
|
|
compatible = "gpio-keys";
|
|
|
|
reset {
|
|
label = "Reset button";
|
|
gpios = <&gpio0 5 GPIO_ACTIVE_LOW>;
|
|
linux,code = <KEY_RESTART>;
|
|
};
|
|
};
|
|
|
|
soc: soc@ffe00000 {
|
|
ranges = <0x0 0x0 0xffe00000 0x100000>;
|
|
|
|
gpio0: gpio-controller@fc00 {
|
|
};
|
|
|
|
usb@22000 {
|
|
status = "disabled";
|
|
};
|
|
|
|
mdio@24000 {
|
|
phy0: ethernet-phy@0 {
|
|
reg = <0x1>;
|
|
};
|
|
|
|
phy2: ethernet-phy@2 {
|
|
reg = <0x2>;
|
|
};
|
|
};
|
|
|
|
mdio@25000 {
|
|
tbi_phy: tbi-phy@11 {
|
|
reg = <0x11>;
|
|
};
|
|
};
|
|
|
|
mdio@26000 {
|
|
status = "disabled";
|
|
};
|
|
|
|
enet0: ethernet@b0000 {
|
|
phy-handle = <&phy0>;
|
|
phy-connection-type = "rgmii-id";
|
|
|
|
label = "lan1";
|
|
};
|
|
|
|
enet1: ethernet@b1000 {
|
|
phy-handle = <&phy2>;
|
|
phy-connection-type = "sgmii";
|
|
|
|
tbi-handle = <&tbi_phy>;
|
|
|
|
label = "lan2";
|
|
};
|
|
|
|
enet2: ethernet@b2000 {
|
|
status = "disabled";
|
|
};
|
|
|
|
sdhc@2e000 {
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
ifc: ifc@ffe1e000 {
|
|
};
|
|
|
|
pci0: pcie@ffe09000 {
|
|
reg = <0 0xffe09000 0 0x1000>;
|
|
ranges = <0x2000000 0x0 0xa0000000 0 0xa0000000 0x0 0x20000000
|
|
0x1000000 0x0 0x00000000 0 0xffc10000 0x0 0x10000>;
|
|
pcie@0 {
|
|
ranges = <0x2000000 0x0 0xa0000000
|
|
0x2000000 0x0 0xa0000000
|
|
0x0 0x20000000
|
|
|
|
0x1000000 0x0 0x0
|
|
0x1000000 0x0 0x0
|
|
0x0 0x100000>;
|
|
|
|
wifi@0,0 {
|
|
compatible = "pci168c,0033";
|
|
reg = <0x0 0 0 0 0>;
|
|
ieee80211-freq-limit = <2400000 2500000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
pci1: pcie@ffe0a000 {
|
|
reg = <0 0xffe0a000 0 0x1000>;
|
|
ranges = <0x2000000 0x0 0x80000000 0 0x80000000 0x0 0x20000000
|
|
0x1000000 0x0 0x00000000 0 0xffc00000 0x0 0x10000>;
|
|
pcie@0 {
|
|
ranges = <0x2000000 0x0 0x80000000
|
|
0x2000000 0x0 0x80000000
|
|
0x0 0x20000000
|
|
|
|
0x1000000 0x0 0x0
|
|
0x1000000 0x0 0x0
|
|
0x0 0x100000>;
|
|
|
|
wifi@0,0 {
|
|
compatible = "pci168c,0033";
|
|
reg = <0x0 0 0 0 0>;
|
|
ieee80211-freq-limit = <5000000 6000000>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&soc {
|
|
led_spi {
|
|
compatible = "spi-gpio";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
sck-gpios = <&gpio0 10 GPIO_ACTIVE_HIGH>;
|
|
mosi-gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
|
|
num-chipselects = <0>;
|
|
|
|
spi_gpio: led_gpio@0 {
|
|
compatible = "fairchild,74hc595";
|
|
reg = <0>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
registers-number = <1>;
|
|
spi-max-frequency = <100000>;
|
|
};
|
|
};
|
|
|
|
spi0: spi@7000 {
|
|
flash@0 {
|
|
compatible = "jedec,spi-nor";
|
|
reg = <0>;
|
|
spi-max-frequency = <25000000>;
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partition@0 {
|
|
reg = <0x0 0xa0000>;
|
|
label = "boot-bak";
|
|
read-only;
|
|
};
|
|
|
|
partition@a0000 {
|
|
reg = <0xa0000 0xa0000>;
|
|
label = "boot-pri";
|
|
read-only;
|
|
};
|
|
|
|
partition@120000 {
|
|
reg = <0x120000 0x10000>;
|
|
label = "cfg1";
|
|
read-only;
|
|
};
|
|
|
|
partition@130000 {
|
|
reg = <0x130000 0x10000>;
|
|
label = "cfg2";
|
|
read-only;
|
|
};
|
|
|
|
partition@140000 {
|
|
compatible = "denx,uimage";
|
|
reg = <0x140000 0x1d80000>;
|
|
label = "firmware";
|
|
};
|
|
|
|
partition@1ec0000 {
|
|
reg = <0x1ec0000 0x100000>;
|
|
label = "nvram";
|
|
read-only;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
/include/ "fsl/p1010si-post.dtsi"
|
|
|
|
/ {
|
|
cpus {
|
|
PowerPC,P1010@0 {
|
|
bus-frequency = <399999996>;
|
|
timebase-frequency = <50000000>;
|
|
clock-frequency = <799999992>;
|
|
d-cache-block-size = <0x20>;
|
|
d-cache-size = <0x8000>;
|
|
d-cache-sets = <0x80>;
|
|
i-cache-block-size = <0x20>;
|
|
i-cache-size = <0x8000>;
|
|
i-cache-sets = <0x80>;
|
|
};
|
|
};
|
|
|
|
soc@ffe00000 {
|
|
bus-frequency = <399999996>;
|
|
|
|
serial@4600 {
|
|
clock-frequency = <399999996>;
|
|
status = "disabled";
|
|
};
|
|
|
|
serial@4500 {
|
|
clock-frequency = <399999996>;
|
|
};
|
|
|
|
pic@40000 {
|
|
clock-frequency = <399999996>;
|
|
};
|
|
};
|
|
};
|
|
|
|
/*
|
|
* For the OpenWrt 22.03 release, since Linux 5.10.138 now uses
|
|
* aliases to determine PCI domain numbers, drop aliases so as not to
|
|
* change the sysfs path of our wireless netdevs.
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
/delete-property/ pci0;
|
|
/delete-property/ pci1;
|
|
};
|
|
};
|
|
|