33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
|
Qualcomm SPMI Controller (PMIC Arbiter)
|
||
|
|
||
|
Required properties:
|
||
|
- cell-index : the bus identifier.
|
||
|
- compatible : should be "qcom,spmi-pmic-arb".
|
||
|
- reg-names : should be "core", "intr", "cnfg"
|
||
|
- reg : offset and length of the PMIC Arbiter Core register map.
|
||
|
- reg : offset and length of the PMIC Arbiter Interrupt controller register map.
|
||
|
- reg : offset and length of the PMIC Arbiter Configuration register map.
|
||
|
- interrupts : the PMIC Arbiter interrupt.
|
||
|
- qcom,pmic-arb-ee : the execution environment (EE) identifier.
|
||
|
- qcom,pmic-arb-channel : the assigned channel number for channel registers.
|
||
|
|
||
|
Optional properties:
|
||
|
- qcom,not-wakeup : boolean property which indicates that SPMI PMIC interrupts
|
||
|
should not be treated as wakeup sources
|
||
|
|
||
|
Example:
|
||
|
|
||
|
qcom,spmi@fc4c0000 {
|
||
|
cell-index = <0>;
|
||
|
compatible = "qcom,spmi-pmic-arb";
|
||
|
reg-names = "core", "intr", "cnfg";
|
||
|
reg = <0xfc4cf000 0x1000>,
|
||
|
<0Xfc4cb000 0x1000>,
|
||
|
<0Xfc4ca000 0x1000>;
|
||
|
interrupts = <0>;
|
||
|
qcom,pmic-arb-ee = <0>;
|
||
|
qcom,pmic-arb-channel = <0>;
|
||
|
};
|
||
|
|
||
|
|