mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
eca949800d
This code offers a way to handle PDM audio microphones in ASOC framework. Audio driver should use consumer API. A specific management is implemented for DMA, with a callback, to allows to handle audio buffers efficiently. Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Mark Brown <broonie@kernel.org>
18 lines
509 B
C
18 lines
509 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* This file discribe the STM32 DFSDM IIO driver API for audio part
|
|
*
|
|
* Copyright (C) 2017, STMicroelectronics - All Rights Reserved
|
|
* Author(s): Arnaud Pouliquen <arnaud.pouliquen@st.com>.
|
|
*/
|
|
|
|
#ifndef STM32_DFSDM_ADC_H
|
|
#define STM32_DFSDM_ADC_H
|
|
|
|
int stm32_dfsdm_get_buff_cb(struct iio_dev *iio_dev,
|
|
int (*cb)(const void *data, size_t size,
|
|
void *private),
|
|
void *private);
|
|
int stm32_dfsdm_release_buff_cb(struct iio_dev *iio_dev);
|
|
|
|
#endif
|