123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
- /* Copyright (c) 2021, Dirk Buchwalder <[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>
- #include <dt-bindings/leds/common.h>
- / {
- model = "QNAP 301w";
- compatible = "qnap,301w", "qcom,ipq8074";
- aliases {
- serial0 = &blsp1_uart5;
- /*
- * Aliases as required by u-boot
- * to patch MAC addresses
- */
- led-boot = &led_system_red;
- led-failsafe = &led_system_red;
- led-running = &led_pwr_green;
- led-upgrade = &led_system_red;
- ethernet0 = &dp1;
- ethernet1 = &dp2;
- ethernet2 = &dp3;
- ethernet3 = &dp4;
- ethernet4 = &dp5;
- ethernet5 = &dp6_syn;
- label-mac-device = &dp1;
- };
- chosen {
- stdout-path = "serial0:115200n8";
- };
- keys {
- compatible = "gpio-keys";
- pinctrl-0 = <&button_pins>;
- pinctrl-names = "default";
- wps-button {
- label = "wps";
- gpios = <&tlmm 57 GPIO_ACTIVE_LOW>;
- linux,code = <KEY_WPS_BUTTON>;
- };
- reset-button {
- label = "reset";
- gpios = <&tlmm 67 GPIO_ACTIVE_LOW>;
- linux,code = <KEY_RESTART>;
- };
- };
- leds {
- compatible = "gpio-leds";
- pinctrl-0 = <&leds_pins>;
- pinctrl-names = "default";
- led_system_green: led-system-green {
- label = "green:system";
- gpios = <&tlmm 1 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led_system_red: led-system-red {
- label = "red:system";
- gpios = <&tlmm 3 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_RED>;
- };
- led_pwr_green: led-pwr-green {
- label = "green:pwr";
- gpios = <&tlmm 4 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-wifi-green {
- label = "green:wifi";
- gpios = <&tlmm 42 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-lan4-green {
- label = "green:lan4";
- gpios = <&tlmm 6 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-lan4-amber {
- label = "amber:lan4";
- gpios = <&tlmm 7 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_AMBER>;
- };
- led-lan3-green {
- label = "green:lan3";
- gpios = <&tlmm 8 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-lan3-amber {
- label = "amber:lan3";
- gpios = <&tlmm 11 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_AMBER>;
- };
- led-lan2-green {
- label = "green:lan2";
- gpios = <&tlmm 12 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-lan2-amber {
- label = "amber:lan2";
- gpios = <&tlmm 13 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_AMBER>;
- };
- led-lan1-green {
- label = "green:lan1";
- gpios = <&tlmm 14 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-lan1-amber {
- label = "amber:lan1";
- gpios = <&tlmm 15 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_AMBER>;
- };
- led-10g-1-green {
- label = "green:10g_1";
- gpios = <&tlmm 54 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-10g-1-amber {
- label = "amber:10g_1";
- gpios = <&tlmm 56 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_AMBER>;
- };
- led-10g-2-green {
- label = "green:10g_2";
- gpios = <&tlmm 51 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_GREEN>;
- };
- led-10g-2-amber {
- label = "amber:10g_2";
- gpios = <&tlmm 52 GPIO_ACTIVE_HIGH>;
- color = <LED_COLOR_ID_AMBER>;
- };
- };
- };
- &tlmm {
- mdio_pins: mdio-state {
- mdc-pins {
- pins = "gpio68";
- function = "mdc";
- drive-strength = <8>;
- bias-pull-up;
- };
- mdio-pins {
- pins = "gpio69";
- function = "mdio";
- drive-strength = <8>;
- bias-pull-up;
- };
- };
- button_pins: button-state {
- wps-pins {
- pins = "gpio57";
- function = "gpio";
- drive-strength = <8>;
- bias-pull-up;
- };
- rst-pins {
- pins = "gpio67";
- function = "gpio";
- drive-strength = <8>;
- bias-pull-up;
- };
- };
- leds_pins: leds-state {
- pins = "gpio1", "gpio3", "gpio4", "gpio6", "gpio7", "gpio8",
- "gpio11", "gpio12", "gpio13", "gpio14", "gpio15", "gpio42",
- "gpio51", "gpio52", "gpio54", "gpio56";
- function = "gpio";
- drive-strength = <8>;
- bias-pull-down;
- };
- };
- &blsp1_uart5 {
- status = "okay";
- };
- &prng {
- status = "okay";
- };
- &ssphy_0 {
- status = "okay";
- };
- &qusb_phy_0 {
- status = "okay";
- };
- &ssphy_1 {
- status = "okay";
- };
- &qusb_phy_1 {
- status = "okay";
- };
- &usb_0 {
- status = "okay";
- };
- &usb_1 {
- status = "okay";
- };
- &cryptobam {
- status = "okay";
- };
- &crypto {
- status = "okay";
- };
- &qpic_bam {
- status = "okay";
- };
- &blsp1_spi1 { /* BLSP1 QUP1 */
- pinctrl-0 = <&spi_0_pins>;
- pinctrl-names = "default";
- cs-gpios = <0>;
- status = "okay";
- flash@0 {
- #address-cells = <1>;
- #size-cells = <1>;
- reg = <0>;
- compatible = "jedec,spi-nor";
- spi-max-frequency = <50000000>;
- partitions {
- compatible = "qcom,smem-part";
- };
- };
- };
- &mdio {
- status = "okay";
- pinctrl-0 = <&mdio_pins>;
- pinctrl-names = "default";
- reset-gpios = <&tlmm 37 GPIO_ACTIVE_LOW>;
- aqr113c_0: ethernet-phy@0 {
- compatible ="ethernet-phy-ieee802.3-c45";
- reg = <0>;
- reset-gpios = <&tlmm 59 GPIO_ACTIVE_LOW>;
- };
- aqr113c_8: ethernet-phy@8 {
- compatible ="ethernet-phy-ieee802.3-c45";
- reg = <8>;
- reset-gpios = <&tlmm 44 GPIO_ACTIVE_LOW>;
- };
- qca8075_16: ethernet-phy@16 {
- compatible = "ethernet-phy-ieee802.3-c22";
- reg = <16>;
- };
- qca8075_17: ethernet-phy@17 {
- compatible = "ethernet-phy-ieee802.3-c22";
- reg = <17>;
- };
- qca8075_18: ethernet-phy@18 {
- compatible = "ethernet-phy-ieee802.3-c22";
- reg = <18>;
- };
- qca8075_19: ethernet-phy@19 {
- compatible = "ethernet-phy-ieee802.3-c22";
- reg = <19>;
- };
- };
- &sdhc_1 {
- status = "okay";
- /* According to the stock dts from the QNAP gpl drop
- * the emmc has a problem with the hs400 > hs200 speed switch.
- * Therefore remove the mmc-hs400-1_8v property
- */
- /delete-property/ mmc-hs400-1_8v;
- mmc-hs200-1_8v;
- mmc-ddr-1_8v;
- vqmmc-supply = <&l11>;
- };
- &switch {
- status = "okay";
- switch_cpu_bmp = <0x1>; /* cpu port bitmap */
- switch_lan_bmp = <0x3e>; /* lan port bitmap */
- switch_wan_bmp = <0xc0>; /* wan port bitmap */
- switch_mac_mode = <0xb>; /* mac mode for uniphy instance0*/
- switch_mac_mode1 = <0xd>; /* mac mode for uniphy instance1*/
- switch_mac_mode2 = <0xd>; /* mac mode for uniphy instance2*/
- bm_tick_mode = <0>; /* bm tick mode */
- tm_tick_mode = <0>; /* tm tick mode */
- qcom,port_phyinfo {
- port@0 {
- port_id = <1>;
- phy_address = <16>;
- };
- port@1 {
- port_id = <2>;
- phy_address = <17>;
- };
- port@2 {
- port_id = <3>;
- phy_address = <18>;
- };
- port@3 {
- port_id = <4>;
- phy_address = <19>;
- };
- port@4 {
- port_id = <5>;
- phy_address = <8>;
- compatible = "ethernet-phy-ieee802.3-c45";
- ethernet-phy-ieee802.3-c45;
- };
- port@5 {
- port_id = <6>;
- phy_address = <0>;
- compatible = "ethernet-phy-ieee802.3-c45";
- ethernet-phy-ieee802.3-c45;
- };
- };
- };
- &edma {
- status = "okay";
- };
- &dp1 {
- status = "okay";
- phy-handle = <&qca8075_16>;
- label = "lan4";
- };
- &dp2 {
- status = "okay";
- phy-handle = <&qca8075_17>;
- label = "lan3";
- };
- &dp3 {
- status = "okay";
- phy-handle = <&qca8075_18>;
- label = "lan2";
- };
- &dp4 {
- status = "okay";
- phy-handle = <&qca8075_19>;
- label = "lan1";
- };
- &dp5 {
- status = "okay";
- qcom,mactype = <1>;
- phy-handle = <&aqr113c_8>;
- label = "10g-1";
- };
- &dp6_syn {
- status = "okay";
- phy-handle = <&aqr113c_0>;
- label = "10g-2";
- };
- &wifi {
- status = "okay";
- qcom,ath11k-calibration-variant = "QNAP-301w";
- };
|