1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*833e5d42SEmmanuel Vadot# Copyright (c) 2025 Analog Devices, Inc. 3*833e5d42SEmmanuel Vadot# Copyright (c) 2025 BayLibre, SAS 4*833e5d42SEmmanuel Vadot 5*833e5d42SEmmanuel Vadot%YAML 1.2 6*833e5d42SEmmanuel Vadot--- 7*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/trigger-source/adi,util-sigma-delta-spi.yaml# 8*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 9*833e5d42SEmmanuel Vadot 10*833e5d42SEmmanuel Vadottitle: Analog Devices Util Sigma-Delta SPI IP Core 11*833e5d42SEmmanuel Vadot 12*833e5d42SEmmanuel Vadotmaintainers: 13*833e5d42SEmmanuel Vadot - David Lechner <dlechner@baylibre.com> 14*833e5d42SEmmanuel Vadot 15*833e5d42SEmmanuel Vadotdescription: 16*833e5d42SEmmanuel Vadot The Util Sigma-Delta SPI is an FPGA IP core from Analog Devices that provides 17*833e5d42SEmmanuel Vadot a SPI offload trigger from the RDY signal of the combined DOUT/RDY pin of 18*833e5d42SEmmanuel Vadot the sigma-delta family of ADCs. 19*833e5d42SEmmanuel Vadot https://analogdevicesinc.github.io/hdl/library/util_sigma_delta_spi/index.html 20*833e5d42SEmmanuel Vadot 21*833e5d42SEmmanuel Vadotproperties: 22*833e5d42SEmmanuel Vadot compatible: 23*833e5d42SEmmanuel Vadot const: adi,util-sigma-delta-spi 24*833e5d42SEmmanuel Vadot 25*833e5d42SEmmanuel Vadot reg: 26*833e5d42SEmmanuel Vadot maxItems: 1 27*833e5d42SEmmanuel Vadot 28*833e5d42SEmmanuel Vadot clocks: 29*833e5d42SEmmanuel Vadot maxItems: 1 30*833e5d42SEmmanuel Vadot 31*833e5d42SEmmanuel Vadot '#trigger-source-cells': 32*833e5d42SEmmanuel Vadot const: 0 33*833e5d42SEmmanuel Vadot 34*833e5d42SEmmanuel Vadotrequired: 35*833e5d42SEmmanuel Vadot - compatible 36*833e5d42SEmmanuel Vadot - reg 37*833e5d42SEmmanuel Vadot - clocks 38*833e5d42SEmmanuel Vadot - '#trigger-source-cells' 39*833e5d42SEmmanuel Vadot 40*833e5d42SEmmanuel VadotadditionalProperties: false 41*833e5d42SEmmanuel Vadot 42*833e5d42SEmmanuel Vadotexamples: 43*833e5d42SEmmanuel Vadot - | 44*833e5d42SEmmanuel Vadot trigger@40000 { 45*833e5d42SEmmanuel Vadot reg = <0x40000 0x1000>; 46*833e5d42SEmmanuel Vadot compatible = "adi,util-sigma-delta-spi"; 47*833e5d42SEmmanuel Vadot clocks = <&clk 0>; 48*833e5d42SEmmanuel Vadot #trigger-source-cells = <0>; 49*833e5d42SEmmanuel Vadot }; 50