2008-02-18 10:40:22 +00:00
|
|
|
/*
|
|
|
|
* ALSA PCM interface for the TI DAVINCI processor
|
|
|
|
*
|
2008-09-29 19:14:11 +00:00
|
|
|
* Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
|
2008-02-18 10:40:22 +00: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
|
|
|
|
|
2009-06-05 10:28:40 +00:00
|
|
|
#include <mach/edma.h>
|
|
|
|
#include <mach/asp.h>
|
|
|
|
|
|
|
|
|
2008-02-18 10:40:22 +00:00
|
|
|
struct davinci_pcm_dma_params {
|
2009-06-05 10:28:40 +00:00
|
|
|
int channel; /* sync dma channel ID */
|
2009-08-11 20:58:52 +00:00
|
|
|
unsigned short acnt;
|
2009-06-05 10:28:40 +00:00
|
|
|
dma_addr_t dma_addr; /* device physical address for DMA */
|
2009-11-19 00:49:53 +00:00
|
|
|
unsigned sram_size;
|
2010-07-19 07:01:16 +00: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 10:28:40 +00:00
|
|
|
unsigned char data_type; /* xfer data type */
|
|
|
|
unsigned char convert_mono_stereo;
|
2009-09-30 21:32:27 +00:00
|
|
|
unsigned int fifo_level;
|
2008-02-18 10:40:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|