st-rc.txt 1.0 KB

1234567891011121314151617181920212223242526272829
  1. Device-Tree bindings for ST IRB IP
  2. Required properties:
  3. - compatible: Should contain "st,comms-irb".
  4. - reg: Base physical address of the controller and length of memory
  5. mapped region.
  6. - interrupts: interrupt-specifier for the sole interrupt generated by
  7. the device. The interrupt specifier format depends on the interrupt
  8. controller parent.
  9. - rx-mode: can be "infrared" or "uhf". This property specifies the L1
  10. protocol used for receiving remote control signals. rx-mode should
  11. be present iff the rx pins are wired up.
  12. - tx-mode: should be "infrared". This property specifies the L1
  13. protocol used for transmitting remote control signals. tx-mode should
  14. be present iff the tx pins are wired up.
  15. Optional properties:
  16. - pinctrl-names, pinctrl-0: the pincontrol settings to configure muxing
  17. properly for IRB pins.
  18. - clocks : phandle with clock-specifier pair for IRB.
  19. Example node:
  20. rc: rc@fe518000 {
  21. compatible = "st,comms-irb";
  22. reg = <0xfe518000 0x234>;
  23. interrupts = <0 203 0>;
  24. rx-mode = "infrared";
  25. };