milbeaut-uart.txt 589 B

123456789101112131415161718192021
  1. Socionext Milbeaut UART controller
  2. Required properties:
  3. - compatible: should be "socionext,milbeaut-usio-uart".
  4. - reg: offset and length of the register set for the device.
  5. - interrupts: two interrupts specifier.
  6. - interrupt-names: should be "rx", "tx".
  7. - clocks: phandle to the input clock.
  8. Optional properties:
  9. - auto-flow-control: flow control enable.
  10. Example:
  11. usio1: usio_uart@1e700010 {
  12. compatible = "socionext,milbeaut-usio-uart";
  13. reg = <0x1e700010 0x10>;
  14. interrupts = <0 141 0x4>, <0 149 0x4>;
  15. interrupt-names = "rx", "tx";
  16. clocks = <&clk 2>;
  17. auto-flow-control;
  18. };