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