blob: 4a16e778966bb4fc64346c8d535ff45877bfd8e1 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
Peter Ujfalusi71e822e2012-01-26 12:47:22 +02002 * sound/soc/omap/mcbsp.c
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01003 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
6 *
Peter Ujfalusi71e822e2012-01-26 12:47:22 +02007 * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
8 * Peter Ujfalusi <peter.ujfalusi@ti.com>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01009 *
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.
13 *
14 * Multichannel mode not supported.
15 */
16
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/device.h>
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030020#include <linux/platform_device.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010021#include <linux/interrupt.h>
22#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000023#include <linux/clk.h>
Tony Lindgren04fbf6a2007-02-12 10:50:53 -080024#include <linux/delay.h>
Eduardo Valentinfb78d802008-07-03 12:24:39 +030025#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Peter Ujfalusif1991312012-08-16 16:41:00 +030027#include <linux/pm_runtime.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010028
Arnd Bergmann22037472012-08-24 15:21:06 +020029#include <linux/platform_data/asoc-ti-mcbsp.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010030
Peter Ujfalusi219f4312012-02-03 13:11:47 +020031#include "mcbsp.h"
32
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070033static void omap_mcbsp_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030034{
Jarkko Nikulacdc715142011-09-26 10:45:39 +030035 void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
36
37 if (mcbsp->pdata->reg_size == 2) {
38 ((u16 *)mcbsp->reg_cache)[reg] = (u16)val;
Victor Kamensky1b488a42013-11-16 02:01:19 +020039 writew_relaxed((u16)val, addr);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080040 } else {
Jarkko Nikulacdc715142011-09-26 10:45:39 +030041 ((u32 *)mcbsp->reg_cache)[reg] = val;
Victor Kamensky1b488a42013-11-16 02:01:19 +020042 writel_relaxed(val, addr);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080043 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030044}
45
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070046static int omap_mcbsp_read(struct omap_mcbsp *mcbsp, u16 reg, bool from_cache)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030047{
Jarkko Nikulacdc715142011-09-26 10:45:39 +030048 void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
49
50 if (mcbsp->pdata->reg_size == 2) {
Victor Kamensky1b488a42013-11-16 02:01:19 +020051 return !from_cache ? readw_relaxed(addr) :
Jarkko Nikulacdc715142011-09-26 10:45:39 +030052 ((u16 *)mcbsp->reg_cache)[reg];
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080053 } else {
Victor Kamensky1b488a42013-11-16 02:01:19 +020054 return !from_cache ? readl_relaxed(addr) :
Jarkko Nikulacdc715142011-09-26 10:45:39 +030055 ((u32 *)mcbsp->reg_cache)[reg];
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080056 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030057}
58
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070059static void omap_mcbsp_st_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Eero Nurkkalad912fa92010-02-22 12:21:11 +000060{
Victor Kamensky1b488a42013-11-16 02:01:19 +020061 writel_relaxed(val, mcbsp->st_data->io_base_st + reg);
Eero Nurkkalad912fa92010-02-22 12:21:11 +000062}
63
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070064static int omap_mcbsp_st_read(struct omap_mcbsp *mcbsp, u16 reg)
Eero Nurkkalad912fa92010-02-22 12:21:11 +000065{
Victor Kamensky1b488a42013-11-16 02:01:19 +020066 return readl_relaxed(mcbsp->st_data->io_base_st + reg);
Eero Nurkkalad912fa92010-02-22 12:21:11 +000067}
Eero Nurkkalad912fa92010-02-22 12:21:11 +000068
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080069#define MCBSP_READ(mcbsp, reg) \
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080070 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080071#define MCBSP_WRITE(mcbsp, reg, val) \
72 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080073#define MCBSP_READ_CACHE(mcbsp, reg) \
74 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030075
Eero Nurkkalad912fa92010-02-22 12:21:11 +000076#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)
80
Peter Ujfalusi45656b42012-02-14 18:20:58 +020081static void omap_mcbsp_dump_reg(struct omap_mcbsp *mcbsp)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010082{
Chandra Shekharb4b58f52008-10-08 10:01:39 +030083 dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
84 dev_dbg(mcbsp->dev, "DRR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080085 MCBSP_READ(mcbsp, DRR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030086 dev_dbg(mcbsp->dev, "DRR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080087 MCBSP_READ(mcbsp, DRR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030088 dev_dbg(mcbsp->dev, "DXR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080089 MCBSP_READ(mcbsp, DXR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030090 dev_dbg(mcbsp->dev, "DXR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080091 MCBSP_READ(mcbsp, DXR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030092 dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080093 MCBSP_READ(mcbsp, SPCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030094 dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080095 MCBSP_READ(mcbsp, SPCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030096 dev_dbg(mcbsp->dev, "RCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080097 MCBSP_READ(mcbsp, RCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030098 dev_dbg(mcbsp->dev, "RCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080099 MCBSP_READ(mcbsp, RCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300100 dev_dbg(mcbsp->dev, "XCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800101 MCBSP_READ(mcbsp, XCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300102 dev_dbg(mcbsp->dev, "XCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800103 MCBSP_READ(mcbsp, XCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300104 dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800105 MCBSP_READ(mcbsp, SRGR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300106 dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800107 MCBSP_READ(mcbsp, SRGR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300108 dev_dbg(mcbsp->dev, "PCR0: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800109 MCBSP_READ(mcbsp, PCR0));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300110 dev_dbg(mcbsp->dev, "***********************\n");
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100111}
112
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200113static irqreturn_t omap_mcbsp_irq_handler(int irq, void *dev_id)
114{
115 struct omap_mcbsp *mcbsp = dev_id;
116 u16 irqst;
117
118 irqst = MCBSP_READ(mcbsp, IRQST);
119 dev_dbg(mcbsp->dev, "IRQ callback : 0x%x\n", irqst);
120
121 if (irqst & RSYNCERREN)
122 dev_err(mcbsp->dev, "RX Frame Sync Error!\n");
123 if (irqst & RFSREN)
124 dev_dbg(mcbsp->dev, "RX Frame Sync\n");
125 if (irqst & REOFEN)
126 dev_dbg(mcbsp->dev, "RX End Of Frame\n");
127 if (irqst & RRDYEN)
128 dev_dbg(mcbsp->dev, "RX Buffer Threshold Reached\n");
129 if (irqst & RUNDFLEN)
130 dev_err(mcbsp->dev, "RX Buffer Underflow!\n");
131 if (irqst & ROVFLEN)
132 dev_err(mcbsp->dev, "RX Buffer Overflow!\n");
133
134 if (irqst & XSYNCERREN)
135 dev_err(mcbsp->dev, "TX Frame Sync Error!\n");
136 if (irqst & XFSXEN)
137 dev_dbg(mcbsp->dev, "TX Frame Sync\n");
138 if (irqst & XEOFEN)
139 dev_dbg(mcbsp->dev, "TX End Of Frame\n");
140 if (irqst & XRDYEN)
141 dev_dbg(mcbsp->dev, "TX Buffer threshold Reached\n");
142 if (irqst & XUNDFLEN)
143 dev_err(mcbsp->dev, "TX Buffer Underflow!\n");
144 if (irqst & XOVFLEN)
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");
148
149 MCBSP_WRITE(mcbsp, IRQST, irqst);
150
151 return IRQ_HANDLED;
152}
153
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700154static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100155{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400156 struct omap_mcbsp *mcbsp_tx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700157 u16 irqst_spcr2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100158
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800159 irqst_spcr2 = MCBSP_READ(mcbsp_tx, SPCR2);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700160 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100161
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700162 if (irqst_spcr2 & XSYNC_ERR) {
163 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
164 irqst_spcr2);
165 /* Writing zero to XSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000166 MCBSP_WRITE(mcbsp_tx, SPCR2, MCBSP_READ_CACHE(mcbsp_tx, SPCR2));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700167 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300168
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100169 return IRQ_HANDLED;
170}
171
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700172static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100173{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400174 struct omap_mcbsp *mcbsp_rx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700175 u16 irqst_spcr1;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100176
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800177 irqst_spcr1 = MCBSP_READ(mcbsp_rx, SPCR1);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700178 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100179
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700180 if (irqst_spcr1 & RSYNC_ERR) {
181 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
182 irqst_spcr1);
183 /* Writing zero to RSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000184 MCBSP_WRITE(mcbsp_rx, SPCR1, MCBSP_READ_CACHE(mcbsp_rx, SPCR1));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700185 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300186
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100187 return IRQ_HANDLED;
188}
189
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100190/*
191 * omap_mcbsp_config simply write a config to the
192 * appropriate McBSP.
193 * You either call this function or set the McBSP registers
194 * by yourself before calling omap_mcbsp_start().
195 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200196void omap_mcbsp_config(struct omap_mcbsp *mcbsp,
197 const struct omap_mcbsp_reg_cfg *config)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100198{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300199 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
200 mcbsp->id, mcbsp->phys_base);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100201
202 /* We write the given config */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800203 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);
Jarkko Nikula88408232011-09-26 10:45:41 +0300214 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800215 MCBSP_WRITE(mcbsp, XCCR, config->xccr);
216 MCBSP_WRITE(mcbsp, RCCR, config->rccr);
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200217 }
Peter Ujfalusi08905d82012-03-05 11:27:40 +0200218 /* Enable wakeup behavior */
219 if (mcbsp->pdata->has_wakeup)
220 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200221
222 /* Enable TX/RX sync error interrupts by default */
223 if (mcbsp->irq)
224 MCBSP_WRITE(mcbsp, IRQEN, RSYNCERREN | XSYNCERREN);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100225}
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100226
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530227/**
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530228 * omap_mcbsp_dma_reg_params - returns the address of mcbsp data register
229 * @id - mcbsp id
230 * @stream - indicates the direction of data flow (rx or tx)
231 *
232 * Returns the address of mcbsp data transmit register or data receive register
233 * to be used by DMA for transferring/receiving data based on the value of
234 * @stream for the requested mcbsp given by @id
235 */
Peter Ujfalusib8fb4902012-02-14 15:41:29 +0200236static int omap_mcbsp_dma_reg_params(struct omap_mcbsp *mcbsp,
237 unsigned int stream)
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530238{
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530239 int data_reg;
240
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300241 if (mcbsp->pdata->reg_size == 2) {
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530242 if (stream)
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300243 data_reg = OMAP_MCBSP_REG_DRR1;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530244 else
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300245 data_reg = OMAP_MCBSP_REG_DXR1;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530246 } else {
247 if (stream)
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300248 data_reg = OMAP_MCBSP_REG_DRR;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530249 else
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300250 data_reg = OMAP_MCBSP_REG_DXR;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530251 }
252
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300253 return mcbsp->phys_dma_base + data_reg * mcbsp->pdata->reg_step;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530254}
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530255
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000256static void omap_st_on(struct omap_mcbsp *mcbsp)
257{
258 unsigned int w;
259
Jarkko Nikula1743d142011-09-26 10:45:44 +0300260 if (mcbsp->pdata->enable_st_clock)
261 mcbsp->pdata->enable_st_clock(mcbsp->id, 1);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000262
Peter Ujfalusid4e44f12016-03-18 12:28:49 +0200263 /* Disable Sidetone clock auto-gating for normal operation */
264 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
265 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w & ~(ST_AUTOIDLE));
266
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000267 /* Enable McBSP Sidetone */
268 w = MCBSP_READ(mcbsp, SSELCR);
269 MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN);
270
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000271 /* Enable Sidetone from Sidetone Core */
272 w = MCBSP_ST_READ(mcbsp, SSELCR);
273 MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN);
274}
275
276static void omap_st_off(struct omap_mcbsp *mcbsp)
277{
278 unsigned int w;
279
280 w = MCBSP_ST_READ(mcbsp, SSELCR);
281 MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN));
282
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000283 w = MCBSP_READ(mcbsp, SSELCR);
284 MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN));
285
Peter Ujfalusid4e44f12016-03-18 12:28:49 +0200286 /* Enable Sidetone clock auto-gating to reduce power consumption */
287 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
288 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w | ST_AUTOIDLE);
289
Jarkko Nikula1743d142011-09-26 10:45:44 +0300290 if (mcbsp->pdata->enable_st_clock)
291 mcbsp->pdata->enable_st_clock(mcbsp->id, 0);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000292}
293
294static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir)
295{
296 u16 val, i;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000297
298 val = MCBSP_ST_READ(mcbsp, SSELCR);
299
300 if (val & ST_COEFFWREN)
301 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
302
303 MCBSP_ST_WRITE(mcbsp, SSELCR, val | ST_COEFFWREN);
304
305 for (i = 0; i < 128; i++)
306 MCBSP_ST_WRITE(mcbsp, SFIRCR, fir[i]);
307
308 i = 0;
309
310 val = MCBSP_ST_READ(mcbsp, SSELCR);
311 while (!(val & ST_COEFFWRDONE) && (++i < 1000))
312 val = MCBSP_ST_READ(mcbsp, SSELCR);
313
314 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
315
316 if (i == 1000)
317 dev_err(mcbsp->dev, "McBSP FIR load error!\n");
318}
319
320static void omap_st_chgain(struct omap_mcbsp *mcbsp)
321{
322 u16 w;
323 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000324
325 w = MCBSP_ST_READ(mcbsp, SSELCR);
326
327 MCBSP_ST_WRITE(mcbsp, SGAINCR, ST_CH0GAIN(st_data->ch0gain) | \
328 ST_CH1GAIN(st_data->ch1gain));
329}
330
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200331int omap_st_set_chgain(struct omap_mcbsp *mcbsp, int channel, s16 chgain)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000332{
Peter Ujfalusie2002ab2012-02-23 15:38:37 +0200333 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000334 int ret = 0;
335
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000336 if (!st_data)
337 return -ENOENT;
338
339 spin_lock_irq(&mcbsp->lock);
340 if (channel == 0)
341 st_data->ch0gain = chgain;
342 else if (channel == 1)
343 st_data->ch1gain = chgain;
344 else
345 ret = -EINVAL;
346
347 if (st_data->enabled)
348 omap_st_chgain(mcbsp);
349 spin_unlock_irq(&mcbsp->lock);
350
351 return ret;
352}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000353
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200354int omap_st_get_chgain(struct omap_mcbsp *mcbsp, int channel, s16 *chgain)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000355{
Peter Ujfalusie2002ab2012-02-23 15:38:37 +0200356 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000357 int ret = 0;
358
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000359 if (!st_data)
360 return -ENOENT;
361
362 spin_lock_irq(&mcbsp->lock);
363 if (channel == 0)
364 *chgain = st_data->ch0gain;
365 else if (channel == 1)
366 *chgain = st_data->ch1gain;
367 else
368 ret = -EINVAL;
369 spin_unlock_irq(&mcbsp->lock);
370
371 return ret;
372}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000373
374static int omap_st_start(struct omap_mcbsp *mcbsp)
375{
376 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
377
Peter Ujfalusi58db1dc2012-02-23 15:40:55 +0200378 if (st_data->enabled && !st_data->running) {
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000379 omap_st_fir_write(mcbsp, st_data->taps);
380 omap_st_chgain(mcbsp);
381
382 if (!mcbsp->free) {
383 omap_st_on(mcbsp);
384 st_data->running = 1;
385 }
386 }
387
388 return 0;
389}
390
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200391int omap_st_enable(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000392{
Peter Ujfalusie2002ab2012-02-23 15:38:37 +0200393 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000394
395 if (!st_data)
396 return -ENODEV;
397
398 spin_lock_irq(&mcbsp->lock);
399 st_data->enabled = 1;
400 omap_st_start(mcbsp);
401 spin_unlock_irq(&mcbsp->lock);
402
403 return 0;
404}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000405
406static int omap_st_stop(struct omap_mcbsp *mcbsp)
407{
408 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
409
Peter Ujfalusi58db1dc2012-02-23 15:40:55 +0200410 if (st_data->running) {
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000411 if (!mcbsp->free) {
412 omap_st_off(mcbsp);
413 st_data->running = 0;
414 }
415 }
416
417 return 0;
418}
419
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200420int omap_st_disable(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000421{
Peter Ujfalusie2002ab2012-02-23 15:38:37 +0200422 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000423 int ret = 0;
424
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000425 if (!st_data)
426 return -ENODEV;
427
428 spin_lock_irq(&mcbsp->lock);
429 omap_st_stop(mcbsp);
430 st_data->enabled = 0;
431 spin_unlock_irq(&mcbsp->lock);
432
433 return ret;
434}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000435
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200436int omap_st_is_enabled(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000437{
Peter Ujfalusie2002ab2012-02-23 15:38:37 +0200438 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000439
440 if (!st_data)
441 return -ENODEV;
442
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000443 return st_data->enabled;
444}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000445
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300446/*
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300447 * omap_mcbsp_set_rx_threshold configures the transmit threshold in words.
448 * The threshold parameter is 1 based, and it is converted (threshold - 1)
449 * for the THRSH2 register.
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300450 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200451void omap_mcbsp_set_tx_threshold(struct omap_mcbsp *mcbsp, u16 threshold)
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300452{
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300453 if (mcbsp->pdata->buffer_size == 0)
454 return;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300455
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300456 if (threshold && threshold <= mcbsp->max_tx_thres)
457 MCBSP_WRITE(mcbsp, THRSH2, threshold - 1);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300458}
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300459
460/*
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300461 * omap_mcbsp_set_rx_threshold configures the receive threshold in words.
462 * The threshold parameter is 1 based, and it is converted (threshold - 1)
463 * for the THRSH1 register.
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300464 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200465void omap_mcbsp_set_rx_threshold(struct omap_mcbsp *mcbsp, u16 threshold)
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300466{
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300467 if (mcbsp->pdata->buffer_size == 0)
468 return;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300469
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300470 if (threshold && threshold <= mcbsp->max_rx_thres)
471 MCBSP_WRITE(mcbsp, THRSH1, threshold - 1);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300472}
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300473
474/*
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200475 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
476 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200477u16 omap_mcbsp_get_tx_delay(struct omap_mcbsp *mcbsp)
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200478{
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200479 u16 buffstat;
480
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300481 if (mcbsp->pdata->buffer_size == 0)
482 return 0;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200483
484 /* Returns the number of free locations in the buffer */
485 buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
486
487 /* Number of slots are different in McBSP ports */
Peter Ujfalusif10b8ad2010-06-03 07:39:34 +0300488 return mcbsp->pdata->buffer_size - buffstat;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200489}
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200490
491/*
492 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
493 * to reach the threshold value (when the DMA will be triggered to read it)
494 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200495u16 omap_mcbsp_get_rx_delay(struct omap_mcbsp *mcbsp)
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200496{
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200497 u16 buffstat, threshold;
498
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300499 if (mcbsp->pdata->buffer_size == 0)
500 return 0;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200501
502 /* Returns the number of used locations in the buffer */
503 buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
504 /* RX threshold */
505 threshold = MCBSP_READ(mcbsp, THRSH1);
506
507 /* Return the number of location till we reach the threshold limit */
508 if (threshold <= buffstat)
509 return 0;
510 else
511 return threshold - buffstat;
512}
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200513
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200514int omap_mcbsp_request(struct omap_mcbsp *mcbsp)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100515{
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800516 void *reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100517 int err;
518
Jarkko Nikulaac6747ca2011-09-26 10:45:43 +0300519 reg_cache = kzalloc(mcbsp->reg_cache_size, GFP_KERNEL);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800520 if (!reg_cache) {
521 return -ENOMEM;
522 }
523
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300524 spin_lock(&mcbsp->lock);
525 if (!mcbsp->free) {
526 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
527 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800528 err = -EBUSY;
529 goto err_kfree;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100530 }
531
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800532 mcbsp->free = false;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800533 mcbsp->reg_cache = reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300534 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100535
Russell Kingb820ce42009-01-23 10:26:46 +0000536 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200537 mcbsp->pdata->ops->request(mcbsp->id - 1);
Russell Kingb820ce42009-01-23 10:26:46 +0000538
Jarkko Nikula5a070552008-10-08 10:01:41 +0300539 /*
540 * Make sure that transmitter, receiver and sample-rate generator are
541 * not running before activating IRQs.
542 */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800543 MCBSP_WRITE(mcbsp, SPCR1, 0);
544 MCBSP_WRITE(mcbsp, SPCR2, 0);
Jarkko Nikula5a070552008-10-08 10:01:41 +0300545
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200546 if (mcbsp->irq) {
547 err = request_irq(mcbsp->irq, omap_mcbsp_irq_handler, 0,
548 "McBSP", (void *)mcbsp);
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000549 if (err != 0) {
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200550 dev_err(mcbsp->dev, "Unable to request IRQ\n");
551 goto err_clk_disable;
552 }
553 } else {
554 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler, 0,
555 "McBSP TX", (void *)mcbsp);
556 if (err != 0) {
557 dev_err(mcbsp->dev, "Unable to request TX IRQ\n");
558 goto err_clk_disable;
559 }
560
561 err = request_irq(mcbsp->rx_irq, omap_mcbsp_rx_irq_handler, 0,
562 "McBSP RX", (void *)mcbsp);
563 if (err != 0) {
564 dev_err(mcbsp->dev, "Unable to request RX IRQ\n");
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000565 goto err_free_irq;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100566 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100567 }
568
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100569 return 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800570err_free_irq:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800571 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800572err_clk_disable:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800573 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200574 mcbsp->pdata->ops->free(mcbsp->id - 1);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800575
Jarkko Nikula1a645882011-09-26 10:45:40 +0300576 /* Disable wakeup behavior */
577 if (mcbsp->pdata->has_wakeup)
578 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800579
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800580 spin_lock(&mcbsp->lock);
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800581 mcbsp->free = true;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800582 mcbsp->reg_cache = NULL;
583err_kfree:
584 spin_unlock(&mcbsp->lock);
585 kfree(reg_cache);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800586
587 return err;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100588}
589
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200590void omap_mcbsp_free(struct omap_mcbsp *mcbsp)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100591{
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800592 void *reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300593
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300594 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200595 mcbsp->pdata->ops->free(mcbsp->id - 1);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300596
Jarkko Nikula1a645882011-09-26 10:45:40 +0300597 /* Disable wakeup behavior */
598 if (mcbsp->pdata->has_wakeup)
599 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300600
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200601 /* Disable interrupt requests */
602 if (mcbsp->irq)
603 MCBSP_WRITE(mcbsp, IRQEN, 0);
604
605 if (mcbsp->irq) {
606 free_irq(mcbsp->irq, (void *)mcbsp);
607 } else {
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000608 free_irq(mcbsp->rx_irq, (void *)mcbsp);
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200609 free_irq(mcbsp->tx_irq, (void *)mcbsp);
610 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100611
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800612 reg_cache = mcbsp->reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100613
Peter Ujfalusie3866152012-03-05 11:32:27 +0200614 /*
615 * Select CLKS source from internal source unconditionally before
616 * marking the McBSP port as free.
617 * If the external clock source via MCBSP_CLKS pin has been selected the
618 * system will refuse to enter idle if the CLKS pin source is not reset
619 * back to internal source.
620 */
Tony Lindgrene6507942012-11-21 09:42:25 -0800621 if (!mcbsp_omap1())
Peter Ujfalusie3866152012-03-05 11:32:27 +0200622 omap2_mcbsp_set_clks_src(mcbsp, MCBSP_CLKS_PRCM_SRC);
623
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800624 spin_lock(&mcbsp->lock);
625 if (mcbsp->free)
626 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
627 else
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800628 mcbsp->free = true;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800629 mcbsp->reg_cache = NULL;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300630 spin_unlock(&mcbsp->lock);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800631
Markus Elfringbb66f2d2014-11-17 14:05:27 +0100632 kfree(reg_cache);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100633}
634
635/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300636 * Here we start the McBSP, by enabling transmitter, receiver or both.
637 * If no transmitter or receiver is active prior calling, then sample-rate
638 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100639 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200640void omap_mcbsp_start(struct omap_mcbsp *mcbsp, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100641{
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000642 int enable_srg = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100643 u16 w;
644
Jarkko Nikulaf821eec2011-09-26 10:45:45 +0300645 if (mcbsp->st_data)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000646 omap_st_start(mcbsp);
647
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000648 /* Only enable SRG, if McBSP is master */
649 w = MCBSP_READ_CACHE(mcbsp, PCR0);
650 if (w & (FSXM | FSRM | CLKXM | CLKRM))
651 enable_srg = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
652 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300653
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000654 if (enable_srg) {
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300655 /* Start the sample generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800656 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800657 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300658 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100659
660 /* Enable transmitter and receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300661 tx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800662 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800663 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100664
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300665 rx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800666 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800667 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100668
Eduardo Valentin44a63112009-08-20 16:18:09 +0300669 /*
670 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
671 * REVISIT: 100us may give enough time for two CLKSRG, however
672 * due to some unknown PM related, clock gating etc. reason it
673 * is now at 500us.
674 */
675 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100676
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000677 if (enable_srg) {
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300678 /* Start frame sync */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800679 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800680 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300681 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100682
Jarkko Nikula88408232011-09-26 10:45:41 +0300683 if (mcbsp->pdata->has_ccr) {
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300684 /* Release the transmitter and receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800685 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300686 w &= ~(tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800687 MCBSP_WRITE(mcbsp, XCCR, w);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800688 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300689 w &= ~(rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800690 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300691 }
692
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100693 /* Dump McBSP Regs */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200694 omap_mcbsp_dump_reg(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100695}
696
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200697void omap_mcbsp_stop(struct omap_mcbsp *mcbsp, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100698{
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300699 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100700 u16 w;
701
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300702 /* Reset transmitter */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300703 tx &= 1;
Jarkko Nikula88408232011-09-26 10:45:41 +0300704 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800705 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300706 w |= (tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800707 MCBSP_WRITE(mcbsp, XCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300708 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800709 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800710 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100711
712 /* Reset receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300713 rx &= 1;
Jarkko Nikula88408232011-09-26 10:45:41 +0300714 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800715 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulaa93d4ed2009-10-14 09:56:35 -0700716 w |= (rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800717 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300718 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800719 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800720 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100721
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800722 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
723 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300724
725 if (idle) {
726 /* Reset the sample rate generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800727 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800728 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300729 }
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000730
Jarkko Nikulaf821eec2011-09-26 10:45:45 +0300731 if (mcbsp->st_data)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000732 omap_st_stop(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100733}
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100734
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200735int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id)
Paul Walmsley69d042d2011-07-01 08:52:25 +0000736{
Peter Ujfalusif1991312012-08-16 16:41:00 +0300737 struct clk *fck_src;
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300738 const char *src;
Peter Ujfalusif1991312012-08-16 16:41:00 +0300739 int r;
Paul Walmsley69d042d2011-07-01 08:52:25 +0000740
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300741 if (fck_src_id == MCBSP_CLKS_PAD_SRC)
Peter Ujfalusif1991312012-08-16 16:41:00 +0300742 src = "pad_fck";
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300743 else if (fck_src_id == MCBSP_CLKS_PRCM_SRC)
Peter Ujfalusif1991312012-08-16 16:41:00 +0300744 src = "prcm_fck";
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300745 else
746 return -EINVAL;
747
Peter Ujfalusif1991312012-08-16 16:41:00 +0300748 fck_src = clk_get(mcbsp->dev, src);
749 if (IS_ERR(fck_src)) {
750 dev_err(mcbsp->dev, "CLKS: could not clk_get() %s\n", src);
Peter Ujfalusicd1f08c2012-03-08 11:01:37 +0200751 return -EINVAL;
752 }
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300753
Peter Ujfalusif1991312012-08-16 16:41:00 +0300754 pm_runtime_put_sync(mcbsp->dev);
755
756 r = clk_set_parent(mcbsp->fclk, fck_src);
757 if (r) {
758 dev_err(mcbsp->dev, "CLKS: could not clk_set_parent() to %s\n",
759 src);
760 clk_put(fck_src);
761 return r;
762 }
763
764 pm_runtime_get_sync(mcbsp->dev);
765
766 clk_put(fck_src);
767
768 return 0;
769
Paul Walmsley69d042d2011-07-01 08:52:25 +0000770}
Paul Walmsley69d042d2011-07-01 08:52:25 +0000771
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300772#define max_thres(m) (mcbsp->pdata->buffer_size)
773#define valid_threshold(m, val) ((val) <= max_thres(m))
774#define THRESHOLD_PROP_BUILDER(prop) \
775static ssize_t prop##_show(struct device *dev, \
776 struct device_attribute *attr, char *buf) \
777{ \
778 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
779 \
780 return sprintf(buf, "%u\n", mcbsp->prop); \
781} \
782 \
783static ssize_t prop##_store(struct device *dev, \
784 struct device_attribute *attr, \
785 const char *buf, size_t size) \
786{ \
787 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
788 unsigned long val; \
789 int status; \
790 \
Jingoo Hanb785a492013-07-19 16:24:59 +0900791 status = kstrtoul(buf, 0, &val); \
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300792 if (status) \
793 return status; \
794 \
795 if (!valid_threshold(mcbsp, val)) \
796 return -EDOM; \
797 \
798 mcbsp->prop = val; \
799 return size; \
800} \
801 \
802static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
803
804THRESHOLD_PROP_BUILDER(max_tx_thres);
805THRESHOLD_PROP_BUILDER(max_rx_thres);
806
Jarkko Nikula9b300502009-08-24 17:45:50 +0300807static const char *dma_op_modes[] = {
Peter Ujfalusi09fa37a2012-03-15 12:29:49 +0200808 "element", "threshold",
Jarkko Nikula9b300502009-08-24 17:45:50 +0300809};
810
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300811static ssize_t dma_op_mode_show(struct device *dev,
812 struct device_attribute *attr, char *buf)
813{
814 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +0300815 int dma_op_mode, i = 0;
816 ssize_t len = 0;
817 const char * const *s;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300818
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300819 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300820
Jarkko Nikula9b300502009-08-24 17:45:50 +0300821 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
822 if (dma_op_mode == i)
823 len += sprintf(buf + len, "[%s] ", *s);
824 else
825 len += sprintf(buf + len, "%s ", *s);
826 }
827 len += sprintf(buf + len, "\n");
828
829 return len;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300830}
831
832static ssize_t dma_op_mode_store(struct device *dev,
833 struct device_attribute *attr,
834 const char *buf, size_t size)
835{
836 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +0300837 const char * const *s;
838 int i = 0;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300839
Jarkko Nikula9b300502009-08-24 17:45:50 +0300840 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
841 if (sysfs_streq(buf, *s))
842 break;
843
844 if (i == ARRAY_SIZE(dma_op_modes))
845 return -EINVAL;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300846
847 spin_lock_irq(&mcbsp->lock);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300848 if (!mcbsp->free) {
849 size = -EBUSY;
850 goto unlock;
851 }
Jarkko Nikula9b300502009-08-24 17:45:50 +0300852 mcbsp->dma_op_mode = i;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300853
854unlock:
855 spin_unlock_irq(&mcbsp->lock);
856
857 return size;
858}
859
860static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
861
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300862static const struct attribute *additional_attrs[] = {
863 &dev_attr_max_tx_thres.attr,
864 &dev_attr_max_rx_thres.attr,
865 &dev_attr_dma_op_mode.attr,
866 NULL,
867};
868
869static const struct attribute_group additional_attr_group = {
870 .attrs = (struct attribute **)additional_attrs,
871};
872
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000873static ssize_t st_taps_show(struct device *dev,
874 struct device_attribute *attr, char *buf)
875{
876 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
877 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
878 ssize_t status = 0;
879 int i;
880
881 spin_lock_irq(&mcbsp->lock);
882 for (i = 0; i < st_data->nr_taps; i++)
883 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
884 st_data->taps[i]);
885 if (i)
886 status += sprintf(&buf[status], "\n");
887 spin_unlock_irq(&mcbsp->lock);
888
889 return status;
890}
891
892static ssize_t st_taps_store(struct device *dev,
893 struct device_attribute *attr,
894 const char *buf, size_t size)
895{
896 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
897 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
898 int val, tmp, status, i = 0;
899
900 spin_lock_irq(&mcbsp->lock);
901 memset(st_data->taps, 0, sizeof(st_data->taps));
902 st_data->nr_taps = 0;
903
904 do {
905 status = sscanf(buf, "%d%n", &val, &tmp);
906 if (status < 0 || status == 0) {
907 size = -EINVAL;
908 goto out;
909 }
910 if (val < -32768 || val > 32767) {
911 size = -EINVAL;
912 goto out;
913 }
914 st_data->taps[i++] = val;
915 buf += tmp;
916 if (*buf != ',')
917 break;
918 buf++;
919 } while (1);
920
921 st_data->nr_taps = i;
922
923out:
924 spin_unlock_irq(&mcbsp->lock);
925
926 return size;
927}
928
929static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
930
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000931static const struct attribute *sidetone_attrs[] = {
932 &dev_attr_st_taps.attr,
933 NULL,
934};
935
936static const struct attribute_group sidetone_attr_group = {
937 .attrs = (struct attribute **)sidetone_attrs,
938};
939
Bill Pemberton7ff60002012-12-07 09:26:29 -0500940static int omap_st_add(struct omap_mcbsp *mcbsp, struct resource *res)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000941{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000942 struct omap_mcbsp_st_data *st_data;
943 int err;
944
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200945 st_data = devm_kzalloc(mcbsp->dev, sizeof(*mcbsp->st_data), GFP_KERNEL);
946 if (!st_data)
947 return -ENOMEM;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000948
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200949 st_data->io_base_st = devm_ioremap(mcbsp->dev, res->start,
950 resource_size(res));
951 if (!st_data->io_base_st)
952 return -ENOMEM;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000953
954 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
955 if (err)
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200956 return err;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000957
958 mcbsp->st_data = st_data;
959 return 0;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000960}
961
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100962/*
963 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
964 * 730 has only 2 McBSP, and both of them are MPU peripherals.
965 */
Bill Pemberton7ff60002012-12-07 09:26:29 -0500966int omap_mcbsp_init(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100967{
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200968 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800969 struct resource *res;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300970 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100971
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300972 spin_lock_init(&mcbsp->lock);
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800973 mcbsp->free = true;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300974
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800975 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
Axel Lin5aec8922015-08-24 16:49:05 +0800976 if (!res)
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800977 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Axel Lin5aec8922015-08-24 16:49:05 +0800978
979 mcbsp->io_base = devm_ioremap_resource(&pdev->dev, res);
980 if (IS_ERR(mcbsp->io_base))
981 return PTR_ERR(mcbsp->io_base);
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200982
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800983 mcbsp->phys_base = res->start;
Jarkko Nikulaac6747ca2011-09-26 10:45:43 +0300984 mcbsp->reg_cache_size = resource_size(res);
Russell Kingd592dd12008-09-04 14:25:42 +0100985
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800986 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dma");
987 if (!res)
988 mcbsp->phys_dma_base = mcbsp->phys_base;
989 else
990 mcbsp->phys_dma_base = res->start;
991
Peter Ujfalusi35d210f2012-03-19 17:05:39 +0200992 /*
993 * OMAP1, 2 uses two interrupt lines: TX, RX
994 * OMAP2430, OMAP3 SoC have combined IRQ line as well.
995 * OMAP4 and newer SoC only have the combined IRQ line.
996 * Use the combined IRQ if available since it gives better debugging
997 * possibilities.
998 */
999 mcbsp->irq = platform_get_irq_byname(pdev, "common");
1000 if (mcbsp->irq == -ENXIO) {
1001 mcbsp->tx_irq = platform_get_irq_byname(pdev, "tx");
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001002
Peter Ujfalusi35d210f2012-03-19 17:05:39 +02001003 if (mcbsp->tx_irq == -ENXIO) {
1004 mcbsp->irq = platform_get_irq(pdev, 0);
1005 mcbsp->tx_irq = 0;
1006 } else {
1007 mcbsp->rx_irq = platform_get_irq_byname(pdev, "rx");
1008 mcbsp->irq = 0;
1009 }
Peter Ujfalusi73c95222012-03-07 11:15:37 +02001010 }
Kishon Vijay Abraham Icb7e9de2011-02-24 15:16:50 +05301011
Peter Ujfalusi9ab1fac2013-07-11 14:35:46 +02001012 if (!pdev->dev.of_node) {
1013 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1014 if (!res) {
1015 dev_err(&pdev->dev, "invalid tx DMA channel\n");
1016 return -ENODEV;
1017 }
1018 mcbsp->dma_req[0] = res->start;
1019 mcbsp->dma_data[0].filter_data = &mcbsp->dma_req[0];
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001020
Peter Ujfalusi9ab1fac2013-07-11 14:35:46 +02001021 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1022 if (!res) {
1023 dev_err(&pdev->dev, "invalid rx DMA channel\n");
1024 return -ENODEV;
1025 }
1026 mcbsp->dma_req[1] = res->start;
1027 mcbsp->dma_data[1].filter_data = &mcbsp->dma_req[1];
1028 } else {
1029 mcbsp->dma_data[0].filter_data = "tx";
1030 mcbsp->dma_data[1].filter_data = "rx";
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001031 }
Peter Ujfalusi9ab1fac2013-07-11 14:35:46 +02001032
Lars-Peter Clausen09ae3aa2013-04-03 11:06:05 +02001033 mcbsp->dma_data[0].addr = omap_mcbsp_dma_reg_params(mcbsp, 0);
1034 mcbsp->dma_data[0].maxburst = 4;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001035
Peter Ujfalusi9ab1fac2013-07-11 14:35:46 +02001036 mcbsp->dma_data[1].addr = omap_mcbsp_dma_reg_params(mcbsp, 1);
1037 mcbsp->dma_data[1].maxburst = 4;
1038
Russell Kingb820ce42009-01-23 10:26:46 +00001039 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1040 if (IS_ERR(mcbsp->fclk)) {
1041 ret = PTR_ERR(mcbsp->fclk);
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001042 dev_err(mcbsp->dev, "unable to get fck: %d\n", ret);
1043 return ret;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001044 }
1045
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001046 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
1047 if (mcbsp->pdata->buffer_size) {
1048 /*
1049 * Initially configure the maximum thresholds to a safe value.
1050 * The McBSP FIFO usage with these values should not go under
1051 * 16 locations.
1052 * If the whole FIFO without safety buffer is used, than there
1053 * is a possibility that the DMA will be not able to push the
1054 * new data on time, causing channel shifts in runtime.
1055 */
1056 mcbsp->max_tx_thres = max_thres(mcbsp) - 0x10;
1057 mcbsp->max_rx_thres = max_thres(mcbsp) - 0x10;
1058
1059 ret = sysfs_create_group(&mcbsp->dev->kobj,
1060 &additional_attr_group);
1061 if (ret) {
1062 dev_err(mcbsp->dev,
1063 "Unable to create additional controls\n");
1064 goto err_thres;
1065 }
1066 } else {
1067 mcbsp->max_tx_thres = -EINVAL;
1068 mcbsp->max_rx_thres = -EINVAL;
1069 }
1070
Jarkko Nikulaf821eec2011-09-26 10:45:45 +03001071 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "sidetone");
1072 if (res) {
1073 ret = omap_st_add(mcbsp, res);
1074 if (ret) {
1075 dev_err(mcbsp->dev,
1076 "Unable to create sidetone controls\n");
1077 goto err_st;
1078 }
1079 }
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001080
Russell Kingd592dd12008-09-04 14:25:42 +01001081 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001082
Jarkko Nikulaf821eec2011-09-26 10:45:45 +03001083err_st:
1084 if (mcbsp->pdata->buffer_size)
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001085 sysfs_remove_group(&mcbsp->dev->kobj, &additional_attr_group);
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001086err_thres:
1087 clk_put(mcbsp->fclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001088 return ret;
1089}
1090
Bill Pemberton7ff60002012-12-07 09:26:29 -05001091void omap_mcbsp_sysfs_remove(struct omap_mcbsp *mcbsp)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001092{
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001093 if (mcbsp->pdata->buffer_size)
1094 sysfs_remove_group(&mcbsp->dev->kobj, &additional_attr_group);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001095
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001096 if (mcbsp->st_data)
1097 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001098}