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>
121 lines
2.8 KiB
YAML
121 lines
2.8 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/adc/sprd,sc2720-adc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Spreadtrum SC27XX series PMICs ADC
|
|
|
|
maintainers:
|
|
- Baolin Wang <baolin.wang7@gmail.com>
|
|
|
|
description:
|
|
Supports the ADC found on these PMICs.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- sprd,sc2720-adc
|
|
- sprd,sc2721-adc
|
|
- sprd,sc2723-adc
|
|
- sprd,sc2730-adc
|
|
- sprd,sc2731-adc
|
|
- sprd,ump9620-adc
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
"#io-channel-cells":
|
|
const: 1
|
|
|
|
hwlocks:
|
|
maxItems: 1
|
|
|
|
nvmem-cells: true
|
|
|
|
nvmem-cell-names: true
|
|
|
|
allOf:
|
|
- if:
|
|
not:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
enum:
|
|
- sprd,ump9620-adc
|
|
then:
|
|
properties:
|
|
nvmem-cells:
|
|
maxItems: 2
|
|
nvmem-cell-names:
|
|
items:
|
|
- const: big_scale_calib
|
|
- const: small_scale_calib
|
|
|
|
else:
|
|
properties:
|
|
nvmem-cells:
|
|
maxItems: 6
|
|
nvmem-cell-names:
|
|
items:
|
|
- const: big_scale_calib1
|
|
- const: big_scale_calib2
|
|
- const: small_scale_calib1
|
|
- const: small_scale_calib2
|
|
- const: vbat_det_cal1
|
|
- const: vbat_det_cal2
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- "#io-channel-cells"
|
|
- hwlocks
|
|
- nvmem-cells
|
|
- nvmem-cell-names
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
pmic {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
adc@480 {
|
|
compatible = "sprd,sc2731-adc";
|
|
reg = <0x480>;
|
|
interrupt-parent = <&sc2731_pmic>;
|
|
interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
|
|
#io-channel-cells = <1>;
|
|
hwlocks = <&hwlock 4>;
|
|
nvmem-cells = <&adc_big_scale>, <&adc_small_scale>;
|
|
nvmem-cell-names = "big_scale_calib", "small_scale_calib";
|
|
};
|
|
};
|
|
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
pmic {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
adc@504 {
|
|
compatible = "sprd,ump9620-adc";
|
|
reg = <0x504>;
|
|
interrupt-parent = <&ump9620_pmic>;
|
|
interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
|
|
#io-channel-cells = <1>;
|
|
hwlocks = <&hwlock 4>;
|
|
nvmem-cells = <&adc_bcal1>, <&adc_bcal2>,
|
|
<&adc_scal1>, <&adc_scal2>,
|
|
<&vbat_det_cal1>, <&vbat_det_cal2>;
|
|
nvmem-cell-names = "big_scale_calib1", "big_scale_calib2",
|
|
"small_scale_calib1", "small_scale_calib2",
|
|
"vbat_det_cal1", "vbat_det_cal2";
|
|
};
|
|
};
|
|
...
|