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 arm,sbsa-uart to DT schema

Convert the Arm SBSA UART binding to DT schema. It is a straight-forward
conversion.

Signed-off-by: "Rob Herring (Arm)" <robh@kernel.org>
Reviewed-by: Thierry Reding <treding@nvidia.com>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Link: https://lore.kernel.org/r/20250506220016.2545637-1-robh@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Rob Herring (Arm) and committed by
Greg Kroah-Hartman
7282b8ad 6259530c

+38 -10
+38
Documentation/devicetree/bindings/serial/arm,sbsa-uart.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + --- 3 + $id: http://devicetree.org/schemas/serial/arm,sbsa-uart.yaml# 4 + $schema: http://devicetree.org/meta-schemas/core.yaml# 5 + 6 + title: ARM SBSA UART 7 + 8 + maintainers: 9 + - Andre Przywara <andre.przywara@arm.com> 10 + 11 + description: 12 + This UART uses a subset of the PL011 registers and consequently lives in the 13 + PL011 driver. It's baudrate and other communication parameters cannot be 14 + adjusted at runtime, so it lacks a clock specifier here. 15 + 16 + allOf: 17 + - $ref: /schemas/serial/serial.yaml# 18 + 19 + properties: 20 + compatible: 21 + const: arm,sbsa-uart 22 + 23 + reg: 24 + maxItems: 1 25 + 26 + interrupts: 27 + maxItems: 1 28 + 29 + current-speed: 30 + description: fixed baud rate set by the firmware 31 + 32 + required: 33 + - compatible 34 + - reg 35 + - interrupts 36 + - current-speed 37 + 38 + unevaluatedProperties: false
-10
Documentation/devicetree/bindings/serial/arm_sbsa_uart.txt
··· 1 - * ARM SBSA defined generic UART 2 - This UART uses a subset of the PL011 registers and consequently lives 3 - in the PL011 driver. It's baudrate and other communication parameters 4 - cannot be adjusted at runtime, so it lacks a clock specifier here. 5 - 6 - Required properties: 7 - - compatible: must be "arm,sbsa-uart" 8 - - reg: exactly one register range 9 - - interrupts: exactly one interrupt specifier 10 - - current-speed: the (fixed) baud rate set by the firmware