blob: f0aad26cdb3166ea18456cdfafec5bce35835ac5 [file] [log] [blame]
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001/*
2 * ALSA SoC Texas Instruments TLV320DAC33 codec driver
3 *
Peter Ujfalusi93864cf2011-05-03 18:11:36 +03004 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03005 *
6 * Copyright: (C) 2009 Nokia Corporation
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/pm.h>
29#include <linux/i2c.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030030#include <linux/interrupt.h>
31#include <linux/gpio.h>
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020032#include <linux/regulator/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030034#include <sound/core.h>
35#include <sound/pcm.h>
36#include <sound/pcm_params.h>
37#include <sound/soc.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030038#include <sound/initval.h>
39#include <sound/tlv.h>
40
41#include <sound/tlv320dac33-plat.h>
42#include "tlv320dac33.h"
43
Peter Ujfalusi549675e2010-12-22 10:45:17 +020044/*
45 * The internal FIFO is 24576 bytes long
46 * It can be configured to hold 16bit or 24bit samples
47 * In 16bit configuration the FIFO can hold 6144 stereo samples
48 * In 24bit configuration the FIFO can hold 4096 stereo samples
49 */
50#define DAC33_FIFO_SIZE_16BIT 6144
51#define DAC33_FIFO_SIZE_24BIT 4096
52#define DAC33_MODE7_MARGIN 10 /* Safety margin for FIFO in Mode7 */
Peter Ujfalusi42603932010-04-23 10:09:59 +030053
Peter Ujfalusi76f471272010-04-23 10:10:00 +030054#define BURST_BASEFREQ_HZ 49152000
55
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030056#define SAMPLES_TO_US(rate, samples) \
Axel Linc29429f32011-09-29 12:09:57 +080057 (1000000000 / (((rate) * 1000) / (samples)))
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030058
59#define US_TO_SAMPLES(rate, us) \
Axel Linc29429f32011-09-29 12:09:57 +080060 ((rate) / (1000000 / ((us) < 1000000 ? (us) : 1000000)))
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030061
Peter Ujfalusia577b312010-07-28 15:26:55 +030062#define UTHR_FROM_PERIOD_SIZE(samples, playrate, burstrate) \
Axel Linc29429f32011-09-29 12:09:57 +080063 (((samples)*5000) / (((burstrate)*5000) / ((burstrate) - (playrate))))
Peter Ujfalusia577b312010-07-28 15:26:55 +030064
Peter Ujfalusiad05c032010-04-30 14:59:36 +030065static void dac33_calculate_times(struct snd_pcm_substream *substream);
66static int dac33_prepare_chip(struct snd_pcm_substream *substream);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030067
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030068enum dac33_state {
69 DAC33_IDLE = 0,
70 DAC33_PREFILL,
71 DAC33_PLAYBACK,
72 DAC33_FLUSH,
73};
74
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +020075enum dac33_fifo_modes {
76 DAC33_FIFO_BYPASS = 0,
77 DAC33_FIFO_MODE1,
Peter Ujfalusi28e05d92009-12-31 10:30:22 +020078 DAC33_FIFO_MODE7,
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +020079 DAC33_FIFO_LAST_MODE,
80};
81
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020082#define DAC33_NUM_SUPPLIES 3
83static const char *dac33_supply_names[DAC33_NUM_SUPPLIES] = {
84 "AVDD",
85 "DVDD",
86 "IOVDD",
87};
88
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030089struct tlv320dac33_priv {
90 struct mutex mutex;
91 struct workqueue_struct *dac33_wq;
92 struct work_struct work;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000093 struct snd_soc_codec *codec;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020094 struct regulator_bulk_data supplies[DAC33_NUM_SUPPLIES];
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +030095 struct snd_pcm_substream *substream;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030096 int power_gpio;
97 int chip_power;
98 int irq;
99 unsigned int refclk;
100
101 unsigned int alarm_threshold; /* set to be half of LATENCY_TIME_MS */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200102 enum dac33_fifo_modes fifo_mode;/* FIFO mode selection */
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200103 unsigned int fifo_size; /* Size of the FIFO in samples */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300104 unsigned int nsample; /* burst read amount from host */
Peter Ujfalusif430a272010-07-28 15:26:54 +0300105 int mode1_latency; /* latency caused by the i2c writes in
106 * us */
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +0200107 u8 burst_bclkdiv; /* BCLK divider value in burst mode */
Peter Ujfalusi76f471272010-04-23 10:10:00 +0300108 unsigned int burst_rate; /* Interface speed in Burst modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300109
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200110 int keep_bclk; /* Keep the BCLK continuously running
111 * in FIFO modes */
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300112 spinlock_t lock;
113 unsigned long long t_stamp1; /* Time stamp for FIFO modes to */
114 unsigned long long t_stamp2; /* calculate the FIFO caused delay */
115
116 unsigned int mode1_us_burst; /* Time to burst read n number of
117 * samples */
118 unsigned int mode7_us_to_lthr; /* Time to reach lthr from uthr */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300119
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +0300120 unsigned int uthr;
121
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300122 enum dac33_state state;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000123 enum snd_soc_control_type control_type;
124 void *control_data;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300125};
126
127static const u8 dac33_reg[DAC33_CACHEREGNUM] = {
1280x00, 0x00, 0x00, 0x00, /* 0x00 - 0x03 */
1290x00, 0x00, 0x00, 0x00, /* 0x04 - 0x07 */
1300x00, 0x00, 0x00, 0x00, /* 0x08 - 0x0b */
1310x00, 0x00, 0x00, 0x00, /* 0x0c - 0x0f */
1320x00, 0x00, 0x00, 0x00, /* 0x10 - 0x13 */
1330x00, 0x00, 0x00, 0x00, /* 0x14 - 0x17 */
1340x00, 0x00, 0x00, 0x00, /* 0x18 - 0x1b */
1350x00, 0x00, 0x00, 0x00, /* 0x1c - 0x1f */
1360x00, 0x00, 0x00, 0x00, /* 0x20 - 0x23 */
1370x00, 0x00, 0x00, 0x00, /* 0x24 - 0x27 */
1380x00, 0x00, 0x00, 0x00, /* 0x28 - 0x2b */
1390x00, 0x00, 0x00, 0x80, /* 0x2c - 0x2f */
1400x80, 0x00, 0x00, 0x00, /* 0x30 - 0x33 */
1410x00, 0x00, 0x00, 0x00, /* 0x34 - 0x37 */
1420x00, 0x00, /* 0x38 - 0x39 */
143/* Registers 0x3a - 0x3f are reserved */
144 0x00, 0x00, /* 0x3a - 0x3b */
1450x00, 0x00, 0x00, 0x00, /* 0x3c - 0x3f */
146
1470x00, 0x00, 0x00, 0x00, /* 0x40 - 0x43 */
1480x00, 0x80, /* 0x44 - 0x45 */
149/* Registers 0x46 - 0x47 are reserved */
150 0x80, 0x80, /* 0x46 - 0x47 */
151
1520x80, 0x00, 0x00, /* 0x48 - 0x4a */
153/* Registers 0x4b - 0x7c are reserved */
154 0x00, /* 0x4b */
1550x00, 0x00, 0x00, 0x00, /* 0x4c - 0x4f */
1560x00, 0x00, 0x00, 0x00, /* 0x50 - 0x53 */
1570x00, 0x00, 0x00, 0x00, /* 0x54 - 0x57 */
1580x00, 0x00, 0x00, 0x00, /* 0x58 - 0x5b */
1590x00, 0x00, 0x00, 0x00, /* 0x5c - 0x5f */
1600x00, 0x00, 0x00, 0x00, /* 0x60 - 0x63 */
1610x00, 0x00, 0x00, 0x00, /* 0x64 - 0x67 */
1620x00, 0x00, 0x00, 0x00, /* 0x68 - 0x6b */
1630x00, 0x00, 0x00, 0x00, /* 0x6c - 0x6f */
1640x00, 0x00, 0x00, 0x00, /* 0x70 - 0x73 */
1650x00, 0x00, 0x00, 0x00, /* 0x74 - 0x77 */
1660x00, 0x00, 0x00, 0x00, /* 0x78 - 0x7b */
1670x00, /* 0x7c */
168
169 0xda, 0x33, 0x03, /* 0x7d - 0x7f */
170};
171
172/* Register read and write */
173static inline unsigned int dac33_read_reg_cache(struct snd_soc_codec *codec,
174 unsigned reg)
175{
176 u8 *cache = codec->reg_cache;
177 if (reg >= DAC33_CACHEREGNUM)
178 return 0;
179
180 return cache[reg];
181}
182
183static inline void dac33_write_reg_cache(struct snd_soc_codec *codec,
184 u8 reg, u8 value)
185{
186 u8 *cache = codec->reg_cache;
187 if (reg >= DAC33_CACHEREGNUM)
188 return;
189
190 cache[reg] = value;
191}
192
193static int dac33_read(struct snd_soc_codec *codec, unsigned int reg,
194 u8 *value)
195{
Mark Brownb2c812e2010-04-14 15:35:19 +0900196 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300197 int val, ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300198
199 *value = reg & 0xff;
200
201 /* If powered off, return the cached value */
202 if (dac33->chip_power) {
203 val = i2c_smbus_read_byte_data(codec->control_data, value[0]);
204 if (val < 0) {
205 dev_err(codec->dev, "Read failed (%d)\n", val);
206 value[0] = dac33_read_reg_cache(codec, reg);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300207 ret = val;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300208 } else {
209 value[0] = val;
210 dac33_write_reg_cache(codec, reg, val);
211 }
212 } else {
213 value[0] = dac33_read_reg_cache(codec, reg);
214 }
215
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300216 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300217}
218
219static int dac33_write(struct snd_soc_codec *codec, unsigned int reg,
220 unsigned int value)
221{
Mark Brownb2c812e2010-04-14 15:35:19 +0900222 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300223 u8 data[2];
224 int ret = 0;
225
226 /*
227 * data is
228 * D15..D8 dac33 register offset
229 * D7...D0 register data
230 */
231 data[0] = reg & 0xff;
232 data[1] = value & 0xff;
233
234 dac33_write_reg_cache(codec, data[0], data[1]);
235 if (dac33->chip_power) {
236 ret = codec->hw_write(codec->control_data, data, 2);
237 if (ret != 2)
238 dev_err(codec->dev, "Write failed (%d)\n", ret);
239 else
240 ret = 0;
241 }
242
243 return ret;
244}
245
246static int dac33_write_locked(struct snd_soc_codec *codec, unsigned int reg,
247 unsigned int value)
248{
Mark Brownb2c812e2010-04-14 15:35:19 +0900249 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300250 int ret;
251
252 mutex_lock(&dac33->mutex);
253 ret = dac33_write(codec, reg, value);
254 mutex_unlock(&dac33->mutex);
255
256 return ret;
257}
258
259#define DAC33_I2C_ADDR_AUTOINC 0x80
260static int dac33_write16(struct snd_soc_codec *codec, unsigned int reg,
261 unsigned int value)
262{
Mark Brownb2c812e2010-04-14 15:35:19 +0900263 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300264 u8 data[3];
265 int ret = 0;
266
267 /*
268 * data is
269 * D23..D16 dac33 register offset
270 * D15..D8 register data MSB
271 * D7...D0 register data LSB
272 */
273 data[0] = reg & 0xff;
274 data[1] = (value >> 8) & 0xff;
275 data[2] = value & 0xff;
276
277 dac33_write_reg_cache(codec, data[0], data[1]);
278 dac33_write_reg_cache(codec, data[0] + 1, data[2]);
279
280 if (dac33->chip_power) {
281 /* We need to set autoincrement mode for 16 bit writes */
282 data[0] |= DAC33_I2C_ADDR_AUTOINC;
283 ret = codec->hw_write(codec->control_data, data, 3);
284 if (ret != 3)
285 dev_err(codec->dev, "Write failed (%d)\n", ret);
286 else
287 ret = 0;
288 }
289
290 return ret;
291}
292
Peter Ujfalusief909d62010-04-30 14:59:33 +0300293static void dac33_init_chip(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300294{
Mark Brownb2c812e2010-04-14 15:35:19 +0900295 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300296
Peter Ujfalusief909d62010-04-30 14:59:33 +0300297 if (unlikely(!dac33->chip_power))
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300298 return;
299
Peter Ujfalusief909d62010-04-30 14:59:33 +0300300 /* A : DAC sample rate Fsref/1.5 */
301 dac33_write(codec, DAC33_DAC_CTRL_A, DAC33_DACRATE(0));
302 /* B : DAC src=normal, not muted */
303 dac33_write(codec, DAC33_DAC_CTRL_B, DAC33_DACSRCR_RIGHT |
304 DAC33_DACSRCL_LEFT);
305 /* C : (defaults) */
306 dac33_write(codec, DAC33_DAC_CTRL_C, 0x00);
307
Peter Ujfalusief909d62010-04-30 14:59:33 +0300308 /* 73 : volume soft stepping control,
309 clock source = internal osc (?) */
310 dac33_write(codec, DAC33_ANA_VOL_SOFT_STEP_CTRL, DAC33_VOLCLKEN);
311
Peter Ujfalusief909d62010-04-30 14:59:33 +0300312 /* Restore only selected registers (gains mostly) */
313 dac33_write(codec, DAC33_LDAC_DIG_VOL_CTRL,
314 dac33_read_reg_cache(codec, DAC33_LDAC_DIG_VOL_CTRL));
315 dac33_write(codec, DAC33_RDAC_DIG_VOL_CTRL,
316 dac33_read_reg_cache(codec, DAC33_RDAC_DIG_VOL_CTRL));
317
318 dac33_write(codec, DAC33_LINEL_TO_LLO_VOL,
319 dac33_read_reg_cache(codec, DAC33_LINEL_TO_LLO_VOL));
320 dac33_write(codec, DAC33_LINER_TO_RLO_VOL,
321 dac33_read_reg_cache(codec, DAC33_LINER_TO_RLO_VOL));
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200322
323 dac33_write(codec, DAC33_OUT_AMP_CTRL,
324 dac33_read_reg_cache(codec, DAC33_OUT_AMP_CTRL));
325
Peter Ujfalusi56a35362011-03-24 08:58:05 +0200326 dac33_write(codec, DAC33_LDAC_PWR_CTRL,
327 dac33_read_reg_cache(codec, DAC33_LDAC_PWR_CTRL));
328 dac33_write(codec, DAC33_RDAC_PWR_CTRL,
329 dac33_read_reg_cache(codec, DAC33_RDAC_PWR_CTRL));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300330}
331
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300332static inline int dac33_read_id(struct snd_soc_codec *codec)
Peter Ujfalusi239fe552010-04-30 14:59:34 +0300333{
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300334 int i, ret = 0;
Peter Ujfalusi239fe552010-04-30 14:59:34 +0300335 u8 reg;
336
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300337 for (i = 0; i < 3; i++) {
338 ret = dac33_read(codec, DAC33_DEVICE_ID_MSB + i, &reg);
339 if (ret < 0)
340 break;
341 }
342
343 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300344}
345
346static inline void dac33_soft_power(struct snd_soc_codec *codec, int power)
347{
348 u8 reg;
349
350 reg = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
351 if (power)
352 reg |= DAC33_PDNALLB;
353 else
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200354 reg &= ~(DAC33_PDNALLB | DAC33_OSCPDNB |
355 DAC33_DACRPDNB | DAC33_DACLPDNB);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300356 dac33_write(codec, DAC33_PWR_CTRL, reg);
357}
358
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200359static inline void dac33_disable_digital(struct snd_soc_codec *codec)
360{
361 u8 reg;
362
363 /* Stop the DAI clock */
364 reg = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
365 reg &= ~DAC33_BCLKON;
366 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_B, reg);
367
368 /* Power down the Oscillator, and DACs */
369 reg = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
370 reg &= ~(DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB);
371 dac33_write(codec, DAC33_PWR_CTRL, reg);
372}
373
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200374static int dac33_hard_power(struct snd_soc_codec *codec, int power)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300375{
Mark Brownb2c812e2010-04-14 15:35:19 +0900376 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300377 int ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300378
379 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300380
381 /* Safety check */
382 if (unlikely(power == dac33->chip_power)) {
Felipe Balbi7fd1d742010-05-17 14:21:45 +0300383 dev_dbg(codec->dev, "Trying to set the same power state: %s\n",
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300384 power ? "ON" : "OFF");
385 goto exit;
386 }
387
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300388 if (power) {
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200389 ret = regulator_bulk_enable(ARRAY_SIZE(dac33->supplies),
390 dac33->supplies);
391 if (ret != 0) {
392 dev_err(codec->dev,
393 "Failed to enable supplies: %d\n", ret);
394 goto exit;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300395 }
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200396
397 if (dac33->power_gpio >= 0)
398 gpio_set_value(dac33->power_gpio, 1);
399
400 dac33->chip_power = 1;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300401 } else {
402 dac33_soft_power(codec, 0);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200403 if (dac33->power_gpio >= 0)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300404 gpio_set_value(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300405
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200406 ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies),
407 dac33->supplies);
408 if (ret != 0) {
409 dev_err(codec->dev,
410 "Failed to disable supplies: %d\n", ret);
411 goto exit;
412 }
413
414 dac33->chip_power = 0;
415 }
416
417exit:
418 mutex_unlock(&dac33->mutex);
419 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300420}
421
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200422static int dac33_playback_event(struct snd_soc_dapm_widget *w,
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300423 struct snd_kcontrol *kcontrol, int event)
424{
425 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(w->codec);
426
427 switch (event) {
428 case SND_SOC_DAPM_PRE_PMU:
429 if (likely(dac33->substream)) {
430 dac33_calculate_times(dac33->substream);
431 dac33_prepare_chip(dac33->substream);
432 }
433 break;
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200434 case SND_SOC_DAPM_POST_PMD:
435 dac33_disable_digital(w->codec);
436 break;
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300437 }
438 return 0;
439}
440
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200441static int dac33_get_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300442 struct snd_ctl_elem_value *ucontrol)
443{
444 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900445 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300446
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200447 ucontrol->value.integer.value[0] = dac33->fifo_mode;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300448
449 return 0;
450}
451
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200452static int dac33_set_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300453 struct snd_ctl_elem_value *ucontrol)
454{
455 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900456 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300457 int ret = 0;
458
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200459 if (dac33->fifo_mode == ucontrol->value.integer.value[0])
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300460 return 0;
461 /* Do not allow changes while stream is running*/
462 if (codec->active)
463 return -EPERM;
464
465 if (ucontrol->value.integer.value[0] < 0 ||
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200466 ucontrol->value.integer.value[0] >= DAC33_FIFO_LAST_MODE)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300467 ret = -EINVAL;
468 else
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200469 dac33->fifo_mode = ucontrol->value.integer.value[0];
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300470
471 return ret;
472}
473
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200474/* Codec operation modes */
475static const char *dac33_fifo_mode_texts[] = {
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200476 "Bypass", "Mode 1", "Mode 7"
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200477};
478
479static const struct soc_enum dac33_fifo_mode_enum =
480 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(dac33_fifo_mode_texts),
481 dac33_fifo_mode_texts);
482
Peter Ujfalusicf4bb6982010-10-13 11:56:28 +0300483/* L/R Line Output Gain */
484static const char *lr_lineout_gain_texts[] = {
485 "Line -12dB DAC 0dB", "Line -6dB DAC 6dB",
486 "Line 0dB DAC 12dB", "Line 6dB DAC 18dB",
487};
488
489static const struct soc_enum l_lineout_gain_enum =
490 SOC_ENUM_SINGLE(DAC33_LDAC_PWR_CTRL, 0,
491 ARRAY_SIZE(lr_lineout_gain_texts),
492 lr_lineout_gain_texts);
493
494static const struct soc_enum r_lineout_gain_enum =
495 SOC_ENUM_SINGLE(DAC33_RDAC_PWR_CTRL, 0,
496 ARRAY_SIZE(lr_lineout_gain_texts),
497 lr_lineout_gain_texts);
498
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300499/*
500 * DACL/R digital volume control:
501 * from 0 dB to -63.5 in 0.5 dB steps
502 * Need to be inverted later on:
503 * 0x00 == 0 dB
504 * 0x7f == -63.5 dB
505 */
506static DECLARE_TLV_DB_SCALE(dac_digivol_tlv, -6350, 50, 0);
507
508static const struct snd_kcontrol_new dac33_snd_controls[] = {
509 SOC_DOUBLE_R_TLV("DAC Digital Playback Volume",
510 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL,
511 0, 0x7f, 1, dac_digivol_tlv),
512 SOC_DOUBLE_R("DAC Digital Playback Switch",
513 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL, 7, 1, 1),
514 SOC_DOUBLE_R("Line to Line Out Volume",
515 DAC33_LINEL_TO_LLO_VOL, DAC33_LINER_TO_RLO_VOL, 0, 127, 1),
Peter Ujfalusicf4bb6982010-10-13 11:56:28 +0300516 SOC_ENUM("Left Line Output Gain", l_lineout_gain_enum),
517 SOC_ENUM("Right Line Output Gain", r_lineout_gain_enum),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300518};
519
Peter Ujfalusia577b312010-07-28 15:26:55 +0300520static const struct snd_kcontrol_new dac33_mode_snd_controls[] = {
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200521 SOC_ENUM_EXT("FIFO Mode", dac33_fifo_mode_enum,
522 dac33_get_fifo_mode, dac33_set_fifo_mode),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300523};
524
525/* Analog bypass */
526static const struct snd_kcontrol_new dac33_dapm_abypassl_control =
527 SOC_DAPM_SINGLE("Switch", DAC33_LINEL_TO_LLO_VOL, 7, 1, 1);
528
529static const struct snd_kcontrol_new dac33_dapm_abypassr_control =
530 SOC_DAPM_SINGLE("Switch", DAC33_LINER_TO_RLO_VOL, 7, 1, 1);
531
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200532/* LOP L/R invert selection */
533static const char *dac33_lr_lom_texts[] = {"DAC", "LOP"};
534
535static const struct soc_enum dac33_left_lom_enum =
536 SOC_ENUM_SINGLE(DAC33_OUT_AMP_CTRL, 3,
537 ARRAY_SIZE(dac33_lr_lom_texts),
538 dac33_lr_lom_texts);
539
540static const struct snd_kcontrol_new dac33_dapm_left_lom_control =
541SOC_DAPM_ENUM("Route", dac33_left_lom_enum);
542
543static const struct soc_enum dac33_right_lom_enum =
544 SOC_ENUM_SINGLE(DAC33_OUT_AMP_CTRL, 2,
545 ARRAY_SIZE(dac33_lr_lom_texts),
546 dac33_lr_lom_texts);
547
548static const struct snd_kcontrol_new dac33_dapm_right_lom_control =
549SOC_DAPM_ENUM("Route", dac33_right_lom_enum);
550
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300551static const struct snd_soc_dapm_widget dac33_dapm_widgets[] = {
552 SND_SOC_DAPM_OUTPUT("LEFT_LO"),
553 SND_SOC_DAPM_OUTPUT("RIGHT_LO"),
554
555 SND_SOC_DAPM_INPUT("LINEL"),
556 SND_SOC_DAPM_INPUT("LINER"),
557
Peter Ujfalusi76eac392010-12-08 16:04:33 +0200558 SND_SOC_DAPM_DAC("DACL", "Left Playback", SND_SOC_NOPM, 0, 0),
559 SND_SOC_DAPM_DAC("DACR", "Right Playback", SND_SOC_NOPM, 0, 0),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300560
561 /* Analog bypass */
562 SND_SOC_DAPM_SWITCH("Analog Left Bypass", SND_SOC_NOPM, 0, 0,
563 &dac33_dapm_abypassl_control),
564 SND_SOC_DAPM_SWITCH("Analog Right Bypass", SND_SOC_NOPM, 0, 0,
565 &dac33_dapm_abypassr_control),
566
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200567 SND_SOC_DAPM_MUX("Left LOM Inverted From", SND_SOC_NOPM, 0, 0,
568 &dac33_dapm_left_lom_control),
569 SND_SOC_DAPM_MUX("Right LOM Inverted From", SND_SOC_NOPM, 0, 0,
570 &dac33_dapm_right_lom_control),
571 /*
572 * For DAPM path, when only the anlog bypass path is enabled, and the
573 * LOP inverted from the corresponding DAC side.
574 * This is needed, so we can attach the DAC power supply in this case.
575 */
576 SND_SOC_DAPM_PGA("Left Bypass PGA", SND_SOC_NOPM, 0, 0, NULL, 0),
577 SND_SOC_DAPM_PGA("Right Bypass PGA", SND_SOC_NOPM, 0, 0, NULL, 0),
578
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200579 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Left Amplifier",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300580 DAC33_OUT_AMP_PWR_CTRL, 6, 3, 3, 0),
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200581 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Right Amplifier",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300582 DAC33_OUT_AMP_PWR_CTRL, 4, 3, 3, 0),
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300583
Peter Ujfalusi76eac392010-12-08 16:04:33 +0200584 SND_SOC_DAPM_SUPPLY("Left DAC Power",
585 DAC33_LDAC_PWR_CTRL, 2, 0, NULL, 0),
586 SND_SOC_DAPM_SUPPLY("Right DAC Power",
587 DAC33_RDAC_PWR_CTRL, 2, 0, NULL, 0),
588
Peter Ujfalusi4b8ffdb2011-03-24 09:11:49 +0200589 SND_SOC_DAPM_SUPPLY("Codec Power",
590 DAC33_PWR_CTRL, 4, 0, NULL, 0),
591
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200592 SND_SOC_DAPM_PRE("Pre Playback", dac33_playback_event),
593 SND_SOC_DAPM_POST("Post Playback", dac33_playback_event),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300594};
595
596static const struct snd_soc_dapm_route audio_map[] = {
597 /* Analog bypass */
598 {"Analog Left Bypass", "Switch", "LINEL"},
599 {"Analog Right Bypass", "Switch", "LINER"},
600
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200601 {"Output Left Amplifier", NULL, "DACL"},
602 {"Output Right Amplifier", NULL, "DACR"},
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300603
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200604 {"Left Bypass PGA", NULL, "Analog Left Bypass"},
605 {"Right Bypass PGA", NULL, "Analog Right Bypass"},
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300606
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200607 {"Left LOM Inverted From", "DAC", "Left Bypass PGA"},
608 {"Right LOM Inverted From", "DAC", "Right Bypass PGA"},
609 {"Left LOM Inverted From", "LOP", "Analog Left Bypass"},
610 {"Right LOM Inverted From", "LOP", "Analog Right Bypass"},
611
612 {"Output Left Amplifier", NULL, "Left LOM Inverted From"},
613 {"Output Right Amplifier", NULL, "Right LOM Inverted From"},
614
615 {"DACL", NULL, "Left DAC Power"},
616 {"DACR", NULL, "Right DAC Power"},
617
618 {"Left Bypass PGA", NULL, "Left DAC Power"},
619 {"Right Bypass PGA", NULL, "Right DAC Power"},
Peter Ujfalusi76eac392010-12-08 16:04:33 +0200620
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300621 /* output */
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200622 {"LEFT_LO", NULL, "Output Left Amplifier"},
623 {"RIGHT_LO", NULL, "Output Right Amplifier"},
Peter Ujfalusi4b8ffdb2011-03-24 09:11:49 +0200624
625 {"LEFT_LO", NULL, "Codec Power"},
626 {"RIGHT_LO", NULL, "Codec Power"},
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300627};
628
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300629static int dac33_set_bias_level(struct snd_soc_codec *codec,
630 enum snd_soc_bias_level level)
631{
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200632 int ret;
633
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300634 switch (level) {
635 case SND_SOC_BIAS_ON:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300636 break;
637 case SND_SOC_BIAS_PREPARE:
638 break;
639 case SND_SOC_BIAS_STANDBY:
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200640 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300641 /* Coming from OFF, switch on the codec */
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200642 ret = dac33_hard_power(codec, 1);
643 if (ret != 0)
644 return ret;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200645
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300646 dac33_init_chip(codec);
647 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300648 break;
649 case SND_SOC_BIAS_OFF:
Peter Ujfalusi2d4cdd62010-05-17 14:21:46 +0300650 /* Do not power off, when the codec is already off */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200651 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF)
Peter Ujfalusi2d4cdd62010-05-17 14:21:46 +0300652 return 0;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200653 ret = dac33_hard_power(codec, 0);
654 if (ret != 0)
655 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300656 break;
657 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200658 codec->dapm.bias_level = level;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300659
660 return 0;
661}
662
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200663static inline void dac33_prefill_handler(struct tlv320dac33_priv *dac33)
664{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000665 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300666 unsigned int delay;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200667 unsigned long flags;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200668
669 switch (dac33->fifo_mode) {
670 case DAC33_FIFO_MODE1:
671 dac33_write16(codec, DAC33_NSAMPLE_MSB,
Peter Ujfalusif430a272010-07-28 15:26:54 +0300672 DAC33_THRREG(dac33->nsample));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300673
674 /* Take the timestamps */
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200675 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300676 dac33->t_stamp2 = ktime_to_us(ktime_get());
677 dac33->t_stamp1 = dac33->t_stamp2;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200678 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300679
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200680 dac33_write16(codec, DAC33_PREFILL_MSB,
681 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300682 /* Enable Alarm Threshold IRQ with a delay */
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300683 delay = SAMPLES_TO_US(dac33->burst_rate,
684 dac33->alarm_threshold) + 1000;
685 usleep_range(delay, delay + 500);
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300686 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MAT);
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200687 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200688 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300689 /* Take the timestamp */
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200690 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300691 dac33->t_stamp1 = ktime_to_us(ktime_get());
692 /* Move back the timestamp with drain time */
693 dac33->t_stamp1 -= dac33->mode7_us_to_lthr;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200694 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300695
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200696 dac33_write16(codec, DAC33_PREFILL_MSB,
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200697 DAC33_THRREG(DAC33_MODE7_MARGIN));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300698
699 /* Enable Upper Threshold IRQ */
700 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MUT);
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200701 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200702 default:
703 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
704 dac33->fifo_mode);
705 break;
706 }
707}
708
709static inline void dac33_playback_handler(struct tlv320dac33_priv *dac33)
710{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200712 unsigned long flags;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200713
714 switch (dac33->fifo_mode) {
715 case DAC33_FIFO_MODE1:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300716 /* Take the timestamp */
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200717 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300718 dac33->t_stamp2 = ktime_to_us(ktime_get());
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200719 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300720
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200721 dac33_write16(codec, DAC33_NSAMPLE_MSB,
722 DAC33_THRREG(dac33->nsample));
723 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200724 case DAC33_FIFO_MODE7:
725 /* At the moment we are not using interrupts in mode7 */
726 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200727 default:
728 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
729 dac33->fifo_mode);
730 break;
731 }
732}
733
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300734static void dac33_work(struct work_struct *work)
735{
736 struct snd_soc_codec *codec;
737 struct tlv320dac33_priv *dac33;
738 u8 reg;
739
740 dac33 = container_of(work, struct tlv320dac33_priv, work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000741 codec = dac33->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300742
743 mutex_lock(&dac33->mutex);
744 switch (dac33->state) {
745 case DAC33_PREFILL:
746 dac33->state = DAC33_PLAYBACK;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200747 dac33_prefill_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300748 break;
749 case DAC33_PLAYBACK:
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200750 dac33_playback_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300751 break;
752 case DAC33_IDLE:
753 break;
754 case DAC33_FLUSH:
755 dac33->state = DAC33_IDLE;
756 /* Mask all interrupts from dac33 */
757 dac33_write(codec, DAC33_FIFO_IRQ_MASK, 0);
758
759 /* flush fifo */
760 reg = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
761 reg |= DAC33_FIFOFLUSH;
762 dac33_write(codec, DAC33_FIFO_CTRL_A, reg);
763 break;
764 }
765 mutex_unlock(&dac33->mutex);
766}
767
768static irqreturn_t dac33_interrupt_handler(int irq, void *dev)
769{
770 struct snd_soc_codec *codec = dev;
Mark Brownb2c812e2010-04-14 15:35:19 +0900771 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200772 unsigned long flags;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300773
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200774 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300775 dac33->t_stamp1 = ktime_to_us(ktime_get());
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200776 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300777
778 /* Do not schedule the workqueue in Mode7 */
779 if (dac33->fifo_mode != DAC33_FIFO_MODE7)
780 queue_work(dac33->dac33_wq, &dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300781
782 return IRQ_HANDLED;
783}
784
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300785static void dac33_oscwait(struct snd_soc_codec *codec)
786{
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300787 int timeout = 60;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300788 u8 reg;
789
790 do {
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300791 usleep_range(1000, 2000);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300792 dac33_read(codec, DAC33_INT_OSC_STATUS, &reg);
793 } while (((reg & 0x03) != DAC33_OSCSTATUS_NORMAL) && timeout--);
794 if ((reg & 0x03) != DAC33_OSCSTATUS_NORMAL)
795 dev_err(codec->dev,
796 "internal oscillator calibration failed\n");
797}
798
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300799static int dac33_startup(struct snd_pcm_substream *substream,
800 struct snd_soc_dai *dai)
801{
802 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000803 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300804 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
805
806 /* Stream started, save the substream pointer */
807 dac33->substream = substream;
808
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +0200809 snd_pcm_hw_constraint_msbits(substream->runtime, 0, 32, 24);
810
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300811 return 0;
812}
813
814static void dac33_shutdown(struct snd_pcm_substream *substream,
815 struct snd_soc_dai *dai)
816{
817 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000818 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300819 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
820
821 dac33->substream = NULL;
822}
823
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200824#define CALC_BURST_RATE(bclkdiv, bclk_per_sample) \
825 (BURST_BASEFREQ_HZ / bclkdiv / bclk_per_sample)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300826static int dac33_hw_params(struct snd_pcm_substream *substream,
827 struct snd_pcm_hw_params *params,
828 struct snd_soc_dai *dai)
829{
830 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000831 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200832 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300833
834 /* Check parameters for validity */
835 switch (params_rate(params)) {
836 case 44100:
837 case 48000:
838 break;
839 default:
840 dev_err(codec->dev, "unsupported rate %d\n",
841 params_rate(params));
842 return -EINVAL;
843 }
844
845 switch (params_format(params)) {
846 case SNDRV_PCM_FORMAT_S16_LE:
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200847 dac33->fifo_size = DAC33_FIFO_SIZE_16BIT;
848 dac33->burst_rate = CALC_BURST_RATE(dac33->burst_bclkdiv, 32);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300849 break;
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +0200850 case SNDRV_PCM_FORMAT_S32_LE:
851 dac33->fifo_size = DAC33_FIFO_SIZE_24BIT;
852 dac33->burst_rate = CALC_BURST_RATE(dac33->burst_bclkdiv, 64);
853 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300854 default:
855 dev_err(codec->dev, "unsupported format %d\n",
856 params_format(params));
857 return -EINVAL;
858 }
859
860 return 0;
861}
862
863#define CALC_OSCSET(rate, refclk) ( \
Peter Ujfalusi7833ae02010-02-16 13:23:16 +0200864 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300865#define CALC_RATIOSET(rate, refclk) ( \
866 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000)
867
868/*
869 * tlv320dac33 is strict on the sequence of the register writes, if the register
870 * writes happens in different order, than dac33 might end up in unknown state.
871 * Use the known, working sequence of register writes to initialize the dac33.
872 */
873static int dac33_prepare_chip(struct snd_pcm_substream *substream)
874{
875 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000876 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900877 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300878 unsigned int oscset, ratioset, pwr_ctrl, reg_tmp;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200879 u8 aictrl_a, aictrl_b, fifoctrl_a;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300880
881 switch (substream->runtime->rate) {
882 case 44100:
883 case 48000:
884 oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk);
885 ratioset = CALC_RATIOSET(substream->runtime->rate,
886 dac33->refclk);
887 break;
888 default:
889 dev_err(codec->dev, "unsupported rate %d\n",
890 substream->runtime->rate);
891 return -EINVAL;
892 }
893
894
895 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
896 aictrl_a &= ~(DAC33_NCYCL_MASK | DAC33_WLEN_MASK);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200897 /* Read FIFO control A, and clear FIFO flush bit */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300898 fifoctrl_a = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200899 fifoctrl_a &= ~DAC33_FIFOFLUSH;
900
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300901 fifoctrl_a &= ~DAC33_WIDTH;
902 switch (substream->runtime->format) {
903 case SNDRV_PCM_FORMAT_S16_LE:
904 aictrl_a |= (DAC33_NCYCL_16 | DAC33_WLEN_16);
905 fifoctrl_a |= DAC33_WIDTH;
906 break;
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +0200907 case SNDRV_PCM_FORMAT_S32_LE:
908 aictrl_a |= (DAC33_NCYCL_32 | DAC33_WLEN_24);
909 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300910 default:
911 dev_err(codec->dev, "unsupported format %d\n",
912 substream->runtime->format);
913 return -EINVAL;
914 }
915
916 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300917
918 if (!dac33->chip_power) {
919 /*
920 * Chip is not powered yet.
921 * Do the init in the dac33_set_bias_level later.
922 */
923 mutex_unlock(&dac33->mutex);
924 return 0;
925 }
926
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200927 dac33_soft_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300928 dac33_soft_power(codec, 1);
929
930 reg_tmp = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
931 dac33_write(codec, DAC33_INT_OSC_CTRL, reg_tmp);
932
933 /* Write registers 0x08 and 0x09 (MSB, LSB) */
934 dac33_write16(codec, DAC33_INT_OSC_FREQ_RAT_A, oscset);
935
Peter Ujfalusi82a58a82011-04-12 09:09:17 +0300936 /* OSC calibration time */
937 dac33_write(codec, DAC33_CALIB_TIME, 96);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300938
939 /* adjustment treshold & step */
940 dac33_write(codec, DAC33_INT_OSC_CTRL_B, DAC33_ADJTHRSHLD(2) |
941 DAC33_ADJSTEP(1));
942
943 /* div=4 / gain=1 / div */
944 dac33_write(codec, DAC33_INT_OSC_CTRL_C, DAC33_REFDIV(4));
945
946 pwr_ctrl = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
947 pwr_ctrl |= DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB;
948 dac33_write(codec, DAC33_PWR_CTRL, pwr_ctrl);
949
950 dac33_oscwait(codec);
951
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200952 if (dac33->fifo_mode) {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200953 /* Generic for all FIFO modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300954 /* 50-51 : ASRC Control registers */
Peter Ujfalusifdb6b1e2010-03-19 11:10:20 +0200955 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCLKDIV(1));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300956 dac33_write(codec, DAC33_ASRC_CTRL_B, 1); /* ??? */
957
958 /* Write registers 0x34 and 0x35 (MSB, LSB) */
959 dac33_write16(codec, DAC33_SRC_REF_CLK_RATIO_A, ratioset);
960
961 /* Set interrupts to high active */
962 dac33_write(codec, DAC33_INTP_CTRL_A, DAC33_INTPM_AHIGH);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300963 } else {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200964 /* FIFO bypass mode */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300965 /* 50-51 : ASRC Control registers */
966 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCBYP);
967 dac33_write(codec, DAC33_ASRC_CTRL_B, 0); /* ??? */
968 }
969
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200970 /* Interrupt behaviour configuration */
971 switch (dac33->fifo_mode) {
972 case DAC33_FIFO_MODE1:
973 dac33_write(codec, DAC33_FIFO_IRQ_MODE_B,
974 DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200975 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200976 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300977 dac33_write(codec, DAC33_FIFO_IRQ_MODE_A,
978 DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200979 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200980 default:
981 /* in FIFO bypass mode, the interrupts are not used */
982 break;
983 }
984
985 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
986
987 switch (dac33->fifo_mode) {
988 case DAC33_FIFO_MODE1:
989 /*
990 * For mode1:
991 * Disable the FIFO bypass (Enable the use of FIFO)
992 * Select nSample mode
993 * BCLK is only running when data is needed by DAC33
994 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300995 fifoctrl_a &= ~DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200996 fifoctrl_a &= ~DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200997 if (dac33->keep_bclk)
998 aictrl_b |= DAC33_BCLKON;
999 else
1000 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001001 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001002 case DAC33_FIFO_MODE7:
1003 /*
1004 * For mode1:
1005 * Disable the FIFO bypass (Enable the use of FIFO)
1006 * Select Threshold mode
1007 * BCLK is only running when data is needed by DAC33
1008 */
1009 fifoctrl_a &= ~DAC33_FBYPAS;
1010 fifoctrl_a |= DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001011 if (dac33->keep_bclk)
1012 aictrl_b |= DAC33_BCLKON;
1013 else
1014 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001015 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001016 default:
1017 /*
1018 * For FIFO bypass mode:
1019 * Enable the FIFO bypass (Disable the FIFO use)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001020 * Set the BCLK as continuous
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001021 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001022 fifoctrl_a |= DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001023 aictrl_b |= DAC33_BCLKON;
1024 break;
1025 }
1026
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001027 dac33_write(codec, DAC33_FIFO_CTRL_A, fifoctrl_a);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001028 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001029 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001030
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001031 /*
1032 * BCLK divide ratio
1033 * 0: 1.5
1034 * 1: 1
1035 * 2: 2
1036 * ...
1037 * 254: 254
1038 * 255: 255
1039 */
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001040 if (dac33->fifo_mode)
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001041 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C,
1042 dac33->burst_bclkdiv);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001043 else
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +02001044 if (substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE)
1045 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C, 32);
1046 else
1047 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C, 16);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001048
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001049 switch (dac33->fifo_mode) {
1050 case DAC33_FIFO_MODE1:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001051 dac33_write16(codec, DAC33_ATHR_MSB,
1052 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001053 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001054 case DAC33_FIFO_MODE7:
1055 /*
1056 * Configure the threshold levels, and leave 10 sample space
1057 * at the bottom, and also at the top of the FIFO
1058 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001059 dac33_write16(codec, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001060 dac33_write16(codec, DAC33_LTHR_MSB,
1061 DAC33_THRREG(DAC33_MODE7_MARGIN));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001062 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001063 default:
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001064 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001065 }
1066
1067 mutex_unlock(&dac33->mutex);
1068
1069 return 0;
1070}
1071
1072static void dac33_calculate_times(struct snd_pcm_substream *substream)
1073{
1074 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001075 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001076 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusif430a272010-07-28 15:26:54 +03001077 unsigned int period_size = substream->runtime->period_size;
1078 unsigned int rate = substream->runtime->rate;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001079 unsigned int nsample_limit;
1080
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001081 /* In bypass mode we don't need to calculate */
1082 if (!dac33->fifo_mode)
1083 return;
1084
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001085 switch (dac33->fifo_mode) {
1086 case DAC33_FIFO_MODE1:
Peter Ujfalusif430a272010-07-28 15:26:54 +03001087 /* Number of samples under i2c latency */
1088 dac33->alarm_threshold = US_TO_SAMPLES(rate,
1089 dac33->mode1_latency);
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001090 nsample_limit = dac33->fifo_size - dac33->alarm_threshold;
Peter Ujfalusi1bc13b22010-10-29 09:49:37 +03001091
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001092 if (period_size <= dac33->alarm_threshold)
Peter Ujfalusia577b312010-07-28 15:26:55 +03001093 /*
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001094 * Configure nSamaple to number of periods,
1095 * which covers the latency requironment.
Peter Ujfalusia577b312010-07-28 15:26:55 +03001096 */
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001097 dac33->nsample = period_size *
1098 ((dac33->alarm_threshold / period_size) +
1099 (dac33->alarm_threshold % period_size ?
1100 1 : 0));
1101 else if (period_size > nsample_limit)
1102 dac33->nsample = nsample_limit;
1103 else
1104 dac33->nsample = period_size;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001105
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001106 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
1107 dac33->nsample);
1108 dac33->t_stamp1 = 0;
1109 dac33->t_stamp2 = 0;
1110 break;
1111 case DAC33_FIFO_MODE7:
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001112 dac33->uthr = UTHR_FROM_PERIOD_SIZE(period_size, rate,
1113 dac33->burst_rate) + 9;
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001114 if (dac33->uthr > (dac33->fifo_size - DAC33_MODE7_MARGIN))
1115 dac33->uthr = dac33->fifo_size - DAC33_MODE7_MARGIN;
1116 if (dac33->uthr < (DAC33_MODE7_MARGIN + 10))
1117 dac33->uthr = (DAC33_MODE7_MARGIN + 10);
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001118
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001119 dac33->mode7_us_to_lthr =
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001120 SAMPLES_TO_US(substream->runtime->rate,
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001121 dac33->uthr - DAC33_MODE7_MARGIN + 1);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001122 dac33->t_stamp1 = 0;
1123 break;
1124 default:
1125 break;
1126 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001127
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001128}
1129
1130static int dac33_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
1131 struct snd_soc_dai *dai)
1132{
1133 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001134 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001135 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001136 int ret = 0;
1137
1138 switch (cmd) {
1139 case SNDRV_PCM_TRIGGER_START:
1140 case SNDRV_PCM_TRIGGER_RESUME:
1141 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001142 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001143 dac33->state = DAC33_PREFILL;
1144 queue_work(dac33->dac33_wq, &dac33->work);
1145 }
1146 break;
1147 case SNDRV_PCM_TRIGGER_STOP:
1148 case SNDRV_PCM_TRIGGER_SUSPEND:
1149 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001150 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001151 dac33->state = DAC33_FLUSH;
1152 queue_work(dac33->dac33_wq, &dac33->work);
1153 }
1154 break;
1155 default:
1156 ret = -EINVAL;
1157 }
1158
1159 return ret;
1160}
1161
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001162static snd_pcm_sframes_t dac33_dai_delay(
1163 struct snd_pcm_substream *substream,
1164 struct snd_soc_dai *dai)
1165{
1166 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001167 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001168 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
1169 unsigned long long t0, t1, t_now;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001170 unsigned int time_delta, uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001171 int samples_out, samples_in, samples;
1172 snd_pcm_sframes_t delay = 0;
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001173 unsigned long flags;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001174
1175 switch (dac33->fifo_mode) {
1176 case DAC33_FIFO_BYPASS:
1177 break;
1178 case DAC33_FIFO_MODE1:
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001179 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001180 t0 = dac33->t_stamp1;
1181 t1 = dac33->t_stamp2;
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001182 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001183 t_now = ktime_to_us(ktime_get());
1184
1185 /* We have not started to fill the FIFO yet, delay is 0 */
1186 if (!t1)
1187 goto out;
1188
1189 if (t0 > t1) {
1190 /*
1191 * Phase 1:
1192 * After Alarm threshold, and before nSample write
1193 */
1194 time_delta = t_now - t0;
1195 samples_out = time_delta ? US_TO_SAMPLES(
1196 substream->runtime->rate,
1197 time_delta) : 0;
1198
1199 if (likely(dac33->alarm_threshold > samples_out))
1200 delay = dac33->alarm_threshold - samples_out;
1201 else
1202 delay = 0;
1203 } else if ((t_now - t1) <= dac33->mode1_us_burst) {
1204 /*
1205 * Phase 2:
1206 * After nSample write (during burst operation)
1207 */
1208 time_delta = t_now - t0;
1209 samples_out = time_delta ? US_TO_SAMPLES(
1210 substream->runtime->rate,
1211 time_delta) : 0;
1212
1213 time_delta = t_now - t1;
1214 samples_in = time_delta ? US_TO_SAMPLES(
1215 dac33->burst_rate,
1216 time_delta) : 0;
1217
1218 samples = dac33->alarm_threshold;
1219 samples += (samples_in - samples_out);
1220
1221 if (likely(samples > 0))
1222 delay = samples;
1223 else
1224 delay = 0;
1225 } else {
1226 /*
1227 * Phase 3:
1228 * After burst operation, before next alarm threshold
1229 */
1230 time_delta = t_now - t0;
1231 samples_out = time_delta ? US_TO_SAMPLES(
1232 substream->runtime->rate,
1233 time_delta) : 0;
1234
1235 samples_in = dac33->nsample;
1236 samples = dac33->alarm_threshold;
1237 samples += (samples_in - samples_out);
1238
1239 if (likely(samples > 0))
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001240 delay = samples > dac33->fifo_size ?
1241 dac33->fifo_size : samples;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001242 else
1243 delay = 0;
1244 }
1245 break;
1246 case DAC33_FIFO_MODE7:
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001247 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001248 t0 = dac33->t_stamp1;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001249 uthr = dac33->uthr;
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001250 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001251 t_now = ktime_to_us(ktime_get());
1252
1253 /* We have not started to fill the FIFO yet, delay is 0 */
1254 if (!t0)
1255 goto out;
1256
1257 if (t_now <= t0) {
1258 /*
1259 * Either the timestamps are messed or equal. Report
1260 * maximum delay
1261 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001262 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001263 goto out;
1264 }
1265
1266 time_delta = t_now - t0;
1267 if (time_delta <= dac33->mode7_us_to_lthr) {
1268 /*
1269 * Phase 1:
1270 * After burst (draining phase)
1271 */
1272 samples_out = US_TO_SAMPLES(
1273 substream->runtime->rate,
1274 time_delta);
1275
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001276 if (likely(uthr > samples_out))
1277 delay = uthr - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001278 else
1279 delay = 0;
1280 } else {
1281 /*
1282 * Phase 2:
1283 * During burst operation
1284 */
1285 time_delta = time_delta - dac33->mode7_us_to_lthr;
1286
1287 samples_out = US_TO_SAMPLES(
1288 substream->runtime->rate,
1289 time_delta);
1290 samples_in = US_TO_SAMPLES(
1291 dac33->burst_rate,
1292 time_delta);
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001293 delay = DAC33_MODE7_MARGIN + samples_in - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001294
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001295 if (unlikely(delay > uthr))
1296 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001297 }
1298 break;
1299 default:
1300 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
1301 dac33->fifo_mode);
1302 break;
1303 }
1304out:
1305 return delay;
1306}
1307
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001308static int dac33_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1309 int clk_id, unsigned int freq, int dir)
1310{
1311 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001312 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001313 u8 ioc_reg, asrcb_reg;
1314
1315 ioc_reg = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
1316 asrcb_reg = dac33_read_reg_cache(codec, DAC33_ASRC_CTRL_B);
1317 switch (clk_id) {
1318 case TLV320DAC33_MCLK:
1319 ioc_reg |= DAC33_REFSEL;
1320 asrcb_reg |= DAC33_SRCREFSEL;
1321 break;
1322 case TLV320DAC33_SLEEPCLK:
1323 ioc_reg &= ~DAC33_REFSEL;
1324 asrcb_reg &= ~DAC33_SRCREFSEL;
1325 break;
1326 default:
1327 dev_err(codec->dev, "Invalid clock ID (%d)\n", clk_id);
1328 break;
1329 }
1330 dac33->refclk = freq;
1331
1332 dac33_write_reg_cache(codec, DAC33_INT_OSC_CTRL, ioc_reg);
1333 dac33_write_reg_cache(codec, DAC33_ASRC_CTRL_B, asrcb_reg);
1334
1335 return 0;
1336}
1337
1338static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
1339 unsigned int fmt)
1340{
1341 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001342 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001343 u8 aictrl_a, aictrl_b;
1344
1345 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
1346 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
1347 /* set master/slave audio interface */
1348 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1349 case SND_SOC_DAIFMT_CBM_CFM:
1350 /* Codec Master */
1351 aictrl_a |= (DAC33_MSBCLK | DAC33_MSWCLK);
1352 break;
1353 case SND_SOC_DAIFMT_CBS_CFS:
1354 /* Codec Slave */
Peter Ujfalusiadcb8bc2009-12-31 10:30:23 +02001355 if (dac33->fifo_mode) {
1356 dev_err(codec->dev, "FIFO mode requires master mode\n");
1357 return -EINVAL;
1358 } else
1359 aictrl_a &= ~(DAC33_MSBCLK | DAC33_MSWCLK);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001360 break;
1361 default:
1362 return -EINVAL;
1363 }
1364
1365 aictrl_a &= ~DAC33_AFMT_MASK;
1366 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1367 case SND_SOC_DAIFMT_I2S:
1368 aictrl_a |= DAC33_AFMT_I2S;
1369 break;
1370 case SND_SOC_DAIFMT_DSP_A:
1371 aictrl_a |= DAC33_AFMT_DSP;
1372 aictrl_b &= ~DAC33_DATA_DELAY_MASK;
Peter Ujfalusi44f497b2010-03-19 11:10:19 +02001373 aictrl_b |= DAC33_DATA_DELAY(0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001374 break;
1375 case SND_SOC_DAIFMT_RIGHT_J:
1376 aictrl_a |= DAC33_AFMT_RIGHT_J;
1377 break;
1378 case SND_SOC_DAIFMT_LEFT_J:
1379 aictrl_a |= DAC33_AFMT_LEFT_J;
1380 break;
1381 default:
1382 dev_err(codec->dev, "Unsupported format (%u)\n",
1383 fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1384 return -EINVAL;
1385 }
1386
1387 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1388 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
1389
1390 return 0;
1391}
1392
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001393static int dac33_soc_probe(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001394{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001395 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001396 int ret = 0;
1397
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001398 codec->control_data = dac33->control_data;
1399 codec->hw_write = (hw_write_t) i2c_master_send;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001400 codec->dapm.idle_bias_off = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001401 dac33->codec = codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001402
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001403 /* Read the tlv320dac33 ID registers */
1404 ret = dac33_hard_power(codec, 1);
1405 if (ret != 0) {
1406 dev_err(codec->dev, "Failed to power up codec: %d\n", ret);
1407 goto err_power;
1408 }
Peter Ujfalusi911a0f02010-10-26 11:45:59 +03001409 ret = dac33_read_id(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001410 dac33_hard_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001411
Peter Ujfalusi911a0f02010-10-26 11:45:59 +03001412 if (ret < 0) {
1413 dev_err(codec->dev, "Failed to read chip ID: %d\n", ret);
1414 ret = -ENODEV;
1415 goto err_power;
1416 }
1417
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001418 /* Check if the IRQ number is valid and request it */
1419 if (dac33->irq >= 0) {
1420 ret = request_irq(dac33->irq, dac33_interrupt_handler,
Yong Zhang88e24c32011-09-22 16:59:20 +08001421 IRQF_TRIGGER_RISING,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001422 codec->name, codec);
1423 if (ret < 0) {
1424 dev_err(codec->dev, "Could not request IRQ%d (%d)\n",
1425 dac33->irq, ret);
1426 dac33->irq = -1;
1427 }
1428 if (dac33->irq != -1) {
1429 /* Setup work queue */
1430 dac33->dac33_wq =
1431 create_singlethread_workqueue("tlv320dac33");
1432 if (dac33->dac33_wq == NULL) {
1433 free_irq(dac33->irq, codec);
1434 return -ENOMEM;
1435 }
1436
1437 INIT_WORK(&dac33->work, dac33_work);
1438 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001439 }
1440
Peter Ujfalusia577b312010-07-28 15:26:55 +03001441 /* Only add the FIFO controls, if we have valid IRQ number */
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001442 if (dac33->irq >= 0)
Peter Ujfalusia577b312010-07-28 15:26:55 +03001443 snd_soc_add_controls(codec, dac33_mode_snd_controls,
1444 ARRAY_SIZE(dac33_mode_snd_controls));
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001445
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001446err_power:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001447 return ret;
1448}
1449
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001450static int dac33_soc_remove(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001451{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001452 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001453
1454 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1455
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001456 if (dac33->irq >= 0) {
1457 free_irq(dac33->irq, dac33->codec);
1458 destroy_workqueue(dac33->dac33_wq);
1459 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001460 return 0;
1461}
1462
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +01001463static int dac33_soc_suspend(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001464{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001465 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1466
1467 return 0;
1468}
1469
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001470static int dac33_soc_resume(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001471{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001472 dac33_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001473
1474 return 0;
1475}
1476
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001477static struct snd_soc_codec_driver soc_codec_dev_tlv320dac33 = {
1478 .read = dac33_read_reg_cache,
1479 .write = dac33_write_locked,
1480 .set_bias_level = dac33_set_bias_level,
1481 .reg_cache_size = ARRAY_SIZE(dac33_reg),
1482 .reg_word_size = sizeof(u8),
1483 .reg_cache_default = dac33_reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001484 .probe = dac33_soc_probe,
1485 .remove = dac33_soc_remove,
1486 .suspend = dac33_soc_suspend,
1487 .resume = dac33_soc_resume,
Peter Ujfalusi8066eb52011-10-11 13:11:55 +03001488
1489 .controls = dac33_snd_controls,
1490 .num_controls = ARRAY_SIZE(dac33_snd_controls),
1491 .dapm_widgets = dac33_dapm_widgets,
1492 .num_dapm_widgets = ARRAY_SIZE(dac33_dapm_widgets),
1493 .dapm_routes = audio_map,
1494 .num_dapm_routes = ARRAY_SIZE(audio_map),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001495};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001496
1497#define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
1498 SNDRV_PCM_RATE_48000)
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +02001499#define DAC33_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001500
Lars-Peter Clausen85e76522011-11-23 11:40:40 +01001501static const struct snd_soc_dai_ops dac33_dai_ops = {
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +03001502 .startup = dac33_startup,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001503 .shutdown = dac33_shutdown,
1504 .hw_params = dac33_hw_params,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001505 .trigger = dac33_pcm_trigger,
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001506 .delay = dac33_dai_delay,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001507 .set_sysclk = dac33_set_dai_sysclk,
1508 .set_fmt = dac33_set_dai_fmt,
1509};
1510
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001511static struct snd_soc_dai_driver dac33_dai = {
1512 .name = "tlv320dac33-hifi",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001513 .playback = {
1514 .stream_name = "Playback",
1515 .channels_min = 2,
1516 .channels_max = 2,
1517 .rates = DAC33_RATES,
1518 .formats = DAC33_FORMATS,},
1519 .ops = &dac33_dai_ops,
1520};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001521
Mark Brown735fe4c2010-01-12 14:13:00 +00001522static int __devinit dac33_i2c_probe(struct i2c_client *client,
1523 const struct i2c_device_id *id)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001524{
1525 struct tlv320dac33_platform_data *pdata;
1526 struct tlv320dac33_priv *dac33;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001527 int ret, i;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001528
1529 if (client->dev.platform_data == NULL) {
1530 dev_err(&client->dev, "Platform data not set\n");
1531 return -ENODEV;
1532 }
1533 pdata = client->dev.platform_data;
1534
Axel Lina54877d2011-12-29 12:11:00 +08001535 dac33 = devm_kzalloc(&client->dev, sizeof(struct tlv320dac33_priv),
1536 GFP_KERNEL);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001537 if (dac33 == NULL)
1538 return -ENOMEM;
1539
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001540 dac33->control_data = client;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001541 mutex_init(&dac33->mutex);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001542 spin_lock_init(&dac33->lock);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001543
1544 i2c_set_clientdata(client, dac33);
1545
1546 dac33->power_gpio = pdata->power_gpio;
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001547 dac33->burst_bclkdiv = pdata->burst_bclkdiv;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001548 dac33->keep_bclk = pdata->keep_bclk;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001549 dac33->mode1_latency = pdata->mode1_latency;
1550 if (!dac33->mode1_latency)
1551 dac33->mode1_latency = 10000; /* 10ms */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001552 dac33->irq = client->irq;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001553 /* Disable FIFO use by default */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001554 dac33->fifo_mode = DAC33_FIFO_BYPASS;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001555
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001556 /* Check if the reset GPIO number is valid and request it */
1557 if (dac33->power_gpio >= 0) {
1558 ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset");
1559 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001560 dev_err(&client->dev,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001561 "Failed to request reset GPIO (%d)\n",
1562 dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001563 goto err_gpio;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001564 }
1565 gpio_direction_output(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001566 }
1567
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001568 for (i = 0; i < ARRAY_SIZE(dac33->supplies); i++)
1569 dac33->supplies[i].supply = dac33_supply_names[i];
1570
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001571 ret = regulator_bulk_get(&client->dev, ARRAY_SIZE(dac33->supplies),
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001572 dac33->supplies);
1573
1574 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001575 dev_err(&client->dev, "Failed to request supplies: %d\n", ret);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001576 goto err_get;
1577 }
1578
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001579 ret = snd_soc_register_codec(&client->dev,
1580 &soc_codec_dev_tlv320dac33, &dac33_dai, 1);
1581 if (ret < 0)
1582 goto err_register;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001583
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001584 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001585err_register:
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001586 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1587err_get:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001588 if (dac33->power_gpio >= 0)
1589 gpio_free(dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001590err_gpio:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001591 return ret;
1592}
1593
Mark Brown735fe4c2010-01-12 14:13:00 +00001594static int __devexit dac33_i2c_remove(struct i2c_client *client)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001595{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001596 struct tlv320dac33_priv *dac33 = i2c_get_clientdata(client);
Peter Ujfalusi239fe552010-04-30 14:59:34 +03001597
1598 if (unlikely(dac33->chip_power))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001599 dac33_hard_power(dac33->codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001600
1601 if (dac33->power_gpio >= 0)
1602 gpio_free(dac33->power_gpio);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001603
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001604 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1605
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001606 snd_soc_unregister_codec(&client->dev);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001607 return 0;
1608}
1609
1610static const struct i2c_device_id tlv320dac33_i2c_id[] = {
1611 {
1612 .name = "tlv320dac33",
1613 .driver_data = 0,
1614 },
1615 { },
1616};
Axel Lin573f26e2011-03-04 15:18:18 +08001617MODULE_DEVICE_TABLE(i2c, tlv320dac33_i2c_id);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001618
1619static struct i2c_driver tlv320dac33_i2c_driver = {
1620 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001621 .name = "tlv320dac33-codec",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001622 .owner = THIS_MODULE,
1623 },
1624 .probe = dac33_i2c_probe,
1625 .remove = __devexit_p(dac33_i2c_remove),
1626 .id_table = tlv320dac33_i2c_id,
1627};
1628
1629static int __init dac33_module_init(void)
1630{
1631 int r;
1632 r = i2c_add_driver(&tlv320dac33_i2c_driver);
1633 if (r < 0) {
1634 printk(KERN_ERR "DAC33: driver registration failed\n");
1635 return r;
1636 }
1637 return 0;
1638}
1639module_init(dac33_module_init);
1640
1641static void __exit dac33_module_exit(void)
1642{
1643 i2c_del_driver(&tlv320dac33_i2c_driver);
1644}
1645module_exit(dac33_module_exit);
1646
1647
1648MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
Peter Ujfalusi93864cf2011-05-03 18:11:36 +03001649MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001650MODULE_LICENSE("GPL");