blob: fc4d01cdd8c95c92b11694faece56d77fc648bd9 [file] [log] [blame]
Vladimir Barinov310355c2008-02-18 11:40:22 +01001/*
2 * ALSA PCM interface for the TI DAVINCI processor
3 *
Vladimir Barinovd6b52032008-09-29 23:14:11 +04004 * Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
Vladimir Barinov310355c2008-02-18 11:40:22 +01005 * Copyright: (C) 2007 MontaVista Software, Inc., <source@mvista.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#ifndef _DAVINCI_PCM_H
13#define _DAVINCI_PCM_H
14
Hebbar, Gururaja896f66b2012-08-27 18:56:41 +053015#include <linux/platform_data/davinci_asp.h>
Chaithrika U Sb67f4482009-06-05 06:28:40 -040016#include <mach/edma.h>
Chaithrika U Sb67f4482009-06-05 06:28:40 -040017
Vladimir Barinov310355c2008-02-18 11:40:22 +010018struct davinci_pcm_dma_params {
Chaithrika U Sb67f4482009-06-05 06:28:40 -040019 int channel; /* sync dma channel ID */
Chaithrika U S6a99fb52009-08-11 16:58:52 -040020 unsigned short acnt;
Chaithrika U Sb67f4482009-06-05 06:28:40 -040021 dma_addr_t dma_addr; /* device physical address for DMA */
Troy Kisky1e224f32009-11-18 17:49:53 -070022 unsigned sram_size;
Sekhar Nori48519f02010-07-19 12:31:16 +053023 enum dma_event_q asp_chan_q; /* event queue number for ASP channel */
24 enum dma_event_q ram_chan_q; /* event queue number for RAM channel */
Chaithrika U Sb67f4482009-06-05 06:28:40 -040025 unsigned char data_type; /* xfer data type */
26 unsigned char convert_mono_stereo;
Chaithrika U S4fa9c1a2009-09-30 17:32:27 -040027 unsigned int fifo_level;
Vladimir Barinov310355c2008-02-18 11:40:22 +010028};
29
Hebbar, Gururajaf08095a2012-08-27 18:56:39 +053030int davinci_soc_platform_register(struct device *dev);
31void davinci_soc_platform_unregister(struct device *dev);
32
Vladimir Barinov310355c2008-02-18 11:40:22 +010033#endif