On Fri, 19 Apr 2024 10:25:33 +0200 Nuno Sa via B4 Relay <devnull+nuno.sa.analog.com@xxxxxxxxxx> wrote: > Hi Jonathan, > > Here it goes v4. Added default value for full scale current and > corrected the minimum value. Applied to the togreg branch of iio.git and pushed out as testing. As this only came out as v4 yesterday, I'll keep an eye open for additional feedback before I push this out as a non rebasing tree I will still add tags as well if anyone wants to give them as well! Thanks, Jonathan > > Full log: > > v1: > * https://lore.kernel.org/all/20240328-iio-backend-axi-dac-v1-0-afc808b3fde3@xxxxxxxxxx > > v2: > * https://lore.kernel.org/all/20240405-iio-backend-axi-dac-v2-0-293bab7d5552@xxxxxxxxxx > > v3: > * https://lore.kernel.org/r/20240412-iio-backend-axi-dac-v3-0-3e9d4c5201fb@xxxxxxxxxx > > v4: > * Patch 7: > - Added default value for full scale current; > - Corrected the minimum value for full scale current. > * Patch 10: > - Corrected the minimum value for full scale current. > > --- > Nuno Sa (6): > iio: buffer-dma: add iio_dmaengine_buffer_setup() > dt-bindings: iio: dac: add docs for AXI DAC IP > dt-bindings: iio: dac: add docs for AD9739A > iio: backend: add new functionality > iio: dac: add support for AXI DAC IP core > iio: dac: support the ad9739a RF DAC > > Paul Cercueil (4): > iio: buffer-dma: Rename iio_dma_buffer_data_available() > iio: buffer-dma: Enable buffer write support > iio: buffer-dmaengine: Support specifying buffer direction > iio: buffer-dmaengine: Enable write support > > Documentation/ABI/testing/sysfs-bus-iio-ad9739a | 19 + > .../devicetree/bindings/iio/dac/adi,ad9739a.yaml | 95 +++ > .../devicetree/bindings/iio/dac/adi,axi-dac.yaml | 62 ++ > MAINTAINERS | 17 + > drivers/iio/adc/adi-axi-adc.c | 16 +- > drivers/iio/buffer/industrialio-buffer-dma.c | 100 +++- > drivers/iio/buffer/industrialio-buffer-dmaengine.c | 83 +-- > drivers/iio/dac/Kconfig | 37 ++ > drivers/iio/dac/Makefile | 2 + > drivers/iio/dac/ad9739a.c | 463 +++++++++++++++ > drivers/iio/dac/adi-axi-dac.c | 635 +++++++++++++++++++++ > drivers/iio/industrialio-backend.c | 179 ++++++ > include/linux/iio/backend.h | 49 ++ > include/linux/iio/buffer-dma.h | 4 +- > include/linux/iio/buffer-dmaengine.h | 24 +- > 15 files changed, 1706 insertions(+), 79 deletions(-) > --- > base-commit: aabc0aa90c927a03d509d0b592720d9897894ce4 > change-id: 20240412-iio-backend-axi-dac-b369adca46a0 > -- > > Thanks! > - Nuno Sá > >