spmi-pmic-arb.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. Qualcomm SPMI Controller (PMIC Arbiter)
  2. Required properties:
  3. - cell-index : the bus identifier.
  4. - compatible : should be "qcom,spmi-pmic-arb".
  5. - reg-names : should be "core", "intr", "cnfg"
  6. - reg : offset and length of the PMIC Arbiter Core register map.
  7. - reg : offset and length of the PMIC Arbiter Interrupt controller register map.
  8. - reg : offset and length of the PMIC Arbiter Configuration register map.
  9. - interrupts : the PMIC Arbiter interrupt.
  10. - qcom,pmic-arb-ee : the execution environment (EE) identifier.
  11. - qcom,pmic-arb-channel : the assigned channel number for channel registers.
  12. Optional properties:
  13. - qcom,not-wakeup : boolean property which indicates that SPMI PMIC interrupts
  14. should not be treated as wakeup sources
  15. Example:
  16. qcom,spmi@fc4c0000 {
  17. cell-index = <0>;
  18. compatible = "qcom,spmi-pmic-arb";
  19. reg-names = "core", "intr", "cnfg";
  20. reg = <0xfc4cf000 0x1000>,
  21. <0Xfc4cb000 0x1000>,
  22. <0Xfc4ca000 0x1000>;
  23. interrupts = <0>;
  24. qcom,pmic-arb-ee = <0>;
  25. qcom,pmic-arb-channel = <0>;
  26. };