qpnp-misc.txt 534 B

12345678910111213141516171819202122232425262728
  1. QPNP-MISC
  2. QPNP-MISC provides a way to read the PMIC part number and revision.
  3. Required properties:
  4. - compatible : should be "qcom,qpnp-misc"
  5. - reg : offset and length of the PMIC peripheral register map.
  6. Example:
  7. qcom,spmi@fc4c0000 {
  8. #address-cells = <1>;
  9. #size-cells = <0>;
  10. interrupt-controller;
  11. #interrupt-cells = <3>;
  12. qcom,pm8941@0 {
  13. spmi-slave-container;
  14. reg = <0x0>;
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. qcom,misc@900 {
  18. compatible = "qcom,qpnp-misc";
  19. reg = <0x900 0x100>;
  20. };
  21. }
  22. };