img-ir-rev1.txt 997 B

12345678910111213141516171819202122232425262728293031323334
  1. * ImgTec Infrared (IR) decoder version 1
  2. This binding is for Imagination Technologies' Infrared decoder block,
  3. specifically major revision 1.
  4. Required properties:
  5. - compatible: Should be "img,ir-rev1"
  6. - reg: Physical base address of the controller and length of
  7. memory mapped region.
  8. - interrupts: The interrupt specifier to the cpu.
  9. Optional properties:
  10. - clocks: List of clock specifiers as described in standard
  11. clock bindings.
  12. Up to 3 clocks may be specified in the following order:
  13. 1st: Core clock (defaults to 32.768KHz if omitted).
  14. 2nd: System side (fast) clock.
  15. 3rd: Power modulation clock.
  16. - clock-names: List of clock names corresponding to the clocks
  17. specified in the clocks property.
  18. Accepted clock names are:
  19. "core": Core clock.
  20. "sys": System clock.
  21. "mod": Power modulation clock.
  22. Example:
  23. ir@02006200 {
  24. compatible = "img,ir-rev1";
  25. reg = <0x02006200 0x100>;
  26. interrupts = <29 4>;
  27. clocks = <&clk_32khz>;
  28. clock-names = "core";
  29. };