mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Emails to stefan.popa@analog.com and alexandru.tachici@analog.com bounce permanently: Remote Server returned '550 5.1.10 RESOLVER.ADR.RecipientNotFound; Recipient not found by SMTP address lookup' so replace them with Marcelo Schmitt and Nuno Sá (listed alphabetically by first name) from Analog where appropriate. Acked-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Nuno Sá <nuno.sa@analog.com> Acked-by: Marcelo Schmitt <marcelo.schmitt@analog.com> Link: https://patch.msgid.link/20250812132445.75398-2-krzysztof.kozlowski@linaro.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/frequency/adf4371.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Analog Devices ADF4371/ADF4372 Wideband Synthesizers
|
|
|
|
maintainers:
|
|
- Marcelo Schmitt <marcelo.schmitt@analog.com>
|
|
- Nuno Sá <nuno.sa@analog.com>
|
|
|
|
description: |
|
|
Analog Devices ADF4371/ADF4372 SPI Wideband Synthesizers
|
|
https://www.analog.com/media/en/technical-documentation/data-sheets/adf4371.pdf
|
|
https://www.analog.com/media/en/technical-documentation/data-sheets/adf4372.pdf
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- adi,adf4371
|
|
- adi,adf4372
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
description:
|
|
Definition of the external clock (see clock/clock-bindings.txt)
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
description:
|
|
Must be "clkin" if the input reference is single ended or "clkin-diff"
|
|
if the input reference is differential.
|
|
enum: [clkin, clkin-diff]
|
|
|
|
adi,mute-till-lock-en:
|
|
type: boolean
|
|
description:
|
|
If this property is present, then the supply current to RF8P and RF8N
|
|
output stage will shut down until the ADF4371/ADF4372 achieves lock as
|
|
measured by the digital lock detect circuitry.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
|
|
allOf:
|
|
- $ref: /schemas/spi/spi-peripheral-props.yaml#
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
spi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
frequency@0 {
|
|
compatible = "adi,adf4371";
|
|
reg = <0>;
|
|
spi-max-frequency = <1000000>;
|
|
clocks = <&adf4371_clkin>;
|
|
clock-names = "clkin";
|
|
};
|
|
};
|
|
...
|