sunxi-ir.txt 699 B

1234567891011121314151617181920212223
  1. Device-Tree bindings for SUNXI IR controller found in sunXi SoC family
  2. Required properties:
  3. - compatible : should be "allwinner,sun4i-a10-ir";
  4. - clocks : list of clock specifiers, corresponding to
  5. entries in clock-names property;
  6. - clock-names : should contain "apb" and "ir" entries;
  7. - interrupts : should contain IR IRQ number;
  8. - reg : should contain IO map address for IR.
  9. Optional properties:
  10. - linux,rc-map-name : Remote control map name.
  11. Example:
  12. ir0: ir@01c21800 {
  13. compatible = "allwinner,sun4i-a10-ir";
  14. clocks = <&apb0_gates 6>, <&ir0_clk>;
  15. clock-names = "apb", "ir";
  16. interrupts = <0 5 1>;
  17. reg = <0x01C21800 0x40>;
  18. linux,rc-map-name = "rc-rc6-mce";
  19. };