Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.2-rc2 94 lines 1.7 kB view raw
1/* 2 * Broadcom BCM470X / BCM5301X arm platform code. 3 * DTS for Netgear R6250 V1 4 * 5 * Copyright 2013 Hauke Mehrtens <hauke@hauke-m.de> 6 * 7 * Licensed under the GNU/GPL. See COPYING for details. 8 */ 9 10/dts-v1/; 11 12#include "bcm4708.dtsi" 13#include "bcm5301x-nand-cs0-bch8.dtsi" 14 15/ { 16 compatible = "netgear,r6250v1", "brcm,bcm4708"; 17 model = "Netgear R6250 V1 (BCM4708)"; 18 19 chosen { 20 bootargs = "console=ttyS0,115200"; 21 }; 22 23 memory { 24 reg = <0x00000000 0x08000000>; 25 }; 26 27 chipcommonA { 28 uart0: serial@0300 { 29 status = "okay"; 30 }; 31 32 uart1: serial@0400 { 33 status = "okay"; 34 }; 35 }; 36 37 leds { 38 compatible = "gpio-leds"; 39 40 logo { 41 label = "bcm53xx:white:logo"; 42 gpios = <&chipcommon 1 GPIO_ACTIVE_HIGH>; 43 linux,default-trigger = "default-on"; 44 }; 45 46 power0 { 47 label = "bcm53xx:green:power"; 48 gpios = <&chipcommon 2 GPIO_ACTIVE_LOW>; 49 linux,default-trigger = "default-on"; 50 }; 51 52 power1 { 53 label = "bcm53xx:amber:power"; 54 gpios = <&chipcommon 3 GPIO_ACTIVE_LOW>; 55 linux,default-trigger = "default-off"; 56 }; 57 58 usb { 59 label = "bcm53xx:blue:usb"; 60 gpios = <&chipcommon 8 GPIO_ACTIVE_LOW>; 61 linux,default-trigger = "default-off"; 62 }; 63 64 wireless { 65 label = "bcm53xx:blue:wireless"; 66 gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>; 67 linux,default-trigger = "default-off"; 68 }; 69 }; 70 71 gpio-keys { 72 compatible = "gpio-keys"; 73 #address-cells = <1>; 74 #size-cells = <0>; 75 76 wps { 77 label = "WPS"; 78 linux,code = <KEY_WPS_BUTTON>; 79 gpios = <&chipcommon 4 GPIO_ACTIVE_LOW>; 80 }; 81 82 rfkill { 83 label = "WiFi"; 84 linux,code = <KEY_RFKILL>; 85 gpios = <&chipcommon 5 GPIO_ACTIVE_LOW>; 86 }; 87 88 restart { 89 label = "Reset"; 90 linux,code = <KEY_RESTART>; 91 gpios = <&chipcommon 6 GPIO_ACTIVE_LOW>; 92 }; 93 }; 94};