mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
635f111148
In ath79, for several SoCs the console bootargs are defined to the very same value in every device's DTS. Consolidate these definitions in the SoC dtsi files and drop further redundant definitions elsewhere. The only device without any bootargs set has been OpenMesh OM5P-AC V2. This will now inherit the setting from qca955x.dtsi Note that while this tidies up master a lot, it might develop into a frequent pitfall for backports. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
171 lines
2.7 KiB
Plaintext
171 lines
2.7 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/dts-v1/;
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
#include "qca956x.dtsi"
|
|
|
|
/ {
|
|
compatible = "avm,fritz4020", "qca,qca9560";
|
|
model = "AVM FRITZ!Box 4020";
|
|
|
|
aliases {
|
|
led-boot = &led_power;
|
|
led-failsafe = &led_info_red;
|
|
led-running = &led_power;
|
|
led-upgrade = &led_info_red;
|
|
};
|
|
|
|
led_spi {
|
|
compatible = "spi-gpio";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
sck-gpios = <&gpio 20 GPIO_ACTIVE_HIGH>;
|
|
mosi-gpios = <&gpio 19 GPIO_ACTIVE_HIGH>;
|
|
num-chipselects = <0>;
|
|
|
|
led_gpio: led_gpio@0 {
|
|
compatible = "fairchild,74hc595";
|
|
reg = <0>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
registers-number = <1>;
|
|
spi-max-frequency = <10000000>;
|
|
|
|
gpio_latch_bit {
|
|
gpio-hog;
|
|
gpios = <7 GPIO_ACTIVE_HIGH>;
|
|
output-high;
|
|
line-name = "gpio-latch-bit";
|
|
};
|
|
};
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_power: power {
|
|
label = "fritz4020:green:power";
|
|
gpios = <&led_gpio 2 GPIO_ACTIVE_LOW>;
|
|
default-state = "on";
|
|
};
|
|
|
|
wlan {
|
|
label = "fritz4020:green:wlan";
|
|
gpios = <&led_gpio 3 GPIO_ACTIVE_LOW>;
|
|
linux,default-trigger = "phy0tpt";
|
|
};
|
|
|
|
lan {
|
|
label = "fritz4020:green:lan";
|
|
gpios = <&led_gpio 0 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wan {
|
|
label = "fritz4020:green:wan";
|
|
gpios = <&led_gpio 4 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
info {
|
|
label = "fritz4020:green:info";
|
|
gpios = <&led_gpio 6 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_info_red: info_red {
|
|
label = "fritz4020:red:info";
|
|
gpios = <&led_gpio 1 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
keys {
|
|
compatible = "gpio-keys";
|
|
|
|
wps {
|
|
label = "WPS button";
|
|
linux,code = <KEY_WPS_BUTTON>;
|
|
gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wlan {
|
|
label = "WLAN button";
|
|
linux,code = <KEY_RFKILL>;
|
|
gpios = <&gpio 21 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart {
|
|
status = "okay";
|
|
};
|
|
|
|
&gpio {
|
|
status = "okay";
|
|
};
|
|
|
|
&spi {
|
|
status = "okay";
|
|
|
|
num-cs = <1>;
|
|
|
|
flash@0 {
|
|
compatible = "jedec,spi-nor";
|
|
reg = <0>;
|
|
spi-max-frequency = <25000000>;
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partition@0 {
|
|
label = "urlader";
|
|
reg = <0x000000 0x020000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@1 {
|
|
compatible = "avm,eva-firmware";
|
|
label = "firmware";
|
|
reg = <0x020000 0xee0000>;
|
|
};
|
|
|
|
partition@2 {
|
|
label = "tffs (1)";
|
|
reg = <0xf00000 0x080000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@3 {
|
|
label = "tffs (2)";
|
|
reg = <0xf80000 0x080000>;
|
|
read-only;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
status = "okay";
|
|
|
|
phy-handle = <&swphy0>;
|
|
|
|
gmac-config {
|
|
device = <&gmac>;
|
|
|
|
switch-phy-addr-swap = <1>;
|
|
switch-phy-swap = <1>;
|
|
};
|
|
};
|
|
|
|
ð1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&wmac {
|
|
status = "okay";
|
|
|
|
qca,no-eeprom;
|
|
};
|