mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 15:24:02 -04:00
Cleanup bindings dropping the last remaining unneeded quotes. With this, the check for this can be enabled in yamllint. Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> # for mtd Acked-by: Sudeep Holla <sudeep.holla@arm.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Wolfram Sang <wsa@kernel.org> # for AT24/I2C Acked-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/20230823183749.2609013-1-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
# # Copyright (c) 2018 Google LLC
|
|
# # Copyright (c) 2021 Aspeed Technology Inc.
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/soc/aspeed/uart-routing.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Aspeed UART Routing Controller
|
|
|
|
maintainers:
|
|
- Oskar Senft <osk@google.com>
|
|
- Chia-Wei Wang <chiawei_wang@aspeedtech.com>
|
|
|
|
description:
|
|
The Aspeed UART routing control allow to dynamically route the inputs for
|
|
the built-in UARTS and physical serial I/O ports.
|
|
|
|
This allows, for example, to connect the output of UART to another UART.
|
|
This can be used to enable Host <-> BMC communication via UARTs, e.g. to
|
|
allow access to the Host's serial console.
|
|
|
|
This driver is for the BMC side. The sysfs files allow the BMC userspace
|
|
which owns the system configuration policy, to configure how UARTs and
|
|
physical serial I/O ports are routed.
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- enum:
|
|
- aspeed,ast2400-uart-routing
|
|
- aspeed,ast2500-uart-routing
|
|
- aspeed,ast2600-uart-routing
|
|
reg:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
lpc: lpc@1e789000 {
|
|
compatible = "aspeed,ast2600-lpc-v2", "simple-mfd", "syscon";
|
|
reg = <0x1e789000 0x1000>;
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges = <0x0 0x1e789000 0x1000>;
|
|
|
|
uart_routing: uart-routing@98 {
|
|
compatible = "aspeed,ast2600-uart-routing";
|
|
reg = <0x98 0x8>;
|
|
};
|
|
};
|