|
|
@@ -0,0 +1,436 @@
|
|
|
+/dts-v1/;
|
|
|
+
|
|
|
+#include "ipq5018.dtsi"
|
|
|
+#include "ipq5018-ess.dtsi"
|
|
|
+
|
|
|
+#include <dt-bindings/gpio/gpio.h>
|
|
|
+#include <dt-bindings/input/input.h>
|
|
|
+#include <dt-bindings/leds/common.h>
|
|
|
+
|
|
|
+/ {
|
|
|
+ model = "GL.iNet GL-B3000";
|
|
|
+ compatible ="glinet,gl-b3000", "qcom,ipq5018";
|
|
|
+
|
|
|
+ aliases {
|
|
|
+ ethernet1 = &dp2;
|
|
|
+ label-mac-device = &dp2;
|
|
|
+ led-boot = &led_system_blue;
|
|
|
+ led-failsafe = &led_status_white;
|
|
|
+ led-running = &led_status_white;
|
|
|
+ led-upgrade = &led_system_blue;
|
|
|
+ serial0 = &blsp1_uart1;
|
|
|
+ };
|
|
|
+
|
|
|
+ chosen {
|
|
|
+ bootargs-append = " root=/dev/ubiblock0_1 swiotlb=1 coherent_pool=2M";
|
|
|
+ stdout-path = "serial0:115200n8";
|
|
|
+ };
|
|
|
+
|
|
|
+ keys {
|
|
|
+ compatible = "gpio-keys";
|
|
|
+ pinctrl-0 = <&button_pins>;
|
|
|
+ pinctrl-names = "default";
|
|
|
+
|
|
|
+ button_reset {
|
|
|
+ label = "reset";
|
|
|
+ gpios = <&tlmm 27 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,code = <KEY_RESTART>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ leds {
|
|
|
+ compatible = "gpio-leds";
|
|
|
+ pinctrl-0 = <&leds_pins>;
|
|
|
+ pinctrl-names = "default";
|
|
|
+
|
|
|
+ led_system_blue: led_system_blue {
|
|
|
+ color = <LED_COLOR_ID_BLUE>;
|
|
|
+ function = LED_FUNCTION_POWER;
|
|
|
+ gpio = <&tlmm 24 GPIO_ACTIVE_HIGH>;
|
|
|
+ default-state = "on";
|
|
|
+ };
|
|
|
+
|
|
|
+ led_status_white: led_status_white {
|
|
|
+ color = <LED_COLOR_ID_WHITE>;
|
|
|
+ function = LED_FUNCTION_POWER;
|
|
|
+ gpio = <&tlmm 23 GPIO_ACTIVE_HIGH>;
|
|
|
+ default-state = "off";
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ reserved-memory {
|
|
|
+
|
|
|
+ q6_mem_regions: q6_mem_regions@4b000000 {
|
|
|
+ no-map;
|
|
|
+ reg = <0x0 0x4b000000 0x0 0x3000000>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&switch {
|
|
|
+ status = "okay";
|
|
|
+ switch_mac_mode = <MAC_MODE_SGMII_CHANNEL0>;
|
|
|
+
|
|
|
+ qcom,port_phyinfo {
|
|
|
+
|
|
|
+ // MAC0 -> GE Phy -> QCA8337 Phy2
|
|
|
+ port@0 {
|
|
|
+ port_id = <1>;
|
|
|
+ mdiobus = <&mdio0>;
|
|
|
+ phy_address = <7>;
|
|
|
+ };
|
|
|
+
|
|
|
+ // MAC1 ---SGMII---> QCA8337 SerDes
|
|
|
+ port@1 {
|
|
|
+ port_id = <2>;
|
|
|
+ forced-speed = <1000>;
|
|
|
+ forced-duplex = <1>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+// MAC1 ---SGMII---> QCA8337 SerDes
|
|
|
+&dp2 {
|
|
|
+ status = "okay";
|
|
|
+ nvmem-cells = <&macaddr_dp2>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
+
|
|
|
+ fixed-link {
|
|
|
+ speed = <1000>;
|
|
|
+ full-duplex;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&mdio0 {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&mdio1 {
|
|
|
+ status = "okay";
|
|
|
+ pinctrl-0 = <&mdio1_pins>;
|
|
|
+ pinctrl-names = "default";
|
|
|
+ reset-gpios = <&tlmm 39 GPIO_ACTIVE_LOW>;
|
|
|
+
|
|
|
+ // QCA8337 Phy0 -> WAN
|
|
|
+ qca8337_0: ethernet-phy@0 {
|
|
|
+ reg = <0>;
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCA8337 Phy1 -> LAN1
|
|
|
+ qca8337_1: ethernet-phy@1 {
|
|
|
+ reg = <1>;
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCA8337 Phy3 -> LAN2
|
|
|
+ qca8337_2: ethernet-phy@2 {
|
|
|
+ reg = <2>;
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCA8337 switch
|
|
|
+ switch0: ethernet-switch@17 {
|
|
|
+ compatible = "qca,qca8337";
|
|
|
+ reg = <17>;
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <0>;
|
|
|
+
|
|
|
+ ports {
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <0>;
|
|
|
+
|
|
|
+ switch0cpu: port@0 {
|
|
|
+ reg = <0>;
|
|
|
+ label = "cpu";
|
|
|
+ phy-mode = "sgmii";
|
|
|
+ ethernet = <&dp2>;
|
|
|
+ qca,sgmii-enable-pll;
|
|
|
+
|
|
|
+ fixed-link {
|
|
|
+ speed = <1000>;
|
|
|
+ full-duplex;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCA8337 Phy0 -> WAN
|
|
|
+ port@1 {
|
|
|
+ reg = <1>;
|
|
|
+ label = "wan";
|
|
|
+ phy-handle = <&qca8337_0>;
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCA8337 Phy1 -> LAN1
|
|
|
+ port@2 {
|
|
|
+ reg = <2>;
|
|
|
+ label = "lan1";
|
|
|
+ phy-handle = <&qca8337_1>;
|
|
|
+
|
|
|
+ nvmem-cells = <&macaddr_dp2 2>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCA8337 Phy3 -> LAN2
|
|
|
+ port@3 {
|
|
|
+ reg = <3>;
|
|
|
+ label = "lan2";
|
|
|
+ phy-handle = <&qca8337_2>;
|
|
|
+
|
|
|
+ nvmem-cells = <&macaddr_dp2 2>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&sleep_clk {
|
|
|
+ clock-frequency = <32000>;
|
|
|
+};
|
|
|
+
|
|
|
+&xo_board_clk {
|
|
|
+ clock-frequency = <24000000>;
|
|
|
+};
|
|
|
+
|
|
|
+&blsp1_uart1 {
|
|
|
+ status = "okay";
|
|
|
+ pinctrl-0 = <&serial_0_pins>;
|
|
|
+ pinctrl-names = "default";
|
|
|
+};
|
|
|
+
|
|
|
+&crypto {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&cryptobam {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&prng {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&qfprom {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&qpic_bam {
|
|
|
+ status = "okay";
|
|
|
+};
|
|
|
+
|
|
|
+&qpic_nand {
|
|
|
+ pinctrl-0 = <&qpic_pins>;
|
|
|
+ pinctrl-names = "default";
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ nand@0 {
|
|
|
+ compatible = "spi-nand";
|
|
|
+ reg = <0>;
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ nand-ecc-engine = <&qpic_nand>;
|
|
|
+ nand-ecc-strength = <8>;
|
|
|
+ nand-ecc-step-size = <512>;
|
|
|
+ nand-bus-width = <8>;
|
|
|
+
|
|
|
+ partitions {
|
|
|
+ compatible = "qcom,smem-part";
|
|
|
+
|
|
|
+ partition-0-art {
|
|
|
+ compatible = "fixed-partitions";
|
|
|
+ label = "0:ART";
|
|
|
+ read-only;
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ nvmem-layout {
|
|
|
+ compatible = "fixed-layout";
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ macaddr_dp2: macaddr@0 {
|
|
|
+ compatible = "mac-base";
|
|
|
+ #nvmem-cell-cells = <1>;
|
|
|
+ reg = <0x0 0x6>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&tlmm {
|
|
|
+ mdio1_pins: mdio-state {
|
|
|
+
|
|
|
+ mdc-pins {
|
|
|
+ pins = "gpio36";
|
|
|
+ function = "mdc";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-pull-up;
|
|
|
+ };
|
|
|
+
|
|
|
+ mdio-pins {
|
|
|
+ pins = "gpio37";
|
|
|
+ function = "mdio";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-pull-up;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ leds_pins: leds-pins {
|
|
|
+ pins = "gpio23", "gpio24";
|
|
|
+ function = "gpio";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-pull-down;
|
|
|
+ };
|
|
|
+
|
|
|
+ button_pins: button-pins {
|
|
|
+ pins = "gpio27";
|
|
|
+ function = "gpio";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-pull-up;
|
|
|
+ };
|
|
|
+
|
|
|
+ qpic_pins: qpic-state {
|
|
|
+
|
|
|
+ clock-pins {
|
|
|
+ pins = "gpio9";
|
|
|
+ function = "qspi_clk";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-disable;
|
|
|
+ };
|
|
|
+
|
|
|
+ cs-pins {
|
|
|
+ pins = "gpio8";
|
|
|
+ function = "qspi_cs";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-disable;
|
|
|
+ };
|
|
|
+
|
|
|
+ data-pins {
|
|
|
+ pins = "gpio4", "gpio5", "gpio6", "gpio7";
|
|
|
+ function = "qspi_data";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-disable;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ serial_0_pins: uart0-state {
|
|
|
+ pins =
|
|
|
+ "gpio20", // RX
|
|
|
+ "gpio21"; // TX
|
|
|
+ function = "blsp0_uart0";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-disable;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&tsens {
|
|
|
+ status = "okay ";
|
|
|
+};
|
|
|
+
|
|
|
+&q6v5_wcss {
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ memory-region = <&q6_mem_regions>;
|
|
|
+ firmware-name = "ath11k/IPQ5018/hw1.0/q6_fw.mdt",
|
|
|
+ "ath11k/IPQ5018/hw1.0/m3_fw.mdt",
|
|
|
+ "ath11k/QCN6122/hw1.0/m3_fw.mdt";
|
|
|
+
|
|
|
+ /* B3000 currently doesn't support passing bootargs */
|
|
|
+ /*boot-args = < */
|
|
|
+ /* type: 0x1 PCIE0 */
|
|
|
+ /* length: 4 */
|
|
|
+ /* PD id: 3 */
|
|
|
+ /* reset GPIO: 15 */
|
|
|
+ /* reserved: 0 0>; */
|
|
|
+
|
|
|
+ // IPQ5018
|
|
|
+ q6_wcss_pd1: pd-1 {
|
|
|
+ firmware-name = "ath11k/IPQ5018/hw1.0/q6_fw.mdt";
|
|
|
+
|
|
|
+ resets =
|
|
|
+ <&gcc GCC_WCSSAON_RESET>,
|
|
|
+ <&gcc GCC_WCSS_BCR>,
|
|
|
+ <&gcc GCC_CE_BCR>;
|
|
|
+ reset-names =
|
|
|
+ "wcss_aon_reset",
|
|
|
+ "wcss_reset",
|
|
|
+ "ce_reset";
|
|
|
+
|
|
|
+ clocks =
|
|
|
+ <&gcc GCC_WCSS_AHB_S_CLK>,
|
|
|
+ <&gcc GCC_WCSS_ACMT_CLK>,
|
|
|
+ <&gcc GCC_WCSS_AXI_M_CLK>;
|
|
|
+ clock-names =
|
|
|
+ "gcc_wcss_ahb_s_clk",
|
|
|
+ "gcc_wcss_acmt_clk",
|
|
|
+ "gcc_wcss_axi_m_clk";
|
|
|
+
|
|
|
+ // qcom,halt-regs = <&tcsr_q6_block 0xa000 0xd000 0x0>;
|
|
|
+ interrupts-extended =
|
|
|
+ <&wcss_smp2p_in 8 IRQ_TYPE_NONE>,
|
|
|
+ <&wcss_smp2p_in 9 IRQ_TYPE_NONE>,
|
|
|
+ <&wcss_smp2p_in 12 IRQ_TYPE_NONE>,
|
|
|
+ <&wcss_smp2p_in 11 IRQ_TYPE_NONE>;
|
|
|
+ interrupt-names =
|
|
|
+ "fatal",
|
|
|
+ "ready",
|
|
|
+ "spawn-ack",
|
|
|
+ "stop-ack";
|
|
|
+
|
|
|
+ qcom,smem-states =
|
|
|
+ <&wcss_smp2p_out 8>,
|
|
|
+ <&wcss_smp2p_out 9>,
|
|
|
+ <&wcss_smp2p_out 10>;
|
|
|
+ qcom,smem-state-names =
|
|
|
+ "shutdown",
|
|
|
+ "stop",
|
|
|
+ "spawn";
|
|
|
+ };
|
|
|
+
|
|
|
+ // QCN6102 5G
|
|
|
+ q6_wcss_pd3: pd-3 {
|
|
|
+ firmware-name = "ath11k/IPQ5018/hw1.0/q6_fw.mdt";
|
|
|
+
|
|
|
+ interrupts-extended =
|
|
|
+ <&wcss_smp2p_in 24 IRQ_TYPE_NONE>,
|
|
|
+ <&wcss_smp2p_in 25 IRQ_TYPE_NONE>,
|
|
|
+ <&wcss_smp2p_in 28 IRQ_TYPE_NONE>,
|
|
|
+ <&wcss_smp2p_in 27 IRQ_TYPE_NONE>;
|
|
|
+ interrupt-names =
|
|
|
+ "fatal",
|
|
|
+ "ready",
|
|
|
+ "spawn-ack",
|
|
|
+ "stop-ack";
|
|
|
+
|
|
|
+ qcom,smem-states =
|
|
|
+ <&wcss_smp2p_out 24>,
|
|
|
+ <&wcss_smp2p_out 25>,
|
|
|
+ <&wcss_smp2p_out 26>;
|
|
|
+ qcom,smem-state-names =
|
|
|
+ "shutdown",
|
|
|
+ "stop",
|
|
|
+ "spawn";
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&wifi0 {
|
|
|
+ // IPQ5018
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ qcom,rproc = <&q6_wcss_pd1>;
|
|
|
+ qcom,userpd-subsys-name = "q6v5_wcss_userpd1";
|
|
|
+ qcom,ath11k-calibration-variant = "GL-iNet-GL-B3000";
|
|
|
+ qcom,ath11k-fw-memory-mode = <2>;
|
|
|
+ qcom,bdf-addr = <0x4c400000>;
|
|
|
+};
|
|
|
+
|
|
|
+&wifi1 {
|
|
|
+ // QCN6102 5G
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ qcom,rproc = <&q6_wcss_pd3>;
|
|
|
+ qcom,userpd-subsys-name = "q6v5_wcss_userpd3";
|
|
|
+ qcom,ath11k-calibration-variant = "GL-iNet-GL-B3000";
|
|
|
+ qcom,ath11k-fw-memory-mode = <2>;
|
|
|
+ qcom,bdf-addr = <0x4d100000>;
|
|
|
+ qcom,m3-dump-addr = <0x4df00000>;
|
|
|
+};
|