| b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later OR MIT |
| 2 | |
| 3 | #include "qca955x.dtsi" |
| 4 | |
| 5 | #include <dt-bindings/gpio/gpio.h> |
| 6 | #include <dt-bindings/input/input.h> |
| 7 | |
| 8 | / { |
| 9 | aliases { |
| 10 | led-boot = &led_system; |
| 11 | led-failsafe = &led_system; |
| 12 | led-running = &led_system; |
| 13 | led-upgrade = &led_system; |
| 14 | label-mac-device = ð0; |
| 15 | }; |
| 16 | |
| 17 | keys { |
| 18 | compatible = "gpio-keys"; |
| 19 | |
| 20 | reset { |
| 21 | label = "Reset button"; |
| 22 | linux,code = <KEY_RESTART>; |
| 23 | gpios = <&gpio 16 GPIO_ACTIVE_LOW>; |
| 24 | debounce-interval = <60>; |
| 25 | }; |
| 26 | }; |
| 27 | |
| 28 | leds { |
| 29 | compatible = "gpio-leds"; |
| 30 | |
| 31 | wlan { |
| 32 | label = "green:wlan"; |
| 33 | gpios = <&gpio 13 GPIO_ACTIVE_LOW>; |
| 34 | linux,default-trigger = "phy0tpt"; |
| 35 | }; |
| 36 | |
| 37 | led_system: system { |
| 38 | label = "green:system"; |
| 39 | gpios = <&gpio 14 GPIO_ACTIVE_LOW>; |
| 40 | default-state = "on"; |
| 41 | }; |
| 42 | |
| 43 | sig1 { |
| 44 | label = "green:sig1"; |
| 45 | gpios = <&gpio 4 GPIO_ACTIVE_LOW>; |
| 46 | }; |
| 47 | |
| 48 | sig2 { |
| 49 | label = "green:sig2"; |
| 50 | gpios = <&gpio 15 GPIO_ACTIVE_LOW>; |
| 51 | }; |
| 52 | }; |
| 53 | }; |
| 54 | |
| 55 | &pcie0 { |
| 56 | status = "okay"; |
| 57 | }; |
| 58 | |
| 59 | &pcie1 { |
| 60 | status = "okay"; |
| 61 | }; |
| 62 | |
| 63 | &spi { |
| 64 | status = "okay"; |
| 65 | |
| 66 | flash@0 { |
| 67 | compatible = "jedec,spi-nor"; |
| 68 | reg = <0>; |
| 69 | spi-max-frequency = <25000000>; |
| 70 | |
| 71 | partitions: partitions { |
| 72 | compatible = "fixed-partitions"; |
| 73 | #address-cells = <1>; |
| 74 | #size-cells = <1>; |
| 75 | |
| 76 | partition@0 { |
| 77 | label = "u-boot"; |
| 78 | reg = <0x000000 0x040000>; |
| 79 | read-only; |
| 80 | }; |
| 81 | |
| 82 | partition@40000 { |
| 83 | label = "u-boot-env"; |
| 84 | reg = <0x040000 0x010000>; |
| 85 | read-only; |
| 86 | }; |
| 87 | |
| 88 | pridata: partition@50000 { |
| 89 | label = "pri-data"; |
| 90 | reg = <0x050000 0x010000>; |
| 91 | read-only; |
| 92 | }; |
| 93 | |
| 94 | art: partition@60000 { |
| 95 | label = "art"; |
| 96 | reg = <0x060000 0x010000>; |
| 97 | read-only; |
| 98 | }; |
| 99 | }; |
| 100 | }; |
| 101 | }; |
| 102 | |
| 103 | &mdio0 { |
| 104 | status = "okay"; |
| 105 | |
| 106 | phy0: ethernet-phy@0 { |
| 107 | reg = <0>; |
| 108 | |
| 109 | qca,ar8327-initvals = < |
| 110 | 0x04 0x00080080 /* PORT0 PAD MODE CTRL */ |
| 111 | 0x0c 0x07600000 /* PORT6 PAD MODE CTRL */ |
| 112 | 0x10 0x81000080 /* POWER_ON_STRAP */ |
| 113 | 0x50 0xcc35cc35 /* LED_CTRL0 */ |
| 114 | 0x54 0xca35ca35 /* LED_CTRL1 */ |
| 115 | 0x58 0xc935c935 /* LED_CTRL2 */ |
| 116 | 0x5c 0x03ffff00 /* LED_CTRL3 */ |
| 117 | 0x7c 0x0000007e /* PORT0_STATUS */ |
| 118 | 0x94 0x0000007e /* PORT6 STATUS */ |
| 119 | >; |
| 120 | }; |
| 121 | }; |
| 122 | |
| 123 | ð0 { |
| 124 | status = "okay"; |
| 125 | |
| 126 | pll-data = <0x56000000 0x00000101 0x00001616>; |
| 127 | |
| 128 | phy-handle = <&phy0>; |
| 129 | |
| 130 | mtd-mac-address = <&pridata 0x400>; |
| 131 | mtd-mac-address-increment = <1>; |
| 132 | }; |
| 133 | |
| 134 | ð1 { |
| 135 | status = "okay"; |
| 136 | |
| 137 | pll-data = <0x03000101 0x00000101 0x00001616>; |
| 138 | |
| 139 | mtd-mac-address = <&pridata 0x400>; |
| 140 | |
| 141 | fixed-link { |
| 142 | speed = <1000>; |
| 143 | full-duplex; |
| 144 | }; |
| 145 | }; |
| 146 | |
| 147 | &usb_phy0 { |
| 148 | status = "okay"; |
| 149 | }; |
| 150 | |
| 151 | &usb0 { |
| 152 | status = "okay"; |
| 153 | }; |
| 154 | |
| 155 | &usb_phy1 { |
| 156 | status = "okay"; |
| 157 | }; |
| 158 | |
| 159 | &usb1 { |
| 160 | status = "okay"; |
| 161 | }; |
| 162 | |
| 163 | &wmac { |
| 164 | status = "okay"; |
| 165 | |
| 166 | mtd-cal-data = <&art 0x1000>; |
| 167 | }; |