ingenic,uart.txt 670 B

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