1/*
2 * Device tree source for D-Link DSR-500N.
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-500n";
16	compatible = "dlink,dsr-500n", "cavium,octeon-3860";
17
18	soc@0 {
19		uart0: serial@1180000000800 {
20			clock-frequency = <300000000>;
21		};
22	};
23
24	leds {
25		compatible = "gpio-leds";
26
27		usb {
28			gpios = <&gpio 9 GPIO_ACTIVE_LOW>;
29		};
30
31		wps {
32			gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
33		};
34
35		wireless {
36			label = "2.4g";
37			gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
38		};
39	};
40};
41