nvidia,tegra20-ictlr.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. NVIDIA Legacy Interrupt Controller
  2. All Tegra SoCs contain a legacy interrupt controller that routes
  3. interrupts to the GIC, and also serves as a wakeup source. It is also
  4. referred to as "ictlr", hence the name of the binding.
  5. The HW block exposes a number of interrupt controllers, each
  6. implementing a set of 32 interrupts.
  7. Required properties:
  8. - compatible : should be: "nvidia,tegra<chip>-ictlr". The LIC on
  9. subsequent SoCs remained backwards-compatible with Tegra30, so on
  10. Tegra generations later than Tegra30 the compatible value should
  11. include "nvidia,tegra30-ictlr".
  12. - reg : Specifies base physical address and size of the registers.
  13. Each controller must be described separately (Tegra20 has 4 of them,
  14. whereas Tegra30 and later have 5).
  15. - interrupt-controller : Identifies the node as an interrupt controller.
  16. - #interrupt-cells : Specifies the number of cells needed to encode an
  17. interrupt source. The value must be 3.
  18. Notes:
  19. - Because this HW ultimately routes interrupts to the GIC, the
  20. interrupt specifier must be that of the GIC.
  21. - Only SPIs can use the ictlr as an interrupt parent. SGIs and PPIs
  22. are explicitly forbidden.
  23. Example:
  24. ictlr: interrupt-controller@60004000 {
  25. compatible = "nvidia,tegra20-ictlr", "nvidia,tegra-ictlr";
  26. reg = <0x60004000 64>,
  27. <0x60004100 64>,
  28. <0x60004200 64>,
  29. <0x60004300 64>;
  30. interrupt-controller;
  31. #interrupt-cells = <3>;
  32. interrupt-parent = <&intc>;
  33. };