blob: ccb267f4e968cb222b816542f30e3900883f85b4 [file] [log] [blame]
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001/*
2 * ALSA SoC Texas Instruments TLV320DAC33 codec driver
3 *
4 * Author: Peter Ujfalusi <peter.ujfalusi@nokia.com>
5 *
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>
30#include <linux/platform_device.h>
31#include <linux/interrupt.h>
32#include <linux/gpio.h>
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020033#include <linux/regulator/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030035#include <sound/core.h>
36#include <sound/pcm.h>
37#include <sound/pcm_params.h>
38#include <sound/soc.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030039#include <sound/initval.h>
40#include <sound/tlv.h>
41
42#include <sound/tlv320dac33-plat.h>
43#include "tlv320dac33.h"
44
45#define DAC33_BUFFER_SIZE_BYTES 24576 /* bytes, 12288 16 bit words,
46 * 6144 stereo */
47#define DAC33_BUFFER_SIZE_SAMPLES 6144
48
49#define NSAMPLE_MAX 5700
50
Peter Ujfalusi42603932010-04-23 10:09:59 +030051#define MODE7_LTHR 10
52#define MODE7_UTHR (DAC33_BUFFER_SIZE_SAMPLES - 10)
53
Peter Ujfalusi76f47122010-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) \
57 (1000000000 / ((rate * 1000) / samples))
58
59#define US_TO_SAMPLES(rate, us) \
Peter Ujfalusid54e1f42010-10-29 14:07:25 +030060 (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) \
63 ((samples * 5000) / ((burstrate * 5000) / (burstrate - playrate)))
64
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 */
102 unsigned int nsample_min; /* nsample should not be lower than
103 * this */
104 unsigned int nsample_max; /* nsample should not be higher than
105 * this */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200106 enum dac33_fifo_modes fifo_mode;/* FIFO mode selection */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300107 unsigned int nsample; /* burst read amount from host */
Peter Ujfalusif430a272010-07-28 15:26:54 +0300108 int mode1_latency; /* latency caused by the i2c writes in
109 * us */
Peter Ujfalusia577b312010-07-28 15:26:55 +0300110 int auto_fifo_config; /* Configure the FIFO based on the
111 * period size */
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +0200112 u8 burst_bclkdiv; /* BCLK divider value in burst mode */
Peter Ujfalusi76f47122010-04-23 10:10:00 +0300113 unsigned int burst_rate; /* Interface speed in Burst modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300114
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200115 int keep_bclk; /* Keep the BCLK continuously running
116 * in FIFO modes */
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300117 spinlock_t lock;
118 unsigned long long t_stamp1; /* Time stamp for FIFO modes to */
119 unsigned long long t_stamp2; /* calculate the FIFO caused delay */
120
121 unsigned int mode1_us_burst; /* Time to burst read n number of
122 * samples */
123 unsigned int mode7_us_to_lthr; /* Time to reach lthr from uthr */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300124
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +0300125 unsigned int uthr;
126
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300127 enum dac33_state state;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000128 enum snd_soc_control_type control_type;
129 void *control_data;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300130};
131
132static const u8 dac33_reg[DAC33_CACHEREGNUM] = {
1330x00, 0x00, 0x00, 0x00, /* 0x00 - 0x03 */
1340x00, 0x00, 0x00, 0x00, /* 0x04 - 0x07 */
1350x00, 0x00, 0x00, 0x00, /* 0x08 - 0x0b */
1360x00, 0x00, 0x00, 0x00, /* 0x0c - 0x0f */
1370x00, 0x00, 0x00, 0x00, /* 0x10 - 0x13 */
1380x00, 0x00, 0x00, 0x00, /* 0x14 - 0x17 */
1390x00, 0x00, 0x00, 0x00, /* 0x18 - 0x1b */
1400x00, 0x00, 0x00, 0x00, /* 0x1c - 0x1f */
1410x00, 0x00, 0x00, 0x00, /* 0x20 - 0x23 */
1420x00, 0x00, 0x00, 0x00, /* 0x24 - 0x27 */
1430x00, 0x00, 0x00, 0x00, /* 0x28 - 0x2b */
1440x00, 0x00, 0x00, 0x80, /* 0x2c - 0x2f */
1450x80, 0x00, 0x00, 0x00, /* 0x30 - 0x33 */
1460x00, 0x00, 0x00, 0x00, /* 0x34 - 0x37 */
1470x00, 0x00, /* 0x38 - 0x39 */
148/* Registers 0x3a - 0x3f are reserved */
149 0x00, 0x00, /* 0x3a - 0x3b */
1500x00, 0x00, 0x00, 0x00, /* 0x3c - 0x3f */
151
1520x00, 0x00, 0x00, 0x00, /* 0x40 - 0x43 */
1530x00, 0x80, /* 0x44 - 0x45 */
154/* Registers 0x46 - 0x47 are reserved */
155 0x80, 0x80, /* 0x46 - 0x47 */
156
1570x80, 0x00, 0x00, /* 0x48 - 0x4a */
158/* Registers 0x4b - 0x7c are reserved */
159 0x00, /* 0x4b */
1600x00, 0x00, 0x00, 0x00, /* 0x4c - 0x4f */
1610x00, 0x00, 0x00, 0x00, /* 0x50 - 0x53 */
1620x00, 0x00, 0x00, 0x00, /* 0x54 - 0x57 */
1630x00, 0x00, 0x00, 0x00, /* 0x58 - 0x5b */
1640x00, 0x00, 0x00, 0x00, /* 0x5c - 0x5f */
1650x00, 0x00, 0x00, 0x00, /* 0x60 - 0x63 */
1660x00, 0x00, 0x00, 0x00, /* 0x64 - 0x67 */
1670x00, 0x00, 0x00, 0x00, /* 0x68 - 0x6b */
1680x00, 0x00, 0x00, 0x00, /* 0x6c - 0x6f */
1690x00, 0x00, 0x00, 0x00, /* 0x70 - 0x73 */
1700x00, 0x00, 0x00, 0x00, /* 0x74 - 0x77 */
1710x00, 0x00, 0x00, 0x00, /* 0x78 - 0x7b */
1720x00, /* 0x7c */
173
174 0xda, 0x33, 0x03, /* 0x7d - 0x7f */
175};
176
177/* Register read and write */
178static inline unsigned int dac33_read_reg_cache(struct snd_soc_codec *codec,
179 unsigned reg)
180{
181 u8 *cache = codec->reg_cache;
182 if (reg >= DAC33_CACHEREGNUM)
183 return 0;
184
185 return cache[reg];
186}
187
188static inline void dac33_write_reg_cache(struct snd_soc_codec *codec,
189 u8 reg, u8 value)
190{
191 u8 *cache = codec->reg_cache;
192 if (reg >= DAC33_CACHEREGNUM)
193 return;
194
195 cache[reg] = value;
196}
197
198static int dac33_read(struct snd_soc_codec *codec, unsigned int reg,
199 u8 *value)
200{
Mark Brownb2c812e2010-04-14 15:35:19 +0900201 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300202 int val, ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300203
204 *value = reg & 0xff;
205
206 /* If powered off, return the cached value */
207 if (dac33->chip_power) {
208 val = i2c_smbus_read_byte_data(codec->control_data, value[0]);
209 if (val < 0) {
210 dev_err(codec->dev, "Read failed (%d)\n", val);
211 value[0] = dac33_read_reg_cache(codec, reg);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300212 ret = val;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300213 } else {
214 value[0] = val;
215 dac33_write_reg_cache(codec, reg, val);
216 }
217 } else {
218 value[0] = dac33_read_reg_cache(codec, reg);
219 }
220
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300221 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300222}
223
224static int dac33_write(struct snd_soc_codec *codec, unsigned int reg,
225 unsigned int value)
226{
Mark Brownb2c812e2010-04-14 15:35:19 +0900227 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300228 u8 data[2];
229 int ret = 0;
230
231 /*
232 * data is
233 * D15..D8 dac33 register offset
234 * D7...D0 register data
235 */
236 data[0] = reg & 0xff;
237 data[1] = value & 0xff;
238
239 dac33_write_reg_cache(codec, data[0], data[1]);
240 if (dac33->chip_power) {
241 ret = codec->hw_write(codec->control_data, data, 2);
242 if (ret != 2)
243 dev_err(codec->dev, "Write failed (%d)\n", ret);
244 else
245 ret = 0;
246 }
247
248 return ret;
249}
250
251static int dac33_write_locked(struct snd_soc_codec *codec, unsigned int reg,
252 unsigned int value)
253{
Mark Brownb2c812e2010-04-14 15:35:19 +0900254 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300255 int ret;
256
257 mutex_lock(&dac33->mutex);
258 ret = dac33_write(codec, reg, value);
259 mutex_unlock(&dac33->mutex);
260
261 return ret;
262}
263
264#define DAC33_I2C_ADDR_AUTOINC 0x80
265static int dac33_write16(struct snd_soc_codec *codec, unsigned int reg,
266 unsigned int value)
267{
Mark Brownb2c812e2010-04-14 15:35:19 +0900268 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300269 u8 data[3];
270 int ret = 0;
271
272 /*
273 * data is
274 * D23..D16 dac33 register offset
275 * D15..D8 register data MSB
276 * D7...D0 register data LSB
277 */
278 data[0] = reg & 0xff;
279 data[1] = (value >> 8) & 0xff;
280 data[2] = value & 0xff;
281
282 dac33_write_reg_cache(codec, data[0], data[1]);
283 dac33_write_reg_cache(codec, data[0] + 1, data[2]);
284
285 if (dac33->chip_power) {
286 /* We need to set autoincrement mode for 16 bit writes */
287 data[0] |= DAC33_I2C_ADDR_AUTOINC;
288 ret = codec->hw_write(codec->control_data, data, 3);
289 if (ret != 3)
290 dev_err(codec->dev, "Write failed (%d)\n", ret);
291 else
292 ret = 0;
293 }
294
295 return ret;
296}
297
Peter Ujfalusief909d62010-04-30 14:59:33 +0300298static void dac33_init_chip(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300299{
Mark Brownb2c812e2010-04-14 15:35:19 +0900300 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300301
Peter Ujfalusief909d62010-04-30 14:59:33 +0300302 if (unlikely(!dac33->chip_power))
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300303 return;
304
Peter Ujfalusief909d62010-04-30 14:59:33 +0300305 /* 44-46: DAC Control Registers */
306 /* A : DAC sample rate Fsref/1.5 */
307 dac33_write(codec, DAC33_DAC_CTRL_A, DAC33_DACRATE(0));
308 /* B : DAC src=normal, not muted */
309 dac33_write(codec, DAC33_DAC_CTRL_B, DAC33_DACSRCR_RIGHT |
310 DAC33_DACSRCL_LEFT);
311 /* C : (defaults) */
312 dac33_write(codec, DAC33_DAC_CTRL_C, 0x00);
313
Peter Ujfalusief909d62010-04-30 14:59:33 +0300314 /* 73 : volume soft stepping control,
315 clock source = internal osc (?) */
316 dac33_write(codec, DAC33_ANA_VOL_SOFT_STEP_CTRL, DAC33_VOLCLKEN);
317
Peter Ujfalusief909d62010-04-30 14:59:33 +0300318 dac33_write(codec, DAC33_PWR_CTRL, DAC33_PDNALLB);
319
320 /* Restore only selected registers (gains mostly) */
321 dac33_write(codec, DAC33_LDAC_DIG_VOL_CTRL,
322 dac33_read_reg_cache(codec, DAC33_LDAC_DIG_VOL_CTRL));
323 dac33_write(codec, DAC33_RDAC_DIG_VOL_CTRL,
324 dac33_read_reg_cache(codec, DAC33_RDAC_DIG_VOL_CTRL));
325
326 dac33_write(codec, DAC33_LINEL_TO_LLO_VOL,
327 dac33_read_reg_cache(codec, DAC33_LINEL_TO_LLO_VOL));
328 dac33_write(codec, DAC33_LINER_TO_RLO_VOL,
329 dac33_read_reg_cache(codec, DAC33_LINER_TO_RLO_VOL));
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
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200359static int dac33_hard_power(struct snd_soc_codec *codec, int power)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300360{
Mark Brownb2c812e2010-04-14 15:35:19 +0900361 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300362 int ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300363
364 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300365
366 /* Safety check */
367 if (unlikely(power == dac33->chip_power)) {
Felipe Balbi7fd1d742010-05-17 14:21:45 +0300368 dev_dbg(codec->dev, "Trying to set the same power state: %s\n",
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300369 power ? "ON" : "OFF");
370 goto exit;
371 }
372
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300373 if (power) {
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200374 ret = regulator_bulk_enable(ARRAY_SIZE(dac33->supplies),
375 dac33->supplies);
376 if (ret != 0) {
377 dev_err(codec->dev,
378 "Failed to enable supplies: %d\n", ret);
379 goto exit;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300380 }
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200381
382 if (dac33->power_gpio >= 0)
383 gpio_set_value(dac33->power_gpio, 1);
384
385 dac33->chip_power = 1;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300386 } else {
387 dac33_soft_power(codec, 0);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200388 if (dac33->power_gpio >= 0)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300389 gpio_set_value(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300390
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200391 ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies),
392 dac33->supplies);
393 if (ret != 0) {
394 dev_err(codec->dev,
395 "Failed to disable supplies: %d\n", ret);
396 goto exit;
397 }
398
399 dac33->chip_power = 0;
400 }
401
402exit:
403 mutex_unlock(&dac33->mutex);
404 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300405}
406
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300407static int playback_event(struct snd_soc_dapm_widget *w,
408 struct snd_kcontrol *kcontrol, int event)
409{
410 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(w->codec);
411
412 switch (event) {
413 case SND_SOC_DAPM_PRE_PMU:
414 if (likely(dac33->substream)) {
415 dac33_calculate_times(dac33->substream);
416 dac33_prepare_chip(dac33->substream);
417 }
418 break;
419 }
420 return 0;
421}
422
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300423static int dac33_get_nsample(struct snd_kcontrol *kcontrol,
424 struct snd_ctl_elem_value *ucontrol)
425{
426 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900427 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300428
429 ucontrol->value.integer.value[0] = dac33->nsample;
430
431 return 0;
432}
433
434static int dac33_set_nsample(struct snd_kcontrol *kcontrol,
435 struct snd_ctl_elem_value *ucontrol)
436{
437 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900438 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300439 int ret = 0;
440
441 if (dac33->nsample == ucontrol->value.integer.value[0])
442 return 0;
443
444 if (ucontrol->value.integer.value[0] < dac33->nsample_min ||
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300445 ucontrol->value.integer.value[0] > dac33->nsample_max) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300446 ret = -EINVAL;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300447 } else {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300448 dac33->nsample = ucontrol->value.integer.value[0];
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300449 /* Re calculate the burst time */
450 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
451 dac33->nsample);
452 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300453
454 return ret;
455}
456
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +0300457static int dac33_get_uthr(struct snd_kcontrol *kcontrol,
458 struct snd_ctl_elem_value *ucontrol)
459{
460 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
461 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
462
463 ucontrol->value.integer.value[0] = dac33->uthr;
464
465 return 0;
466}
467
468static int dac33_set_uthr(struct snd_kcontrol *kcontrol,
469 struct snd_ctl_elem_value *ucontrol)
470{
471 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
472 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
473 int ret = 0;
474
475 if (dac33->substream)
476 return -EBUSY;
477
478 if (dac33->uthr == ucontrol->value.integer.value[0])
479 return 0;
480
481 if (ucontrol->value.integer.value[0] < (MODE7_LTHR + 10) ||
482 ucontrol->value.integer.value[0] > MODE7_UTHR)
483 ret = -EINVAL;
484 else
485 dac33->uthr = ucontrol->value.integer.value[0];
486
487 return ret;
488}
489
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200490static int dac33_get_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300491 struct snd_ctl_elem_value *ucontrol)
492{
493 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900494 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300495
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200496 ucontrol->value.integer.value[0] = dac33->fifo_mode;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300497
498 return 0;
499}
500
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200501static int dac33_set_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300502 struct snd_ctl_elem_value *ucontrol)
503{
504 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900505 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300506 int ret = 0;
507
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200508 if (dac33->fifo_mode == ucontrol->value.integer.value[0])
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300509 return 0;
510 /* Do not allow changes while stream is running*/
511 if (codec->active)
512 return -EPERM;
513
514 if (ucontrol->value.integer.value[0] < 0 ||
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200515 ucontrol->value.integer.value[0] >= DAC33_FIFO_LAST_MODE)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300516 ret = -EINVAL;
517 else
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200518 dac33->fifo_mode = ucontrol->value.integer.value[0];
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300519
520 return ret;
521}
522
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200523/* Codec operation modes */
524static const char *dac33_fifo_mode_texts[] = {
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200525 "Bypass", "Mode 1", "Mode 7"
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200526};
527
528static const struct soc_enum dac33_fifo_mode_enum =
529 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(dac33_fifo_mode_texts),
530 dac33_fifo_mode_texts);
531
Peter Ujfalusicf4bb692010-10-13 11:56:28 +0300532/* L/R Line Output Gain */
533static const char *lr_lineout_gain_texts[] = {
534 "Line -12dB DAC 0dB", "Line -6dB DAC 6dB",
535 "Line 0dB DAC 12dB", "Line 6dB DAC 18dB",
536};
537
538static const struct soc_enum l_lineout_gain_enum =
539 SOC_ENUM_SINGLE(DAC33_LDAC_PWR_CTRL, 0,
540 ARRAY_SIZE(lr_lineout_gain_texts),
541 lr_lineout_gain_texts);
542
543static const struct soc_enum r_lineout_gain_enum =
544 SOC_ENUM_SINGLE(DAC33_RDAC_PWR_CTRL, 0,
545 ARRAY_SIZE(lr_lineout_gain_texts),
546 lr_lineout_gain_texts);
547
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300548/*
549 * DACL/R digital volume control:
550 * from 0 dB to -63.5 in 0.5 dB steps
551 * Need to be inverted later on:
552 * 0x00 == 0 dB
553 * 0x7f == -63.5 dB
554 */
555static DECLARE_TLV_DB_SCALE(dac_digivol_tlv, -6350, 50, 0);
556
557static const struct snd_kcontrol_new dac33_snd_controls[] = {
558 SOC_DOUBLE_R_TLV("DAC Digital Playback Volume",
559 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL,
560 0, 0x7f, 1, dac_digivol_tlv),
561 SOC_DOUBLE_R("DAC Digital Playback Switch",
562 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL, 7, 1, 1),
563 SOC_DOUBLE_R("Line to Line Out Volume",
564 DAC33_LINEL_TO_LLO_VOL, DAC33_LINER_TO_RLO_VOL, 0, 127, 1),
Peter Ujfalusicf4bb692010-10-13 11:56:28 +0300565 SOC_ENUM("Left Line Output Gain", l_lineout_gain_enum),
566 SOC_ENUM("Right Line Output Gain", r_lineout_gain_enum),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300567};
568
Peter Ujfalusia577b312010-07-28 15:26:55 +0300569static const struct snd_kcontrol_new dac33_mode_snd_controls[] = {
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200570 SOC_ENUM_EXT("FIFO Mode", dac33_fifo_mode_enum,
571 dac33_get_fifo_mode, dac33_set_fifo_mode),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300572};
573
Peter Ujfalusia577b312010-07-28 15:26:55 +0300574static const struct snd_kcontrol_new dac33_fifo_snd_controls[] = {
575 SOC_SINGLE_EXT("nSample", 0, 0, 5900, 0,
576 dac33_get_nsample, dac33_set_nsample),
577 SOC_SINGLE_EXT("UTHR", 0, 0, MODE7_UTHR, 0,
578 dac33_get_uthr, dac33_set_uthr),
579};
580
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300581/* Analog bypass */
582static const struct snd_kcontrol_new dac33_dapm_abypassl_control =
583 SOC_DAPM_SINGLE("Switch", DAC33_LINEL_TO_LLO_VOL, 7, 1, 1);
584
585static const struct snd_kcontrol_new dac33_dapm_abypassr_control =
586 SOC_DAPM_SINGLE("Switch", DAC33_LINER_TO_RLO_VOL, 7, 1, 1);
587
588static const struct snd_soc_dapm_widget dac33_dapm_widgets[] = {
589 SND_SOC_DAPM_OUTPUT("LEFT_LO"),
590 SND_SOC_DAPM_OUTPUT("RIGHT_LO"),
591
592 SND_SOC_DAPM_INPUT("LINEL"),
593 SND_SOC_DAPM_INPUT("LINER"),
594
595 SND_SOC_DAPM_DAC("DACL", "Left Playback", DAC33_LDAC_PWR_CTRL, 2, 0),
596 SND_SOC_DAPM_DAC("DACR", "Right Playback", DAC33_RDAC_PWR_CTRL, 2, 0),
597
598 /* Analog bypass */
599 SND_SOC_DAPM_SWITCH("Analog Left Bypass", SND_SOC_NOPM, 0, 0,
600 &dac33_dapm_abypassl_control),
601 SND_SOC_DAPM_SWITCH("Analog Right Bypass", SND_SOC_NOPM, 0, 0,
602 &dac33_dapm_abypassr_control),
603
604 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Left Amp Power",
605 DAC33_OUT_AMP_PWR_CTRL, 6, 3, 3, 0),
606 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Right Amp Power",
607 DAC33_OUT_AMP_PWR_CTRL, 4, 3, 3, 0),
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300608
609 SND_SOC_DAPM_PRE("Prepare Playback", playback_event),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300610};
611
612static const struct snd_soc_dapm_route audio_map[] = {
613 /* Analog bypass */
614 {"Analog Left Bypass", "Switch", "LINEL"},
615 {"Analog Right Bypass", "Switch", "LINER"},
616
617 {"Output Left Amp Power", NULL, "DACL"},
618 {"Output Right Amp Power", NULL, "DACR"},
619
620 {"Output Left Amp Power", NULL, "Analog Left Bypass"},
621 {"Output Right Amp Power", NULL, "Analog Right Bypass"},
622
623 /* output */
624 {"LEFT_LO", NULL, "Output Left Amp Power"},
625 {"RIGHT_LO", NULL, "Output Right Amp Power"},
626};
627
628static int dac33_add_widgets(struct snd_soc_codec *codec)
629{
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200630 struct snd_soc_dapm_context *dapm = &codec->dapm;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300631
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200632 snd_soc_dapm_new_controls(dapm, dac33_dapm_widgets,
633 ARRAY_SIZE(dac33_dapm_widgets));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300634 /* set up audio path interconnects */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200635 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300636
637 return 0;
638}
639
640static int dac33_set_bias_level(struct snd_soc_codec *codec,
641 enum snd_soc_bias_level level)
642{
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200643 int ret;
644
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300645 switch (level) {
646 case SND_SOC_BIAS_ON:
647 dac33_soft_power(codec, 1);
648 break;
649 case SND_SOC_BIAS_PREPARE:
650 break;
651 case SND_SOC_BIAS_STANDBY:
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200652 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300653 /* Coming from OFF, switch on the codec */
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200654 ret = dac33_hard_power(codec, 1);
655 if (ret != 0)
656 return ret;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200657
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300658 dac33_init_chip(codec);
659 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300660 break;
661 case SND_SOC_BIAS_OFF:
Peter Ujfalusi2d4cdd62010-05-17 14:21:46 +0300662 /* Do not power off, when the codec is already off */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200663 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF)
Peter Ujfalusi2d4cdd62010-05-17 14:21:46 +0300664 return 0;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200665 ret = dac33_hard_power(codec, 0);
666 if (ret != 0)
667 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300668 break;
669 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200670 codec->dapm.bias_level = level;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300671
672 return 0;
673}
674
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200675static inline void dac33_prefill_handler(struct tlv320dac33_priv *dac33)
676{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300678 unsigned int delay;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200679
680 switch (dac33->fifo_mode) {
681 case DAC33_FIFO_MODE1:
682 dac33_write16(codec, DAC33_NSAMPLE_MSB,
Peter Ujfalusif430a272010-07-28 15:26:54 +0300683 DAC33_THRREG(dac33->nsample));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300684
685 /* Take the timestamps */
686 spin_lock_irq(&dac33->lock);
687 dac33->t_stamp2 = ktime_to_us(ktime_get());
688 dac33->t_stamp1 = dac33->t_stamp2;
689 spin_unlock_irq(&dac33->lock);
690
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200691 dac33_write16(codec, DAC33_PREFILL_MSB,
692 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300693 /* Enable Alarm Threshold IRQ with a delay */
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300694 delay = SAMPLES_TO_US(dac33->burst_rate,
695 dac33->alarm_threshold) + 1000;
696 usleep_range(delay, delay + 500);
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300697 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MAT);
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200698 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200699 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300700 /* Take the timestamp */
701 spin_lock_irq(&dac33->lock);
702 dac33->t_stamp1 = ktime_to_us(ktime_get());
703 /* Move back the timestamp with drain time */
704 dac33->t_stamp1 -= dac33->mode7_us_to_lthr;
705 spin_unlock_irq(&dac33->lock);
706
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200707 dac33_write16(codec, DAC33_PREFILL_MSB,
Peter Ujfalusi42603932010-04-23 10:09:59 +0300708 DAC33_THRREG(MODE7_LTHR));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300709
710 /* Enable Upper Threshold IRQ */
711 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MUT);
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200712 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200713 default:
714 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
715 dac33->fifo_mode);
716 break;
717 }
718}
719
720static inline void dac33_playback_handler(struct tlv320dac33_priv *dac33)
721{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000722 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200723
724 switch (dac33->fifo_mode) {
725 case DAC33_FIFO_MODE1:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300726 /* Take the timestamp */
727 spin_lock_irq(&dac33->lock);
728 dac33->t_stamp2 = ktime_to_us(ktime_get());
729 spin_unlock_irq(&dac33->lock);
730
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200731 dac33_write16(codec, DAC33_NSAMPLE_MSB,
732 DAC33_THRREG(dac33->nsample));
733 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200734 case DAC33_FIFO_MODE7:
735 /* At the moment we are not using interrupts in mode7 */
736 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200737 default:
738 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
739 dac33->fifo_mode);
740 break;
741 }
742}
743
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300744static void dac33_work(struct work_struct *work)
745{
746 struct snd_soc_codec *codec;
747 struct tlv320dac33_priv *dac33;
748 u8 reg;
749
750 dac33 = container_of(work, struct tlv320dac33_priv, work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000751 codec = dac33->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300752
753 mutex_lock(&dac33->mutex);
754 switch (dac33->state) {
755 case DAC33_PREFILL:
756 dac33->state = DAC33_PLAYBACK;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200757 dac33_prefill_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300758 break;
759 case DAC33_PLAYBACK:
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200760 dac33_playback_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300761 break;
762 case DAC33_IDLE:
763 break;
764 case DAC33_FLUSH:
765 dac33->state = DAC33_IDLE;
766 /* Mask all interrupts from dac33 */
767 dac33_write(codec, DAC33_FIFO_IRQ_MASK, 0);
768
769 /* flush fifo */
770 reg = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
771 reg |= DAC33_FIFOFLUSH;
772 dac33_write(codec, DAC33_FIFO_CTRL_A, reg);
773 break;
774 }
775 mutex_unlock(&dac33->mutex);
776}
777
778static irqreturn_t dac33_interrupt_handler(int irq, void *dev)
779{
780 struct snd_soc_codec *codec = dev;
Mark Brownb2c812e2010-04-14 15:35:19 +0900781 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300782
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300783 spin_lock(&dac33->lock);
784 dac33->t_stamp1 = ktime_to_us(ktime_get());
785 spin_unlock(&dac33->lock);
786
787 /* Do not schedule the workqueue in Mode7 */
788 if (dac33->fifo_mode != DAC33_FIFO_MODE7)
789 queue_work(dac33->dac33_wq, &dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300790
791 return IRQ_HANDLED;
792}
793
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300794static void dac33_oscwait(struct snd_soc_codec *codec)
795{
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300796 int timeout = 60;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300797 u8 reg;
798
799 do {
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300800 usleep_range(1000, 2000);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300801 dac33_read(codec, DAC33_INT_OSC_STATUS, &reg);
802 } while (((reg & 0x03) != DAC33_OSCSTATUS_NORMAL) && timeout--);
803 if ((reg & 0x03) != DAC33_OSCSTATUS_NORMAL)
804 dev_err(codec->dev,
805 "internal oscillator calibration failed\n");
806}
807
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300808static int dac33_startup(struct snd_pcm_substream *substream,
809 struct snd_soc_dai *dai)
810{
811 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000812 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300813 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
814
815 /* Stream started, save the substream pointer */
816 dac33->substream = substream;
817
818 return 0;
819}
820
821static void dac33_shutdown(struct snd_pcm_substream *substream,
822 struct snd_soc_dai *dai)
823{
824 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000825 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300826 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
827
828 dac33->substream = NULL;
Peter Ujfalusif430a272010-07-28 15:26:54 +0300829
830 /* Reset the nSample restrictions */
831 dac33->nsample_min = 0;
832 dac33->nsample_max = NSAMPLE_MAX;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300833}
834
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300835static int dac33_hw_params(struct snd_pcm_substream *substream,
836 struct snd_pcm_hw_params *params,
837 struct snd_soc_dai *dai)
838{
839 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000840 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300841
842 /* Check parameters for validity */
843 switch (params_rate(params)) {
844 case 44100:
845 case 48000:
846 break;
847 default:
848 dev_err(codec->dev, "unsupported rate %d\n",
849 params_rate(params));
850 return -EINVAL;
851 }
852
853 switch (params_format(params)) {
854 case SNDRV_PCM_FORMAT_S16_LE:
855 break;
856 default:
857 dev_err(codec->dev, "unsupported format %d\n",
858 params_format(params));
859 return -EINVAL;
860 }
861
862 return 0;
863}
864
865#define CALC_OSCSET(rate, refclk) ( \
Peter Ujfalusi7833ae02010-02-16 13:23:16 +0200866 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300867#define CALC_RATIOSET(rate, refclk) ( \
868 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000)
869
870/*
871 * tlv320dac33 is strict on the sequence of the register writes, if the register
872 * writes happens in different order, than dac33 might end up in unknown state.
873 * Use the known, working sequence of register writes to initialize the dac33.
874 */
875static int dac33_prepare_chip(struct snd_pcm_substream *substream)
876{
877 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000878 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900879 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300880 unsigned int oscset, ratioset, pwr_ctrl, reg_tmp;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200881 u8 aictrl_a, aictrl_b, fifoctrl_a;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300882
883 switch (substream->runtime->rate) {
884 case 44100:
885 case 48000:
886 oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk);
887 ratioset = CALC_RATIOSET(substream->runtime->rate,
888 dac33->refclk);
889 break;
890 default:
891 dev_err(codec->dev, "unsupported rate %d\n",
892 substream->runtime->rate);
893 return -EINVAL;
894 }
895
896
897 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
898 aictrl_a &= ~(DAC33_NCYCL_MASK | DAC33_WLEN_MASK);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200899 /* Read FIFO control A, and clear FIFO flush bit */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300900 fifoctrl_a = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200901 fifoctrl_a &= ~DAC33_FIFOFLUSH;
902
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300903 fifoctrl_a &= ~DAC33_WIDTH;
904 switch (substream->runtime->format) {
905 case SNDRV_PCM_FORMAT_S16_LE:
906 aictrl_a |= (DAC33_NCYCL_16 | DAC33_WLEN_16);
907 fifoctrl_a |= DAC33_WIDTH;
908 break;
909 default:
910 dev_err(codec->dev, "unsupported format %d\n",
911 substream->runtime->format);
912 return -EINVAL;
913 }
914
915 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300916
917 if (!dac33->chip_power) {
918 /*
919 * Chip is not powered yet.
920 * Do the init in the dac33_set_bias_level later.
921 */
922 mutex_unlock(&dac33->mutex);
923 return 0;
924 }
925
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200926 dac33_soft_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300927 dac33_soft_power(codec, 1);
928
929 reg_tmp = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
930 dac33_write(codec, DAC33_INT_OSC_CTRL, reg_tmp);
931
932 /* Write registers 0x08 and 0x09 (MSB, LSB) */
933 dac33_write16(codec, DAC33_INT_OSC_FREQ_RAT_A, oscset);
934
935 /* calib time: 128 is a nice number ;) */
936 dac33_write(codec, DAC33_CALIB_TIME, 128);
937
938 /* adjustment treshold & step */
939 dac33_write(codec, DAC33_INT_OSC_CTRL_B, DAC33_ADJTHRSHLD(2) |
940 DAC33_ADJSTEP(1));
941
942 /* div=4 / gain=1 / div */
943 dac33_write(codec, DAC33_INT_OSC_CTRL_C, DAC33_REFDIV(4));
944
945 pwr_ctrl = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
946 pwr_ctrl |= DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB;
947 dac33_write(codec, DAC33_PWR_CTRL, pwr_ctrl);
948
949 dac33_oscwait(codec);
950
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200951 if (dac33->fifo_mode) {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200952 /* Generic for all FIFO modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300953 /* 50-51 : ASRC Control registers */
Peter Ujfalusifdb6b1e2010-03-19 11:10:20 +0200954 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCLKDIV(1));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300955 dac33_write(codec, DAC33_ASRC_CTRL_B, 1); /* ??? */
956
957 /* Write registers 0x34 and 0x35 (MSB, LSB) */
958 dac33_write16(codec, DAC33_SRC_REF_CLK_RATIO_A, ratioset);
959
960 /* Set interrupts to high active */
961 dac33_write(codec, DAC33_INTP_CTRL_A, DAC33_INTPM_AHIGH);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300962 } else {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200963 /* FIFO bypass mode */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300964 /* 50-51 : ASRC Control registers */
965 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCBYP);
966 dac33_write(codec, DAC33_ASRC_CTRL_B, 0); /* ??? */
967 }
968
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200969 /* Interrupt behaviour configuration */
970 switch (dac33->fifo_mode) {
971 case DAC33_FIFO_MODE1:
972 dac33_write(codec, DAC33_FIFO_IRQ_MODE_B,
973 DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200974 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200975 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300976 dac33_write(codec, DAC33_FIFO_IRQ_MODE_A,
977 DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200978 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200979 default:
980 /* in FIFO bypass mode, the interrupts are not used */
981 break;
982 }
983
984 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
985
986 switch (dac33->fifo_mode) {
987 case DAC33_FIFO_MODE1:
988 /*
989 * For mode1:
990 * Disable the FIFO bypass (Enable the use of FIFO)
991 * Select nSample mode
992 * BCLK is only running when data is needed by DAC33
993 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300994 fifoctrl_a &= ~DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200995 fifoctrl_a &= ~DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200996 if (dac33->keep_bclk)
997 aictrl_b |= DAC33_BCLKON;
998 else
999 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001000 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001001 case DAC33_FIFO_MODE7:
1002 /*
1003 * For mode1:
1004 * Disable the FIFO bypass (Enable the use of FIFO)
1005 * Select Threshold mode
1006 * BCLK is only running when data is needed by DAC33
1007 */
1008 fifoctrl_a &= ~DAC33_FBYPAS;
1009 fifoctrl_a |= DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001010 if (dac33->keep_bclk)
1011 aictrl_b |= DAC33_BCLKON;
1012 else
1013 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001014 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001015 default:
1016 /*
1017 * For FIFO bypass mode:
1018 * Enable the FIFO bypass (Disable the FIFO use)
1019 * Set the BCLK as continous
1020 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001021 fifoctrl_a |= DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001022 aictrl_b |= DAC33_BCLKON;
1023 break;
1024 }
1025
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001026 dac33_write(codec, DAC33_FIFO_CTRL_A, fifoctrl_a);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001027 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001028 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001029
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001030 /*
1031 * BCLK divide ratio
1032 * 0: 1.5
1033 * 1: 1
1034 * 2: 2
1035 * ...
1036 * 254: 254
1037 * 255: 255
1038 */
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001039 if (dac33->fifo_mode)
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001040 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C,
1041 dac33->burst_bclkdiv);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001042 else
1043 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C, 32);
1044
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001045 switch (dac33->fifo_mode) {
1046 case DAC33_FIFO_MODE1:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001047 dac33_write16(codec, DAC33_ATHR_MSB,
1048 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001049 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001050 case DAC33_FIFO_MODE7:
1051 /*
1052 * Configure the threshold levels, and leave 10 sample space
1053 * at the bottom, and also at the top of the FIFO
1054 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001055 dac33_write16(codec, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
Peter Ujfalusi42603932010-04-23 10:09:59 +03001056 dac33_write16(codec, DAC33_LTHR_MSB, DAC33_THRREG(MODE7_LTHR));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001057 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001058 default:
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001059 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001060 }
1061
1062 mutex_unlock(&dac33->mutex);
1063
1064 return 0;
1065}
1066
1067static void dac33_calculate_times(struct snd_pcm_substream *substream)
1068{
1069 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001070 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001071 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusif430a272010-07-28 15:26:54 +03001072 unsigned int period_size = substream->runtime->period_size;
1073 unsigned int rate = substream->runtime->rate;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001074 unsigned int nsample_limit;
1075
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001076 /* In bypass mode we don't need to calculate */
1077 if (!dac33->fifo_mode)
1078 return;
1079
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001080 switch (dac33->fifo_mode) {
1081 case DAC33_FIFO_MODE1:
Peter Ujfalusif430a272010-07-28 15:26:54 +03001082 /* Number of samples under i2c latency */
1083 dac33->alarm_threshold = US_TO_SAMPLES(rate,
1084 dac33->mode1_latency);
Peter Ujfalusi1bc13b22010-10-29 09:49:37 +03001085 nsample_limit = DAC33_BUFFER_SIZE_SAMPLES -
1086 dac33->alarm_threshold;
1087
Peter Ujfalusia577b312010-07-28 15:26:55 +03001088 if (dac33->auto_fifo_config) {
1089 if (period_size <= dac33->alarm_threshold)
1090 /*
1091 * Configure nSamaple to number of periods,
1092 * which covers the latency requironment.
1093 */
1094 dac33->nsample = period_size *
1095 ((dac33->alarm_threshold / period_size) +
1096 (dac33->alarm_threshold % period_size ?
1097 1 : 0));
Peter Ujfalusi1bc13b22010-10-29 09:49:37 +03001098 else if (period_size > nsample_limit)
1099 dac33->nsample = nsample_limit;
Peter Ujfalusia577b312010-07-28 15:26:55 +03001100 else
1101 dac33->nsample = period_size;
1102 } else {
1103 /* nSample time shall not be shorter than i2c latency */
1104 dac33->nsample_min = dac33->alarm_threshold;
1105 /*
1106 * nSample should not be bigger than alsa buffer minus
1107 * size of one period to avoid overruns
1108 */
1109 dac33->nsample_max = substream->runtime->buffer_size -
1110 period_size;
Peter Ujfalusi1bc13b22010-10-29 09:49:37 +03001111
Peter Ujfalusia577b312010-07-28 15:26:55 +03001112 if (dac33->nsample_max > nsample_limit)
1113 dac33->nsample_max = nsample_limit;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001114
Peter Ujfalusia577b312010-07-28 15:26:55 +03001115 /* Correct the nSample if it is outside of the ranges */
1116 if (dac33->nsample < dac33->nsample_min)
1117 dac33->nsample = dac33->nsample_min;
1118 if (dac33->nsample > dac33->nsample_max)
1119 dac33->nsample = dac33->nsample_max;
1120 }
Peter Ujfalusif430a272010-07-28 15:26:54 +03001121
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001122 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
1123 dac33->nsample);
1124 dac33->t_stamp1 = 0;
1125 dac33->t_stamp2 = 0;
1126 break;
1127 case DAC33_FIFO_MODE7:
Peter Ujfalusia577b312010-07-28 15:26:55 +03001128 if (dac33->auto_fifo_config) {
1129 dac33->uthr = UTHR_FROM_PERIOD_SIZE(
1130 period_size,
1131 rate,
1132 dac33->burst_rate) + 9;
1133 if (dac33->uthr > MODE7_UTHR)
1134 dac33->uthr = MODE7_UTHR;
1135 if (dac33->uthr < (MODE7_LTHR + 10))
1136 dac33->uthr = (MODE7_LTHR + 10);
1137 }
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001138 dac33->mode7_us_to_lthr =
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001139 SAMPLES_TO_US(substream->runtime->rate,
1140 dac33->uthr - MODE7_LTHR + 1);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001141 dac33->t_stamp1 = 0;
1142 break;
1143 default:
1144 break;
1145 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001146
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001147}
1148
1149static int dac33_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
1150 struct snd_soc_dai *dai)
1151{
1152 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001153 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001154 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001155 int ret = 0;
1156
1157 switch (cmd) {
1158 case SNDRV_PCM_TRIGGER_START:
1159 case SNDRV_PCM_TRIGGER_RESUME:
1160 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001161 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001162 dac33->state = DAC33_PREFILL;
1163 queue_work(dac33->dac33_wq, &dac33->work);
1164 }
1165 break;
1166 case SNDRV_PCM_TRIGGER_STOP:
1167 case SNDRV_PCM_TRIGGER_SUSPEND:
1168 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001169 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001170 dac33->state = DAC33_FLUSH;
1171 queue_work(dac33->dac33_wq, &dac33->work);
1172 }
1173 break;
1174 default:
1175 ret = -EINVAL;
1176 }
1177
1178 return ret;
1179}
1180
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001181static snd_pcm_sframes_t dac33_dai_delay(
1182 struct snd_pcm_substream *substream,
1183 struct snd_soc_dai *dai)
1184{
1185 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001186 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001187 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
1188 unsigned long long t0, t1, t_now;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001189 unsigned int time_delta, uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001190 int samples_out, samples_in, samples;
1191 snd_pcm_sframes_t delay = 0;
1192
1193 switch (dac33->fifo_mode) {
1194 case DAC33_FIFO_BYPASS:
1195 break;
1196 case DAC33_FIFO_MODE1:
1197 spin_lock(&dac33->lock);
1198 t0 = dac33->t_stamp1;
1199 t1 = dac33->t_stamp2;
1200 spin_unlock(&dac33->lock);
1201 t_now = ktime_to_us(ktime_get());
1202
1203 /* We have not started to fill the FIFO yet, delay is 0 */
1204 if (!t1)
1205 goto out;
1206
1207 if (t0 > t1) {
1208 /*
1209 * Phase 1:
1210 * After Alarm threshold, and before nSample write
1211 */
1212 time_delta = t_now - t0;
1213 samples_out = time_delta ? US_TO_SAMPLES(
1214 substream->runtime->rate,
1215 time_delta) : 0;
1216
1217 if (likely(dac33->alarm_threshold > samples_out))
1218 delay = dac33->alarm_threshold - samples_out;
1219 else
1220 delay = 0;
1221 } else if ((t_now - t1) <= dac33->mode1_us_burst) {
1222 /*
1223 * Phase 2:
1224 * After nSample write (during burst operation)
1225 */
1226 time_delta = t_now - t0;
1227 samples_out = time_delta ? US_TO_SAMPLES(
1228 substream->runtime->rate,
1229 time_delta) : 0;
1230
1231 time_delta = t_now - t1;
1232 samples_in = time_delta ? US_TO_SAMPLES(
1233 dac33->burst_rate,
1234 time_delta) : 0;
1235
1236 samples = dac33->alarm_threshold;
1237 samples += (samples_in - samples_out);
1238
1239 if (likely(samples > 0))
1240 delay = samples;
1241 else
1242 delay = 0;
1243 } else {
1244 /*
1245 * Phase 3:
1246 * After burst operation, before next alarm threshold
1247 */
1248 time_delta = t_now - t0;
1249 samples_out = time_delta ? US_TO_SAMPLES(
1250 substream->runtime->rate,
1251 time_delta) : 0;
1252
1253 samples_in = dac33->nsample;
1254 samples = dac33->alarm_threshold;
1255 samples += (samples_in - samples_out);
1256
1257 if (likely(samples > 0))
1258 delay = samples > DAC33_BUFFER_SIZE_SAMPLES ?
1259 DAC33_BUFFER_SIZE_SAMPLES : samples;
1260 else
1261 delay = 0;
1262 }
1263 break;
1264 case DAC33_FIFO_MODE7:
1265 spin_lock(&dac33->lock);
1266 t0 = dac33->t_stamp1;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001267 uthr = dac33->uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001268 spin_unlock(&dac33->lock);
1269 t_now = ktime_to_us(ktime_get());
1270
1271 /* We have not started to fill the FIFO yet, delay is 0 */
1272 if (!t0)
1273 goto out;
1274
1275 if (t_now <= t0) {
1276 /*
1277 * Either the timestamps are messed or equal. Report
1278 * maximum delay
1279 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001280 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001281 goto out;
1282 }
1283
1284 time_delta = t_now - t0;
1285 if (time_delta <= dac33->mode7_us_to_lthr) {
1286 /*
1287 * Phase 1:
1288 * After burst (draining phase)
1289 */
1290 samples_out = US_TO_SAMPLES(
1291 substream->runtime->rate,
1292 time_delta);
1293
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001294 if (likely(uthr > samples_out))
1295 delay = uthr - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001296 else
1297 delay = 0;
1298 } else {
1299 /*
1300 * Phase 2:
1301 * During burst operation
1302 */
1303 time_delta = time_delta - dac33->mode7_us_to_lthr;
1304
1305 samples_out = US_TO_SAMPLES(
1306 substream->runtime->rate,
1307 time_delta);
1308 samples_in = US_TO_SAMPLES(
1309 dac33->burst_rate,
1310 time_delta);
1311 delay = MODE7_LTHR + samples_in - samples_out;
1312
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001313 if (unlikely(delay > uthr))
1314 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001315 }
1316 break;
1317 default:
1318 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
1319 dac33->fifo_mode);
1320 break;
1321 }
1322out:
1323 return delay;
1324}
1325
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001326static int dac33_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1327 int clk_id, unsigned int freq, int dir)
1328{
1329 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001330 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001331 u8 ioc_reg, asrcb_reg;
1332
1333 ioc_reg = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
1334 asrcb_reg = dac33_read_reg_cache(codec, DAC33_ASRC_CTRL_B);
1335 switch (clk_id) {
1336 case TLV320DAC33_MCLK:
1337 ioc_reg |= DAC33_REFSEL;
1338 asrcb_reg |= DAC33_SRCREFSEL;
1339 break;
1340 case TLV320DAC33_SLEEPCLK:
1341 ioc_reg &= ~DAC33_REFSEL;
1342 asrcb_reg &= ~DAC33_SRCREFSEL;
1343 break;
1344 default:
1345 dev_err(codec->dev, "Invalid clock ID (%d)\n", clk_id);
1346 break;
1347 }
1348 dac33->refclk = freq;
1349
1350 dac33_write_reg_cache(codec, DAC33_INT_OSC_CTRL, ioc_reg);
1351 dac33_write_reg_cache(codec, DAC33_ASRC_CTRL_B, asrcb_reg);
1352
1353 return 0;
1354}
1355
1356static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
1357 unsigned int fmt)
1358{
1359 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001360 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001361 u8 aictrl_a, aictrl_b;
1362
1363 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
1364 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
1365 /* set master/slave audio interface */
1366 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1367 case SND_SOC_DAIFMT_CBM_CFM:
1368 /* Codec Master */
1369 aictrl_a |= (DAC33_MSBCLK | DAC33_MSWCLK);
1370 break;
1371 case SND_SOC_DAIFMT_CBS_CFS:
1372 /* Codec Slave */
Peter Ujfalusiadcb8bc2009-12-31 10:30:23 +02001373 if (dac33->fifo_mode) {
1374 dev_err(codec->dev, "FIFO mode requires master mode\n");
1375 return -EINVAL;
1376 } else
1377 aictrl_a &= ~(DAC33_MSBCLK | DAC33_MSWCLK);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001378 break;
1379 default:
1380 return -EINVAL;
1381 }
1382
1383 aictrl_a &= ~DAC33_AFMT_MASK;
1384 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1385 case SND_SOC_DAIFMT_I2S:
1386 aictrl_a |= DAC33_AFMT_I2S;
1387 break;
1388 case SND_SOC_DAIFMT_DSP_A:
1389 aictrl_a |= DAC33_AFMT_DSP;
1390 aictrl_b &= ~DAC33_DATA_DELAY_MASK;
Peter Ujfalusi44f497b2010-03-19 11:10:19 +02001391 aictrl_b |= DAC33_DATA_DELAY(0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001392 break;
1393 case SND_SOC_DAIFMT_RIGHT_J:
1394 aictrl_a |= DAC33_AFMT_RIGHT_J;
1395 break;
1396 case SND_SOC_DAIFMT_LEFT_J:
1397 aictrl_a |= DAC33_AFMT_LEFT_J;
1398 break;
1399 default:
1400 dev_err(codec->dev, "Unsupported format (%u)\n",
1401 fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1402 return -EINVAL;
1403 }
1404
1405 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1406 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
1407
1408 return 0;
1409}
1410
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001411static int dac33_soc_probe(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001412{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001413 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001414 int ret = 0;
1415
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001416 codec->control_data = dac33->control_data;
1417 codec->hw_write = (hw_write_t) i2c_master_send;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001418 codec->dapm.idle_bias_off = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001419 dac33->codec = codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001420
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001421 /* Read the tlv320dac33 ID registers */
1422 ret = dac33_hard_power(codec, 1);
1423 if (ret != 0) {
1424 dev_err(codec->dev, "Failed to power up codec: %d\n", ret);
1425 goto err_power;
1426 }
Peter Ujfalusi911a0f02010-10-26 11:45:59 +03001427 ret = dac33_read_id(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001428 dac33_hard_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001429
Peter Ujfalusi911a0f02010-10-26 11:45:59 +03001430 if (ret < 0) {
1431 dev_err(codec->dev, "Failed to read chip ID: %d\n", ret);
1432 ret = -ENODEV;
1433 goto err_power;
1434 }
1435
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001436 /* Check if the IRQ number is valid and request it */
1437 if (dac33->irq >= 0) {
1438 ret = request_irq(dac33->irq, dac33_interrupt_handler,
1439 IRQF_TRIGGER_RISING | IRQF_DISABLED,
1440 codec->name, codec);
1441 if (ret < 0) {
1442 dev_err(codec->dev, "Could not request IRQ%d (%d)\n",
1443 dac33->irq, ret);
1444 dac33->irq = -1;
1445 }
1446 if (dac33->irq != -1) {
1447 /* Setup work queue */
1448 dac33->dac33_wq =
1449 create_singlethread_workqueue("tlv320dac33");
1450 if (dac33->dac33_wq == NULL) {
1451 free_irq(dac33->irq, codec);
1452 return -ENOMEM;
1453 }
1454
1455 INIT_WORK(&dac33->work, dac33_work);
1456 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001457 }
1458
1459 snd_soc_add_controls(codec, dac33_snd_controls,
1460 ARRAY_SIZE(dac33_snd_controls));
Peter Ujfalusia577b312010-07-28 15:26:55 +03001461 /* Only add the FIFO controls, if we have valid IRQ number */
1462 if (dac33->irq >= 0) {
1463 snd_soc_add_controls(codec, dac33_mode_snd_controls,
1464 ARRAY_SIZE(dac33_mode_snd_controls));
1465 /* FIFO usage controls only, if autoio config is not selected */
1466 if (!dac33->auto_fifo_config)
1467 snd_soc_add_controls(codec, dac33_fifo_snd_controls,
1468 ARRAY_SIZE(dac33_fifo_snd_controls));
1469 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001470 dac33_add_widgets(codec);
1471
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001472err_power:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001473 return ret;
1474}
1475
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001476static int dac33_soc_remove(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001477{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001478 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001479
1480 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1481
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001482 if (dac33->irq >= 0) {
1483 free_irq(dac33->irq, dac33->codec);
1484 destroy_workqueue(dac33->dac33_wq);
1485 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001486 return 0;
1487}
1488
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001489static int dac33_soc_suspend(struct snd_soc_codec *codec, pm_message_t state)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001490{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001491 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1492
1493 return 0;
1494}
1495
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001496static int dac33_soc_resume(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001497{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001498 dac33_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001499
1500 return 0;
1501}
1502
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001503static struct snd_soc_codec_driver soc_codec_dev_tlv320dac33 = {
1504 .read = dac33_read_reg_cache,
1505 .write = dac33_write_locked,
1506 .set_bias_level = dac33_set_bias_level,
1507 .reg_cache_size = ARRAY_SIZE(dac33_reg),
1508 .reg_word_size = sizeof(u8),
1509 .reg_cache_default = dac33_reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001510 .probe = dac33_soc_probe,
1511 .remove = dac33_soc_remove,
1512 .suspend = dac33_soc_suspend,
1513 .resume = dac33_soc_resume,
1514};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001515
1516#define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
1517 SNDRV_PCM_RATE_48000)
1518#define DAC33_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1519
1520static struct snd_soc_dai_ops dac33_dai_ops = {
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +03001521 .startup = dac33_startup,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001522 .shutdown = dac33_shutdown,
1523 .hw_params = dac33_hw_params,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001524 .trigger = dac33_pcm_trigger,
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001525 .delay = dac33_dai_delay,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001526 .set_sysclk = dac33_set_dai_sysclk,
1527 .set_fmt = dac33_set_dai_fmt,
1528};
1529
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001530static struct snd_soc_dai_driver dac33_dai = {
1531 .name = "tlv320dac33-hifi",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001532 .playback = {
1533 .stream_name = "Playback",
1534 .channels_min = 2,
1535 .channels_max = 2,
1536 .rates = DAC33_RATES,
1537 .formats = DAC33_FORMATS,},
1538 .ops = &dac33_dai_ops,
1539};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001540
Mark Brown735fe4c2010-01-12 14:13:00 +00001541static int __devinit dac33_i2c_probe(struct i2c_client *client,
1542 const struct i2c_device_id *id)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001543{
1544 struct tlv320dac33_platform_data *pdata;
1545 struct tlv320dac33_priv *dac33;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001546 int ret, i;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001547
1548 if (client->dev.platform_data == NULL) {
1549 dev_err(&client->dev, "Platform data not set\n");
1550 return -ENODEV;
1551 }
1552 pdata = client->dev.platform_data;
1553
1554 dac33 = kzalloc(sizeof(struct tlv320dac33_priv), GFP_KERNEL);
1555 if (dac33 == NULL)
1556 return -ENOMEM;
1557
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001558 dac33->control_data = client;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001559 mutex_init(&dac33->mutex);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001560 spin_lock_init(&dac33->lock);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001561
1562 i2c_set_clientdata(client, dac33);
1563
1564 dac33->power_gpio = pdata->power_gpio;
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001565 dac33->burst_bclkdiv = pdata->burst_bclkdiv;
Peter Ujfalusi76f47122010-04-23 10:10:00 +03001566 /* Pre calculate the burst rate */
1567 dac33->burst_rate = BURST_BASEFREQ_HZ / dac33->burst_bclkdiv / 32;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001568 dac33->keep_bclk = pdata->keep_bclk;
Peter Ujfalusia577b312010-07-28 15:26:55 +03001569 dac33->auto_fifo_config = pdata->auto_fifo_config;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001570 dac33->mode1_latency = pdata->mode1_latency;
1571 if (!dac33->mode1_latency)
1572 dac33->mode1_latency = 10000; /* 10ms */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001573 dac33->irq = client->irq;
1574 dac33->nsample = NSAMPLE_MAX;
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001575 dac33->nsample_max = NSAMPLE_MAX;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001576 dac33->uthr = MODE7_UTHR;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001577 /* Disable FIFO use by default */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001578 dac33->fifo_mode = DAC33_FIFO_BYPASS;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001579
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001580 /* Check if the reset GPIO number is valid and request it */
1581 if (dac33->power_gpio >= 0) {
1582 ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset");
1583 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001584 dev_err(&client->dev,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001585 "Failed to request reset GPIO (%d)\n",
1586 dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001587 goto err_gpio;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001588 }
1589 gpio_direction_output(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001590 }
1591
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001592 for (i = 0; i < ARRAY_SIZE(dac33->supplies); i++)
1593 dac33->supplies[i].supply = dac33_supply_names[i];
1594
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001595 ret = regulator_bulk_get(&client->dev, ARRAY_SIZE(dac33->supplies),
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001596 dac33->supplies);
1597
1598 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001599 dev_err(&client->dev, "Failed to request supplies: %d\n", ret);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001600 goto err_get;
1601 }
1602
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001603 ret = snd_soc_register_codec(&client->dev,
1604 &soc_codec_dev_tlv320dac33, &dac33_dai, 1);
1605 if (ret < 0)
1606 goto err_register;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001607
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001608 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001609err_register:
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001610 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1611err_get:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001612 if (dac33->power_gpio >= 0)
1613 gpio_free(dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001614err_gpio:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001615 kfree(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001616 return ret;
1617}
1618
Mark Brown735fe4c2010-01-12 14:13:00 +00001619static int __devexit dac33_i2c_remove(struct i2c_client *client)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001620{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001621 struct tlv320dac33_priv *dac33 = i2c_get_clientdata(client);
Peter Ujfalusi239fe552010-04-30 14:59:34 +03001622
1623 if (unlikely(dac33->chip_power))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001624 dac33_hard_power(dac33->codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001625
1626 if (dac33->power_gpio >= 0)
1627 gpio_free(dac33->power_gpio);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001628
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001629 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1630
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001631 snd_soc_unregister_codec(&client->dev);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001632 kfree(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001633
1634 return 0;
1635}
1636
1637static const struct i2c_device_id tlv320dac33_i2c_id[] = {
1638 {
1639 .name = "tlv320dac33",
1640 .driver_data = 0,
1641 },
1642 { },
1643};
1644
1645static struct i2c_driver tlv320dac33_i2c_driver = {
1646 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001647 .name = "tlv320dac33-codec",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001648 .owner = THIS_MODULE,
1649 },
1650 .probe = dac33_i2c_probe,
1651 .remove = __devexit_p(dac33_i2c_remove),
1652 .id_table = tlv320dac33_i2c_id,
1653};
1654
1655static int __init dac33_module_init(void)
1656{
1657 int r;
1658 r = i2c_add_driver(&tlv320dac33_i2c_driver);
1659 if (r < 0) {
1660 printk(KERN_ERR "DAC33: driver registration failed\n");
1661 return r;
1662 }
1663 return 0;
1664}
1665module_init(dac33_module_init);
1666
1667static void __exit dac33_module_exit(void)
1668{
1669 i2c_del_driver(&tlv320dac33_i2c_driver);
1670}
1671module_exit(dac33_module_exit);
1672
1673
1674MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
1675MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@nokia.com>");
1676MODULE_LICENSE("GPL");