blob: 02cb7fe59cb776281ec2cdf150ff661fcab9b4ce [file] [log] [blame]
Paul Burton98fd25e2015-05-24 16:11:43 +01001* Ingenic SoC UART
2
3Required properties:
Matt Redfearnacccab42015-09-08 16:55:36 +01004- compatible : "ingenic,jz4740-uart", "ingenic,jz4760-uart",
5 "ingenic,jz4775-uart" or "ingenic,jz4780-uart"
Paul Burton98fd25e2015-05-24 16:11:43 +01006- 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};