當(dāng)前位置:首頁(yè) > 單片機(jī) > 單片機(jī)
[導(dǎo)讀]#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
//定義了一些緩沖區(qū)信息,在函數(shù)s3c24xx_pcm_open中用于初始化結(jié)構(gòu)體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,
};
//緩存管理結(jié)構(gòu)體在函數(shù)s3c24xx_pcm_open中掛到runtime->private_data上
//該結(jié)構(gòu)體在函數(shù)s3c24xx_pcm_hw_params中被初始化
//所管理的緩存區(qū)域的分配在函數(shù)s3c24xx_pcm_preallocate_dma_buffer中
struct s3c24xx_runtime_data {
spinlock_t lock;
int state;
unsigned int dma_loaded;//已插入DMA備用存儲(chǔ)鏈的存儲(chǔ)段數(shù)
unsigned int dma_limit;//緩存段的最大數(shù)字
unsigned int dma_period;//每段緩存的最大存儲(chǔ)數(shù)據(jù)量
dma_addr_t dma_start;//緩存區(qū)的開(kāi)始地址
dma_addr_t dma_pos;//第一個(gè)未被插入DMA備用緩存鏈的存儲(chǔ)段地址
dma_addr_t dma_end;//緩存區(qū)的尾地址
//結(jié)構(gòu)params在函數(shù)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;
}
//當(dāng)一段緩存用完時(shí)該函數(shù)將在中斷處理函數(shù)中被調(diào)用
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備用鏈表尾。整個(gè)緩存區(qū)為一環(huán)形緩存區(qū)
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;
//從結(jié)構(gòu)體params->intervals中獲取緩沖區(qū)大小
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 */
//結(jié)構(gòu)體dma為s3c24xx_i2s_pcm_stereo_out或s3c24xx_i2s_pcm_stereo_in
//在文件s3c24xx-i2s.c中定義
//結(jié)構(gòu)體params為s3c24xx_runtime_data
prtd->params = dma;

DBG("params %p, client %p, channel %dn", prtd->params,
prtd->params->client, prtd->params->channel);
//申請(qǐng)一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;
}
}
//該函數(shù)主要實(shí)現(xiàn)chan->callback_fn = rtn;即讓chan->callback_fn指向函數(shù)s3c24xx_audio_buffdone
s3c2410_dma_set_buffdone_fn(prtd->params->channel,
s3c24xx_audio_buffdone);
//用已分配的緩存區(qū)substream->dma_buffer區(qū)初始化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,//配置初始化目的寄存器和相應(yīng)控制寄存器
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,//配置初始化源寄存器和相應(yīng)控制寄存器
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緩存,開(kāi)始DMA數(shù)據(jù)傳輸
s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_START);
s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_STARTED);
break;

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請(qǐng)聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請(qǐng)及時(shí)聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

倫敦2024年8月29日 /美通社/ -- 英國(guó)汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開(kāi)發(fā)耗時(shí)1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動(dòng) BSP

北京2024年8月28日 /美通社/ -- 越來(lái)越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時(shí)企業(yè)卻面臨越來(lái)越多業(yè)務(wù)中斷的風(fēng)險(xiǎn),如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報(bào)道,騰訊和網(wǎng)易近期正在縮減他們對(duì)日本游戲市場(chǎng)的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)開(kāi)幕式在貴陽(yáng)舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語(yǔ)權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對(duì)環(huán)境變化,經(jīng)營(yíng)業(yè)績(jī)穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤(rùn)率延續(xù)升勢(shì) 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長(zhǎng) 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競(jìng)爭(zhēng)力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競(jìng)爭(zhēng)優(yōu)勢(shì)...

關(guān)鍵字: 通信 BSP 電信運(yùn)營(yíng)商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺(tái)與中國(guó)電影電視技術(shù)學(xué)會(huì)聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會(huì)上宣布正式成立。 活動(dòng)現(xiàn)場(chǎng) NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長(zhǎng)三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會(huì)上,軟通動(dòng)力信息技術(shù)(集團(tuán))股份有限公司(以下簡(jiǎn)稱"軟通動(dòng)力")與長(zhǎng)三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉