2008-02-18 18:40:22 +08:00
|
|
|
/*
|
|
|
|
* ALSA PCM interface for the TI DAVINCI processor
|
|
|
|
*
|
2008-09-30 03:14:11 +08:00
|
|
|
* Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
|
2008-02-18 18:40:22 +08:00
|
|
|
* 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
|
|
|
|
|
2012-10-17 22:08:03 +08:00
|
|
|
#include <linux/genalloc.h>
|
2012-08-27 21:26:41 +08:00
|
|
|
#include <linux/platform_data/davinci_asp.h>
|
2009-06-05 18:28:40 +08:00
|
|
|
#include <mach/edma.h>
|
|
|
|
|
2008-02-18 18:40:22 +08:00
|
|
|
struct davinci_pcm_dma_params {
|
2009-06-05 18:28:40 +08:00
|
|
|
int channel; /* sync dma channel ID */
|
2009-08-12 04:58:52 +08:00
|
|
|
unsigned short acnt;
|
2009-06-05 18:28:40 +08:00
|
|
|
dma_addr_t dma_addr; /* device physical address for DMA */
|
2009-11-19 08:49:53 +08:00
|
|
|
unsigned sram_size;
|
2012-10-17 22:08:03 +08:00
|
|
|
struct gen_pool *sram_pool; /* SRAM gen_pool for ping pong */
|
2010-07-19 15:01:16 +08:00
|
|
|
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 */
|
2009-06-05 18:28:40 +08:00
|
|
|
unsigned char data_type; /* xfer data type */
|
|
|
|
unsigned char convert_mono_stereo;
|
2009-10-01 05:32:27 +08:00
|
|
|
unsigned int fifo_level;
|
2008-02-18 18:40:22 +08:00
|
|
|
};
|
|
|
|
|
2012-08-27 21:26:39 +08:00
|
|
|
int davinci_soc_platform_register(struct device *dev);
|
|
|
|
void davinci_soc_platform_unregister(struct device *dev);
|
|
|
|
|
2008-02-18 18:40:22 +08:00
|
|
|
#endif
|