]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-arm/arch-omap/omap-alsa.h
Cleanup patch to sync with mainline kernel
[linux-2.6-omap-h63xx.git] / include / asm-arm / arch-omap / omap-alsa.h
1 /*
2  * linux/include/asm-arm/arch-omap/omap-alsa.h
3  *
4  * Alsa Driver for AIC23 and TSC2101 codecs on OMAP platform boards.
5  *
6  * Copyright (C) 2006 Mika Laitio <lamikr@cc.jyu.fi>
7  *
8  * Copyright (C) 2005 Instituto Nokia de Tecnologia - INdT - Manaus Brazil
9  * Written by Daniel Petrini, David Cohen, Anderson Briglia
10  *            {daniel.petrini, david.cohen, anderson.briglia}@indt.org.br
11  *
12  * This program is free software; you can redistribute it and/or modify it
13  * under the terms of the GNU General Public License as published by the
14  * Free Software Foundation; either version 2 of the License, or (at your
15  * option) any later version.
16  *
17  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
18  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
20  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
24  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * You should have received a copy of the  GNU General Public License along
29  * with this program; if not, write  to the Free Software Foundation, Inc.,
30  * 675 Mass Ave, Cambridge, MA 02139, USA.
31  *
32  *  History
33  *  -------
34  *
35  *  2005/07/25 INdT-10LE Kernel Team -  Alsa driver for omap osk,
36  *                                      original version based in sa1100 driver
37  *                                      and omap oss driver.
38  */
39
40 #ifndef __OMAP_ALSA_H
41 #define __OMAP_ALSA_H
42
43 #include <sound/driver.h>
44 #include <asm/arch/dma.h>
45 #include <sound/core.h>
46 #include <sound/pcm.h>
47 #include <asm/arch/mcbsp.h>
48 #include <linux/platform_device.h>
49 /*
50  * Debug functions
51  */
52 #undef DEBUG
53 //#define DEBUG
54
55 #define ERR(ARGS...) printk(KERN_ERR "{%s}-ERROR: ", __FUNCTION__);printk(ARGS);
56
57 #ifdef DEBUG
58 #define DPRINTK(ARGS...)  printk(KERN_INFO "<%s>: ",__FUNCTION__);printk(ARGS)
59 #define ADEBUG() printk("XXX Alsa debug f:%s, l:%d\n", __FUNCTION__, __LINE__)
60 #define FN_IN printk(KERN_INFO "[%s]: start\n", __FUNCTION__)
61 #define FN_OUT(n) printk(KERN_INFO "[%s]: end(%u)\n",__FUNCTION__, n)
62 #else
63 #define DPRINTK(ARGS...)        /* nop */
64 #define ADEBUG()                /* nop */
65 #define FN_IN                   /* nop */
66 #define FN_OUT(n)               /* nop */
67 #endif
68
69 #define DMA_BUF_SIZE    (1024 * 8)
70
71 /*
72  * Buffer management for alsa and dma
73  */
74 struct audio_stream {
75         char *id;               /* identification string */
76         int stream_id;          /* numeric identification */
77         int dma_dev;            /* dma number of that device */
78         int *lch;               /* Chain of channels this stream is linked to */
79         char started;           /* to store if the chain was started or not */
80         int dma_q_head;         /* DMA Channel Q Head */
81         int dma_q_tail;         /* DMA Channel Q Tail */
82         char dma_q_count;       /* DMA Channel Q Count */
83         int active:1;           /* we are using this stream for transfer now */
84         int period;             /* current transfer period */
85         int periods;            /* current count of periods registerd in the DMA engine */
86         spinlock_t dma_lock;    /* for locking in DMA operations */
87         snd_pcm_substream_t *stream;    /* the pcm stream */
88         unsigned linked:1;      /* dma channels linked */
89         int offset;             /* store start position of the last period in the alsa buffer */
90         int (*hw_start)(void);  /* interface to start HW interface, e.g. McBSP */
91         int (*hw_stop)(void);   /* interface to stop HW interface, e.g. McBSP */
92 };
93
94 /*
95  * Alsa card structure for aic23
96  */
97 struct snd_card_omap_codec {
98         snd_card_t *card;
99         snd_pcm_t *pcm;
100         long samplerate;
101         struct audio_stream s[2];       /* playback & capture */
102 };
103
104 /* Codec specific information and function pointers. 
105  * Codec (omap-alsa-aic23.c and omap-alsa-tsc2101.c)
106  * are responsible for defining the function pointers.
107  */
108 struct omap_alsa_codec_config {
109         char    *name;
110         struct  omap_mcbsp_reg_cfg *mcbsp_regs_alsa;
111         snd_pcm_hw_constraint_list_t *hw_constraints_rates;
112         snd_pcm_hardware_t *snd_omap_alsa_playback;
113         snd_pcm_hardware_t *snd_omap_alsa_capture;
114         void    (*codec_configure_dev)(void);
115         void    (*codec_set_samplerate)(long);
116         void    (*codec_clock_setup)(void);
117         int     (*codec_clock_on)(void);
118         int     (*codec_clock_off)(void);
119         int     (*get_default_samplerate)(void);
120 };
121
122 /*********** Mixer function prototypes *************************/
123 int snd_omap_mixer(struct snd_card_omap_codec *);
124 void snd_omap_init_mixer(void);
125
126 #ifdef CONFIG_PM
127 void snd_omap_suspend_mixer(void);
128 void snd_omap_resume_mixer(void);
129 #endif
130
131 int snd_omap_alsa_post_probe(struct platform_device *pdev, struct omap_alsa_codec_config *config);
132 int snd_omap_alsa_remove(struct platform_device *pdev);
133 #ifdef CONFIG_PM
134 int snd_omap_alsa_suspend(struct platform_device *pdev, pm_message_t state);
135 int snd_omap_alsa_resume(struct platform_device *pdev);
136 #else
137 #define snd_omap_alsa_suspend   NULL
138 #define snd_omap_alsa_resume    NULL
139 #endif
140
141 /*********** function prototype to function called from the dma interrupt handler ******/
142 void callback_omap_alsa_sound_dma(void *);
143
144 #endif