summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/serial/arc-uart.txt
blob: 256cc150ca7e55fb2c077f5c72db964dfeb891bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
* 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;
};