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>
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/clock/fsl,plldig.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: NXP QorIQ Layerscape LS1028A Display PIXEL Clock
|
|
|
|
maintainers:
|
|
- Wen He <wen.he_1@nxp.com>
|
|
|
|
description: |
|
|
NXP LS1028A has a clock domain PXLCLK0 used for the Display output
|
|
interface in the display core, as implemented in TSMC CLN28HPM PLL.
|
|
which generate and offers pixel clocks to Display.
|
|
|
|
properties:
|
|
compatible:
|
|
const: fsl,ls1028a-plldig
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
'#clock-cells':
|
|
const: 0
|
|
|
|
fsl,vco-hz:
|
|
description: Optional for VCO frequency of the PLL in Hertz. The VCO frequency
|
|
of this PLL cannot be changed during runtime only at startup. Therefore,
|
|
the output frequencies are very limited and might not even closely match
|
|
the requested frequency. To work around this restriction the user may specify
|
|
its own desired VCO frequency for the PLL.
|
|
minimum: 650000000
|
|
maximum: 1300000000
|
|
default: 1188000000
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- '#clock-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
# Display PIXEL Clock node:
|
|
- |
|
|
dpclk: clock-display@f1f0000 {
|
|
compatible = "fsl,ls1028a-plldig";
|
|
reg = <0xf1f0000 0xffff>;
|
|
#clock-cells = <0>;
|
|
clocks = <&osc_27m>;
|
|
};
|
|
|
|
...
|