digicolor-ic.txt 641 B

123456789101112131415161718192021
  1. Conexant Digicolor Interrupt Controller
  2. Required properties:
  3. - compatible : should be "cnxt,cx92755-ic"
  4. - reg : Specifies base physical address and size of the interrupt controller
  5. registers (IC) area
  6. - interrupt-controller : Identifies the node as an interrupt controller
  7. - #interrupt-cells : Specifies the number of cells needed to encode an
  8. interrupt source. The value shall be 1.
  9. - syscon: A phandle to the syscon node describing UC registers
  10. Example:
  11. intc: interrupt-controller@f0000040 {
  12. compatible = "cnxt,cx92755-ic";
  13. interrupt-controller;
  14. #interrupt-cells = <1>;
  15. reg = <0xf0000040 0x40>;
  16. syscon = <&uc_regs>;
  17. };