0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002
0003 %YAML 1.2
0004 ---
0005 $id: http://devicetree.org/schemas/serial/litex,liteuart.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007
0008 title: LiteUART serial controller
0009
0010 maintainers:
0011 - Karol Gugala <kgugala@antmicro.com>
0012 - Mateusz Holenko <mholenko@antmicro.com>
0013
0014 description: |
0015 LiteUART serial controller is a part of the LiteX FPGA SoC builder. It supports
0016 multiple CPU architectures, currently including e.g. OpenRISC and RISC-V.
0017
0018 properties:
0019 compatible:
0020 const: litex,liteuart
0021
0022 reg:
0023 maxItems: 1
0024
0025 interrupts:
0026 maxItems: 1
0027
0028 required:
0029 - compatible
0030 - reg
0031
0032 additionalProperties: false
0033
0034 examples:
0035 - |
0036 uart0: serial@e0001800 {
0037 compatible = "litex,liteuart";
0038 reg = <0xe0001800 0x100>;
0039 interrupts = <2>;
0040 };