Add bindings for Qualcomm SPMI haptics on platforms using pmi8998. Signed-off-by: Caleb Connolly <caleb@connolly.tech> (JAMI: fixup for v6.0-rc2 & v7 of driver patches)
87 lines
1.9 KiB
Text
87 lines
1.9 KiB
Text
// SPDX-License-Identifier: GPL-2.0
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
#include <dt-bindings/spmi/spmi.h>
|
|
|
|
&spmi_bus {
|
|
pmi8998_lsid0: pmic@2 {
|
|
compatible = "qcom,pmi8998", "qcom,spmi-pmic";
|
|
reg = <0x2 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pmi8998_gpio: gpios@c000 {
|
|
compatible = "qcom,pmi8998-gpio", "qcom,spmi-gpio";
|
|
reg = <0xc000>;
|
|
gpio-controller;
|
|
gpio-ranges = <&pmi8998_gpio 0 0 14>;
|
|
#gpio-cells = <2>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
|
|
pmi8998_fg: fuel-gauge@4000 {
|
|
compatible = "qcom,pmi8998-fg";
|
|
reg = <0x4000>;
|
|
|
|
interrupts = <0x2 0x40 0x3 IRQ_TYPE_EDGE_RISING>;
|
|
interrupt-names = "soc-delta";
|
|
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
pmi8998_lsid1: pmic@3 {
|
|
compatible = "qcom,pmi8998", "qcom,spmi-pmic";
|
|
reg = <0x3 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
labibb {
|
|
compatible = "qcom,pmi8998-lab-ibb";
|
|
|
|
ibb: ibb {
|
|
interrupts = <0x3 0xdc 0x2 IRQ_TYPE_EDGE_RISING>,
|
|
<0x3 0xdc 0x0 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "sc-err", "ocp";
|
|
};
|
|
|
|
lab: lab {
|
|
interrupts = <0x3 0xde 0x1 IRQ_TYPE_EDGE_RISING>,
|
|
<0x3 0xde 0x0 IRQ_TYPE_LEVEL_LOW>;
|
|
interrupt-names = "sc-err", "ocp";
|
|
};
|
|
};
|
|
|
|
pmi8998_lpg: pwm {
|
|
compatible = "qcom,pmi8998-lpg";
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
#pwm-cells = <2>;
|
|
|
|
status = "disabled";
|
|
};
|
|
|
|
pmi8998_wled: leds@d800 {
|
|
compatible = "qcom,pmi8998-wled";
|
|
reg = <0xd800>, <0xd900>;
|
|
interrupts = <0x3 0xd8 0x1 IRQ_TYPE_EDGE_RISING>,
|
|
<0x3 0xd8 0x2 IRQ_TYPE_EDGE_RISING>;
|
|
interrupt-names = "ovp", "short";
|
|
label = "backlight";
|
|
|
|
status = "disabled";
|
|
};
|
|
|
|
pmi8998_haptics: haptics@c000 {
|
|
compatible = "qcom,pmi8998-haptics";
|
|
reg = <0xc000>;
|
|
|
|
interrupts = <0x3 0xc0 0x0 IRQ_TYPE_EDGE_BOTH>,
|
|
<0x3 0xc0 0x1 IRQ_TYPE_EDGE_BOTH>;
|
|
interrupt-names = "short", "play";
|
|
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|