Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
26309 views
1
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/iio/dac/adi,ad7293.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: AD7293 12-Bit Power Amplifier Current Controller with ADC,
8
DACs, Temperature and Current Sensors
9
10
maintainers:
11
- Antoniu Miclaus <antoniu.miclaus@analog.com>
12
13
description: |
14
Power Amplifier drain current controller containing functionality
15
for general-purpose monitoring and control of current, voltage,
16
and temperature, integrated into a single chip solution with an
17
SPI-compatible interface.
18
19
https://www.analog.com/en/products/ad7293.html
20
21
properties:
22
compatible:
23
enum:
24
- adi,ad7293
25
26
avdd-supply: true
27
28
vdrive-supply: true
29
30
vrefin-supply: true
31
32
reset-gpios:
33
maxItems: 1
34
35
reg:
36
maxItems: 1
37
38
spi-max-frequency:
39
maximum: 1000000
40
41
required:
42
- compatible
43
- reg
44
- avdd-supply
45
- vdrive-supply
46
47
additionalProperties: false
48
49
examples:
50
- |
51
spi {
52
#address-cells = <1>;
53
#size-cells = <0>;
54
ad7293@0 {
55
compatible = "adi,ad7293";
56
reg = <0>;
57
spi-max-frequency = <1000000>;
58
avdd-supply = <&avdd>;
59
vdrive-supply = <&vdrive>;
60
reset-gpios = <&gpio 10 0>;
61
};
62
};
63
...
64
65