mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-08 07:13:06 +00:00
32 lines
750 B
Plaintext
32 lines
750 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2019, The Linux Foundation. All rights reserved.
|
|
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
#include <dt-bindings/spmi/spmi.h>
|
|
|
|
&spmi_bus {
|
|
pm6150l_lsid4: pmic@4 {
|
|
compatible = "qcom,pm6150l", "qcom,spmi-pmic";
|
|
reg = <0x4 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pm6150l_gpio: gpios@c000 {
|
|
compatible = "qcom,pm6150l-gpio", "qcom,spmi-gpio";
|
|
reg = <0xc000>;
|
|
gpio-controller;
|
|
gpio-ranges = <&pm6150l_gpio 0 0 12>;
|
|
#gpio-cells = <2>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
};
|
|
|
|
pm6150l_lsid5: pmic@5 {
|
|
compatible = "qcom,pm6150l", "qcom,spmi-pmic";
|
|
reg = <0x5 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
};
|