All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v8 00/13] Add STM32 DFSDM support
@ 2017-12-11 10:18 ` Arnaud Pouliquen
  0 siblings, 0 replies; 52+ messages in thread
From: Arnaud Pouliquen @ 2017-12-11 10:18 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Jonathan Cameron, Hartmut Knaack,
	Lars-Peter Clausen, Peter Meerwald-Stadler, Jaroslav Kysela,
	Takashi Iwai, Liam Girdwood, Mark Brown
  Cc: devicetree, alsa-devel, Alexandre Torgue, linux-iio,
	arnaud.pouliquen, Maxime Coquelin, linux-arm-kernel

Hello

New version based on minor comments from Jonathan.

Main deltas V8 vs V7:
- Few typos fixes.
- Function return optimizations in sound/soc/stm/stm32_adfsdm.c.

Main deltas V7 vs V6:
- Replaces the custom license information text with the appropriate 
  SPDX identifier.
- Few fixes in sound/soc/stm/stm32_adfsdm.c and stm32-dfsdm-core.c.
- Add missing #interrupt-cells in binding examples.
- Integrate last Jonathan's comments.

Main deltas V6 vs V5:
- Fix warning reported by kbuild test in :
   include/linux/iio/consumer.h
   sound/soc/stm/stm32_adfsdm.c

Main deltas V5 vs V4:
- Integrate ASOC DAI as a subnode of the DFSDM.
- Add in kernel consumer interface to allow to manipulate attribute.

Thanks,
Arnaud

Arnaud Pouliquen (12):
  docs: driver-api: add iio hw consumer section
  IIO: hw_consumer: add devm_iio_hw_consumer_alloc
  IIO: inkern: API for manipulating channel attributes
  IIO: Add DT bindings for sigma delta adc modulator
  IIO: ADC: add sigma delta modulator support
  IIO: add DT bindings for stm32 DFSDM filter
  IIO: ADC: add stm32 DFSDM core support
  IIO: ADC: add STM32 DFSDM sigma delta ADC support
  IIO: ADC: add stm32 DFSDM support for PDM microphone
  IIO: consumer: allow to set buffer sizes
  ASoC: add bindings for stm32 DFSDM filter
  ASoC: stm32: add DFSDM DAI support

Lars-Peter Clausen (1):
  iio: Add hardware consumer buffer support

 .../ABI/testing/sysfs-bus-iio-dfsdm-adc-stm32      |   16 +
 .../bindings/iio/adc/sigma-delta-modulator.txt     |   13 +
 .../bindings/iio/adc/st,stm32-dfsdm-adc.txt        |  128 ++
 .../devicetree/bindings/sound/st,stm32-adfsdm.txt  |   63 +
 Documentation/driver-api/iio/hw-consumer.rst       |   51 +
 Documentation/driver-api/iio/index.rst             |    1 +
 drivers/iio/adc/Kconfig                            |   37 +
 drivers/iio/adc/Makefile                           |    3 +
 drivers/iio/adc/sd_adc_modulator.c                 |   68 ++
 drivers/iio/adc/stm32-dfsdm-adc.c                  | 1220 ++++++++++++++++++++
 drivers/iio/adc/stm32-dfsdm-core.c                 |  309 +++++
 drivers/iio/adc/stm32-dfsdm.h                      |  310 +++++
 drivers/iio/buffer/Kconfig                         |   10 +
 drivers/iio/buffer/Makefile                        |    1 +
 drivers/iio/buffer/industrialio-buffer-cb.c        |   11 +
 drivers/iio/buffer/industrialio-hw-consumer.c      |  247 ++++
 drivers/iio/inkern.c                               |   17 +-
 include/linux/iio/adc/stm32-dfsdm-adc.h            |   18 +
 include/linux/iio/consumer.h                       |   37 +
 include/linux/iio/hw-consumer.h                    |   21 +
 include/linux/iio/iio.h                            |   28 -
 include/linux/iio/types.h                          |   28 +
 sound/soc/stm/Kconfig                              |   11 +
 sound/soc/stm/Makefile                             |    3 +
 sound/soc/stm/stm32_adfsdm.c                       |  347 ++++++
 25 files changed, 2965 insertions(+), 33 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-dfsdm-adc-stm32
 create mode 100644 Documentation/devicetree/bindings/iio/adc/sigma-delta-modulator.txt
 create mode 100644 Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.txt
 create mode 100644 Documentation/devicetree/bindings/sound/st,stm32-adfsdm.txt
 create mode 100644 Documentation/driver-api/iio/hw-consumer.rst
 create mode 100644 drivers/iio/adc/sd_adc_modulator.c
 create mode 100644 drivers/iio/adc/stm32-dfsdm-adc.c
 create mode 100644 drivers/iio/adc/stm32-dfsdm-core.c
 create mode 100644 drivers/iio/adc/stm32-dfsdm.h
 create mode 100644 drivers/iio/buffer/industrialio-hw-consumer.c
 create mode 100644 include/linux/iio/adc/stm32-dfsdm-adc.h
 create mode 100644 include/linux/iio/hw-consumer.h
 create mode 100644 sound/soc/stm/stm32_adfsdm.c

-- 
2.7.4

^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2018-01-10 11:12 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-11 10:18 [PATCH v8 00/13] Add STM32 DFSDM support Arnaud Pouliquen
2017-12-11 10:18 ` Arnaud Pouliquen
2017-12-11 10:18 ` Arnaud Pouliquen
2017-12-11 10:18 ` [PATCH v8 01/13] iio: Add hardware consumer buffer support Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18 ` [PATCH v8 02/13] docs: driver-api: add iio hw consumer section Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18 ` [PATCH v8 05/13] IIO: Add DT bindings for sigma delta adc modulator Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18 ` [PATCH v8 06/13] IIO: ADC: add sigma delta modulator support Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
     [not found] ` <1512987524-2901-1-git-send-email-arnaud.pouliquen-qxv4g6HH51o@public.gmane.org>
2017-12-11 10:18   ` [PATCH v8 03/13] IIO: hw_consumer: add devm_iio_hw_consumer_alloc Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18   ` [PATCH v8 04/13] IIO: inkern: API for manipulating channel attributes Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18   ` [PATCH v8 07/13] IIO: add DT bindings for stm32 DFSDM filter Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18   ` [PATCH v8 08/13] IIO: ADC: add stm32 DFSDM core support Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18   ` [PATCH v8 09/13] IIO: ADC: add STM32 DFSDM sigma delta ADC support Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18   ` [PATCH v8 10/13] IIO: ADC: add stm32 DFSDM support for PDM microphone Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
     [not found]     ` <1512987524-2901-11-git-send-email-arnaud.pouliquen-qxv4g6HH51o@public.gmane.org>
2017-12-12 20:27       ` Jonathan Cameron
2017-12-12 20:27         ` Jonathan Cameron
2017-12-12 20:27         ` Jonathan Cameron
2017-12-13  8:42         ` Arnaud Pouliquen
2017-12-13  8:42           ` Arnaud Pouliquen
2017-12-13  8:42           ` Arnaud Pouliquen
2017-12-13  9:18           ` Jonathan Cameron
2017-12-11 10:18   ` [PATCH v8 11/13] IIO: consumer: allow to set buffer sizes Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18   ` [PATCH v8 12/13] ASoC: add bindings for stm32 DFSDM filter Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18     ` Arnaud Pouliquen
2017-12-11 10:18 ` [PATCH v8 13/13] ASoC: stm32: add DFSDM DAI support Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
2017-12-11 10:18   ` Arnaud Pouliquen
     [not found]   ` <1512987524-2901-14-git-send-email-arnaud.pouliquen-qxv4g6HH51o@public.gmane.org>
2018-01-10 11:12     ` Applied "ASoC: stm32: add DFSDM DAI support" to the asoc tree Mark Brown
2018-01-10 11:12       ` Mark Brown
2018-01-10 11:12       ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.