Add snapshot of device tree bindings from keystone common kernel, branch "android-mainline-keystone-qcom-release" at c4c12103f9c0 ("Snap for 9228065 from e32903b9a63bb558df8b803b076619c53c16baad to android-mainline-keystone-qcom-release"). Change-Id: I7682079615cbd9f29340a5c1f2a1d84ec441a1f1 Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
26 lines
614 B
Plaintext
26 lines
614 B
Plaintext
* Synopsys ARC UART : Non standard UART used in some of the ARC FPGA boards
|
|
|
|
Required properties:
|
|
- compatible : "snps,arc-uart"
|
|
- reg : offset and length of the register set for the device.
|
|
- interrupts : device interrupt
|
|
- clock-frequency : the input clock frequency for the UART
|
|
- current-speed : baud rate for UART
|
|
|
|
e.g.
|
|
|
|
arcuart0: serial@c0fc1000 {
|
|
compatible = "snps,arc-uart";
|
|
reg = <0xc0fc1000 0x100>;
|
|
interrupts = <5>;
|
|
clock-frequency = <80000000>;
|
|
current-speed = <115200>;
|
|
};
|
|
|
|
Note: Each port should have an alias correctly numbered in "aliases" node.
|
|
|
|
e.g.
|
|
aliases {
|
|
serial0 = &arcuart0;
|
|
};
|