mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
f0eb73a888
This change consolidates Netgear EX7300 series devices into two images corresponding to devices that share the same manufacturer firmware image. Similar to the manufacturer firmware, the actual device model is detected at runtime. The logic is taken from the netgear GPL dumps in a file called generate_board_conf.sh. Hardware details for EX7300 v2 variants --------------------------------------- SoC: QCN5502 Flash: 16 MiB RAM: 128 MiB Ethernet: 1 gigabit port Wireless 2.4GHz (currently unsupported due to lack of ath9k support): - EX6250 / EX6400 v2 / EX6410 / EX6420: QCN5502 3x3 - EX7300 v2 / EX7320: QCN5502 4x4 Wireless 5GHz: - EX6250: QCA9986 3x3 (detected by ath10k as QCA9984 3x3) - EX6400 v2 / EX6410 / EX6420 / EX7300 v2 / EX7320: QCA9984 4x4 Signed-off-by: Wenli Looi <wlooi@ucalgary.ca>
228 lines
3.8 KiB
Plaintext
228 lines
3.8 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qca955x.dtsi"
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
/ {
|
|
model = "Netgear EX7300";
|
|
compatible = "netgear,ex7300", "qca,qca9558";
|
|
|
|
aliases {
|
|
led-boot = &led_power_green;
|
|
led-failsafe = &led_power_amber;
|
|
led-running = &led_power_green;
|
|
led-upgrade = &led_power_amber;
|
|
label-mac-device = ð0;
|
|
};
|
|
|
|
led_spi {
|
|
compatible = "spi-gpio";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
sck-gpios = <&gpio 18 GPIO_ACTIVE_HIGH>;
|
|
mosi-gpios = <&gpio 15 GPIO_ACTIVE_HIGH>;
|
|
num-chipselects = <0>;
|
|
|
|
led_gpio: led_gpio@0 {
|
|
compatible = "nxp,74lvc594";
|
|
reg = <0>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
registers-number = <1>;
|
|
spi-max-frequency = <500000>;
|
|
|
|
gpio_latch_bit {
|
|
gpio-hog;
|
|
gpios = <4 GPIO_ACTIVE_HIGH>;
|
|
output-high;
|
|
line-name = "gpio-latch-bit";
|
|
};
|
|
};
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_power_green: power_green {
|
|
label = "green:power";
|
|
gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_power_amber: power_amber {
|
|
label = "amber:power";
|
|
gpios = <&gpio 20 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
left_blue {
|
|
label = "blue:left";
|
|
gpios = <&led_gpio 7 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
right_blue {
|
|
label = "blue:right";
|
|
gpios = <&led_gpio 6 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wps_green {
|
|
label = "green:wps";
|
|
gpios = <&led_gpio 5 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
client_red {
|
|
label = "red:client";
|
|
gpios = <&led_gpio 3 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
client_green {
|
|
label = "green:client";
|
|
gpios = <&led_gpio 2 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
router_red {
|
|
label = "red:router";
|
|
gpios = <&led_gpio 1 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
router_green {
|
|
label = "green:router";
|
|
gpios = <&led_gpio 0 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
keys {
|
|
compatible = "gpio-keys";
|
|
|
|
reset {
|
|
label = "Reset button";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
|
|
debounce-interval = <60>;
|
|
};
|
|
|
|
wps {
|
|
label = "WPS button";
|
|
linux,code = <KEY_WPS_BUTTON>;
|
|
gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
|
|
debounce-interval = <60>;
|
|
};
|
|
|
|
extender_apmode {
|
|
label = "EXTENDER/APMODE switch";
|
|
gpios = <&gpio 23 GPIO_ACTIVE_LOW>;
|
|
linux,code = <BTN_0>;
|
|
linux,input-type = <EV_SW>;
|
|
debounce-interval = <60>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&pcie0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&spi {
|
|
status = "okay";
|
|
|
|
flash@0 {
|
|
compatible = "jedec,spi-nor";
|
|
reg = <0>;
|
|
spi-max-frequency = <25000000>;
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
uboot: partition@0 {
|
|
label = "u-boot";
|
|
reg = <0x000000 0x040000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@40000 {
|
|
label = "u-boot-env";
|
|
reg = <0x040000 0x010000>;
|
|
};
|
|
|
|
caldata: partition@50000 {
|
|
label = "caldata";
|
|
reg = <0x050000 0x010000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@60000 {
|
|
label = "caldata-backup";
|
|
reg = <0x060000 0x010000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@70000 {
|
|
label = "config";
|
|
reg = <0x070000 0x010000>;
|
|
};
|
|
|
|
partition@80000 {
|
|
label = "pot";
|
|
reg = <0x080000 0x010000>;
|
|
};
|
|
|
|
partition@90000 {
|
|
label = "firmware";
|
|
reg = <0x090000 0xf30000>;
|
|
compatible = "denx,uimage";
|
|
};
|
|
|
|
partition@fc0000 {
|
|
label = "language";
|
|
reg = <0xfc0000 0x040000>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&wmac {
|
|
status = "okay";
|
|
|
|
mtd-cal-data = <&caldata 0x1000>;
|
|
nvmem-cells = <&macaddr_caldata_6>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&mdio0 {
|
|
status = "okay";
|
|
|
|
phy4: ethernet-phy@4 {
|
|
reg = <4>;
|
|
phy-mode = "rgmii";
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
status = "okay";
|
|
|
|
nvmem-cells = <&macaddr_caldata_0>;
|
|
nvmem-cell-names = "mac-address";
|
|
|
|
phy-handle = <&phy4>;
|
|
phy-mode = "rgmii-rxid";
|
|
|
|
pll-data = <0x86000000 0x80000101 0x80001313>;
|
|
};
|
|
|
|
&caldata {
|
|
compatible = "nvmem-cells";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
macaddr_caldata_0: macaddr@0 {
|
|
reg = <0x0 0x6>;
|
|
};
|
|
|
|
macaddr_caldata_6: macaddr@6 {
|
|
reg = <0x6 0x6>;
|
|
};
|
|
};
|