blob: d251ff54a2d36f8b691b4aca2073d74adb010673 [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>
39#include <sound/soc-dapm.h>
40#include <sound/initval.h>
41#include <sound/tlv.h>
42
43#include <sound/tlv320dac33-plat.h>
44#include "tlv320dac33.h"
45
46#define DAC33_BUFFER_SIZE_BYTES 24576 /* bytes, 12288 16 bit words,
47 * 6144 stereo */
48#define DAC33_BUFFER_SIZE_SAMPLES 6144
49
50#define NSAMPLE_MAX 5700
51
Peter Ujfalusi42603932010-04-23 10:09:59 +030052#define MODE7_LTHR 10
53#define MODE7_UTHR (DAC33_BUFFER_SIZE_SAMPLES - 10)
54
Peter Ujfalusi76f47122010-04-23 10:10:00 +030055#define BURST_BASEFREQ_HZ 49152000
56
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030057#define SAMPLES_TO_US(rate, samples) \
58 (1000000000 / ((rate * 1000) / samples))
59
60#define US_TO_SAMPLES(rate, us) \
61 (rate / (1000000 / us))
62
Peter Ujfalusia577b312010-07-28 15:26:55 +030063#define UTHR_FROM_PERIOD_SIZE(samples, playrate, burstrate) \
64 ((samples * 5000) / ((burstrate * 5000) / (burstrate - playrate)))
65
Peter Ujfalusiad05c032010-04-30 14:59:36 +030066static void dac33_calculate_times(struct snd_pcm_substream *substream);
67static int dac33_prepare_chip(struct snd_pcm_substream *substream);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030068
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030069enum dac33_state {
70 DAC33_IDLE = 0,
71 DAC33_PREFILL,
72 DAC33_PLAYBACK,
73 DAC33_FLUSH,
74};
75
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +020076enum dac33_fifo_modes {
77 DAC33_FIFO_BYPASS = 0,
78 DAC33_FIFO_MODE1,
Peter Ujfalusi28e05d92009-12-31 10:30:22 +020079 DAC33_FIFO_MODE7,
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +020080 DAC33_FIFO_LAST_MODE,
81};
82
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020083#define DAC33_NUM_SUPPLIES 3
84static const char *dac33_supply_names[DAC33_NUM_SUPPLIES] = {
85 "AVDD",
86 "DVDD",
87 "IOVDD",
88};
89
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030090struct tlv320dac33_priv {
91 struct mutex mutex;
92 struct workqueue_struct *dac33_wq;
93 struct work_struct work;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000094 struct snd_soc_codec *codec;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020095 struct regulator_bulk_data supplies[DAC33_NUM_SUPPLIES];
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +030096 struct snd_pcm_substream *substream;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030097 int power_gpio;
98 int chip_power;
99 int irq;
100 unsigned int refclk;
101
102 unsigned int alarm_threshold; /* set to be half of LATENCY_TIME_MS */
103 unsigned int nsample_min; /* nsample should not be lower than
104 * this */
105 unsigned int nsample_max; /* nsample should not be higher than
106 * this */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200107 enum dac33_fifo_modes fifo_mode;/* FIFO mode selection */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300108 unsigned int nsample; /* burst read amount from host */
Peter Ujfalusif430a272010-07-28 15:26:54 +0300109 int mode1_latency; /* latency caused by the i2c writes in
110 * us */
Peter Ujfalusia577b312010-07-28 15:26:55 +0300111 int auto_fifo_config; /* Configure the FIFO based on the
112 * period size */
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +0200113 u8 burst_bclkdiv; /* BCLK divider value in burst mode */
Peter Ujfalusi76f47122010-04-23 10:10:00 +0300114 unsigned int burst_rate; /* Interface speed in Burst modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300115
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200116 int keep_bclk; /* Keep the BCLK continuously running
117 * in FIFO modes */
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300118 spinlock_t lock;
119 unsigned long long t_stamp1; /* Time stamp for FIFO modes to */
120 unsigned long long t_stamp2; /* calculate the FIFO caused delay */
121
122 unsigned int mode1_us_burst; /* Time to burst read n number of
123 * samples */
124 unsigned int mode7_us_to_lthr; /* Time to reach lthr from uthr */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300125
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +0300126 unsigned int uthr;
127
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300128 enum dac33_state state;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000129 enum snd_soc_control_type control_type;
130 void *control_data;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300131};
132
133static const u8 dac33_reg[DAC33_CACHEREGNUM] = {
1340x00, 0x00, 0x00, 0x00, /* 0x00 - 0x03 */
1350x00, 0x00, 0x00, 0x00, /* 0x04 - 0x07 */
1360x00, 0x00, 0x00, 0x00, /* 0x08 - 0x0b */
1370x00, 0x00, 0x00, 0x00, /* 0x0c - 0x0f */
1380x00, 0x00, 0x00, 0x00, /* 0x10 - 0x13 */
1390x00, 0x00, 0x00, 0x00, /* 0x14 - 0x17 */
1400x00, 0x00, 0x00, 0x00, /* 0x18 - 0x1b */
1410x00, 0x00, 0x00, 0x00, /* 0x1c - 0x1f */
1420x00, 0x00, 0x00, 0x00, /* 0x20 - 0x23 */
1430x00, 0x00, 0x00, 0x00, /* 0x24 - 0x27 */
1440x00, 0x00, 0x00, 0x00, /* 0x28 - 0x2b */
1450x00, 0x00, 0x00, 0x80, /* 0x2c - 0x2f */
1460x80, 0x00, 0x00, 0x00, /* 0x30 - 0x33 */
1470x00, 0x00, 0x00, 0x00, /* 0x34 - 0x37 */
1480x00, 0x00, /* 0x38 - 0x39 */
149/* Registers 0x3a - 0x3f are reserved */
150 0x00, 0x00, /* 0x3a - 0x3b */
1510x00, 0x00, 0x00, 0x00, /* 0x3c - 0x3f */
152
1530x00, 0x00, 0x00, 0x00, /* 0x40 - 0x43 */
1540x00, 0x80, /* 0x44 - 0x45 */
155/* Registers 0x46 - 0x47 are reserved */
156 0x80, 0x80, /* 0x46 - 0x47 */
157
1580x80, 0x00, 0x00, /* 0x48 - 0x4a */
159/* Registers 0x4b - 0x7c are reserved */
160 0x00, /* 0x4b */
1610x00, 0x00, 0x00, 0x00, /* 0x4c - 0x4f */
1620x00, 0x00, 0x00, 0x00, /* 0x50 - 0x53 */
1630x00, 0x00, 0x00, 0x00, /* 0x54 - 0x57 */
1640x00, 0x00, 0x00, 0x00, /* 0x58 - 0x5b */
1650x00, 0x00, 0x00, 0x00, /* 0x5c - 0x5f */
1660x00, 0x00, 0x00, 0x00, /* 0x60 - 0x63 */
1670x00, 0x00, 0x00, 0x00, /* 0x64 - 0x67 */
1680x00, 0x00, 0x00, 0x00, /* 0x68 - 0x6b */
1690x00, 0x00, 0x00, 0x00, /* 0x6c - 0x6f */
1700x00, 0x00, 0x00, 0x00, /* 0x70 - 0x73 */
1710x00, 0x00, 0x00, 0x00, /* 0x74 - 0x77 */
1720x00, 0x00, 0x00, 0x00, /* 0x78 - 0x7b */
1730x00, /* 0x7c */
174
175 0xda, 0x33, 0x03, /* 0x7d - 0x7f */
176};
177
178/* Register read and write */
179static inline unsigned int dac33_read_reg_cache(struct snd_soc_codec *codec,
180 unsigned reg)
181{
182 u8 *cache = codec->reg_cache;
183 if (reg >= DAC33_CACHEREGNUM)
184 return 0;
185
186 return cache[reg];
187}
188
189static inline void dac33_write_reg_cache(struct snd_soc_codec *codec,
190 u8 reg, u8 value)
191{
192 u8 *cache = codec->reg_cache;
193 if (reg >= DAC33_CACHEREGNUM)
194 return;
195
196 cache[reg] = value;
197}
198
199static int dac33_read(struct snd_soc_codec *codec, unsigned int reg,
200 u8 *value)
201{
Mark Brownb2c812e2010-04-14 15:35:19 +0900202 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300203 int val;
204
205 *value = reg & 0xff;
206
207 /* If powered off, return the cached value */
208 if (dac33->chip_power) {
209 val = i2c_smbus_read_byte_data(codec->control_data, value[0]);
210 if (val < 0) {
211 dev_err(codec->dev, "Read failed (%d)\n", val);
212 value[0] = dac33_read_reg_cache(codec, reg);
213 } 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
221 return 0;
222}
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 Ujfalusi239fe552010-04-30 14:59:34 +0300332static inline void dac33_read_id(struct snd_soc_codec *codec)
333{
334 u8 reg;
335
336 dac33_read(codec, DAC33_DEVICE_ID_MSB, &reg);
337 dac33_read(codec, DAC33_DEVICE_ID_LSB, &reg);
338 dac33_read(codec, DAC33_DEVICE_REV_ID, &reg);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300339}
340
341static inline void dac33_soft_power(struct snd_soc_codec *codec, int power)
342{
343 u8 reg;
344
345 reg = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
346 if (power)
347 reg |= DAC33_PDNALLB;
348 else
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200349 reg &= ~(DAC33_PDNALLB | DAC33_OSCPDNB |
350 DAC33_DACRPDNB | DAC33_DACLPDNB);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300351 dac33_write(codec, DAC33_PWR_CTRL, reg);
352}
353
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200354static int dac33_hard_power(struct snd_soc_codec *codec, int power)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300355{
Mark Brownb2c812e2010-04-14 15:35:19 +0900356 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300357 int ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300358
359 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300360
361 /* Safety check */
362 if (unlikely(power == dac33->chip_power)) {
Felipe Balbi7fd1d742010-05-17 14:21:45 +0300363 dev_dbg(codec->dev, "Trying to set the same power state: %s\n",
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300364 power ? "ON" : "OFF");
365 goto exit;
366 }
367
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300368 if (power) {
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200369 ret = regulator_bulk_enable(ARRAY_SIZE(dac33->supplies),
370 dac33->supplies);
371 if (ret != 0) {
372 dev_err(codec->dev,
373 "Failed to enable supplies: %d\n", ret);
374 goto exit;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300375 }
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200376
377 if (dac33->power_gpio >= 0)
378 gpio_set_value(dac33->power_gpio, 1);
379
380 dac33->chip_power = 1;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300381 } else {
382 dac33_soft_power(codec, 0);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200383 if (dac33->power_gpio >= 0)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300384 gpio_set_value(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300385
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200386 ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies),
387 dac33->supplies);
388 if (ret != 0) {
389 dev_err(codec->dev,
390 "Failed to disable supplies: %d\n", ret);
391 goto exit;
392 }
393
394 dac33->chip_power = 0;
395 }
396
397exit:
398 mutex_unlock(&dac33->mutex);
399 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300400}
401
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300402static int playback_event(struct snd_soc_dapm_widget *w,
403 struct snd_kcontrol *kcontrol, int event)
404{
405 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(w->codec);
406
407 switch (event) {
408 case SND_SOC_DAPM_PRE_PMU:
409 if (likely(dac33->substream)) {
410 dac33_calculate_times(dac33->substream);
411 dac33_prepare_chip(dac33->substream);
412 }
413 break;
414 }
415 return 0;
416}
417
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300418static int dac33_get_nsample(struct snd_kcontrol *kcontrol,
419 struct snd_ctl_elem_value *ucontrol)
420{
421 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900422 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300423
424 ucontrol->value.integer.value[0] = dac33->nsample;
425
426 return 0;
427}
428
429static int dac33_set_nsample(struct snd_kcontrol *kcontrol,
430 struct snd_ctl_elem_value *ucontrol)
431{
432 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900433 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300434 int ret = 0;
435
436 if (dac33->nsample == ucontrol->value.integer.value[0])
437 return 0;
438
439 if (ucontrol->value.integer.value[0] < dac33->nsample_min ||
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300440 ucontrol->value.integer.value[0] > dac33->nsample_max) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300441 ret = -EINVAL;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300442 } else {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300443 dac33->nsample = ucontrol->value.integer.value[0];
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300444 /* Re calculate the burst time */
445 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
446 dac33->nsample);
447 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300448
449 return ret;
450}
451
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +0300452static int dac33_get_uthr(struct snd_kcontrol *kcontrol,
453 struct snd_ctl_elem_value *ucontrol)
454{
455 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
456 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
457
458 ucontrol->value.integer.value[0] = dac33->uthr;
459
460 return 0;
461}
462
463static int dac33_set_uthr(struct snd_kcontrol *kcontrol,
464 struct snd_ctl_elem_value *ucontrol)
465{
466 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
467 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
468 int ret = 0;
469
470 if (dac33->substream)
471 return -EBUSY;
472
473 if (dac33->uthr == ucontrol->value.integer.value[0])
474 return 0;
475
476 if (ucontrol->value.integer.value[0] < (MODE7_LTHR + 10) ||
477 ucontrol->value.integer.value[0] > MODE7_UTHR)
478 ret = -EINVAL;
479 else
480 dac33->uthr = ucontrol->value.integer.value[0];
481
482 return ret;
483}
484
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200485static int dac33_get_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300486 struct snd_ctl_elem_value *ucontrol)
487{
488 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900489 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300490
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200491 ucontrol->value.integer.value[0] = dac33->fifo_mode;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300492
493 return 0;
494}
495
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200496static int dac33_set_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300497 struct snd_ctl_elem_value *ucontrol)
498{
499 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900500 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300501 int ret = 0;
502
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200503 if (dac33->fifo_mode == ucontrol->value.integer.value[0])
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300504 return 0;
505 /* Do not allow changes while stream is running*/
506 if (codec->active)
507 return -EPERM;
508
509 if (ucontrol->value.integer.value[0] < 0 ||
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200510 ucontrol->value.integer.value[0] >= DAC33_FIFO_LAST_MODE)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300511 ret = -EINVAL;
512 else
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200513 dac33->fifo_mode = ucontrol->value.integer.value[0];
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300514
515 return ret;
516}
517
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200518/* Codec operation modes */
519static const char *dac33_fifo_mode_texts[] = {
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200520 "Bypass", "Mode 1", "Mode 7"
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200521};
522
523static const struct soc_enum dac33_fifo_mode_enum =
524 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(dac33_fifo_mode_texts),
525 dac33_fifo_mode_texts);
526
Peter Ujfalusicf4bb692010-10-13 11:56:28 +0300527/* L/R Line Output Gain */
528static const char *lr_lineout_gain_texts[] = {
529 "Line -12dB DAC 0dB", "Line -6dB DAC 6dB",
530 "Line 0dB DAC 12dB", "Line 6dB DAC 18dB",
531};
532
533static const struct soc_enum l_lineout_gain_enum =
534 SOC_ENUM_SINGLE(DAC33_LDAC_PWR_CTRL, 0,
535 ARRAY_SIZE(lr_lineout_gain_texts),
536 lr_lineout_gain_texts);
537
538static const struct soc_enum r_lineout_gain_enum =
539 SOC_ENUM_SINGLE(DAC33_RDAC_PWR_CTRL, 0,
540 ARRAY_SIZE(lr_lineout_gain_texts),
541 lr_lineout_gain_texts);
542
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300543/*
544 * DACL/R digital volume control:
545 * from 0 dB to -63.5 in 0.5 dB steps
546 * Need to be inverted later on:
547 * 0x00 == 0 dB
548 * 0x7f == -63.5 dB
549 */
550static DECLARE_TLV_DB_SCALE(dac_digivol_tlv, -6350, 50, 0);
551
552static const struct snd_kcontrol_new dac33_snd_controls[] = {
553 SOC_DOUBLE_R_TLV("DAC Digital Playback Volume",
554 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL,
555 0, 0x7f, 1, dac_digivol_tlv),
556 SOC_DOUBLE_R("DAC Digital Playback Switch",
557 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL, 7, 1, 1),
558 SOC_DOUBLE_R("Line to Line Out Volume",
559 DAC33_LINEL_TO_LLO_VOL, DAC33_LINER_TO_RLO_VOL, 0, 127, 1),
Peter Ujfalusicf4bb692010-10-13 11:56:28 +0300560 SOC_ENUM("Left Line Output Gain", l_lineout_gain_enum),
561 SOC_ENUM("Right Line Output Gain", r_lineout_gain_enum),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300562};
563
Peter Ujfalusia577b312010-07-28 15:26:55 +0300564static const struct snd_kcontrol_new dac33_mode_snd_controls[] = {
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200565 SOC_ENUM_EXT("FIFO Mode", dac33_fifo_mode_enum,
566 dac33_get_fifo_mode, dac33_set_fifo_mode),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300567};
568
Peter Ujfalusia577b312010-07-28 15:26:55 +0300569static const struct snd_kcontrol_new dac33_fifo_snd_controls[] = {
570 SOC_SINGLE_EXT("nSample", 0, 0, 5900, 0,
571 dac33_get_nsample, dac33_set_nsample),
572 SOC_SINGLE_EXT("UTHR", 0, 0, MODE7_UTHR, 0,
573 dac33_get_uthr, dac33_set_uthr),
574};
575
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300576/* Analog bypass */
577static const struct snd_kcontrol_new dac33_dapm_abypassl_control =
578 SOC_DAPM_SINGLE("Switch", DAC33_LINEL_TO_LLO_VOL, 7, 1, 1);
579
580static const struct snd_kcontrol_new dac33_dapm_abypassr_control =
581 SOC_DAPM_SINGLE("Switch", DAC33_LINER_TO_RLO_VOL, 7, 1, 1);
582
583static const struct snd_soc_dapm_widget dac33_dapm_widgets[] = {
584 SND_SOC_DAPM_OUTPUT("LEFT_LO"),
585 SND_SOC_DAPM_OUTPUT("RIGHT_LO"),
586
587 SND_SOC_DAPM_INPUT("LINEL"),
588 SND_SOC_DAPM_INPUT("LINER"),
589
590 SND_SOC_DAPM_DAC("DACL", "Left Playback", DAC33_LDAC_PWR_CTRL, 2, 0),
591 SND_SOC_DAPM_DAC("DACR", "Right Playback", DAC33_RDAC_PWR_CTRL, 2, 0),
592
593 /* Analog bypass */
594 SND_SOC_DAPM_SWITCH("Analog Left Bypass", SND_SOC_NOPM, 0, 0,
595 &dac33_dapm_abypassl_control),
596 SND_SOC_DAPM_SWITCH("Analog Right Bypass", SND_SOC_NOPM, 0, 0,
597 &dac33_dapm_abypassr_control),
598
599 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Left Amp Power",
600 DAC33_OUT_AMP_PWR_CTRL, 6, 3, 3, 0),
601 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Right Amp Power",
602 DAC33_OUT_AMP_PWR_CTRL, 4, 3, 3, 0),
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300603
604 SND_SOC_DAPM_PRE("Prepare Playback", playback_event),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300605};
606
607static const struct snd_soc_dapm_route audio_map[] = {
608 /* Analog bypass */
609 {"Analog Left Bypass", "Switch", "LINEL"},
610 {"Analog Right Bypass", "Switch", "LINER"},
611
612 {"Output Left Amp Power", NULL, "DACL"},
613 {"Output Right Amp Power", NULL, "DACR"},
614
615 {"Output Left Amp Power", NULL, "Analog Left Bypass"},
616 {"Output Right Amp Power", NULL, "Analog Right Bypass"},
617
618 /* output */
619 {"LEFT_LO", NULL, "Output Left Amp Power"},
620 {"RIGHT_LO", NULL, "Output Right Amp Power"},
621};
622
623static int dac33_add_widgets(struct snd_soc_codec *codec)
624{
625 snd_soc_dapm_new_controls(codec, dac33_dapm_widgets,
626 ARRAY_SIZE(dac33_dapm_widgets));
627
628 /* set up audio path interconnects */
629 snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300630
631 return 0;
632}
633
634static int dac33_set_bias_level(struct snd_soc_codec *codec,
635 enum snd_soc_bias_level level)
636{
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200637 int ret;
638
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300639 switch (level) {
640 case SND_SOC_BIAS_ON:
641 dac33_soft_power(codec, 1);
642 break;
643 case SND_SOC_BIAS_PREPARE:
644 break;
645 case SND_SOC_BIAS_STANDBY:
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200646 if (codec->bias_level == SND_SOC_BIAS_OFF) {
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300647 /* Coming from OFF, switch on the codec */
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200648 ret = dac33_hard_power(codec, 1);
649 if (ret != 0)
650 return ret;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200651
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300652 dac33_init_chip(codec);
653 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300654 break;
655 case SND_SOC_BIAS_OFF:
Peter Ujfalusi2d4cdd62010-05-17 14:21:46 +0300656 /* Do not power off, when the codec is already off */
657 if (codec->bias_level == SND_SOC_BIAS_OFF)
658 return 0;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200659 ret = dac33_hard_power(codec, 0);
660 if (ret != 0)
661 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300662 break;
663 }
664 codec->bias_level = level;
665
666 return 0;
667}
668
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200669static inline void dac33_prefill_handler(struct tlv320dac33_priv *dac33)
670{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000671 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300672 unsigned int delay;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200673
674 switch (dac33->fifo_mode) {
675 case DAC33_FIFO_MODE1:
676 dac33_write16(codec, DAC33_NSAMPLE_MSB,
Peter Ujfalusif430a272010-07-28 15:26:54 +0300677 DAC33_THRREG(dac33->nsample));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300678
679 /* Take the timestamps */
680 spin_lock_irq(&dac33->lock);
681 dac33->t_stamp2 = ktime_to_us(ktime_get());
682 dac33->t_stamp1 = dac33->t_stamp2;
683 spin_unlock_irq(&dac33->lock);
684
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200685 dac33_write16(codec, DAC33_PREFILL_MSB,
686 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300687 /* Enable Alarm Threshold IRQ with a delay */
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300688 delay = SAMPLES_TO_US(dac33->burst_rate,
689 dac33->alarm_threshold) + 1000;
690 usleep_range(delay, delay + 500);
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300691 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MAT);
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200692 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200693 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300694 /* Take the timestamp */
695 spin_lock_irq(&dac33->lock);
696 dac33->t_stamp1 = ktime_to_us(ktime_get());
697 /* Move back the timestamp with drain time */
698 dac33->t_stamp1 -= dac33->mode7_us_to_lthr;
699 spin_unlock_irq(&dac33->lock);
700
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200701 dac33_write16(codec, DAC33_PREFILL_MSB,
Peter Ujfalusi42603932010-04-23 10:09:59 +0300702 DAC33_THRREG(MODE7_LTHR));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300703
704 /* Enable Upper Threshold IRQ */
705 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MUT);
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200706 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200707 default:
708 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
709 dac33->fifo_mode);
710 break;
711 }
712}
713
714static inline void dac33_playback_handler(struct tlv320dac33_priv *dac33)
715{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000716 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200717
718 switch (dac33->fifo_mode) {
719 case DAC33_FIFO_MODE1:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300720 /* Take the timestamp */
721 spin_lock_irq(&dac33->lock);
722 dac33->t_stamp2 = ktime_to_us(ktime_get());
723 spin_unlock_irq(&dac33->lock);
724
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200725 dac33_write16(codec, DAC33_NSAMPLE_MSB,
726 DAC33_THRREG(dac33->nsample));
727 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200728 case DAC33_FIFO_MODE7:
729 /* At the moment we are not using interrupts in mode7 */
730 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200731 default:
732 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
733 dac33->fifo_mode);
734 break;
735 }
736}
737
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300738static void dac33_work(struct work_struct *work)
739{
740 struct snd_soc_codec *codec;
741 struct tlv320dac33_priv *dac33;
742 u8 reg;
743
744 dac33 = container_of(work, struct tlv320dac33_priv, work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000745 codec = dac33->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300746
747 mutex_lock(&dac33->mutex);
748 switch (dac33->state) {
749 case DAC33_PREFILL:
750 dac33->state = DAC33_PLAYBACK;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200751 dac33_prefill_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300752 break;
753 case DAC33_PLAYBACK:
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200754 dac33_playback_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300755 break;
756 case DAC33_IDLE:
757 break;
758 case DAC33_FLUSH:
759 dac33->state = DAC33_IDLE;
760 /* Mask all interrupts from dac33 */
761 dac33_write(codec, DAC33_FIFO_IRQ_MASK, 0);
762
763 /* flush fifo */
764 reg = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
765 reg |= DAC33_FIFOFLUSH;
766 dac33_write(codec, DAC33_FIFO_CTRL_A, reg);
767 break;
768 }
769 mutex_unlock(&dac33->mutex);
770}
771
772static irqreturn_t dac33_interrupt_handler(int irq, void *dev)
773{
774 struct snd_soc_codec *codec = dev;
Mark Brownb2c812e2010-04-14 15:35:19 +0900775 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300776
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300777 spin_lock(&dac33->lock);
778 dac33->t_stamp1 = ktime_to_us(ktime_get());
779 spin_unlock(&dac33->lock);
780
781 /* Do not schedule the workqueue in Mode7 */
782 if (dac33->fifo_mode != DAC33_FIFO_MODE7)
783 queue_work(dac33->dac33_wq, &dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300784
785 return IRQ_HANDLED;
786}
787
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300788static void dac33_oscwait(struct snd_soc_codec *codec)
789{
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300790 int timeout = 60;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300791 u8 reg;
792
793 do {
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300794 usleep_range(1000, 2000);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300795 dac33_read(codec, DAC33_INT_OSC_STATUS, &reg);
796 } while (((reg & 0x03) != DAC33_OSCSTATUS_NORMAL) && timeout--);
797 if ((reg & 0x03) != DAC33_OSCSTATUS_NORMAL)
798 dev_err(codec->dev,
799 "internal oscillator calibration failed\n");
800}
801
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300802static int dac33_startup(struct snd_pcm_substream *substream,
803 struct snd_soc_dai *dai)
804{
805 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000806 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300807 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
808
809 /* Stream started, save the substream pointer */
810 dac33->substream = substream;
811
812 return 0;
813}
814
815static void dac33_shutdown(struct snd_pcm_substream *substream,
816 struct snd_soc_dai *dai)
817{
818 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000819 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300820 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
821
822 dac33->substream = NULL;
Peter Ujfalusif430a272010-07-28 15:26:54 +0300823
824 /* Reset the nSample restrictions */
825 dac33->nsample_min = 0;
826 dac33->nsample_max = NSAMPLE_MAX;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300827}
828
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300829static int dac33_hw_params(struct snd_pcm_substream *substream,
830 struct snd_pcm_hw_params *params,
831 struct snd_soc_dai *dai)
832{
833 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000834 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300835
836 /* Check parameters for validity */
837 switch (params_rate(params)) {
838 case 44100:
839 case 48000:
840 break;
841 default:
842 dev_err(codec->dev, "unsupported rate %d\n",
843 params_rate(params));
844 return -EINVAL;
845 }
846
847 switch (params_format(params)) {
848 case SNDRV_PCM_FORMAT_S16_LE:
849 break;
850 default:
851 dev_err(codec->dev, "unsupported format %d\n",
852 params_format(params));
853 return -EINVAL;
854 }
855
856 return 0;
857}
858
859#define CALC_OSCSET(rate, refclk) ( \
Peter Ujfalusi7833ae02010-02-16 13:23:16 +0200860 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300861#define CALC_RATIOSET(rate, refclk) ( \
862 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000)
863
864/*
865 * tlv320dac33 is strict on the sequence of the register writes, if the register
866 * writes happens in different order, than dac33 might end up in unknown state.
867 * Use the known, working sequence of register writes to initialize the dac33.
868 */
869static int dac33_prepare_chip(struct snd_pcm_substream *substream)
870{
871 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000872 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900873 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300874 unsigned int oscset, ratioset, pwr_ctrl, reg_tmp;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200875 u8 aictrl_a, aictrl_b, fifoctrl_a;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300876
877 switch (substream->runtime->rate) {
878 case 44100:
879 case 48000:
880 oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk);
881 ratioset = CALC_RATIOSET(substream->runtime->rate,
882 dac33->refclk);
883 break;
884 default:
885 dev_err(codec->dev, "unsupported rate %d\n",
886 substream->runtime->rate);
887 return -EINVAL;
888 }
889
890
891 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
892 aictrl_a &= ~(DAC33_NCYCL_MASK | DAC33_WLEN_MASK);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200893 /* Read FIFO control A, and clear FIFO flush bit */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300894 fifoctrl_a = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200895 fifoctrl_a &= ~DAC33_FIFOFLUSH;
896
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300897 fifoctrl_a &= ~DAC33_WIDTH;
898 switch (substream->runtime->format) {
899 case SNDRV_PCM_FORMAT_S16_LE:
900 aictrl_a |= (DAC33_NCYCL_16 | DAC33_WLEN_16);
901 fifoctrl_a |= DAC33_WIDTH;
902 break;
903 default:
904 dev_err(codec->dev, "unsupported format %d\n",
905 substream->runtime->format);
906 return -EINVAL;
907 }
908
909 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300910
911 if (!dac33->chip_power) {
912 /*
913 * Chip is not powered yet.
914 * Do the init in the dac33_set_bias_level later.
915 */
916 mutex_unlock(&dac33->mutex);
917 return 0;
918 }
919
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200920 dac33_soft_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300921 dac33_soft_power(codec, 1);
922
923 reg_tmp = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
924 dac33_write(codec, DAC33_INT_OSC_CTRL, reg_tmp);
925
926 /* Write registers 0x08 and 0x09 (MSB, LSB) */
927 dac33_write16(codec, DAC33_INT_OSC_FREQ_RAT_A, oscset);
928
929 /* calib time: 128 is a nice number ;) */
930 dac33_write(codec, DAC33_CALIB_TIME, 128);
931
932 /* adjustment treshold & step */
933 dac33_write(codec, DAC33_INT_OSC_CTRL_B, DAC33_ADJTHRSHLD(2) |
934 DAC33_ADJSTEP(1));
935
936 /* div=4 / gain=1 / div */
937 dac33_write(codec, DAC33_INT_OSC_CTRL_C, DAC33_REFDIV(4));
938
939 pwr_ctrl = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
940 pwr_ctrl |= DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB;
941 dac33_write(codec, DAC33_PWR_CTRL, pwr_ctrl);
942
943 dac33_oscwait(codec);
944
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200945 if (dac33->fifo_mode) {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200946 /* Generic for all FIFO modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300947 /* 50-51 : ASRC Control registers */
Peter Ujfalusifdb6b1e2010-03-19 11:10:20 +0200948 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCLKDIV(1));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300949 dac33_write(codec, DAC33_ASRC_CTRL_B, 1); /* ??? */
950
951 /* Write registers 0x34 and 0x35 (MSB, LSB) */
952 dac33_write16(codec, DAC33_SRC_REF_CLK_RATIO_A, ratioset);
953
954 /* Set interrupts to high active */
955 dac33_write(codec, DAC33_INTP_CTRL_A, DAC33_INTPM_AHIGH);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300956 } else {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200957 /* FIFO bypass mode */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300958 /* 50-51 : ASRC Control registers */
959 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCBYP);
960 dac33_write(codec, DAC33_ASRC_CTRL_B, 0); /* ??? */
961 }
962
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200963 /* Interrupt behaviour configuration */
964 switch (dac33->fifo_mode) {
965 case DAC33_FIFO_MODE1:
966 dac33_write(codec, DAC33_FIFO_IRQ_MODE_B,
967 DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200968 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200969 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300970 dac33_write(codec, DAC33_FIFO_IRQ_MODE_A,
971 DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200972 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200973 default:
974 /* in FIFO bypass mode, the interrupts are not used */
975 break;
976 }
977
978 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
979
980 switch (dac33->fifo_mode) {
981 case DAC33_FIFO_MODE1:
982 /*
983 * For mode1:
984 * Disable the FIFO bypass (Enable the use of FIFO)
985 * Select nSample mode
986 * BCLK is only running when data is needed by DAC33
987 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300988 fifoctrl_a &= ~DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200989 fifoctrl_a &= ~DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200990 if (dac33->keep_bclk)
991 aictrl_b |= DAC33_BCLKON;
992 else
993 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200994 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200995 case DAC33_FIFO_MODE7:
996 /*
997 * For mode1:
998 * Disable the FIFO bypass (Enable the use of FIFO)
999 * Select Threshold mode
1000 * BCLK is only running when data is needed by DAC33
1001 */
1002 fifoctrl_a &= ~DAC33_FBYPAS;
1003 fifoctrl_a |= DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001004 if (dac33->keep_bclk)
1005 aictrl_b |= DAC33_BCLKON;
1006 else
1007 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001008 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001009 default:
1010 /*
1011 * For FIFO bypass mode:
1012 * Enable the FIFO bypass (Disable the FIFO use)
1013 * Set the BCLK as continous
1014 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001015 fifoctrl_a |= DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001016 aictrl_b |= DAC33_BCLKON;
1017 break;
1018 }
1019
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001020 dac33_write(codec, DAC33_FIFO_CTRL_A, fifoctrl_a);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001021 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001022 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001023
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001024 /*
1025 * BCLK divide ratio
1026 * 0: 1.5
1027 * 1: 1
1028 * 2: 2
1029 * ...
1030 * 254: 254
1031 * 255: 255
1032 */
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001033 if (dac33->fifo_mode)
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001034 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C,
1035 dac33->burst_bclkdiv);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001036 else
1037 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C, 32);
1038
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001039 switch (dac33->fifo_mode) {
1040 case DAC33_FIFO_MODE1:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001041 dac33_write16(codec, DAC33_ATHR_MSB,
1042 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001043 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001044 case DAC33_FIFO_MODE7:
1045 /*
1046 * Configure the threshold levels, and leave 10 sample space
1047 * at the bottom, and also at the top of the FIFO
1048 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001049 dac33_write16(codec, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
Peter Ujfalusi42603932010-04-23 10:09:59 +03001050 dac33_write16(codec, DAC33_LTHR_MSB, DAC33_THRREG(MODE7_LTHR));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001051 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001052 default:
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001053 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001054 }
1055
1056 mutex_unlock(&dac33->mutex);
1057
1058 return 0;
1059}
1060
1061static void dac33_calculate_times(struct snd_pcm_substream *substream)
1062{
1063 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001064 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001065 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusif430a272010-07-28 15:26:54 +03001066 unsigned int period_size = substream->runtime->period_size;
1067 unsigned int rate = substream->runtime->rate;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001068 unsigned int nsample_limit;
1069
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001070 /* In bypass mode we don't need to calculate */
1071 if (!dac33->fifo_mode)
1072 return;
1073
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001074 switch (dac33->fifo_mode) {
1075 case DAC33_FIFO_MODE1:
Peter Ujfalusif430a272010-07-28 15:26:54 +03001076 /* Number of samples under i2c latency */
1077 dac33->alarm_threshold = US_TO_SAMPLES(rate,
1078 dac33->mode1_latency);
Peter Ujfalusia577b312010-07-28 15:26:55 +03001079 if (dac33->auto_fifo_config) {
1080 if (period_size <= dac33->alarm_threshold)
1081 /*
1082 * Configure nSamaple to number of periods,
1083 * which covers the latency requironment.
1084 */
1085 dac33->nsample = period_size *
1086 ((dac33->alarm_threshold / period_size) +
1087 (dac33->alarm_threshold % period_size ?
1088 1 : 0));
1089 else
1090 dac33->nsample = period_size;
1091 } else {
1092 /* nSample time shall not be shorter than i2c latency */
1093 dac33->nsample_min = dac33->alarm_threshold;
1094 /*
1095 * nSample should not be bigger than alsa buffer minus
1096 * size of one period to avoid overruns
1097 */
1098 dac33->nsample_max = substream->runtime->buffer_size -
1099 period_size;
1100 nsample_limit = DAC33_BUFFER_SIZE_SAMPLES -
1101 dac33->alarm_threshold;
1102 if (dac33->nsample_max > nsample_limit)
1103 dac33->nsample_max = nsample_limit;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001104
Peter Ujfalusia577b312010-07-28 15:26:55 +03001105 /* Correct the nSample if it is outside of the ranges */
1106 if (dac33->nsample < dac33->nsample_min)
1107 dac33->nsample = dac33->nsample_min;
1108 if (dac33->nsample > dac33->nsample_max)
1109 dac33->nsample = dac33->nsample_max;
1110 }
Peter Ujfalusif430a272010-07-28 15:26:54 +03001111
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001112 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
1113 dac33->nsample);
1114 dac33->t_stamp1 = 0;
1115 dac33->t_stamp2 = 0;
1116 break;
1117 case DAC33_FIFO_MODE7:
Peter Ujfalusia577b312010-07-28 15:26:55 +03001118 if (dac33->auto_fifo_config) {
1119 dac33->uthr = UTHR_FROM_PERIOD_SIZE(
1120 period_size,
1121 rate,
1122 dac33->burst_rate) + 9;
1123 if (dac33->uthr > MODE7_UTHR)
1124 dac33->uthr = MODE7_UTHR;
1125 if (dac33->uthr < (MODE7_LTHR + 10))
1126 dac33->uthr = (MODE7_LTHR + 10);
1127 }
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001128 dac33->mode7_us_to_lthr =
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001129 SAMPLES_TO_US(substream->runtime->rate,
1130 dac33->uthr - MODE7_LTHR + 1);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001131 dac33->t_stamp1 = 0;
1132 break;
1133 default:
1134 break;
1135 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001136
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001137}
1138
1139static int dac33_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
1140 struct snd_soc_dai *dai)
1141{
1142 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001143 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001144 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001145 int ret = 0;
1146
1147 switch (cmd) {
1148 case SNDRV_PCM_TRIGGER_START:
1149 case SNDRV_PCM_TRIGGER_RESUME:
1150 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001151 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001152 dac33->state = DAC33_PREFILL;
1153 queue_work(dac33->dac33_wq, &dac33->work);
1154 }
1155 break;
1156 case SNDRV_PCM_TRIGGER_STOP:
1157 case SNDRV_PCM_TRIGGER_SUSPEND:
1158 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001159 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001160 dac33->state = DAC33_FLUSH;
1161 queue_work(dac33->dac33_wq, &dac33->work);
1162 }
1163 break;
1164 default:
1165 ret = -EINVAL;
1166 }
1167
1168 return ret;
1169}
1170
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001171static snd_pcm_sframes_t dac33_dai_delay(
1172 struct snd_pcm_substream *substream,
1173 struct snd_soc_dai *dai)
1174{
1175 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001176 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001177 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
1178 unsigned long long t0, t1, t_now;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001179 unsigned int time_delta, uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001180 int samples_out, samples_in, samples;
1181 snd_pcm_sframes_t delay = 0;
1182
1183 switch (dac33->fifo_mode) {
1184 case DAC33_FIFO_BYPASS:
1185 break;
1186 case DAC33_FIFO_MODE1:
1187 spin_lock(&dac33->lock);
1188 t0 = dac33->t_stamp1;
1189 t1 = dac33->t_stamp2;
1190 spin_unlock(&dac33->lock);
1191 t_now = ktime_to_us(ktime_get());
1192
1193 /* We have not started to fill the FIFO yet, delay is 0 */
1194 if (!t1)
1195 goto out;
1196
1197 if (t0 > t1) {
1198 /*
1199 * Phase 1:
1200 * After Alarm threshold, and before nSample write
1201 */
1202 time_delta = t_now - t0;
1203 samples_out = time_delta ? US_TO_SAMPLES(
1204 substream->runtime->rate,
1205 time_delta) : 0;
1206
1207 if (likely(dac33->alarm_threshold > samples_out))
1208 delay = dac33->alarm_threshold - samples_out;
1209 else
1210 delay = 0;
1211 } else if ((t_now - t1) <= dac33->mode1_us_burst) {
1212 /*
1213 * Phase 2:
1214 * After nSample write (during burst operation)
1215 */
1216 time_delta = t_now - t0;
1217 samples_out = time_delta ? US_TO_SAMPLES(
1218 substream->runtime->rate,
1219 time_delta) : 0;
1220
1221 time_delta = t_now - t1;
1222 samples_in = time_delta ? US_TO_SAMPLES(
1223 dac33->burst_rate,
1224 time_delta) : 0;
1225
1226 samples = dac33->alarm_threshold;
1227 samples += (samples_in - samples_out);
1228
1229 if (likely(samples > 0))
1230 delay = samples;
1231 else
1232 delay = 0;
1233 } else {
1234 /*
1235 * Phase 3:
1236 * After burst operation, before next alarm threshold
1237 */
1238 time_delta = t_now - t0;
1239 samples_out = time_delta ? US_TO_SAMPLES(
1240 substream->runtime->rate,
1241 time_delta) : 0;
1242
1243 samples_in = dac33->nsample;
1244 samples = dac33->alarm_threshold;
1245 samples += (samples_in - samples_out);
1246
1247 if (likely(samples > 0))
1248 delay = samples > DAC33_BUFFER_SIZE_SAMPLES ?
1249 DAC33_BUFFER_SIZE_SAMPLES : samples;
1250 else
1251 delay = 0;
1252 }
1253 break;
1254 case DAC33_FIFO_MODE7:
1255 spin_lock(&dac33->lock);
1256 t0 = dac33->t_stamp1;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001257 uthr = dac33->uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001258 spin_unlock(&dac33->lock);
1259 t_now = ktime_to_us(ktime_get());
1260
1261 /* We have not started to fill the FIFO yet, delay is 0 */
1262 if (!t0)
1263 goto out;
1264
1265 if (t_now <= t0) {
1266 /*
1267 * Either the timestamps are messed or equal. Report
1268 * maximum delay
1269 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001270 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001271 goto out;
1272 }
1273
1274 time_delta = t_now - t0;
1275 if (time_delta <= dac33->mode7_us_to_lthr) {
1276 /*
1277 * Phase 1:
1278 * After burst (draining phase)
1279 */
1280 samples_out = US_TO_SAMPLES(
1281 substream->runtime->rate,
1282 time_delta);
1283
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001284 if (likely(uthr > samples_out))
1285 delay = uthr - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001286 else
1287 delay = 0;
1288 } else {
1289 /*
1290 * Phase 2:
1291 * During burst operation
1292 */
1293 time_delta = time_delta - dac33->mode7_us_to_lthr;
1294
1295 samples_out = US_TO_SAMPLES(
1296 substream->runtime->rate,
1297 time_delta);
1298 samples_in = US_TO_SAMPLES(
1299 dac33->burst_rate,
1300 time_delta);
1301 delay = MODE7_LTHR + samples_in - samples_out;
1302
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001303 if (unlikely(delay > uthr))
1304 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001305 }
1306 break;
1307 default:
1308 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
1309 dac33->fifo_mode);
1310 break;
1311 }
1312out:
1313 return delay;
1314}
1315
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001316static int dac33_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1317 int clk_id, unsigned int freq, int dir)
1318{
1319 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001320 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001321 u8 ioc_reg, asrcb_reg;
1322
1323 ioc_reg = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
1324 asrcb_reg = dac33_read_reg_cache(codec, DAC33_ASRC_CTRL_B);
1325 switch (clk_id) {
1326 case TLV320DAC33_MCLK:
1327 ioc_reg |= DAC33_REFSEL;
1328 asrcb_reg |= DAC33_SRCREFSEL;
1329 break;
1330 case TLV320DAC33_SLEEPCLK:
1331 ioc_reg &= ~DAC33_REFSEL;
1332 asrcb_reg &= ~DAC33_SRCREFSEL;
1333 break;
1334 default:
1335 dev_err(codec->dev, "Invalid clock ID (%d)\n", clk_id);
1336 break;
1337 }
1338 dac33->refclk = freq;
1339
1340 dac33_write_reg_cache(codec, DAC33_INT_OSC_CTRL, ioc_reg);
1341 dac33_write_reg_cache(codec, DAC33_ASRC_CTRL_B, asrcb_reg);
1342
1343 return 0;
1344}
1345
1346static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
1347 unsigned int fmt)
1348{
1349 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001350 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001351 u8 aictrl_a, aictrl_b;
1352
1353 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
1354 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
1355 /* set master/slave audio interface */
1356 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1357 case SND_SOC_DAIFMT_CBM_CFM:
1358 /* Codec Master */
1359 aictrl_a |= (DAC33_MSBCLK | DAC33_MSWCLK);
1360 break;
1361 case SND_SOC_DAIFMT_CBS_CFS:
1362 /* Codec Slave */
Peter Ujfalusiadcb8bc2009-12-31 10:30:23 +02001363 if (dac33->fifo_mode) {
1364 dev_err(codec->dev, "FIFO mode requires master mode\n");
1365 return -EINVAL;
1366 } else
1367 aictrl_a &= ~(DAC33_MSBCLK | DAC33_MSWCLK);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001368 break;
1369 default:
1370 return -EINVAL;
1371 }
1372
1373 aictrl_a &= ~DAC33_AFMT_MASK;
1374 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1375 case SND_SOC_DAIFMT_I2S:
1376 aictrl_a |= DAC33_AFMT_I2S;
1377 break;
1378 case SND_SOC_DAIFMT_DSP_A:
1379 aictrl_a |= DAC33_AFMT_DSP;
1380 aictrl_b &= ~DAC33_DATA_DELAY_MASK;
Peter Ujfalusi44f497b2010-03-19 11:10:19 +02001381 aictrl_b |= DAC33_DATA_DELAY(0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001382 break;
1383 case SND_SOC_DAIFMT_RIGHT_J:
1384 aictrl_a |= DAC33_AFMT_RIGHT_J;
1385 break;
1386 case SND_SOC_DAIFMT_LEFT_J:
1387 aictrl_a |= DAC33_AFMT_LEFT_J;
1388 break;
1389 default:
1390 dev_err(codec->dev, "Unsupported format (%u)\n",
1391 fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1392 return -EINVAL;
1393 }
1394
1395 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1396 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
1397
1398 return 0;
1399}
1400
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001401static int dac33_soc_probe(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001402{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001403 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001404 int ret = 0;
1405
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001406 codec->control_data = dac33->control_data;
1407 codec->hw_write = (hw_write_t) i2c_master_send;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001408 codec->idle_bias_off = 1;
1409 dac33->codec = codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001410
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001411 /* Read the tlv320dac33 ID registers */
1412 ret = dac33_hard_power(codec, 1);
1413 if (ret != 0) {
1414 dev_err(codec->dev, "Failed to power up codec: %d\n", ret);
1415 goto err_power;
1416 }
1417 dac33_read_id(codec);
1418 dac33_hard_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001419
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001420 /* Check if the IRQ number is valid and request it */
1421 if (dac33->irq >= 0) {
1422 ret = request_irq(dac33->irq, dac33_interrupt_handler,
1423 IRQF_TRIGGER_RISING | IRQF_DISABLED,
1424 codec->name, codec);
1425 if (ret < 0) {
1426 dev_err(codec->dev, "Could not request IRQ%d (%d)\n",
1427 dac33->irq, ret);
1428 dac33->irq = -1;
1429 }
1430 if (dac33->irq != -1) {
1431 /* Setup work queue */
1432 dac33->dac33_wq =
1433 create_singlethread_workqueue("tlv320dac33");
1434 if (dac33->dac33_wq == NULL) {
1435 free_irq(dac33->irq, codec);
1436 return -ENOMEM;
1437 }
1438
1439 INIT_WORK(&dac33->work, dac33_work);
1440 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001441 }
1442
1443 snd_soc_add_controls(codec, dac33_snd_controls,
1444 ARRAY_SIZE(dac33_snd_controls));
Peter Ujfalusia577b312010-07-28 15:26:55 +03001445 /* Only add the FIFO controls, if we have valid IRQ number */
1446 if (dac33->irq >= 0) {
1447 snd_soc_add_controls(codec, dac33_mode_snd_controls,
1448 ARRAY_SIZE(dac33_mode_snd_controls));
1449 /* FIFO usage controls only, if autoio config is not selected */
1450 if (!dac33->auto_fifo_config)
1451 snd_soc_add_controls(codec, dac33_fifo_snd_controls,
1452 ARRAY_SIZE(dac33_fifo_snd_controls));
1453 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001454 dac33_add_widgets(codec);
1455
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001456err_power:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001457 return ret;
1458}
1459
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001460static int dac33_soc_remove(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001461{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001462 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001463
1464 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1465
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001466 if (dac33->irq >= 0) {
1467 free_irq(dac33->irq, dac33->codec);
1468 destroy_workqueue(dac33->dac33_wq);
1469 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001470 return 0;
1471}
1472
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001473static int dac33_soc_suspend(struct snd_soc_codec *codec, pm_message_t state)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001474{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001475 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1476
1477 return 0;
1478}
1479
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001480static int dac33_soc_resume(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001481{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001482 dac33_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001483
1484 return 0;
1485}
1486
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001487static struct snd_soc_codec_driver soc_codec_dev_tlv320dac33 = {
1488 .read = dac33_read_reg_cache,
1489 .write = dac33_write_locked,
1490 .set_bias_level = dac33_set_bias_level,
1491 .reg_cache_size = ARRAY_SIZE(dac33_reg),
1492 .reg_word_size = sizeof(u8),
1493 .reg_cache_default = dac33_reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001494 .probe = dac33_soc_probe,
1495 .remove = dac33_soc_remove,
1496 .suspend = dac33_soc_suspend,
1497 .resume = dac33_soc_resume,
1498};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001499
1500#define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
1501 SNDRV_PCM_RATE_48000)
1502#define DAC33_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1503
1504static struct snd_soc_dai_ops dac33_dai_ops = {
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +03001505 .startup = dac33_startup,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001506 .shutdown = dac33_shutdown,
1507 .hw_params = dac33_hw_params,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001508 .trigger = dac33_pcm_trigger,
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001509 .delay = dac33_dai_delay,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001510 .set_sysclk = dac33_set_dai_sysclk,
1511 .set_fmt = dac33_set_dai_fmt,
1512};
1513
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001514static struct snd_soc_dai_driver dac33_dai = {
1515 .name = "tlv320dac33-hifi",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001516 .playback = {
1517 .stream_name = "Playback",
1518 .channels_min = 2,
1519 .channels_max = 2,
1520 .rates = DAC33_RATES,
1521 .formats = DAC33_FORMATS,},
1522 .ops = &dac33_dai_ops,
1523};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001524
Mark Brown735fe4c2010-01-12 14:13:00 +00001525static int __devinit dac33_i2c_probe(struct i2c_client *client,
1526 const struct i2c_device_id *id)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001527{
1528 struct tlv320dac33_platform_data *pdata;
1529 struct tlv320dac33_priv *dac33;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001530 int ret, i;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001531
1532 if (client->dev.platform_data == NULL) {
1533 dev_err(&client->dev, "Platform data not set\n");
1534 return -ENODEV;
1535 }
1536 pdata = client->dev.platform_data;
1537
1538 dac33 = kzalloc(sizeof(struct tlv320dac33_priv), GFP_KERNEL);
1539 if (dac33 == NULL)
1540 return -ENOMEM;
1541
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001542 dac33->control_data = client;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001543 mutex_init(&dac33->mutex);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001544 spin_lock_init(&dac33->lock);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001545
1546 i2c_set_clientdata(client, dac33);
1547
1548 dac33->power_gpio = pdata->power_gpio;
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001549 dac33->burst_bclkdiv = pdata->burst_bclkdiv;
Peter Ujfalusi76f47122010-04-23 10:10:00 +03001550 /* Pre calculate the burst rate */
1551 dac33->burst_rate = BURST_BASEFREQ_HZ / dac33->burst_bclkdiv / 32;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001552 dac33->keep_bclk = pdata->keep_bclk;
Peter Ujfalusia577b312010-07-28 15:26:55 +03001553 dac33->auto_fifo_config = pdata->auto_fifo_config;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001554 dac33->mode1_latency = pdata->mode1_latency;
1555 if (!dac33->mode1_latency)
1556 dac33->mode1_latency = 10000; /* 10ms */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001557 dac33->irq = client->irq;
1558 dac33->nsample = NSAMPLE_MAX;
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001559 dac33->nsample_max = NSAMPLE_MAX;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001560 dac33->uthr = MODE7_UTHR;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001561 /* Disable FIFO use by default */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001562 dac33->fifo_mode = DAC33_FIFO_BYPASS;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001563
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001564 /* Check if the reset GPIO number is valid and request it */
1565 if (dac33->power_gpio >= 0) {
1566 ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset");
1567 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001568 dev_err(&client->dev,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001569 "Failed to request reset GPIO (%d)\n",
1570 dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001571 goto err_gpio;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001572 }
1573 gpio_direction_output(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001574 }
1575
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001576 for (i = 0; i < ARRAY_SIZE(dac33->supplies); i++)
1577 dac33->supplies[i].supply = dac33_supply_names[i];
1578
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001579 ret = regulator_bulk_get(&client->dev, ARRAY_SIZE(dac33->supplies),
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001580 dac33->supplies);
1581
1582 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001583 dev_err(&client->dev, "Failed to request supplies: %d\n", ret);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001584 goto err_get;
1585 }
1586
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001587 ret = snd_soc_register_codec(&client->dev,
1588 &soc_codec_dev_tlv320dac33, &dac33_dai, 1);
1589 if (ret < 0)
1590 goto err_register;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001591
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001592 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001593err_register:
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001594 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1595err_get:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001596 if (dac33->power_gpio >= 0)
1597 gpio_free(dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001598err_gpio:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001599 kfree(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001600 return ret;
1601}
1602
Mark Brown735fe4c2010-01-12 14:13:00 +00001603static int __devexit dac33_i2c_remove(struct i2c_client *client)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001604{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001605 struct tlv320dac33_priv *dac33 = i2c_get_clientdata(client);
Peter Ujfalusi239fe552010-04-30 14:59:34 +03001606
1607 if (unlikely(dac33->chip_power))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001608 dac33_hard_power(dac33->codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001609
1610 if (dac33->power_gpio >= 0)
1611 gpio_free(dac33->power_gpio);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001612
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001613 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1614
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615 snd_soc_unregister_codec(&client->dev);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001616 kfree(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001617
1618 return 0;
1619}
1620
1621static const struct i2c_device_id tlv320dac33_i2c_id[] = {
1622 {
1623 .name = "tlv320dac33",
1624 .driver_data = 0,
1625 },
1626 { },
1627};
1628
1629static struct i2c_driver tlv320dac33_i2c_driver = {
1630 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001631 .name = "tlv320dac33-codec",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001632 .owner = THIS_MODULE,
1633 },
1634 .probe = dac33_i2c_probe,
1635 .remove = __devexit_p(dac33_i2c_remove),
1636 .id_table = tlv320dac33_i2c_id,
1637};
1638
1639static int __init dac33_module_init(void)
1640{
1641 int r;
1642 r = i2c_add_driver(&tlv320dac33_i2c_driver);
1643 if (r < 0) {
1644 printk(KERN_ERR "DAC33: driver registration failed\n");
1645 return r;
1646 }
1647 return 0;
1648}
1649module_init(dac33_module_init);
1650
1651static void __exit dac33_module_exit(void)
1652{
1653 i2c_del_driver(&tlv320dac33_i2c_driver);
1654}
1655module_exit(dac33_module_exit);
1656
1657
1658MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
1659MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@nokia.com>");
1660MODULE_LICENSE("GPL");