mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
b73fb8b536
* Try that punk NASA -_-
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
#include <dt-bindings/spmi/spmi.h>
|
|
|
|
&spmi_bus {
|
|
|
|
pmic@2 {
|
|
compatible = "qcom,pmi8994", "qcom,spmi-pmic";
|
|
reg = <0x2 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pmi8994_gpios: gpios@c000 {
|
|
compatible = "qcom,pmi8994-gpio", "qcom,spmi-gpio";
|
|
reg = <0xc000>;
|
|
gpio-controller;
|
|
gpio-ranges = <&pmi8994_gpios 0 0 10>;
|
|
#gpio-cells = <2>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
};
|
|
|
|
pmic@3 {
|
|
compatible = "qcom,pmi8994", "qcom,spmi-pmic";
|
|
reg = <0x3 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pmi8994_spmi_regulators: regulators {
|
|
compatible = "qcom,pmi8994-regulators";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
};
|
|
|
|
pmi8994_wled: wled@d800 {
|
|
compatible = "qcom,pmi8994-wled";
|
|
reg = <0xd800 0xd900>;
|
|
interrupts = <3 0xd8 0x02 IRQ_TYPE_EDGE_RISING>;
|
|
interrupt-names = "short";
|
|
qcom,num-strings = <3>;
|
|
/* Yes, all four strings *have to* be defined or things won't work. */
|
|
qcom,enabled-strings = <0 1 2 3>;
|
|
qcom,cabc;
|
|
qcom,eternal-pfet;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|