xref: /freebsd-src/sys/contrib/device-tree/src/arm/broadcom/bcm4709-netgear-r7000.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Broadcom BCM470X / BCM5301X ARM platform code.
4*f126890aSEmmanuel Vadot * DTS for Netgear R7000
5*f126890aSEmmanuel Vadot *
6*f126890aSEmmanuel Vadot * Copyright (C) 2015 Rafał Miłecki <zajec5@gmail.com>
7*f126890aSEmmanuel Vadot */
8*f126890aSEmmanuel Vadot
9*f126890aSEmmanuel Vadot/dts-v1/;
10*f126890aSEmmanuel Vadot
11*f126890aSEmmanuel Vadot#include "bcm4709.dtsi"
12*f126890aSEmmanuel Vadot#include "bcm5301x-nand-cs0-bch8.dtsi"
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot/ {
15*f126890aSEmmanuel Vadot	compatible = "netgear,r7000", "brcm,bcm4709", "brcm,bcm4708";
16*f126890aSEmmanuel Vadot	model = "Netgear R7000";
17*f126890aSEmmanuel Vadot
18*f126890aSEmmanuel Vadot	chosen {
19*f126890aSEmmanuel Vadot		bootargs = "console=ttyS0,115200";
20*f126890aSEmmanuel Vadot	};
21*f126890aSEmmanuel Vadot
22*f126890aSEmmanuel Vadot	memory@0 {
23*f126890aSEmmanuel Vadot		device_type = "memory";
24*f126890aSEmmanuel Vadot		reg = <0x00000000 0x08000000>,
25*f126890aSEmmanuel Vadot		      <0x88000000 0x08000000>;
26*f126890aSEmmanuel Vadot	};
27*f126890aSEmmanuel Vadot
28*f126890aSEmmanuel Vadot	leds {
29*f126890aSEmmanuel Vadot		compatible = "gpio-leds";
30*f126890aSEmmanuel Vadot
31*f126890aSEmmanuel Vadot		led-power-white {
32*f126890aSEmmanuel Vadot			label = "bcm53xx:white:power";
33*f126890aSEmmanuel Vadot			gpios = <&chipcommon 2 GPIO_ACTIVE_LOW>;
34*f126890aSEmmanuel Vadot			linux,default-trigger = "default-on";
35*f126890aSEmmanuel Vadot		};
36*f126890aSEmmanuel Vadot
37*f126890aSEmmanuel Vadot		led-power-amber {
38*f126890aSEmmanuel Vadot			label = "bcm53xx:amber:power";
39*f126890aSEmmanuel Vadot			gpios = <&chipcommon 3 GPIO_ACTIVE_LOW>;
40*f126890aSEmmanuel Vadot		};
41*f126890aSEmmanuel Vadot
42*f126890aSEmmanuel Vadot		led-5ghz {
43*f126890aSEmmanuel Vadot			label = "bcm53xx:white:5ghz";
44*f126890aSEmmanuel Vadot			gpios = <&chipcommon 12 GPIO_ACTIVE_LOW>;
45*f126890aSEmmanuel Vadot		};
46*f126890aSEmmanuel Vadot
47*f126890aSEmmanuel Vadot		led-2ghz {
48*f126890aSEmmanuel Vadot			label = "bcm53xx:white:2ghz";
49*f126890aSEmmanuel Vadot			gpios = <&chipcommon 13 GPIO_ACTIVE_LOW>;
50*f126890aSEmmanuel Vadot		};
51*f126890aSEmmanuel Vadot
52*f126890aSEmmanuel Vadot		led-wps {
53*f126890aSEmmanuel Vadot			label = "bcm53xx:white:wps";
54*f126890aSEmmanuel Vadot			gpios = <&chipcommon 14 GPIO_ACTIVE_HIGH>;
55*f126890aSEmmanuel Vadot		};
56*f126890aSEmmanuel Vadot
57*f126890aSEmmanuel Vadot		led-wireless {
58*f126890aSEmmanuel Vadot			label = "bcm53xx:white:wireless";
59*f126890aSEmmanuel Vadot			gpios = <&chipcommon 15 GPIO_ACTIVE_HIGH>;
60*f126890aSEmmanuel Vadot		};
61*f126890aSEmmanuel Vadot
62*f126890aSEmmanuel Vadot		led-usb3 {
63*f126890aSEmmanuel Vadot			label = "bcm53xx:white:usb3";
64*f126890aSEmmanuel Vadot			gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
65*f126890aSEmmanuel Vadot		};
66*f126890aSEmmanuel Vadot
67*f126890aSEmmanuel Vadot		led-usb2 {
68*f126890aSEmmanuel Vadot			label = "bcm53xx:white:usb2";
69*f126890aSEmmanuel Vadot			gpios = <&chipcommon 18 GPIO_ACTIVE_LOW>;
70*f126890aSEmmanuel Vadot		};
71*f126890aSEmmanuel Vadot	};
72*f126890aSEmmanuel Vadot
73*f126890aSEmmanuel Vadot	gpio-keys {
74*f126890aSEmmanuel Vadot		compatible = "gpio-keys";
75*f126890aSEmmanuel Vadot
76*f126890aSEmmanuel Vadot		button-wps {
77*f126890aSEmmanuel Vadot			label = "WPS";
78*f126890aSEmmanuel Vadot			linux,code = <KEY_WPS_BUTTON>;
79*f126890aSEmmanuel Vadot			gpios = <&chipcommon 4 GPIO_ACTIVE_LOW>;
80*f126890aSEmmanuel Vadot		};
81*f126890aSEmmanuel Vadot
82*f126890aSEmmanuel Vadot		button-rfkill {
83*f126890aSEmmanuel Vadot			label = "WiFi";
84*f126890aSEmmanuel Vadot			linux,code = <KEY_RFKILL>;
85*f126890aSEmmanuel Vadot			gpios = <&chipcommon 5 GPIO_ACTIVE_LOW>;
86*f126890aSEmmanuel Vadot		};
87*f126890aSEmmanuel Vadot
88*f126890aSEmmanuel Vadot		button-restart {
89*f126890aSEmmanuel Vadot			label = "Reset";
90*f126890aSEmmanuel Vadot			linux,code = <KEY_RESTART>;
91*f126890aSEmmanuel Vadot			gpios = <&chipcommon 6 GPIO_ACTIVE_LOW>;
92*f126890aSEmmanuel Vadot		};
93*f126890aSEmmanuel Vadot	};
94*f126890aSEmmanuel Vadot};
95*f126890aSEmmanuel Vadot
96*f126890aSEmmanuel Vadot&usb2 {
97*f126890aSEmmanuel Vadot	vcc-gpio = <&chipcommon 0 GPIO_ACTIVE_HIGH>;
98*f126890aSEmmanuel Vadot};
99*f126890aSEmmanuel Vadot
100*f126890aSEmmanuel Vadot&usb3 {
101*f126890aSEmmanuel Vadot	vcc-gpio = <&chipcommon 0 GPIO_ACTIVE_HIGH>;
102*f126890aSEmmanuel Vadot};
103*f126890aSEmmanuel Vadot
104*f126890aSEmmanuel Vadot&usb3_phy {
105*f126890aSEmmanuel Vadot	status = "okay";
106*f126890aSEmmanuel Vadot};
107