-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: iio: adc: add bindings doc for AXI ADC driver
This change adds the bindings documentation for the AXI ADC driver. Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
- Loading branch information
Alexandru Ardelean
authored and
Jonathan Cameron
committed
Apr 19, 2020
1 parent
ef04070
commit 96553a4
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
Documentation/devicetree/bindings/iio/adc/adi,axi-adc.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/iio/adc/adi,axi-adc.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Analog Devices AXI ADC IP core | ||
|
||
maintainers: | ||
- Michael Hennerich <michael.hennerich@analog.com> | ||
- Alexandru Ardelean <alexandru.ardelean@analog.com> | ||
|
||
description: | | ||
Analog Devices Generic AXI ADC IP core for interfacing an ADC device | ||
with a high speed serial (JESD204B/C) or source synchronous parallel | ||
interface (LVDS/CMOS). | ||
Usually, some other interface type (i.e SPI) is used as a control | ||
interface for the actual ADC, while this IP core will interface | ||
to the data-lines of the ADC and handle the streaming of data into | ||
memory via DMA. | ||
https://wiki.analog.com/resources/fpga/docs/axi_adc_ip | ||
properties: | ||
compatible: | ||
enum: | ||
- adi,axi-adc-10.0.a | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
dmas: | ||
maxItems: 1 | ||
|
||
dma-names: | ||
items: | ||
- const: rx | ||
|
||
adi,adc-dev: | ||
$ref: /schemas/types.yaml#/definitions/phandle | ||
description: | ||
A reference to a the actual ADC to which this FPGA ADC interfaces to. | ||
|
||
required: | ||
- compatible | ||
- dmas | ||
- reg | ||
- adi,adc-dev | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
axi-adc@44a00000 { | ||
compatible = "adi,axi-adc-10.0.a"; | ||
reg = <0x44a00000 0x10000>; | ||
dmas = <&rx_dma 0>; | ||
dma-names = "rx"; | ||
adi,adc-dev = <&spi_adc>; | ||
}; | ||
... |