mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -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>
63 lines
1.4 KiB
YAML
63 lines
1.4 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/clock/qcom,rpmhcc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Technologies, Inc. RPMh Clocks
|
|
|
|
maintainers:
|
|
- Taniya Das <tdas@codeaurora.org>
|
|
|
|
description: |
|
|
Resource Power Manager Hardened (RPMh) manages shared resources on
|
|
some Qualcomm Technologies Inc. SoCs. It accepts clock requests from
|
|
other hardware subsystems via RSC to control clocks.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- qcom,qdu1000-rpmh-clk
|
|
- qcom,sc7180-rpmh-clk
|
|
- qcom,sc7280-rpmh-clk
|
|
- qcom,sc8180x-rpmh-clk
|
|
- qcom,sc8280xp-rpmh-clk
|
|
- qcom,sdm670-rpmh-clk
|
|
- qcom,sdm845-rpmh-clk
|
|
- qcom,sdx55-rpmh-clk
|
|
- qcom,sdx65-rpmh-clk
|
|
- qcom,sm6350-rpmh-clk
|
|
- qcom,sm8150-rpmh-clk
|
|
- qcom,sm8250-rpmh-clk
|
|
- qcom,sm8350-rpmh-clk
|
|
- qcom,sm8450-rpmh-clk
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: xo
|
|
|
|
'#clock-cells':
|
|
const: 1
|
|
|
|
required:
|
|
- compatible
|
|
- '#clock-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
# Example for GCC for SDM845: The below node should be defined inside
|
|
# &apps_rsc node.
|
|
- |
|
|
#include <dt-bindings/clock/qcom,rpmh.h>
|
|
rpmhcc: clock-controller {
|
|
compatible = "qcom,sdm845-rpmh-clk";
|
|
clocks = <&xo_board>;
|
|
clock-names = "xo";
|
|
#clock-cells = <1>;
|
|
};
|
|
...
|