diff mbox series

[4/7] sandbox: dtsi: add buttons

Message ID 1594644972-2588-4-git-send-email-philippe.reynes@softathome.com
State Superseded
Delegated to: Simon Glass
Headers show
Series [1/7] dm: button: add an uclass for button | expand

Commit Message

Philippe REYNES July 13, 2020, 12:56 p.m. UTC
Adds two buttons on sandbox so button framework may be tested.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 arch/sandbox/dts/sandbox.dtsi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

Comments

Simon Glass July 15, 2020, 1:05 a.m. UTC | #1
On Mon, 13 Jul 2020 at 06:56, Philippe Reynes
<philippe.reynes@softathome.com> wrote:
>
> Adds two buttons on sandbox so button framework may be tested.
>
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
> ---
>  arch/sandbox/dts/sandbox.dtsi | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

But don't you want this in test.dtsi too if it is for testing?
diff mbox series

Patch

diff --git a/arch/sandbox/dts/sandbox.dtsi b/arch/sandbox/dts/sandbox.dtsi
index e1f68cd..bd87dac 100644
--- a/arch/sandbox/dts/sandbox.dtsi
+++ b/arch/sandbox/dts/sandbox.dtsi
@@ -15,6 +15,20 @@ 
 		#sound-dai-cells = <1>;
 	};
 
+	buttons {
+		compatible = "button-gpio";
+
+		summer {
+			gpios = <&gpio_a 3 0>;
+			label = "summer";
+		};
+
+		christmas {
+			gpios = <&gpio_a 4 0>;
+			label = "christmas";
+		};
+	};
+
 	gpio_a: gpios@0 {
 		u-boot,dm-pre-reloc;
 		gpio-controller;