brintos

brintos / linux-shallow public Read only

0
0
Text · 813 B · 9c68192 Raw
47 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2 3%YAML 1.24---5$id: http://devicetree.org/schemas/serial/via,vt8500-uart.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: VIA VT8500 and WonderMedia WM8xxx UART Controller9 10maintainers:11  - Alexey Charkov <alchark@gmail.com>12 13allOf:14  - $ref: serial.yaml15 16properties:17  compatible:18    enum:19      - via,vt8500-uart # up to WM8850/WM895020      - wm,wm8880-uart  # for WM8880 and later21 22  clocks:23    maxItems: 124 25  interrupts:26    maxItems: 127 28  reg:29    maxItems: 130 31required:32  - compatible33  - clocks34  - interrupts35  - reg36 37unevaluatedProperties: false38 39examples:40  - |41    serial@d8200000 {42        compatible = "via,vt8500-uart";43        reg = <0xd8200000 0x1040>;44        interrupts = <32>;45        clocks = <&clkuart0>;46    };47