rockchip,iommu.txt 971 B

1234567891011121314151617181920212223242526
  1. Rockchip IOMMU
  2. ==============
  3. A Rockchip DRM iommu translates io virtual addresses to physical addresses for
  4. its master device. Each slave device is bound to a single master device, and
  5. shares its clocks, power domain and irq.
  6. Required properties:
  7. - compatible : Should be "rockchip,iommu"
  8. - reg : Address space for the configuration registers
  9. - interrupts : Interrupt specifier for the IOMMU instance
  10. - interrupt-names : Interrupt name for the IOMMU instance
  11. - #iommu-cells : Should be <0>. This indicates the iommu is a
  12. "single-master" device, and needs no additional information
  13. to associate with its master device. See:
  14. Documentation/devicetree/bindings/iommu/iommu.txt
  15. Example:
  16. vopl_mmu: iommu@ff940300 {
  17. compatible = "rockchip,iommu";
  18. reg = <0xff940300 0x100>;
  19. interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
  20. interrupt-names = "vopl_mmu";
  21. #iommu-cells = <0>;
  22. };