1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/serial/nxp,lpc3220-hsuart.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: NXP LPC32xx SoC High Speed UART 8 9maintainers: 10 - Vladimir Zapolskiy <vz@mleia.com> 11 - Piotr Wojtaszczyk <piotr.wojtaszczyk@timesys.com> 12 13allOf: 14 - $ref: /schemas/serial/serial.yaml# 15 16properties: 17 compatible: 18 const: nxp,lpc3220-hsuart 19 20 reg: 21 maxItems: 1 22 23 interrupts: 24 maxItems: 1 25 26required: 27 - compatible 28 - reg 29 - interrupts 30 31unevaluatedProperties: false 32 33examples: 34 - | 35 serial@40014000 { 36 compatible = "nxp,lpc3220-hsuart"; 37 reg = <0x40014000 0x1000>; 38 interrupts = <26 0>; 39 }; 40