Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
54608 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/frequency/adi,adf4377.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: ADF4377 Microwave Wideband Synthesizer with Integrated VCO
8
9
maintainers:
10
- Antoniu Miclaus <antoniu.miclaus@analog.com>
11
- Dragos Bogdan <dragos.bogdan@analog.com>
12
13
description: |
14
The ADF4377 is a high performance, ultralow jitter, dual output integer-N
15
phased locked loop (PLL) with integrated voltage controlled oscillator (VCO)
16
ideally suited for data converter and mixed signal front end (MxFE) clock
17
applications.
18
19
https://www.analog.com/en/products/adf4377.html
20
https://www.analog.com/en/products/adf4378.html
21
22
properties:
23
compatible:
24
enum:
25
- adi,adf4377
26
- adi,adf4378
27
28
reg:
29
maxItems: 1
30
31
spi-max-frequency:
32
maximum: 10000000
33
34
clocks:
35
maxItems: 1
36
37
clock-names:
38
description:
39
External clock that provides reference input frequency.
40
items:
41
- const: ref_in
42
43
'#clock-cells':
44
const: 0
45
46
clock-output-names:
47
maxItems: 1
48
49
chip-enable-gpios:
50
description:
51
GPIO that controls the Chip Enable Pin.
52
maxItems: 1
53
54
clk1-enable-gpios:
55
description:
56
GPIO that controls the Enable Clock 1 Output Buffer Pin.
57
maxItems: 1
58
59
clk2-enable-gpios:
60
description:
61
GPIO that controls the Enable Clock 2 Output Buffer Pin.
62
maxItems: 1
63
64
adi,muxout-select:
65
description:
66
On chip multiplexer output selection.
67
high_z - MUXOUT Pin set to high-Z.
68
lock_detect - MUXOUT Pin set to lock detector output.
69
muxout_low - MUXOUT Pin set to low.
70
f_div_rclk_2 - MUXOUT Pin set to fDIV_RCLK/2.
71
f_div_nclk_2 - MUXOUT Pin set to fDIV_NCLK/2.
72
muxout_high - MUXOUT Pin set to high.
73
enum: [high_z, lock_detect, muxout_low, f_div_rclk_2, f_div_nclk_2, muxout_high]
74
75
required:
76
- compatible
77
- reg
78
- clocks
79
- clock-names
80
81
allOf:
82
- $ref: /schemas/spi/spi-peripheral-props.yaml#
83
- if:
84
properties:
85
compatible:
86
contains:
87
enum:
88
- adi,adf4378
89
then:
90
properties:
91
clk2-enable-gpios: false
92
93
unevaluatedProperties: false
94
95
examples:
96
- |
97
spi {
98
#address-cells = <1>;
99
#size-cells = <0>;
100
frequency@0 {
101
compatible = "adi,adf4377";
102
reg = <0>;
103
spi-max-frequency = <10000000>;
104
clocks = <&adf4377_ref_in>;
105
clock-names = "ref_in";
106
#clock-cells = <0>;
107
clock-output-names = "adf4377";
108
};
109
};
110
...
111
112