2007-02-14 12:20:03 +00:00
|
|
|
/*
|
2010-11-22 06:35:57 +00:00
|
|
|
* dma.h --
|
2007-02-14 12:20:03 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
2011-09-02 00:44:43 +00:00
|
|
|
* ALSA PCM interface for the Samsung SoC
|
2007-02-14 12:20:03 +00:00
|
|
|
*/
|
|
|
|
|
2009-11-17 07:53:23 +00:00
|
|
|
#ifndef _S3C_AUDIO_H
|
|
|
|
#define _S3C_AUDIO_H
|
2007-02-14 12:20:03 +00:00
|
|
|
|
2013-12-05 14:14:52 +00:00
|
|
|
#include <sound/dmaengine_pcm.h>
|
2015-11-18 21:31:11 +00:00
|
|
|
#include <linux/dmaengine.h>
|
2013-12-05 14:14:52 +00:00
|
|
|
|
2009-11-17 07:53:23 +00:00
|
|
|
struct s3c_dma_params {
|
2015-11-18 14:25:23 +00:00
|
|
|
void *slave; /* Channel ID */
|
2007-02-14 12:20:03 +00:00
|
|
|
dma_addr_t dma_addr;
|
2007-04-17 10:35:18 +00:00
|
|
|
int dma_size; /* Size of the DMA transfer */
|
2013-01-18 11:47:01 +00:00
|
|
|
char *ch_name;
|
2013-12-05 14:14:52 +00:00
|
|
|
struct snd_dmaengine_dai_dma_data dma_data;
|
2007-02-14 12:20:03 +00:00
|
|
|
};
|
|
|
|
|
2013-10-19 14:23:15 +00:00
|
|
|
void samsung_asoc_init_dma_data(struct snd_soc_dai *dai,
|
|
|
|
struct s3c_dma_params *playback,
|
|
|
|
struct s3c_dma_params *capture);
|
2015-11-18 21:31:11 +00:00
|
|
|
int samsung_asoc_dma_platform_register(struct device *dev,
|
|
|
|
dma_filter_fn fn);
|
2012-12-07 08:29:21 +00:00
|
|
|
|
2007-02-14 12:20:03 +00:00
|
|
|
#endif
|