mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 20:24:12 +08:00
iio: buffer-dmaengine: export buffer alloc and free functions
[ Upstream commit9c446288d7
] Export iio_dmaengine_buffer_free() and iio_dmaengine_buffer_alloc(). This is in preparation of introducing IIO backends support. This will allow us to allocate a buffer and control it's lifetime from a device different from the one holding the DMA firmware properties. Effectively, in this case the struct device holding the firmware information about the DMA channels is not the same as iio_dev->dev.parent (typical case). While at it, namespace the buffer-dmaengine exports and update the current user of these buffers. Signed-off-by: Nuno Sa <nuno.sa@analog.com> Link: https://lore.kernel.org/r/20240210-iio-backend-v11-4-f5242a5fb42a@analog.com Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Stable-dep-of:cf1c833f89
("iio: adc: adi-axi-adc: only error out in major version mismatch") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
b70042e4dc
commit
e1fc56c400
@ -447,3 +447,4 @@ module_platform_driver(adi_axi_adc_driver);
|
|||||||
MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
|
MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
|
||||||
MODULE_DESCRIPTION("Analog Devices Generic AXI ADC IP core driver");
|
MODULE_DESCRIPTION("Analog Devices Generic AXI ADC IP core driver");
|
||||||
MODULE_LICENSE("GPL v2");
|
MODULE_LICENSE("GPL v2");
|
||||||
|
MODULE_IMPORT_NS(IIO_DMAENGINE_BUFFER);
|
||||||
|
@ -159,7 +159,7 @@ static const struct iio_dev_attr *iio_dmaengine_buffer_attrs[] = {
|
|||||||
* Once done using the buffer iio_dmaengine_buffer_free() should be used to
|
* Once done using the buffer iio_dmaengine_buffer_free() should be used to
|
||||||
* release it.
|
* release it.
|
||||||
*/
|
*/
|
||||||
static struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
|
struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
|
||||||
const char *channel)
|
const char *channel)
|
||||||
{
|
{
|
||||||
struct dmaengine_buffer *dmaengine_buffer;
|
struct dmaengine_buffer *dmaengine_buffer;
|
||||||
@ -210,6 +210,7 @@ err_free:
|
|||||||
kfree(dmaengine_buffer);
|
kfree(dmaengine_buffer);
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_NS_GPL(iio_dmaengine_buffer_alloc, IIO_DMAENGINE_BUFFER);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* iio_dmaengine_buffer_free() - Free dmaengine buffer
|
* iio_dmaengine_buffer_free() - Free dmaengine buffer
|
||||||
@ -217,7 +218,7 @@ err_free:
|
|||||||
*
|
*
|
||||||
* Frees a buffer previously allocated with iio_dmaengine_buffer_alloc().
|
* Frees a buffer previously allocated with iio_dmaengine_buffer_alloc().
|
||||||
*/
|
*/
|
||||||
static void iio_dmaengine_buffer_free(struct iio_buffer *buffer)
|
void iio_dmaengine_buffer_free(struct iio_buffer *buffer)
|
||||||
{
|
{
|
||||||
struct dmaengine_buffer *dmaengine_buffer =
|
struct dmaengine_buffer *dmaengine_buffer =
|
||||||
iio_buffer_to_dmaengine_buffer(buffer);
|
iio_buffer_to_dmaengine_buffer(buffer);
|
||||||
@ -227,6 +228,7 @@ static void iio_dmaengine_buffer_free(struct iio_buffer *buffer)
|
|||||||
|
|
||||||
iio_buffer_put(buffer);
|
iio_buffer_put(buffer);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_NS_GPL(iio_dmaengine_buffer_free, IIO_DMAENGINE_BUFFER);
|
||||||
|
|
||||||
static void __devm_iio_dmaengine_buffer_free(void *buffer)
|
static void __devm_iio_dmaengine_buffer_free(void *buffer)
|
||||||
{
|
{
|
||||||
@ -288,7 +290,7 @@ int devm_iio_dmaengine_buffer_setup(struct device *dev,
|
|||||||
|
|
||||||
return iio_device_attach_buffer(indio_dev, buffer);
|
return iio_device_attach_buffer(indio_dev, buffer);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(devm_iio_dmaengine_buffer_setup);
|
EXPORT_SYMBOL_NS_GPL(devm_iio_dmaengine_buffer_setup, IIO_DMAENGINE_BUFFER);
|
||||||
|
|
||||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||||
MODULE_DESCRIPTION("DMA buffer for the IIO framework");
|
MODULE_DESCRIPTION("DMA buffer for the IIO framework");
|
||||||
|
@ -10,6 +10,9 @@
|
|||||||
struct iio_dev;
|
struct iio_dev;
|
||||||
struct device;
|
struct device;
|
||||||
|
|
||||||
|
struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
|
||||||
|
const char *channel);
|
||||||
|
void iio_dmaengine_buffer_free(struct iio_buffer *buffer);
|
||||||
int devm_iio_dmaengine_buffer_setup(struct device *dev,
|
int devm_iio_dmaengine_buffer_setup(struct device *dev,
|
||||||
struct iio_dev *indio_dev,
|
struct iio_dev *indio_dev,
|
||||||
const char *channel);
|
const char *channel);
|
||||||
|
Loading…
Reference in New Issue
Block a user