Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: serial: Convert nxp,lpc3220-hsuart to DT schema

Convert the NXP LPC3220 HS UART binding to DT schema. It is a
straight-forward conversion.

Signed-off-by: "Rob Herring (Arm)" <robh@kernel.org>
Acked-by: Vladimir Zapolskiy <vz@mleia.com>
Link: https://lore.kernel.org/r/20250506220048.2546915-1-robh@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Rob Herring (Arm) and committed by
Greg Kroah-Hartman
30b3aeca 2ff5d5f6

+39 -14
+39
Documentation/devicetree/bindings/serial/nxp,lpc3220-hsuart.yaml
··· 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 + 7 + title: NXP LPC32xx SoC High Speed UART 8 + 9 + maintainers: 10 + - Vladimir Zapolskiy <vz@mleia.com> 11 + - Piotr Wojtaszczyk <piotr.wojtaszczyk@timesys.com> 12 + 13 + allOf: 14 + - $ref: /schemas/serial/serial.yaml# 15 + 16 + properties: 17 + compatible: 18 + const: nxp,lpc3220-hsuart 19 + 20 + reg: 21 + maxItems: 1 22 + 23 + interrupts: 24 + maxItems: 1 25 + 26 + required: 27 + - compatible 28 + - reg 29 + - interrupts 30 + 31 + unevaluatedProperties: false 32 + 33 + examples: 34 + - | 35 + serial@40014000 { 36 + compatible = "nxp,lpc3220-hsuart"; 37 + reg = <0x40014000 0x1000>; 38 + interrupts = <26 0>; 39 + };
-14
Documentation/devicetree/bindings/serial/nxp-lpc32xx-hsuart.txt
··· 1 - * NXP LPC32xx SoC High Speed UART 2 - 3 - Required properties: 4 - - compatible: Should be "nxp,lpc3220-hsuart" 5 - - reg: Should contain registers location and length 6 - - interrupts: Should contain interrupt 7 - 8 - Example: 9 - 10 - uart1: serial@40014000 { 11 - compatible = "nxp,lpc3220-hsuart"; 12 - reg = <0x40014000 0x1000>; 13 - interrupts = <26 0>; 14 - };