ingenic,uart.txt 621 B

1234567891011121314151617181920212223
  1. * Ingenic SoC UART
  2. Required properties:
  3. - compatible : "ingenic,jz4740-uart", "ingenic,jz4760-uart",
  4. "ingenic,jz4775-uart" or "ingenic,jz4780-uart"
  5. - reg : offset and length of the register set for the device.
  6. - interrupts : should contain uart interrupt.
  7. - clocks : phandles to the module & baud clocks.
  8. - clock-names: tuple listing input clock names.
  9. Required elements: "baud", "module"
  10. Example:
  11. uart0: serial@10030000 {
  12. compatible = "ingenic,jz4740-uart";
  13. reg = <0x10030000 0x100>;
  14. interrupt-parent = <&intc>;
  15. interrupts = <9>;
  16. clocks = <&ext>, <&cgu JZ4740_CLK_UART0>;
  17. clock-names = "baud", "module";
  18. };