forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ipq807x: add Arcadyan AW1000 support
Hardware specification: SoC: Qualcomm IPQ8072A Flash: Toshiba NAND 1GiB RAM: 1 GiB of DDR3 466 MHz Ethernet: 4x 1Gbps + 1x 2.5Gbps WiFi1: QCN5024 2.4GHz ax 4x4 WiFi2: QCN5054 5GHz ax 4x4 Button: WiFi, WPS, Reset Modem: RG500Q-EA USB: 1 x USB 3.0 Power: DC 12V 4A Flash instructions: 1. Download the initramfs image, rename it to initramfs.bin, and host it with tftp server. 2. Interrupt U-Boot and run these commands: tftpboot initramfs.bin bootm 3. After openwrt boots up, use scp or luci web to upload sysupgrade.bin to upgrade. Signed-off-by: Chukun Pan <[email protected]> Reviewed-by: Robert Marko <[email protected]>
- Loading branch information
Showing
8 changed files
with
393 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
345 changes: 345 additions & 0 deletions
345
target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq8072-aw1000.dts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,345 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT | ||
/* Copyright (c) 2023, Chukun Pan <[email protected]> */ | ||
|
||
/dts-v1/; | ||
|
||
#include "ipq8074.dtsi" | ||
#include "ipq8074-hk-cpu.dtsi" | ||
#include "ipq8074-ess.dtsi" | ||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/input/input.h> | ||
|
||
/ { | ||
model = "Arcadyan AW1000"; | ||
compatible = "arcadyan,aw1000", "qcom,ipq8074"; | ||
|
||
aliases { | ||
led-boot = &led_power; | ||
led-failsafe = &led_power; | ||
led-running = &led_power; | ||
led-upgrade = &led_power; | ||
serial0 = &blsp1_uart5; | ||
/* | ||
* Aliases as required by u-boot | ||
* to patch MAC addresses | ||
*/ | ||
ethernet0 = &dp1; | ||
ethernet1 = &dp2; | ||
ethernet2 = &dp3; | ||
ethernet3 = &dp4; | ||
ethernet4 = &dp6_syn; | ||
label-mac-device = &dp1; | ||
}; | ||
|
||
chosen { | ||
stdout-path = "serial0:115200n8"; | ||
bootargs-append = " root=/dev/ubiblock0_1"; | ||
}; | ||
|
||
gpio-export { | ||
compatible = "gpio-export"; | ||
|
||
lte-pwrkey { | ||
gpio-export,name = "lte_pwrkey"; | ||
gpio-export,output = <1>; | ||
gpios = <&tlmm 54 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
lte-power { | ||
gpio-export,name = "lte_power"; | ||
gpio-export,output = <1>; | ||
gpios = <&tlmm 30 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
lte-reset { | ||
gpio-export,name = "lte_reset"; | ||
gpio-export,output = <1>; | ||
gpios = <&tlmm 63 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
usb-vbus { | ||
gpio-export,name = "usb_vbus"; | ||
gpio-export,output = <0>; | ||
gpios = <&tlmm 9 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
keys { | ||
compatible = "gpio-keys"; | ||
|
||
wlan { | ||
label = "wlan"; | ||
linux,code = <KEY_WLAN>; | ||
gpios = <&tlmm 2 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
wps { | ||
label = "wps"; | ||
linux,code = <KEY_WPS_BUTTON>; | ||
gpios = <&tlmm 62 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
reset { | ||
label = "reset"; | ||
linux,code = <KEY_RESTART>; | ||
gpios = <&tlmm 67 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
led-spi { | ||
compatible = "spi-gpio"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
sck-gpios = <&tlmm 18 GPIO_ACTIVE_HIGH>; | ||
mosi-gpios = <&tlmm 19 GPIO_ACTIVE_HIGH>; | ||
|
||
led_gpio: led-gpio@0 { | ||
compatible = "fairchild,74hc595"; | ||
reg = <0>; | ||
gpio-controller; | ||
#gpio-cells = <2>; | ||
registers-number = <2>; | ||
spi-max-frequency = <1000000>; | ||
enable-gpios = <&tlmm 20 GPIO_ACTIVE_HIGH>; | ||
}; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
led_power: power { | ||
label = "green:power"; | ||
gpios = <&led_gpio 0 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
wifi { | ||
label = "green:wifi"; | ||
gpios = <&led_gpio 1 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
internet { | ||
label = "green:internet"; | ||
gpios = <&led_gpio 2 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
5g-red { | ||
label = "red:5g"; | ||
gpios = <&led_gpio 3 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
5g-green { | ||
label = "green:5g"; | ||
gpios = <&led_gpio 4 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
5g-blue { | ||
label = "blue:5g"; | ||
gpios = <&led_gpio 5 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
signal-red { | ||
label = "red:signal"; | ||
gpios = <&led_gpio 6 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
signal-green { | ||
label = "green:signal"; | ||
gpios = <&led_gpio 8 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
signal-blue { | ||
label = "blue:signal"; | ||
gpios = <&led_gpio 9 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
phone { | ||
label = "green:phone"; | ||
gpios = <&led_gpio 11 GPIO_ACTIVE_HIGH>; | ||
}; | ||
}; | ||
}; | ||
|
||
&tlmm { | ||
mdio_pins: mdio-pins { | ||
mdc { | ||
pins = "gpio68"; | ||
function = "mdc"; | ||
drive-strength = <8>; | ||
bias-pull-up; | ||
}; | ||
|
||
mdio { | ||
pins = "gpio69"; | ||
function = "mdio"; | ||
drive-strength = <8>; | ||
bias-pull-up; | ||
}; | ||
}; | ||
}; | ||
|
||
&blsp1_uart5 { | ||
status = "okay"; | ||
}; | ||
|
||
&cryptobam { | ||
status = "okay"; | ||
}; | ||
|
||
&crypto { | ||
status = "okay"; | ||
}; | ||
|
||
&prng { | ||
status = "okay"; | ||
}; | ||
|
||
&qpic_bam { | ||
status = "okay"; | ||
}; | ||
|
||
&qpic_nand { | ||
status = "okay"; | ||
|
||
nand@0 { | ||
reg = <0>; | ||
nand-ecc-strength = <8>; | ||
nand-ecc-step-size = <512>; | ||
nand-bus-width = <8>; | ||
|
||
partitions { | ||
compatible = "qcom,smem-part"; | ||
}; | ||
}; | ||
}; | ||
|
||
&qusb_phy_0 { | ||
status = "okay"; | ||
}; | ||
|
||
&qusb_phy_1 { | ||
status = "okay"; | ||
}; | ||
|
||
&ssphy_0 { | ||
status = "okay"; | ||
}; | ||
|
||
&ssphy_1 { | ||
status = "okay"; | ||
}; | ||
|
||
&usb_0 { | ||
status = "okay"; | ||
}; | ||
|
||
&usb_1 { | ||
status = "okay"; | ||
}; | ||
|
||
&mdio { | ||
status = "okay"; | ||
|
||
pinctrl-0 = <&mdio_pins>; | ||
pinctrl-names = "default"; | ||
reset-gpios = <&tlmm 37 GPIO_ACTIVE_LOW>; | ||
|
||
qca8075_0: ethernet-phy@0 { | ||
compatible = "ethernet-phy-ieee802.3-c22"; | ||
reg = <0>; | ||
}; | ||
|
||
qca8075_1: ethernet-phy@1 { | ||
compatible = "ethernet-phy-ieee802.3-c22"; | ||
reg = <1>; | ||
}; | ||
|
||
qca8075_2: ethernet-phy@2 { | ||
compatible = "ethernet-phy-ieee802.3-c22"; | ||
reg = <2>; | ||
}; | ||
|
||
qca8075_3: ethernet-phy@3 { | ||
compatible = "ethernet-phy-ieee802.3-c22"; | ||
reg = <3>; | ||
}; | ||
|
||
qca8081: ethernet-phy@28 { | ||
compatible = "ethernet-phy-id004d.d101"; | ||
reg = <28>; | ||
reset-gpios = <&tlmm 64 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
&switch { | ||
status = "okay"; | ||
|
||
switch_lan_bmp = <(ESS_PORT1 | ESS_PORT2 | ESS_PORT3 | ESS_PORT4)>; /* lan port bitmap */ | ||
switch_wan_bmp = <ESS_PORT6>; /* wan port bitmap */ | ||
switch_mac_mode = <MAC_MODE_QSGMII>; /* mac mode for uniphy instance0*/ | ||
switch_mac_mode2 = <MAC_MODE_SGMII_PLUS>; /* mac mode for uniphy instance2*/ | ||
|
||
qcom,port_phyinfo { | ||
port@1 { | ||
port_id = <1>; | ||
phy_address = <0>; | ||
}; | ||
port@2 { | ||
port_id = <2>; | ||
phy_address = <1>; | ||
}; | ||
port@3 { | ||
port_id = <3>; | ||
phy_address = <2>; | ||
}; | ||
port@4 { | ||
port_id = <4>; | ||
phy_address = <3>; | ||
}; | ||
port@6 { | ||
port_id = <6>; | ||
phy_address = <28>; | ||
port_mac_sel = "QGMAC_PORT"; | ||
}; | ||
}; | ||
}; | ||
|
||
&edma { | ||
status = "okay"; | ||
}; | ||
|
||
&dp1 { | ||
status = "okay"; | ||
phy-handle = <&qca8075_0>; | ||
label = "lan1"; | ||
}; | ||
|
||
&dp2 { | ||
status = "okay"; | ||
phy-handle = <&qca8075_1>; | ||
label = "lan2"; | ||
}; | ||
|
||
&dp3 { | ||
status = "okay"; | ||
phy-handle = <&qca8075_2>; | ||
label = "lan3"; | ||
}; | ||
|
||
&dp4 { | ||
status = "okay"; | ||
phy-handle = <&qca8075_3>; | ||
label = "lan4"; | ||
}; | ||
|
||
&dp6_syn { | ||
status = "okay"; | ||
phy-handle = <&qca8081>; | ||
label = "wan"; | ||
}; | ||
|
||
&wifi { | ||
status = "okay"; | ||
|
||
qcom,ath11k-calibration-variant = "Arcadyan-AW1000"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.