mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 04:03:58 +08:00
aed3d7012c
The JZ4770 SoC's UART is no different from the other JZ SoCs, so this commit simply adds the ingenic,jz4770-uart compatible string. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
28 lines
670 B
Plaintext
28 lines
670 B
Plaintext
* Ingenic SoC UART
|
|
|
|
Required properties:
|
|
- compatible : One of:
|
|
- "ingenic,jz4740-uart",
|
|
- "ingenic,jz4760-uart",
|
|
- "ingenic,jz4770-uart",
|
|
- "ingenic,jz4775-uart",
|
|
- "ingenic,jz4780-uart".
|
|
- reg : offset and length of the register set for the device.
|
|
- interrupts : should contain uart interrupt.
|
|
- clocks : phandles to the module & baud clocks.
|
|
- clock-names: tuple listing input clock names.
|
|
Required elements: "baud", "module"
|
|
|
|
Example:
|
|
|
|
uart0: serial@10030000 {
|
|
compatible = "ingenic,jz4740-uart";
|
|
reg = <0x10030000 0x100>;
|
|
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <9>;
|
|
|
|
clocks = <&ext>, <&cgu JZ4740_CLK_UART0>;
|
|
clock-names = "baud", "module";
|
|
};
|