xref: /freebsd/sys/contrib/device-tree/Bindings/serial/snps,arc-uart.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*ae5de77eSEmmanuel Vadot%YAML 1.2
3*ae5de77eSEmmanuel Vadot---
4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/serial/snps,arc-uart.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: Synopsys ARC UART
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Vineet Gupta <vgupta@kernel.org>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotdescription:
13*ae5de77eSEmmanuel Vadot  Synopsys ARC UART is a non-standard UART used in some of the ARC FPGA boards.
14*ae5de77eSEmmanuel Vadot
15*ae5de77eSEmmanuel VadotallOf:
16*ae5de77eSEmmanuel Vadot  - $ref: /schemas/serial/serial.yaml#
17*ae5de77eSEmmanuel Vadot
18*ae5de77eSEmmanuel Vadotproperties:
19*ae5de77eSEmmanuel Vadot  compatible:
20*ae5de77eSEmmanuel Vadot    const: snps,arc-uart
21*ae5de77eSEmmanuel Vadot
22*ae5de77eSEmmanuel Vadot  reg:
23*ae5de77eSEmmanuel Vadot    maxItems: 1
24*ae5de77eSEmmanuel Vadot
25*ae5de77eSEmmanuel Vadot  interrupts:
26*ae5de77eSEmmanuel Vadot    maxItems: 1
27*ae5de77eSEmmanuel Vadot
28*ae5de77eSEmmanuel Vadot  clock-frequency:
29*ae5de77eSEmmanuel Vadot    description: the input clock frequency for the UART
30*ae5de77eSEmmanuel Vadot
31*ae5de77eSEmmanuel Vadot  current-speed:
32*ae5de77eSEmmanuel Vadot    description: baud rate for UART
33*ae5de77eSEmmanuel Vadot
34*ae5de77eSEmmanuel Vadotrequired:
35*ae5de77eSEmmanuel Vadot  - compatible
36*ae5de77eSEmmanuel Vadot  - reg
37*ae5de77eSEmmanuel Vadot  - interrupts
38*ae5de77eSEmmanuel Vadot  - clock-frequency
39*ae5de77eSEmmanuel Vadot  - current-speed
40*ae5de77eSEmmanuel Vadot
41*ae5de77eSEmmanuel VadotunevaluatedProperties: false
42*ae5de77eSEmmanuel Vadot
43*ae5de77eSEmmanuel Vadotexamples:
44*ae5de77eSEmmanuel Vadot  - |
45*ae5de77eSEmmanuel Vadot    serial@c0fc1000 {
46*ae5de77eSEmmanuel Vadot        compatible = "snps,arc-uart";
47*ae5de77eSEmmanuel Vadot        reg = <0xc0fc1000 0x100>;
48*ae5de77eSEmmanuel Vadot        interrupts = <5>;
49*ae5de77eSEmmanuel Vadot        clock-frequency = <80000000>;
50*ae5de77eSEmmanuel Vadot        current-speed = <115200>;
51*ae5de77eSEmmanuel Vadot    };
52