ARM: dts: qcom: Add pm8226 PMIC
authorLuca Weiss <luca@z3ntu.xyz>
Sat, 11 Sep 2021 23:26:59 +0000 (01:26 +0200)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Mon, 13 Sep 2021 17:49:21 +0000 (12:49 -0500)
The pm8226 is used with Qualcomm platforms, like msm8226.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20210911232707.259615-6-luca@z3ntu.xyz
arch/arm/boot/dts/qcom-pm8226.dtsi [new file with mode: 0644]

diff --git a/arch/arm/boot/dts/qcom-pm8226.dtsi b/arch/arm/boot/dts/qcom-pm8226.dtsi
new file mode 100644 (file)
index 0000000..dddb515
--- /dev/null
@@ -0,0 +1,27 @@
+// SPDX-License-Identifier: BSD-3-Clause
+#include <dt-bindings/interrupt-controller/irq.h>
+#include <dt-bindings/spmi/spmi.h>
+
+&spmi_bus {
+       pm8226_0: pm8226@0 {
+               compatible = "qcom,pm8226", "qcom,spmi-pmic";
+               reg = <0x0 SPMI_USID>;
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               pwrkey@800 {
+                       compatible = "qcom,pm8941-pwrkey";
+                       reg = <0x800>;
+                       interrupts = <0x0 0x8 0 IRQ_TYPE_EDGE_BOTH>;
+                       debounce = <15625>;
+                       bias-pull-up;
+               };
+       };
+
+       pm8226_1: pm8226@1 {
+               compatible = "qcom,pm8226", "qcom,spmi-pmic";
+               reg = <0x1 SPMI_USID>;
+               #address-cells = <1>;
+               #size-cells = <0>;
+       };
+};