mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
2952b27e2e
Davinci McASP has support for I2S multichannel playback. For I2S playback/receive, each serializer is capable to play 2 channels (L/R) audio data.Serializer function (Playback-receive-none) is configured in DT, depending on hardware specification. It is possible to play less channels than configured in DT. For that purpose,only specific number of active serializers are enabled. McASP FIFO need to have DMA transfer Bcnt set to number of enabled serializers, otherwise no data are transfered to McASP and Alsa generates "DMA/IRQ playback write error (DMA or IRQ trouble?)" error. For TDM mode, McASP is capable to play or receive 32 channels for one serializer. McAsp has support for max 16 serializer, therefore max channels is 32 * 8. Signed-off-by: Michal Bachraty <michal.bachraty@streamunlimited.com> Tested-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
36 lines
1.2 KiB
C
36 lines
1.2 KiB
C
/*
|
|
* ALSA PCM interface for the TI DAVINCI processor
|
|
*
|
|
* Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
|
|
* Copyright: (C) 2007 MontaVista Software, Inc., <source@mvista.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _DAVINCI_PCM_H
|
|
#define _DAVINCI_PCM_H
|
|
|
|
#include <linux/genalloc.h>
|
|
#include <linux/platform_data/davinci_asp.h>
|
|
#include <mach/edma.h>
|
|
|
|
struct davinci_pcm_dma_params {
|
|
int channel; /* sync dma channel ID */
|
|
unsigned short acnt;
|
|
dma_addr_t dma_addr; /* device physical address for DMA */
|
|
unsigned sram_size;
|
|
struct gen_pool *sram_pool; /* SRAM gen_pool for ping pong */
|
|
enum dma_event_q asp_chan_q; /* event queue number for ASP channel */
|
|
enum dma_event_q ram_chan_q; /* event queue number for RAM channel */
|
|
unsigned char data_type; /* xfer data type */
|
|
unsigned char convert_mono_stereo;
|
|
unsigned int fifo_level;
|
|
unsigned char active_serializers; /* num. of active audio serializers */
|
|
};
|
|
|
|
int davinci_soc_platform_register(struct device *dev);
|
|
void davinci_soc_platform_unregister(struct device *dev);
|
|
|
|
#endif
|