uniphier-uart.txt 549 B

1234567891011121314151617181920212223
  1. UniPhier UART controller
  2. Required properties:
  3. - compatible: should be "socionext,uniphier-uart".
  4. - reg: offset and length of the register set for the device.
  5. - interrupts: a single interrupt specifier.
  6. - clocks: phandle to the input clock.
  7. Optional properties:
  8. - fifo-size: the RX/TX FIFO size. Defaults to 64 if not specified.
  9. Example:
  10. aliases {
  11. serial0 = &serial0;
  12. };
  13. serial0: serial@54006800 {
  14. compatible = "socionext,uniphier-uart";
  15. reg = <0x54006800 0x40>;
  16. interrupts = <0 33 4>;
  17. clocks = <&uart_clk>;
  18. fifo-size = <64>;
  19. };