nvidia,tegra30-mc.txt 558 B

12345678910111213141516171819
  1. NVIDIA Tegra30 MC(Memory Controller)
  2. Required properties:
  3. - compatible : "nvidia,tegra30-mc"
  4. - reg : Should contain 4 register ranges(address and length); see the
  5. example below. Note that the MC registers are interleaved with the
  6. SMMU registers, and hence must be represented as multiple ranges.
  7. - interrupts : Should contain MC General interrupt.
  8. Example:
  9. memory-controller {
  10. compatible = "nvidia,tegra30-mc";
  11. reg = <0x7000f000 0x010
  12. 0x7000f03c 0x1b4
  13. 0x7000f200 0x028
  14. 0x7000f284 0x17c>;
  15. interrupts = <0 77 0x04>;
  16. };