mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 09:45:29 +07:00
8ea4ffca89
Add basic support for the pm8005 and pm8998 PMICs. For now just support the GPIO controllers. Signed-off-by: Stephen Boyd <swboyd@chromium.org> Reviewed-by: Evan Green <evgreen@chromium.org> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Andy Gross <andy.gross@linaro.org>
34 lines
771 B
Plaintext
34 lines
771 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/* Copyright 2018 Google LLC. */
|
|
|
|
#include <dt-bindings/spmi/spmi.h>
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
&spmi_bus {
|
|
pm8005_lsid0: pmic@4 {
|
|
compatible = "qcom,pm8005", "qcom,spmi-pmic";
|
|
reg = <0x4 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pm8005_gpio: gpios@c000 {
|
|
compatible = "qcom,pm8005-gpio", "qcom,spmi-gpio";
|
|
reg = <0xc000>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
interrupts = <0 0xc0 0 IRQ_TYPE_NONE>,
|
|
<0 0xc1 0 IRQ_TYPE_NONE>,
|
|
<0 0xc2 0 IRQ_TYPE_NONE>,
|
|
<0 0xc3 0 IRQ_TYPE_NONE>;
|
|
};
|
|
|
|
};
|
|
|
|
pm8005_lsid1: pmic@5 {
|
|
compatible = "qcom,pm8005", "qcom,spmi-pmic";
|
|
reg = <0x5 SPMI_USID>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
};
|