blob: 58349dcd1a6eec135e35ea6ef114eebb77335de3 [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 Ujfalusi76f471272010-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 Ujfalusi76f471272010-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 Ujfalusicf4bb6982010-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 Ujfalusicf4bb6982010-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 Ujfalusid4f102d2009-12-31 10:30:20 +0200672
673 switch (dac33->fifo_mode) {
674 case DAC33_FIFO_MODE1:
675 dac33_write16(codec, DAC33_NSAMPLE_MSB,
Peter Ujfalusif430a272010-07-28 15:26:54 +0300676 DAC33_THRREG(dac33->nsample));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300677
678 /* Take the timestamps */
679 spin_lock_irq(&dac33->lock);
680 dac33->t_stamp2 = ktime_to_us(ktime_get());
681 dac33->t_stamp1 = dac33->t_stamp2;
682 spin_unlock_irq(&dac33->lock);
683
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200684 dac33_write16(codec, DAC33_PREFILL_MSB,
685 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300686 /* Enable Alarm Threshold IRQ with a delay */
687 udelay(SAMPLES_TO_US(dac33->burst_rate,
688 dac33->alarm_threshold));
689 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MAT);
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200690 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200691 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300692 /* Take the timestamp */
693 spin_lock_irq(&dac33->lock);
694 dac33->t_stamp1 = ktime_to_us(ktime_get());
695 /* Move back the timestamp with drain time */
696 dac33->t_stamp1 -= dac33->mode7_us_to_lthr;
697 spin_unlock_irq(&dac33->lock);
698
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200699 dac33_write16(codec, DAC33_PREFILL_MSB,
Peter Ujfalusi42603932010-04-23 10:09:59 +0300700 DAC33_THRREG(MODE7_LTHR));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300701
702 /* Enable Upper Threshold IRQ */
703 dac33_write(codec, DAC33_FIFO_IRQ_MASK, DAC33_MUT);
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200704 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200705 default:
706 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
707 dac33->fifo_mode);
708 break;
709 }
710}
711
712static inline void dac33_playback_handler(struct tlv320dac33_priv *dac33)
713{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000714 struct snd_soc_codec *codec = dac33->codec;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200715
716 switch (dac33->fifo_mode) {
717 case DAC33_FIFO_MODE1:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300718 /* Take the timestamp */
719 spin_lock_irq(&dac33->lock);
720 dac33->t_stamp2 = ktime_to_us(ktime_get());
721 spin_unlock_irq(&dac33->lock);
722
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200723 dac33_write16(codec, DAC33_NSAMPLE_MSB,
724 DAC33_THRREG(dac33->nsample));
725 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200726 case DAC33_FIFO_MODE7:
727 /* At the moment we are not using interrupts in mode7 */
728 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200729 default:
730 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
731 dac33->fifo_mode);
732 break;
733 }
734}
735
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300736static void dac33_work(struct work_struct *work)
737{
738 struct snd_soc_codec *codec;
739 struct tlv320dac33_priv *dac33;
740 u8 reg;
741
742 dac33 = container_of(work, struct tlv320dac33_priv, work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743 codec = dac33->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300744
745 mutex_lock(&dac33->mutex);
746 switch (dac33->state) {
747 case DAC33_PREFILL:
748 dac33->state = DAC33_PLAYBACK;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200749 dac33_prefill_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300750 break;
751 case DAC33_PLAYBACK:
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200752 dac33_playback_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300753 break;
754 case DAC33_IDLE:
755 break;
756 case DAC33_FLUSH:
757 dac33->state = DAC33_IDLE;
758 /* Mask all interrupts from dac33 */
759 dac33_write(codec, DAC33_FIFO_IRQ_MASK, 0);
760
761 /* flush fifo */
762 reg = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
763 reg |= DAC33_FIFOFLUSH;
764 dac33_write(codec, DAC33_FIFO_CTRL_A, reg);
765 break;
766 }
767 mutex_unlock(&dac33->mutex);
768}
769
770static irqreturn_t dac33_interrupt_handler(int irq, void *dev)
771{
772 struct snd_soc_codec *codec = dev;
Mark Brownb2c812e2010-04-14 15:35:19 +0900773 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300774
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300775 spin_lock(&dac33->lock);
776 dac33->t_stamp1 = ktime_to_us(ktime_get());
777 spin_unlock(&dac33->lock);
778
779 /* Do not schedule the workqueue in Mode7 */
780 if (dac33->fifo_mode != DAC33_FIFO_MODE7)
781 queue_work(dac33->dac33_wq, &dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300782
783 return IRQ_HANDLED;
784}
785
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300786static void dac33_oscwait(struct snd_soc_codec *codec)
787{
788 int timeout = 20;
789 u8 reg;
790
791 do {
792 msleep(1);
793 dac33_read(codec, DAC33_INT_OSC_STATUS, &reg);
794 } while (((reg & 0x03) != DAC33_OSCSTATUS_NORMAL) && timeout--);
795 if ((reg & 0x03) != DAC33_OSCSTATUS_NORMAL)
796 dev_err(codec->dev,
797 "internal oscillator calibration failed\n");
798}
799
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300800static int dac33_startup(struct snd_pcm_substream *substream,
801 struct snd_soc_dai *dai)
802{
803 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000804 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300805 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
806
807 /* Stream started, save the substream pointer */
808 dac33->substream = substream;
809
810 return 0;
811}
812
813static void dac33_shutdown(struct snd_pcm_substream *substream,
814 struct snd_soc_dai *dai)
815{
816 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000817 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300818 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
819
820 dac33->substream = NULL;
Peter Ujfalusif430a272010-07-28 15:26:54 +0300821
822 /* Reset the nSample restrictions */
823 dac33->nsample_min = 0;
824 dac33->nsample_max = NSAMPLE_MAX;
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300825}
826
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300827static int dac33_hw_params(struct snd_pcm_substream *substream,
828 struct snd_pcm_hw_params *params,
829 struct snd_soc_dai *dai)
830{
831 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000832 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300833
834 /* Check parameters for validity */
835 switch (params_rate(params)) {
836 case 44100:
837 case 48000:
838 break;
839 default:
840 dev_err(codec->dev, "unsupported rate %d\n",
841 params_rate(params));
842 return -EINVAL;
843 }
844
845 switch (params_format(params)) {
846 case SNDRV_PCM_FORMAT_S16_LE:
847 break;
848 default:
849 dev_err(codec->dev, "unsupported format %d\n",
850 params_format(params));
851 return -EINVAL;
852 }
853
854 return 0;
855}
856
857#define CALC_OSCSET(rate, refclk) ( \
Peter Ujfalusi7833ae02010-02-16 13:23:16 +0200858 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300859#define CALC_RATIOSET(rate, refclk) ( \
860 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000)
861
862/*
863 * tlv320dac33 is strict on the sequence of the register writes, if the register
864 * writes happens in different order, than dac33 might end up in unknown state.
865 * Use the known, working sequence of register writes to initialize the dac33.
866 */
867static int dac33_prepare_chip(struct snd_pcm_substream *substream)
868{
869 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000870 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900871 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300872 unsigned int oscset, ratioset, pwr_ctrl, reg_tmp;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200873 u8 aictrl_a, aictrl_b, fifoctrl_a;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300874
875 switch (substream->runtime->rate) {
876 case 44100:
877 case 48000:
878 oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk);
879 ratioset = CALC_RATIOSET(substream->runtime->rate,
880 dac33->refclk);
881 break;
882 default:
883 dev_err(codec->dev, "unsupported rate %d\n",
884 substream->runtime->rate);
885 return -EINVAL;
886 }
887
888
889 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
890 aictrl_a &= ~(DAC33_NCYCL_MASK | DAC33_WLEN_MASK);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200891 /* Read FIFO control A, and clear FIFO flush bit */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300892 fifoctrl_a = dac33_read_reg_cache(codec, DAC33_FIFO_CTRL_A);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200893 fifoctrl_a &= ~DAC33_FIFOFLUSH;
894
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300895 fifoctrl_a &= ~DAC33_WIDTH;
896 switch (substream->runtime->format) {
897 case SNDRV_PCM_FORMAT_S16_LE:
898 aictrl_a |= (DAC33_NCYCL_16 | DAC33_WLEN_16);
899 fifoctrl_a |= DAC33_WIDTH;
900 break;
901 default:
902 dev_err(codec->dev, "unsupported format %d\n",
903 substream->runtime->format);
904 return -EINVAL;
905 }
906
907 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300908
909 if (!dac33->chip_power) {
910 /*
911 * Chip is not powered yet.
912 * Do the init in the dac33_set_bias_level later.
913 */
914 mutex_unlock(&dac33->mutex);
915 return 0;
916 }
917
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200918 dac33_soft_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300919 dac33_soft_power(codec, 1);
920
921 reg_tmp = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
922 dac33_write(codec, DAC33_INT_OSC_CTRL, reg_tmp);
923
924 /* Write registers 0x08 and 0x09 (MSB, LSB) */
925 dac33_write16(codec, DAC33_INT_OSC_FREQ_RAT_A, oscset);
926
927 /* calib time: 128 is a nice number ;) */
928 dac33_write(codec, DAC33_CALIB_TIME, 128);
929
930 /* adjustment treshold & step */
931 dac33_write(codec, DAC33_INT_OSC_CTRL_B, DAC33_ADJTHRSHLD(2) |
932 DAC33_ADJSTEP(1));
933
934 /* div=4 / gain=1 / div */
935 dac33_write(codec, DAC33_INT_OSC_CTRL_C, DAC33_REFDIV(4));
936
937 pwr_ctrl = dac33_read_reg_cache(codec, DAC33_PWR_CTRL);
938 pwr_ctrl |= DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB;
939 dac33_write(codec, DAC33_PWR_CTRL, pwr_ctrl);
940
941 dac33_oscwait(codec);
942
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200943 if (dac33->fifo_mode) {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200944 /* Generic for all FIFO modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300945 /* 50-51 : ASRC Control registers */
Peter Ujfalusifdb6b1e2010-03-19 11:10:20 +0200946 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCLKDIV(1));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300947 dac33_write(codec, DAC33_ASRC_CTRL_B, 1); /* ??? */
948
949 /* Write registers 0x34 and 0x35 (MSB, LSB) */
950 dac33_write16(codec, DAC33_SRC_REF_CLK_RATIO_A, ratioset);
951
952 /* Set interrupts to high active */
953 dac33_write(codec, DAC33_INTP_CTRL_A, DAC33_INTPM_AHIGH);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300954 } else {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200955 /* FIFO bypass mode */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300956 /* 50-51 : ASRC Control registers */
957 dac33_write(codec, DAC33_ASRC_CTRL_A, DAC33_SRCBYP);
958 dac33_write(codec, DAC33_ASRC_CTRL_B, 0); /* ??? */
959 }
960
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200961 /* Interrupt behaviour configuration */
962 switch (dac33->fifo_mode) {
963 case DAC33_FIFO_MODE1:
964 dac33_write(codec, DAC33_FIFO_IRQ_MODE_B,
965 DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200966 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200967 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300968 dac33_write(codec, DAC33_FIFO_IRQ_MODE_A,
969 DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200970 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200971 default:
972 /* in FIFO bypass mode, the interrupts are not used */
973 break;
974 }
975
976 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
977
978 switch (dac33->fifo_mode) {
979 case DAC33_FIFO_MODE1:
980 /*
981 * For mode1:
982 * Disable the FIFO bypass (Enable the use of FIFO)
983 * Select nSample mode
984 * BCLK is only running when data is needed by DAC33
985 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300986 fifoctrl_a &= ~DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200987 fifoctrl_a &= ~DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200988 if (dac33->keep_bclk)
989 aictrl_b |= DAC33_BCLKON;
990 else
991 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200992 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200993 case DAC33_FIFO_MODE7:
994 /*
995 * For mode1:
996 * Disable the FIFO bypass (Enable the use of FIFO)
997 * Select Threshold mode
998 * BCLK is only running when data is needed by DAC33
999 */
1000 fifoctrl_a &= ~DAC33_FBYPAS;
1001 fifoctrl_a |= DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001002 if (dac33->keep_bclk)
1003 aictrl_b |= DAC33_BCLKON;
1004 else
1005 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001006 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001007 default:
1008 /*
1009 * For FIFO bypass mode:
1010 * Enable the FIFO bypass (Disable the FIFO use)
1011 * Set the BCLK as continous
1012 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001013 fifoctrl_a |= DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001014 aictrl_b |= DAC33_BCLKON;
1015 break;
1016 }
1017
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001018 dac33_write(codec, DAC33_FIFO_CTRL_A, fifoctrl_a);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001019 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001020 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001021
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001022 /*
1023 * BCLK divide ratio
1024 * 0: 1.5
1025 * 1: 1
1026 * 2: 2
1027 * ...
1028 * 254: 254
1029 * 255: 255
1030 */
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001031 if (dac33->fifo_mode)
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001032 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C,
1033 dac33->burst_bclkdiv);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001034 else
1035 dac33_write(codec, DAC33_SER_AUDIOIF_CTRL_C, 32);
1036
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001037 switch (dac33->fifo_mode) {
1038 case DAC33_FIFO_MODE1:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001039 dac33_write16(codec, DAC33_ATHR_MSB,
1040 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001041 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001042 case DAC33_FIFO_MODE7:
1043 /*
1044 * Configure the threshold levels, and leave 10 sample space
1045 * at the bottom, and also at the top of the FIFO
1046 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001047 dac33_write16(codec, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
Peter Ujfalusi42603932010-04-23 10:09:59 +03001048 dac33_write16(codec, DAC33_LTHR_MSB, DAC33_THRREG(MODE7_LTHR));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001049 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001050 default:
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001051 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001052 }
1053
1054 mutex_unlock(&dac33->mutex);
1055
1056 return 0;
1057}
1058
1059static void dac33_calculate_times(struct snd_pcm_substream *substream)
1060{
1061 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001062 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001063 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusif430a272010-07-28 15:26:54 +03001064 unsigned int period_size = substream->runtime->period_size;
1065 unsigned int rate = substream->runtime->rate;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001066 unsigned int nsample_limit;
1067
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001068 /* In bypass mode we don't need to calculate */
1069 if (!dac33->fifo_mode)
1070 return;
1071
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001072 switch (dac33->fifo_mode) {
1073 case DAC33_FIFO_MODE1:
Peter Ujfalusif430a272010-07-28 15:26:54 +03001074 /* Number of samples under i2c latency */
1075 dac33->alarm_threshold = US_TO_SAMPLES(rate,
1076 dac33->mode1_latency);
Peter Ujfalusia577b312010-07-28 15:26:55 +03001077 if (dac33->auto_fifo_config) {
1078 if (period_size <= dac33->alarm_threshold)
1079 /*
1080 * Configure nSamaple to number of periods,
1081 * which covers the latency requironment.
1082 */
1083 dac33->nsample = period_size *
1084 ((dac33->alarm_threshold / period_size) +
1085 (dac33->alarm_threshold % period_size ?
1086 1 : 0));
1087 else
1088 dac33->nsample = period_size;
1089 } else {
1090 /* nSample time shall not be shorter than i2c latency */
1091 dac33->nsample_min = dac33->alarm_threshold;
1092 /*
1093 * nSample should not be bigger than alsa buffer minus
1094 * size of one period to avoid overruns
1095 */
1096 dac33->nsample_max = substream->runtime->buffer_size -
1097 period_size;
1098 nsample_limit = DAC33_BUFFER_SIZE_SAMPLES -
1099 dac33->alarm_threshold;
1100 if (dac33->nsample_max > nsample_limit)
1101 dac33->nsample_max = nsample_limit;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001102
Peter Ujfalusia577b312010-07-28 15:26:55 +03001103 /* Correct the nSample if it is outside of the ranges */
1104 if (dac33->nsample < dac33->nsample_min)
1105 dac33->nsample = dac33->nsample_min;
1106 if (dac33->nsample > dac33->nsample_max)
1107 dac33->nsample = dac33->nsample_max;
1108 }
Peter Ujfalusif430a272010-07-28 15:26:54 +03001109
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001110 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
1111 dac33->nsample);
1112 dac33->t_stamp1 = 0;
1113 dac33->t_stamp2 = 0;
1114 break;
1115 case DAC33_FIFO_MODE7:
Peter Ujfalusia577b312010-07-28 15:26:55 +03001116 if (dac33->auto_fifo_config) {
1117 dac33->uthr = UTHR_FROM_PERIOD_SIZE(
1118 period_size,
1119 rate,
1120 dac33->burst_rate) + 9;
1121 if (dac33->uthr > MODE7_UTHR)
1122 dac33->uthr = MODE7_UTHR;
1123 if (dac33->uthr < (MODE7_LTHR + 10))
1124 dac33->uthr = (MODE7_LTHR + 10);
1125 }
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001126 dac33->mode7_us_to_lthr =
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001127 SAMPLES_TO_US(substream->runtime->rate,
1128 dac33->uthr - MODE7_LTHR + 1);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001129 dac33->t_stamp1 = 0;
1130 break;
1131 default:
1132 break;
1133 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001134
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001135}
1136
1137static int dac33_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
1138 struct snd_soc_dai *dai)
1139{
1140 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001141 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001142 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001143 int ret = 0;
1144
1145 switch (cmd) {
1146 case SNDRV_PCM_TRIGGER_START:
1147 case SNDRV_PCM_TRIGGER_RESUME:
1148 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001149 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001150 dac33->state = DAC33_PREFILL;
1151 queue_work(dac33->dac33_wq, &dac33->work);
1152 }
1153 break;
1154 case SNDRV_PCM_TRIGGER_STOP:
1155 case SNDRV_PCM_TRIGGER_SUSPEND:
1156 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001157 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001158 dac33->state = DAC33_FLUSH;
1159 queue_work(dac33->dac33_wq, &dac33->work);
1160 }
1161 break;
1162 default:
1163 ret = -EINVAL;
1164 }
1165
1166 return ret;
1167}
1168
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001169static snd_pcm_sframes_t dac33_dai_delay(
1170 struct snd_pcm_substream *substream,
1171 struct snd_soc_dai *dai)
1172{
1173 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 struct snd_soc_codec *codec = rtd->codec;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001175 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
1176 unsigned long long t0, t1, t_now;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001177 unsigned int time_delta, uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001178 int samples_out, samples_in, samples;
1179 snd_pcm_sframes_t delay = 0;
1180
1181 switch (dac33->fifo_mode) {
1182 case DAC33_FIFO_BYPASS:
1183 break;
1184 case DAC33_FIFO_MODE1:
1185 spin_lock(&dac33->lock);
1186 t0 = dac33->t_stamp1;
1187 t1 = dac33->t_stamp2;
1188 spin_unlock(&dac33->lock);
1189 t_now = ktime_to_us(ktime_get());
1190
1191 /* We have not started to fill the FIFO yet, delay is 0 */
1192 if (!t1)
1193 goto out;
1194
1195 if (t0 > t1) {
1196 /*
1197 * Phase 1:
1198 * After Alarm threshold, and before nSample write
1199 */
1200 time_delta = t_now - t0;
1201 samples_out = time_delta ? US_TO_SAMPLES(
1202 substream->runtime->rate,
1203 time_delta) : 0;
1204
1205 if (likely(dac33->alarm_threshold > samples_out))
1206 delay = dac33->alarm_threshold - samples_out;
1207 else
1208 delay = 0;
1209 } else if ((t_now - t1) <= dac33->mode1_us_burst) {
1210 /*
1211 * Phase 2:
1212 * After nSample write (during burst operation)
1213 */
1214 time_delta = t_now - t0;
1215 samples_out = time_delta ? US_TO_SAMPLES(
1216 substream->runtime->rate,
1217 time_delta) : 0;
1218
1219 time_delta = t_now - t1;
1220 samples_in = time_delta ? US_TO_SAMPLES(
1221 dac33->burst_rate,
1222 time_delta) : 0;
1223
1224 samples = dac33->alarm_threshold;
1225 samples += (samples_in - samples_out);
1226
1227 if (likely(samples > 0))
1228 delay = samples;
1229 else
1230 delay = 0;
1231 } else {
1232 /*
1233 * Phase 3:
1234 * After burst operation, before next alarm threshold
1235 */
1236 time_delta = t_now - t0;
1237 samples_out = time_delta ? US_TO_SAMPLES(
1238 substream->runtime->rate,
1239 time_delta) : 0;
1240
1241 samples_in = dac33->nsample;
1242 samples = dac33->alarm_threshold;
1243 samples += (samples_in - samples_out);
1244
1245 if (likely(samples > 0))
1246 delay = samples > DAC33_BUFFER_SIZE_SAMPLES ?
1247 DAC33_BUFFER_SIZE_SAMPLES : samples;
1248 else
1249 delay = 0;
1250 }
1251 break;
1252 case DAC33_FIFO_MODE7:
1253 spin_lock(&dac33->lock);
1254 t0 = dac33->t_stamp1;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001255 uthr = dac33->uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001256 spin_unlock(&dac33->lock);
1257 t_now = ktime_to_us(ktime_get());
1258
1259 /* We have not started to fill the FIFO yet, delay is 0 */
1260 if (!t0)
1261 goto out;
1262
1263 if (t_now <= t0) {
1264 /*
1265 * Either the timestamps are messed or equal. Report
1266 * maximum delay
1267 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001268 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001269 goto out;
1270 }
1271
1272 time_delta = t_now - t0;
1273 if (time_delta <= dac33->mode7_us_to_lthr) {
1274 /*
1275 * Phase 1:
1276 * After burst (draining phase)
1277 */
1278 samples_out = US_TO_SAMPLES(
1279 substream->runtime->rate,
1280 time_delta);
1281
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001282 if (likely(uthr > samples_out))
1283 delay = uthr - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001284 else
1285 delay = 0;
1286 } else {
1287 /*
1288 * Phase 2:
1289 * During burst operation
1290 */
1291 time_delta = time_delta - dac33->mode7_us_to_lthr;
1292
1293 samples_out = US_TO_SAMPLES(
1294 substream->runtime->rate,
1295 time_delta);
1296 samples_in = US_TO_SAMPLES(
1297 dac33->burst_rate,
1298 time_delta);
1299 delay = MODE7_LTHR + samples_in - samples_out;
1300
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001301 if (unlikely(delay > uthr))
1302 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001303 }
1304 break;
1305 default:
1306 dev_warn(codec->dev, "Unhandled FIFO mode: %d\n",
1307 dac33->fifo_mode);
1308 break;
1309 }
1310out:
1311 return delay;
1312}
1313
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001314static int dac33_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1315 int clk_id, unsigned int freq, int dir)
1316{
1317 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001318 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001319 u8 ioc_reg, asrcb_reg;
1320
1321 ioc_reg = dac33_read_reg_cache(codec, DAC33_INT_OSC_CTRL);
1322 asrcb_reg = dac33_read_reg_cache(codec, DAC33_ASRC_CTRL_B);
1323 switch (clk_id) {
1324 case TLV320DAC33_MCLK:
1325 ioc_reg |= DAC33_REFSEL;
1326 asrcb_reg |= DAC33_SRCREFSEL;
1327 break;
1328 case TLV320DAC33_SLEEPCLK:
1329 ioc_reg &= ~DAC33_REFSEL;
1330 asrcb_reg &= ~DAC33_SRCREFSEL;
1331 break;
1332 default:
1333 dev_err(codec->dev, "Invalid clock ID (%d)\n", clk_id);
1334 break;
1335 }
1336 dac33->refclk = freq;
1337
1338 dac33_write_reg_cache(codec, DAC33_INT_OSC_CTRL, ioc_reg);
1339 dac33_write_reg_cache(codec, DAC33_ASRC_CTRL_B, asrcb_reg);
1340
1341 return 0;
1342}
1343
1344static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
1345 unsigned int fmt)
1346{
1347 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001348 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001349 u8 aictrl_a, aictrl_b;
1350
1351 aictrl_a = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A);
1352 aictrl_b = dac33_read_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B);
1353 /* set master/slave audio interface */
1354 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1355 case SND_SOC_DAIFMT_CBM_CFM:
1356 /* Codec Master */
1357 aictrl_a |= (DAC33_MSBCLK | DAC33_MSWCLK);
1358 break;
1359 case SND_SOC_DAIFMT_CBS_CFS:
1360 /* Codec Slave */
Peter Ujfalusiadcb8bc2009-12-31 10:30:23 +02001361 if (dac33->fifo_mode) {
1362 dev_err(codec->dev, "FIFO mode requires master mode\n");
1363 return -EINVAL;
1364 } else
1365 aictrl_a &= ~(DAC33_MSBCLK | DAC33_MSWCLK);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001366 break;
1367 default:
1368 return -EINVAL;
1369 }
1370
1371 aictrl_a &= ~DAC33_AFMT_MASK;
1372 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1373 case SND_SOC_DAIFMT_I2S:
1374 aictrl_a |= DAC33_AFMT_I2S;
1375 break;
1376 case SND_SOC_DAIFMT_DSP_A:
1377 aictrl_a |= DAC33_AFMT_DSP;
1378 aictrl_b &= ~DAC33_DATA_DELAY_MASK;
Peter Ujfalusi44f497b2010-03-19 11:10:19 +02001379 aictrl_b |= DAC33_DATA_DELAY(0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001380 break;
1381 case SND_SOC_DAIFMT_RIGHT_J:
1382 aictrl_a |= DAC33_AFMT_RIGHT_J;
1383 break;
1384 case SND_SOC_DAIFMT_LEFT_J:
1385 aictrl_a |= DAC33_AFMT_LEFT_J;
1386 break;
1387 default:
1388 dev_err(codec->dev, "Unsupported format (%u)\n",
1389 fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1390 return -EINVAL;
1391 }
1392
1393 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1394 dac33_write_reg_cache(codec, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
1395
1396 return 0;
1397}
1398
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001399static int dac33_soc_probe(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001400{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001401 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001402 int ret = 0;
1403
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001404 codec->control_data = dac33->control_data;
1405 codec->hw_write = (hw_write_t) i2c_master_send;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001406 codec->idle_bias_off = 1;
1407 dac33->codec = codec;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001408
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001409 /* Read the tlv320dac33 ID registers */
1410 ret = dac33_hard_power(codec, 1);
1411 if (ret != 0) {
1412 dev_err(codec->dev, "Failed to power up codec: %d\n", ret);
1413 goto err_power;
1414 }
1415 dac33_read_id(codec);
1416 dac33_hard_power(codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001417
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001418 /* Check if the IRQ number is valid and request it */
1419 if (dac33->irq >= 0) {
1420 ret = request_irq(dac33->irq, dac33_interrupt_handler,
1421 IRQF_TRIGGER_RISING | IRQF_DISABLED,
1422 codec->name, codec);
1423 if (ret < 0) {
1424 dev_err(codec->dev, "Could not request IRQ%d (%d)\n",
1425 dac33->irq, ret);
1426 dac33->irq = -1;
1427 }
1428 if (dac33->irq != -1) {
1429 /* Setup work queue */
1430 dac33->dac33_wq =
1431 create_singlethread_workqueue("tlv320dac33");
1432 if (dac33->dac33_wq == NULL) {
1433 free_irq(dac33->irq, codec);
1434 return -ENOMEM;
1435 }
1436
1437 INIT_WORK(&dac33->work, dac33_work);
1438 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001439 }
1440
1441 snd_soc_add_controls(codec, dac33_snd_controls,
1442 ARRAY_SIZE(dac33_snd_controls));
Peter Ujfalusia577b312010-07-28 15:26:55 +03001443 /* Only add the FIFO controls, if we have valid IRQ number */
1444 if (dac33->irq >= 0) {
1445 snd_soc_add_controls(codec, dac33_mode_snd_controls,
1446 ARRAY_SIZE(dac33_mode_snd_controls));
1447 /* FIFO usage controls only, if autoio config is not selected */
1448 if (!dac33->auto_fifo_config)
1449 snd_soc_add_controls(codec, dac33_fifo_snd_controls,
1450 ARRAY_SIZE(dac33_fifo_snd_controls));
1451 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001452 dac33_add_widgets(codec);
1453
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001454err_power:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001455 return ret;
1456}
1457
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001458static int dac33_soc_remove(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001459{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001460 struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001461
1462 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1463
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001464 if (dac33->irq >= 0) {
1465 free_irq(dac33->irq, dac33->codec);
1466 destroy_workqueue(dac33->dac33_wq);
1467 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001468 return 0;
1469}
1470
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001471static int dac33_soc_suspend(struct snd_soc_codec *codec, pm_message_t state)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001472{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001473 dac33_set_bias_level(codec, SND_SOC_BIAS_OFF);
1474
1475 return 0;
1476}
1477
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001478static int dac33_soc_resume(struct snd_soc_codec *codec)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001479{
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001480 dac33_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001481
1482 return 0;
1483}
1484
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001485static struct snd_soc_codec_driver soc_codec_dev_tlv320dac33 = {
1486 .read = dac33_read_reg_cache,
1487 .write = dac33_write_locked,
1488 .set_bias_level = dac33_set_bias_level,
1489 .reg_cache_size = ARRAY_SIZE(dac33_reg),
1490 .reg_word_size = sizeof(u8),
1491 .reg_cache_default = dac33_reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001492 .probe = dac33_soc_probe,
1493 .remove = dac33_soc_remove,
1494 .suspend = dac33_soc_suspend,
1495 .resume = dac33_soc_resume,
1496};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001497
1498#define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
1499 SNDRV_PCM_RATE_48000)
1500#define DAC33_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1501
1502static struct snd_soc_dai_ops dac33_dai_ops = {
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +03001503 .startup = dac33_startup,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001504 .shutdown = dac33_shutdown,
1505 .hw_params = dac33_hw_params,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001506 .trigger = dac33_pcm_trigger,
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001507 .delay = dac33_dai_delay,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001508 .set_sysclk = dac33_set_dai_sysclk,
1509 .set_fmt = dac33_set_dai_fmt,
1510};
1511
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001512static struct snd_soc_dai_driver dac33_dai = {
1513 .name = "tlv320dac33-hifi",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001514 .playback = {
1515 .stream_name = "Playback",
1516 .channels_min = 2,
1517 .channels_max = 2,
1518 .rates = DAC33_RATES,
1519 .formats = DAC33_FORMATS,},
1520 .ops = &dac33_dai_ops,
1521};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001522
Mark Brown735fe4c2010-01-12 14:13:00 +00001523static int __devinit dac33_i2c_probe(struct i2c_client *client,
1524 const struct i2c_device_id *id)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001525{
1526 struct tlv320dac33_platform_data *pdata;
1527 struct tlv320dac33_priv *dac33;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001528 int ret, i;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001529
1530 if (client->dev.platform_data == NULL) {
1531 dev_err(&client->dev, "Platform data not set\n");
1532 return -ENODEV;
1533 }
1534 pdata = client->dev.platform_data;
1535
1536 dac33 = kzalloc(sizeof(struct tlv320dac33_priv), GFP_KERNEL);
1537 if (dac33 == NULL)
1538 return -ENOMEM;
1539
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001540 dac33->control_data = client;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001541 mutex_init(&dac33->mutex);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001542 spin_lock_init(&dac33->lock);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001543
1544 i2c_set_clientdata(client, dac33);
1545
1546 dac33->power_gpio = pdata->power_gpio;
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001547 dac33->burst_bclkdiv = pdata->burst_bclkdiv;
Peter Ujfalusi76f471272010-04-23 10:10:00 +03001548 /* Pre calculate the burst rate */
1549 dac33->burst_rate = BURST_BASEFREQ_HZ / dac33->burst_bclkdiv / 32;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001550 dac33->keep_bclk = pdata->keep_bclk;
Peter Ujfalusia577b312010-07-28 15:26:55 +03001551 dac33->auto_fifo_config = pdata->auto_fifo_config;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001552 dac33->mode1_latency = pdata->mode1_latency;
1553 if (!dac33->mode1_latency)
1554 dac33->mode1_latency = 10000; /* 10ms */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001555 dac33->irq = client->irq;
1556 dac33->nsample = NSAMPLE_MAX;
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001557 dac33->nsample_max = NSAMPLE_MAX;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001558 dac33->uthr = MODE7_UTHR;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001559 /* Disable FIFO use by default */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001560 dac33->fifo_mode = DAC33_FIFO_BYPASS;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001561
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001562 /* Check if the reset GPIO number is valid and request it */
1563 if (dac33->power_gpio >= 0) {
1564 ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset");
1565 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001566 dev_err(&client->dev,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001567 "Failed to request reset GPIO (%d)\n",
1568 dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001569 goto err_gpio;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001570 }
1571 gpio_direction_output(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001572 }
1573
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001574 for (i = 0; i < ARRAY_SIZE(dac33->supplies); i++)
1575 dac33->supplies[i].supply = dac33_supply_names[i];
1576
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001577 ret = regulator_bulk_get(&client->dev, ARRAY_SIZE(dac33->supplies),
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001578 dac33->supplies);
1579
1580 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001581 dev_err(&client->dev, "Failed to request supplies: %d\n", ret);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001582 goto err_get;
1583 }
1584
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001585 ret = snd_soc_register_codec(&client->dev,
1586 &soc_codec_dev_tlv320dac33, &dac33_dai, 1);
1587 if (ret < 0)
1588 goto err_register;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001589
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001590 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001591err_register:
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001592 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1593err_get:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001594 if (dac33->power_gpio >= 0)
1595 gpio_free(dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001596err_gpio:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001597 kfree(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001598 return ret;
1599}
1600
Mark Brown735fe4c2010-01-12 14:13:00 +00001601static int __devexit dac33_i2c_remove(struct i2c_client *client)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001602{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001603 struct tlv320dac33_priv *dac33 = i2c_get_clientdata(client);
Peter Ujfalusi239fe552010-04-30 14:59:34 +03001604
1605 if (unlikely(dac33->chip_power))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001606 dac33_hard_power(dac33->codec, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001607
1608 if (dac33->power_gpio >= 0)
1609 gpio_free(dac33->power_gpio);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001610
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001611 regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);
1612
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001613 snd_soc_unregister_codec(&client->dev);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001614 kfree(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001615
1616 return 0;
1617}
1618
1619static const struct i2c_device_id tlv320dac33_i2c_id[] = {
1620 {
1621 .name = "tlv320dac33",
1622 .driver_data = 0,
1623 },
1624 { },
1625};
1626
1627static struct i2c_driver tlv320dac33_i2c_driver = {
1628 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001629 .name = "tlv320dac33-codec",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001630 .owner = THIS_MODULE,
1631 },
1632 .probe = dac33_i2c_probe,
1633 .remove = __devexit_p(dac33_i2c_remove),
1634 .id_table = tlv320dac33_i2c_id,
1635};
1636
1637static int __init dac33_module_init(void)
1638{
1639 int r;
1640 r = i2c_add_driver(&tlv320dac33_i2c_driver);
1641 if (r < 0) {
1642 printk(KERN_ERR "DAC33: driver registration failed\n");
1643 return r;
1644 }
1645 return 0;
1646}
1647module_init(dac33_module_init);
1648
1649static void __exit dac33_module_exit(void)
1650{
1651 i2c_del_driver(&tlv320dac33_i2c_driver);
1652}
1653module_exit(dac33_module_exit);
1654
1655
1656MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
1657MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@nokia.com>");
1658MODULE_LICENSE("GPL");