mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 15:53:59 -04:00
The Devicetree bindings document does not have to say in the title that
it is a "binding", but instead just describe the hardware.
Drop trailing "bindings" in various forms (also with trailing full
stop):
find Documentation/devicetree/bindings/ -type f -name '*.yaml' \
-not -name 'trivial-devices.yaml' \
-exec sed -i -e 's/^title: \(.*\) [bB]indings\?\.\?$/title: \1/' {} \;
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: Matti Vaittinen <mazziesaccount@gmail.com> # ROHM
Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # MMC
Acked-by: Stephen Boyd <sboyd@kernel.org> # clk
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> # input
Acked-by: Mark Brown <broonie@kernel.org>
Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> # media
Acked-by: Sebastian Reichel <sre@kernel.org> # power
Acked-by: Viresh Kumar <viresh.kumar@linaro.org> # cpufreq
Link: https://lore.kernel.org/r/20221216163815.522628-7-krzysztof.kozlowski@linaro.org
Signed-off-by: Rob Herring <robh@kernel.org>
47 lines
1.8 KiB
YAML
47 lines
1.8 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/arm/keystone/ti,k3-sci-common.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Common K3 TI-SCI
|
|
|
|
maintainers:
|
|
- Nishanth Menon <nm@ti.com>
|
|
|
|
description: |
|
|
The TI K3 family of SoCs usually have a central System Controller Processor
|
|
that is responsible for managing various SoC-level resources like clocks,
|
|
resets, interrupts etc. The communication with that processor is performed
|
|
through the TI-SCI protocol.
|
|
|
|
Each specific device management node like a clock controller node, a reset
|
|
controller node or an interrupt-controller node should define a common set
|
|
of properties that enables them to implement the corresponding functionality
|
|
over the TI-SCI protocol. The following are some of the common properties
|
|
needed by such individual nodes. The required properties for each device
|
|
management node is defined in the respective binding.
|
|
|
|
properties:
|
|
ti,sci:
|
|
$ref: /schemas/types.yaml#/definitions/phandle
|
|
description:
|
|
Should be a phandle to the TI-SCI System Controller node
|
|
|
|
ti,sci-dev-id:
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
description: |
|
|
Should contain the TI-SCI device id corresponding to the device. Please
|
|
refer to the corresponding System Controller documentation for valid
|
|
values for the desired device.
|
|
|
|
ti,sci-proc-ids:
|
|
description: Should contain a single tuple of <proc_id host_id>.
|
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
|
items:
|
|
- description: TI-SCI processor id for the remote processor device
|
|
- description: TI-SCI host id to which processor control ownership
|
|
should be transferred to
|
|
|
|
additionalProperties: true
|