mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 07:13:56 -04:00
Cleanup by removing unneeded quotes from refs and redundant blank lines. No functional impact except adjusting to preferred coding style. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Dmitry Rokosov <ddrokosov@sberdevices.ru> # memsensing Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> # sama5d2-adc Reviewed-by: Puranjay Mohan <puranjay12@gmail.com> # tmp117 Acked-by: Rob Herring <robh@kernel.org> Acked-by: Marcelo Schmitt <marcelo.schmitt1@gmail.com> # ad7292 Link: https://lore.kernel.org/r/20230124081037.31013-1-krzysztof.kozlowski@linaro.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
111 lines
2.2 KiB
YAML
111 lines
2.2 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/dac/st,stm32-dac.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: STMicroelectronics STM32 DAC
|
|
|
|
description: |
|
|
The STM32 DAC is a 12-bit voltage output digital-to-analog converter. The DAC
|
|
may be configured in 8 or 12-bit mode. It has two output channels, each with
|
|
its own converter.
|
|
It has built-in noise and triangle waveform generator and supports external
|
|
triggers for conversions. The DAC's output buffer allows a high drive output
|
|
current.
|
|
|
|
maintainers:
|
|
- Fabrice Gasnier <fabrice.gasnier@foss.st.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- st,stm32f4-dac-core
|
|
- st,stm32h7-dac-core
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
resets:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: pclk
|
|
|
|
vref-supply:
|
|
description: Phandle to the vref input analog reference voltage.
|
|
|
|
'#address-cells':
|
|
const: 1
|
|
|
|
'#size-cells':
|
|
const: 0
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
- vref-supply
|
|
- '#address-cells'
|
|
- '#size-cells'
|
|
|
|
patternProperties:
|
|
"^dac@[1-2]+$":
|
|
type: object
|
|
description:
|
|
A DAC block node should contain at least one subnode, representing an
|
|
DAC instance/channel available on the machine.
|
|
|
|
properties:
|
|
compatible:
|
|
const: st,stm32-dac
|
|
|
|
reg:
|
|
description: Must be either 1 or 2, to define (single) channel in use
|
|
enum: [1, 2]
|
|
|
|
'#io-channel-cells':
|
|
const: 1
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- '#io-channel-cells'
|
|
|
|
examples:
|
|
- |
|
|
// Example on stm32mp157c
|
|
#include <dt-bindings/clock/stm32mp1-clks.h>
|
|
dac: dac@40017000 {
|
|
compatible = "st,stm32h7-dac-core";
|
|
reg = <0x40017000 0x400>;
|
|
clocks = <&rcc DAC12>;
|
|
clock-names = "pclk";
|
|
vref-supply = <&vref>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
dac@1 {
|
|
compatible = "st,stm32-dac";
|
|
#io-channel-cells = <1>;
|
|
reg = <1>;
|
|
};
|
|
|
|
dac@2 {
|
|
compatible = "st,stm32-dac";
|
|
#io-channel-cells = <1>;
|
|
reg = <2>;
|
|
};
|
|
};
|
|
|
|
...
|