mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	In DTS Checklist[1] we're now demanding proper generic node names, as the name of a node should reflect the function of the device and use generic name for that[2]. Everybody seems to be copy&pasting from DTS files available in the repository today, so let's unify that naming there as well and provide proper examples. 1. https://openwrt.org/submitting-patches#dts_checklist 2. https://github.com/devicetree-org/devicetree-specification/blob/master/source/devicetree-basics.rst#generic-names-recommendation Signed-off-by: Petr Štetiar <ynezz@true.cz> Signed-off-by: Christian Lamparter <chunkeey@gmail.com> [split up]
		
			
				
	
	
		
			119 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /dts-v1/;
 | |
| 
 | |
| #include "bcm6358.dtsi"
 | |
| 
 | |
| #include <dt-bindings/input/input.h>
 | |
| 
 | |
| / {
 | |
| 	model = "SFR Neuf Box 4 (Foxconn)";
 | |
| 	compatible = "sfr,nb4-fxc-r1", "brcm,bcm6358";
 | |
| 
 | |
| 	chosen {
 | |
| 		bootargs = "rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
 | |
| 		stdout-path = "serial0:115200n8";
 | |
| 	};
 | |
| 
 | |
| 	keys {
 | |
| 		compatible = "gpio-keys-polled";
 | |
| 		#address-cells = <1>;
 | |
| 		#size-cells = <0>;
 | |
| 		poll-interval = <20>;
 | |
| 
 | |
| 		service {
 | |
| 			label = "service";
 | |
| 			gpios = <&pinctrl 27 1>;
 | |
| 			linux,code = <BTN_0>;
 | |
| 			debounce-interval = <60>;
 | |
| 		};
 | |
| 
 | |
| 		clip {
 | |
| 			label = "clip";
 | |
| 			gpios = <&pinctrl 31 1>;
 | |
| 			linux,code = <BTN_1>;
 | |
| 			debounce-interval = <60>;
 | |
| 		};
 | |
| 
 | |
| 		reset {
 | |
| 			label = "reset";
 | |
| 			gpios = <&pinctrl 34 1>;
 | |
| 			linux,code = <KEY_RESTART>;
 | |
| 			debounce-interval = <60>;
 | |
| 		};
 | |
| 
 | |
| 		wps {
 | |
| 			label = "wps";
 | |
| 			gpios = <&pinctrl 37 1>;
 | |
| 			linux,code = <KEY_WPS_BUTTON>;
 | |
| 			debounce-interval = <60>;
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	leds {
 | |
| 		compatible = "gpio-leds";
 | |
| 
 | |
| 		traffic_white {
 | |
| 			label = "NB4-FXC-r1:white:traffic";
 | |
| 			gpios = <&pinctrl 2 0>;
 | |
| 		};
 | |
| 		service_blue {
 | |
| 			label = "NB4-FXC-r1:blue:service";
 | |
| 			gpios = <&pinctrl 4 0>;
 | |
| 		};
 | |
| 		wifi_white {
 | |
| 			label = "NB4-FXC-r1:white:wifi";
 | |
| 			gpios = <&pinctrl 15 0>;
 | |
| 		};
 | |
| 		service_red {
 | |
| 			label = "NB4-FXC-r1:red:service";
 | |
| 			gpios = <&pinctrl 29 0>;
 | |
| 		};
 | |
| 		service_green {
 | |
| 			label = "NB4-FXC-r1:green:service";
 | |
| 			gpios = <&pinctrl 30 0>;
 | |
| 		};
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &leds {
 | |
| 	status = "ok";
 | |
| 
 | |
| 	pinctrl-names = "default";
 | |
| 	pinctrl-0 = <&pinctrl_serial_led>;
 | |
| 
 | |
| 	led@0 {
 | |
| 		reg = <0>;
 | |
| 		active-low;
 | |
| 		label = "NB4-FXC-r1:white:alarm";
 | |
| 	};
 | |
| 
 | |
| 	led@2 {
 | |
| 		reg = <2>;
 | |
| 		active-low;
 | |
| 		label = "NB4-FXC-r1:white:tv";
 | |
| 	};
 | |
| 
 | |
| 	led@3 {
 | |
| 		reg = <3>;
 | |
| 		active-low;
 | |
| 		label = "NB4-FXC-r1:white:tel";
 | |
| 	};
 | |
| 
 | |
| 	led@4 {
 | |
| 		reg = <4>;
 | |
| 		active-low;
 | |
| 		label = "NB4-FXC-r1:white:adsl";
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &pflash {
 | |
| 	status = "ok";
 | |
| 
 | |
| 	partitions {
 | |
| 		compatible = "brcm,bcm963xx-cfe-nor-partitions";
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &uart0 {
 | |
| 	status = "ok";
 | |
| };
 |