aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ath79/dts/ar7241_netgear_wnr2200.dtsi
Commit message (Expand)AuthorAgeFilesLines
* treewide: remove dts-v1 identifier from DTSI filesAdrian Schmutzler2019-12-081-1/+0
* ath79: DTS file style update and harmonizationAdrian Schmutzler2019-11-061-6/+6
* ath79: add support for Netgear WNR2200Michal Cieslakiewicz2019-11-011-0/+207
'#n53'>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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

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

#include "ar9331.dtsi"

/ {
	aliases {
		serial0 = &uart;
		label-mac-device = &wmac;
	};

	keys {
		compatible = "gpio-keys";

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

	leds {
		compatible = "gpio-leds";

		wlan {
			label = "gl-inet:red:wlan";
			gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "phy0tpt";
		};

		lan {
			label = "gl-inet:green:lan";
			gpios = <&gpio 13 GPIO_ACTIVE_HIGH>;
		};
	};

	reg_usb_vbus: reg_usb_vbus {
		compatible = "regulator-fixed";
		regulator-name = "usb_vbus";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
		enable-active-high;
	};
};

&eth0 {
	status = "okay";

	mtd-mac-address = <&uboot 0x1fc00>;

	gmac-config {
		device = <&gmac>;

		switch-phy-addr-swap = <0>;
		switch-phy-swap = <0>;
	};
};

&eth1 {
	status = "okay";

	mtd-mac-address = <&uboot 0x1fc00>;
};

&gpio {
	status = "okay";
};

&uart {
	status = "okay";
};

&usb {
	dr_mode = "host";
	vbus-supply = <&reg_usb_vbus>;
	status = "okay";
};

&usb_phy {
	status = "okay";
};

&wmac {
	status = "okay";

	mtd-cal-data = <&art 0x1000>;
	mtd-mac-address = <&uboot 0x1fc00>;
};