mt7621_linksys_ea7500-v2.dts 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/dts-v1/;

#include "mt7621.dtsi"

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>

/ {
	compatible = "linksys,ea7500-v2", "mediatek,mt7621-soc";
	model = "Linksys EA7500 v2";

	aliases {
		led-boot = &led_power;
		led-failsafe = &led_power;
		led-running = &led_power;
		led-upgrade = &led_power;
	};

	chosen {
		bootargs = "console=ttyS0,115200";
	};

	leds {
		compatible = "gpio-leds";

		wan_green {
			label = "ea7500-v2:green:wan";
			gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
		};

		lan1_green {
			label = "ea7500-v2:green:lan1";
			gpios = <&gpio0 3 GPIO_ACTIVE_LOW>;
		};

		lan2_green {
			label = "ea7500-v2:green:lan2";
			gpios = <&gpio0 18 GPIO_ACTIVE_LOW>;
		};

		lan3_green {
			label = "ea7500-v2:green:lan3";
			gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
		};

		lan4_green {
			label = "ea7500-v2:green:lan4";
			gpios = <&gpio0 15 GPIO_ACTIVE_LOW>;
		};

		led_power: power {
			label = "ea7500-v2:white:power";
			gpios = <&gpio0 10 GPIO_ACTIVE_HIGH>;
		};

		wps {
			label = "ea7500-v2:green:wps";
			gpios = <&gpio0 5 GPIO_ACTIVE_HIGH>;
		};
	};

	keys {
		compatible = "gpio-keys";

		wps {
			label = "wps";
			gpios = <&gpio0 17 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_WPS_BUTTON>;
		};

		reset {
			label = "reset";
			gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_RESTART>;
		};
	};
};

&nand {
	status = "okay";

	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		partition@0 {
			label = "boot";
			reg = <0x0 0x80000>;
			read-only;
		};

		partition@80000 {
			label = "u_env";
			reg = <0x80000 0x40000>;
			read-only;
		};

		factory: partition@c0000 {
			label = "factory";
			reg = <0xc0000 0x40000>;
			read-only;
		};

		partition@100000 {
			label = "s_env";
			reg = <0x100000 0x40000>;
		};

		partition@140000 {
			label = "devinfo";
			reg = <0x140000 0x40000>;
			read-only;
		};

		partition@180000 {
			label = "kernel";
			reg = <0x180000 0x400000>;
		};

		partition@580000 {
			label = "ubi";
			reg = <0x580000 0x2400000>;
		};

		partition@2980000 {
			label = "alt_kernel";
			reg = <0x2980000 0x400000>;
			read-only;
		};

		partition@2d80000 {
			label = "alt_rootfs";
			reg = <0x2d80000 0x2400000>;
			read-only;
		};

		partition@5180000 {
			label = "sysdiag";
			reg = <0x5180000 0x100000>;
			read-only;
		};

		partition@5280000 {
			label = "syscfg";
			reg = <0x5280000 0x2d00000>;
			read-only;
		};
	};
};

&state_default {
	gpio {
		ralink,group = "i2c", "uart2", "uart3", "jtag", "wdt";
		ralink,function = "gpio";
	};
};

&pcie {
	status = "okay";
};

&pcie0 {
	mt76@0,0 {
		compatible = "mediatek,mt76";
		reg = <0x0000 0 0 0 0>;
		mediatek,mtd-eeprom = <&factory 0x0000>;
	};
};

&pcie1 {
	mt76@0,0 {
		compatible = "mediatek,mt76";
		reg = <0x0000 0 0 0 0>;
		mediatek,mtd-eeprom = <&factory 0x8000>;
	};
};