2 * linux/arch/arm/plat-omap/mcbsp.c
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
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.
12 * Multichannel mode not supported.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/device.h>
18 #include <linux/platform_device.h>
19 #include <linux/wait.h>
20 #include <linux/completion.h>
21 #include <linux/interrupt.h>
22 #include <linux/err.h>
23 #include <linux/clk.h>
24 #include <linux/delay.h>
26 #include <linux/slab.h>
29 #include <plat/mcbsp.h>
31 #include "../mach-omap2/cm-regbits-34xx.h"
33 struct omap_mcbsp **mcbsp_ptr;
34 int omap_mcbsp_count, omap_mcbsp_cache_size;
36 void omap_mcbsp_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
38 if (cpu_class_is_omap1()) {
39 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u16)] = (u16)val;
40 __raw_writew((u16)val, mcbsp->io_base + reg);
41 } else if (cpu_is_omap2420()) {
42 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u32)] = (u16)val;
43 __raw_writew((u16)val, mcbsp->io_base + reg);
45 ((u32 *)mcbsp->reg_cache)[reg / sizeof(u32)] = val;
46 __raw_writel(val, mcbsp->io_base + reg);
50 int omap_mcbsp_read(struct omap_mcbsp *mcbsp, u16 reg, bool from_cache)
52 if (cpu_class_is_omap1()) {
53 return !from_cache ? __raw_readw(mcbsp->io_base + reg) :
54 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u16)];
55 } else if (cpu_is_omap2420()) {
56 return !from_cache ? __raw_readw(mcbsp->io_base + reg) :
57 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u32)];
59 return !from_cache ? __raw_readl(mcbsp->io_base + reg) :
60 ((u32 *)mcbsp->reg_cache)[reg / sizeof(u32)];
64 #ifdef CONFIG_ARCH_OMAP3
65 void omap_mcbsp_st_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
67 __raw_writel(val, mcbsp->st_data->io_base_st + reg);
70 int omap_mcbsp_st_read(struct omap_mcbsp *mcbsp, u16 reg)
72 return __raw_readl(mcbsp->st_data->io_base_st + reg);
76 #define MCBSP_READ(mcbsp, reg) \
77 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
78 #define MCBSP_WRITE(mcbsp, reg, val) \
79 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
80 #define MCBSP_READ_CACHE(mcbsp, reg) \
81 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
83 #define omap_mcbsp_check_valid_id(id) (id < omap_mcbsp_count)
84 #define id_to_mcbsp_ptr(id) mcbsp_ptr[id];
86 #define MCBSP_ST_READ(mcbsp, reg) \
87 omap_mcbsp_st_read(mcbsp, OMAP_ST_REG_##reg)
88 #define MCBSP_ST_WRITE(mcbsp, reg, val) \
89 omap_mcbsp_st_write(mcbsp, OMAP_ST_REG_##reg, val)
91 static void omap_mcbsp_dump_reg(u8 id)
93 struct omap_mcbsp *mcbsp = id_to_mcbsp_ptr(id);
95 dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
96 dev_dbg(mcbsp->dev, "DRR2: 0x%04x\n",
97 MCBSP_READ(mcbsp, DRR2));
98 dev_dbg(mcbsp->dev, "DRR1: 0x%04x\n",
99 MCBSP_READ(mcbsp, DRR1));
100 dev_dbg(mcbsp->dev, "DXR2: 0x%04x\n",
101 MCBSP_READ(mcbsp, DXR2));
102 dev_dbg(mcbsp->dev, "DXR1: 0x%04x\n",
103 MCBSP_READ(mcbsp, DXR1));
104 dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
105 MCBSP_READ(mcbsp, SPCR2));
106 dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
107 MCBSP_READ(mcbsp, SPCR1));
108 dev_dbg(mcbsp->dev, "RCR2: 0x%04x\n",
109 MCBSP_READ(mcbsp, RCR2));
110 dev_dbg(mcbsp->dev, "RCR1: 0x%04x\n",
111 MCBSP_READ(mcbsp, RCR1));
112 dev_dbg(mcbsp->dev, "XCR2: 0x%04x\n",
113 MCBSP_READ(mcbsp, XCR2));
114 dev_dbg(mcbsp->dev, "XCR1: 0x%04x\n",
115 MCBSP_READ(mcbsp, XCR1));
116 dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
117 MCBSP_READ(mcbsp, SRGR2));
118 dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
119 MCBSP_READ(mcbsp, SRGR1));
120 dev_dbg(mcbsp->dev, "PCR0: 0x%04x\n",
121 MCBSP_READ(mcbsp, PCR0));
122 dev_dbg(mcbsp->dev, "***********************\n");
125 static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
127 struct omap_mcbsp *mcbsp_tx = dev_id;
130 irqst_spcr2 = MCBSP_READ(mcbsp_tx, SPCR2);
131 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
133 if (irqst_spcr2 & XSYNC_ERR) {
134 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
136 /* Writing zero to XSYNC_ERR clears the IRQ */
137 MCBSP_WRITE(mcbsp_tx, SPCR2, MCBSP_READ_CACHE(mcbsp_tx, SPCR2));
139 complete(&mcbsp_tx->tx_irq_completion);
145 static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
147 struct omap_mcbsp *mcbsp_rx = dev_id;
150 irqst_spcr1 = MCBSP_READ(mcbsp_rx, SPCR1);
151 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
153 if (irqst_spcr1 & RSYNC_ERR) {
154 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
156 /* Writing zero to RSYNC_ERR clears the IRQ */
157 MCBSP_WRITE(mcbsp_rx, SPCR1, MCBSP_READ_CACHE(mcbsp_rx, SPCR1));
159 complete(&mcbsp_rx->rx_irq_completion);
165 static void omap_mcbsp_tx_dma_callback(int lch, u16 ch_status, void *data)
167 struct omap_mcbsp *mcbsp_dma_tx = data;
169 dev_dbg(mcbsp_dma_tx->dev, "TX DMA callback : 0x%x\n",
170 MCBSP_READ(mcbsp_dma_tx, SPCR2));
172 /* We can free the channels */
173 omap_free_dma(mcbsp_dma_tx->dma_tx_lch);
174 mcbsp_dma_tx->dma_tx_lch = -1;
176 complete(&mcbsp_dma_tx->tx_dma_completion);
179 static void omap_mcbsp_rx_dma_callback(int lch, u16 ch_status, void *data)
181 struct omap_mcbsp *mcbsp_dma_rx = data;
183 dev_dbg(mcbsp_dma_rx->dev, "RX DMA callback : 0x%x\n",
184 MCBSP_READ(mcbsp_dma_rx, SPCR2));
186 /* We can free the channels */
187 omap_free_dma(mcbsp_dma_rx->dma_rx_lch);
188 mcbsp_dma_rx->dma_rx_lch = -1;
190 complete(&mcbsp_dma_rx->rx_dma_completion);
194 * omap_mcbsp_config simply write a config to the
196 * You either call this function or set the McBSP registers
197 * by yourself before calling omap_mcbsp_start().
199 void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config)
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);
207 mcbsp = id_to_mcbsp_ptr(id);
209 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
210 mcbsp->id, mcbsp->phys_base);
212 /* We write the given config */
213 MCBSP_WRITE(mcbsp, SPCR2, config->spcr2);
214 MCBSP_WRITE(mcbsp, SPCR1, config->spcr1);
215 MCBSP_WRITE(mcbsp, RCR2, config->rcr2);
216 MCBSP_WRITE(mcbsp, RCR1, config->rcr1);
217 MCBSP_WRITE(mcbsp, XCR2, config->xcr2);
218 MCBSP_WRITE(mcbsp, XCR1, config->xcr1);
219 MCBSP_WRITE(mcbsp, SRGR2, config->srgr2);
220 MCBSP_WRITE(mcbsp, SRGR1, config->srgr1);
221 MCBSP_WRITE(mcbsp, MCR2, config->mcr2);
222 MCBSP_WRITE(mcbsp, MCR1, config->mcr1);
223 MCBSP_WRITE(mcbsp, PCR0, config->pcr0);
224 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
225 MCBSP_WRITE(mcbsp, XCCR, config->xccr);
226 MCBSP_WRITE(mcbsp, RCCR, config->rccr);
229 EXPORT_SYMBOL(omap_mcbsp_config);
231 #ifdef CONFIG_ARCH_OMAP3
232 static void omap_st_on(struct omap_mcbsp *mcbsp)
237 * Sidetone uses McBSP ICLK - which must not idle when sidetones
238 * are enabled or sidetones start sounding ugly.
240 w = cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE);
241 w &= ~(1 << (mcbsp->id - 2));
242 cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE);
244 /* Enable McBSP Sidetone */
245 w = MCBSP_READ(mcbsp, SSELCR);
246 MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN);
248 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
249 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w & ~(ST_AUTOIDLE));
251 /* Enable Sidetone from Sidetone Core */
252 w = MCBSP_ST_READ(mcbsp, SSELCR);
253 MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN);
256 static void omap_st_off(struct omap_mcbsp *mcbsp)
260 w = MCBSP_ST_READ(mcbsp, SSELCR);
261 MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN));
263 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
264 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w | ST_AUTOIDLE);
266 w = MCBSP_READ(mcbsp, SSELCR);
267 MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN));
269 w = cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE);
270 w |= 1 << (mcbsp->id - 2);
271 cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE);
274 static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir)
278 val = MCBSP_ST_READ(mcbsp, SYSCONFIG);
279 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, val & ~(ST_AUTOIDLE));
281 val = MCBSP_ST_READ(mcbsp, SSELCR);
283 if (val & ST_COEFFWREN)
284 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
286 MCBSP_ST_WRITE(mcbsp, SSELCR, val | ST_COEFFWREN);
288 for (i = 0; i < 128; i++)
289 MCBSP_ST_WRITE(mcbsp, SFIRCR, fir[i]);
293 val = MCBSP_ST_READ(mcbsp, SSELCR);
294 while (!(val & ST_COEFFWRDONE) && (++i < 1000))
295 val = MCBSP_ST_READ(mcbsp, SSELCR);
297 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
300 dev_err(mcbsp->dev, "McBSP FIR load error!\n");
303 static void omap_st_chgain(struct omap_mcbsp *mcbsp)
306 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
308 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
309 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w & ~(ST_AUTOIDLE));
311 w = MCBSP_ST_READ(mcbsp, SSELCR);
313 MCBSP_ST_WRITE(mcbsp, SGAINCR, ST_CH0GAIN(st_data->ch0gain) | \
314 ST_CH1GAIN(st_data->ch1gain));
317 int omap_st_set_chgain(unsigned int id, int channel, s16 chgain)
319 struct omap_mcbsp *mcbsp;
320 struct omap_mcbsp_st_data *st_data;
323 if (!omap_mcbsp_check_valid_id(id)) {
324 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
328 mcbsp = id_to_mcbsp_ptr(id);
329 st_data = mcbsp->st_data;
334 spin_lock_irq(&mcbsp->lock);
336 st_data->ch0gain = chgain;
337 else if (channel == 1)
338 st_data->ch1gain = chgain;
342 if (st_data->enabled)
343 omap_st_chgain(mcbsp);
344 spin_unlock_irq(&mcbsp->lock);
348 EXPORT_SYMBOL(omap_st_set_chgain);
350 int omap_st_get_chgain(unsigned int id, int channel, s16 *chgain)
352 struct omap_mcbsp *mcbsp;
353 struct omap_mcbsp_st_data *st_data;
356 if (!omap_mcbsp_check_valid_id(id)) {
357 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
361 mcbsp = id_to_mcbsp_ptr(id);
362 st_data = mcbsp->st_data;
367 spin_lock_irq(&mcbsp->lock);
369 *chgain = st_data->ch0gain;
370 else if (channel == 1)
371 *chgain = st_data->ch1gain;
374 spin_unlock_irq(&mcbsp->lock);
378 EXPORT_SYMBOL(omap_st_get_chgain);
380 static int omap_st_start(struct omap_mcbsp *mcbsp)
382 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
384 if (st_data && st_data->enabled && !st_data->running) {
385 omap_st_fir_write(mcbsp, st_data->taps);
386 omap_st_chgain(mcbsp);
390 st_data->running = 1;
397 int omap_st_enable(unsigned int id)
399 struct omap_mcbsp *mcbsp;
400 struct omap_mcbsp_st_data *st_data;
402 if (!omap_mcbsp_check_valid_id(id)) {
403 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
407 mcbsp = id_to_mcbsp_ptr(id);
408 st_data = mcbsp->st_data;
413 spin_lock_irq(&mcbsp->lock);
414 st_data->enabled = 1;
415 omap_st_start(mcbsp);
416 spin_unlock_irq(&mcbsp->lock);
420 EXPORT_SYMBOL(omap_st_enable);
422 static int omap_st_stop(struct omap_mcbsp *mcbsp)
424 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
426 if (st_data && st_data->running) {
429 st_data->running = 0;
436 int omap_st_disable(unsigned int id)
438 struct omap_mcbsp *mcbsp;
439 struct omap_mcbsp_st_data *st_data;
442 if (!omap_mcbsp_check_valid_id(id)) {
443 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
447 mcbsp = id_to_mcbsp_ptr(id);
448 st_data = mcbsp->st_data;
453 spin_lock_irq(&mcbsp->lock);
455 st_data->enabled = 0;
456 spin_unlock_irq(&mcbsp->lock);
460 EXPORT_SYMBOL(omap_st_disable);
462 int omap_st_is_enabled(unsigned int id)
464 struct omap_mcbsp *mcbsp;
465 struct omap_mcbsp_st_data *st_data;
467 if (!omap_mcbsp_check_valid_id(id)) {
468 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
472 mcbsp = id_to_mcbsp_ptr(id);
473 st_data = mcbsp->st_data;
479 return st_data->enabled;
481 EXPORT_SYMBOL(omap_st_is_enabled);
484 * omap_mcbsp_set_rx_threshold configures the transmit threshold in words.
485 * The threshold parameter is 1 based, and it is converted (threshold - 1)
486 * for the THRSH2 register.
488 void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold)
490 struct omap_mcbsp *mcbsp;
492 if (!cpu_is_omap34xx() && !cpu_is_omap44xx())
495 if (!omap_mcbsp_check_valid_id(id)) {
496 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
499 mcbsp = id_to_mcbsp_ptr(id);
501 if (threshold && threshold <= mcbsp->max_tx_thres)
502 MCBSP_WRITE(mcbsp, THRSH2, threshold - 1);
504 EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold);
507 * omap_mcbsp_set_rx_threshold configures the receive threshold in words.
508 * The threshold parameter is 1 based, and it is converted (threshold - 1)
509 * for the THRSH1 register.
511 void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
513 struct omap_mcbsp *mcbsp;
515 if (!cpu_is_omap34xx() && !cpu_is_omap44xx())
518 if (!omap_mcbsp_check_valid_id(id)) {
519 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
522 mcbsp = id_to_mcbsp_ptr(id);
524 if (threshold && threshold <= mcbsp->max_rx_thres)
525 MCBSP_WRITE(mcbsp, THRSH1, threshold - 1);
527 EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold);
530 * omap_mcbsp_get_max_tx_thres just return the current configured
531 * maximum threshold for transmission
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);
541 mcbsp = id_to_mcbsp_ptr(id);
543 return mcbsp->max_tx_thres;
545 EXPORT_SYMBOL(omap_mcbsp_get_max_tx_threshold);
548 * omap_mcbsp_get_max_rx_thres just return the current configured
549 * maximum threshold for reception
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);
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);
573 mcbsp = id_to_mcbsp_ptr(id);
575 return mcbsp->pdata->buffer_size;
577 EXPORT_SYMBOL(omap_mcbsp_get_fifo_size);
580 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
582 u16 omap_mcbsp_get_tx_delay(unsigned int id)
584 struct omap_mcbsp *mcbsp;
587 if (!omap_mcbsp_check_valid_id(id)) {
588 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
591 mcbsp = id_to_mcbsp_ptr(id);
593 /* Returns the number of free locations in the buffer */
594 buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
596 /* Number of slots are different in McBSP ports */
597 return mcbsp->pdata->buffer_size - buffstat;
599 EXPORT_SYMBOL(omap_mcbsp_get_tx_delay);
602 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
603 * to reach the threshold value (when the DMA will be triggered to read it)
605 u16 omap_mcbsp_get_rx_delay(unsigned int id)
607 struct omap_mcbsp *mcbsp;
608 u16 buffstat, threshold;
610 if (!omap_mcbsp_check_valid_id(id)) {
611 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
614 mcbsp = id_to_mcbsp_ptr(id);
616 /* Returns the number of used locations in the buffer */
617 buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
619 threshold = MCBSP_READ(mcbsp, THRSH1);
621 /* Return the number of location till we reach the threshold limit */
622 if (threshold <= buffstat)
625 return threshold - buffstat;
627 EXPORT_SYMBOL(omap_mcbsp_get_rx_delay);
630 * omap_mcbsp_get_dma_op_mode just return the current configured
631 * operating mode for the mcbsp channel
633 int omap_mcbsp_get_dma_op_mode(unsigned int id)
635 struct omap_mcbsp *mcbsp;
638 if (!omap_mcbsp_check_valid_id(id)) {
639 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
642 mcbsp = id_to_mcbsp_ptr(id);
644 dma_op_mode = mcbsp->dma_op_mode;
648 EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
650 static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp)
653 * Enable wakup behavior, smart idle and all wakeups
654 * REVISIT: some wakeups may be unnecessary
656 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
659 syscon = MCBSP_READ(mcbsp, SYSCON);
660 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
662 if (mcbsp->dma_op_mode == MCBSP_DMA_MODE_THRESHOLD) {
663 syscon |= (ENAWAKEUP | SIDLEMODE(0x02) |
664 CLOCKACTIVITY(0x02));
665 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
667 syscon |= SIDLEMODE(0x01);
670 MCBSP_WRITE(mcbsp, SYSCON, syscon);
674 static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp)
677 * Disable wakup behavior, smart idle and all wakeups
679 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
682 syscon = MCBSP_READ(mcbsp, SYSCON);
683 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
685 * HW bug workaround - If no_idle mode is taken, we need to
686 * go to smart_idle before going to always_idle, or the
687 * device will not hit retention anymore.
689 syscon |= SIDLEMODE(0x02);
690 MCBSP_WRITE(mcbsp, SYSCON, syscon);
692 syscon &= ~(SIDLEMODE(0x03));
693 MCBSP_WRITE(mcbsp, SYSCON, syscon);
695 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
699 static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp) {}
700 static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp) {}
701 static inline void omap_st_start(struct omap_mcbsp *mcbsp) {}
702 static inline void omap_st_stop(struct omap_mcbsp *mcbsp) {}
706 * We can choose between IRQ based or polled IO.
707 * This needs to be called before omap_mcbsp_request().
709 int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type)
711 struct omap_mcbsp *mcbsp;
713 if (!omap_mcbsp_check_valid_id(id)) {
714 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
717 mcbsp = id_to_mcbsp_ptr(id);
719 spin_lock(&mcbsp->lock);
722 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
724 spin_unlock(&mcbsp->lock);
728 mcbsp->io_type = io_type;
730 spin_unlock(&mcbsp->lock);
734 EXPORT_SYMBOL(omap_mcbsp_set_io_type);
736 int omap_mcbsp_request(unsigned int id)
738 struct omap_mcbsp *mcbsp;
742 if (!omap_mcbsp_check_valid_id(id)) {
743 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
746 mcbsp = id_to_mcbsp_ptr(id);
748 reg_cache = kzalloc(omap_mcbsp_cache_size, GFP_KERNEL);
753 spin_lock(&mcbsp->lock);
755 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
762 mcbsp->reg_cache = reg_cache;
763 spin_unlock(&mcbsp->lock);
765 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
766 mcbsp->pdata->ops->request(id);
768 clk_enable(mcbsp->iclk);
769 clk_enable(mcbsp->fclk);
771 /* Do procedure specific to omap34xx arch, if applicable */
772 omap34xx_mcbsp_request(mcbsp);
775 * Make sure that transmitter, receiver and sample-rate generator are
776 * not running before activating IRQs.
778 MCBSP_WRITE(mcbsp, SPCR1, 0);
779 MCBSP_WRITE(mcbsp, SPCR2, 0);
781 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
782 /* We need to get IRQs here */
783 init_completion(&mcbsp->tx_irq_completion);
784 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
785 0, "McBSP", (void *)mcbsp);
787 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
788 "for McBSP%d\n", mcbsp->tx_irq,
790 goto err_clk_disable;
794 init_completion(&mcbsp->rx_irq_completion);
795 err = request_irq(mcbsp->rx_irq,
796 omap_mcbsp_rx_irq_handler,
797 0, "McBSP", (void *)mcbsp);
799 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
800 "for McBSP%d\n", mcbsp->rx_irq,
809 free_irq(mcbsp->tx_irq, (void *)mcbsp);
811 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
812 mcbsp->pdata->ops->free(id);
814 /* Do procedure specific to omap34xx arch, if applicable */
815 omap34xx_mcbsp_free(mcbsp);
817 clk_disable(mcbsp->fclk);
818 clk_disable(mcbsp->iclk);
820 spin_lock(&mcbsp->lock);
822 mcbsp->reg_cache = NULL;
824 spin_unlock(&mcbsp->lock);
829 EXPORT_SYMBOL(omap_mcbsp_request);
831 void omap_mcbsp_free(unsigned int id)
833 struct omap_mcbsp *mcbsp;
836 if (!omap_mcbsp_check_valid_id(id)) {
837 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
840 mcbsp = id_to_mcbsp_ptr(id);
842 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
843 mcbsp->pdata->ops->free(id);
845 /* Do procedure specific to omap34xx arch, if applicable */
846 omap34xx_mcbsp_free(mcbsp);
848 clk_disable(mcbsp->fclk);
849 clk_disable(mcbsp->iclk);
851 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
854 free_irq(mcbsp->rx_irq, (void *)mcbsp);
855 free_irq(mcbsp->tx_irq, (void *)mcbsp);
858 reg_cache = mcbsp->reg_cache;
860 spin_lock(&mcbsp->lock);
862 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
865 mcbsp->reg_cache = NULL;
866 spin_unlock(&mcbsp->lock);
871 EXPORT_SYMBOL(omap_mcbsp_free);
874 * Here we start the McBSP, by enabling transmitter, receiver or both.
875 * If no transmitter or receiver is active prior calling, then sample-rate
876 * generator and frame sync are started.
878 void omap_mcbsp_start(unsigned int id, int tx, int rx)
880 struct omap_mcbsp *mcbsp;
884 if (!omap_mcbsp_check_valid_id(id)) {
885 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
888 mcbsp = id_to_mcbsp_ptr(id);
890 if (cpu_is_omap34xx())
891 omap_st_start(mcbsp);
893 mcbsp->rx_word_length = (MCBSP_READ_CACHE(mcbsp, RCR1) >> 5) & 0x7;
894 mcbsp->tx_word_length = (MCBSP_READ_CACHE(mcbsp, XCR1) >> 5) & 0x7;
896 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
897 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
900 /* Start the sample generator */
901 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
902 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
905 /* Enable transmitter and receiver */
907 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
908 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
911 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
912 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
915 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
916 * REVISIT: 100us may give enough time for two CLKSRG, however
917 * due to some unknown PM related, clock gating etc. reason it
923 /* Start frame sync */
924 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
925 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
928 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
929 /* Release the transmitter and receiver */
930 w = MCBSP_READ_CACHE(mcbsp, XCCR);
931 w &= ~(tx ? XDISABLE : 0);
932 MCBSP_WRITE(mcbsp, XCCR, w);
933 w = MCBSP_READ_CACHE(mcbsp, RCCR);
934 w &= ~(rx ? RDISABLE : 0);
935 MCBSP_WRITE(mcbsp, RCCR, w);
938 /* Dump McBSP Regs */
939 omap_mcbsp_dump_reg(id);
941 EXPORT_SYMBOL(omap_mcbsp_start);
943 void omap_mcbsp_stop(unsigned int id, int tx, int rx)
945 struct omap_mcbsp *mcbsp;
949 if (!omap_mcbsp_check_valid_id(id)) {
950 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
954 mcbsp = id_to_mcbsp_ptr(id);
956 /* Reset transmitter */
958 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
959 w = MCBSP_READ_CACHE(mcbsp, XCCR);
960 w |= (tx ? XDISABLE : 0);
961 MCBSP_WRITE(mcbsp, XCCR, w);
963 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
964 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
968 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
969 w = MCBSP_READ_CACHE(mcbsp, RCCR);
970 w |= (rx ? RDISABLE : 0);
971 MCBSP_WRITE(mcbsp, RCCR, w);
973 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
974 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
976 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
977 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
980 /* Reset the sample rate generator */
981 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
982 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
985 if (cpu_is_omap34xx())
988 EXPORT_SYMBOL(omap_mcbsp_stop);
990 /* polled mcbsp i/o operations */
991 int omap_mcbsp_pollwrite(unsigned int id, u16 buf)
993 struct omap_mcbsp *mcbsp;
995 if (!omap_mcbsp_check_valid_id(id)) {
996 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1000 mcbsp = id_to_mcbsp_ptr(id);
1002 MCBSP_WRITE(mcbsp, DXR1, buf);
1003 /* if frame sync error - clear the error */
1004 if (MCBSP_READ(mcbsp, SPCR2) & XSYNC_ERR) {
1006 MCBSP_WRITE(mcbsp, SPCR2, MCBSP_READ_CACHE(mcbsp, SPCR2));
1010 /* wait for transmit confirmation */
1012 while (!(MCBSP_READ(mcbsp, SPCR2) & XRDY)) {
1013 if (attemps++ > 1000) {
1014 MCBSP_WRITE(mcbsp, SPCR2,
1015 MCBSP_READ_CACHE(mcbsp, SPCR2) &
1018 MCBSP_WRITE(mcbsp, SPCR2,
1019 MCBSP_READ_CACHE(mcbsp, SPCR2) |
1022 dev_err(mcbsp->dev, "Could not write to"
1023 " McBSP%d Register\n", mcbsp->id);
1031 EXPORT_SYMBOL(omap_mcbsp_pollwrite);
1033 int omap_mcbsp_pollread(unsigned int id, u16 *buf)
1035 struct omap_mcbsp *mcbsp;
1037 if (!omap_mcbsp_check_valid_id(id)) {
1038 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1041 mcbsp = id_to_mcbsp_ptr(id);
1043 /* if frame sync error - clear the error */
1044 if (MCBSP_READ(mcbsp, SPCR1) & RSYNC_ERR) {
1046 MCBSP_WRITE(mcbsp, SPCR1, MCBSP_READ_CACHE(mcbsp, SPCR1));
1050 /* wait for recieve confirmation */
1052 while (!(MCBSP_READ(mcbsp, SPCR1) & RRDY)) {
1053 if (attemps++ > 1000) {
1054 MCBSP_WRITE(mcbsp, SPCR1,
1055 MCBSP_READ_CACHE(mcbsp, SPCR1) &
1058 MCBSP_WRITE(mcbsp, SPCR1,
1059 MCBSP_READ_CACHE(mcbsp, SPCR1) |
1062 dev_err(mcbsp->dev, "Could not read from"
1063 " McBSP%d Register\n", mcbsp->id);
1068 *buf = MCBSP_READ(mcbsp, DRR1);
1072 EXPORT_SYMBOL(omap_mcbsp_pollread);
1075 * IRQ based word transmission.
1077 void omap_mcbsp_xmit_word(unsigned int id, u32 word)
1079 struct omap_mcbsp *mcbsp;
1080 omap_mcbsp_word_length word_length;
1082 if (!omap_mcbsp_check_valid_id(id)) {
1083 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1087 mcbsp = id_to_mcbsp_ptr(id);
1088 word_length = mcbsp->tx_word_length;
1090 wait_for_completion(&mcbsp->tx_irq_completion);
1092 if (word_length > OMAP_MCBSP_WORD_16)
1093 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1094 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
1096 EXPORT_SYMBOL(omap_mcbsp_xmit_word);
1098 u32 omap_mcbsp_recv_word(unsigned int id)
1100 struct omap_mcbsp *mcbsp;
1101 u16 word_lsb, word_msb = 0;
1102 omap_mcbsp_word_length word_length;
1104 if (!omap_mcbsp_check_valid_id(id)) {
1105 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1108 mcbsp = id_to_mcbsp_ptr(id);
1110 word_length = mcbsp->rx_word_length;
1112 wait_for_completion(&mcbsp->rx_irq_completion);
1114 if (word_length > OMAP_MCBSP_WORD_16)
1115 word_msb = MCBSP_READ(mcbsp, DRR2);
1116 word_lsb = MCBSP_READ(mcbsp, DRR1);
1118 return (word_lsb | (word_msb << 16));
1120 EXPORT_SYMBOL(omap_mcbsp_recv_word);
1122 int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word)
1124 struct omap_mcbsp *mcbsp;
1125 omap_mcbsp_word_length tx_word_length;
1126 omap_mcbsp_word_length rx_word_length;
1127 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1129 if (!omap_mcbsp_check_valid_id(id)) {
1130 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1133 mcbsp = id_to_mcbsp_ptr(id);
1134 tx_word_length = mcbsp->tx_word_length;
1135 rx_word_length = mcbsp->rx_word_length;
1137 if (tx_word_length != rx_word_length)
1140 /* First we wait for the transmitter to be ready */
1141 spcr2 = MCBSP_READ(mcbsp, SPCR2);
1142 while (!(spcr2 & XRDY)) {
1143 spcr2 = MCBSP_READ(mcbsp, SPCR2);
1144 if (attempts++ > 1000) {
1145 /* We must reset the transmitter */
1146 MCBSP_WRITE(mcbsp, SPCR2,
1147 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
1149 MCBSP_WRITE(mcbsp, SPCR2,
1150 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
1152 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1153 "ready\n", mcbsp->id);
1158 /* Now we can push the data */
1159 if (tx_word_length > OMAP_MCBSP_WORD_16)
1160 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1161 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
1163 /* We wait for the receiver to be ready */
1164 spcr1 = MCBSP_READ(mcbsp, SPCR1);
1165 while (!(spcr1 & RRDY)) {
1166 spcr1 = MCBSP_READ(mcbsp, SPCR1);
1167 if (attempts++ > 1000) {
1168 /* We must reset the receiver */
1169 MCBSP_WRITE(mcbsp, SPCR1,
1170 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
1172 MCBSP_WRITE(mcbsp, SPCR1,
1173 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
1175 dev_err(mcbsp->dev, "McBSP%d receiver not "
1176 "ready\n", mcbsp->id);
1181 /* Receiver is ready, let's read the dummy data */
1182 if (rx_word_length > OMAP_MCBSP_WORD_16)
1183 word_msb = MCBSP_READ(mcbsp, DRR2);
1184 word_lsb = MCBSP_READ(mcbsp, DRR1);
1188 EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll);
1190 int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 *word)
1192 struct omap_mcbsp *mcbsp;
1194 omap_mcbsp_word_length tx_word_length;
1195 omap_mcbsp_word_length rx_word_length;
1196 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1198 if (!omap_mcbsp_check_valid_id(id)) {
1199 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1203 mcbsp = id_to_mcbsp_ptr(id);
1205 tx_word_length = mcbsp->tx_word_length;
1206 rx_word_length = mcbsp->rx_word_length;
1208 if (tx_word_length != rx_word_length)
1211 /* First we wait for the transmitter to be ready */
1212 spcr2 = MCBSP_READ(mcbsp, SPCR2);
1213 while (!(spcr2 & XRDY)) {
1214 spcr2 = MCBSP_READ(mcbsp, SPCR2);
1215 if (attempts++ > 1000) {
1216 /* We must reset the transmitter */
1217 MCBSP_WRITE(mcbsp, SPCR2,
1218 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
1220 MCBSP_WRITE(mcbsp, SPCR2,
1221 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
1223 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1224 "ready\n", mcbsp->id);
1229 /* We first need to enable the bus clock */
1230 if (tx_word_length > OMAP_MCBSP_WORD_16)
1231 MCBSP_WRITE(mcbsp, DXR2, clock_word >> 16);
1232 MCBSP_WRITE(mcbsp, DXR1, clock_word & 0xffff);
1234 /* We wait for the receiver to be ready */
1235 spcr1 = MCBSP_READ(mcbsp, SPCR1);
1236 while (!(spcr1 & RRDY)) {
1237 spcr1 = MCBSP_READ(mcbsp, SPCR1);
1238 if (attempts++ > 1000) {
1239 /* We must reset the receiver */
1240 MCBSP_WRITE(mcbsp, SPCR1,
1241 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
1243 MCBSP_WRITE(mcbsp, SPCR1,
1244 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
1246 dev_err(mcbsp->dev, "McBSP%d receiver not "
1247 "ready\n", mcbsp->id);
1252 /* Receiver is ready, there is something for us */
1253 if (rx_word_length > OMAP_MCBSP_WORD_16)
1254 word_msb = MCBSP_READ(mcbsp, DRR2);
1255 word_lsb = MCBSP_READ(mcbsp, DRR1);
1257 word[0] = (word_lsb | (word_msb << 16));
1261 EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll);
1264 * Simple DMA based buffer rx/tx routines.
1265 * Nothing fancy, just a single buffer tx/rx through DMA.
1266 * The DMA resources are released once the transfer is done.
1267 * For anything fancier, you should use your own customized DMA
1268 * routines and callbacks.
1270 int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer,
1271 unsigned int length)
1273 struct omap_mcbsp *mcbsp;
1279 if (!omap_mcbsp_check_valid_id(id)) {
1280 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1283 mcbsp = id_to_mcbsp_ptr(id);
1285 if (omap_request_dma(mcbsp->dma_tx_sync, "McBSP TX",
1286 omap_mcbsp_tx_dma_callback,
1289 dev_err(mcbsp->dev, " Unable to request DMA channel for "
1290 "McBSP%d TX. Trying IRQ based TX\n",
1294 mcbsp->dma_tx_lch = dma_tx_ch;
1296 dev_err(mcbsp->dev, "McBSP%d TX DMA on channel %d\n", mcbsp->id,
1299 init_completion(&mcbsp->tx_dma_completion);
1301 if (cpu_class_is_omap1()) {
1302 src_port = OMAP_DMA_PORT_TIPB;
1303 dest_port = OMAP_DMA_PORT_EMIFF;
1305 if (cpu_class_is_omap2())
1306 sync_dev = mcbsp->dma_tx_sync;
1308 omap_set_dma_transfer_params(mcbsp->dma_tx_lch,
1309 OMAP_DMA_DATA_TYPE_S16,
1311 OMAP_DMA_SYNC_ELEMENT,
1314 omap_set_dma_dest_params(mcbsp->dma_tx_lch,
1316 OMAP_DMA_AMODE_CONSTANT,
1317 mcbsp->phys_base + OMAP_MCBSP_REG_DXR1,
1320 omap_set_dma_src_params(mcbsp->dma_tx_lch,
1322 OMAP_DMA_AMODE_POST_INC,
1326 omap_start_dma(mcbsp->dma_tx_lch);
1327 wait_for_completion(&mcbsp->tx_dma_completion);
1331 EXPORT_SYMBOL(omap_mcbsp_xmit_buffer);
1333 int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer,
1334 unsigned int length)
1336 struct omap_mcbsp *mcbsp;
1342 if (!omap_mcbsp_check_valid_id(id)) {
1343 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1346 mcbsp = id_to_mcbsp_ptr(id);
1348 if (omap_request_dma(mcbsp->dma_rx_sync, "McBSP RX",
1349 omap_mcbsp_rx_dma_callback,
1352 dev_err(mcbsp->dev, "Unable to request DMA channel for "
1353 "McBSP%d RX. Trying IRQ based RX\n",
1357 mcbsp->dma_rx_lch = dma_rx_ch;
1359 dev_err(mcbsp->dev, "McBSP%d RX DMA on channel %d\n", mcbsp->id,
1362 init_completion(&mcbsp->rx_dma_completion);
1364 if (cpu_class_is_omap1()) {
1365 src_port = OMAP_DMA_PORT_TIPB;
1366 dest_port = OMAP_DMA_PORT_EMIFF;
1368 if (cpu_class_is_omap2())
1369 sync_dev = mcbsp->dma_rx_sync;
1371 omap_set_dma_transfer_params(mcbsp->dma_rx_lch,
1372 OMAP_DMA_DATA_TYPE_S16,
1374 OMAP_DMA_SYNC_ELEMENT,
1377 omap_set_dma_src_params(mcbsp->dma_rx_lch,
1379 OMAP_DMA_AMODE_CONSTANT,
1380 mcbsp->phys_base + OMAP_MCBSP_REG_DRR1,
1383 omap_set_dma_dest_params(mcbsp->dma_rx_lch,
1385 OMAP_DMA_AMODE_POST_INC,
1389 omap_start_dma(mcbsp->dma_rx_lch);
1390 wait_for_completion(&mcbsp->rx_dma_completion);
1394 EXPORT_SYMBOL(omap_mcbsp_recv_buffer);
1398 * Since SPI setup is much simpler than the generic McBSP one,
1399 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
1400 * Once this is done, you can call omap_mcbsp_start().
1402 void omap_mcbsp_set_spi_mode(unsigned int id,
1403 const struct omap_mcbsp_spi_cfg *spi_cfg)
1405 struct omap_mcbsp *mcbsp;
1406 struct omap_mcbsp_reg_cfg mcbsp_cfg;
1408 if (!omap_mcbsp_check_valid_id(id)) {
1409 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1412 mcbsp = id_to_mcbsp_ptr(id);
1414 memset(&mcbsp_cfg, 0, sizeof(struct omap_mcbsp_reg_cfg));
1416 /* SPI has only one frame */
1417 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0));
1418 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0));
1420 /* Clock stop mode */
1421 if (spi_cfg->clk_stp_mode == OMAP_MCBSP_CLK_STP_MODE_NO_DELAY)
1422 mcbsp_cfg.spcr1 |= (1 << 12);
1424 mcbsp_cfg.spcr1 |= (3 << 11);
1426 /* Set clock parities */
1427 if (spi_cfg->rx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1428 mcbsp_cfg.pcr0 |= CLKRP;
1430 mcbsp_cfg.pcr0 &= ~CLKRP;
1432 if (spi_cfg->tx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1433 mcbsp_cfg.pcr0 &= ~CLKXP;
1435 mcbsp_cfg.pcr0 |= CLKXP;
1437 /* Set SCLKME to 0 and CLKSM to 1 */
1438 mcbsp_cfg.pcr0 &= ~SCLKME;
1439 mcbsp_cfg.srgr2 |= CLKSM;
1442 if (spi_cfg->fsx_polarity == OMAP_MCBSP_FS_ACTIVE_HIGH)
1443 mcbsp_cfg.pcr0 &= ~FSXP;
1445 mcbsp_cfg.pcr0 |= FSXP;
1447 if (spi_cfg->spi_mode == OMAP_MCBSP_SPI_MASTER) {
1448 mcbsp_cfg.pcr0 |= CLKXM;
1449 mcbsp_cfg.srgr1 |= CLKGDV(spi_cfg->clk_div - 1);
1450 mcbsp_cfg.pcr0 |= FSXM;
1451 mcbsp_cfg.srgr2 &= ~FSGM;
1452 mcbsp_cfg.xcr2 |= XDATDLY(1);
1453 mcbsp_cfg.rcr2 |= RDATDLY(1);
1455 mcbsp_cfg.pcr0 &= ~CLKXM;
1456 mcbsp_cfg.srgr1 |= CLKGDV(1);
1457 mcbsp_cfg.pcr0 &= ~FSXM;
1458 mcbsp_cfg.xcr2 &= ~XDATDLY(3);
1459 mcbsp_cfg.rcr2 &= ~RDATDLY(3);
1462 mcbsp_cfg.xcr2 &= ~XPHASE;
1463 mcbsp_cfg.rcr2 &= ~RPHASE;
1465 omap_mcbsp_config(id, &mcbsp_cfg);
1467 EXPORT_SYMBOL(omap_mcbsp_set_spi_mode);
1469 #ifdef CONFIG_ARCH_OMAP3
1470 #define max_thres(m) (mcbsp->pdata->buffer_size)
1471 #define valid_threshold(m, val) ((val) <= max_thres(m))
1472 #define THRESHOLD_PROP_BUILDER(prop) \
1473 static ssize_t prop##_show(struct device *dev, \
1474 struct device_attribute *attr, char *buf) \
1476 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1478 return sprintf(buf, "%u\n", mcbsp->prop); \
1481 static ssize_t prop##_store(struct device *dev, \
1482 struct device_attribute *attr, \
1483 const char *buf, size_t size) \
1485 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1486 unsigned long val; \
1489 status = strict_strtoul(buf, 0, &val); \
1493 if (!valid_threshold(mcbsp, val)) \
1496 mcbsp->prop = val; \
1500 static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
1502 THRESHOLD_PROP_BUILDER(max_tx_thres);
1503 THRESHOLD_PROP_BUILDER(max_rx_thres);
1505 static const char *dma_op_modes[] = {
1506 "element", "threshold", "frame",
1509 static ssize_t dma_op_mode_show(struct device *dev,
1510 struct device_attribute *attr, char *buf)
1512 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1513 int dma_op_mode, i = 0;
1515 const char * const *s;
1517 dma_op_mode = mcbsp->dma_op_mode;
1519 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
1520 if (dma_op_mode == i)
1521 len += sprintf(buf + len, "[%s] ", *s);
1523 len += sprintf(buf + len, "%s ", *s);
1525 len += sprintf(buf + len, "\n");
1530 static ssize_t dma_op_mode_store(struct device *dev,
1531 struct device_attribute *attr,
1532 const char *buf, size_t size)
1534 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1535 const char * const *s;
1538 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
1539 if (sysfs_streq(buf, *s))
1542 if (i == ARRAY_SIZE(dma_op_modes))
1545 spin_lock_irq(&mcbsp->lock);
1550 mcbsp->dma_op_mode = i;
1553 spin_unlock_irq(&mcbsp->lock);
1558 static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1560 static ssize_t st_taps_show(struct device *dev,
1561 struct device_attribute *attr, char *buf)
1563 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1564 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1568 spin_lock_irq(&mcbsp->lock);
1569 for (i = 0; i < st_data->nr_taps; i++)
1570 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
1573 status += sprintf(&buf[status], "\n");
1574 spin_unlock_irq(&mcbsp->lock);
1579 static ssize_t st_taps_store(struct device *dev,
1580 struct device_attribute *attr,
1581 const char *buf, size_t size)
1583 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1584 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1585 int val, tmp, status, i = 0;
1587 spin_lock_irq(&mcbsp->lock);
1588 memset(st_data->taps, 0, sizeof(st_data->taps));
1589 st_data->nr_taps = 0;
1592 status = sscanf(buf, "%d%n", &val, &tmp);
1593 if (status < 0 || status == 0) {
1597 if (val < -32768 || val > 32767) {
1601 st_data->taps[i++] = val;
1608 st_data->nr_taps = i;
1611 spin_unlock_irq(&mcbsp->lock);
1616 static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
1618 static const struct attribute *additional_attrs[] = {
1619 &dev_attr_max_tx_thres.attr,
1620 &dev_attr_max_rx_thres.attr,
1621 &dev_attr_dma_op_mode.attr,
1625 static const struct attribute_group additional_attr_group = {
1626 .attrs = (struct attribute **)additional_attrs,
1629 static inline int __devinit omap_additional_add(struct device *dev)
1631 return sysfs_create_group(&dev->kobj, &additional_attr_group);
1634 static inline void __devexit omap_additional_remove(struct device *dev)
1636 sysfs_remove_group(&dev->kobj, &additional_attr_group);
1639 static const struct attribute *sidetone_attrs[] = {
1640 &dev_attr_st_taps.attr,
1644 static const struct attribute_group sidetone_attr_group = {
1645 .attrs = (struct attribute **)sidetone_attrs,
1648 int __devinit omap_st_add(struct omap_mcbsp *mcbsp)
1650 struct omap_mcbsp_platform_data *pdata = mcbsp->pdata;
1651 struct omap_mcbsp_st_data *st_data;
1654 st_data = kzalloc(sizeof(*mcbsp->st_data), GFP_KERNEL);
1660 st_data->io_base_st = ioremap(pdata->phys_base_st, SZ_4K);
1661 if (!st_data->io_base_st) {
1666 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1670 mcbsp->st_data = st_data;
1674 iounmap(st_data->io_base_st);
1682 static void __devexit omap_st_remove(struct omap_mcbsp *mcbsp)
1684 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1687 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1688 iounmap(st_data->io_base_st);
1693 static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
1695 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
1696 if (cpu_is_omap34xx()) {
1698 * Initially configure the maximum thresholds to a safe value.
1699 * The McBSP FIFO usage with these values should not go under
1701 * If the whole FIFO without safety buffer is used, than there
1702 * is a possibility that the DMA will be not able to push the
1703 * new data on time, causing channel shifts in runtime.
1705 mcbsp->max_tx_thres = max_thres(mcbsp) - 0x10;
1706 mcbsp->max_rx_thres = max_thres(mcbsp) - 0x10;
1708 * REVISIT: Set dmap_op_mode to THRESHOLD as default
1709 * for mcbsp2 instances.
1711 if (omap_additional_add(mcbsp->dev))
1712 dev_warn(mcbsp->dev,
1713 "Unable to create additional controls\n");
1715 if (mcbsp->id == 2 || mcbsp->id == 3)
1716 if (omap_st_add(mcbsp))
1717 dev_warn(mcbsp->dev,
1718 "Unable to create sidetone controls\n");
1721 mcbsp->max_tx_thres = -EINVAL;
1722 mcbsp->max_rx_thres = -EINVAL;
1726 static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
1728 if (cpu_is_omap34xx()) {
1729 omap_additional_remove(mcbsp->dev);
1731 if (mcbsp->id == 2 || mcbsp->id == 3)
1732 omap_st_remove(mcbsp);
1736 static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
1737 static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) {}
1738 #endif /* CONFIG_ARCH_OMAP3 */
1741 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1742 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1744 static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
1746 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
1747 struct omap_mcbsp *mcbsp;
1748 int id = pdev->id - 1;
1752 dev_err(&pdev->dev, "McBSP device initialized without"
1758 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
1760 if (id >= omap_mcbsp_count) {
1761 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1766 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1772 spin_lock_init(&mcbsp->lock);
1775 mcbsp->dma_tx_lch = -1;
1776 mcbsp->dma_rx_lch = -1;
1778 mcbsp->phys_base = pdata->phys_base;
1779 mcbsp->io_base = ioremap(pdata->phys_base, SZ_4K);
1780 if (!mcbsp->io_base) {
1785 /* Default I/O is IRQ based */
1786 mcbsp->io_type = OMAP_MCBSP_IRQ_IO;
1787 mcbsp->tx_irq = pdata->tx_irq;
1788 mcbsp->rx_irq = pdata->rx_irq;
1789 mcbsp->dma_rx_sync = pdata->dma_rx_sync;
1790 mcbsp->dma_tx_sync = pdata->dma_tx_sync;
1792 mcbsp->iclk = clk_get(&pdev->dev, "ick");
1793 if (IS_ERR(mcbsp->iclk)) {
1794 ret = PTR_ERR(mcbsp->iclk);
1795 dev_err(&pdev->dev, "unable to get ick: %d\n", ret);
1799 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1800 if (IS_ERR(mcbsp->fclk)) {
1801 ret = PTR_ERR(mcbsp->fclk);
1802 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
1806 mcbsp->pdata = pdata;
1807 mcbsp->dev = &pdev->dev;
1808 mcbsp_ptr[id] = mcbsp;
1809 platform_set_drvdata(pdev, mcbsp);
1811 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1812 omap34xx_device_init(mcbsp);
1817 clk_put(mcbsp->iclk);
1819 iounmap(mcbsp->io_base);
1826 static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
1828 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1830 platform_set_drvdata(pdev, NULL);
1833 if (mcbsp->pdata && mcbsp->pdata->ops &&
1834 mcbsp->pdata->ops->free)
1835 mcbsp->pdata->ops->free(mcbsp->id);
1837 omap34xx_device_exit(mcbsp);
1839 clk_disable(mcbsp->fclk);
1840 clk_disable(mcbsp->iclk);
1841 clk_put(mcbsp->fclk);
1842 clk_put(mcbsp->iclk);
1844 iounmap(mcbsp->io_base);
1855 static struct platform_driver omap_mcbsp_driver = {
1856 .probe = omap_mcbsp_probe,
1857 .remove = __devexit_p(omap_mcbsp_remove),
1859 .name = "omap-mcbsp",
1863 int __init omap_mcbsp_init(void)
1865 /* Register the McBSP driver */
1866 return platform_driver_register(&omap_mcbsp_driver);