xref: /linux/sound/soc/codecs/tlv320dac33.c (revision 68a052239fc4b351e961f698b824f7654a346091)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * ALSA SoC Texas Instruments TLV320DAC33 codec driver
4  *
5  * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
6  *
7  * Copyright:   (C) 2009 Nokia Corporation
8  */
9 
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
14 #include <linux/pm.h>
15 #include <linux/i2c.h>
16 #include <linux/interrupt.h>
17 #include <linux/gpio/consumer.h>
18 #include <linux/regulator/consumer.h>
19 #include <linux/slab.h>
20 #include <sound/core.h>
21 #include <sound/pcm.h>
22 #include <sound/pcm_params.h>
23 #include <sound/soc.h>
24 #include <sound/initval.h>
25 #include <sound/tlv.h>
26 
27 #include "tlv320dac33.h"
28 
29 /*
30  * The internal FIFO is 24576 bytes long
31  * It can be configured to hold 16bit or 24bit samples
32  * In 16bit configuration the FIFO can hold 6144 stereo samples
33  * In 24bit configuration the FIFO can hold 4096 stereo samples
34  */
35 #define DAC33_FIFO_SIZE_16BIT	6144
36 #define DAC33_FIFO_SIZE_24BIT	4096
37 #define DAC33_MODE7_MARGIN	10	/* Safety margin for FIFO in Mode7 */
38 
39 #define BURST_BASEFREQ_HZ	49152000
40 
41 #define SAMPLES_TO_US(rate, samples) \
42 	(1000000000 / (((rate) * 1000) / (samples)))
43 
44 #define US_TO_SAMPLES(rate, us) \
45 	((rate) / (1000000 / ((us) < 1000000 ? (us) : 1000000)))
46 
47 #define UTHR_FROM_PERIOD_SIZE(samples, playrate, burstrate) \
48 	(((samples)*5000) / (((burstrate)*5000) / ((burstrate) - (playrate))))
49 
50 static void dac33_calculate_times(struct snd_pcm_substream *substream,
51 				  struct snd_soc_component *component);
52 static int dac33_prepare_chip(struct snd_pcm_substream *substream,
53 			      struct snd_soc_component *component);
54 
55 enum dac33_state {
56 	DAC33_IDLE = 0,
57 	DAC33_PREFILL,
58 	DAC33_PLAYBACK,
59 	DAC33_FLUSH,
60 };
61 
62 enum dac33_fifo_modes {
63 	DAC33_FIFO_BYPASS = 0,
64 	DAC33_FIFO_MODE1,
65 	DAC33_FIFO_MODE7,
66 	DAC33_FIFO_LAST_MODE,
67 };
68 
69 #define DAC33_NUM_SUPPLIES 3
70 static const char *dac33_supply_names[DAC33_NUM_SUPPLIES] = {
71 	"AVDD",
72 	"DVDD",
73 	"IOVDD",
74 };
75 
76 struct tlv320dac33_priv {
77 	struct mutex mutex;
78 	struct work_struct work;
79 	struct snd_soc_component *component;
80 	struct regulator_bulk_data supplies[DAC33_NUM_SUPPLIES];
81 	struct snd_pcm_substream *substream;
82 	struct gpio_desc *reset_gpiod;
83 	int chip_power;
84 	int irq;
85 	unsigned int refclk;
86 
87 	unsigned int alarm_threshold;	/* set to be half of LATENCY_TIME_MS */
88 	enum dac33_fifo_modes fifo_mode;/* FIFO mode selection */
89 	unsigned int fifo_size;		/* Size of the FIFO in samples */
90 	unsigned int nsample;		/* burst read amount from host */
91 	int mode1_latency;		/* latency caused by the i2c writes in
92 					 * us */
93 	u8 burst_bclkdiv;		/* BCLK divider value in burst mode */
94 	u8 *reg_cache;
95 	unsigned int burst_rate;	/* Interface speed in Burst modes */
96 
97 	int keep_bclk;			/* Keep the BCLK continuously running
98 					 * in FIFO modes */
99 	spinlock_t lock;
100 	unsigned long long t_stamp1;	/* Time stamp for FIFO modes to */
101 	unsigned long long t_stamp2;	/* calculate the FIFO caused delay */
102 
103 	unsigned int mode1_us_burst;	/* Time to burst read n number of
104 					 * samples */
105 	unsigned int mode7_us_to_lthr;	/* Time to reach lthr from uthr */
106 
107 	unsigned int uthr;
108 
109 	enum dac33_state state;
110 	struct i2c_client *i2c;
111 };
112 
113 static const u8 dac33_reg[DAC33_CACHEREGNUM] = {
114 0x00, 0x00, 0x00, 0x00, /* 0x00 - 0x03 */
115 0x00, 0x00, 0x00, 0x00, /* 0x04 - 0x07 */
116 0x00, 0x00, 0x00, 0x00, /* 0x08 - 0x0b */
117 0x00, 0x00, 0x00, 0x00, /* 0x0c - 0x0f */
118 0x00, 0x00, 0x00, 0x00, /* 0x10 - 0x13 */
119 0x00, 0x00, 0x00, 0x00, /* 0x14 - 0x17 */
120 0x00, 0x00, 0x00, 0x00, /* 0x18 - 0x1b */
121 0x00, 0x00, 0x00, 0x00, /* 0x1c - 0x1f */
122 0x00, 0x00, 0x00, 0x00, /* 0x20 - 0x23 */
123 0x00, 0x00, 0x00, 0x00, /* 0x24 - 0x27 */
124 0x00, 0x00, 0x00, 0x00, /* 0x28 - 0x2b */
125 0x00, 0x00, 0x00, 0x80, /* 0x2c - 0x2f */
126 0x80, 0x00, 0x00, 0x00, /* 0x30 - 0x33 */
127 0x00, 0x00, 0x00, 0x00, /* 0x34 - 0x37 */
128 0x00, 0x00,             /* 0x38 - 0x39 */
129 /* Registers 0x3a - 0x3f are reserved  */
130             0x00, 0x00, /* 0x3a - 0x3b */
131 0x00, 0x00, 0x00, 0x00, /* 0x3c - 0x3f */
132 
133 0x00, 0x00, 0x00, 0x00, /* 0x40 - 0x43 */
134 0x00, 0x80,             /* 0x44 - 0x45 */
135 /* Registers 0x46 - 0x47 are reserved  */
136             0x80, 0x80, /* 0x46 - 0x47 */
137 
138 0x80, 0x00, 0x00,       /* 0x48 - 0x4a */
139 /* Registers 0x4b - 0x7c are reserved  */
140                   0x00, /* 0x4b        */
141 0x00, 0x00, 0x00, 0x00, /* 0x4c - 0x4f */
142 0x00, 0x00, 0x00, 0x00, /* 0x50 - 0x53 */
143 0x00, 0x00, 0x00, 0x00, /* 0x54 - 0x57 */
144 0x00, 0x00, 0x00, 0x00, /* 0x58 - 0x5b */
145 0x00, 0x00, 0x00, 0x00, /* 0x5c - 0x5f */
146 0x00, 0x00, 0x00, 0x00, /* 0x60 - 0x63 */
147 0x00, 0x00, 0x00, 0x00, /* 0x64 - 0x67 */
148 0x00, 0x00, 0x00, 0x00, /* 0x68 - 0x6b */
149 0x00, 0x00, 0x00, 0x00, /* 0x6c - 0x6f */
150 0x00, 0x00, 0x00, 0x00, /* 0x70 - 0x73 */
151 0x00, 0x00, 0x00, 0x00, /* 0x74 - 0x77 */
152 0x00, 0x00, 0x00, 0x00, /* 0x78 - 0x7b */
153 0x00,                   /* 0x7c        */
154 
155       0xda, 0x33, 0x03, /* 0x7d - 0x7f */
156 };
157 
158 /* Register read and write */
159 static inline unsigned int dac33_read_reg_cache(struct snd_soc_component *component,
160 						unsigned reg)
161 {
162 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
163 	u8 *cache = dac33->reg_cache;
164 	if (reg >= DAC33_CACHEREGNUM)
165 		return 0;
166 
167 	return cache[reg];
168 }
169 
170 static inline void dac33_write_reg_cache(struct snd_soc_component *component,
171 					 u8 reg, u8 value)
172 {
173 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
174 	u8 *cache = dac33->reg_cache;
175 	if (reg >= DAC33_CACHEREGNUM)
176 		return;
177 
178 	cache[reg] = value;
179 }
180 
181 static int dac33_read(struct snd_soc_component *component, unsigned int reg,
182 		      u8 *value)
183 {
184 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
185 	int val, ret = 0;
186 
187 	*value = reg & 0xff;
188 
189 	/* If powered off, return the cached value */
190 	if (dac33->chip_power) {
191 		val = i2c_smbus_read_byte_data(dac33->i2c, value[0]);
192 		if (val < 0) {
193 			dev_err(component->dev, "Read failed (%d)\n", val);
194 			value[0] = dac33_read_reg_cache(component, reg);
195 			ret = val;
196 		} else {
197 			value[0] = val;
198 			dac33_write_reg_cache(component, reg, val);
199 		}
200 	} else {
201 		value[0] = dac33_read_reg_cache(component, reg);
202 	}
203 
204 	return ret;
205 }
206 
207 static int dac33_write(struct snd_soc_component *component, unsigned int reg,
208 		       unsigned int value)
209 {
210 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
211 	u8 data[2];
212 	int ret = 0;
213 
214 	/*
215 	 * data is
216 	 *   D15..D8 dac33 register offset
217 	 *   D7...D0 register data
218 	 */
219 	data[0] = reg & 0xff;
220 	data[1] = value & 0xff;
221 
222 	dac33_write_reg_cache(component, data[0], data[1]);
223 	if (dac33->chip_power) {
224 		ret = i2c_master_send(dac33->i2c, data, 2);
225 		if (ret != 2)
226 			dev_err(component->dev, "Write failed (%d)\n", ret);
227 		else
228 			ret = 0;
229 	}
230 
231 	return ret;
232 }
233 
234 static int dac33_write_locked(struct snd_soc_component *component, unsigned int reg,
235 			      unsigned int value)
236 {
237 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
238 	int ret;
239 
240 	mutex_lock(&dac33->mutex);
241 	ret = dac33_write(component, reg, value);
242 	mutex_unlock(&dac33->mutex);
243 
244 	return ret;
245 }
246 
247 #define DAC33_I2C_ADDR_AUTOINC	0x80
248 static int dac33_write16(struct snd_soc_component *component, unsigned int reg,
249 		       unsigned int value)
250 {
251 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
252 	u8 data[3];
253 	int ret = 0;
254 
255 	/*
256 	 * data is
257 	 *   D23..D16 dac33 register offset
258 	 *   D15..D8  register data MSB
259 	 *   D7...D0  register data LSB
260 	 */
261 	data[0] = reg & 0xff;
262 	data[1] = (value >> 8) & 0xff;
263 	data[2] = value & 0xff;
264 
265 	dac33_write_reg_cache(component, data[0], data[1]);
266 	dac33_write_reg_cache(component, data[0] + 1, data[2]);
267 
268 	if (dac33->chip_power) {
269 		/* We need to set autoincrement mode for 16 bit writes */
270 		data[0] |= DAC33_I2C_ADDR_AUTOINC;
271 		ret = i2c_master_send(dac33->i2c, data, 3);
272 		if (ret != 3)
273 			dev_err(component->dev, "Write failed (%d)\n", ret);
274 		else
275 			ret = 0;
276 	}
277 
278 	return ret;
279 }
280 
281 static void dac33_init_chip(struct snd_soc_component *component)
282 {
283 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
284 
285 	if (unlikely(!dac33->chip_power))
286 		return;
287 
288 	/* A : DAC sample rate Fsref/1.5 */
289 	dac33_write(component, DAC33_DAC_CTRL_A, DAC33_DACRATE(0));
290 	/* B : DAC src=normal, not muted */
291 	dac33_write(component, DAC33_DAC_CTRL_B, DAC33_DACSRCR_RIGHT |
292 					     DAC33_DACSRCL_LEFT);
293 	/* C : (defaults) */
294 	dac33_write(component, DAC33_DAC_CTRL_C, 0x00);
295 
296 	/* 73 : volume soft stepping control,
297 	 clock source = internal osc (?) */
298 	dac33_write(component, DAC33_ANA_VOL_SOFT_STEP_CTRL, DAC33_VOLCLKEN);
299 
300 	/* Restore only selected registers (gains mostly) */
301 	dac33_write(component, DAC33_LDAC_DIG_VOL_CTRL,
302 		    dac33_read_reg_cache(component, DAC33_LDAC_DIG_VOL_CTRL));
303 	dac33_write(component, DAC33_RDAC_DIG_VOL_CTRL,
304 		    dac33_read_reg_cache(component, DAC33_RDAC_DIG_VOL_CTRL));
305 
306 	dac33_write(component, DAC33_LINEL_TO_LLO_VOL,
307 		    dac33_read_reg_cache(component, DAC33_LINEL_TO_LLO_VOL));
308 	dac33_write(component, DAC33_LINER_TO_RLO_VOL,
309 		    dac33_read_reg_cache(component, DAC33_LINER_TO_RLO_VOL));
310 
311 	dac33_write(component, DAC33_OUT_AMP_CTRL,
312 		    dac33_read_reg_cache(component, DAC33_OUT_AMP_CTRL));
313 
314 	dac33_write(component, DAC33_LDAC_PWR_CTRL,
315 		    dac33_read_reg_cache(component, DAC33_LDAC_PWR_CTRL));
316 	dac33_write(component, DAC33_RDAC_PWR_CTRL,
317 		    dac33_read_reg_cache(component, DAC33_RDAC_PWR_CTRL));
318 }
319 
320 static inline int dac33_read_id(struct snd_soc_component *component)
321 {
322 	int i, ret = 0;
323 	u8 reg;
324 
325 	for (i = 0; i < 3; i++) {
326 		ret = dac33_read(component, DAC33_DEVICE_ID_MSB + i, &reg);
327 		if (ret < 0)
328 			break;
329 	}
330 
331 	return ret;
332 }
333 
334 static inline void dac33_soft_power(struct snd_soc_component *component, int power)
335 {
336 	u8 reg;
337 
338 	reg = dac33_read_reg_cache(component, DAC33_PWR_CTRL);
339 	if (power)
340 		reg |= DAC33_PDNALLB;
341 	else
342 		reg &= ~(DAC33_PDNALLB | DAC33_OSCPDNB |
343 			 DAC33_DACRPDNB | DAC33_DACLPDNB);
344 	dac33_write(component, DAC33_PWR_CTRL, reg);
345 }
346 
347 static inline void dac33_disable_digital(struct snd_soc_component *component)
348 {
349 	u8 reg;
350 
351 	/* Stop the DAI clock */
352 	reg = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B);
353 	reg &= ~DAC33_BCLKON;
354 	dac33_write(component, DAC33_SER_AUDIOIF_CTRL_B, reg);
355 
356 	/* Power down the Oscillator, and DACs */
357 	reg = dac33_read_reg_cache(component, DAC33_PWR_CTRL);
358 	reg &= ~(DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB);
359 	dac33_write(component, DAC33_PWR_CTRL, reg);
360 }
361 
362 static int dac33_hard_power(struct snd_soc_component *component, int power)
363 {
364 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
365 	int ret = 0;
366 
367 	mutex_lock(&dac33->mutex);
368 
369 	/* Safety check */
370 	if (unlikely(power == dac33->chip_power)) {
371 		dev_dbg(component->dev, "Trying to set the same power state: %s\n",
372 			power ? "ON" : "OFF");
373 		goto exit;
374 	}
375 
376 	if (power) {
377 		ret = regulator_bulk_enable(ARRAY_SIZE(dac33->supplies),
378 					  dac33->supplies);
379 		if (ret != 0) {
380 			dev_err(component->dev,
381 				"Failed to enable supplies: %d\n", ret);
382 			goto exit;
383 		}
384 
385 		if (dac33->reset_gpiod) {
386 			ret = gpiod_set_value(dac33->reset_gpiod, 1);
387 			if (ret < 0) {
388 				dev_err(&dac33->i2c->dev,
389 					"Failed to set reset GPIO: %d\n", ret);
390 				goto exit;
391 			}
392 		}
393 
394 		dac33->chip_power = 1;
395 	} else {
396 		dac33_soft_power(component, 0);
397 		if (dac33->reset_gpiod) {
398 			ret = gpiod_set_value(dac33->reset_gpiod, 0);
399 			if (ret < 0) {
400 				dev_err(&dac33->i2c->dev,
401 					"Failed to set reset GPIO: %d\n", ret);
402 				goto exit;
403 			}
404 		}
405 
406 		ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies),
407 					     dac33->supplies);
408 		if (ret != 0) {
409 			dev_err(component->dev,
410 				"Failed to disable supplies: %d\n", ret);
411 			goto exit;
412 		}
413 
414 		dac33->chip_power = 0;
415 	}
416 
417 exit:
418 	mutex_unlock(&dac33->mutex);
419 	return ret;
420 }
421 
422 static int dac33_playback_event(struct snd_soc_dapm_widget *w,
423 		struct snd_kcontrol *kcontrol, int event)
424 {
425 	struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
426 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
427 
428 	switch (event) {
429 	case SND_SOC_DAPM_PRE_PMU:
430 		if (likely(dac33->substream)) {
431 			dac33_calculate_times(dac33->substream, component);
432 			dac33_prepare_chip(dac33->substream, component);
433 		}
434 		break;
435 	case SND_SOC_DAPM_POST_PMD:
436 		dac33_disable_digital(component);
437 		break;
438 	}
439 	return 0;
440 }
441 
442 static int dac33_get_fifo_mode(struct snd_kcontrol *kcontrol,
443 			 struct snd_ctl_elem_value *ucontrol)
444 {
445 	struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
446 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
447 
448 	ucontrol->value.enumerated.item[0] = dac33->fifo_mode;
449 
450 	return 0;
451 }
452 
453 static int dac33_set_fifo_mode(struct snd_kcontrol *kcontrol,
454 			 struct snd_ctl_elem_value *ucontrol)
455 {
456 	struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
457 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
458 	int ret = 0;
459 
460 	if (dac33->fifo_mode == ucontrol->value.enumerated.item[0])
461 		return 0;
462 	/* Do not allow changes while stream is running*/
463 	if (snd_soc_component_active(component))
464 		return -EPERM;
465 
466 	if (ucontrol->value.enumerated.item[0] >= DAC33_FIFO_LAST_MODE)
467 		ret = -EINVAL;
468 	else
469 		dac33->fifo_mode = ucontrol->value.enumerated.item[0];
470 
471 	return ret;
472 }
473 
474 /* Codec operation modes */
475 static const char *dac33_fifo_mode_texts[] = {
476 	"Bypass", "Mode 1", "Mode 7"
477 };
478 
479 static SOC_ENUM_SINGLE_EXT_DECL(dac33_fifo_mode_enum, dac33_fifo_mode_texts);
480 
481 /* L/R Line Output Gain */
482 static const char *lr_lineout_gain_texts[] = {
483 	"Line -12dB DAC 0dB", "Line -6dB DAC 6dB",
484 	"Line 0dB DAC 12dB", "Line 6dB DAC 18dB",
485 };
486 
487 static SOC_ENUM_SINGLE_DECL(l_lineout_gain_enum,
488 			    DAC33_LDAC_PWR_CTRL, 0,
489 			    lr_lineout_gain_texts);
490 
491 static SOC_ENUM_SINGLE_DECL(r_lineout_gain_enum,
492 			    DAC33_RDAC_PWR_CTRL, 0,
493 			    lr_lineout_gain_texts);
494 
495 /*
496  * DACL/R digital volume control:
497  * from 0 dB to -63.5 in 0.5 dB steps
498  * Need to be inverted later on:
499  * 0x00 == 0 dB
500  * 0x7f == -63.5 dB
501  */
502 static DECLARE_TLV_DB_SCALE(dac_digivol_tlv, -6350, 50, 0);
503 
504 static const struct snd_kcontrol_new dac33_snd_controls[] = {
505 	SOC_DOUBLE_R_TLV("DAC Digital Playback Volume",
506 		DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL,
507 		0, 0x7f, 1, dac_digivol_tlv),
508 	SOC_DOUBLE_R("DAC Digital Playback Switch",
509 		 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL, 7, 1, 1),
510 	SOC_DOUBLE_R("Line to Line Out Volume",
511 		 DAC33_LINEL_TO_LLO_VOL, DAC33_LINER_TO_RLO_VOL, 0, 127, 1),
512 	SOC_ENUM("Left Line Output Gain", l_lineout_gain_enum),
513 	SOC_ENUM("Right Line Output Gain", r_lineout_gain_enum),
514 };
515 
516 static const struct snd_kcontrol_new dac33_mode_snd_controls[] = {
517 	SOC_ENUM_EXT("FIFO Mode", dac33_fifo_mode_enum,
518 		 dac33_get_fifo_mode, dac33_set_fifo_mode),
519 };
520 
521 /* Analog bypass */
522 static const struct snd_kcontrol_new dac33_dapm_abypassl_control =
523 	SOC_DAPM_SINGLE("Switch", DAC33_LINEL_TO_LLO_VOL, 7, 1, 1);
524 
525 static const struct snd_kcontrol_new dac33_dapm_abypassr_control =
526 	SOC_DAPM_SINGLE("Switch", DAC33_LINER_TO_RLO_VOL, 7, 1, 1);
527 
528 /* LOP L/R invert selection */
529 static const char *dac33_lr_lom_texts[] = {"DAC", "LOP"};
530 
531 static SOC_ENUM_SINGLE_DECL(dac33_left_lom_enum,
532 			    DAC33_OUT_AMP_CTRL, 3,
533 			    dac33_lr_lom_texts);
534 
535 static const struct snd_kcontrol_new dac33_dapm_left_lom_control =
536 SOC_DAPM_ENUM("Route", dac33_left_lom_enum);
537 
538 static SOC_ENUM_SINGLE_DECL(dac33_right_lom_enum,
539 			    DAC33_OUT_AMP_CTRL, 2,
540 			    dac33_lr_lom_texts);
541 
542 static const struct snd_kcontrol_new dac33_dapm_right_lom_control =
543 SOC_DAPM_ENUM("Route", dac33_right_lom_enum);
544 
545 static const struct snd_soc_dapm_widget dac33_dapm_widgets[] = {
546 	SND_SOC_DAPM_OUTPUT("LEFT_LO"),
547 	SND_SOC_DAPM_OUTPUT("RIGHT_LO"),
548 
549 	SND_SOC_DAPM_INPUT("LINEL"),
550 	SND_SOC_DAPM_INPUT("LINER"),
551 
552 	SND_SOC_DAPM_DAC("DACL", "Left Playback", SND_SOC_NOPM, 0, 0),
553 	SND_SOC_DAPM_DAC("DACR", "Right Playback", SND_SOC_NOPM, 0, 0),
554 
555 	/* Analog bypass */
556 	SND_SOC_DAPM_SWITCH("Analog Left Bypass", SND_SOC_NOPM, 0, 0,
557 				&dac33_dapm_abypassl_control),
558 	SND_SOC_DAPM_SWITCH("Analog Right Bypass", SND_SOC_NOPM, 0, 0,
559 				&dac33_dapm_abypassr_control),
560 
561 	SND_SOC_DAPM_MUX("Left LOM Inverted From", SND_SOC_NOPM, 0, 0,
562 		&dac33_dapm_left_lom_control),
563 	SND_SOC_DAPM_MUX("Right LOM Inverted From", SND_SOC_NOPM, 0, 0,
564 		&dac33_dapm_right_lom_control),
565 	/*
566 	 * For DAPM path, when only the anlog bypass path is enabled, and the
567 	 * LOP inverted from the corresponding DAC side.
568 	 * This is needed, so we can attach the DAC power supply in this case.
569 	 */
570 	SND_SOC_DAPM_PGA("Left Bypass PGA", SND_SOC_NOPM, 0, 0, NULL, 0),
571 	SND_SOC_DAPM_PGA("Right Bypass PGA", SND_SOC_NOPM, 0, 0, NULL, 0),
572 
573 	SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Left Amplifier",
574 			 DAC33_OUT_AMP_PWR_CTRL, 6, 3, 3, 0),
575 	SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Right Amplifier",
576 			 DAC33_OUT_AMP_PWR_CTRL, 4, 3, 3, 0),
577 
578 	SND_SOC_DAPM_SUPPLY("Left DAC Power",
579 			    DAC33_LDAC_PWR_CTRL, 2, 0, NULL, 0),
580 	SND_SOC_DAPM_SUPPLY("Right DAC Power",
581 			    DAC33_RDAC_PWR_CTRL, 2, 0, NULL, 0),
582 
583 	SND_SOC_DAPM_SUPPLY("Codec Power",
584 			    DAC33_PWR_CTRL, 4, 0, NULL, 0),
585 
586 	SND_SOC_DAPM_PRE("Pre Playback", dac33_playback_event),
587 	SND_SOC_DAPM_POST("Post Playback", dac33_playback_event),
588 };
589 
590 static const struct snd_soc_dapm_route audio_map[] = {
591 	/* Analog bypass */
592 	{"Analog Left Bypass", "Switch", "LINEL"},
593 	{"Analog Right Bypass", "Switch", "LINER"},
594 
595 	{"Output Left Amplifier", NULL, "DACL"},
596 	{"Output Right Amplifier", NULL, "DACR"},
597 
598 	{"Left Bypass PGA", NULL, "Analog Left Bypass"},
599 	{"Right Bypass PGA", NULL, "Analog Right Bypass"},
600 
601 	{"Left LOM Inverted From", "DAC", "Left Bypass PGA"},
602 	{"Right LOM Inverted From", "DAC", "Right Bypass PGA"},
603 	{"Left LOM Inverted From", "LOP", "Analog Left Bypass"},
604 	{"Right LOM Inverted From", "LOP", "Analog Right Bypass"},
605 
606 	{"Output Left Amplifier", NULL, "Left LOM Inverted From"},
607 	{"Output Right Amplifier", NULL, "Right LOM Inverted From"},
608 
609 	{"DACL", NULL, "Left DAC Power"},
610 	{"DACR", NULL, "Right DAC Power"},
611 
612 	{"Left Bypass PGA", NULL, "Left DAC Power"},
613 	{"Right Bypass PGA", NULL, "Right DAC Power"},
614 
615 	/* output */
616 	{"LEFT_LO", NULL, "Output Left Amplifier"},
617 	{"RIGHT_LO", NULL, "Output Right Amplifier"},
618 
619 	{"LEFT_LO", NULL, "Codec Power"},
620 	{"RIGHT_LO", NULL, "Codec Power"},
621 };
622 
623 static int dac33_set_bias_level(struct snd_soc_component *component,
624 				enum snd_soc_bias_level level)
625 {
626 	int ret;
627 
628 	switch (level) {
629 	case SND_SOC_BIAS_ON:
630 		break;
631 	case SND_SOC_BIAS_PREPARE:
632 		break;
633 	case SND_SOC_BIAS_STANDBY:
634 		if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF) {
635 			/* Coming from OFF, switch on the component */
636 			ret = dac33_hard_power(component, 1);
637 			if (ret != 0)
638 				return ret;
639 
640 			dac33_init_chip(component);
641 		}
642 		break;
643 	case SND_SOC_BIAS_OFF:
644 		/* Do not power off, when the component is already off */
645 		if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF)
646 			return 0;
647 		ret = dac33_hard_power(component, 0);
648 		if (ret != 0)
649 			return ret;
650 		break;
651 	}
652 
653 	return 0;
654 }
655 
656 static inline void dac33_prefill_handler(struct tlv320dac33_priv *dac33)
657 {
658 	struct snd_soc_component *component = dac33->component;
659 	unsigned int delay;
660 	unsigned long flags;
661 
662 	switch (dac33->fifo_mode) {
663 	case DAC33_FIFO_MODE1:
664 		dac33_write16(component, DAC33_NSAMPLE_MSB,
665 			DAC33_THRREG(dac33->nsample));
666 
667 		/* Take the timestamps */
668 		spin_lock_irqsave(&dac33->lock, flags);
669 		dac33->t_stamp2 = ktime_to_us(ktime_get());
670 		dac33->t_stamp1 = dac33->t_stamp2;
671 		spin_unlock_irqrestore(&dac33->lock, flags);
672 
673 		dac33_write16(component, DAC33_PREFILL_MSB,
674 				DAC33_THRREG(dac33->alarm_threshold));
675 		/* Enable Alarm Threshold IRQ with a delay */
676 		delay = SAMPLES_TO_US(dac33->burst_rate,
677 				     dac33->alarm_threshold) + 1000;
678 		usleep_range(delay, delay + 500);
679 		dac33_write(component, DAC33_FIFO_IRQ_MASK, DAC33_MAT);
680 		break;
681 	case DAC33_FIFO_MODE7:
682 		/* Take the timestamp */
683 		spin_lock_irqsave(&dac33->lock, flags);
684 		dac33->t_stamp1 = ktime_to_us(ktime_get());
685 		/* Move back the timestamp with drain time */
686 		dac33->t_stamp1 -= dac33->mode7_us_to_lthr;
687 		spin_unlock_irqrestore(&dac33->lock, flags);
688 
689 		dac33_write16(component, DAC33_PREFILL_MSB,
690 				DAC33_THRREG(DAC33_MODE7_MARGIN));
691 
692 		/* Enable Upper Threshold IRQ */
693 		dac33_write(component, DAC33_FIFO_IRQ_MASK, DAC33_MUT);
694 		break;
695 	default:
696 		dev_warn(component->dev, "Unhandled FIFO mode: %d\n",
697 							dac33->fifo_mode);
698 		break;
699 	}
700 }
701 
702 static inline void dac33_playback_handler(struct tlv320dac33_priv *dac33)
703 {
704 	struct snd_soc_component *component = dac33->component;
705 	unsigned long flags;
706 
707 	switch (dac33->fifo_mode) {
708 	case DAC33_FIFO_MODE1:
709 		/* Take the timestamp */
710 		spin_lock_irqsave(&dac33->lock, flags);
711 		dac33->t_stamp2 = ktime_to_us(ktime_get());
712 		spin_unlock_irqrestore(&dac33->lock, flags);
713 
714 		dac33_write16(component, DAC33_NSAMPLE_MSB,
715 				DAC33_THRREG(dac33->nsample));
716 		break;
717 	case DAC33_FIFO_MODE7:
718 		/* At the moment we are not using interrupts in mode7 */
719 		break;
720 	default:
721 		dev_warn(component->dev, "Unhandled FIFO mode: %d\n",
722 							dac33->fifo_mode);
723 		break;
724 	}
725 }
726 
727 static void dac33_work(struct work_struct *work)
728 {
729 	struct snd_soc_component *component;
730 	struct tlv320dac33_priv *dac33;
731 	u8 reg;
732 
733 	dac33 = container_of(work, struct tlv320dac33_priv, work);
734 	component = dac33->component;
735 
736 	mutex_lock(&dac33->mutex);
737 	switch (dac33->state) {
738 	case DAC33_PREFILL:
739 		dac33->state = DAC33_PLAYBACK;
740 		dac33_prefill_handler(dac33);
741 		break;
742 	case DAC33_PLAYBACK:
743 		dac33_playback_handler(dac33);
744 		break;
745 	case DAC33_IDLE:
746 		break;
747 	case DAC33_FLUSH:
748 		dac33->state = DAC33_IDLE;
749 		/* Mask all interrupts from dac33 */
750 		dac33_write(component, DAC33_FIFO_IRQ_MASK, 0);
751 
752 		/* flush fifo */
753 		reg = dac33_read_reg_cache(component, DAC33_FIFO_CTRL_A);
754 		reg |= DAC33_FIFOFLUSH;
755 		dac33_write(component, DAC33_FIFO_CTRL_A, reg);
756 		break;
757 	}
758 	mutex_unlock(&dac33->mutex);
759 }
760 
761 static irqreturn_t dac33_interrupt_handler(int irq, void *dev)
762 {
763 	struct snd_soc_component *component = dev;
764 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
765 	unsigned long flags;
766 
767 	spin_lock_irqsave(&dac33->lock, flags);
768 	dac33->t_stamp1 = ktime_to_us(ktime_get());
769 	spin_unlock_irqrestore(&dac33->lock, flags);
770 
771 	/* Do not schedule the workqueue in Mode7 */
772 	if (dac33->fifo_mode != DAC33_FIFO_MODE7)
773 		schedule_work(&dac33->work);
774 
775 	return IRQ_HANDLED;
776 }
777 
778 static void dac33_oscwait(struct snd_soc_component *component)
779 {
780 	int timeout = 60;
781 	u8 reg;
782 
783 	do {
784 		usleep_range(1000, 2000);
785 		dac33_read(component, DAC33_INT_OSC_STATUS, &reg);
786 	} while (((reg & 0x03) != DAC33_OSCSTATUS_NORMAL) && timeout--);
787 	if ((reg & 0x03) != DAC33_OSCSTATUS_NORMAL)
788 		dev_err(component->dev,
789 			"internal oscillator calibration failed\n");
790 }
791 
792 static int dac33_startup(struct snd_pcm_substream *substream,
793 			   struct snd_soc_dai *dai)
794 {
795 	struct snd_soc_component *component = dai->component;
796 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
797 
798 	/* Stream started, save the substream pointer */
799 	dac33->substream = substream;
800 
801 	return 0;
802 }
803 
804 static void dac33_shutdown(struct snd_pcm_substream *substream,
805 			     struct snd_soc_dai *dai)
806 {
807 	struct snd_soc_component *component = dai->component;
808 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
809 
810 	dac33->substream = NULL;
811 }
812 
813 #define CALC_BURST_RATE(bclkdiv, bclk_per_sample) \
814 	(BURST_BASEFREQ_HZ / bclkdiv / bclk_per_sample)
815 static int dac33_hw_params(struct snd_pcm_substream *substream,
816 			   struct snd_pcm_hw_params *params,
817 			   struct snd_soc_dai *dai)
818 {
819 	struct snd_soc_component *component = dai->component;
820 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
821 
822 	/* Check parameters for validity */
823 	switch (params_rate(params)) {
824 	case 44100:
825 	case 48000:
826 		break;
827 	default:
828 		dev_err(component->dev, "unsupported rate %d\n",
829 			params_rate(params));
830 		return -EINVAL;
831 	}
832 
833 	switch (params_width(params)) {
834 	case 16:
835 		dac33->fifo_size = DAC33_FIFO_SIZE_16BIT;
836 		dac33->burst_rate = CALC_BURST_RATE(dac33->burst_bclkdiv, 32);
837 		break;
838 	case 32:
839 		dac33->fifo_size = DAC33_FIFO_SIZE_24BIT;
840 		dac33->burst_rate = CALC_BURST_RATE(dac33->burst_bclkdiv, 64);
841 		break;
842 	default:
843 		dev_err(component->dev, "unsupported width %d\n",
844 			params_width(params));
845 		return -EINVAL;
846 	}
847 
848 	return 0;
849 }
850 
851 #define CALC_OSCSET(rate, refclk) ( \
852 	((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
853 #define CALC_RATIOSET(rate, refclk) ( \
854 	((((refclk  * 100000) / rate) * 16384) + 50000) / 100000)
855 
856 /*
857  * tlv320dac33 is strict on the sequence of the register writes, if the register
858  * writes happens in different order, than dac33 might end up in unknown state.
859  * Use the known, working sequence of register writes to initialize the dac33.
860  */
861 static int dac33_prepare_chip(struct snd_pcm_substream *substream,
862 			      struct snd_soc_component *component)
863 {
864 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
865 	unsigned int oscset, ratioset, pwr_ctrl, reg_tmp;
866 	u8 aictrl_a, aictrl_b, fifoctrl_a;
867 
868 	switch (substream->runtime->rate) {
869 	case 44100:
870 	case 48000:
871 		oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk);
872 		ratioset = CALC_RATIOSET(substream->runtime->rate,
873 					 dac33->refclk);
874 		break;
875 	default:
876 		dev_err(component->dev, "unsupported rate %d\n",
877 			substream->runtime->rate);
878 		return -EINVAL;
879 	}
880 
881 
882 	aictrl_a = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_A);
883 	aictrl_a &= ~(DAC33_NCYCL_MASK | DAC33_WLEN_MASK);
884 	/* Read FIFO control A, and clear FIFO flush bit */
885 	fifoctrl_a = dac33_read_reg_cache(component, DAC33_FIFO_CTRL_A);
886 	fifoctrl_a &= ~DAC33_FIFOFLUSH;
887 
888 	fifoctrl_a &= ~DAC33_WIDTH;
889 	switch (substream->runtime->format) {
890 	case SNDRV_PCM_FORMAT_S16_LE:
891 		aictrl_a |= (DAC33_NCYCL_16 | DAC33_WLEN_16);
892 		fifoctrl_a |= DAC33_WIDTH;
893 		break;
894 	case SNDRV_PCM_FORMAT_S32_LE:
895 		aictrl_a |= (DAC33_NCYCL_32 | DAC33_WLEN_24);
896 		break;
897 	default:
898 		dev_err(component->dev, "unsupported format %d\n",
899 			substream->runtime->format);
900 		return -EINVAL;
901 	}
902 
903 	mutex_lock(&dac33->mutex);
904 
905 	if (!dac33->chip_power) {
906 		/*
907 		 * Chip is not powered yet.
908 		 * Do the init in the dac33_set_bias_level later.
909 		 */
910 		mutex_unlock(&dac33->mutex);
911 		return 0;
912 	}
913 
914 	dac33_soft_power(component, 0);
915 	dac33_soft_power(component, 1);
916 
917 	reg_tmp = dac33_read_reg_cache(component, DAC33_INT_OSC_CTRL);
918 	dac33_write(component, DAC33_INT_OSC_CTRL, reg_tmp);
919 
920 	/* Write registers 0x08 and 0x09 (MSB, LSB) */
921 	dac33_write16(component, DAC33_INT_OSC_FREQ_RAT_A, oscset);
922 
923 	/* OSC calibration time */
924 	dac33_write(component, DAC33_CALIB_TIME, 96);
925 
926 	/* adjustment treshold & step */
927 	dac33_write(component, DAC33_INT_OSC_CTRL_B, DAC33_ADJTHRSHLD(2) |
928 						 DAC33_ADJSTEP(1));
929 
930 	/* div=4 / gain=1 / div */
931 	dac33_write(component, DAC33_INT_OSC_CTRL_C, DAC33_REFDIV(4));
932 
933 	pwr_ctrl = dac33_read_reg_cache(component, DAC33_PWR_CTRL);
934 	pwr_ctrl |= DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB;
935 	dac33_write(component, DAC33_PWR_CTRL, pwr_ctrl);
936 
937 	dac33_oscwait(component);
938 
939 	if (dac33->fifo_mode) {
940 		/* Generic for all FIFO modes */
941 		/* 50-51 : ASRC Control registers */
942 		dac33_write(component, DAC33_ASRC_CTRL_A, DAC33_SRCLKDIV(1));
943 		dac33_write(component, DAC33_ASRC_CTRL_B, 1); /* ??? */
944 
945 		/* Write registers 0x34 and 0x35 (MSB, LSB) */
946 		dac33_write16(component, DAC33_SRC_REF_CLK_RATIO_A, ratioset);
947 
948 		/* Set interrupts to high active */
949 		dac33_write(component, DAC33_INTP_CTRL_A, DAC33_INTPM_AHIGH);
950 	} else {
951 		/* FIFO bypass mode */
952 		/* 50-51 : ASRC Control registers */
953 		dac33_write(component, DAC33_ASRC_CTRL_A, DAC33_SRCBYP);
954 		dac33_write(component, DAC33_ASRC_CTRL_B, 0); /* ??? */
955 	}
956 
957 	/* Interrupt behaviour configuration */
958 	switch (dac33->fifo_mode) {
959 	case DAC33_FIFO_MODE1:
960 		dac33_write(component, DAC33_FIFO_IRQ_MODE_B,
961 			    DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL));
962 		break;
963 	case DAC33_FIFO_MODE7:
964 		dac33_write(component, DAC33_FIFO_IRQ_MODE_A,
965 			DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL));
966 		break;
967 	default:
968 		/* in FIFO bypass mode, the interrupts are not used */
969 		break;
970 	}
971 
972 	aictrl_b = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B);
973 
974 	switch (dac33->fifo_mode) {
975 	case DAC33_FIFO_MODE1:
976 		/*
977 		 * For mode1:
978 		 * Disable the FIFO bypass (Enable the use of FIFO)
979 		 * Select nSample mode
980 		 * BCLK is only running when data is needed by DAC33
981 		 */
982 		fifoctrl_a &= ~DAC33_FBYPAS;
983 		fifoctrl_a &= ~DAC33_FAUTO;
984 		if (dac33->keep_bclk)
985 			aictrl_b |= DAC33_BCLKON;
986 		else
987 			aictrl_b &= ~DAC33_BCLKON;
988 		break;
989 	case DAC33_FIFO_MODE7:
990 		/*
991 		 * For mode1:
992 		 * Disable the FIFO bypass (Enable the use of FIFO)
993 		 * Select Threshold mode
994 		 * BCLK is only running when data is needed by DAC33
995 		 */
996 		fifoctrl_a &= ~DAC33_FBYPAS;
997 		fifoctrl_a |= DAC33_FAUTO;
998 		if (dac33->keep_bclk)
999 			aictrl_b |= DAC33_BCLKON;
1000 		else
1001 			aictrl_b &= ~DAC33_BCLKON;
1002 		break;
1003 	default:
1004 		/*
1005 		 * For FIFO bypass mode:
1006 		 * Enable the FIFO bypass (Disable the FIFO use)
1007 		 * Set the BCLK as continuous
1008 		 */
1009 		fifoctrl_a |= DAC33_FBYPAS;
1010 		aictrl_b |= DAC33_BCLKON;
1011 		break;
1012 	}
1013 
1014 	dac33_write(component, DAC33_FIFO_CTRL_A, fifoctrl_a);
1015 	dac33_write(component, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1016 	dac33_write(component, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
1017 
1018 	/*
1019 	 * BCLK divide ratio
1020 	 * 0: 1.5
1021 	 * 1: 1
1022 	 * 2: 2
1023 	 * ...
1024 	 * 254: 254
1025 	 * 255: 255
1026 	 */
1027 	if (dac33->fifo_mode)
1028 		dac33_write(component, DAC33_SER_AUDIOIF_CTRL_C,
1029 							dac33->burst_bclkdiv);
1030 	else
1031 		if (substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE)
1032 			dac33_write(component, DAC33_SER_AUDIOIF_CTRL_C, 32);
1033 		else
1034 			dac33_write(component, DAC33_SER_AUDIOIF_CTRL_C, 16);
1035 
1036 	switch (dac33->fifo_mode) {
1037 	case DAC33_FIFO_MODE1:
1038 		dac33_write16(component, DAC33_ATHR_MSB,
1039 			      DAC33_THRREG(dac33->alarm_threshold));
1040 		break;
1041 	case DAC33_FIFO_MODE7:
1042 		/*
1043 		 * Configure the threshold levels, and leave 10 sample space
1044 		 * at the bottom, and also at the top of the FIFO
1045 		 */
1046 		dac33_write16(component, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
1047 		dac33_write16(component, DAC33_LTHR_MSB,
1048 			      DAC33_THRREG(DAC33_MODE7_MARGIN));
1049 		break;
1050 	default:
1051 		break;
1052 	}
1053 
1054 	mutex_unlock(&dac33->mutex);
1055 
1056 	return 0;
1057 }
1058 
1059 static void dac33_calculate_times(struct snd_pcm_substream *substream,
1060 				  struct snd_soc_component *component)
1061 {
1062 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1063 	unsigned int period_size = substream->runtime->period_size;
1064 	unsigned int rate = substream->runtime->rate;
1065 	unsigned int nsample_limit;
1066 
1067 	/* In bypass mode we don't need to calculate */
1068 	if (!dac33->fifo_mode)
1069 		return;
1070 
1071 	switch (dac33->fifo_mode) {
1072 	case DAC33_FIFO_MODE1:
1073 		/* Number of samples under i2c latency */
1074 		dac33->alarm_threshold = US_TO_SAMPLES(rate,
1075 						dac33->mode1_latency);
1076 		nsample_limit = dac33->fifo_size - dac33->alarm_threshold;
1077 
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 if (period_size > nsample_limit)
1088 			dac33->nsample = nsample_limit;
1089 		else
1090 			dac33->nsample = period_size;
1091 
1092 		dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
1093 						      dac33->nsample);
1094 		dac33->t_stamp1 = 0;
1095 		dac33->t_stamp2 = 0;
1096 		break;
1097 	case DAC33_FIFO_MODE7:
1098 		dac33->uthr = UTHR_FROM_PERIOD_SIZE(period_size, rate,
1099 						    dac33->burst_rate) + 9;
1100 		if (dac33->uthr > (dac33->fifo_size - DAC33_MODE7_MARGIN))
1101 			dac33->uthr = dac33->fifo_size - DAC33_MODE7_MARGIN;
1102 		if (dac33->uthr < (DAC33_MODE7_MARGIN + 10))
1103 			dac33->uthr = (DAC33_MODE7_MARGIN + 10);
1104 
1105 		dac33->mode7_us_to_lthr =
1106 				SAMPLES_TO_US(substream->runtime->rate,
1107 					dac33->uthr - DAC33_MODE7_MARGIN + 1);
1108 		dac33->t_stamp1 = 0;
1109 		break;
1110 	default:
1111 		break;
1112 	}
1113 
1114 }
1115 
1116 static int dac33_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
1117 			     struct snd_soc_dai *dai)
1118 {
1119 	struct snd_soc_component *component = dai->component;
1120 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1121 	int ret = 0;
1122 
1123 	switch (cmd) {
1124 	case SNDRV_PCM_TRIGGER_START:
1125 	case SNDRV_PCM_TRIGGER_RESUME:
1126 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1127 		if (dac33->fifo_mode) {
1128 			dac33->state = DAC33_PREFILL;
1129 			schedule_work(&dac33->work);
1130 		}
1131 		break;
1132 	case SNDRV_PCM_TRIGGER_STOP:
1133 	case SNDRV_PCM_TRIGGER_SUSPEND:
1134 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1135 		if (dac33->fifo_mode) {
1136 			dac33->state = DAC33_FLUSH;
1137 			schedule_work(&dac33->work);
1138 		}
1139 		break;
1140 	default:
1141 		ret = -EINVAL;
1142 	}
1143 
1144 	return ret;
1145 }
1146 
1147 static snd_pcm_sframes_t dac33_dai_delay(
1148 			struct snd_pcm_substream *substream,
1149 			struct snd_soc_dai *dai)
1150 {
1151 	struct snd_soc_component *component = dai->component;
1152 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1153 	unsigned long long t0, t1, t_now;
1154 	unsigned int time_delta, uthr;
1155 	int samples_out, samples_in, samples;
1156 	snd_pcm_sframes_t delay = 0;
1157 	unsigned long flags;
1158 
1159 	switch (dac33->fifo_mode) {
1160 	case DAC33_FIFO_BYPASS:
1161 		break;
1162 	case DAC33_FIFO_MODE1:
1163 		spin_lock_irqsave(&dac33->lock, flags);
1164 		t0 = dac33->t_stamp1;
1165 		t1 = dac33->t_stamp2;
1166 		spin_unlock_irqrestore(&dac33->lock, flags);
1167 		t_now = ktime_to_us(ktime_get());
1168 
1169 		/* We have not started to fill the FIFO yet, delay is 0 */
1170 		if (!t1)
1171 			goto out;
1172 
1173 		if (t0 > t1) {
1174 			/*
1175 			 * Phase 1:
1176 			 * After Alarm threshold, and before nSample write
1177 			 */
1178 			time_delta = t_now - t0;
1179 			samples_out = time_delta ? US_TO_SAMPLES(
1180 						substream->runtime->rate,
1181 						time_delta) : 0;
1182 
1183 			if (likely(dac33->alarm_threshold > samples_out))
1184 				delay = dac33->alarm_threshold - samples_out;
1185 			else
1186 				delay = 0;
1187 		} else if ((t_now - t1) <= dac33->mode1_us_burst) {
1188 			/*
1189 			 * Phase 2:
1190 			 * After nSample write (during burst operation)
1191 			 */
1192 			time_delta = t_now - t0;
1193 			samples_out = time_delta ? US_TO_SAMPLES(
1194 						substream->runtime->rate,
1195 						time_delta) : 0;
1196 
1197 			time_delta = t_now - t1;
1198 			samples_in = time_delta ? US_TO_SAMPLES(
1199 						dac33->burst_rate,
1200 						time_delta) : 0;
1201 
1202 			samples = dac33->alarm_threshold;
1203 			samples += (samples_in - samples_out);
1204 
1205 			if (likely(samples > 0))
1206 				delay = samples;
1207 			else
1208 				delay = 0;
1209 		} else {
1210 			/*
1211 			 * Phase 3:
1212 			 * After burst operation, before next alarm threshold
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 			samples_in = dac33->nsample;
1220 			samples = dac33->alarm_threshold;
1221 			samples += (samples_in - samples_out);
1222 
1223 			if (likely(samples > 0))
1224 				delay = samples > dac33->fifo_size ?
1225 					dac33->fifo_size : samples;
1226 			else
1227 				delay = 0;
1228 		}
1229 		break;
1230 	case DAC33_FIFO_MODE7:
1231 		spin_lock_irqsave(&dac33->lock, flags);
1232 		t0 = dac33->t_stamp1;
1233 		uthr = dac33->uthr;
1234 		spin_unlock_irqrestore(&dac33->lock, flags);
1235 		t_now = ktime_to_us(ktime_get());
1236 
1237 		/* We have not started to fill the FIFO yet, delay is 0 */
1238 		if (!t0)
1239 			goto out;
1240 
1241 		if (t_now <= t0) {
1242 			/*
1243 			 * Either the timestamps are messed or equal. Report
1244 			 * maximum delay
1245 			 */
1246 			delay = uthr;
1247 			goto out;
1248 		}
1249 
1250 		time_delta = t_now - t0;
1251 		if (time_delta <= dac33->mode7_us_to_lthr) {
1252 			/*
1253 			* Phase 1:
1254 			* After burst (draining phase)
1255 			*/
1256 			samples_out = US_TO_SAMPLES(
1257 					substream->runtime->rate,
1258 					time_delta);
1259 
1260 			if (likely(uthr > samples_out))
1261 				delay = uthr - samples_out;
1262 			else
1263 				delay = 0;
1264 		} else {
1265 			/*
1266 			* Phase 2:
1267 			* During burst operation
1268 			*/
1269 			time_delta = time_delta - dac33->mode7_us_to_lthr;
1270 
1271 			samples_out = US_TO_SAMPLES(
1272 					substream->runtime->rate,
1273 					time_delta);
1274 			samples_in = US_TO_SAMPLES(
1275 					dac33->burst_rate,
1276 					time_delta);
1277 			delay = DAC33_MODE7_MARGIN + samples_in - samples_out;
1278 
1279 			if (unlikely(delay > uthr))
1280 				delay = uthr;
1281 		}
1282 		break;
1283 	default:
1284 		dev_warn(component->dev, "Unhandled FIFO mode: %d\n",
1285 							dac33->fifo_mode);
1286 		break;
1287 	}
1288 out:
1289 	return delay;
1290 }
1291 
1292 static int dac33_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1293 		int clk_id, unsigned int freq, int dir)
1294 {
1295 	struct snd_soc_component *component = codec_dai->component;
1296 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1297 	u8 ioc_reg, asrcb_reg;
1298 
1299 	ioc_reg = dac33_read_reg_cache(component, DAC33_INT_OSC_CTRL);
1300 	asrcb_reg = dac33_read_reg_cache(component, DAC33_ASRC_CTRL_B);
1301 	switch (clk_id) {
1302 	case TLV320DAC33_MCLK:
1303 		ioc_reg |= DAC33_REFSEL;
1304 		asrcb_reg |= DAC33_SRCREFSEL;
1305 		break;
1306 	case TLV320DAC33_SLEEPCLK:
1307 		ioc_reg &= ~DAC33_REFSEL;
1308 		asrcb_reg &= ~DAC33_SRCREFSEL;
1309 		break;
1310 	default:
1311 		dev_err(component->dev, "Invalid clock ID (%d)\n", clk_id);
1312 		break;
1313 	}
1314 	dac33->refclk = freq;
1315 
1316 	dac33_write_reg_cache(component, DAC33_INT_OSC_CTRL, ioc_reg);
1317 	dac33_write_reg_cache(component, DAC33_ASRC_CTRL_B, asrcb_reg);
1318 
1319 	return 0;
1320 }
1321 
1322 static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
1323 			     unsigned int fmt)
1324 {
1325 	struct snd_soc_component *component = codec_dai->component;
1326 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1327 	u8 aictrl_a, aictrl_b;
1328 
1329 	aictrl_a = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_A);
1330 	aictrl_b = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B);
1331 
1332 	switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
1333 	case SND_SOC_DAIFMT_CBP_CFP:
1334 		aictrl_a |= (DAC33_MSBCLK | DAC33_MSWCLK);
1335 		break;
1336 	case SND_SOC_DAIFMT_CBC_CFC:
1337 		if (dac33->fifo_mode) {
1338 			dev_err(component->dev, "FIFO mode requires provider mode\n");
1339 			return -EINVAL;
1340 		} else
1341 			aictrl_a &= ~(DAC33_MSBCLK | DAC33_MSWCLK);
1342 		break;
1343 	default:
1344 		return -EINVAL;
1345 	}
1346 
1347 	aictrl_a &= ~DAC33_AFMT_MASK;
1348 	switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1349 	case SND_SOC_DAIFMT_I2S:
1350 		aictrl_a |= DAC33_AFMT_I2S;
1351 		break;
1352 	case SND_SOC_DAIFMT_DSP_A:
1353 		aictrl_a |= DAC33_AFMT_DSP;
1354 		aictrl_b &= ~DAC33_DATA_DELAY_MASK;
1355 		aictrl_b |= DAC33_DATA_DELAY(0);
1356 		break;
1357 	case SND_SOC_DAIFMT_RIGHT_J:
1358 		aictrl_a |= DAC33_AFMT_RIGHT_J;
1359 		break;
1360 	case SND_SOC_DAIFMT_LEFT_J:
1361 		aictrl_a |= DAC33_AFMT_LEFT_J;
1362 		break;
1363 	default:
1364 		dev_err(component->dev, "Unsupported format (%u)\n",
1365 			fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1366 		return -EINVAL;
1367 	}
1368 
1369 	dac33_write_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1370 	dac33_write_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
1371 
1372 	return 0;
1373 }
1374 
1375 static int dac33_soc_probe(struct snd_soc_component *component)
1376 {
1377 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1378 	int ret = 0;
1379 
1380 	dac33->component = component;
1381 
1382 	/* Read the tlv320dac33 ID registers */
1383 	ret = dac33_hard_power(component, 1);
1384 	if (ret != 0) {
1385 		dev_err(component->dev, "Failed to power up component: %d\n", ret);
1386 		goto err_power;
1387 	}
1388 	ret = dac33_read_id(component);
1389 	dac33_hard_power(component, 0);
1390 
1391 	if (ret < 0) {
1392 		dev_err(component->dev, "Failed to read chip ID: %d\n", ret);
1393 		ret = -ENODEV;
1394 		goto err_power;
1395 	}
1396 
1397 	/* Check if the IRQ number is valid and request it */
1398 	if (dac33->irq >= 0) {
1399 		ret = request_irq(dac33->irq, dac33_interrupt_handler,
1400 				  IRQF_TRIGGER_RISING,
1401 				  component->name, component);
1402 		if (ret < 0) {
1403 			dev_err(component->dev, "Could not request IRQ%d (%d)\n",
1404 						dac33->irq, ret);
1405 			dac33->irq = -1;
1406 		}
1407 		if (dac33->irq != -1) {
1408 			INIT_WORK(&dac33->work, dac33_work);
1409 		}
1410 	}
1411 
1412 	/* Only add the FIFO controls, if we have valid IRQ number */
1413 	if (dac33->irq >= 0)
1414 		snd_soc_add_component_controls(component, dac33_mode_snd_controls,
1415 				     ARRAY_SIZE(dac33_mode_snd_controls));
1416 
1417 err_power:
1418 	return ret;
1419 }
1420 
1421 static void dac33_soc_remove(struct snd_soc_component *component)
1422 {
1423 	struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
1424 
1425 	if (dac33->irq >= 0) {
1426 		free_irq(dac33->irq, dac33->component);
1427 		flush_work(&dac33->work);
1428 	}
1429 }
1430 
1431 static const struct snd_soc_component_driver soc_component_dev_tlv320dac33 = {
1432 	.read			= dac33_read_reg_cache,
1433 	.write			= dac33_write_locked,
1434 	.set_bias_level		= dac33_set_bias_level,
1435 	.probe			= dac33_soc_probe,
1436 	.remove			= dac33_soc_remove,
1437 	.controls		= dac33_snd_controls,
1438 	.num_controls		= ARRAY_SIZE(dac33_snd_controls),
1439 	.dapm_widgets		= dac33_dapm_widgets,
1440 	.num_dapm_widgets	= ARRAY_SIZE(dac33_dapm_widgets),
1441 	.dapm_routes		= audio_map,
1442 	.num_dapm_routes	= ARRAY_SIZE(audio_map),
1443 	.use_pmdown_time	= 1,
1444 	.endianness		= 1,
1445 };
1446 
1447 #define DAC33_RATES	(SNDRV_PCM_RATE_44100 | \
1448 			 SNDRV_PCM_RATE_48000)
1449 #define DAC33_FORMATS	(SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
1450 
1451 static const struct snd_soc_dai_ops dac33_dai_ops = {
1452 	.startup	= dac33_startup,
1453 	.shutdown	= dac33_shutdown,
1454 	.hw_params	= dac33_hw_params,
1455 	.trigger	= dac33_pcm_trigger,
1456 	.delay		= dac33_dai_delay,
1457 	.set_sysclk	= dac33_set_dai_sysclk,
1458 	.set_fmt	= dac33_set_dai_fmt,
1459 };
1460 
1461 static struct snd_soc_dai_driver dac33_dai = {
1462 	.name = "tlv320dac33-hifi",
1463 	.playback = {
1464 		.stream_name = "Playback",
1465 		.channels_min = 2,
1466 		.channels_max = 2,
1467 		.rates = DAC33_RATES,
1468 		.formats = DAC33_FORMATS,
1469 		.sig_bits = 24,
1470 	},
1471 	.ops = &dac33_dai_ops,
1472 };
1473 
1474 static int dac33_i2c_probe(struct i2c_client *client)
1475 {
1476 	struct tlv320dac33_priv *dac33;
1477 	int ret, i;
1478 
1479 	dac33 = devm_kzalloc(&client->dev, sizeof(struct tlv320dac33_priv),
1480 			     GFP_KERNEL);
1481 	if (dac33 == NULL)
1482 		return -ENOMEM;
1483 
1484 	dac33->reg_cache = devm_kmemdup_array(&client->dev, dac33_reg, ARRAY_SIZE(dac33_reg),
1485 					      sizeof(dac33_reg[0]), GFP_KERNEL);
1486 	if (!dac33->reg_cache)
1487 		return -ENOMEM;
1488 
1489 	dac33->i2c = client;
1490 	mutex_init(&dac33->mutex);
1491 	spin_lock_init(&dac33->lock);
1492 
1493 	i2c_set_clientdata(client, dac33);
1494 
1495 	if (!dac33->burst_bclkdiv)
1496 		dac33->burst_bclkdiv = 8;
1497 	if (!dac33->mode1_latency)
1498 		dac33->mode1_latency = 10000; /* 10ms */
1499 	dac33->irq = client->irq;
1500 	/* Disable FIFO use by default */
1501 	dac33->fifo_mode = DAC33_FIFO_BYPASS;
1502 
1503 	/* request optional reset GPIO */
1504 	dac33->reset_gpiod =
1505 		devm_gpiod_get_optional(&client->dev, "reset", GPIOD_OUT_LOW);
1506 	if (IS_ERR(dac33->reset_gpiod)) {
1507 		ret = PTR_ERR(dac33->reset_gpiod);
1508 		dev_err_probe(&client->dev, ret,
1509 			      "Failed to get reset GPIO\n");
1510 		goto err;
1511 	}
1512 
1513 	for (i = 0; i < ARRAY_SIZE(dac33->supplies); i++)
1514 		dac33->supplies[i].supply = dac33_supply_names[i];
1515 
1516 	ret = devm_regulator_bulk_get(&client->dev, ARRAY_SIZE(dac33->supplies),
1517 				 dac33->supplies);
1518 
1519 	if (ret != 0) {
1520 		dev_err(&client->dev, "Failed to request supplies: %d\n", ret);
1521 		goto err;
1522 	}
1523 
1524 	ret = devm_snd_soc_register_component(&client->dev,
1525 			&soc_component_dev_tlv320dac33, &dac33_dai, 1);
1526 	if (ret < 0)
1527 		goto err;
1528 
1529 	return ret;
1530 
1531 err:
1532 	return ret;
1533 }
1534 
1535 static void dac33_i2c_remove(struct i2c_client *client)
1536 {
1537 	struct tlv320dac33_priv *dac33 = i2c_get_clientdata(client);
1538 
1539 	if (unlikely(dac33->chip_power))
1540 		dac33_hard_power(dac33->component, 0);
1541 }
1542 
1543 static const struct i2c_device_id tlv320dac33_i2c_id[] = {
1544 	{
1545 		.name = "tlv320dac33",
1546 		.driver_data = 0,
1547 	},
1548 	{ },
1549 };
1550 MODULE_DEVICE_TABLE(i2c, tlv320dac33_i2c_id);
1551 
1552 static struct i2c_driver tlv320dac33_i2c_driver = {
1553 	.driver = {
1554 		.name = "tlv320dac33-codec",
1555 	},
1556 	.probe		= dac33_i2c_probe,
1557 	.remove		= dac33_i2c_remove,
1558 	.id_table	= tlv320dac33_i2c_id,
1559 };
1560 
1561 module_i2c_driver(tlv320dac33_i2c_driver);
1562 
1563 MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
1564 MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
1565 MODULE_LICENSE("GPL");
1566