nvidia,tegra186-pmc.txt 842 B

123456789101112131415161718192021222324252627282930313233343536
  1. NVIDIA Tegra Power Management Controller (PMC)
  2. Required properties:
  3. - compatible: Should contain one of the following:
  4. - "nvidia,tegra186-pmc": for Tegra186
  5. - "nvidia,tegra194-pmc": for Tegra194
  6. - reg: Must contain an (offset, length) pair of the register set for each
  7. entry in reg-names.
  8. - reg-names: Must include the following entries:
  9. - "pmc"
  10. - "wake"
  11. - "aotag"
  12. - "scratch"
  13. - "misc" (Only for Tegra194)
  14. Optional properties:
  15. - nvidia,invert-interrupt: If present, inverts the PMU interrupt signal.
  16. Example:
  17. SoC DTSI:
  18. pmc@c3600000 {
  19. compatible = "nvidia,tegra186-pmc";
  20. reg = <0 0x0c360000 0 0x10000>,
  21. <0 0x0c370000 0 0x10000>,
  22. <0 0x0c380000 0 0x10000>,
  23. <0 0x0c390000 0 0x10000>;
  24. reg-names = "pmc", "wake", "aotag", "scratch";
  25. };
  26. Board DTS:
  27. pmc@c360000 {
  28. nvidia,invert-interrupt;
  29. };