]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sitara-epos/sitara-epos-kernel.git/blob - arch/arm/plat-omap/mcbsp.c
AM335X: Avoid i2c pin mux setup.
[sitara-epos/sitara-epos-kernel.git] / arch / arm / plat-omap / mcbsp.c
1 /*
2  * linux/arch/arm/plat-omap/mcbsp.c
3  *
4  * Copyright (C) 2004 Nokia Corporation
5  * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
6  *
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * Multichannel mode not supported.
13  */
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/device.h>
18 #include <linux/platform_device.h>
19 #include <linux/interrupt.h>
20 #include <linux/err.h>
21 #include <linux/clk.h>
22 #include <linux/delay.h>
23 #include <linux/io.h>
24 #include <linux/slab.h>
26 #include <plat/mcbsp.h>
27 #include <linux/pm_runtime.h>
29 struct omap_mcbsp **mcbsp_ptr;
30 int omap_mcbsp_count;
32 #define omap_mcbsp_check_valid_id(id)   (id < omap_mcbsp_count)
33 #define id_to_mcbsp_ptr(id)             mcbsp_ptr[id];
35 static void omap_mcbsp_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
36 {
37         void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
39         if (mcbsp->pdata->reg_size == 2) {
40                 ((u16 *)mcbsp->reg_cache)[reg] = (u16)val;
41                 __raw_writew((u16)val, addr);
42         } else {
43                 ((u32 *)mcbsp->reg_cache)[reg] = val;
44                 __raw_writel(val, addr);
45         }
46 }
48 static int omap_mcbsp_read(struct omap_mcbsp *mcbsp, u16 reg, bool from_cache)
49 {
50         void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
52         if (mcbsp->pdata->reg_size == 2) {
53                 return !from_cache ? __raw_readw(addr) :
54                                      ((u16 *)mcbsp->reg_cache)[reg];
55         } else {
56                 return !from_cache ? __raw_readl(addr) :
57                                      ((u32 *)mcbsp->reg_cache)[reg];
58         }
59 }
61 static void omap_mcbsp_st_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
62 {
63         __raw_writel(val, mcbsp->st_data->io_base_st + reg);
64 }
66 static int omap_mcbsp_st_read(struct omap_mcbsp *mcbsp, u16 reg)
67 {
68         return __raw_readl(mcbsp->st_data->io_base_st + reg);
69 }
71 #define MCBSP_READ(mcbsp, reg) \
72                 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
73 #define MCBSP_WRITE(mcbsp, reg, val) \
74                 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
75 #define MCBSP_READ_CACHE(mcbsp, reg) \
76                 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
78 #define MCBSP_ST_READ(mcbsp, reg) \
79                         omap_mcbsp_st_read(mcbsp, OMAP_ST_REG_##reg)
80 #define MCBSP_ST_WRITE(mcbsp, reg, val) \
81                         omap_mcbsp_st_write(mcbsp, OMAP_ST_REG_##reg, val)
83 static void omap_mcbsp_dump_reg(u8 id)
84 {
85         struct omap_mcbsp *mcbsp = id_to_mcbsp_ptr(id);
87         dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
88         dev_dbg(mcbsp->dev, "DRR2:  0x%04x\n",
89                         MCBSP_READ(mcbsp, DRR2));
90         dev_dbg(mcbsp->dev, "DRR1:  0x%04x\n",
91                         MCBSP_READ(mcbsp, DRR1));
92         dev_dbg(mcbsp->dev, "DXR2:  0x%04x\n",
93                         MCBSP_READ(mcbsp, DXR2));
94         dev_dbg(mcbsp->dev, "DXR1:  0x%04x\n",
95                         MCBSP_READ(mcbsp, DXR1));
96         dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
97                         MCBSP_READ(mcbsp, SPCR2));
98         dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
99                         MCBSP_READ(mcbsp, SPCR1));
100         dev_dbg(mcbsp->dev, "RCR2:  0x%04x\n",
101                         MCBSP_READ(mcbsp, RCR2));
102         dev_dbg(mcbsp->dev, "RCR1:  0x%04x\n",
103                         MCBSP_READ(mcbsp, RCR1));
104         dev_dbg(mcbsp->dev, "XCR2:  0x%04x\n",
105                         MCBSP_READ(mcbsp, XCR2));
106         dev_dbg(mcbsp->dev, "XCR1:  0x%04x\n",
107                         MCBSP_READ(mcbsp, XCR1));
108         dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
109                         MCBSP_READ(mcbsp, SRGR2));
110         dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
111                         MCBSP_READ(mcbsp, SRGR1));
112         dev_dbg(mcbsp->dev, "PCR0:  0x%04x\n",
113                         MCBSP_READ(mcbsp, PCR0));
114         dev_dbg(mcbsp->dev, "***********************\n");
117 static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
119         struct omap_mcbsp *mcbsp_tx = dev_id;
120         u16 irqst_spcr2;
122         irqst_spcr2 = MCBSP_READ(mcbsp_tx, SPCR2);
123         dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
125         if (irqst_spcr2 & XSYNC_ERR) {
126                 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
127                         irqst_spcr2);
128                 /* Writing zero to XSYNC_ERR clears the IRQ */
129                 MCBSP_WRITE(mcbsp_tx, SPCR2, MCBSP_READ_CACHE(mcbsp_tx, SPCR2));
130         }
132         return IRQ_HANDLED;
135 static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
137         struct omap_mcbsp *mcbsp_rx = dev_id;
138         u16 irqst_spcr1;
140         irqst_spcr1 = MCBSP_READ(mcbsp_rx, SPCR1);
141         dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
143         if (irqst_spcr1 & RSYNC_ERR) {
144                 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
145                         irqst_spcr1);
146                 /* Writing zero to RSYNC_ERR clears the IRQ */
147                 MCBSP_WRITE(mcbsp_rx, SPCR1, MCBSP_READ_CACHE(mcbsp_rx, SPCR1));
148         }
150         return IRQ_HANDLED;
153 /*
154  * omap_mcbsp_config simply write a config to the
155  * appropriate McBSP.
156  * You either call this function or set the McBSP registers
157  * by yourself before calling omap_mcbsp_start().
158  */
159 void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config)
161         struct omap_mcbsp *mcbsp;
163         if (!omap_mcbsp_check_valid_id(id)) {
164                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
165                 return;
166         }
167         mcbsp = id_to_mcbsp_ptr(id);
169         dev_dbg(mcbsp->dev, "Configuring McBSP%d  phys_base: 0x%08lx\n",
170                         mcbsp->id, mcbsp->phys_base);
172         /* We write the given config */
173         MCBSP_WRITE(mcbsp, SPCR2, config->spcr2);
174         MCBSP_WRITE(mcbsp, SPCR1, config->spcr1);
175         MCBSP_WRITE(mcbsp, RCR2, config->rcr2);
176         MCBSP_WRITE(mcbsp, RCR1, config->rcr1);
177         MCBSP_WRITE(mcbsp, XCR2, config->xcr2);
178         MCBSP_WRITE(mcbsp, XCR1, config->xcr1);
179         MCBSP_WRITE(mcbsp, SRGR2, config->srgr2);
180         MCBSP_WRITE(mcbsp, SRGR1, config->srgr1);
181         MCBSP_WRITE(mcbsp, MCR2, config->mcr2);
182         MCBSP_WRITE(mcbsp, MCR1, config->mcr1);
183         MCBSP_WRITE(mcbsp, PCR0, config->pcr0);
184         if (mcbsp->pdata->has_ccr) {
185                 MCBSP_WRITE(mcbsp, XCCR, config->xccr);
186                 MCBSP_WRITE(mcbsp, RCCR, config->rccr);
187         }
189 EXPORT_SYMBOL(omap_mcbsp_config);
191 /**
192  * omap_mcbsp_dma_params - returns the dma channel number
193  * @id - mcbsp id
194  * @stream - indicates the direction of data flow (rx or tx)
195  *
196  * Returns the dma channel number for the rx channel or tx channel
197  * based on the value of @stream for the requested mcbsp given by @id
198  */
199 int omap_mcbsp_dma_ch_params(unsigned int id, unsigned int stream)
201         struct omap_mcbsp *mcbsp;
203         if (!omap_mcbsp_check_valid_id(id)) {
204                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
205                 return -ENODEV;
206         }
207         mcbsp = id_to_mcbsp_ptr(id);
209         if (stream)
210                 return mcbsp->dma_rx_sync;
211         else
212                 return mcbsp->dma_tx_sync;
214 EXPORT_SYMBOL(omap_mcbsp_dma_ch_params);
216 /**
217  * omap_mcbsp_dma_reg_params - returns the address of mcbsp data register
218  * @id - mcbsp id
219  * @stream - indicates the direction of data flow (rx or tx)
220  *
221  * Returns the address of mcbsp data transmit register or data receive register
222  * to be used by DMA for transferring/receiving data based on the value of
223  * @stream for the requested mcbsp given by @id
224  */
225 int omap_mcbsp_dma_reg_params(unsigned int id, unsigned int stream)
227         struct omap_mcbsp *mcbsp;
228         int data_reg;
230         if (!omap_mcbsp_check_valid_id(id)) {
231                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
232                 return -ENODEV;
233         }
234         mcbsp = id_to_mcbsp_ptr(id);
236         if (mcbsp->pdata->reg_size == 2) {
237                 if (stream)
238                         data_reg = OMAP_MCBSP_REG_DRR1;
239                 else
240                         data_reg = OMAP_MCBSP_REG_DXR1;
241         } else {
242                 if (stream)
243                         data_reg = OMAP_MCBSP_REG_DRR;
244                 else
245                         data_reg = OMAP_MCBSP_REG_DXR;
246         }
248         return mcbsp->phys_dma_base + data_reg * mcbsp->pdata->reg_step;
250 EXPORT_SYMBOL(omap_mcbsp_dma_reg_params);
252 static void omap_st_on(struct omap_mcbsp *mcbsp)
254         unsigned int w;
256         if (mcbsp->pdata->enable_st_clock)
257                 mcbsp->pdata->enable_st_clock(mcbsp->id, 1);
259         /* Enable McBSP Sidetone */
260         w = MCBSP_READ(mcbsp, SSELCR);
261         MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN);
263         /* Enable Sidetone from Sidetone Core */
264         w = MCBSP_ST_READ(mcbsp, SSELCR);
265         MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN);
268 static void omap_st_off(struct omap_mcbsp *mcbsp)
270         unsigned int w;
272         w = MCBSP_ST_READ(mcbsp, SSELCR);
273         MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN));
275         w = MCBSP_READ(mcbsp, SSELCR);
276         MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN));
278         if (mcbsp->pdata->enable_st_clock)
279                 mcbsp->pdata->enable_st_clock(mcbsp->id, 0);
282 static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir)
284         u16 val, i;
286         val = MCBSP_ST_READ(mcbsp, SSELCR);
288         if (val & ST_COEFFWREN)
289                 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
291         MCBSP_ST_WRITE(mcbsp, SSELCR, val | ST_COEFFWREN);
293         for (i = 0; i < 128; i++)
294                 MCBSP_ST_WRITE(mcbsp, SFIRCR, fir[i]);
296         i = 0;
298         val = MCBSP_ST_READ(mcbsp, SSELCR);
299         while (!(val & ST_COEFFWRDONE) && (++i < 1000))
300                 val = MCBSP_ST_READ(mcbsp, SSELCR);
302         MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
304         if (i == 1000)
305                 dev_err(mcbsp->dev, "McBSP FIR load error!\n");
308 static void omap_st_chgain(struct omap_mcbsp *mcbsp)
310         u16 w;
311         struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
313         w = MCBSP_ST_READ(mcbsp, SSELCR);
315         MCBSP_ST_WRITE(mcbsp, SGAINCR, ST_CH0GAIN(st_data->ch0gain) | \
316                       ST_CH1GAIN(st_data->ch1gain));
319 int omap_st_set_chgain(unsigned int id, int channel, s16 chgain)
321         struct omap_mcbsp *mcbsp;
322         struct omap_mcbsp_st_data *st_data;
323         int ret = 0;
325         if (!omap_mcbsp_check_valid_id(id)) {
326                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
327                 return -ENODEV;
328         }
330         mcbsp = id_to_mcbsp_ptr(id);
331         st_data = mcbsp->st_data;
333         if (!st_data)
334                 return -ENOENT;
336         spin_lock_irq(&mcbsp->lock);
337         if (channel == 0)
338                 st_data->ch0gain = chgain;
339         else if (channel == 1)
340                 st_data->ch1gain = chgain;
341         else
342                 ret = -EINVAL;
344         if (st_data->enabled)
345                 omap_st_chgain(mcbsp);
346         spin_unlock_irq(&mcbsp->lock);
348         return ret;
350 EXPORT_SYMBOL(omap_st_set_chgain);
352 int omap_st_get_chgain(unsigned int id, int channel, s16 *chgain)
354         struct omap_mcbsp *mcbsp;
355         struct omap_mcbsp_st_data *st_data;
356         int ret = 0;
358         if (!omap_mcbsp_check_valid_id(id)) {
359                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
360                 return -ENODEV;
361         }
363         mcbsp = id_to_mcbsp_ptr(id);
364         st_data = mcbsp->st_data;
366         if (!st_data)
367                 return -ENOENT;
369         spin_lock_irq(&mcbsp->lock);
370         if (channel == 0)
371                 *chgain = st_data->ch0gain;
372         else if (channel == 1)
373                 *chgain = st_data->ch1gain;
374         else
375                 ret = -EINVAL;
376         spin_unlock_irq(&mcbsp->lock);
378         return ret;
380 EXPORT_SYMBOL(omap_st_get_chgain);
382 static int omap_st_start(struct omap_mcbsp *mcbsp)
384         struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
386         if (st_data && st_data->enabled && !st_data->running) {
387                 omap_st_fir_write(mcbsp, st_data->taps);
388                 omap_st_chgain(mcbsp);
390                 if (!mcbsp->free) {
391                         omap_st_on(mcbsp);
392                         st_data->running = 1;
393                 }
394         }
396         return 0;
399 int omap_st_enable(unsigned int id)
401         struct omap_mcbsp *mcbsp;
402         struct omap_mcbsp_st_data *st_data;
404         if (!omap_mcbsp_check_valid_id(id)) {
405                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
406                 return -ENODEV;
407         }
409         mcbsp = id_to_mcbsp_ptr(id);
410         st_data = mcbsp->st_data;
412         if (!st_data)
413                 return -ENODEV;
415         spin_lock_irq(&mcbsp->lock);
416         st_data->enabled = 1;
417         omap_st_start(mcbsp);
418         spin_unlock_irq(&mcbsp->lock);
420         return 0;
422 EXPORT_SYMBOL(omap_st_enable);
424 static int omap_st_stop(struct omap_mcbsp *mcbsp)
426         struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
428         if (st_data && st_data->running) {
429                 if (!mcbsp->free) {
430                         omap_st_off(mcbsp);
431                         st_data->running = 0;
432                 }
433         }
435         return 0;
438 int omap_st_disable(unsigned int id)
440         struct omap_mcbsp *mcbsp;
441         struct omap_mcbsp_st_data *st_data;
442         int ret = 0;
444         if (!omap_mcbsp_check_valid_id(id)) {
445                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
446                 return -ENODEV;
447         }
449         mcbsp = id_to_mcbsp_ptr(id);
450         st_data = mcbsp->st_data;
452         if (!st_data)
453                 return -ENODEV;
455         spin_lock_irq(&mcbsp->lock);
456         omap_st_stop(mcbsp);
457         st_data->enabled = 0;
458         spin_unlock_irq(&mcbsp->lock);
460         return ret;
462 EXPORT_SYMBOL(omap_st_disable);
464 int omap_st_is_enabled(unsigned int id)
466         struct omap_mcbsp *mcbsp;
467         struct omap_mcbsp_st_data *st_data;
469         if (!omap_mcbsp_check_valid_id(id)) {
470                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
471                 return -ENODEV;
472         }
474         mcbsp = id_to_mcbsp_ptr(id);
475         st_data = mcbsp->st_data;
477         if (!st_data)
478                 return -ENODEV;
481         return st_data->enabled;
483 EXPORT_SYMBOL(omap_st_is_enabled);
485 /*
486  * omap_mcbsp_set_rx_threshold configures the transmit threshold in words.
487  * The threshold parameter is 1 based, and it is converted (threshold - 1)
488  * for the THRSH2 register.
489  */
490 void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold)
492         struct omap_mcbsp *mcbsp;
494         if (!omap_mcbsp_check_valid_id(id)) {
495                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
496                 return;
497         }
498         mcbsp = id_to_mcbsp_ptr(id);
499         if (mcbsp->pdata->buffer_size == 0)
500                 return;
502         if (threshold && threshold <= mcbsp->max_tx_thres)
503                 MCBSP_WRITE(mcbsp, THRSH2, threshold - 1);
505 EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold);
507 /*
508  * omap_mcbsp_set_rx_threshold configures the receive threshold in words.
509  * The threshold parameter is 1 based, and it is converted (threshold - 1)
510  * for the THRSH1 register.
511  */
512 void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
514         struct omap_mcbsp *mcbsp;
516         if (!omap_mcbsp_check_valid_id(id)) {
517                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
518                 return;
519         }
520         mcbsp = id_to_mcbsp_ptr(id);
521         if (mcbsp->pdata->buffer_size == 0)
522                 return;
524         if (threshold && threshold <= mcbsp->max_rx_thres)
525                 MCBSP_WRITE(mcbsp, THRSH1, threshold - 1);
527 EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold);
529 /*
530  * omap_mcbsp_get_max_tx_thres just return the current configured
531  * maximum threshold for transmission
532  */
533 u16 omap_mcbsp_get_max_tx_threshold(unsigned int id)
535         struct omap_mcbsp *mcbsp;
537         if (!omap_mcbsp_check_valid_id(id)) {
538                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
539                 return -ENODEV;
540         }
541         mcbsp = id_to_mcbsp_ptr(id);
543         return mcbsp->max_tx_thres;
545 EXPORT_SYMBOL(omap_mcbsp_get_max_tx_threshold);
547 /*
548  * omap_mcbsp_get_max_rx_thres just return the current configured
549  * maximum threshold for reception
550  */
551 u16 omap_mcbsp_get_max_rx_threshold(unsigned int id)
553         struct omap_mcbsp *mcbsp;
555         if (!omap_mcbsp_check_valid_id(id)) {
556                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
557                 return -ENODEV;
558         }
559         mcbsp = id_to_mcbsp_ptr(id);
561         return mcbsp->max_rx_thres;
563 EXPORT_SYMBOL(omap_mcbsp_get_max_rx_threshold);
565 u16 omap_mcbsp_get_fifo_size(unsigned int id)
567         struct omap_mcbsp *mcbsp;
569         if (!omap_mcbsp_check_valid_id(id)) {
570                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
571                 return -ENODEV;
572         }
573         mcbsp = id_to_mcbsp_ptr(id);
575         return mcbsp->pdata->buffer_size;
577 EXPORT_SYMBOL(omap_mcbsp_get_fifo_size);
579 /*
580  * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
581  */
582 u16 omap_mcbsp_get_tx_delay(unsigned int id)
584         struct omap_mcbsp *mcbsp;
585         u16 buffstat;
587         if (!omap_mcbsp_check_valid_id(id)) {
588                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
589                 return -ENODEV;
590         }
591         mcbsp = id_to_mcbsp_ptr(id);
592         if (mcbsp->pdata->buffer_size == 0)
593                 return 0;
595         /* Returns the number of free locations in the buffer */
596         buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
598         /* Number of slots are different in McBSP ports */
599         return mcbsp->pdata->buffer_size - buffstat;
601 EXPORT_SYMBOL(omap_mcbsp_get_tx_delay);
603 /*
604  * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
605  * to reach the threshold value (when the DMA will be triggered to read it)
606  */
607 u16 omap_mcbsp_get_rx_delay(unsigned int id)
609         struct omap_mcbsp *mcbsp;
610         u16 buffstat, threshold;
612         if (!omap_mcbsp_check_valid_id(id)) {
613                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
614                 return -ENODEV;
615         }
616         mcbsp = id_to_mcbsp_ptr(id);
617         if (mcbsp->pdata->buffer_size == 0)
618                 return 0;
620         /* Returns the number of used locations in the buffer */
621         buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
622         /* RX threshold */
623         threshold = MCBSP_READ(mcbsp, THRSH1);
625         /* Return the number of location till we reach the threshold limit */
626         if (threshold <= buffstat)
627                 return 0;
628         else
629                 return threshold - buffstat;
631 EXPORT_SYMBOL(omap_mcbsp_get_rx_delay);
633 /*
634  * omap_mcbsp_get_dma_op_mode just return the current configured
635  * operating mode for the mcbsp channel
636  */
637 int omap_mcbsp_get_dma_op_mode(unsigned int id)
639         struct omap_mcbsp *mcbsp;
640         int dma_op_mode;
642         if (!omap_mcbsp_check_valid_id(id)) {
643                 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
644                 return -ENODEV;
645         }
646         mcbsp = id_to_mcbsp_ptr(id);
648         dma_op_mode = mcbsp->dma_op_mode;
650         return dma_op_mode;
652 EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
654 int omap_mcbsp_request(unsigned int id)
656         struct omap_mcbsp *mcbsp;
657         void *reg_cache;
658         int err;
660         if (!omap_mcbsp_check_valid_id(id)) {
661                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
662                 return -ENODEV;
663         }
664         mcbsp = id_to_mcbsp_ptr(id);
666         reg_cache = kzalloc(mcbsp->reg_cache_size, GFP_KERNEL);
667         if (!reg_cache) {
668                 return -ENOMEM;
669         }
671         spin_lock(&mcbsp->lock);
672         if (!mcbsp->free) {
673                 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
674                         mcbsp->id);
675                 err = -EBUSY;
676                 goto err_kfree;
677         }
679         mcbsp->free = false;
680         mcbsp->reg_cache = reg_cache;
681         spin_unlock(&mcbsp->lock);
683         if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
684                 mcbsp->pdata->ops->request(id);
686         pm_runtime_get_sync(mcbsp->dev);
688         /* Enable wakeup behavior */
689         if (mcbsp->pdata->has_wakeup)
690                 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
692         /*
693          * Make sure that transmitter, receiver and sample-rate generator are
694          * not running before activating IRQs.
695          */
696         MCBSP_WRITE(mcbsp, SPCR1, 0);
697         MCBSP_WRITE(mcbsp, SPCR2, 0);
699         err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
700                                 0, "McBSP", (void *)mcbsp);
701         if (err != 0) {
702                 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
703                                 "for McBSP%d\n", mcbsp->tx_irq,
704                                 mcbsp->id);
705                 goto err_clk_disable;
706         }
708         if (mcbsp->rx_irq) {
709                 err = request_irq(mcbsp->rx_irq,
710                                 omap_mcbsp_rx_irq_handler,
711                                 0, "McBSP", (void *)mcbsp);
712                 if (err != 0) {
713                         dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
714                                         "for McBSP%d\n", mcbsp->rx_irq,
715                                         mcbsp->id);
716                         goto err_free_irq;
717                 }
718         }
720         return 0;
721 err_free_irq:
722         free_irq(mcbsp->tx_irq, (void *)mcbsp);
723 err_clk_disable:
724         if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
725                 mcbsp->pdata->ops->free(id);
727         /* Disable wakeup behavior */
728         if (mcbsp->pdata->has_wakeup)
729                 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
731         pm_runtime_put_sync(mcbsp->dev);
733         spin_lock(&mcbsp->lock);
734         mcbsp->free = true;
735         mcbsp->reg_cache = NULL;
736 err_kfree:
737         spin_unlock(&mcbsp->lock);
738         kfree(reg_cache);
740         return err;
742 EXPORT_SYMBOL(omap_mcbsp_request);
744 void omap_mcbsp_free(unsigned int id)
746         struct omap_mcbsp *mcbsp;
747         void *reg_cache;
749         if (!omap_mcbsp_check_valid_id(id)) {
750                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
751                 return;
752         }
753         mcbsp = id_to_mcbsp_ptr(id);
755         if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
756                 mcbsp->pdata->ops->free(id);
758         /* Disable wakeup behavior */
759         if (mcbsp->pdata->has_wakeup)
760                 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
762         pm_runtime_put_sync(mcbsp->dev);
764         if (mcbsp->rx_irq)
765                 free_irq(mcbsp->rx_irq, (void *)mcbsp);
766         free_irq(mcbsp->tx_irq, (void *)mcbsp);
768         reg_cache = mcbsp->reg_cache;
770         spin_lock(&mcbsp->lock);
771         if (mcbsp->free)
772                 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
773         else
774                 mcbsp->free = true;
775         mcbsp->reg_cache = NULL;
776         spin_unlock(&mcbsp->lock);
778         if (reg_cache)
779                 kfree(reg_cache);
781 EXPORT_SYMBOL(omap_mcbsp_free);
783 /*
784  * Here we start the McBSP, by enabling transmitter, receiver or both.
785  * If no transmitter or receiver is active prior calling, then sample-rate
786  * generator and frame sync are started.
787  */
788 void omap_mcbsp_start(unsigned int id, int tx, int rx)
790         struct omap_mcbsp *mcbsp;
791         int enable_srg = 0;
792         u16 w;
794         if (!omap_mcbsp_check_valid_id(id)) {
795                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
796                 return;
797         }
798         mcbsp = id_to_mcbsp_ptr(id);
800         if (mcbsp->st_data)
801                 omap_st_start(mcbsp);
803         /* Only enable SRG, if McBSP is master */
804         w = MCBSP_READ_CACHE(mcbsp, PCR0);
805         if (w & (FSXM | FSRM | CLKXM | CLKRM))
806                 enable_srg = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
807                                 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
809         if (enable_srg) {
810                 /* Start the sample generator */
811                 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
812                 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
813         }
815         /* Enable transmitter and receiver */
816         tx &= 1;
817         w = MCBSP_READ_CACHE(mcbsp, SPCR2);
818         MCBSP_WRITE(mcbsp, SPCR2, w | tx);
820         rx &= 1;
821         w = MCBSP_READ_CACHE(mcbsp, SPCR1);
822         MCBSP_WRITE(mcbsp, SPCR1, w | rx);
824         /*
825          * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
826          * REVISIT: 100us may give enough time for two CLKSRG, however
827          * due to some unknown PM related, clock gating etc. reason it
828          * is now at 500us.
829          */
830         udelay(500);
832         if (enable_srg) {
833                 /* Start frame sync */
834                 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
835                 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
836         }
838         if (mcbsp->pdata->has_ccr) {
839                 /* Release the transmitter and receiver */
840                 w = MCBSP_READ_CACHE(mcbsp, XCCR);
841                 w &= ~(tx ? XDISABLE : 0);
842                 MCBSP_WRITE(mcbsp, XCCR, w);
843                 w = MCBSP_READ_CACHE(mcbsp, RCCR);
844                 w &= ~(rx ? RDISABLE : 0);
845                 MCBSP_WRITE(mcbsp, RCCR, w);
846         }
848         /* Dump McBSP Regs */
849         omap_mcbsp_dump_reg(id);
851 EXPORT_SYMBOL(omap_mcbsp_start);
853 void omap_mcbsp_stop(unsigned int id, int tx, int rx)
855         struct omap_mcbsp *mcbsp;
856         int idle;
857         u16 w;
859         if (!omap_mcbsp_check_valid_id(id)) {
860                 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
861                 return;
862         }
864         mcbsp = id_to_mcbsp_ptr(id);
866         /* Reset transmitter */
867         tx &= 1;
868         if (mcbsp->pdata->has_ccr) {
869                 w = MCBSP_READ_CACHE(mcbsp, XCCR);
870                 w |= (tx ? XDISABLE : 0);
871                 MCBSP_WRITE(mcbsp, XCCR, w);
872         }
873         w = MCBSP_READ_CACHE(mcbsp, SPCR2);
874         MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
876         /* Reset receiver */
877         rx &= 1;
878         if (mcbsp->pdata->has_ccr) {
879                 w = MCBSP_READ_CACHE(mcbsp, RCCR);
880                 w |= (rx ? RDISABLE : 0);
881                 MCBSP_WRITE(mcbsp, RCCR, w);
882         }
883         w = MCBSP_READ_CACHE(mcbsp, SPCR1);
884         MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
886         idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
887                         MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
889         if (idle) {
890                 /* Reset the sample rate generator */
891                 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
892                 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
893         }
895         if (mcbsp->st_data)
896                 omap_st_stop(mcbsp);
898 EXPORT_SYMBOL(omap_mcbsp_stop);
900 int omap2_mcbsp_set_clks_src(u8 id, u8 fck_src_id)
902         struct omap_mcbsp *mcbsp;
903         const char *src;
905         if (!omap_mcbsp_check_valid_id(id)) {
906                 pr_err("%s: Invalid id (%d)\n", __func__, id + 1);
907                 return -EINVAL;
908         }
909         mcbsp = id_to_mcbsp_ptr(id);
911         if (fck_src_id == MCBSP_CLKS_PAD_SRC)
912                 src = "clks_ext";
913         else if (fck_src_id == MCBSP_CLKS_PRCM_SRC)
914                 src = "clks_fclk";
915         else
916                 return -EINVAL;
918         if (mcbsp->pdata->set_clk_src)
919                 return mcbsp->pdata->set_clk_src(mcbsp->dev, mcbsp->fclk, src);
920         else
921                 return -EINVAL;
923 EXPORT_SYMBOL(omap2_mcbsp_set_clks_src);
925 void omap2_mcbsp1_mux_clkr_src(u8 mux)
927         struct omap_mcbsp *mcbsp;
928         const char *src;
930         if (mux == CLKR_SRC_CLKR)
931                 src = "clkr";
932         else if (mux == CLKR_SRC_CLKX)
933                 src = "clkx";
934         else
935                 return;
937         mcbsp = id_to_mcbsp_ptr(0);
938         if (mcbsp->pdata->mux_signal)
939                 mcbsp->pdata->mux_signal(mcbsp->dev, "clkr", src);
941 EXPORT_SYMBOL(omap2_mcbsp1_mux_clkr_src);
943 void omap2_mcbsp1_mux_fsr_src(u8 mux)
945         struct omap_mcbsp *mcbsp;
946         const char *src;
948         if (mux == FSR_SRC_FSR)
949                 src = "fsr";
950         else if (mux == FSR_SRC_FSX)
951                 src = "fsx";
952         else
953                 return;
955         mcbsp = id_to_mcbsp_ptr(0);
956         if (mcbsp->pdata->mux_signal)
957                 mcbsp->pdata->mux_signal(mcbsp->dev, "fsr", src);
959 EXPORT_SYMBOL(omap2_mcbsp1_mux_fsr_src);
961 #define max_thres(m)                    (mcbsp->pdata->buffer_size)
962 #define valid_threshold(m, val)         ((val) <= max_thres(m))
963 #define THRESHOLD_PROP_BUILDER(prop)                                    \
964 static ssize_t prop##_show(struct device *dev,                          \
965                         struct device_attribute *attr, char *buf)       \
966 {                                                                       \
967         struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);                \
968                                                                         \
969         return sprintf(buf, "%u\n", mcbsp->prop);                       \
970 }                                                                       \
971                                                                         \
972 static ssize_t prop##_store(struct device *dev,                         \
973                                 struct device_attribute *attr,          \
974                                 const char *buf, size_t size)           \
975 {                                                                       \
976         struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);                \
977         unsigned long val;                                              \
978         int status;                                                     \
979                                                                         \
980         status = strict_strtoul(buf, 0, &val);                          \
981         if (status)                                                     \
982                 return status;                                          \
983                                                                         \
984         if (!valid_threshold(mcbsp, val))                               \
985                 return -EDOM;                                           \
986                                                                         \
987         mcbsp->prop = val;                                              \
988         return size;                                                    \
989 }                                                                       \
990                                                                         \
991 static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
993 THRESHOLD_PROP_BUILDER(max_tx_thres);
994 THRESHOLD_PROP_BUILDER(max_rx_thres);
996 static const char *dma_op_modes[] = {
997         "element", "threshold", "frame",
998 };
1000 static ssize_t dma_op_mode_show(struct device *dev,
1001                         struct device_attribute *attr, char *buf)
1003         struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1004         int dma_op_mode, i = 0;
1005         ssize_t len = 0;
1006         const char * const *s;
1008         dma_op_mode = mcbsp->dma_op_mode;
1010         for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
1011                 if (dma_op_mode == i)
1012                         len += sprintf(buf + len, "[%s] ", *s);
1013                 else
1014                         len += sprintf(buf + len, "%s ", *s);
1015         }
1016         len += sprintf(buf + len, "\n");
1018         return len;
1021 static ssize_t dma_op_mode_store(struct device *dev,
1022                                 struct device_attribute *attr,
1023                                 const char *buf, size_t size)
1025         struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1026         const char * const *s;
1027         int i = 0;
1029         for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
1030                 if (sysfs_streq(buf, *s))
1031                         break;
1033         if (i == ARRAY_SIZE(dma_op_modes))
1034                 return -EINVAL;
1036         spin_lock_irq(&mcbsp->lock);
1037         if (!mcbsp->free) {
1038                 size = -EBUSY;
1039                 goto unlock;
1040         }
1041         mcbsp->dma_op_mode = i;
1043 unlock:
1044         spin_unlock_irq(&mcbsp->lock);
1046         return size;
1049 static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1051 static const struct attribute *additional_attrs[] = {
1052         &dev_attr_max_tx_thres.attr,
1053         &dev_attr_max_rx_thres.attr,
1054         &dev_attr_dma_op_mode.attr,
1055         NULL,
1056 };
1058 static const struct attribute_group additional_attr_group = {
1059         .attrs = (struct attribute **)additional_attrs,
1060 };
1062 static ssize_t st_taps_show(struct device *dev,
1063                             struct device_attribute *attr, char *buf)
1065         struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1066         struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1067         ssize_t status = 0;
1068         int i;
1070         spin_lock_irq(&mcbsp->lock);
1071         for (i = 0; i < st_data->nr_taps; i++)
1072                 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
1073                                   st_data->taps[i]);
1074         if (i)
1075                 status += sprintf(&buf[status], "\n");
1076         spin_unlock_irq(&mcbsp->lock);
1078         return status;
1081 static ssize_t st_taps_store(struct device *dev,
1082                              struct device_attribute *attr,
1083                              const char *buf, size_t size)
1085         struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1086         struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1087         int val, tmp, status, i = 0;
1089         spin_lock_irq(&mcbsp->lock);
1090         memset(st_data->taps, 0, sizeof(st_data->taps));
1091         st_data->nr_taps = 0;
1093         do {
1094                 status = sscanf(buf, "%d%n", &val, &tmp);
1095                 if (status < 0 || status == 0) {
1096                         size = -EINVAL;
1097                         goto out;
1098                 }
1099                 if (val < -32768 || val > 32767) {
1100                         size = -EINVAL;
1101                         goto out;
1102                 }
1103                 st_data->taps[i++] = val;
1104                 buf += tmp;
1105                 if (*buf != ',')
1106                         break;
1107                 buf++;
1108         } while (1);
1110         st_data->nr_taps = i;
1112 out:
1113         spin_unlock_irq(&mcbsp->lock);
1115         return size;
1118 static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
1120 static const struct attribute *sidetone_attrs[] = {
1121         &dev_attr_st_taps.attr,
1122         NULL,
1123 };
1125 static const struct attribute_group sidetone_attr_group = {
1126         .attrs = (struct attribute **)sidetone_attrs,
1127 };
1129 static int __devinit omap_st_add(struct omap_mcbsp *mcbsp,
1130                                  struct resource *res)
1132         struct omap_mcbsp_st_data *st_data;
1133         int err;
1135         st_data = kzalloc(sizeof(*mcbsp->st_data), GFP_KERNEL);
1136         if (!st_data) {
1137                 err = -ENOMEM;
1138                 goto err1;
1139         }
1141         st_data->io_base_st = ioremap(res->start, resource_size(res));
1142         if (!st_data->io_base_st) {
1143                 err = -ENOMEM;
1144                 goto err2;
1145         }
1147         err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1148         if (err)
1149                 goto err3;
1151         mcbsp->st_data = st_data;
1152         return 0;
1154 err3:
1155         iounmap(st_data->io_base_st);
1156 err2:
1157         kfree(st_data);
1158 err1:
1159         return err;
1163 static void __devexit omap_st_remove(struct omap_mcbsp *mcbsp)
1165         struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1167         sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1168         iounmap(st_data->io_base_st);
1169         kfree(st_data);
1172 /*
1173  * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1174  * 730 has only 2 McBSP, and both of them are MPU peripherals.
1175  */
1176 static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
1178         struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
1179         struct omap_mcbsp *mcbsp;
1180         int id = pdev->id - 1;
1181         struct resource *res;
1182         int ret = 0;
1184         if (!pdata) {
1185                 dev_err(&pdev->dev, "McBSP device initialized without"
1186                                 "platform data\n");
1187                 ret = -EINVAL;
1188                 goto exit;
1189         }
1191         dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
1193         if (id >= omap_mcbsp_count) {
1194                 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1195                 ret = -EINVAL;
1196                 goto exit;
1197         }
1199         mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1200         if (!mcbsp) {
1201                 ret = -ENOMEM;
1202                 goto exit;
1203         }
1205         spin_lock_init(&mcbsp->lock);
1206         mcbsp->id = id + 1;
1207         mcbsp->free = true;
1209         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
1210         if (!res) {
1211                 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1212                 if (!res) {
1213                         dev_err(&pdev->dev, "%s:mcbsp%d has invalid memory"
1214                                         "resource\n", __func__, pdev->id);
1215                         ret = -ENOMEM;
1216                         goto exit;
1217                 }
1218         }
1219         mcbsp->phys_base = res->start;
1220         mcbsp->reg_cache_size = resource_size(res);
1221         mcbsp->io_base = ioremap(res->start, resource_size(res));
1222         if (!mcbsp->io_base) {
1223                 ret = -ENOMEM;
1224                 goto err_ioremap;
1225         }
1227         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dma");
1228         if (!res)
1229                 mcbsp->phys_dma_base = mcbsp->phys_base;
1230         else
1231                 mcbsp->phys_dma_base = res->start;
1233         mcbsp->tx_irq = platform_get_irq_byname(pdev, "tx");
1234         mcbsp->rx_irq = platform_get_irq_byname(pdev, "rx");
1236         /* From OMAP4 there will be a single irq line */
1237         if (mcbsp->tx_irq == -ENXIO)
1238                 mcbsp->tx_irq = platform_get_irq(pdev, 0);
1240         res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1241         if (!res) {
1242                 dev_err(&pdev->dev, "%s:mcbsp%d has invalid rx DMA channel\n",
1243                                         __func__, pdev->id);
1244                 ret = -ENODEV;
1245                 goto err_res;
1246         }
1247         mcbsp->dma_rx_sync = res->start;
1249         res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1250         if (!res) {
1251                 dev_err(&pdev->dev, "%s:mcbsp%d has invalid tx DMA channel\n",
1252                                         __func__, pdev->id);
1253                 ret = -ENODEV;
1254                 goto err_res;
1255         }
1256         mcbsp->dma_tx_sync = res->start;
1258         mcbsp->fclk = clk_get(&pdev->dev, "fck");
1259         if (IS_ERR(mcbsp->fclk)) {
1260                 ret = PTR_ERR(mcbsp->fclk);
1261                 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
1262                 goto err_res;
1263         }
1265         mcbsp->pdata = pdata;
1266         mcbsp->dev = &pdev->dev;
1267         mcbsp_ptr[id] = mcbsp;
1268         platform_set_drvdata(pdev, mcbsp);
1269         pm_runtime_enable(mcbsp->dev);
1271         mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
1272         if (mcbsp->pdata->buffer_size) {
1273                 /*
1274                  * Initially configure the maximum thresholds to a safe value.
1275                  * The McBSP FIFO usage with these values should not go under
1276                  * 16 locations.
1277                  * If the whole FIFO without safety buffer is used, than there
1278                  * is a possibility that the DMA will be not able to push the
1279                  * new data on time, causing channel shifts in runtime.
1280                  */
1281                 mcbsp->max_tx_thres = max_thres(mcbsp) - 0x10;
1282                 mcbsp->max_rx_thres = max_thres(mcbsp) - 0x10;
1284                 ret = sysfs_create_group(&mcbsp->dev->kobj,
1285                                          &additional_attr_group);
1286                 if (ret) {
1287                         dev_err(mcbsp->dev,
1288                                 "Unable to create additional controls\n");
1289                         goto err_thres;
1290                 }
1291         } else {
1292                 mcbsp->max_tx_thres = -EINVAL;
1293                 mcbsp->max_rx_thres = -EINVAL;
1294         }
1296         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "sidetone");
1297         if (res) {
1298                 ret = omap_st_add(mcbsp, res);
1299                 if (ret) {
1300                         dev_err(mcbsp->dev,
1301                                 "Unable to create sidetone controls\n");
1302                         goto err_st;
1303                 }
1304         }
1306         return 0;
1308 err_st:
1309         if (mcbsp->pdata->buffer_size)
1310                 sysfs_remove_group(&mcbsp->dev->kobj,
1311                                    &additional_attr_group);
1312 err_thres:
1313         clk_put(mcbsp->fclk);
1314 err_res:
1315         iounmap(mcbsp->io_base);
1316 err_ioremap:
1317         kfree(mcbsp);
1318 exit:
1319         return ret;
1322 static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
1324         struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1326         platform_set_drvdata(pdev, NULL);
1327         if (mcbsp) {
1329                 if (mcbsp->pdata && mcbsp->pdata->ops &&
1330                                 mcbsp->pdata->ops->free)
1331                         mcbsp->pdata->ops->free(mcbsp->id);
1333                 if (mcbsp->pdata->buffer_size)
1334                         sysfs_remove_group(&mcbsp->dev->kobj,
1335                                            &additional_attr_group);
1337                 if (mcbsp->st_data)
1338                         omap_st_remove(mcbsp);
1340                 clk_put(mcbsp->fclk);
1342                 iounmap(mcbsp->io_base);
1343                 kfree(mcbsp);
1344         }
1346         return 0;
1349 static struct platform_driver omap_mcbsp_driver = {
1350         .probe          = omap_mcbsp_probe,
1351         .remove         = __devexit_p(omap_mcbsp_remove),
1352         .driver         = {
1353                 .name   = "omap-mcbsp",
1354         },
1355 };
1357 int __init omap_mcbsp_init(void)
1359         /* Register the McBSP driver */
1360         return platform_driver_register(&omap_mcbsp_driver);