2 * sound/soc/omap/mcbsp.c
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
7 * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
8 * Peter Ujfalusi <peter.ujfalusi@ti.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * Multichannel mode not supported.
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/device.h>
20 #include <linux/platform_device.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>
27 #include <linux/pm_runtime.h>
29 #include <linux/platform_data/asoc-ti-mcbsp.h>
33 static void omap_mcbsp_write(struct omap_mcbsp
*mcbsp
, u16 reg
, u32 val
)
35 void __iomem
*addr
= mcbsp
->io_base
+ reg
* mcbsp
->pdata
->reg_step
;
37 if (mcbsp
->pdata
->reg_size
== 2) {
38 ((u16
*)mcbsp
->reg_cache
)[reg
] = (u16
)val
;
39 writew_relaxed((u16
)val
, addr
);
41 ((u32
*)mcbsp
->reg_cache
)[reg
] = val
;
42 writel_relaxed(val
, addr
);
46 static int omap_mcbsp_read(struct omap_mcbsp
*mcbsp
, u16 reg
, bool from_cache
)
48 void __iomem
*addr
= mcbsp
->io_base
+ reg
* mcbsp
->pdata
->reg_step
;
50 if (mcbsp
->pdata
->reg_size
== 2) {
51 return !from_cache
? readw_relaxed(addr
) :
52 ((u16
*)mcbsp
->reg_cache
)[reg
];
54 return !from_cache
? readl_relaxed(addr
) :
55 ((u32
*)mcbsp
->reg_cache
)[reg
];
59 static void omap_mcbsp_st_write(struct omap_mcbsp
*mcbsp
, u16 reg
, u32 val
)
61 writel_relaxed(val
, mcbsp
->st_data
->io_base_st
+ reg
);
64 static int omap_mcbsp_st_read(struct omap_mcbsp
*mcbsp
, u16 reg
)
66 return readl_relaxed(mcbsp
->st_data
->io_base_st
+ reg
);
69 #define MCBSP_READ(mcbsp, reg) \
70 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
71 #define MCBSP_WRITE(mcbsp, reg, val) \
72 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
73 #define MCBSP_READ_CACHE(mcbsp, reg) \
74 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
76 #define MCBSP_ST_READ(mcbsp, reg) \
77 omap_mcbsp_st_read(mcbsp, OMAP_ST_REG_##reg)
78 #define MCBSP_ST_WRITE(mcbsp, reg, val) \
79 omap_mcbsp_st_write(mcbsp, OMAP_ST_REG_##reg, val)
81 static void omap_mcbsp_dump_reg(struct omap_mcbsp
*mcbsp
)
83 dev_dbg(mcbsp
->dev
, "**** McBSP%d regs ****\n", mcbsp
->id
);
84 dev_dbg(mcbsp
->dev
, "DRR2: 0x%04x\n",
85 MCBSP_READ(mcbsp
, DRR2
));
86 dev_dbg(mcbsp
->dev
, "DRR1: 0x%04x\n",
87 MCBSP_READ(mcbsp
, DRR1
));
88 dev_dbg(mcbsp
->dev
, "DXR2: 0x%04x\n",
89 MCBSP_READ(mcbsp
, DXR2
));
90 dev_dbg(mcbsp
->dev
, "DXR1: 0x%04x\n",
91 MCBSP_READ(mcbsp
, DXR1
));
92 dev_dbg(mcbsp
->dev
, "SPCR2: 0x%04x\n",
93 MCBSP_READ(mcbsp
, SPCR2
));
94 dev_dbg(mcbsp
->dev
, "SPCR1: 0x%04x\n",
95 MCBSP_READ(mcbsp
, SPCR1
));
96 dev_dbg(mcbsp
->dev
, "RCR2: 0x%04x\n",
97 MCBSP_READ(mcbsp
, RCR2
));
98 dev_dbg(mcbsp
->dev
, "RCR1: 0x%04x\n",
99 MCBSP_READ(mcbsp
, RCR1
));
100 dev_dbg(mcbsp
->dev
, "XCR2: 0x%04x\n",
101 MCBSP_READ(mcbsp
, XCR2
));
102 dev_dbg(mcbsp
->dev
, "XCR1: 0x%04x\n",
103 MCBSP_READ(mcbsp
, XCR1
));
104 dev_dbg(mcbsp
->dev
, "SRGR2: 0x%04x\n",
105 MCBSP_READ(mcbsp
, SRGR2
));
106 dev_dbg(mcbsp
->dev
, "SRGR1: 0x%04x\n",
107 MCBSP_READ(mcbsp
, SRGR1
));
108 dev_dbg(mcbsp
->dev
, "PCR0: 0x%04x\n",
109 MCBSP_READ(mcbsp
, PCR0
));
110 dev_dbg(mcbsp
->dev
, "***********************\n");
113 static irqreturn_t
omap_mcbsp_irq_handler(int irq
, void *dev_id
)
115 struct omap_mcbsp
*mcbsp
= dev_id
;
118 irqst
= MCBSP_READ(mcbsp
, IRQST
);
119 dev_dbg(mcbsp
->dev
, "IRQ callback : 0x%x\n", irqst
);
121 if (irqst
& RSYNCERREN
)
122 dev_err(mcbsp
->dev
, "RX Frame Sync Error!\n");
124 dev_dbg(mcbsp
->dev
, "RX Frame Sync\n");
126 dev_dbg(mcbsp
->dev
, "RX End Of Frame\n");
128 dev_dbg(mcbsp
->dev
, "RX Buffer Threshold Reached\n");
129 if (irqst
& RUNDFLEN
)
130 dev_err(mcbsp
->dev
, "RX Buffer Underflow!\n");
132 dev_err(mcbsp
->dev
, "RX Buffer Overflow!\n");
134 if (irqst
& XSYNCERREN
)
135 dev_err(mcbsp
->dev
, "TX Frame Sync Error!\n");
137 dev_dbg(mcbsp
->dev
, "TX Frame Sync\n");
139 dev_dbg(mcbsp
->dev
, "TX End Of Frame\n");
141 dev_dbg(mcbsp
->dev
, "TX Buffer threshold Reached\n");
142 if (irqst
& XUNDFLEN
)
143 dev_err(mcbsp
->dev
, "TX Buffer Underflow!\n");
145 dev_err(mcbsp
->dev
, "TX Buffer Overflow!\n");
146 if (irqst
& XEMPTYEOFEN
)
147 dev_dbg(mcbsp
->dev
, "TX Buffer empty at end of frame\n");
149 MCBSP_WRITE(mcbsp
, IRQST
, irqst
);
154 static irqreturn_t
omap_mcbsp_tx_irq_handler(int irq
, void *dev_id
)
156 struct omap_mcbsp
*mcbsp_tx
= dev_id
;
159 irqst_spcr2
= MCBSP_READ(mcbsp_tx
, SPCR2
);
160 dev_dbg(mcbsp_tx
->dev
, "TX IRQ callback : 0x%x\n", irqst_spcr2
);
162 if (irqst_spcr2
& XSYNC_ERR
) {
163 dev_err(mcbsp_tx
->dev
, "TX Frame Sync Error! : 0x%x\n",
165 /* Writing zero to XSYNC_ERR clears the IRQ */
166 MCBSP_WRITE(mcbsp_tx
, SPCR2
, MCBSP_READ_CACHE(mcbsp_tx
, SPCR2
));
172 static irqreturn_t
omap_mcbsp_rx_irq_handler(int irq
, void *dev_id
)
174 struct omap_mcbsp
*mcbsp_rx
= dev_id
;
177 irqst_spcr1
= MCBSP_READ(mcbsp_rx
, SPCR1
);
178 dev_dbg(mcbsp_rx
->dev
, "RX IRQ callback : 0x%x\n", irqst_spcr1
);
180 if (irqst_spcr1
& RSYNC_ERR
) {
181 dev_err(mcbsp_rx
->dev
, "RX Frame Sync Error! : 0x%x\n",
183 /* Writing zero to RSYNC_ERR clears the IRQ */
184 MCBSP_WRITE(mcbsp_rx
, SPCR1
, MCBSP_READ_CACHE(mcbsp_rx
, SPCR1
));
191 * omap_mcbsp_config simply write a config to the
193 * You either call this function or set the McBSP registers
194 * by yourself before calling omap_mcbsp_start().
196 void omap_mcbsp_config(struct omap_mcbsp
*mcbsp
,
197 const struct omap_mcbsp_reg_cfg
*config
)
199 dev_dbg(mcbsp
->dev
, "Configuring McBSP%d phys_base: 0x%08lx\n",
200 mcbsp
->id
, mcbsp
->phys_base
);
202 /* We write the given config */
203 MCBSP_WRITE(mcbsp
, SPCR2
, config
->spcr2
);
204 MCBSP_WRITE(mcbsp
, SPCR1
, config
->spcr1
);
205 MCBSP_WRITE(mcbsp
, RCR2
, config
->rcr2
);
206 MCBSP_WRITE(mcbsp
, RCR1
, config
->rcr1
);
207 MCBSP_WRITE(mcbsp
, XCR2
, config
->xcr2
);
208 MCBSP_WRITE(mcbsp
, XCR1
, config
->xcr1
);
209 MCBSP_WRITE(mcbsp
, SRGR2
, config
->srgr2
);
210 MCBSP_WRITE(mcbsp
, SRGR1
, config
->srgr1
);
211 MCBSP_WRITE(mcbsp
, MCR2
, config
->mcr2
);
212 MCBSP_WRITE(mcbsp
, MCR1
, config
->mcr1
);
213 MCBSP_WRITE(mcbsp
, PCR0
, config
->pcr0
);
214 if (mcbsp
->pdata
->has_ccr
) {
215 MCBSP_WRITE(mcbsp
, XCCR
, config
->xccr
);
216 MCBSP_WRITE(mcbsp
, RCCR
, config
->rccr
);
218 /* Enable wakeup behavior */
219 if (mcbsp
->pdata
->has_wakeup
)
220 MCBSP_WRITE(mcbsp
, WAKEUPEN
, XRDYEN
| RRDYEN
);
222 /* Enable TX/RX sync error interrupts by default */
224 MCBSP_WRITE(mcbsp
, IRQEN
, RSYNCERREN
| XSYNCERREN
|
225 RUNDFLEN
| ROVFLEN
| XUNDFLEN
| XOVFLEN
);
229 * omap_mcbsp_dma_reg_params - returns the address of mcbsp data register
231 * @stream - indicates the direction of data flow (rx or tx)
233 * Returns the address of mcbsp data transmit register or data receive register
234 * to be used by DMA for transferring/receiving data based on the value of
235 * @stream for the requested mcbsp given by @id
237 static int omap_mcbsp_dma_reg_params(struct omap_mcbsp
*mcbsp
,
242 if (mcbsp
->pdata
->reg_size
== 2) {
244 data_reg
= OMAP_MCBSP_REG_DRR1
;
246 data_reg
= OMAP_MCBSP_REG_DXR1
;
249 data_reg
= OMAP_MCBSP_REG_DRR
;
251 data_reg
= OMAP_MCBSP_REG_DXR
;
254 return mcbsp
->phys_dma_base
+ data_reg
* mcbsp
->pdata
->reg_step
;
257 static void omap_st_on(struct omap_mcbsp
*mcbsp
)
261 if (mcbsp
->pdata
->force_ick_on
)
262 mcbsp
->pdata
->force_ick_on(mcbsp
->st_data
->mcbsp_iclk
, true);
264 /* Disable Sidetone clock auto-gating for normal operation */
265 w
= MCBSP_ST_READ(mcbsp
, SYSCONFIG
);
266 MCBSP_ST_WRITE(mcbsp
, SYSCONFIG
, w
& ~(ST_AUTOIDLE
));
268 /* Enable McBSP Sidetone */
269 w
= MCBSP_READ(mcbsp
, SSELCR
);
270 MCBSP_WRITE(mcbsp
, SSELCR
, w
| SIDETONEEN
);
272 /* Enable Sidetone from Sidetone Core */
273 w
= MCBSP_ST_READ(mcbsp
, SSELCR
);
274 MCBSP_ST_WRITE(mcbsp
, SSELCR
, w
| ST_SIDETONEEN
);
277 static void omap_st_off(struct omap_mcbsp
*mcbsp
)
281 w
= MCBSP_ST_READ(mcbsp
, SSELCR
);
282 MCBSP_ST_WRITE(mcbsp
, SSELCR
, w
& ~(ST_SIDETONEEN
));
284 w
= MCBSP_READ(mcbsp
, SSELCR
);
285 MCBSP_WRITE(mcbsp
, SSELCR
, w
& ~(SIDETONEEN
));
287 /* Enable Sidetone clock auto-gating to reduce power consumption */
288 w
= MCBSP_ST_READ(mcbsp
, SYSCONFIG
);
289 MCBSP_ST_WRITE(mcbsp
, SYSCONFIG
, w
| ST_AUTOIDLE
);
291 if (mcbsp
->pdata
->force_ick_on
)
292 mcbsp
->pdata
->force_ick_on(mcbsp
->st_data
->mcbsp_iclk
, false);
295 static void omap_st_fir_write(struct omap_mcbsp
*mcbsp
, s16
*fir
)
299 val
= MCBSP_ST_READ(mcbsp
, SSELCR
);
301 if (val
& ST_COEFFWREN
)
302 MCBSP_ST_WRITE(mcbsp
, SSELCR
, val
& ~(ST_COEFFWREN
));
304 MCBSP_ST_WRITE(mcbsp
, SSELCR
, val
| ST_COEFFWREN
);
306 for (i
= 0; i
< 128; i
++)
307 MCBSP_ST_WRITE(mcbsp
, SFIRCR
, fir
[i
]);
311 val
= MCBSP_ST_READ(mcbsp
, SSELCR
);
312 while (!(val
& ST_COEFFWRDONE
) && (++i
< 1000))
313 val
= MCBSP_ST_READ(mcbsp
, SSELCR
);
315 MCBSP_ST_WRITE(mcbsp
, SSELCR
, val
& ~(ST_COEFFWREN
));
318 dev_err(mcbsp
->dev
, "McBSP FIR load error!\n");
321 static void omap_st_chgain(struct omap_mcbsp
*mcbsp
)
324 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
326 w
= MCBSP_ST_READ(mcbsp
, SSELCR
);
328 MCBSP_ST_WRITE(mcbsp
, SGAINCR
, ST_CH0GAIN(st_data
->ch0gain
) | \
329 ST_CH1GAIN(st_data
->ch1gain
));
332 int omap_st_set_chgain(struct omap_mcbsp
*mcbsp
, int channel
, s16 chgain
)
334 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
340 spin_lock_irq(&mcbsp
->lock
);
342 st_data
->ch0gain
= chgain
;
343 else if (channel
== 1)
344 st_data
->ch1gain
= chgain
;
348 if (st_data
->enabled
)
349 omap_st_chgain(mcbsp
);
350 spin_unlock_irq(&mcbsp
->lock
);
355 int omap_st_get_chgain(struct omap_mcbsp
*mcbsp
, int channel
, s16
*chgain
)
357 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
363 spin_lock_irq(&mcbsp
->lock
);
365 *chgain
= st_data
->ch0gain
;
366 else if (channel
== 1)
367 *chgain
= st_data
->ch1gain
;
370 spin_unlock_irq(&mcbsp
->lock
);
375 static int omap_st_start(struct omap_mcbsp
*mcbsp
)
377 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
379 if (st_data
->enabled
&& !st_data
->running
) {
380 omap_st_fir_write(mcbsp
, st_data
->taps
);
381 omap_st_chgain(mcbsp
);
385 st_data
->running
= 1;
392 int omap_st_enable(struct omap_mcbsp
*mcbsp
)
394 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
399 spin_lock_irq(&mcbsp
->lock
);
400 st_data
->enabled
= 1;
401 omap_st_start(mcbsp
);
402 spin_unlock_irq(&mcbsp
->lock
);
407 static int omap_st_stop(struct omap_mcbsp
*mcbsp
)
409 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
411 if (st_data
->running
) {
414 st_data
->running
= 0;
421 int omap_st_disable(struct omap_mcbsp
*mcbsp
)
423 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
429 spin_lock_irq(&mcbsp
->lock
);
431 st_data
->enabled
= 0;
432 spin_unlock_irq(&mcbsp
->lock
);
437 int omap_st_is_enabled(struct omap_mcbsp
*mcbsp
)
439 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
444 return st_data
->enabled
;
448 * omap_mcbsp_set_rx_threshold configures the transmit threshold in words.
449 * The threshold parameter is 1 based, and it is converted (threshold - 1)
450 * for the THRSH2 register.
452 void omap_mcbsp_set_tx_threshold(struct omap_mcbsp
*mcbsp
, u16 threshold
)
454 if (mcbsp
->pdata
->buffer_size
== 0)
457 if (threshold
&& threshold
<= mcbsp
->max_tx_thres
)
458 MCBSP_WRITE(mcbsp
, THRSH2
, threshold
- 1);
462 * omap_mcbsp_set_rx_threshold configures the receive threshold in words.
463 * The threshold parameter is 1 based, and it is converted (threshold - 1)
464 * for the THRSH1 register.
466 void omap_mcbsp_set_rx_threshold(struct omap_mcbsp
*mcbsp
, u16 threshold
)
468 if (mcbsp
->pdata
->buffer_size
== 0)
471 if (threshold
&& threshold
<= mcbsp
->max_rx_thres
)
472 MCBSP_WRITE(mcbsp
, THRSH1
, threshold
- 1);
476 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
478 u16
omap_mcbsp_get_tx_delay(struct omap_mcbsp
*mcbsp
)
482 if (mcbsp
->pdata
->buffer_size
== 0)
485 /* Returns the number of free locations in the buffer */
486 buffstat
= MCBSP_READ(mcbsp
, XBUFFSTAT
);
488 /* Number of slots are different in McBSP ports */
489 return mcbsp
->pdata
->buffer_size
- buffstat
;
493 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
494 * to reach the threshold value (when the DMA will be triggered to read it)
496 u16
omap_mcbsp_get_rx_delay(struct omap_mcbsp
*mcbsp
)
498 u16 buffstat
, threshold
;
500 if (mcbsp
->pdata
->buffer_size
== 0)
503 /* Returns the number of used locations in the buffer */
504 buffstat
= MCBSP_READ(mcbsp
, RBUFFSTAT
);
506 threshold
= MCBSP_READ(mcbsp
, THRSH1
);
508 /* Return the number of location till we reach the threshold limit */
509 if (threshold
<= buffstat
)
512 return threshold
- buffstat
;
515 int omap_mcbsp_request(struct omap_mcbsp
*mcbsp
)
520 reg_cache
= kzalloc(mcbsp
->reg_cache_size
, GFP_KERNEL
);
525 spin_lock(&mcbsp
->lock
);
527 dev_err(mcbsp
->dev
, "McBSP%d is currently in use\n",
534 mcbsp
->reg_cache
= reg_cache
;
535 spin_unlock(&mcbsp
->lock
);
537 if (mcbsp
->pdata
&& mcbsp
->pdata
->ops
&& mcbsp
->pdata
->ops
->request
)
538 mcbsp
->pdata
->ops
->request(mcbsp
->id
- 1);
541 * Make sure that transmitter, receiver and sample-rate generator are
542 * not running before activating IRQs.
544 MCBSP_WRITE(mcbsp
, SPCR1
, 0);
545 MCBSP_WRITE(mcbsp
, SPCR2
, 0);
548 err
= request_irq(mcbsp
->irq
, omap_mcbsp_irq_handler
, 0,
549 "McBSP", (void *)mcbsp
);
551 dev_err(mcbsp
->dev
, "Unable to request IRQ\n");
552 goto err_clk_disable
;
555 err
= request_irq(mcbsp
->tx_irq
, omap_mcbsp_tx_irq_handler
, 0,
556 "McBSP TX", (void *)mcbsp
);
558 dev_err(mcbsp
->dev
, "Unable to request TX IRQ\n");
559 goto err_clk_disable
;
562 err
= request_irq(mcbsp
->rx_irq
, omap_mcbsp_rx_irq_handler
, 0,
563 "McBSP RX", (void *)mcbsp
);
565 dev_err(mcbsp
->dev
, "Unable to request RX IRQ\n");
572 free_irq(mcbsp
->tx_irq
, (void *)mcbsp
);
574 if (mcbsp
->pdata
&& mcbsp
->pdata
->ops
&& mcbsp
->pdata
->ops
->free
)
575 mcbsp
->pdata
->ops
->free(mcbsp
->id
- 1);
577 /* Disable wakeup behavior */
578 if (mcbsp
->pdata
->has_wakeup
)
579 MCBSP_WRITE(mcbsp
, WAKEUPEN
, 0);
581 spin_lock(&mcbsp
->lock
);
583 mcbsp
->reg_cache
= NULL
;
585 spin_unlock(&mcbsp
->lock
);
591 void omap_mcbsp_free(struct omap_mcbsp
*mcbsp
)
595 if (mcbsp
->pdata
&& mcbsp
->pdata
->ops
&& mcbsp
->pdata
->ops
->free
)
596 mcbsp
->pdata
->ops
->free(mcbsp
->id
- 1);
598 /* Disable wakeup behavior */
599 if (mcbsp
->pdata
->has_wakeup
)
600 MCBSP_WRITE(mcbsp
, WAKEUPEN
, 0);
602 /* Disable interrupt requests */
604 MCBSP_WRITE(mcbsp
, IRQEN
, 0);
607 free_irq(mcbsp
->irq
, (void *)mcbsp
);
609 free_irq(mcbsp
->rx_irq
, (void *)mcbsp
);
610 free_irq(mcbsp
->tx_irq
, (void *)mcbsp
);
613 reg_cache
= mcbsp
->reg_cache
;
616 * Select CLKS source from internal source unconditionally before
617 * marking the McBSP port as free.
618 * If the external clock source via MCBSP_CLKS pin has been selected the
619 * system will refuse to enter idle if the CLKS pin source is not reset
620 * back to internal source.
623 omap2_mcbsp_set_clks_src(mcbsp
, MCBSP_CLKS_PRCM_SRC
);
625 spin_lock(&mcbsp
->lock
);
627 dev_err(mcbsp
->dev
, "McBSP%d was not reserved\n", mcbsp
->id
);
630 mcbsp
->reg_cache
= NULL
;
631 spin_unlock(&mcbsp
->lock
);
637 * Here we start the McBSP, by enabling transmitter, receiver or both.
638 * If no transmitter or receiver is active prior calling, then sample-rate
639 * generator and frame sync are started.
641 void omap_mcbsp_start(struct omap_mcbsp
*mcbsp
, int tx
, int rx
)
647 omap_st_start(mcbsp
);
649 /* Only enable SRG, if McBSP is master */
650 w
= MCBSP_READ_CACHE(mcbsp
, PCR0
);
651 if (w
& (FSXM
| FSRM
| CLKXM
| CLKRM
))
652 enable_srg
= !((MCBSP_READ_CACHE(mcbsp
, SPCR2
) |
653 MCBSP_READ_CACHE(mcbsp
, SPCR1
)) & 1);
656 /* Start the sample generator */
657 w
= MCBSP_READ_CACHE(mcbsp
, SPCR2
);
658 MCBSP_WRITE(mcbsp
, SPCR2
, w
| (1 << 6));
661 /* Enable transmitter and receiver */
663 w
= MCBSP_READ_CACHE(mcbsp
, SPCR2
);
664 MCBSP_WRITE(mcbsp
, SPCR2
, w
| tx
);
667 w
= MCBSP_READ_CACHE(mcbsp
, SPCR1
);
668 MCBSP_WRITE(mcbsp
, SPCR1
, w
| rx
);
671 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
672 * REVISIT: 100us may give enough time for two CLKSRG, however
673 * due to some unknown PM related, clock gating etc. reason it
679 /* Start frame sync */
680 w
= MCBSP_READ_CACHE(mcbsp
, SPCR2
);
681 MCBSP_WRITE(mcbsp
, SPCR2
, w
| (1 << 7));
684 if (mcbsp
->pdata
->has_ccr
) {
685 /* Release the transmitter and receiver */
686 w
= MCBSP_READ_CACHE(mcbsp
, XCCR
);
687 w
&= ~(tx
? XDISABLE
: 0);
688 MCBSP_WRITE(mcbsp
, XCCR
, w
);
689 w
= MCBSP_READ_CACHE(mcbsp
, RCCR
);
690 w
&= ~(rx
? RDISABLE
: 0);
691 MCBSP_WRITE(mcbsp
, RCCR
, w
);
694 /* Dump McBSP Regs */
695 omap_mcbsp_dump_reg(mcbsp
);
698 void omap_mcbsp_stop(struct omap_mcbsp
*mcbsp
, int tx
, int rx
)
703 /* Reset transmitter */
705 if (mcbsp
->pdata
->has_ccr
) {
706 w
= MCBSP_READ_CACHE(mcbsp
, XCCR
);
707 w
|= (tx
? XDISABLE
: 0);
708 MCBSP_WRITE(mcbsp
, XCCR
, w
);
710 w
= MCBSP_READ_CACHE(mcbsp
, SPCR2
);
711 MCBSP_WRITE(mcbsp
, SPCR2
, w
& ~tx
);
715 if (mcbsp
->pdata
->has_ccr
) {
716 w
= MCBSP_READ_CACHE(mcbsp
, RCCR
);
717 w
|= (rx
? RDISABLE
: 0);
718 MCBSP_WRITE(mcbsp
, RCCR
, w
);
720 w
= MCBSP_READ_CACHE(mcbsp
, SPCR1
);
721 MCBSP_WRITE(mcbsp
, SPCR1
, w
& ~rx
);
723 idle
= !((MCBSP_READ_CACHE(mcbsp
, SPCR2
) |
724 MCBSP_READ_CACHE(mcbsp
, SPCR1
)) & 1);
727 /* Reset the sample rate generator */
728 w
= MCBSP_READ_CACHE(mcbsp
, SPCR2
);
729 MCBSP_WRITE(mcbsp
, SPCR2
, w
& ~(1 << 6));
736 int omap2_mcbsp_set_clks_src(struct omap_mcbsp
*mcbsp
, u8 fck_src_id
)
742 if (fck_src_id
== MCBSP_CLKS_PAD_SRC
)
744 else if (fck_src_id
== MCBSP_CLKS_PRCM_SRC
)
749 fck_src
= clk_get(mcbsp
->dev
, src
);
750 if (IS_ERR(fck_src
)) {
751 dev_err(mcbsp
->dev
, "CLKS: could not clk_get() %s\n", src
);
755 pm_runtime_put_sync(mcbsp
->dev
);
757 r
= clk_set_parent(mcbsp
->fclk
, fck_src
);
759 dev_err(mcbsp
->dev
, "CLKS: could not clk_set_parent() to %s\n",
765 pm_runtime_get_sync(mcbsp
->dev
);
773 #define max_thres(m) (mcbsp->pdata->buffer_size)
774 #define valid_threshold(m, val) ((val) <= max_thres(m))
775 #define THRESHOLD_PROP_BUILDER(prop) \
776 static ssize_t prop##_show(struct device *dev, \
777 struct device_attribute *attr, char *buf) \
779 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
781 return sprintf(buf, "%u\n", mcbsp->prop); \
784 static ssize_t prop##_store(struct device *dev, \
785 struct device_attribute *attr, \
786 const char *buf, size_t size) \
788 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
792 status = kstrtoul(buf, 0, &val); \
796 if (!valid_threshold(mcbsp, val)) \
803 static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
805 THRESHOLD_PROP_BUILDER(max_tx_thres
);
806 THRESHOLD_PROP_BUILDER(max_rx_thres
);
808 static const char *dma_op_modes
[] = {
809 "element", "threshold",
812 static ssize_t
dma_op_mode_show(struct device
*dev
,
813 struct device_attribute
*attr
, char *buf
)
815 struct omap_mcbsp
*mcbsp
= dev_get_drvdata(dev
);
816 int dma_op_mode
, i
= 0;
818 const char * const *s
;
820 dma_op_mode
= mcbsp
->dma_op_mode
;
822 for (s
= &dma_op_modes
[i
]; i
< ARRAY_SIZE(dma_op_modes
); s
++, i
++) {
823 if (dma_op_mode
== i
)
824 len
+= sprintf(buf
+ len
, "[%s] ", *s
);
826 len
+= sprintf(buf
+ len
, "%s ", *s
);
828 len
+= sprintf(buf
+ len
, "\n");
833 static ssize_t
dma_op_mode_store(struct device
*dev
,
834 struct device_attribute
*attr
,
835 const char *buf
, size_t size
)
837 struct omap_mcbsp
*mcbsp
= dev_get_drvdata(dev
);
840 i
= sysfs_match_string(dma_op_modes
, buf
);
844 spin_lock_irq(&mcbsp
->lock
);
849 mcbsp
->dma_op_mode
= i
;
852 spin_unlock_irq(&mcbsp
->lock
);
857 static DEVICE_ATTR_RW(dma_op_mode
);
859 static const struct attribute
*additional_attrs
[] = {
860 &dev_attr_max_tx_thres
.attr
,
861 &dev_attr_max_rx_thres
.attr
,
862 &dev_attr_dma_op_mode
.attr
,
866 static const struct attribute_group additional_attr_group
= {
867 .attrs
= (struct attribute
**)additional_attrs
,
870 static ssize_t
st_taps_show(struct device
*dev
,
871 struct device_attribute
*attr
, char *buf
)
873 struct omap_mcbsp
*mcbsp
= dev_get_drvdata(dev
);
874 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
878 spin_lock_irq(&mcbsp
->lock
);
879 for (i
= 0; i
< st_data
->nr_taps
; i
++)
880 status
+= sprintf(&buf
[status
], (i
? ", %d" : "%d"),
883 status
+= sprintf(&buf
[status
], "\n");
884 spin_unlock_irq(&mcbsp
->lock
);
889 static ssize_t
st_taps_store(struct device
*dev
,
890 struct device_attribute
*attr
,
891 const char *buf
, size_t size
)
893 struct omap_mcbsp
*mcbsp
= dev_get_drvdata(dev
);
894 struct omap_mcbsp_st_data
*st_data
= mcbsp
->st_data
;
895 int val
, tmp
, status
, i
= 0;
897 spin_lock_irq(&mcbsp
->lock
);
898 memset(st_data
->taps
, 0, sizeof(st_data
->taps
));
899 st_data
->nr_taps
= 0;
902 status
= sscanf(buf
, "%d%n", &val
, &tmp
);
903 if (status
< 0 || status
== 0) {
907 if (val
< -32768 || val
> 32767) {
911 st_data
->taps
[i
++] = val
;
918 st_data
->nr_taps
= i
;
921 spin_unlock_irq(&mcbsp
->lock
);
926 static DEVICE_ATTR_RW(st_taps
);
928 static const struct attribute
*sidetone_attrs
[] = {
929 &dev_attr_st_taps
.attr
,
933 static const struct attribute_group sidetone_attr_group
= {
934 .attrs
= (struct attribute
**)sidetone_attrs
,
937 static int omap_st_add(struct omap_mcbsp
*mcbsp
, struct resource
*res
)
939 struct omap_mcbsp_st_data
*st_data
;
942 st_data
= devm_kzalloc(mcbsp
->dev
, sizeof(*mcbsp
->st_data
), GFP_KERNEL
);
946 st_data
->mcbsp_iclk
= clk_get(mcbsp
->dev
, "ick");
947 if (IS_ERR(st_data
->mcbsp_iclk
)) {
949 "Failed to get ick, sidetone might be broken\n");
950 st_data
->mcbsp_iclk
= NULL
;
953 st_data
->io_base_st
= devm_ioremap(mcbsp
->dev
, res
->start
,
955 if (!st_data
->io_base_st
)
958 err
= sysfs_create_group(&mcbsp
->dev
->kobj
, &sidetone_attr_group
);
962 mcbsp
->st_data
= st_data
;
967 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
968 * 730 has only 2 McBSP, and both of them are MPU peripherals.
970 int omap_mcbsp_init(struct platform_device
*pdev
)
972 struct omap_mcbsp
*mcbsp
= platform_get_drvdata(pdev
);
973 struct resource
*res
;
976 spin_lock_init(&mcbsp
->lock
);
979 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "mpu");
981 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
983 mcbsp
->io_base
= devm_ioremap_resource(&pdev
->dev
, res
);
984 if (IS_ERR(mcbsp
->io_base
))
985 return PTR_ERR(mcbsp
->io_base
);
987 mcbsp
->phys_base
= res
->start
;
988 mcbsp
->reg_cache_size
= resource_size(res
);
990 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "dma");
992 mcbsp
->phys_dma_base
= mcbsp
->phys_base
;
994 mcbsp
->phys_dma_base
= res
->start
;
997 * OMAP1, 2 uses two interrupt lines: TX, RX
998 * OMAP2430, OMAP3 SoC have combined IRQ line as well.
999 * OMAP4 and newer SoC only have the combined IRQ line.
1000 * Use the combined IRQ if available since it gives better debugging
1003 mcbsp
->irq
= platform_get_irq_byname(pdev
, "common");
1004 if (mcbsp
->irq
== -ENXIO
) {
1005 mcbsp
->tx_irq
= platform_get_irq_byname(pdev
, "tx");
1007 if (mcbsp
->tx_irq
== -ENXIO
) {
1008 mcbsp
->irq
= platform_get_irq(pdev
, 0);
1011 mcbsp
->rx_irq
= platform_get_irq_byname(pdev
, "rx");
1016 if (!pdev
->dev
.of_node
) {
1017 res
= platform_get_resource_byname(pdev
, IORESOURCE_DMA
, "tx");
1019 dev_err(&pdev
->dev
, "invalid tx DMA channel\n");
1022 mcbsp
->dma_req
[0] = res
->start
;
1023 mcbsp
->dma_data
[0].filter_data
= &mcbsp
->dma_req
[0];
1025 res
= platform_get_resource_byname(pdev
, IORESOURCE_DMA
, "rx");
1027 dev_err(&pdev
->dev
, "invalid rx DMA channel\n");
1030 mcbsp
->dma_req
[1] = res
->start
;
1031 mcbsp
->dma_data
[1].filter_data
= &mcbsp
->dma_req
[1];
1033 mcbsp
->dma_data
[0].filter_data
= "tx";
1034 mcbsp
->dma_data
[1].filter_data
= "rx";
1037 mcbsp
->dma_data
[0].addr
= omap_mcbsp_dma_reg_params(mcbsp
, 0);
1038 mcbsp
->dma_data
[0].maxburst
= 4;
1040 mcbsp
->dma_data
[1].addr
= omap_mcbsp_dma_reg_params(mcbsp
, 1);
1041 mcbsp
->dma_data
[1].maxburst
= 4;
1043 mcbsp
->fclk
= clk_get(&pdev
->dev
, "fck");
1044 if (IS_ERR(mcbsp
->fclk
)) {
1045 ret
= PTR_ERR(mcbsp
->fclk
);
1046 dev_err(mcbsp
->dev
, "unable to get fck: %d\n", ret
);
1050 mcbsp
->dma_op_mode
= MCBSP_DMA_MODE_ELEMENT
;
1051 if (mcbsp
->pdata
->buffer_size
) {
1053 * Initially configure the maximum thresholds to a safe value.
1054 * The McBSP FIFO usage with these values should not go under
1056 * If the whole FIFO without safety buffer is used, than there
1057 * is a possibility that the DMA will be not able to push the
1058 * new data on time, causing channel shifts in runtime.
1060 mcbsp
->max_tx_thres
= max_thres(mcbsp
) - 0x10;
1061 mcbsp
->max_rx_thres
= max_thres(mcbsp
) - 0x10;
1063 ret
= sysfs_create_group(&mcbsp
->dev
->kobj
,
1064 &additional_attr_group
);
1067 "Unable to create additional controls\n");
1071 mcbsp
->max_tx_thres
= -EINVAL
;
1072 mcbsp
->max_rx_thres
= -EINVAL
;
1075 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "sidetone");
1077 ret
= omap_st_add(mcbsp
, res
);
1080 "Unable to create sidetone controls\n");
1088 if (mcbsp
->pdata
->buffer_size
)
1089 sysfs_remove_group(&mcbsp
->dev
->kobj
, &additional_attr_group
);
1091 clk_put(mcbsp
->fclk
);
1095 void omap_mcbsp_cleanup(struct omap_mcbsp
*mcbsp
)
1097 if (mcbsp
->pdata
->buffer_size
)
1098 sysfs_remove_group(&mcbsp
->dev
->kobj
, &additional_attr_group
);
1100 if (mcbsp
->st_data
) {
1101 sysfs_remove_group(&mcbsp
->dev
->kobj
, &sidetone_attr_group
);
1102 clk_put(mcbsp
->st_data
->mcbsp_iclk
);