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