Path: blob/main/sys/contrib/device-tree/Bindings/iio/dac/adi,axi-dac.yaml
48525 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/dac/adi,axi-dac.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Analog Devices AXI DAC IP core78maintainers:9- Nuno Sa <nuno.sa@analog.com>1011description: |12Analog Devices Generic AXI DAC IP core for interfacing a DAC device13with a high speed serial (JESD204B/C) or source synchronous parallel14interface (LVDS/CMOS).15Usually, some other interface type (i.e SPI) is used as a control16interface for the actual DAC, while this IP core will interface17to the data-lines of the DAC and handle the streaming of data from18memory via DMA into the DAC.1920https://wiki.analog.com/resources/fpga/docs/axi_dac_ip2122properties:23compatible:24enum:25- adi,axi-dac-9.1.b2627reg:28maxItems: 12930dmas:31maxItems: 13233dma-names:34items:35- const: tx3637clocks:38maxItems: 13940'#io-backend-cells':41const: 04243required:44- compatible45- dmas46- reg47- clocks4849additionalProperties: false5051examples:52- |53dac@44a00000 {54compatible = "adi,axi-dac-9.1.b";55reg = <0x44a00000 0x10000>;56dmas = <&tx_dma 0>;57dma-names = "tx";58#io-backend-cells = <0>;59clocks = <&axi_clk>;60};61...626364