当前位置:首页 > 单片机 > 单片机
[导读]#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "s3c24xx-pcm.h"#define S3C24XX_PCM_DEBUG 0#if S3C24XX_PCM_DEBUG#d

#include
#include
#include
#include
#include
#include

#include
#include
#include
#include

#include
#include
#include
#include

#include "s3c24xx-pcm.h"

#define S3C24XX_PCM_DEBUG 0
#if S3C24XX_PCM_DEBUG
#define DBG(x...) printk(KERN_DEBUG "s3c24xx-pcm: " x)
#else
#define DBG(x...)
#endif
//定义了一些缓冲区信息,在函数s3c24xx_pcm_open中用于初始化结构体substream->runtime->hw
static const struct snd_pcm_hardware s3c24xx_pcm_hardware = {
.info= SNDRV_PCM_INFO_INTERLEAVED |
SNDRV_PCM_INFO_BLOCK_TRANSFER |
SNDRV_PCM_INFO_MMAP |
SNDRV_PCM_INFO_MMAP_VALID |
SNDRV_PCM_INFO_PAUSE |
SNDRV_PCM_INFO_RESUME,
.formats= SNDRV_PCM_FMTBIT_S16_LE |
SNDRV_PCM_FMTBIT_U16_LE |
SNDRV_PCM_FMTBIT_U8 |
SNDRV_PCM_FMTBIT_S8,
.channels_min= 2,
.channels_max= 2,
.buffer_bytes_max= 128*1024,
.period_bytes_min= PAGE_SIZE,
.period_bytes_max= PAGE_SIZE*2,
.periods_min= 2,
.periods_max= 128,
.fifo_size= 32,
};
//缓存管理结构体在函数s3c24xx_pcm_open中挂到runtime->private_data上
//该结构体在函数s3c24xx_pcm_hw_params中被初始化
//所管理的缓存区域的分配在函数s3c24xx_pcm_preallocate_dma_buffer中
struct s3c24xx_runtime_data {
spinlock_t lock;
int state;
unsigned int dma_loaded;//已插入DMA备用存储链的存储段数
unsigned int dma_limit;//缓存段的最大数字
unsigned int dma_period;//每段缓存的最大存储数据量
dma_addr_t dma_start;//缓存区的开始地址
dma_addr_t dma_pos;//第一个未被插入DMA备用缓存链的存储段地址
dma_addr_t dma_end;//缓存区的尾地址
//结构params在函数s3c24xx_pcm_hw_params中被初始化prtd->params = dma;
struct s3c24xx_pcm_dma_params *params;
};

/* s3c24xx_pcm_enqueue
*
* place a dma buffer onto the queue for the dma system
* to handle.
*/
static void s3c24xx_pcm_enqueue(struct snd_pcm_substream *substream)
{
struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
dma_addr_t pos = prtd->dma_pos;
int ret;

DBG("Entered %sn", __func__);

while (prtd->dma_loaded < prtd->dma_limit) {
unsigned long len = prtd->dma_period;

DBG("dma_loaded: %dn", prtd->dma_loaded);

if ((pos + len) > prtd->dma_end) {
len = prtd->dma_end - pos;
DBG(KERN_DEBUG "%s: corrected dma len %ldn",
__func__, len);
}
//将缓存插入DMA备用缓存链,pos必须是物理地址,它将被写入DMA的初始化目的或源寄存器
ret = s3c2410_dma_enqueue(prtd->params->channel,
substream, pos, len);

if (ret == 0) {
prtd->dma_loaded++;
pos += prtd->dma_period;
if (pos >= prtd->dma_end)
pos = prtd->dma_start;
} else
break;
}

prtd->dma_pos = pos;
}
//当一段缓存用完时该函数将在中断处理函数中被调用
static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan *channel,
void *dev_id, int size,
enum s3c2410_dma_buffresult result)
{
struct snd_pcm_substream *substream = dev_id;
struct s3c24xx_runtime_data *prtd;

DBG("Entered %sn", __func__);

if (result == S3C2410_RES_ABORT || result == S3C2410_RES_ERR)
return;

prtd = substream->runtime->private_data;

if (substream)
snd_pcm_period_elapsed(substream);

spin_lock(&prtd->lock);
if (prtd->state & ST_RUNNING) {
prtd->dma_loaded--;//用完一段缓存,将该缓存插入DMA备用链表尾。整个缓存区为一环形缓存区
s3c24xx_pcm_enqueue(substream);
}

spin_unlock(&prtd->lock);
}

static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params)
{
struct snd_pcm_runtime *runtime = substream->runtime;
struct s3c24xx_runtime_data *prtd = runtime->private_data;
struct snd_soc_pcm_runtime *rtd = substream->private_data;
struct s3c24xx_pcm_dma_params *dma = rtd->dai->cpu_dai->dma_data;
//从结构体params->intervals中获取缓冲区大小
unsigned long totbytes = params_buffer_bytes(params);
int ret = 0;

DBG("Entered %sn", __func__);

/* return if this is a bufferless transfer e.g.
* codec <--> BT codec or GSM modem -- lg FIXME */
if (!dma)
return 0;

/* this may get called several times by oss emulation
* with different params -HW */
if (prtd->params == NULL) {
/* prepare DMA */
//结构体dma为s3c24xx_i2s_pcm_stereo_out或s3c24xx_i2s_pcm_stereo_in
//在文件s3c24xx-i2s.c中定义
//结构体params为s3c24xx_runtime_data
prtd->params = dma;

DBG("params %p, client %p, channel %dn", prtd->params,
prtd->params->client, prtd->params->channel);
//申请一DMA通道
ret = s3c2410_dma_request(prtd->params->channel,
prtd->params->client, NULL);

if (ret < 0) {
DBG(KERN_ERR "failed to get dma channeln");
return ret;
}
}
//该函数主要实现chan->callback_fn = rtn;即让chan->callback_fn指向函数s3c24xx_audio_buffdone
s3c2410_dma_set_buffdone_fn(prtd->params->channel,
s3c24xx_audio_buffdone);
//用已分配的缓存区substream->dma_buffer区初始化substream->runtime的一些变量
snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);

runtime->dma_bytes = totbytes;

spin_lock_irq(&prtd->lock);
prtd->dma_loaded = 0;
prtd->dma_limit = runtime->hw.periods_min;
prtd->dma_period = params_period_bytes(params);//获取一段缓存的大小
prtd->dma_start = runtime->dma_addr;
prtd->dma_pos = prtd->dma_start;
prtd->dma_end = prtd->dma_start + totbytes;
spin_unlock_irq(&prtd->lock);

return 0;
}

static int s3c24xx_pcm_hw_free(struct snd_pcm_substream *substream)
{
struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;

DBG("Entered %sn", __func__);

/* TODO - do we need to ensure DMA flushed */
snd_pcm_set_runtime_buffer(substream, NULL);

if (prtd->params) {
s3c2410_dma_free(prtd->params->channel, prtd->params->client);
prtd->params = NULL;
}

return 0;
}

static int s3c24xx_pcm_prepare(struct snd_pcm_substream *substream)
{
struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
int ret = 0;

DBG("Entered %sn", __func__);

/* return if this is a bufferless transfer e.g.
* codec <--> BT codec or GSM modem -- lg FIXME */
if (!prtd->params)
return 0;

/* channel needs configuring for mem=>device, increment memory addr,
* sync to pclk, half-word transfers to the IIS-FIFO. */
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {//如果为放音
s3c2410_dma_devconfig(prtd->params->channel,//配置初始化目的寄存器和相应控制寄存器
S3C2410_DMASRC_MEM, S3C2410_DISRCC_INC |
S3C2410_DISRCC_APB, prtd->params->dma_addr);

s3c2410_dma_config(prtd->params->channel,
prtd->params->dma_size,//配置DMA控制寄存器,将配置值存于chan->dcon = dcon;
S3C2410_DCON_SYNC_PCLK |
S3C2410_DCON_HANDSHAKE);
} else {//录音,
s3c2410_dma_config(prtd->params->channel,
prtd->params->dma_size,//配置初始化源寄存器和相应控制寄存器
S3C2410_DCON_HANDSHAKE |
S3C2410_DCON_SYNC_PCLK);

s3c2410_dma_devconfig(prtd->params->channel,
S3C2410_DMASRC_HW, 0x3,
prtd->params->dma_addr);
}

/* flush the DMA channel */
s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_FLUSH);
prtd->dma_loaded = 0;
prtd->dma_pos = prtd->dma_start;

/* enqueue dma buffers */
s3c24xx_pcm_enqueue(substream);//将缓存链插入DMA备用缓存链

return ret;
}

static int s3c24xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
{
struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
int ret = 0;

DBG("Entered %sn", __func__);

spin_lock(&prtd->lock);

switch (cmd) {
case SNDRV_PCM_TRIGGER_START:
case SNDRV_PCM_TRIGGER_RESUME:
case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
prtd->state |= ST_RUNNING;//装载DMA缓存,开始DMA数据传输
s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_START);
s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_STARTED);
break;

本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: 驱动电源

在工业自动化蓬勃发展的当下,工业电机作为核心动力设备,其驱动电源的性能直接关系到整个系统的稳定性和可靠性。其中,反电动势抑制与过流保护是驱动电源设计中至关重要的两个环节,集成化方案的设计成为提升电机驱动性能的关键。

关键字: 工业电机 驱动电源

LED 驱动电源作为 LED 照明系统的 “心脏”,其稳定性直接决定了整个照明设备的使用寿命。然而,在实际应用中,LED 驱动电源易损坏的问题却十分常见,不仅增加了维护成本,还影响了用户体验。要解决这一问题,需从设计、生...

关键字: 驱动电源 照明系统 散热

根据LED驱动电源的公式,电感内电流波动大小和电感值成反比,输出纹波和输出电容值成反比。所以加大电感值和输出电容值可以减小纹波。

关键字: LED 设计 驱动电源

电动汽车(EV)作为新能源汽车的重要代表,正逐渐成为全球汽车产业的重要发展方向。电动汽车的核心技术之一是电机驱动控制系统,而绝缘栅双极型晶体管(IGBT)作为电机驱动系统中的关键元件,其性能直接影响到电动汽车的动力性能和...

关键字: 电动汽车 新能源 驱动电源

在现代城市建设中,街道及停车场照明作为基础设施的重要组成部分,其质量和效率直接关系到城市的公共安全、居民生活质量和能源利用效率。随着科技的进步,高亮度白光发光二极管(LED)因其独特的优势逐渐取代传统光源,成为大功率区域...

关键字: 发光二极管 驱动电源 LED

LED通用照明设计工程师会遇到许多挑战,如功率密度、功率因数校正(PFC)、空间受限和可靠性等。

关键字: LED 驱动电源 功率因数校正

在LED照明技术日益普及的今天,LED驱动电源的电磁干扰(EMI)问题成为了一个不可忽视的挑战。电磁干扰不仅会影响LED灯具的正常工作,还可能对周围电子设备造成不利影响,甚至引发系统故障。因此,采取有效的硬件措施来解决L...

关键字: LED照明技术 电磁干扰 驱动电源

开关电源具有效率高的特性,而且开关电源的变压器体积比串联稳压型电源的要小得多,电源电路比较整洁,整机重量也有所下降,所以,现在的LED驱动电源

关键字: LED 驱动电源 开关电源

LED驱动电源是把电源供应转换为特定的电压电流以驱动LED发光的电压转换器,通常情况下:LED驱动电源的输入包括高压工频交流(即市电)、低压直流、高压直流、低压高频交流(如电子变压器的输出)等。

关键字: LED 隧道灯 驱动电源
关闭