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>
28 #include <mach/mcbsp.h>
30 struct omap_mcbsp
**mcbsp_ptr
;
33 void omap_mcbsp_write(void __iomem
*io_base
, u16 reg
, u32 val
)
35 if (cpu_class_is_omap1() || cpu_is_omap2420())
36 __raw_writew((u16
)val
, io_base
+ reg
);
38 __raw_writel(val
, io_base
+ reg
);
41 int omap_mcbsp_read(void __iomem
*io_base
, u16 reg
)
43 if (cpu_class_is_omap1() || cpu_is_omap2420())
44 return __raw_readw(io_base
+ reg
);
46 return __raw_readl(io_base
+ reg
);
49 #define OMAP_MCBSP_READ(base, reg) \
50 omap_mcbsp_read(base, OMAP_MCBSP_REG_##reg)
51 #define OMAP_MCBSP_WRITE(base, reg, val) \
52 omap_mcbsp_write(base, OMAP_MCBSP_REG_##reg, val)
54 #define omap_mcbsp_check_valid_id(id) (id < omap_mcbsp_count)
55 #define id_to_mcbsp_ptr(id) mcbsp_ptr[id];
57 static void omap_mcbsp_dump_reg(u8 id
)
59 struct omap_mcbsp
*mcbsp
= id_to_mcbsp_ptr(id
);
61 dev_dbg(mcbsp
->dev
, "**** McBSP%d regs ****\n", mcbsp
->id
);
62 dev_dbg(mcbsp
->dev
, "DRR2: 0x%04x\n",
63 OMAP_MCBSP_READ(mcbsp
->io_base
, DRR2
));
64 dev_dbg(mcbsp
->dev
, "DRR1: 0x%04x\n",
65 OMAP_MCBSP_READ(mcbsp
->io_base
, DRR1
));
66 dev_dbg(mcbsp
->dev
, "DXR2: 0x%04x\n",
67 OMAP_MCBSP_READ(mcbsp
->io_base
, DXR2
));
68 dev_dbg(mcbsp
->dev
, "DXR1: 0x%04x\n",
69 OMAP_MCBSP_READ(mcbsp
->io_base
, DXR1
));
70 dev_dbg(mcbsp
->dev
, "SPCR2: 0x%04x\n",
71 OMAP_MCBSP_READ(mcbsp
->io_base
, SPCR2
));
72 dev_dbg(mcbsp
->dev
, "SPCR1: 0x%04x\n",
73 OMAP_MCBSP_READ(mcbsp
->io_base
, SPCR1
));
74 dev_dbg(mcbsp
->dev
, "RCR2: 0x%04x\n",
75 OMAP_MCBSP_READ(mcbsp
->io_base
, RCR2
));
76 dev_dbg(mcbsp
->dev
, "RCR1: 0x%04x\n",
77 OMAP_MCBSP_READ(mcbsp
->io_base
, RCR1
));
78 dev_dbg(mcbsp
->dev
, "XCR2: 0x%04x\n",
79 OMAP_MCBSP_READ(mcbsp
->io_base
, XCR2
));
80 dev_dbg(mcbsp
->dev
, "XCR1: 0x%04x\n",
81 OMAP_MCBSP_READ(mcbsp
->io_base
, XCR1
));
82 dev_dbg(mcbsp
->dev
, "SRGR2: 0x%04x\n",
83 OMAP_MCBSP_READ(mcbsp
->io_base
, SRGR2
));
84 dev_dbg(mcbsp
->dev
, "SRGR1: 0x%04x\n",
85 OMAP_MCBSP_READ(mcbsp
->io_base
, SRGR1
));
86 dev_dbg(mcbsp
->dev
, "PCR0: 0x%04x\n",
87 OMAP_MCBSP_READ(mcbsp
->io_base
, PCR0
));
88 dev_dbg(mcbsp
->dev
, "***********************\n");
91 static irqreturn_t
omap_mcbsp_tx_irq_handler(int irq
, void *dev_id
)
93 struct omap_mcbsp
*mcbsp_tx
= dev_id
;
96 irqst_spcr2
= OMAP_MCBSP_READ(mcbsp_tx
->io_base
, SPCR2
);
97 dev_dbg(mcbsp_tx
->dev
, "TX IRQ callback : 0x%x\n", irqst_spcr2
);
99 if (irqst_spcr2
& XSYNC_ERR
) {
100 dev_err(mcbsp_tx
->dev
, "TX Frame Sync Error! : 0x%x\n",
102 /* Writing zero to XSYNC_ERR clears the IRQ */
103 OMAP_MCBSP_WRITE(mcbsp_tx
->io_base
, SPCR2
,
104 irqst_spcr2
& ~(XSYNC_ERR
));
106 complete(&mcbsp_tx
->tx_irq_completion
);
112 static irqreturn_t
omap_mcbsp_rx_irq_handler(int irq
, void *dev_id
)
114 struct omap_mcbsp
*mcbsp_rx
= dev_id
;
117 irqst_spcr1
= OMAP_MCBSP_READ(mcbsp_rx
->io_base
, SPCR1
);
118 dev_dbg(mcbsp_rx
->dev
, "RX IRQ callback : 0x%x\n", irqst_spcr1
);
120 if (irqst_spcr1
& RSYNC_ERR
) {
121 dev_err(mcbsp_rx
->dev
, "RX Frame Sync Error! : 0x%x\n",
123 /* Writing zero to RSYNC_ERR clears the IRQ */
124 OMAP_MCBSP_WRITE(mcbsp_rx
->io_base
, SPCR1
,
125 irqst_spcr1
& ~(RSYNC_ERR
));
127 complete(&mcbsp_rx
->tx_irq_completion
);
133 static void omap_mcbsp_tx_dma_callback(int lch
, u16 ch_status
, void *data
)
135 struct omap_mcbsp
*mcbsp_dma_tx
= data
;
137 dev_dbg(mcbsp_dma_tx
->dev
, "TX DMA callback : 0x%x\n",
138 OMAP_MCBSP_READ(mcbsp_dma_tx
->io_base
, SPCR2
));
140 /* We can free the channels */
141 omap_free_dma(mcbsp_dma_tx
->dma_tx_lch
);
142 mcbsp_dma_tx
->dma_tx_lch
= -1;
144 complete(&mcbsp_dma_tx
->tx_dma_completion
);
147 static void omap_mcbsp_rx_dma_callback(int lch
, u16 ch_status
, void *data
)
149 struct omap_mcbsp
*mcbsp_dma_rx
= data
;
151 dev_dbg(mcbsp_dma_rx
->dev
, "RX DMA callback : 0x%x\n",
152 OMAP_MCBSP_READ(mcbsp_dma_rx
->io_base
, SPCR2
));
154 /* We can free the channels */
155 omap_free_dma(mcbsp_dma_rx
->dma_rx_lch
);
156 mcbsp_dma_rx
->dma_rx_lch
= -1;
158 complete(&mcbsp_dma_rx
->rx_dma_completion
);
162 * omap_mcbsp_config simply write a config to the
164 * You either call this function or set the McBSP registers
165 * by yourself before calling omap_mcbsp_start().
167 void omap_mcbsp_config(unsigned int id
, const struct omap_mcbsp_reg_cfg
*config
)
169 struct omap_mcbsp
*mcbsp
;
170 void __iomem
*io_base
;
172 if (!omap_mcbsp_check_valid_id(id
)) {
173 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
176 mcbsp
= id_to_mcbsp_ptr(id
);
178 io_base
= mcbsp
->io_base
;
179 dev_dbg(mcbsp
->dev
, "Configuring McBSP%d phys_base: 0x%08lx\n",
180 mcbsp
->id
, mcbsp
->phys_base
);
182 /* We write the given config */
183 OMAP_MCBSP_WRITE(io_base
, SPCR2
, config
->spcr2
);
184 OMAP_MCBSP_WRITE(io_base
, SPCR1
, config
->spcr1
);
185 OMAP_MCBSP_WRITE(io_base
, RCR2
, config
->rcr2
);
186 OMAP_MCBSP_WRITE(io_base
, RCR1
, config
->rcr1
);
187 OMAP_MCBSP_WRITE(io_base
, XCR2
, config
->xcr2
);
188 OMAP_MCBSP_WRITE(io_base
, XCR1
, config
->xcr1
);
189 OMAP_MCBSP_WRITE(io_base
, SRGR2
, config
->srgr2
);
190 OMAP_MCBSP_WRITE(io_base
, SRGR1
, config
->srgr1
);
191 OMAP_MCBSP_WRITE(io_base
, MCR2
, config
->mcr2
);
192 OMAP_MCBSP_WRITE(io_base
, MCR1
, config
->mcr1
);
193 OMAP_MCBSP_WRITE(io_base
, PCR0
, config
->pcr0
);
194 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
195 OMAP_MCBSP_WRITE(io_base
, XCCR
, config
->xccr
);
196 OMAP_MCBSP_WRITE(io_base
, RCCR
, config
->rccr
);
199 EXPORT_SYMBOL(omap_mcbsp_config
);
201 #ifdef CONFIG_ARCH_OMAP34XX
203 * omap_mcbsp_set_tx_threshold configures how to deal
204 * with transmit threshold. the threshold value and handler can be
207 void omap_mcbsp_set_tx_threshold(unsigned int id
, u16 threshold
)
209 struct omap_mcbsp
*mcbsp
;
210 void __iomem
*io_base
;
212 if (!cpu_is_omap34xx())
215 if (!omap_mcbsp_check_valid_id(id
)) {
216 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
219 mcbsp
= id_to_mcbsp_ptr(id
);
220 io_base
= mcbsp
->io_base
;
222 OMAP_MCBSP_WRITE(io_base
, THRSH2
, threshold
);
224 EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold
);
227 * omap_mcbsp_set_rx_threshold configures how to deal
228 * with receive threshold. the threshold value and handler can be
231 void omap_mcbsp_set_rx_threshold(unsigned int id
, u16 threshold
)
233 struct omap_mcbsp
*mcbsp
;
234 void __iomem
*io_base
;
236 if (!cpu_is_omap34xx())
239 if (!omap_mcbsp_check_valid_id(id
)) {
240 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
243 mcbsp
= id_to_mcbsp_ptr(id
);
244 io_base
= mcbsp
->io_base
;
246 OMAP_MCBSP_WRITE(io_base
, THRSH1
, threshold
);
248 EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold
);
251 * omap_mcbsp_get_max_tx_thres just return the current configured
252 * maximum threshold for transmission
254 u16
omap_mcbsp_get_max_tx_threshold(unsigned int id
)
256 struct omap_mcbsp
*mcbsp
;
258 if (!omap_mcbsp_check_valid_id(id
)) {
259 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
262 mcbsp
= id_to_mcbsp_ptr(id
);
264 return mcbsp
->max_tx_thres
;
266 EXPORT_SYMBOL(omap_mcbsp_get_max_tx_threshold
);
269 * omap_mcbsp_get_max_rx_thres just return the current configured
270 * maximum threshold for reception
272 u16
omap_mcbsp_get_max_rx_threshold(unsigned int id
)
274 struct omap_mcbsp
*mcbsp
;
276 if (!omap_mcbsp_check_valid_id(id
)) {
277 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
280 mcbsp
= id_to_mcbsp_ptr(id
);
282 return mcbsp
->max_rx_thres
;
284 EXPORT_SYMBOL(omap_mcbsp_get_max_rx_threshold
);
287 * omap_mcbsp_get_dma_op_mode just return the current configured
288 * operating mode for the mcbsp channel
290 int omap_mcbsp_get_dma_op_mode(unsigned int id
)
292 struct omap_mcbsp
*mcbsp
;
295 if (!omap_mcbsp_check_valid_id(id
)) {
296 printk(KERN_ERR
"%s: Invalid id (%u)\n", __func__
, id
+ 1);
299 mcbsp
= id_to_mcbsp_ptr(id
);
301 spin_lock_irq(&mcbsp
->lock
);
302 dma_op_mode
= mcbsp
->dma_op_mode
;
303 spin_unlock_irq(&mcbsp
->lock
);
307 EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode
);
309 static inline void omap34xx_mcbsp_request(struct omap_mcbsp
*mcbsp
)
312 * Enable wakup behavior, smart idle and all wakeups
313 * REVISIT: some wakeups may be unnecessary
315 if (cpu_is_omap34xx()) {
318 syscon
= OMAP_MCBSP_READ(mcbsp
->io_base
, SYSCON
);
319 syscon
&= ~(ENAWAKEUP
| SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
321 spin_lock_irq(&mcbsp
->lock
);
322 if (mcbsp
->dma_op_mode
== MCBSP_DMA_MODE_THRESHOLD
) {
323 syscon
|= (ENAWAKEUP
| SIDLEMODE(0x02) |
324 CLOCKACTIVITY(0x02));
325 OMAP_MCBSP_WRITE(mcbsp
->io_base
, WAKEUPEN
,
328 syscon
|= SIDLEMODE(0x01);
330 spin_unlock_irq(&mcbsp
->lock
);
332 OMAP_MCBSP_WRITE(mcbsp
->io_base
, SYSCON
, syscon
);
336 static inline void omap34xx_mcbsp_free(struct omap_mcbsp
*mcbsp
)
339 * Disable wakup behavior, smart idle and all wakeups
341 if (cpu_is_omap34xx()) {
344 syscon
= OMAP_MCBSP_READ(mcbsp
->io_base
, SYSCON
);
345 syscon
&= ~(ENAWAKEUP
| SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
347 * HW bug workaround - If no_idle mode is taken, we need to
348 * go to smart_idle before going to always_idle, or the
349 * device will not hit retention anymore.
351 syscon
|= SIDLEMODE(0x02);
352 OMAP_MCBSP_WRITE(mcbsp
->io_base
, SYSCON
, syscon
);
354 syscon
&= ~(SIDLEMODE(0x03));
355 OMAP_MCBSP_WRITE(mcbsp
->io_base
, SYSCON
, syscon
);
357 OMAP_MCBSP_WRITE(mcbsp
->io_base
, WAKEUPEN
, 0);
361 static inline void omap34xx_mcbsp_request(struct omap_mcbsp
*mcbsp
) {}
362 static inline void omap34xx_mcbsp_free(struct omap_mcbsp
*mcbsp
) {}
366 * We can choose between IRQ based or polled IO.
367 * This needs to be called before omap_mcbsp_request().
369 int omap_mcbsp_set_io_type(unsigned int id
, omap_mcbsp_io_type_t io_type
)
371 struct omap_mcbsp
*mcbsp
;
373 if (!omap_mcbsp_check_valid_id(id
)) {
374 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
377 mcbsp
= id_to_mcbsp_ptr(id
);
379 spin_lock(&mcbsp
->lock
);
382 dev_err(mcbsp
->dev
, "McBSP%d is currently in use\n",
384 spin_unlock(&mcbsp
->lock
);
388 mcbsp
->io_type
= io_type
;
390 spin_unlock(&mcbsp
->lock
);
394 EXPORT_SYMBOL(omap_mcbsp_set_io_type
);
396 int omap_mcbsp_request(unsigned int id
)
398 struct omap_mcbsp
*mcbsp
;
401 if (!omap_mcbsp_check_valid_id(id
)) {
402 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
405 mcbsp
= id_to_mcbsp_ptr(id
);
407 spin_lock(&mcbsp
->lock
);
409 dev_err(mcbsp
->dev
, "McBSP%d is currently in use\n",
411 spin_unlock(&mcbsp
->lock
);
416 spin_unlock(&mcbsp
->lock
);
418 if (mcbsp
->pdata
&& mcbsp
->pdata
->ops
&& mcbsp
->pdata
->ops
->request
)
419 mcbsp
->pdata
->ops
->request(id
);
421 clk_enable(mcbsp
->iclk
);
422 clk_enable(mcbsp
->fclk
);
424 /* Do procedure specific to omap34xx arch, if applicable */
425 omap34xx_mcbsp_request(mcbsp
);
428 * Make sure that transmitter, receiver and sample-rate generator are
429 * not running before activating IRQs.
431 OMAP_MCBSP_WRITE(mcbsp
->io_base
, SPCR1
, 0);
432 OMAP_MCBSP_WRITE(mcbsp
->io_base
, SPCR2
, 0);
434 if (mcbsp
->io_type
== OMAP_MCBSP_IRQ_IO
) {
435 /* We need to get IRQs here */
436 init_completion(&mcbsp
->tx_irq_completion
);
437 err
= request_irq(mcbsp
->tx_irq
, omap_mcbsp_tx_irq_handler
,
438 0, "McBSP", (void *)mcbsp
);
440 dev_err(mcbsp
->dev
, "Unable to request TX IRQ %d "
441 "for McBSP%d\n", mcbsp
->tx_irq
,
446 init_completion(&mcbsp
->rx_irq_completion
);
447 err
= request_irq(mcbsp
->rx_irq
, omap_mcbsp_rx_irq_handler
,
448 0, "McBSP", (void *)mcbsp
);
450 dev_err(mcbsp
->dev
, "Unable to request RX IRQ %d "
451 "for McBSP%d\n", mcbsp
->rx_irq
,
453 free_irq(mcbsp
->tx_irq
, (void *)mcbsp
);
460 EXPORT_SYMBOL(omap_mcbsp_request
);
462 void omap_mcbsp_free(unsigned int id
)
464 struct omap_mcbsp
*mcbsp
;
466 if (!omap_mcbsp_check_valid_id(id
)) {
467 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
470 mcbsp
= id_to_mcbsp_ptr(id
);
472 if (mcbsp
->pdata
&& mcbsp
->pdata
->ops
&& mcbsp
->pdata
->ops
->free
)
473 mcbsp
->pdata
->ops
->free(id
);
475 /* Do procedure specific to omap34xx arch, if applicable */
476 omap34xx_mcbsp_free(mcbsp
);
478 clk_disable(mcbsp
->fclk
);
479 clk_disable(mcbsp
->iclk
);
481 if (mcbsp
->io_type
== OMAP_MCBSP_IRQ_IO
) {
483 free_irq(mcbsp
->rx_irq
, (void *)mcbsp
);
484 free_irq(mcbsp
->tx_irq
, (void *)mcbsp
);
487 spin_lock(&mcbsp
->lock
);
489 dev_err(mcbsp
->dev
, "McBSP%d was not reserved\n",
491 spin_unlock(&mcbsp
->lock
);
496 spin_unlock(&mcbsp
->lock
);
498 EXPORT_SYMBOL(omap_mcbsp_free
);
501 * Here we start the McBSP, by enabling transmitter, receiver or both.
502 * If no transmitter or receiver is active prior calling, then sample-rate
503 * generator and frame sync are started.
505 void omap_mcbsp_start(unsigned int id
, int tx
, int rx
)
507 struct omap_mcbsp
*mcbsp
;
508 void __iomem
*io_base
;
512 if (!omap_mcbsp_check_valid_id(id
)) {
513 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
516 mcbsp
= id_to_mcbsp_ptr(id
);
517 io_base
= mcbsp
->io_base
;
519 mcbsp
->rx_word_length
= (OMAP_MCBSP_READ(io_base
, RCR1
) >> 5) & 0x7;
520 mcbsp
->tx_word_length
= (OMAP_MCBSP_READ(io_base
, XCR1
) >> 5) & 0x7;
522 idle
= !((OMAP_MCBSP_READ(io_base
, SPCR2
) |
523 OMAP_MCBSP_READ(io_base
, SPCR1
)) & 1);
526 /* Start the sample generator */
527 w
= OMAP_MCBSP_READ(io_base
, SPCR2
);
528 OMAP_MCBSP_WRITE(io_base
, SPCR2
, w
| (1 << 6));
531 /* Enable transmitter and receiver */
533 w
= OMAP_MCBSP_READ(io_base
, SPCR2
);
534 OMAP_MCBSP_WRITE(io_base
, SPCR2
, w
| tx
);
537 w
= OMAP_MCBSP_READ(io_base
, SPCR1
);
538 OMAP_MCBSP_WRITE(io_base
, SPCR1
, w
| rx
);
541 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
542 * REVISIT: 100us may give enough time for two CLKSRG, however
543 * due to some unknown PM related, clock gating etc. reason it
549 /* Start frame sync */
550 w
= OMAP_MCBSP_READ(io_base
, SPCR2
);
551 OMAP_MCBSP_WRITE(io_base
, SPCR2
, w
| (1 << 7));
554 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
555 /* Release the transmitter and receiver */
556 w
= OMAP_MCBSP_READ(io_base
, XCCR
);
557 w
&= ~(tx
? XDISABLE
: 0);
558 OMAP_MCBSP_WRITE(io_base
, XCCR
, w
);
559 w
= OMAP_MCBSP_READ(io_base
, RCCR
);
560 w
&= ~(rx
? RDISABLE
: 0);
561 OMAP_MCBSP_WRITE(io_base
, RCCR
, w
);
564 /* Dump McBSP Regs */
565 omap_mcbsp_dump_reg(id
);
567 EXPORT_SYMBOL(omap_mcbsp_start
);
569 void omap_mcbsp_stop(unsigned int id
, int tx
, int rx
)
571 struct omap_mcbsp
*mcbsp
;
572 void __iomem
*io_base
;
576 if (!omap_mcbsp_check_valid_id(id
)) {
577 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
581 mcbsp
= id_to_mcbsp_ptr(id
);
582 io_base
= mcbsp
->io_base
;
584 /* Reset transmitter */
586 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
587 w
= OMAP_MCBSP_READ(io_base
, XCCR
);
588 w
|= (tx
? XDISABLE
: 0);
589 OMAP_MCBSP_WRITE(io_base
, XCCR
, w
);
591 w
= OMAP_MCBSP_READ(io_base
, SPCR2
);
592 OMAP_MCBSP_WRITE(io_base
, SPCR2
, w
& ~tx
);
596 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
597 w
= OMAP_MCBSP_READ(io_base
, RCCR
);
598 w
|= (rx
? RDISABLE
: 0);
599 OMAP_MCBSP_WRITE(io_base
, RCCR
, w
);
601 w
= OMAP_MCBSP_READ(io_base
, SPCR1
);
602 OMAP_MCBSP_WRITE(io_base
, SPCR1
, w
& ~rx
);
604 idle
= !((OMAP_MCBSP_READ(io_base
, SPCR2
) |
605 OMAP_MCBSP_READ(io_base
, SPCR1
)) & 1);
608 /* Reset the sample rate generator */
609 w
= OMAP_MCBSP_READ(io_base
, SPCR2
);
610 OMAP_MCBSP_WRITE(io_base
, SPCR2
, w
& ~(1 << 6));
613 EXPORT_SYMBOL(omap_mcbsp_stop
);
615 /* polled mcbsp i/o operations */
616 int omap_mcbsp_pollwrite(unsigned int id
, u16 buf
)
618 struct omap_mcbsp
*mcbsp
;
621 if (!omap_mcbsp_check_valid_id(id
)) {
622 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
626 mcbsp
= id_to_mcbsp_ptr(id
);
627 base
= mcbsp
->io_base
;
629 writew(buf
, base
+ OMAP_MCBSP_REG_DXR1
);
630 /* if frame sync error - clear the error */
631 if (readw(base
+ OMAP_MCBSP_REG_SPCR2
) & XSYNC_ERR
) {
633 writew(readw(base
+ OMAP_MCBSP_REG_SPCR2
) & (~XSYNC_ERR
),
634 base
+ OMAP_MCBSP_REG_SPCR2
);
638 /* wait for transmit confirmation */
640 while (!(readw(base
+ OMAP_MCBSP_REG_SPCR2
) & XRDY
)) {
641 if (attemps
++ > 1000) {
642 writew(readw(base
+ OMAP_MCBSP_REG_SPCR2
) &
644 base
+ OMAP_MCBSP_REG_SPCR2
);
646 writew(readw(base
+ OMAP_MCBSP_REG_SPCR2
) |
648 base
+ OMAP_MCBSP_REG_SPCR2
);
650 dev_err(mcbsp
->dev
, "Could not write to"
651 " McBSP%d Register\n", mcbsp
->id
);
659 EXPORT_SYMBOL(omap_mcbsp_pollwrite
);
661 int omap_mcbsp_pollread(unsigned int id
, u16
*buf
)
663 struct omap_mcbsp
*mcbsp
;
666 if (!omap_mcbsp_check_valid_id(id
)) {
667 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
670 mcbsp
= id_to_mcbsp_ptr(id
);
672 base
= mcbsp
->io_base
;
673 /* if frame sync error - clear the error */
674 if (readw(base
+ OMAP_MCBSP_REG_SPCR1
) & RSYNC_ERR
) {
676 writew(readw(base
+ OMAP_MCBSP_REG_SPCR1
) & (~RSYNC_ERR
),
677 base
+ OMAP_MCBSP_REG_SPCR1
);
681 /* wait for recieve confirmation */
683 while (!(readw(base
+ OMAP_MCBSP_REG_SPCR1
) & RRDY
)) {
684 if (attemps
++ > 1000) {
685 writew(readw(base
+ OMAP_MCBSP_REG_SPCR1
) &
687 base
+ OMAP_MCBSP_REG_SPCR1
);
689 writew(readw(base
+ OMAP_MCBSP_REG_SPCR1
) |
691 base
+ OMAP_MCBSP_REG_SPCR1
);
693 dev_err(mcbsp
->dev
, "Could not read from"
694 " McBSP%d Register\n", mcbsp
->id
);
699 *buf
= readw(base
+ OMAP_MCBSP_REG_DRR1
);
703 EXPORT_SYMBOL(omap_mcbsp_pollread
);
706 * IRQ based word transmission.
708 void omap_mcbsp_xmit_word(unsigned int id
, u32 word
)
710 struct omap_mcbsp
*mcbsp
;
711 void __iomem
*io_base
;
712 omap_mcbsp_word_length word_length
;
714 if (!omap_mcbsp_check_valid_id(id
)) {
715 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
719 mcbsp
= id_to_mcbsp_ptr(id
);
720 io_base
= mcbsp
->io_base
;
721 word_length
= mcbsp
->tx_word_length
;
723 wait_for_completion(&mcbsp
->tx_irq_completion
);
725 if (word_length
> OMAP_MCBSP_WORD_16
)
726 OMAP_MCBSP_WRITE(io_base
, DXR2
, word
>> 16);
727 OMAP_MCBSP_WRITE(io_base
, DXR1
, word
& 0xffff);
729 EXPORT_SYMBOL(omap_mcbsp_xmit_word
);
731 u32
omap_mcbsp_recv_word(unsigned int id
)
733 struct omap_mcbsp
*mcbsp
;
734 void __iomem
*io_base
;
735 u16 word_lsb
, word_msb
= 0;
736 omap_mcbsp_word_length word_length
;
738 if (!omap_mcbsp_check_valid_id(id
)) {
739 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
742 mcbsp
= id_to_mcbsp_ptr(id
);
744 word_length
= mcbsp
->rx_word_length
;
745 io_base
= mcbsp
->io_base
;
747 wait_for_completion(&mcbsp
->rx_irq_completion
);
749 if (word_length
> OMAP_MCBSP_WORD_16
)
750 word_msb
= OMAP_MCBSP_READ(io_base
, DRR2
);
751 word_lsb
= OMAP_MCBSP_READ(io_base
, DRR1
);
753 return (word_lsb
| (word_msb
<< 16));
755 EXPORT_SYMBOL(omap_mcbsp_recv_word
);
757 int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id
, u32 word
)
759 struct omap_mcbsp
*mcbsp
;
760 void __iomem
*io_base
;
761 omap_mcbsp_word_length tx_word_length
;
762 omap_mcbsp_word_length rx_word_length
;
763 u16 spcr2
, spcr1
, attempts
= 0, word_lsb
, word_msb
= 0;
765 if (!omap_mcbsp_check_valid_id(id
)) {
766 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
769 mcbsp
= id_to_mcbsp_ptr(id
);
770 io_base
= mcbsp
->io_base
;
771 tx_word_length
= mcbsp
->tx_word_length
;
772 rx_word_length
= mcbsp
->rx_word_length
;
774 if (tx_word_length
!= rx_word_length
)
777 /* First we wait for the transmitter to be ready */
778 spcr2
= OMAP_MCBSP_READ(io_base
, SPCR2
);
779 while (!(spcr2
& XRDY
)) {
780 spcr2
= OMAP_MCBSP_READ(io_base
, SPCR2
);
781 if (attempts
++ > 1000) {
782 /* We must reset the transmitter */
783 OMAP_MCBSP_WRITE(io_base
, SPCR2
, spcr2
& (~XRST
));
785 OMAP_MCBSP_WRITE(io_base
, SPCR2
, spcr2
| XRST
);
787 dev_err(mcbsp
->dev
, "McBSP%d transmitter not "
788 "ready\n", mcbsp
->id
);
793 /* Now we can push the data */
794 if (tx_word_length
> OMAP_MCBSP_WORD_16
)
795 OMAP_MCBSP_WRITE(io_base
, DXR2
, word
>> 16);
796 OMAP_MCBSP_WRITE(io_base
, DXR1
, word
& 0xffff);
798 /* We wait for the receiver to be ready */
799 spcr1
= OMAP_MCBSP_READ(io_base
, SPCR1
);
800 while (!(spcr1
& RRDY
)) {
801 spcr1
= OMAP_MCBSP_READ(io_base
, SPCR1
);
802 if (attempts
++ > 1000) {
803 /* We must reset the receiver */
804 OMAP_MCBSP_WRITE(io_base
, SPCR1
, spcr1
& (~RRST
));
806 OMAP_MCBSP_WRITE(io_base
, SPCR1
, spcr1
| RRST
);
808 dev_err(mcbsp
->dev
, "McBSP%d receiver not "
809 "ready\n", mcbsp
->id
);
814 /* Receiver is ready, let's read the dummy data */
815 if (rx_word_length
> OMAP_MCBSP_WORD_16
)
816 word_msb
= OMAP_MCBSP_READ(io_base
, DRR2
);
817 word_lsb
= OMAP_MCBSP_READ(io_base
, DRR1
);
821 EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll
);
823 int omap_mcbsp_spi_master_recv_word_poll(unsigned int id
, u32
*word
)
825 struct omap_mcbsp
*mcbsp
;
827 void __iomem
*io_base
;
828 omap_mcbsp_word_length tx_word_length
;
829 omap_mcbsp_word_length rx_word_length
;
830 u16 spcr2
, spcr1
, attempts
= 0, word_lsb
, word_msb
= 0;
832 if (!omap_mcbsp_check_valid_id(id
)) {
833 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
837 mcbsp
= id_to_mcbsp_ptr(id
);
838 io_base
= mcbsp
->io_base
;
840 tx_word_length
= mcbsp
->tx_word_length
;
841 rx_word_length
= mcbsp
->rx_word_length
;
843 if (tx_word_length
!= rx_word_length
)
846 /* First we wait for the transmitter to be ready */
847 spcr2
= OMAP_MCBSP_READ(io_base
, SPCR2
);
848 while (!(spcr2
& XRDY
)) {
849 spcr2
= OMAP_MCBSP_READ(io_base
, SPCR2
);
850 if (attempts
++ > 1000) {
851 /* We must reset the transmitter */
852 OMAP_MCBSP_WRITE(io_base
, SPCR2
, spcr2
& (~XRST
));
854 OMAP_MCBSP_WRITE(io_base
, SPCR2
, spcr2
| XRST
);
856 dev_err(mcbsp
->dev
, "McBSP%d transmitter not "
857 "ready\n", mcbsp
->id
);
862 /* We first need to enable the bus clock */
863 if (tx_word_length
> OMAP_MCBSP_WORD_16
)
864 OMAP_MCBSP_WRITE(io_base
, DXR2
, clock_word
>> 16);
865 OMAP_MCBSP_WRITE(io_base
, DXR1
, clock_word
& 0xffff);
867 /* We wait for the receiver to be ready */
868 spcr1
= OMAP_MCBSP_READ(io_base
, SPCR1
);
869 while (!(spcr1
& RRDY
)) {
870 spcr1
= OMAP_MCBSP_READ(io_base
, SPCR1
);
871 if (attempts
++ > 1000) {
872 /* We must reset the receiver */
873 OMAP_MCBSP_WRITE(io_base
, SPCR1
, spcr1
& (~RRST
));
875 OMAP_MCBSP_WRITE(io_base
, SPCR1
, spcr1
| RRST
);
877 dev_err(mcbsp
->dev
, "McBSP%d receiver not "
878 "ready\n", mcbsp
->id
);
883 /* Receiver is ready, there is something for us */
884 if (rx_word_length
> OMAP_MCBSP_WORD_16
)
885 word_msb
= OMAP_MCBSP_READ(io_base
, DRR2
);
886 word_lsb
= OMAP_MCBSP_READ(io_base
, DRR1
);
888 word
[0] = (word_lsb
| (word_msb
<< 16));
892 EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll
);
895 * Simple DMA based buffer rx/tx routines.
896 * Nothing fancy, just a single buffer tx/rx through DMA.
897 * The DMA resources are released once the transfer is done.
898 * For anything fancier, you should use your own customized DMA
899 * routines and callbacks.
901 int omap_mcbsp_xmit_buffer(unsigned int id
, dma_addr_t buffer
,
904 struct omap_mcbsp
*mcbsp
;
910 if (!omap_mcbsp_check_valid_id(id
)) {
911 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
914 mcbsp
= id_to_mcbsp_ptr(id
);
916 if (omap_request_dma(mcbsp
->dma_tx_sync
, "McBSP TX",
917 omap_mcbsp_tx_dma_callback
,
920 dev_err(mcbsp
->dev
, " Unable to request DMA channel for "
921 "McBSP%d TX. Trying IRQ based TX\n",
925 mcbsp
->dma_tx_lch
= dma_tx_ch
;
927 dev_err(mcbsp
->dev
, "McBSP%d TX DMA on channel %d\n", mcbsp
->id
,
930 init_completion(&mcbsp
->tx_dma_completion
);
932 if (cpu_class_is_omap1()) {
933 src_port
= OMAP_DMA_PORT_TIPB
;
934 dest_port
= OMAP_DMA_PORT_EMIFF
;
936 if (cpu_class_is_omap2())
937 sync_dev
= mcbsp
->dma_tx_sync
;
939 omap_set_dma_transfer_params(mcbsp
->dma_tx_lch
,
940 OMAP_DMA_DATA_TYPE_S16
,
942 OMAP_DMA_SYNC_ELEMENT
,
945 omap_set_dma_dest_params(mcbsp
->dma_tx_lch
,
947 OMAP_DMA_AMODE_CONSTANT
,
948 mcbsp
->phys_base
+ OMAP_MCBSP_REG_DXR1
,
951 omap_set_dma_src_params(mcbsp
->dma_tx_lch
,
953 OMAP_DMA_AMODE_POST_INC
,
957 omap_start_dma(mcbsp
->dma_tx_lch
);
958 wait_for_completion(&mcbsp
->tx_dma_completion
);
962 EXPORT_SYMBOL(omap_mcbsp_xmit_buffer
);
964 int omap_mcbsp_recv_buffer(unsigned int id
, dma_addr_t buffer
,
967 struct omap_mcbsp
*mcbsp
;
973 if (!omap_mcbsp_check_valid_id(id
)) {
974 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
977 mcbsp
= id_to_mcbsp_ptr(id
);
979 if (omap_request_dma(mcbsp
->dma_rx_sync
, "McBSP RX",
980 omap_mcbsp_rx_dma_callback
,
983 dev_err(mcbsp
->dev
, "Unable to request DMA channel for "
984 "McBSP%d RX. Trying IRQ based RX\n",
988 mcbsp
->dma_rx_lch
= dma_rx_ch
;
990 dev_err(mcbsp
->dev
, "McBSP%d RX DMA on channel %d\n", mcbsp
->id
,
993 init_completion(&mcbsp
->rx_dma_completion
);
995 if (cpu_class_is_omap1()) {
996 src_port
= OMAP_DMA_PORT_TIPB
;
997 dest_port
= OMAP_DMA_PORT_EMIFF
;
999 if (cpu_class_is_omap2())
1000 sync_dev
= mcbsp
->dma_rx_sync
;
1002 omap_set_dma_transfer_params(mcbsp
->dma_rx_lch
,
1003 OMAP_DMA_DATA_TYPE_S16
,
1005 OMAP_DMA_SYNC_ELEMENT
,
1008 omap_set_dma_src_params(mcbsp
->dma_rx_lch
,
1010 OMAP_DMA_AMODE_CONSTANT
,
1011 mcbsp
->phys_base
+ OMAP_MCBSP_REG_DRR1
,
1014 omap_set_dma_dest_params(mcbsp
->dma_rx_lch
,
1016 OMAP_DMA_AMODE_POST_INC
,
1020 omap_start_dma(mcbsp
->dma_rx_lch
);
1021 wait_for_completion(&mcbsp
->rx_dma_completion
);
1025 EXPORT_SYMBOL(omap_mcbsp_recv_buffer
);
1029 * Since SPI setup is much simpler than the generic McBSP one,
1030 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
1031 * Once this is done, you can call omap_mcbsp_start().
1033 void omap_mcbsp_set_spi_mode(unsigned int id
,
1034 const struct omap_mcbsp_spi_cfg
*spi_cfg
)
1036 struct omap_mcbsp
*mcbsp
;
1037 struct omap_mcbsp_reg_cfg mcbsp_cfg
;
1039 if (!omap_mcbsp_check_valid_id(id
)) {
1040 printk(KERN_ERR
"%s: Invalid id (%d)\n", __func__
, id
+ 1);
1043 mcbsp
= id_to_mcbsp_ptr(id
);
1045 memset(&mcbsp_cfg
, 0, sizeof(struct omap_mcbsp_reg_cfg
));
1047 /* SPI has only one frame */
1048 mcbsp_cfg
.rcr1
|= (RWDLEN1(spi_cfg
->word_length
) | RFRLEN1(0));
1049 mcbsp_cfg
.xcr1
|= (XWDLEN1(spi_cfg
->word_length
) | XFRLEN1(0));
1051 /* Clock stop mode */
1052 if (spi_cfg
->clk_stp_mode
== OMAP_MCBSP_CLK_STP_MODE_NO_DELAY
)
1053 mcbsp_cfg
.spcr1
|= (1 << 12);
1055 mcbsp_cfg
.spcr1
|= (3 << 11);
1057 /* Set clock parities */
1058 if (spi_cfg
->rx_clock_polarity
== OMAP_MCBSP_CLK_RISING
)
1059 mcbsp_cfg
.pcr0
|= CLKRP
;
1061 mcbsp_cfg
.pcr0
&= ~CLKRP
;
1063 if (spi_cfg
->tx_clock_polarity
== OMAP_MCBSP_CLK_RISING
)
1064 mcbsp_cfg
.pcr0
&= ~CLKXP
;
1066 mcbsp_cfg
.pcr0
|= CLKXP
;
1068 /* Set SCLKME to 0 and CLKSM to 1 */
1069 mcbsp_cfg
.pcr0
&= ~SCLKME
;
1070 mcbsp_cfg
.srgr2
|= CLKSM
;
1073 if (spi_cfg
->fsx_polarity
== OMAP_MCBSP_FS_ACTIVE_HIGH
)
1074 mcbsp_cfg
.pcr0
&= ~FSXP
;
1076 mcbsp_cfg
.pcr0
|= FSXP
;
1078 if (spi_cfg
->spi_mode
== OMAP_MCBSP_SPI_MASTER
) {
1079 mcbsp_cfg
.pcr0
|= CLKXM
;
1080 mcbsp_cfg
.srgr1
|= CLKGDV(spi_cfg
->clk_div
- 1);
1081 mcbsp_cfg
.pcr0
|= FSXM
;
1082 mcbsp_cfg
.srgr2
&= ~FSGM
;
1083 mcbsp_cfg
.xcr2
|= XDATDLY(1);
1084 mcbsp_cfg
.rcr2
|= RDATDLY(1);
1086 mcbsp_cfg
.pcr0
&= ~CLKXM
;
1087 mcbsp_cfg
.srgr1
|= CLKGDV(1);
1088 mcbsp_cfg
.pcr0
&= ~FSXM
;
1089 mcbsp_cfg
.xcr2
&= ~XDATDLY(3);
1090 mcbsp_cfg
.rcr2
&= ~RDATDLY(3);
1093 mcbsp_cfg
.xcr2
&= ~XPHASE
;
1094 mcbsp_cfg
.rcr2
&= ~RPHASE
;
1096 omap_mcbsp_config(id
, &mcbsp_cfg
);
1098 EXPORT_SYMBOL(omap_mcbsp_set_spi_mode
);
1100 #ifdef CONFIG_ARCH_OMAP34XX
1101 #define max_thres(m) (mcbsp->pdata->buffer_size)
1102 #define valid_threshold(m, val) ((val) <= max_thres(m))
1103 #define THRESHOLD_PROP_BUILDER(prop) \
1104 static ssize_t prop##_show(struct device *dev, \
1105 struct device_attribute *attr, char *buf) \
1107 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1109 return sprintf(buf, "%u\n", mcbsp->prop); \
1112 static ssize_t prop##_store(struct device *dev, \
1113 struct device_attribute *attr, \
1114 const char *buf, size_t size) \
1116 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1117 unsigned long val; \
1120 status = strict_strtoul(buf, 0, &val); \
1124 if (!valid_threshold(mcbsp, val)) \
1127 mcbsp->prop = val; \
1131 static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
1133 THRESHOLD_PROP_BUILDER(max_tx_thres
);
1134 THRESHOLD_PROP_BUILDER(max_rx_thres
);
1136 static const char *dma_op_modes
[] = {
1137 "element", "threshold", "frame",
1140 static ssize_t
dma_op_mode_show(struct device
*dev
,
1141 struct device_attribute
*attr
, char *buf
)
1143 struct omap_mcbsp
*mcbsp
= dev_get_drvdata(dev
);
1144 int dma_op_mode
, i
= 0;
1146 const char * const *s
;
1148 spin_lock_irq(&mcbsp
->lock
);
1149 dma_op_mode
= mcbsp
->dma_op_mode
;
1150 spin_unlock_irq(&mcbsp
->lock
);
1152 for (s
= &dma_op_modes
[i
]; i
< ARRAY_SIZE(dma_op_modes
); s
++, i
++) {
1153 if (dma_op_mode
== i
)
1154 len
+= sprintf(buf
+ len
, "[%s] ", *s
);
1156 len
+= sprintf(buf
+ len
, "%s ", *s
);
1158 len
+= sprintf(buf
+ len
, "\n");
1163 static ssize_t
dma_op_mode_store(struct device
*dev
,
1164 struct device_attribute
*attr
,
1165 const char *buf
, size_t size
)
1167 struct omap_mcbsp
*mcbsp
= dev_get_drvdata(dev
);
1168 const char * const *s
;
1171 for (s
= &dma_op_modes
[i
]; i
< ARRAY_SIZE(dma_op_modes
); s
++, i
++)
1172 if (sysfs_streq(buf
, *s
))
1175 if (i
== ARRAY_SIZE(dma_op_modes
))
1178 spin_lock_irq(&mcbsp
->lock
);
1183 mcbsp
->dma_op_mode
= i
;
1186 spin_unlock_irq(&mcbsp
->lock
);
1191 static DEVICE_ATTR(dma_op_mode
, 0644, dma_op_mode_show
, dma_op_mode_store
);
1193 static const struct attribute
*additional_attrs
[] = {
1194 &dev_attr_max_tx_thres
.attr
,
1195 &dev_attr_max_rx_thres
.attr
,
1196 &dev_attr_dma_op_mode
.attr
,
1200 static const struct attribute_group additional_attr_group
= {
1201 .attrs
= (struct attribute
**)additional_attrs
,
1204 static inline int __devinit
omap_additional_add(struct device
*dev
)
1206 return sysfs_create_group(&dev
->kobj
, &additional_attr_group
);
1209 static inline void __devexit
omap_additional_remove(struct device
*dev
)
1211 sysfs_remove_group(&dev
->kobj
, &additional_attr_group
);
1214 static inline void __devinit
omap34xx_device_init(struct omap_mcbsp
*mcbsp
)
1216 mcbsp
->dma_op_mode
= MCBSP_DMA_MODE_ELEMENT
;
1217 if (cpu_is_omap34xx()) {
1218 mcbsp
->max_tx_thres
= max_thres(mcbsp
);
1219 mcbsp
->max_rx_thres
= max_thres(mcbsp
);
1221 * REVISIT: Set dmap_op_mode to THRESHOLD as default
1222 * for mcbsp2 instances.
1224 if (omap_additional_add(mcbsp
->dev
))
1225 dev_warn(mcbsp
->dev
,
1226 "Unable to create additional controls\n");
1228 mcbsp
->max_tx_thres
= -EINVAL
;
1229 mcbsp
->max_rx_thres
= -EINVAL
;
1233 static inline void __devexit
omap34xx_device_exit(struct omap_mcbsp
*mcbsp
)
1235 if (cpu_is_omap34xx())
1236 omap_additional_remove(mcbsp
->dev
);
1239 static inline void __devinit
omap34xx_device_init(struct omap_mcbsp
*mcbsp
) {}
1240 static inline void __devexit
omap34xx_device_exit(struct omap_mcbsp
*mcbsp
) {}
1241 #endif /* CONFIG_ARCH_OMAP34XX */
1244 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1245 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1247 static int __devinit
omap_mcbsp_probe(struct platform_device
*pdev
)
1249 struct omap_mcbsp_platform_data
*pdata
= pdev
->dev
.platform_data
;
1250 struct omap_mcbsp
*mcbsp
;
1251 int id
= pdev
->id
- 1;
1255 dev_err(&pdev
->dev
, "McBSP device initialized without"
1261 dev_dbg(&pdev
->dev
, "Initializing OMAP McBSP (%d).\n", pdev
->id
);
1263 if (id
>= omap_mcbsp_count
) {
1264 dev_err(&pdev
->dev
, "Invalid McBSP device id (%d)\n", id
);
1269 mcbsp
= kzalloc(sizeof(struct omap_mcbsp
), GFP_KERNEL
);
1275 spin_lock_init(&mcbsp
->lock
);
1278 mcbsp
->dma_tx_lch
= -1;
1279 mcbsp
->dma_rx_lch
= -1;
1281 mcbsp
->phys_base
= pdata
->phys_base
;
1282 mcbsp
->io_base
= ioremap(pdata
->phys_base
, SZ_4K
);
1283 if (!mcbsp
->io_base
) {
1288 /* Default I/O is IRQ based */
1289 mcbsp
->io_type
= OMAP_MCBSP_IRQ_IO
;
1290 mcbsp
->tx_irq
= pdata
->tx_irq
;
1291 mcbsp
->rx_irq
= pdata
->rx_irq
;
1292 mcbsp
->dma_rx_sync
= pdata
->dma_rx_sync
;
1293 mcbsp
->dma_tx_sync
= pdata
->dma_tx_sync
;
1295 mcbsp
->iclk
= clk_get(&pdev
->dev
, "ick");
1296 if (IS_ERR(mcbsp
->iclk
)) {
1297 ret
= PTR_ERR(mcbsp
->iclk
);
1298 dev_err(&pdev
->dev
, "unable to get ick: %d\n", ret
);
1302 mcbsp
->fclk
= clk_get(&pdev
->dev
, "fck");
1303 if (IS_ERR(mcbsp
->fclk
)) {
1304 ret
= PTR_ERR(mcbsp
->fclk
);
1305 dev_err(&pdev
->dev
, "unable to get fck: %d\n", ret
);
1309 mcbsp
->pdata
= pdata
;
1310 mcbsp
->dev
= &pdev
->dev
;
1311 mcbsp_ptr
[id
] = mcbsp
;
1312 platform_set_drvdata(pdev
, mcbsp
);
1314 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1315 omap34xx_device_init(mcbsp
);
1320 clk_put(mcbsp
->iclk
);
1322 iounmap(mcbsp
->io_base
);
1329 static int __devexit
omap_mcbsp_remove(struct platform_device
*pdev
)
1331 struct omap_mcbsp
*mcbsp
= platform_get_drvdata(pdev
);
1333 platform_set_drvdata(pdev
, NULL
);
1336 if (mcbsp
->pdata
&& mcbsp
->pdata
->ops
&&
1337 mcbsp
->pdata
->ops
->free
)
1338 mcbsp
->pdata
->ops
->free(mcbsp
->id
);
1340 omap34xx_device_exit(mcbsp
);
1342 clk_disable(mcbsp
->fclk
);
1343 clk_disable(mcbsp
->iclk
);
1344 clk_put(mcbsp
->fclk
);
1345 clk_put(mcbsp
->iclk
);
1347 iounmap(mcbsp
->io_base
);
1358 static struct platform_driver omap_mcbsp_driver
= {
1359 .probe
= omap_mcbsp_probe
,
1360 .remove
= __devexit_p(omap_mcbsp_remove
),
1362 .name
= "omap-mcbsp",
1366 int __init
omap_mcbsp_init(void)
1368 /* Register the McBSP driver */
1369 return platform_driver_register(&omap_mcbsp_driver
);