]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - sound/arm/omap-aic23.c
Merge with /home/tmlind/src/kernel/linux-2.6
[linux-2.6-omap-h63xx.git] / sound / arm / omap-aic23.c
1 /*
2  * sound/arm/omap-aic23.c
3  * 
4  * Alsa Driver for AIC23 codec on OSK5912 platform board
5  *
6  * Copyright (C) 2005 Instituto Nokia de Tecnologia - INdT - Manaus Brazil
7  * Written by Daniel Petrini, David Cohen, Anderson Briglia
8  *            {daniel.petrini, david.cohen, anderson.briglia}@indt.org.br
9  *
10  * Based on sa11xx-uda1341.c, 
11  * Copyright (C) 2002 Tomas Kasparek <tomas.kasparek@seznam.cz>
12  *
13  * This program is free software; you can redistribute it and/or modify it
14  * under the terms of the GNU General Public License as published by the
15  * Free Software Foundation; either version 2 of the License, or (at your
16  * option) any later version.
17  *
18  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
21  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * You should have received a copy of the  GNU General Public License along
30  * with this program; if not, write  to the Free Software Foundation, Inc.,
31  * 675 Mass Ave, Cambridge, MA 02139, USA.
32  *
33  * History:
34  *
35  * 2005-07-29   INdT Kernel Team - Alsa driver for omap osk. Creation of new 
36  *                                 file omap-aic23.c
37  */
38
39 #include <linux/config.h>
40 #include <sound/driver.h>
41 #include <linux/module.h>
42 #include <linux/platform_device.h>
43 #include <linux/moduleparam.h>
44 #include <linux/init.h>
45 #include <linux/errno.h>
46 #include <linux/ioctl.h>
47 #include <linux/delay.h>
48 #include <linux/slab.h>
49
50 #ifdef CONFIG_PM
51 #include <linux/pm.h>
52 #endif
53
54 #include <asm/hardware.h>
55 #include <asm/mach-types.h>
56 #include <asm/arch/dma.h>
57 #include <asm/arch/aic23.h>
58 #include <asm/hardware/clock.h>
59 #include <asm/arch/mcbsp.h>
60
61 #include <sound/core.h>
62 #include <sound/pcm.h>
63 #include <sound/initval.h>
64 #include <sound/memalloc.h>
65
66 #include "omap-alsa-dma.h"
67 #include "omap-aic23.h"
68
69 #undef DEBUG
70
71 #ifdef DEBUG
72 #define ADEBUG() printk("XXX Alsa debug f:%s, l:%d\n", __FUNCTION__, __LINE__)
73 #else
74 #define ADEBUG()                /* nop */
75 #endif
76
77 /* Define to set the AIC23 as the master w.r.t McBSP */
78 #define AIC23_MASTER
79
80 /*
81  * AUDIO related MACROS
82  */
83 #define DEFAULT_BITPERSAMPLE          16
84 #define AUDIO_RATE_DEFAULT            44100
85 #define AUDIO_MCBSP                   OMAP_MCBSP1
86 #define NUMBER_SAMPLE_RATES_SUPPORTED 10
87
88
89 MODULE_AUTHOR("Daniel Petrini, David Cohen, Anderson Briglia - INdT");
90 MODULE_LICENSE("GPL");
91 MODULE_DESCRIPTION("OMAP AIC23 driver for ALSA");
92 MODULE_SUPPORTED_DEVICE("{{AIC23,OMAP AIC23}}");
93 MODULE_ALIAS("omap_mcbsp.1");
94
95 static char *id = NULL; 
96 MODULE_PARM_DESC(id, "OMAP OSK ALSA Driver for AIC23 chip.");
97
98 static struct snd_card_omap_aic23 *omap_aic23 = NULL;
99
100 static struct clk *aic23_mclk = 0;
101
102 struct sample_rate_rate_reg_info {
103         u8 control;             /* SR3, SR2, SR1, SR0 and BOSR */
104         u8 divider;             /* if 0 CLKIN = MCLK, if 1 CLKIN = MCLK/2 */
105 };
106
107 /*
108  * DAC USB-mode sampling rates (MCLK = 12 MHz)
109  * The rates and rate_reg_into MUST be in the same order
110  */
111 static unsigned int rates[] = {
112         4000, 8000, 16000, 22050,
113         24000, 32000, 44100,
114         48000, 88200, 96000,
115 };
116 static const struct sample_rate_rate_reg_info
117  rate_reg_info[NUMBER_SAMPLE_RATES_SUPPORTED] = {
118         {0x06, 1},              /*  4000 */
119         {0x06, 0},              /*  8000 */
120         {0x0C, 1},              /* 16000 */
121         {0x11, 1},              /* 22050 */
122         {0x00, 1},              /* 24000 */
123         {0x0C, 0},              /* 32000 */
124         {0x11, 0},              /* 44100 */
125         {0x00, 0},              /* 48000 */
126         {0x1F, 0},              /* 88200 */
127         {0x0E, 0},              /* 96000 */
128 };
129
130 /*
131  *  mcbsp configuration structure
132  */
133 static struct omap_mcbsp_reg_cfg initial_config_mcbsp = {
134         .spcr2 = FREE | FRST | GRST | XRST | XINTM(3),
135         .spcr1 = RINTM(3) | RRST,
136         .rcr2 = RPHASE | RFRLEN2(OMAP_MCBSP_WORD_8) |
137             RWDLEN2(OMAP_MCBSP_WORD_16) | RDATDLY(0),
138         .rcr1 = RFRLEN1(OMAP_MCBSP_WORD_8) | RWDLEN1(OMAP_MCBSP_WORD_16),
139         .xcr2 = XPHASE | XFRLEN2(OMAP_MCBSP_WORD_8) |
140             XWDLEN2(OMAP_MCBSP_WORD_16) | XDATDLY(0) | XFIG,
141         .xcr1 = XFRLEN1(OMAP_MCBSP_WORD_8) | XWDLEN1(OMAP_MCBSP_WORD_16),
142         .srgr1 = FWID(DEFAULT_BITPERSAMPLE - 1),
143         .srgr2 = GSYNC | CLKSP | FSGM | FPER(DEFAULT_BITPERSAMPLE * 2 - 1),
144 #ifndef AIC23_MASTER
145         /* configure McBSP to be the I2S master */
146         .pcr0 = FSXM | FSRM | CLKXM | CLKRM | CLKXP | CLKRP,
147 #else
148         /* configure McBSP to be the I2S slave */
149         .pcr0 = CLKXP | CLKRP,
150 #endif                          /* AIC23_MASTER */
151 };
152
153 static snd_pcm_hw_constraint_list_t hw_constraints_rates = {
154         .count = ARRAY_SIZE(rates),
155         .list = rates,
156         .mask = 0,
157 };
158
159
160 /*
161  * Codec/mcbsp init and configuration section
162  * codec dependent code.
163  */
164
165 /*
166  * Sample rate changing
167  */
168 static void omap_aic23_set_samplerate(struct snd_card_omap_aic23
169                                       *omap_aic23, long rate)
170 {
171         u8 count = 0;
172         u16 data = 0;
173
174         /* Fix the rate if it has a wrong value */
175         if (rate >= 96000)
176                 rate = 96000;
177         else if (rate >= 88200)
178                 rate = 88200;
179         else if (rate >= 48000)
180                 rate = 48000;
181         else if (rate >= 44100)
182                 rate = 44100;
183         else if (rate >= 32000)
184                 rate = 32000;
185         else if (rate >= 24000)
186                 rate = 24000;
187         else if (rate >= 22050)
188                 rate = 22050;
189         else if (rate >= 16000)
190                 rate = 16000;
191         else if (rate >= 8000)
192                 rate = 8000;
193         else
194                 rate = 4000;
195
196         /* Search for the right sample rate */
197         /* Verify what happens if the rate is not supported
198          * now it goes to 96Khz */
199         while ((rates[count] != rate) &&
200                (count < (NUMBER_SAMPLE_RATES_SUPPORTED - 1))) {
201                 count++;
202         }
203
204         data = (rate_reg_info[count].divider << CLKIN_SHIFT) |
205             (rate_reg_info[count].control << BOSR_SHIFT) | USB_CLK_ON;
206
207         audio_aic23_write(SAMPLE_RATE_CONTROL_ADDR, data);
208
209         omap_aic23->samplerate = rate;
210 }
211
212 static inline void aic23_configure(void)
213 {
214         /* Reset codec */
215         audio_aic23_write(RESET_CONTROL_ADDR, 0);
216
217         /* Initialize the AIC23 internal state */
218
219         /* Analog audio path control, DAC selected, delete INSEL_MIC for line in */
220         audio_aic23_write(ANALOG_AUDIO_CONTROL_ADDR, DEFAULT_ANALOG_AUDIO_CONTROL);
221
222         /* Digital audio path control, de-emphasis control 44.1kHz */
223         audio_aic23_write(DIGITAL_AUDIO_CONTROL_ADDR, DEEMP_44K);
224
225         /* Digital audio interface, master/slave mode, I2S, 16 bit */
226 #ifdef AIC23_MASTER
227         audio_aic23_write(DIGITAL_AUDIO_FORMAT_ADDR,
228                           MS_MASTER | IWL_16 | FOR_DSP);
229 #else
230         audio_aic23_write(DIGITAL_AUDIO_FORMAT_ADDR, IWL_16 | FOR_DSP);
231 #endif
232
233         /* Enable digital interface */
234         audio_aic23_write(DIGITAL_INTERFACE_ACT_ADDR, ACT_ON);
235
236 }
237
238 static void omap_aic23_audio_init(struct snd_card_omap_aic23 *omap_aic23)
239 {
240         /* Setup DMA stuff */
241         omap_aic23->s[SNDRV_PCM_STREAM_PLAYBACK].id = "Alsa AIC23 out";
242         omap_aic23->s[SNDRV_PCM_STREAM_PLAYBACK].stream_id =
243             SNDRV_PCM_STREAM_PLAYBACK;
244         omap_aic23->s[SNDRV_PCM_STREAM_PLAYBACK].dma_dev =
245             OMAP_DMA_MCBSP1_TX;
246
247         omap_aic23->s[SNDRV_PCM_STREAM_CAPTURE].id = "Alsa AIC23 in";
248         omap_aic23->s[SNDRV_PCM_STREAM_CAPTURE].stream_id =
249             SNDRV_PCM_STREAM_CAPTURE;
250         omap_aic23->s[SNDRV_PCM_STREAM_CAPTURE].dma_dev =
251             OMAP_DMA_MCBSP1_RX;
252
253         /* configuring the McBSP */
254         omap_mcbsp_request(AUDIO_MCBSP);
255
256         /* if configured, then stop mcbsp */
257         omap_mcbsp_stop(AUDIO_MCBSP);
258
259         omap_mcbsp_config(AUDIO_MCBSP, &initial_config_mcbsp);
260         omap_mcbsp_start(AUDIO_MCBSP);
261         aic23_configure();
262 }
263
264 /* 
265  * DMA functions 
266  * Depends on omap-aic23-dma.c functions and (omap) dma.c
267  * 
268  */
269 #define DMA_BUF_SIZE    1024 * 8
270
271 static int audio_dma_request(struct audio_stream *s,
272                              void (*callback) (void *))
273 {
274         int err;
275
276         err = omap_request_sound_dma(s->dma_dev, s->id, s, &s->lch);
277         if (err < 0)
278                 printk(KERN_ERR "unable to grab audio dma 0x%x\n",
279                        s->dma_dev);
280         return err;
281 }
282
283 static int audio_dma_free(struct audio_stream *s)
284 {
285         int err = 0;
286
287         err = omap_free_sound_dma(s, &s->lch);
288         if (err < 0)
289                 printk(KERN_ERR "Unable to free audio dma channels!\n");
290         return err;
291 }
292
293 /*
294  *  This function should calculate the current position of the dma in the
295  *  buffer. It will help alsa middle layer to continue update the buffer.
296  *  Its correctness is crucial for good functioning.
297  */
298 static u_int audio_get_dma_pos(struct audio_stream *s)
299 {
300         snd_pcm_substream_t *substream = s->stream;
301         snd_pcm_runtime_t *runtime = substream->runtime;
302         unsigned int offset;
303         unsigned long flags;
304         dma_addr_t count;
305         ADEBUG();
306
307         /* this must be called w/ interrupts locked as requested in dma.c */
308         spin_lock_irqsave(&s->dma_lock, flags);
309
310         /* For the current period let's see where we are */
311         count = omap_get_dma_src_addr_counter(s->lch[s->dma_q_head]);
312
313         spin_unlock_irqrestore(&s->dma_lock, flags);
314
315         /* Now, the position related to the end of that period */
316         offset = bytes_to_frames(runtime, s->offset) - bytes_to_frames(runtime, count);
317
318         if (offset >= runtime->buffer_size || offset < 0)
319                 offset = 0;
320
321         return offset;
322 }
323
324 /*
325  * this stops the dma and clears the dma ptrs
326  */
327 static void audio_stop_dma(struct audio_stream *s)
328 {
329         unsigned long flags;
330         ADEBUG();
331
332         spin_lock_irqsave(&s->dma_lock, flags);
333         s->active = 0;
334         s->period = 0;
335         s->periods = 0;
336
337         /* this stops the dma channel and clears the buffer ptrs */
338         omap_audio_stop_dma(s);
339
340         omap_clear_sound_dma(s);
341
342         spin_unlock_irqrestore(&s->dma_lock, flags);
343 }
344
345 /*
346  *  Main dma routine, requests dma according where you are in main alsa buffer
347  */
348 static void audio_process_dma(struct audio_stream *s)
349 {
350         snd_pcm_substream_t *substream = s->stream;
351         snd_pcm_runtime_t *runtime;
352         unsigned int dma_size;
353         unsigned int offset;
354         int ret;
355
356         runtime = substream->runtime;
357         if (s->active) {
358                 dma_size = frames_to_bytes(runtime, runtime->period_size);
359                 offset = dma_size * s->period;
360                 snd_assert(dma_size <= DMA_BUF_SIZE,);
361                 ret =
362                     omap_start_sound_dma(s,
363                                          (dma_addr_t) runtime->dma_area +
364                                          offset, dma_size);
365                 if (ret) {
366                         printk(KERN_ERR
367                                "audio_process_dma: cannot queue DMA buffer (%i)\n",
368                                ret);
369                         return;
370                 }
371
372                 s->period++;
373                 s->period %= runtime->periods;
374                 s->periods++;
375                 s->offset = offset;
376         }
377 }
378
379 /* 
380  *  This is called when dma IRQ occurs at the end of each transmited block
381  */
382 void audio_dma_callback(void *data)
383 {
384         struct audio_stream *s = data;
385
386         /* 
387          * If we are getting a callback for an active stream then we inform
388          * the PCM middle layer we've finished a period
389          */
390         if (s->active)
391                 snd_pcm_period_elapsed(s->stream);
392
393         spin_lock(&s->dma_lock);
394         if (s->periods > 0) {
395                 s->periods--;
396         }
397         audio_process_dma(s);
398         spin_unlock(&s->dma_lock);
399 }
400
401
402 /* 
403  * Alsa section
404  * PCM settings and callbacks
405  */
406
407 static int snd_omap_aic23_trigger(snd_pcm_substream_t * substream, int cmd)
408 {
409         struct snd_card_omap_aic23 *chip =
410             snd_pcm_substream_chip(substream);
411         int stream_id = substream->pstr->stream;
412         struct audio_stream *s = &chip->s[stream_id];
413         int err = 0;
414         ADEBUG();
415
416         /* note local interrupts are already disabled in the midlevel code */
417         spin_lock(&s->dma_lock);
418         switch (cmd) {
419         case SNDRV_PCM_TRIGGER_START:
420                 /* requested stream startup */
421                 s->active = 1;
422                 audio_process_dma(s);
423                 break;
424         case SNDRV_PCM_TRIGGER_STOP:
425                 /* requested stream shutdown */
426                 audio_stop_dma(s);
427                 break;
428         default:
429                 err = -EINVAL;
430                 break;
431         }
432         spin_unlock(&s->dma_lock);
433         
434         return err;
435 }
436
437 static int snd_omap_aic23_prepare(snd_pcm_substream_t * substream)
438 {
439         struct snd_card_omap_aic23 *chip =
440             snd_pcm_substream_chip(substream);
441         snd_pcm_runtime_t *runtime = substream->runtime;
442         struct audio_stream *s = &chip->s[substream->pstr->stream];
443
444         /* set requested samplerate */
445         omap_aic23_set_samplerate(chip, runtime->rate);
446
447         s->period = 0;
448         s->periods = 0;
449
450         return 0;
451 }
452
453 static snd_pcm_uframes_t snd_omap_aic23_pointer(snd_pcm_substream_t *
454                                                 substream)
455 {
456         struct snd_card_omap_aic23 *chip =
457             snd_pcm_substream_chip(substream);
458         
459         return audio_get_dma_pos(&chip->s[substream->pstr->stream]);
460 }
461
462 /* Hardware capabilities */
463
464 static snd_pcm_hardware_t snd_omap_aic23_capture = {
465         .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER |
466                  SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID),
467         .formats = (SNDRV_PCM_FMTBIT_S16_LE),
468         .rates = (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |
469                   SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_32000 |
470                   SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
471                   SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
472                   SNDRV_PCM_RATE_KNOT),
473         .rate_min = 8000,
474         .rate_max = 96000,
475         .channels_min = 2,
476         .channels_max = 2,
477         .buffer_bytes_max = 128 * 1024,
478         .period_bytes_min = 32,
479         .period_bytes_max = 8 * 1024,
480         .periods_min = 16,
481         .periods_max = 255,
482         .fifo_size = 0,
483 };
484
485 static snd_pcm_hardware_t snd_omap_aic23_playback = {
486         .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER |
487                  SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID),      
488         .formats = (SNDRV_PCM_FMTBIT_S16_LE),
489         .rates = (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |
490                   SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_32000 |
491                   SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
492                   SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
493                   SNDRV_PCM_RATE_KNOT),
494         .rate_min = 8000,
495         .rate_max = 96000,
496         .channels_min = 2,
497         .channels_max = 2,
498         .buffer_bytes_max = 128 * 1024,
499         .period_bytes_min = 32,
500         .period_bytes_max = 8 * 1024,
501         .periods_min = 16,
502         .periods_max = 255,
503         .fifo_size = 0,
504 };
505
506 static int snd_card_omap_aic23_open(snd_pcm_substream_t * substream)
507 {
508         struct snd_card_omap_aic23 *chip =
509             snd_pcm_substream_chip(substream);
510         snd_pcm_runtime_t *runtime = substream->runtime;
511         int stream_id = substream->pstr->stream;
512         int err;
513         ADEBUG();
514
515         chip->s[stream_id].stream = substream;
516         
517         omap_aic23_clock_on();
518         
519         if (stream_id == SNDRV_PCM_STREAM_PLAYBACK)
520                 runtime->hw = snd_omap_aic23_playback;
521         else
522                 runtime->hw = snd_omap_aic23_capture;
523         if ((err =
524              snd_pcm_hw_constraint_integer(runtime,
525                                            SNDRV_PCM_HW_PARAM_PERIODS)) <
526             0)
527                 return err;
528         if ((err =
529              snd_pcm_hw_constraint_list(runtime, 0,
530                                         SNDRV_PCM_HW_PARAM_RATE,
531                                         &hw_constraints_rates)) < 0)
532                 return err;
533
534         return 0;
535 }
536
537 static int snd_card_omap_aic23_close(snd_pcm_substream_t * substream)
538 {
539         struct snd_card_omap_aic23 *chip =
540             snd_pcm_substream_chip(substream);
541         ADEBUG();
542         
543         omap_aic23_clock_off();
544         chip->s[substream->pstr->stream].stream = NULL;
545         
546         return 0;
547 }
548
549 /* HW params & free */
550
551 static int snd_omap_aic23_hw_params(snd_pcm_substream_t * substream,
552                                     snd_pcm_hw_params_t * hw_params)
553 {
554         return snd_pcm_lib_malloc_pages(substream,
555                                         params_buffer_bytes(hw_params));
556 }
557
558 static int snd_omap_aic23_hw_free(snd_pcm_substream_t * substream)
559 {
560         return snd_pcm_lib_free_pages(substream);
561 }
562
563 /* pcm operations */
564
565 static snd_pcm_ops_t snd_card_omap_aic23_playback_ops = {
566         .open =         snd_card_omap_aic23_open,
567         .close =        snd_card_omap_aic23_close,
568         .ioctl =        snd_pcm_lib_ioctl,
569         .hw_params =    snd_omap_aic23_hw_params,
570         .hw_free =      snd_omap_aic23_hw_free,
571         .prepare =      snd_omap_aic23_prepare,
572         .trigger =      snd_omap_aic23_trigger,
573         .pointer =      snd_omap_aic23_pointer,
574 };
575
576 static snd_pcm_ops_t snd_card_omap_aic23_capture_ops = {
577         .open =         snd_card_omap_aic23_open,
578         .close =        snd_card_omap_aic23_close,
579         .ioctl =        snd_pcm_lib_ioctl,
580         .hw_params =    snd_omap_aic23_hw_params,
581         .hw_free =      snd_omap_aic23_hw_free,
582         .prepare =      snd_omap_aic23_prepare,
583         .trigger =      snd_omap_aic23_trigger,
584         .pointer =      snd_omap_aic23_pointer,
585 };
586
587 /*
588  *  Alsa init and exit section
589  *  
590  *  Inits pcm alsa structures, allocate the alsa buffer, suspend, resume
591  */
592 static int __init snd_card_omap_aic23_pcm(struct snd_card_omap_aic23
593                                           *omap_aic23, int device)
594 {
595         snd_pcm_t *pcm;
596         int err;
597         ADEBUG();
598
599         if ((err =
600              snd_pcm_new(omap_aic23->card, "AIC23 PCM", device, 1, 1,
601                          &pcm)) < 0)
602                 return err;
603
604         /* sets up initial buffer with continuous allocation */
605         snd_pcm_lib_preallocate_pages_for_all(pcm,
606                                               SNDRV_DMA_TYPE_CONTINUOUS,
607                                               snd_dma_continuous_data
608                                               (GFP_KERNEL),
609                                               128 * 1024, 128 * 1024);
610
611         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
612                         &snd_card_omap_aic23_playback_ops);
613         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
614                         &snd_card_omap_aic23_capture_ops);
615         pcm->private_data = omap_aic23;
616         pcm->info_flags = 0;
617         strcpy(pcm->name, "omap aic23 pcm");
618
619         omap_aic23_audio_init(omap_aic23);
620
621         /* setup DMA controller */
622         audio_dma_request(&omap_aic23->s[SNDRV_PCM_STREAM_PLAYBACK],
623                           audio_dma_callback);
624         audio_dma_request(&omap_aic23->s[SNDRV_PCM_STREAM_CAPTURE],
625                           audio_dma_callback);
626
627         omap_aic23->pcm = pcm;
628
629         return 0;
630 }
631
632
633 #ifdef CONFIG_PM
634
635 static int snd_omap_aic23_suspend(snd_card_t * card, pm_message_t state)
636 {
637         struct snd_card_omap_aic23 *chip = card->pm_private_data;
638         ADEBUG();
639
640         if (chip->card->power_state != SNDRV_CTL_POWER_D3hot) {
641                 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
642                 snd_pcm_suspend_all(chip->pcm);
643                 /* Mutes and turn clock off */
644                 omap_aic23_clock_off();
645                 snd_omap_suspend_mixer();
646         }
647
648         return 0;
649 }
650
651 /*
652  *  Prepare hardware for resume
653  */
654 static int snd_omap_aic23_resume(snd_card_t * card)
655 {
656         struct snd_card_omap_aic23 *chip = card->pm_private_data;
657         ADEBUG();
658         
659         if (chip->card->power_state != SNDRV_CTL_POWER_D0) {
660                 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
661                 omap_aic23_clock_on();
662                 snd_omap_resume_mixer();
663         }
664
665         return 0;
666 }
667
668 /*
669  * Driver suspend/resume - calls alsa functions. Some hints from aaci.c
670  */
671 static int omap_aic23_suspend(struct device *dev, pm_message_t state)
672 {
673         snd_card_t *card = dev_get_drvdata(dev);
674         
675         if (card->power_state != SNDRV_CTL_POWER_D3hot) {
676                 snd_omap_aic23_suspend(card, PMSG_SUSPEND);
677         }
678         return 0;
679 }
680
681 static int omap_aic23_resume(struct device *dev)
682 {
683         snd_card_t *card = dev_get_drvdata(dev);
684
685         if (card->power_state != SNDRV_CTL_POWER_D0) {
686                 snd_omap_aic23_resume(card);
687         }
688         return 0;
689 }
690
691 #else
692 #define snd_omap_aic23_suspend  NULL
693 #define snd_omap_aic23_resume   NULL
694 #define omap_aic23_suspend      NULL
695 #define omap_aic23_resume       NULL
696
697 #endif  /* CONFIG_PM */
698
699 /* 
700  */
701 void snd_omap_aic23_free(snd_card_t * card)
702 {
703         struct snd_card_omap_aic23 *chip = card->private_data;
704         ADEBUG();
705         
706         /*
707          * Turn off codec after it is done.
708          * Can't do it immediately, since it may still have
709          * buffered data.
710          */
711         set_current_state(TASK_INTERRUPTIBLE);
712         schedule_timeout(2);
713
714         omap_mcbsp_stop(AUDIO_MCBSP);
715         omap_mcbsp_free(AUDIO_MCBSP);
716
717         audio_aic23_write(RESET_CONTROL_ADDR, 0);
718         audio_aic23_write(POWER_DOWN_CONTROL_ADDR, 0xff);
719
720         audio_dma_free(&chip->s[SNDRV_PCM_STREAM_PLAYBACK]);
721         audio_dma_free(&chip->s[SNDRV_PCM_STREAM_CAPTURE]);
722 }
723
724 /*
725  *  Omap MCBSP clock configuration
726  *  
727  *  Here we have some functions that allows clock to be enabled and
728  *   disabled only when needed. Besides doing clock configuration 
729  *   it allows turn on/turn off audio when necessary. 
730  */
731 #define CODEC_CLOCK                   12000000
732 #define AUDIO_RATE_DEFAULT            44100
733
734 /*
735  * Do clock framework mclk search
736  */
737 static __init void omap_aic23_clock_setup(void)
738 {
739         aic23_mclk = clk_get(0, "mclk");
740 }
741
742 /*
743  * Do some sanity check, set clock rate, starts it and
744  *  turn codec audio on 
745  */
746 int omap_aic23_clock_on(void)
747 {
748         if (clk_get_usecount(aic23_mclk) > 0) {
749                 /* MCLK is already in use */
750                 printk(KERN_WARNING
751                        "MCLK in use at %d Hz. We change it to %d Hz\n",
752                        (uint) clk_get_rate(aic23_mclk),
753                        CODEC_CLOCK);
754         }
755         
756         if (clk_set_rate(aic23_mclk, CODEC_CLOCK)) {
757                 printk(KERN_ERR
758                        "Cannot set MCLK for AIC23 CODEC\n");
759                 return -ECANCELED;
760         }
761
762         clk_use(aic23_mclk);
763
764         printk(KERN_DEBUG
765                 "MCLK = %d [%d], usecount = %d\n",
766                (uint) clk_get_rate(aic23_mclk), CODEC_CLOCK,
767                clk_get_usecount(aic23_mclk));
768
769         /* Now turn the audio on */
770         audio_aic23_write(POWER_DOWN_CONTROL_ADDR, 
771                           ~DEVICE_POWER_OFF & ~OUT_OFF & ~DAC_OFF &
772                           ~ADC_OFF & ~MIC_OFF & ~LINE_OFF);
773         
774         return 0;
775 }
776 /*
777  * Do some sanity check, turn clock off and then turn
778  *  codec audio off
779  */
780 int omap_aic23_clock_off(void)
781 {
782         if  (clk_get_usecount(aic23_mclk) > 0) { 
783                 if (clk_get_rate(aic23_mclk) != CODEC_CLOCK) {
784                         printk(KERN_WARNING
785                                "MCLK for audio should be %d Hz. But is %d Hz\n",
786                                (uint) clk_get_rate(aic23_mclk),
787                                CODEC_CLOCK);
788                 }
789
790                 clk_unuse(aic23_mclk);
791         }
792         
793         audio_aic23_write(POWER_DOWN_CONTROL_ADDR,
794                           DEVICE_POWER_OFF | OUT_OFF | DAC_OFF |
795                           ADC_OFF | MIC_OFF | LINE_OFF);        
796         return 0;
797 }
798
799 /* module init & exit */
800
801 /* 
802  *  Inits alsa soudcard structure
803  */
804 static int __init snd_omap_aic23_probe(struct device *dev)
805 {
806         int err = 0;
807         snd_card_t *card;
808         ADEBUG();
809         
810         /* gets clock from clock framework */
811         omap_aic23_clock_setup();
812
813         /* register the soundcard */
814         card = snd_card_new(-1, id, THIS_MODULE, sizeof(omap_aic23));
815         if (card == NULL)
816                 return -ENOMEM;
817
818         omap_aic23 = kcalloc(1, sizeof(*omap_aic23), GFP_KERNEL);
819         if (omap_aic23 == NULL)
820                 return -ENOMEM;
821
822         card->private_data = (void *) omap_aic23;
823         card->private_free = snd_omap_aic23_free;
824
825         omap_aic23->card = card;
826         omap_aic23->samplerate = AUDIO_RATE_DEFAULT;
827
828         spin_lock_init(&omap_aic23->s[0].dma_lock);
829         spin_lock_init(&omap_aic23->s[1].dma_lock);
830
831         /* mixer */
832         if ((err = snd_omap_mixer(omap_aic23)) < 0) 
833                 goto nodev;
834
835         /* PCM */
836         if ((err = snd_card_omap_aic23_pcm(omap_aic23, 0)) < 0)
837                 goto nodev;
838
839         snd_card_set_pm_callback(card, snd_omap_aic23_suspend,
840                                  snd_omap_aic23_resume, omap_aic23);
841
842         strcpy(card->driver, "AIC23");
843         strcpy(card->shortname, "OSK AIC23");
844         sprintf(card->longname, "OMAP OSK with AIC23");
845
846         snd_omap_init_mixer();
847         
848         if ((err = snd_card_register(card)) == 0) {
849                 printk(KERN_INFO "OSK audio support initialized\n");
850                 dev_set_drvdata(dev, card); 
851                 return 0;
852         }
853         
854 nodev:
855         snd_omap_aic23_free(card);
856         
857         return err;
858 }
859
860 static int snd_omap_aic23_remove(struct device *dev)
861 {
862         snd_card_t *card = dev_get_drvdata(dev);
863         struct snd_card_omap_aic23 *chip = card->private_data;
864         
865         snd_card_free(card);
866
867         omap_aic23 = NULL;
868         card->private_data = NULL;
869         kfree(chip);
870         
871         dev_set_drvdata(dev, NULL); 
872         
873         return 0;
874         
875 }
876
877 static struct device_driver omap_alsa_driver = {
878         .name =         "omap_mcbsp",
879         .bus =          &platform_bus_type,
880         .probe =        snd_omap_aic23_probe,
881         .remove =       snd_omap_aic23_remove,
882         .suspend =      omap_aic23_suspend, 
883         .resume =       omap_aic23_resume, 
884 };
885
886 static int __init omap_aic23_init(void)
887 {
888         int err;
889         ADEBUG();
890
891         err = driver_register(&omap_alsa_driver);
892
893         return err;
894 }
895
896 static void __exit omap_aic23_exit(void)
897 {
898         ADEBUG();
899         
900         driver_unregister(&omap_alsa_driver);
901 }
902
903 module_init(omap_aic23_init);
904 module_exit(omap_aic23_exit);