aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ath79/dts/qca9563_dlink_dir-842-c2.dts
Commit message (Expand)AuthorAgeFilesLines
* ath79: remove model name from LED labelsAdrian Schmutzler2020-10-021-27/+0
* ath79: move dts-v1 statement to ath79.dtsiAdrian Schmutzler2020-09-251-1/+0
* ath79: fix LEDs for D-Link DIR-842Sebastian Schaper2020-05-261-9/+4
* ath79: DTS file style update and harmonizationAdrian Schmutzler2019-11-061-5/+5
* ath79: add support for D-Link DIR-842 C1Jackson Lim2019-08-051-141/+2
* ath79: add support for D-Link DIR-842 C2Jackson Lim2019-07-241-0/+188
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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

#include "ar7240.dtsi"

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

/ {
	model = "D-Link DIR-615 E4";
	compatible = "dlink,dir-615-e4", "qca,ar7240";

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

	keys {
		compatible = "gpio-keys";

		reset {
			label = "reset";
			linux,code = <KEY_RESTART>;
			gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
			debounce-interval = <60>;
		};

		wps {
			label = "wps";
			linux,code = <KEY_WPS_BUTTON>;
			gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
			debounce-interval = <60>;
		};
	};

	leds {
		compatible = "gpio-leds";
		pinctrl-names = "default";
		pinctrl-0 = <&switch_led_pins>;

		led_power_green: power_green {
			label = "green:power";
			gpios = <&gpio 6 GPIO_ACTIVE_HIGH>;
		};

		led_power_amber: power_amber {
			label = "amber:power";
			gpios = <&gpio 1 GPIO_ACTIVE_HIGH>;
		};

		wps {
			label = "blue:wps";
			gpios = <&gpio 0 GPIO_ACTIVE_LOW>;
		};

		lan1 {
			label = "green:lan1";
			gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
		};

		lan2 {
			label = "green:lan2";
			gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
		};

		lan3 {
			label = "green:lan3";
			gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
		};

		lan4 {
			label = "green:lan4";
			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
		};

		wan_amber {
			label = "amber:wan";
			gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
		};

		wan_green {
			label = "green:wan";
			gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
		};
	};

	ath9k-leds {
		compatible = "gpio-leds";

		wlan {
			label = "green:wlan";
			gpios = <&ath9k 1 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "phy0tpt";
		};
	};
};

&spi {
	status = "okay";

	flash@0 {
		compatible = "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <33000000>;

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

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

			partition@30000 {
				reg = <0x30000 0x10000>;
				label = "nvram";
				read-only;
			};

			partition@40000 {
				compatible = "denx,uimage";
				reg = <0x40000 0x3b0000>;
				label = "firmware";
			};

			partition@3f0000 {
				reg = <0x3f0000 0x10000>;
				label = "art";
				read-only;
			};
		};
	};
};

&eth1 {
	status = "okay";
};

&pcie {
	status = "okay";

	ath9k: wifi@0,0 {
		compatible = "pci168c,002b";
		reg = <0x0000 0 0 0 0>;
		qca,no-eeprom;
		#gpio-cells = <2>;
		gpio-controller;
	};
};

&pinmux {
	switch_led_pins: pinmux_switch_led_pins {
		pinctrl-single,bits = <0x0 0x0 0xf8>;
	};
};