1/*
2 * Device tree source for D-Link DSR-1000N.
3 *
4 * Written by: Aaro Koskinen <aaro.koskinen@iki.fi>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11/include/ "dlink_dsr-500n-1000n.dtsi"
12#include <dt-bindings/gpio/gpio.h>
13
14/ {
15	model = "dlink,dsr-1000n";
16
17	soc@0 {
18		uart0: serial@1180000000800 {
19			clock-frequency = <500000000>;
20		};
21	};
22
23	leds {
24		compatible = "gpio-leds";
25
26		usb1 {
27			label = "usb1";
28			gpios = <&gpio 9 GPIO_ACTIVE_LOW>;
29		};
30
31		usb2 {
32			label = "usb2";
33			gpios = <&gpio 10 GPIO_ACTIVE_LOW>;
34		};
35
36		wps {
37			label = "wps";
38			gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
39		};
40
41		wireless1 {
42			label = "5g";
43			gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
44		};
45
46		wireless2 {
47			label = "2.4g";
48			gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
49		};
50	};
51};
52