xref: /freebsd/sys/contrib/device-tree/Bindings/serial/actions,owl-uart.yaml (revision 7d0873ebb83b19ba1e8a89e679470d885efe12e3)
1*7d0873ebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*7d0873ebSEmmanuel Vadot%YAML 1.2
3*7d0873ebSEmmanuel Vadot---
4*7d0873ebSEmmanuel Vadot$id: http://devicetree.org/schemas/serial/actions,owl-uart.yaml#
5*7d0873ebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*7d0873ebSEmmanuel Vadot
7*7d0873ebSEmmanuel Vadottitle: Actions Semi Owl UART
8*7d0873ebSEmmanuel Vadot
9*7d0873ebSEmmanuel Vadotmaintainers:
10*7d0873ebSEmmanuel Vadot  - Kanak Shilledar <kanakshilledar111@protonmail.com>
11*7d0873ebSEmmanuel Vadot
12*7d0873ebSEmmanuel VadotallOf:
13*7d0873ebSEmmanuel Vadot  - $ref: serial.yaml
14*7d0873ebSEmmanuel Vadot
15*7d0873ebSEmmanuel Vadotproperties:
16*7d0873ebSEmmanuel Vadot  compatible:
17*7d0873ebSEmmanuel Vadot    items:
18*7d0873ebSEmmanuel Vadot      - enum:
19*7d0873ebSEmmanuel Vadot          - actions,s500-uart
20*7d0873ebSEmmanuel Vadot          - actions,s900-uart
21*7d0873ebSEmmanuel Vadot      - const: actions,owl-uart
22*7d0873ebSEmmanuel Vadot
23*7d0873ebSEmmanuel Vadot  reg:
24*7d0873ebSEmmanuel Vadot    maxItems: 1
25*7d0873ebSEmmanuel Vadot
26*7d0873ebSEmmanuel Vadot  interrupts:
27*7d0873ebSEmmanuel Vadot    maxItems: 1
28*7d0873ebSEmmanuel Vadot
29*7d0873ebSEmmanuel Vadot  clocks:
30*7d0873ebSEmmanuel Vadot    maxItems: 1
31*7d0873ebSEmmanuel Vadot
32*7d0873ebSEmmanuel Vadotrequired:
33*7d0873ebSEmmanuel Vadot  - compatible
34*7d0873ebSEmmanuel Vadot  - reg
35*7d0873ebSEmmanuel Vadot  - interrupts
36*7d0873ebSEmmanuel Vadot
37*7d0873ebSEmmanuel VadotunevaluatedProperties: false
38*7d0873ebSEmmanuel Vadot
39*7d0873ebSEmmanuel Vadotexamples:
40*7d0873ebSEmmanuel Vadot  - |
41*7d0873ebSEmmanuel Vadot    #include <dt-bindings/clock/actions,s500-cmu.h>
42*7d0873ebSEmmanuel Vadot    #include <dt-bindings/interrupt-controller/arm-gic.h>
43*7d0873ebSEmmanuel Vadot    uart0: serial@b0126000 {
44*7d0873ebSEmmanuel Vadot        compatible = "actions,s500-uart", "actions,owl-uart";
45*7d0873ebSEmmanuel Vadot        reg = <0xb0126000 0x1000>;
46*7d0873ebSEmmanuel Vadot        clocks = <&cmu CLK_UART0>;
47*7d0873ebSEmmanuel Vadot        interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
48*7d0873ebSEmmanuel Vadot    };
49