From: Markuss Broks <markuss.broks@gmail.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: Markuss Broks <markuss.broks@gmail.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Alim Akhtar <alim.akhtar@samsung.com>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 2/7] ARM: dts: exynos: k3g: Add GPIO keys support
Date: Mon, 17 Jul 2023 01:05:04 +0300 [thread overview]
Message-ID: <20230716220644.22158-4-markuss.broks@gmail.com> (raw)
In-Reply-To: <20230716220644.22158-1-markuss.broks@gmail.com>
Add the four physical buttons support, volume buttons have
external pull-up resistors.
Signed-off-by: Markuss Broks <markuss.broks@gmail.com>
---
arch/arm/boot/dts/exynos5422-samsung-k3g.dts | 60 ++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/arch/arm/boot/dts/exynos5422-samsung-k3g.dts b/arch/arm/boot/dts/exynos5422-samsung-k3g.dts
index 1a11a6993ba7..c3e006dc34ea 100644
--- a/arch/arm/boot/dts/exynos5422-samsung-k3g.dts
+++ b/arch/arm/boot/dts/exynos5422-samsung-k3g.dts
@@ -8,6 +8,7 @@
/dts-v1/;
#include <dt-bindings/clock/samsung,s2mps11.h>
#include <dt-bindings/gpio/gpio.h>
+#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
#include "exynos5800.dtsi"
#include "exynos5422-cpus.dtsi"
@@ -21,6 +22,45 @@ / {
aliases {
mmc0 = &mmc_0;
+ mmc1 = &mmc_1;
+ };
+
+ gpio-keys {
+ compatible = "gpio-keys";
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&power_gpio &volume_up_gpio &volume_down_gpio &home_gpio>;
+
+ key-volume-up {
+ label = "Volume Up";
+ gpios = <&gpx0 2 GPIO_ACTIVE_LOW>;
+ linux,input-type = <1>;
+ linux,code = <KEY_VOLUMEUP>;
+ debounce-interval = <15>;
+ };
+
+ key-volume-down {
+ label = "Volume Down";
+ gpios = <&gpx0 3 GPIO_ACTIVE_LOW>;
+ linux,code = <KEY_VOLUMEDOWN>;
+ debounce-interval = <15>;
+ };
+
+ key-home {
+ label = "Home";
+ gpios = <&gpx0 5 GPIO_ACTIVE_LOW>;
+ linux,code = <KEY_HOMEPAGE>;
+ wakeup-source;
+ debounce-interval = <15>;
+ };
+
+ key-power {
+ label = "Power";
+ gpios = <&gpx2 2 GPIO_ACTIVE_LOW>;
+ linux,code = <KEY_POWER>;
+ wakeup-source;
+ debounce-interval = <15>;
+ };
};
memory@20000000 {
@@ -641,6 +681,21 @@ &mmc_1 {
};
&pinctrl_0 {
+ volume_up_gpio: volume-up-pins {
+ samsung,pins = "gpx0-2";
+ samsung,pin-pud = <EXYNOS_PIN_PULL_NONE>; /* External pull up */
+ };
+
+ volume_down_gpio: volume-down-pins {
+ samsung,pins = "gpx0-3";
+ samsung,pin-pud = <EXYNOS_PIN_PULL_NONE>; /* External pull up */
+ };
+
+ home_gpio: home-key-pins {
+ samsung,pins = "gpx0-5";
+ samsung,pin-pud = <EXYNOS_PIN_PULL_UP>;
+ };
+
s2mps11_irq: s2mps11-irq-pins {
samsung,pins = "gpx0-7";
samsung,pin-function = <EXYNOS_PIN_FUNC_F>;
@@ -653,6 +708,11 @@ touch_irq: touch-irq-pins {
samsung,pin-pud = <EXYNOS_PIN_PULL_DOWN>;
};
+ power_gpio: power-key-pins {
+ samsung,pins = "gpx2-2";
+ samsung,pin-pud = <EXYNOS_PIN_PULL_UP>;
+ };
+
wlan_reset: wlan-reset {
samsung,pins = "gpy7-7";
samsung,pin-pud = <EXYNOS_PIN_PULL_NONE>;
--
2.41.0
next prev parent reply other threads:[~2023-07-16 22:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-16 22:05 [PATCH 0/7] Add various peripheral support for K3G Markuss Broks
2023-07-16 22:05 ` [PATCH 1/7] ARM: dts: exynos: k3g: Add WiFi card support Markuss Broks
2023-07-19 9:04 ` Krzysztof Kozlowski
2023-07-16 22:05 ` [PATCH 2/7] ARM: dts: exynos: Add GPIO keys support for k3g Markuss Broks
2023-07-16 22:05 ` Markuss Broks [this message]
2023-07-19 9:04 ` [PATCH 2/7] ARM: dts: exynos: k3g: Add GPIO keys support Krzysztof Kozlowski
2023-07-16 22:05 ` [PATCH 3/7] ARM: dts: exynos: k3g: Add fuel gauge support Markuss Broks
2023-07-16 22:05 ` [PATCH 4/7] ARM: dts: exynos: k3g: Add touchkeys support Markuss Broks
2023-07-16 22:05 ` [PATCH 5/7] ARM: dts: exynos: k3g: Add notification LED support Markuss Broks
2023-07-19 9:17 ` Krzysztof Kozlowski
2023-07-16 22:05 ` [PATCH 6/7] ARM: dts: exynos: k3g: Document the devices which are not supported Markuss Broks
2023-07-19 9:18 ` Krzysztof Kozlowski
2023-07-16 22:05 ` [PATCH 7/7] ARM: dts: exynos: k3g: Add display support Markuss Broks
2023-07-19 9:19 ` Krzysztof Kozlowski
2023-07-19 9:03 ` [PATCH 0/7] Add various peripheral support for K3G Krzysztof Kozlowski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230716220644.22158-4-markuss.broks@gmail.com \
--to=markuss.broks@gmail.com \
--cc=alim.akhtar@samsung.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).