forked from analogdevicesinc/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlltc,ltc2387.yaml
More file actions
77 lines (63 loc) · 1.6 KB
/
lltc,ltc2387.yaml
File metadata and controls
77 lines (63 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
# Copyright 2022 Analog Devices Inc.
%YAML 1.2
---
$id: http://devicetree.org/schemas/bindings/iio/adc/ltc2387.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Linear Technology / Analog Devices LTC2387 ADC
maintainers:
- Sergiu Cuciurean <sergiu.cuciurean@analog.com>
description: |
The LTC2387-18 is a low noise, high speed, 18-bit 15Msps
successive approximation register (SAR) ADC ideally
suited for a wide range of applications.
https://www.analog.com/media/en/technical-documentation/data-sheets/238718fa.pdf
https://www.analog.com/media/en/technical-documentation/data-sheets/238716f.pdf
properties:
compatible:
enum:
- ltc2387-16
- ltc2387-16-x4
- ltc2387-18
- ltc2387-18-x4
- adaq23875
- adaq23876
- adaq23878
clocks:
description: Sampling clock
maxItems: 1
dmas:
maxItems: 1
dma-names:
items:
- const: rx
pwms:
maxItems: 2
description:
PWM signals used to synchronize the sampling procedure
pwm-names:
items:
- const: cnv
- const: clk_en
adi,use-two-lanes:
description: The device uses two lanes for data transfer
type: boolean
required:
- compatible
- clocks
- dmas
- dma-names
- pwms
- pwm-names
examples:
- |
ltc2387@0{
compatible = "ltc2387-16";
clocks = <&clk 0>;
dmas = <&dma 0>;
dma-names = "rx";
pwms = <&pwm 0 0
&pwm 1 0>;
pwm-names = "cnv", "clk_en";
adi,use-two-lanes;
};