mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	This patch adds support for the NuCom R5010UNv2. It's a BCM6328 based board. It has an onboard BCM43217 wifi chip. For this wifi chip looks like the brcmsmac driver isn't still supported, b43 drivers are used for the profile of the router. It's worth mentioning this board was affected by a bug solved with https://dev.openwrt.org/changeset/46707 Tested-by: Angel Fontan <angel.fontan@gmail.com> Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com> Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 47697
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /dts-v1/;
 | |
| 
 | |
| #include "bcm6328.dtsi"
 | |
| 
 | |
| #include <dt-bindings/input/input.h>
 | |
| 
 | |
| / {
 | |
| 	model = "NuCom R5010UN v2";
 | |
| 	compatible = "nucom,r5010unv2", "brcm,bcm6328";
 | |
| 	
 | |
| 	gpio-keys-polled {
 | |
| 		compatible = "gpio-keys-polled";
 | |
| 		#address-cells = <1>;
 | |
| 		#size-cells = <0>;
 | |
| 		poll-interval = <20>;
 | |
| 		debounce-interval = <60>;
 | |
| 
 | |
| 		reset {
 | |
| 			label = "reset";
 | |
| 			gpios = <&gpio0 23 1>;
 | |
| 			linux,code = <KEY_RESTART>;
 | |
| 		};
 | |
| 		wps {
 | |
| 			label = "wps";
 | |
| 			gpios = <&gpio0 24 1>;
 | |
| 			linux,code = <KEY_WPS_BUTTON>;
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	gpio-leds {
 | |
| 		compatible = "gpio-leds";
 | |
| 
 | |
| 		inet_green {
 | |
| 			label = "R5010UNv2:green:inet";
 | |
| 			gpios = <&gpio0 1 1>;
 | |
| 		};
 | |
| 		inet_fail_red {
 | |
| 			label = "R5010UNv2:red:inet-fail";
 | |
| 			gpios = <&gpio0 2 1>;
 | |
| 		};
 | |
| 		dsl_red {
 | |
| 			label = "R5010UNv2:green:dsl";
 | |
| 			gpios = <&gpio0 3 1>;
 | |
| 		};
 | |
| 		power_green {
 | |
| 			label = "R5010UNv2:green:power";
 | |
| 			gpios = <&gpio0 4 1>;
 | |
| 			default-state = "on";
 | |
| 		};
 | |
| 		power_fail_red {
 | |
| 			label = "R5010UNv2:red:power-fail";
 | |
| 			gpios = <&gpio0 5 1>;
 | |
| 		};
 | |
| 		wps_green {
 | |
| 			label = "R5010UNv2:green:wps";
 | |
| 			gpios = <&gpio0 10 1>;
 | |
| 		};
 | |
| 		usb_green {
 | |
| 			label = "R5010UNv2:green:usb";
 | |
| 			gpios = <&gpio0 11 1>;
 | |
| 		};
 | |
| 	};
 | |
| };
 | |
| 
 |