mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	This patch fixes wrong usage of debounce-interval subnode property of
gpio-keys-polled nodes, which was used inproperly in parent node, but it
belongs to the subnodes, excerpt from the docs:
 Optional subnode-properties:
     - debounce-interval: Debouncing interval time in milliseconds.
       If not specified defaults to 5.
And the docs are up to date as the source code matches that description
as well:
 if (fwnode_property_read_u32(child, "debounce-interval",
                              &button->debounce_interval))
         button->debounce_interval = 5;
While at it, I've also re-formatted gpio-keys-polled nodes, usually just
adding new lines after every key subnode.
Cc: Tomasz Maciej Nowak <tomek_n@o2.pl>
Cc: Matt Merhar <mattmerhar@protonmail.com>
Cc: Jonas Gorski <jonas.gorski@gmail.com>
Signed-off-by: Petr Štetiar <ynezz@true.cz>
		
	
			
		
			
				
	
	
		
			172 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/dts-v1/;
 | 
						|
 | 
						|
#include "bcm6358.dtsi"
 | 
						|
 | 
						|
#include <dt-bindings/input/input.h>
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "BT Home Hub 2.0 Type A";
 | 
						|
	compatible = "thomson,homehub2a", "brcm,bcm6358";
 | 
						|
 | 
						|
	chosen {
 | 
						|
		bootargs = "rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
 | 
						|
		stdout-path = "serial0:115200n8";
 | 
						|
	};
 | 
						|
 | 
						|
	gpio-keys-polled {
 | 
						|
		compatible = "gpio-keys-polled";
 | 
						|
		#address-cells = <1>;
 | 
						|
		#size-cells = <0>;
 | 
						|
		poll-interval = <20>;
 | 
						|
 | 
						|
		phone {
 | 
						|
			label = "phone";
 | 
						|
			gpios = <&pinctrl 1 1>;
 | 
						|
			linux,code = <KEY_PHONE>;
 | 
						|
			debounce-interval = <60>;
 | 
						|
		};
 | 
						|
 | 
						|
		reset {
 | 
						|
			label = "reset";
 | 
						|
			gpios = <&pinctrl 9 1>;
 | 
						|
			linux,code = <KEY_RESTART>;
 | 
						|
			debounce-interval = <60>;
 | 
						|
		};
 | 
						|
 | 
						|
		wps {
 | 
						|
			label = "wps";
 | 
						|
			gpios = <&pinctrl 11 1>;
 | 
						|
			linux,code = <KEY_WPS_BUTTON>;
 | 
						|
			debounce-interval = <60>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&leds {
 | 
						|
	status = "ok";
 | 
						|
 | 
						|
	pinctrl-names = "default";
 | 
						|
	pinctrl-0 = <&pinctrl_serial_led>;
 | 
						|
 | 
						|
	led@0 {
 | 
						|
		reg = <0>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:red:power";
 | 
						|
	};
 | 
						|
 | 
						|
	led@1 {
 | 
						|
		reg = <0>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:green:power";
 | 
						|
		default-state = "on";
 | 
						|
	};
 | 
						|
 | 
						|
	led@2 {
 | 
						|
		reg = <2>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:blue:power";
 | 
						|
	};
 | 
						|
 | 
						|
	led@3 {
 | 
						|
		reg = <3>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:red:broadband";
 | 
						|
	};
 | 
						|
 | 
						|
	led@4 {
 | 
						|
		reg = <4>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:green:broadband";
 | 
						|
	};
 | 
						|
 | 
						|
	led@5 {
 | 
						|
		reg = <5>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:blue:broadband";
 | 
						|
	};
 | 
						|
 | 
						|
	led@6 {
 | 
						|
		reg = <6>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:red:wireless";
 | 
						|
	};
 | 
						|
 | 
						|
	led@7 {
 | 
						|
		reg = <7>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:green:wireless";
 | 
						|
	};
 | 
						|
 | 
						|
	led@8 {
 | 
						|
		reg = <8>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:blue:wireless";
 | 
						|
	};
 | 
						|
 | 
						|
	led@9 {
 | 
						|
		reg = <9>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:red:phone";
 | 
						|
	};
 | 
						|
 | 
						|
	led@10 {
 | 
						|
		reg = <10>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:green:phone";
 | 
						|
	};
 | 
						|
 | 
						|
	led@11 {
 | 
						|
		reg = <11>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:blue:phone";
 | 
						|
	};
 | 
						|
 | 
						|
	led@12 {
 | 
						|
		reg = <12>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:red:upgrading";
 | 
						|
	};
 | 
						|
 | 
						|
	led@13 {
 | 
						|
		reg = <13>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:green:upgrading";
 | 
						|
	};
 | 
						|
 | 
						|
	led@14 {
 | 
						|
		reg = <14>;
 | 
						|
		active-low;
 | 
						|
		label = "HOMEHUB2A:blue:upgrading";
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&pflash {
 | 
						|
	status = "ok";
 | 
						|
 | 
						|
	partitions {
 | 
						|
		compatible = "fixed-partitions";
 | 
						|
		#address-cells = <1>;
 | 
						|
		#size-cells = <1>;
 | 
						|
 | 
						|
		cfe@0 {
 | 
						|
			label = "CFE";
 | 
						|
			reg = <0x000000 0x020000>;
 | 
						|
		};
 | 
						|
 | 
						|
		linux@20000 {
 | 
						|
			label = "linux";
 | 
						|
			reg = <0x020000 0xfc0000>;
 | 
						|
			compatible = "brcm,bcm963xx-imagetag";
 | 
						|
		};
 | 
						|
 | 
						|
		nvram@fe0000 {
 | 
						|
			label = "nvram";
 | 
						|
			reg = <0xfe0000 0x020000>;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&uart0 {
 | 
						|
	status = "ok";
 | 
						|
};
 |