nvidia,tegra30-actmon.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. NVIDIA Tegra Activity Monitor
  2. The activity monitor block collects statistics about the behaviour of other
  3. components in the system. This information can be used to derive the rate at
  4. which the external memory needs to be clocked in order to serve all requests
  5. from the monitored clients.
  6. Required properties:
  7. - compatible: should be "nvidia,tegra<chip>-actmon"
  8. - reg: offset and length of the register set for the device
  9. - interrupts: standard interrupt property
  10. - clocks: Must contain a phandle and clock specifier pair for each entry in
  11. clock-names. See ../../clock/clock-bindings.txt for details.
  12. - clock-names: Must include the following entries:
  13. - actmon
  14. - emc
  15. - resets: Must contain an entry for each entry in reset-names. See
  16. ../../reset/reset.txt for details.
  17. - reset-names: Must include the following entries:
  18. - actmon
  19. Example:
  20. actmon@6000c800 {
  21. compatible = "nvidia,tegra124-actmon";
  22. reg = <0x0 0x6000c800 0x0 0x400>;
  23. interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
  24. clocks = <&tegra_car TEGRA124_CLK_ACTMON>,
  25. <&tegra_car TEGRA124_CLK_EMC>;
  26. clock-names = "actmon", "emc";
  27. resets = <&tegra_car 119>;
  28. reset-names = "actmon";
  29. };