mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -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>
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/mmc/mmc-pwrseq-simple.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Simple MMC power sequence provider
|
|
|
|
maintainers:
|
|
- Ulf Hansson <ulf.hansson@linaro.org>
|
|
|
|
description:
|
|
The purpose of the simple MMC power sequence provider is to supports a set
|
|
of common properties between various SOC designs. It thus enables us to use
|
|
the same provider for several SOC designs.
|
|
|
|
properties:
|
|
compatible:
|
|
const: mmc-pwrseq-simple
|
|
|
|
reset-gpios:
|
|
minItems: 1
|
|
# Put some limit to avoid false warnings
|
|
maxItems: 32
|
|
description:
|
|
contains a list of GPIO specifiers. The reset GPIOs are asserted
|
|
at initialization and prior we start the power up procedure of the card.
|
|
They will be de-asserted right after the power has been provided to the
|
|
card.
|
|
|
|
clocks:
|
|
minItems: 1
|
|
description: Handle for the entry in clock-names.
|
|
|
|
clock-names:
|
|
items:
|
|
- const: ext_clock
|
|
description: External clock provided to the card.
|
|
|
|
post-power-on-delay-ms:
|
|
description:
|
|
Delay in ms after powering the card and de-asserting the
|
|
reset-gpios (if any).
|
|
|
|
power-off-delay-us:
|
|
description:
|
|
Delay in us after asserting the reset-gpios (if any)
|
|
during power off of the card.
|
|
|
|
required:
|
|
- compatible
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
sdhci0_pwrseq {
|
|
compatible = "mmc-pwrseq-simple";
|
|
reset-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
|
|
clocks = <&clk_32768_ck>;
|
|
clock-names = "ext_clock";
|
|
};
|
|
...
|