2 * ALSA SoC Texas Instruments TLV320DAC33 codec driver
4 * Author: Peter Ujfalusi <peter.ujfalusi@nokia.com>
6 * Copyright: (C) 2009 Nokia Corporation
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.
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.
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
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/init.h>
27 #include <linux/delay.h>
29 #include <linux/i2c.h>
30 #include <linux/platform_device.h>
31 #include <linux/interrupt.h>
32 #include <linux/gpio.h>
33 #include <linux/regulator/consumer.h>
34 #include <linux/slab.h>
35 #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>
43 #include <sound/tlv320dac33-plat.h>
44 #include "tlv320dac33.h"
46 #define DAC33_BUFFER_SIZE_BYTES 24576 /* bytes, 12288 16 bit words,
48 #define DAC33_BUFFER_SIZE_SAMPLES 6144
50 #define NSAMPLE_MAX 5700
53 #define MODE7_UTHR (DAC33_BUFFER_SIZE_SAMPLES - 10)
55 #define BURST_BASEFREQ_HZ 49152000
57 #define SAMPLES_TO_US(rate, samples) \
58 (1000000000 / ((rate * 1000) / samples))
60 #define US_TO_SAMPLES(rate, us) \
61 (rate / (1000000 / (us < 1000000 ? us : 1000000)))
63 #define UTHR_FROM_PERIOD_SIZE(samples, playrate, burstrate) \
64 ((samples * 5000) / ((burstrate * 5000) / (burstrate - playrate)))
66 static void dac33_calculate_times(struct snd_pcm_substream
*substream
);
67 static int dac33_prepare_chip(struct snd_pcm_substream
*substream
);
76 enum dac33_fifo_modes
{
77 DAC33_FIFO_BYPASS
= 0,
83 #define DAC33_NUM_SUPPLIES 3
84 static const char *dac33_supply_names
[DAC33_NUM_SUPPLIES
] = {
90 struct tlv320dac33_priv
{
92 struct workqueue_struct
*dac33_wq
;
93 struct work_struct work
;
94 struct snd_soc_codec
*codec
;
95 struct regulator_bulk_data supplies
[DAC33_NUM_SUPPLIES
];
96 struct snd_pcm_substream
*substream
;
102 unsigned int alarm_threshold
; /* set to be half of LATENCY_TIME_MS */
103 unsigned int nsample_min
; /* nsample should not be lower than
105 unsigned int nsample_max
; /* nsample should not be higher than
107 enum dac33_fifo_modes fifo_mode
;/* FIFO mode selection */
108 unsigned int nsample
; /* burst read amount from host */
109 int mode1_latency
; /* latency caused by the i2c writes in
111 int auto_fifo_config
; /* Configure the FIFO based on the
113 u8 burst_bclkdiv
; /* BCLK divider value in burst mode */
114 unsigned int burst_rate
; /* Interface speed in Burst modes */
116 int keep_bclk
; /* Keep the BCLK continuously running
119 unsigned long long t_stamp1
; /* Time stamp for FIFO modes to */
120 unsigned long long t_stamp2
; /* calculate the FIFO caused delay */
122 unsigned int mode1_us_burst
; /* Time to burst read n number of
124 unsigned int mode7_us_to_lthr
; /* Time to reach lthr from uthr */
128 enum dac33_state state
;
129 enum snd_soc_control_type control_type
;
133 static const u8 dac33_reg
[DAC33_CACHEREGNUM
] = {
134 0x00, 0x00, 0x00, 0x00, /* 0x00 - 0x03 */
135 0x00, 0x00, 0x00, 0x00, /* 0x04 - 0x07 */
136 0x00, 0x00, 0x00, 0x00, /* 0x08 - 0x0b */
137 0x00, 0x00, 0x00, 0x00, /* 0x0c - 0x0f */
138 0x00, 0x00, 0x00, 0x00, /* 0x10 - 0x13 */
139 0x00, 0x00, 0x00, 0x00, /* 0x14 - 0x17 */
140 0x00, 0x00, 0x00, 0x00, /* 0x18 - 0x1b */
141 0x00, 0x00, 0x00, 0x00, /* 0x1c - 0x1f */
142 0x00, 0x00, 0x00, 0x00, /* 0x20 - 0x23 */
143 0x00, 0x00, 0x00, 0x00, /* 0x24 - 0x27 */
144 0x00, 0x00, 0x00, 0x00, /* 0x28 - 0x2b */
145 0x00, 0x00, 0x00, 0x80, /* 0x2c - 0x2f */
146 0x80, 0x00, 0x00, 0x00, /* 0x30 - 0x33 */
147 0x00, 0x00, 0x00, 0x00, /* 0x34 - 0x37 */
148 0x00, 0x00, /* 0x38 - 0x39 */
149 /* Registers 0x3a - 0x3f are reserved */
150 0x00, 0x00, /* 0x3a - 0x3b */
151 0x00, 0x00, 0x00, 0x00, /* 0x3c - 0x3f */
153 0x00, 0x00, 0x00, 0x00, /* 0x40 - 0x43 */
154 0x00, 0x80, /* 0x44 - 0x45 */
155 /* Registers 0x46 - 0x47 are reserved */
156 0x80, 0x80, /* 0x46 - 0x47 */
158 0x80, 0x00, 0x00, /* 0x48 - 0x4a */
159 /* Registers 0x4b - 0x7c are reserved */
161 0x00, 0x00, 0x00, 0x00, /* 0x4c - 0x4f */
162 0x00, 0x00, 0x00, 0x00, /* 0x50 - 0x53 */
163 0x00, 0x00, 0x00, 0x00, /* 0x54 - 0x57 */
164 0x00, 0x00, 0x00, 0x00, /* 0x58 - 0x5b */
165 0x00, 0x00, 0x00, 0x00, /* 0x5c - 0x5f */
166 0x00, 0x00, 0x00, 0x00, /* 0x60 - 0x63 */
167 0x00, 0x00, 0x00, 0x00, /* 0x64 - 0x67 */
168 0x00, 0x00, 0x00, 0x00, /* 0x68 - 0x6b */
169 0x00, 0x00, 0x00, 0x00, /* 0x6c - 0x6f */
170 0x00, 0x00, 0x00, 0x00, /* 0x70 - 0x73 */
171 0x00, 0x00, 0x00, 0x00, /* 0x74 - 0x77 */
172 0x00, 0x00, 0x00, 0x00, /* 0x78 - 0x7b */
175 0xda, 0x33, 0x03, /* 0x7d - 0x7f */
178 /* Register read and write */
179 static inline unsigned int dac33_read_reg_cache(struct snd_soc_codec
*codec
,
182 u8
*cache
= codec
->reg_cache
;
183 if (reg
>= DAC33_CACHEREGNUM
)
189 static inline void dac33_write_reg_cache(struct snd_soc_codec
*codec
,
192 u8
*cache
= codec
->reg_cache
;
193 if (reg
>= DAC33_CACHEREGNUM
)
199 static int dac33_read(struct snd_soc_codec
*codec
, unsigned int reg
,
202 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
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]);
211 dev_err(codec
->dev
, "Read failed (%d)\n", val
);
212 value
[0] = dac33_read_reg_cache(codec
, reg
);
216 dac33_write_reg_cache(codec
, reg
, val
);
219 value
[0] = dac33_read_reg_cache(codec
, reg
);
225 static int dac33_write(struct snd_soc_codec
*codec
, unsigned int reg
,
228 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
234 * D15..D8 dac33 register offset
235 * D7...D0 register data
237 data
[0] = reg
& 0xff;
238 data
[1] = value
& 0xff;
240 dac33_write_reg_cache(codec
, data
[0], data
[1]);
241 if (dac33
->chip_power
) {
242 ret
= codec
->hw_write(codec
->control_data
, data
, 2);
244 dev_err(codec
->dev
, "Write failed (%d)\n", ret
);
252 static int dac33_write_locked(struct snd_soc_codec
*codec
, unsigned int reg
,
255 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
258 mutex_lock(&dac33
->mutex
);
259 ret
= dac33_write(codec
, reg
, value
);
260 mutex_unlock(&dac33
->mutex
);
265 #define DAC33_I2C_ADDR_AUTOINC 0x80
266 static int dac33_write16(struct snd_soc_codec
*codec
, unsigned int reg
,
269 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
275 * D23..D16 dac33 register offset
276 * D15..D8 register data MSB
277 * D7...D0 register data LSB
279 data
[0] = reg
& 0xff;
280 data
[1] = (value
>> 8) & 0xff;
281 data
[2] = value
& 0xff;
283 dac33_write_reg_cache(codec
, data
[0], data
[1]);
284 dac33_write_reg_cache(codec
, data
[0] + 1, data
[2]);
286 if (dac33
->chip_power
) {
287 /* We need to set autoincrement mode for 16 bit writes */
288 data
[0] |= DAC33_I2C_ADDR_AUTOINC
;
289 ret
= codec
->hw_write(codec
->control_data
, data
, 3);
291 dev_err(codec
->dev
, "Write failed (%d)\n", ret
);
299 static void dac33_init_chip(struct snd_soc_codec
*codec
)
301 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
303 if (unlikely(!dac33
->chip_power
))
306 /* 44-46: DAC Control Registers */
307 /* A : DAC sample rate Fsref/1.5 */
308 dac33_write(codec
, DAC33_DAC_CTRL_A
, DAC33_DACRATE(0));
309 /* B : DAC src=normal, not muted */
310 dac33_write(codec
, DAC33_DAC_CTRL_B
, DAC33_DACSRCR_RIGHT
|
313 dac33_write(codec
, DAC33_DAC_CTRL_C
, 0x00);
315 /* 73 : volume soft stepping control,
316 clock source = internal osc (?) */
317 dac33_write(codec
, DAC33_ANA_VOL_SOFT_STEP_CTRL
, DAC33_VOLCLKEN
);
319 dac33_write(codec
, DAC33_PWR_CTRL
, DAC33_PDNALLB
);
321 /* Restore only selected registers (gains mostly) */
322 dac33_write(codec
, DAC33_LDAC_DIG_VOL_CTRL
,
323 dac33_read_reg_cache(codec
, DAC33_LDAC_DIG_VOL_CTRL
));
324 dac33_write(codec
, DAC33_RDAC_DIG_VOL_CTRL
,
325 dac33_read_reg_cache(codec
, DAC33_RDAC_DIG_VOL_CTRL
));
327 dac33_write(codec
, DAC33_LINEL_TO_LLO_VOL
,
328 dac33_read_reg_cache(codec
, DAC33_LINEL_TO_LLO_VOL
));
329 dac33_write(codec
, DAC33_LINER_TO_RLO_VOL
,
330 dac33_read_reg_cache(codec
, DAC33_LINER_TO_RLO_VOL
));
333 static inline int dac33_read_id(struct snd_soc_codec
*codec
)
338 for (i
= 0; i
< 3; i
++) {
339 ret
= dac33_read(codec
, DAC33_DEVICE_ID_MSB
+ i
, ®
);
347 static inline void dac33_soft_power(struct snd_soc_codec
*codec
, int power
)
351 reg
= dac33_read_reg_cache(codec
, DAC33_PWR_CTRL
);
353 reg
|= DAC33_PDNALLB
;
355 reg
&= ~(DAC33_PDNALLB
| DAC33_OSCPDNB
|
356 DAC33_DACRPDNB
| DAC33_DACLPDNB
);
357 dac33_write(codec
, DAC33_PWR_CTRL
, reg
);
360 static int dac33_hard_power(struct snd_soc_codec
*codec
, int power
)
362 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
365 mutex_lock(&dac33
->mutex
);
368 if (unlikely(power
== dac33
->chip_power
)) {
369 dev_dbg(codec
->dev
, "Trying to set the same power state: %s\n",
370 power
? "ON" : "OFF");
375 ret
= regulator_bulk_enable(ARRAY_SIZE(dac33
->supplies
),
379 "Failed to enable supplies: %d\n", ret
);
383 if (dac33
->power_gpio
>= 0)
384 gpio_set_value(dac33
->power_gpio
, 1);
386 dac33
->chip_power
= 1;
388 dac33_soft_power(codec
, 0);
389 if (dac33
->power_gpio
>= 0)
390 gpio_set_value(dac33
->power_gpio
, 0);
392 ret
= regulator_bulk_disable(ARRAY_SIZE(dac33
->supplies
),
396 "Failed to disable supplies: %d\n", ret
);
400 dac33
->chip_power
= 0;
404 mutex_unlock(&dac33
->mutex
);
408 static int playback_event(struct snd_soc_dapm_widget
*w
,
409 struct snd_kcontrol
*kcontrol
, int event
)
411 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(w
->codec
);
414 case SND_SOC_DAPM_PRE_PMU
:
415 if (likely(dac33
->substream
)) {
416 dac33_calculate_times(dac33
->substream
);
417 dac33_prepare_chip(dac33
->substream
);
424 static int dac33_get_nsample(struct snd_kcontrol
*kcontrol
,
425 struct snd_ctl_elem_value
*ucontrol
)
427 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
428 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
430 ucontrol
->value
.integer
.value
[0] = dac33
->nsample
;
435 static int dac33_set_nsample(struct snd_kcontrol
*kcontrol
,
436 struct snd_ctl_elem_value
*ucontrol
)
438 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
439 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
442 if (dac33
->nsample
== ucontrol
->value
.integer
.value
[0])
445 if (ucontrol
->value
.integer
.value
[0] < dac33
->nsample_min
||
446 ucontrol
->value
.integer
.value
[0] > dac33
->nsample_max
) {
449 dac33
->nsample
= ucontrol
->value
.integer
.value
[0];
450 /* Re calculate the burst time */
451 dac33
->mode1_us_burst
= SAMPLES_TO_US(dac33
->burst_rate
,
458 static int dac33_get_uthr(struct snd_kcontrol
*kcontrol
,
459 struct snd_ctl_elem_value
*ucontrol
)
461 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
462 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
464 ucontrol
->value
.integer
.value
[0] = dac33
->uthr
;
469 static int dac33_set_uthr(struct snd_kcontrol
*kcontrol
,
470 struct snd_ctl_elem_value
*ucontrol
)
472 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
473 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
476 if (dac33
->substream
)
479 if (dac33
->uthr
== ucontrol
->value
.integer
.value
[0])
482 if (ucontrol
->value
.integer
.value
[0] < (MODE7_LTHR
+ 10) ||
483 ucontrol
->value
.integer
.value
[0] > MODE7_UTHR
)
486 dac33
->uthr
= ucontrol
->value
.integer
.value
[0];
491 static int dac33_get_fifo_mode(struct snd_kcontrol
*kcontrol
,
492 struct snd_ctl_elem_value
*ucontrol
)
494 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
495 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
497 ucontrol
->value
.integer
.value
[0] = dac33
->fifo_mode
;
502 static int dac33_set_fifo_mode(struct snd_kcontrol
*kcontrol
,
503 struct snd_ctl_elem_value
*ucontrol
)
505 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
506 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
509 if (dac33
->fifo_mode
== ucontrol
->value
.integer
.value
[0])
511 /* Do not allow changes while stream is running*/
515 if (ucontrol
->value
.integer
.value
[0] < 0 ||
516 ucontrol
->value
.integer
.value
[0] >= DAC33_FIFO_LAST_MODE
)
519 dac33
->fifo_mode
= ucontrol
->value
.integer
.value
[0];
524 /* Codec operation modes */
525 static const char *dac33_fifo_mode_texts
[] = {
526 "Bypass", "Mode 1", "Mode 7"
529 static const struct soc_enum dac33_fifo_mode_enum
=
530 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(dac33_fifo_mode_texts
),
531 dac33_fifo_mode_texts
);
533 /* L/R Line Output Gain */
534 static const char *lr_lineout_gain_texts
[] = {
535 "Line -12dB DAC 0dB", "Line -6dB DAC 6dB",
536 "Line 0dB DAC 12dB", "Line 6dB DAC 18dB",
539 static const struct soc_enum l_lineout_gain_enum
=
540 SOC_ENUM_SINGLE(DAC33_LDAC_PWR_CTRL
, 0,
541 ARRAY_SIZE(lr_lineout_gain_texts
),
542 lr_lineout_gain_texts
);
544 static const struct soc_enum r_lineout_gain_enum
=
545 SOC_ENUM_SINGLE(DAC33_RDAC_PWR_CTRL
, 0,
546 ARRAY_SIZE(lr_lineout_gain_texts
),
547 lr_lineout_gain_texts
);
550 * DACL/R digital volume control:
551 * from 0 dB to -63.5 in 0.5 dB steps
552 * Need to be inverted later on:
556 static DECLARE_TLV_DB_SCALE(dac_digivol_tlv
, -6350, 50, 0);
558 static const struct snd_kcontrol_new dac33_snd_controls
[] = {
559 SOC_DOUBLE_R_TLV("DAC Digital Playback Volume",
560 DAC33_LDAC_DIG_VOL_CTRL
, DAC33_RDAC_DIG_VOL_CTRL
,
561 0, 0x7f, 1, dac_digivol_tlv
),
562 SOC_DOUBLE_R("DAC Digital Playback Switch",
563 DAC33_LDAC_DIG_VOL_CTRL
, DAC33_RDAC_DIG_VOL_CTRL
, 7, 1, 1),
564 SOC_DOUBLE_R("Line to Line Out Volume",
565 DAC33_LINEL_TO_LLO_VOL
, DAC33_LINER_TO_RLO_VOL
, 0, 127, 1),
566 SOC_ENUM("Left Line Output Gain", l_lineout_gain_enum
),
567 SOC_ENUM("Right Line Output Gain", r_lineout_gain_enum
),
570 static const struct snd_kcontrol_new dac33_mode_snd_controls
[] = {
571 SOC_ENUM_EXT("FIFO Mode", dac33_fifo_mode_enum
,
572 dac33_get_fifo_mode
, dac33_set_fifo_mode
),
575 static const struct snd_kcontrol_new dac33_fifo_snd_controls
[] = {
576 SOC_SINGLE_EXT("nSample", 0, 0, 5900, 0,
577 dac33_get_nsample
, dac33_set_nsample
),
578 SOC_SINGLE_EXT("UTHR", 0, 0, MODE7_UTHR
, 0,
579 dac33_get_uthr
, dac33_set_uthr
),
583 static const struct snd_kcontrol_new dac33_dapm_abypassl_control
=
584 SOC_DAPM_SINGLE("Switch", DAC33_LINEL_TO_LLO_VOL
, 7, 1, 1);
586 static const struct snd_kcontrol_new dac33_dapm_abypassr_control
=
587 SOC_DAPM_SINGLE("Switch", DAC33_LINER_TO_RLO_VOL
, 7, 1, 1);
589 static const struct snd_soc_dapm_widget dac33_dapm_widgets
[] = {
590 SND_SOC_DAPM_OUTPUT("LEFT_LO"),
591 SND_SOC_DAPM_OUTPUT("RIGHT_LO"),
593 SND_SOC_DAPM_INPUT("LINEL"),
594 SND_SOC_DAPM_INPUT("LINER"),
596 SND_SOC_DAPM_DAC("DACL", "Left Playback", DAC33_LDAC_PWR_CTRL
, 2, 0),
597 SND_SOC_DAPM_DAC("DACR", "Right Playback", DAC33_RDAC_PWR_CTRL
, 2, 0),
600 SND_SOC_DAPM_SWITCH("Analog Left Bypass", SND_SOC_NOPM
, 0, 0,
601 &dac33_dapm_abypassl_control
),
602 SND_SOC_DAPM_SWITCH("Analog Right Bypass", SND_SOC_NOPM
, 0, 0,
603 &dac33_dapm_abypassr_control
),
605 SND_SOC_DAPM_REG(snd_soc_dapm_mixer
, "Output Left Amp Power",
606 DAC33_OUT_AMP_PWR_CTRL
, 6, 3, 3, 0),
607 SND_SOC_DAPM_REG(snd_soc_dapm_mixer
, "Output Right Amp Power",
608 DAC33_OUT_AMP_PWR_CTRL
, 4, 3, 3, 0),
610 SND_SOC_DAPM_PRE("Prepare Playback", playback_event
),
613 static const struct snd_soc_dapm_route audio_map
[] = {
615 {"Analog Left Bypass", "Switch", "LINEL"},
616 {"Analog Right Bypass", "Switch", "LINER"},
618 {"Output Left Amp Power", NULL
, "DACL"},
619 {"Output Right Amp Power", NULL
, "DACR"},
621 {"Output Left Amp Power", NULL
, "Analog Left Bypass"},
622 {"Output Right Amp Power", NULL
, "Analog Right Bypass"},
625 {"LEFT_LO", NULL
, "Output Left Amp Power"},
626 {"RIGHT_LO", NULL
, "Output Right Amp Power"},
629 static int dac33_add_widgets(struct snd_soc_codec
*codec
)
631 snd_soc_dapm_new_controls(codec
, dac33_dapm_widgets
,
632 ARRAY_SIZE(dac33_dapm_widgets
));
634 /* set up audio path interconnects */
635 snd_soc_dapm_add_routes(codec
, audio_map
, ARRAY_SIZE(audio_map
));
640 static int dac33_set_bias_level(struct snd_soc_codec
*codec
,
641 enum snd_soc_bias_level level
)
646 case SND_SOC_BIAS_ON
:
647 dac33_soft_power(codec
, 1);
649 case SND_SOC_BIAS_PREPARE
:
651 case SND_SOC_BIAS_STANDBY
:
652 if (codec
->bias_level
== SND_SOC_BIAS_OFF
) {
653 /* Coming from OFF, switch on the codec */
654 ret
= dac33_hard_power(codec
, 1);
658 dac33_init_chip(codec
);
661 case SND_SOC_BIAS_OFF
:
662 /* Do not power off, when the codec is already off */
663 if (codec
->bias_level
== SND_SOC_BIAS_OFF
)
665 ret
= dac33_hard_power(codec
, 0);
670 codec
->bias_level
= level
;
675 static inline void dac33_prefill_handler(struct tlv320dac33_priv
*dac33
)
677 struct snd_soc_codec
*codec
= dac33
->codec
;
680 switch (dac33
->fifo_mode
) {
681 case DAC33_FIFO_MODE1
:
682 dac33_write16(codec
, DAC33_NSAMPLE_MSB
,
683 DAC33_THRREG(dac33
->nsample
));
685 /* Take the timestamps */
686 spin_lock_irq(&dac33
->lock
);
687 dac33
->t_stamp2
= ktime_to_us(ktime_get());
688 dac33
->t_stamp1
= dac33
->t_stamp2
;
689 spin_unlock_irq(&dac33
->lock
);
691 dac33_write16(codec
, DAC33_PREFILL_MSB
,
692 DAC33_THRREG(dac33
->alarm_threshold
));
693 /* Enable Alarm Threshold IRQ with a delay */
694 delay
= SAMPLES_TO_US(dac33
->burst_rate
,
695 dac33
->alarm_threshold
) + 1000;
696 usleep_range(delay
, delay
+ 500);
697 dac33_write(codec
, DAC33_FIFO_IRQ_MASK
, DAC33_MAT
);
699 case DAC33_FIFO_MODE7
:
700 /* Take the timestamp */
701 spin_lock_irq(&dac33
->lock
);
702 dac33
->t_stamp1
= ktime_to_us(ktime_get());
703 /* Move back the timestamp with drain time */
704 dac33
->t_stamp1
-= dac33
->mode7_us_to_lthr
;
705 spin_unlock_irq(&dac33
->lock
);
707 dac33_write16(codec
, DAC33_PREFILL_MSB
,
708 DAC33_THRREG(MODE7_LTHR
));
710 /* Enable Upper Threshold IRQ */
711 dac33_write(codec
, DAC33_FIFO_IRQ_MASK
, DAC33_MUT
);
714 dev_warn(codec
->dev
, "Unhandled FIFO mode: %d\n",
720 static inline void dac33_playback_handler(struct tlv320dac33_priv
*dac33
)
722 struct snd_soc_codec
*codec
= dac33
->codec
;
724 switch (dac33
->fifo_mode
) {
725 case DAC33_FIFO_MODE1
:
726 /* Take the timestamp */
727 spin_lock_irq(&dac33
->lock
);
728 dac33
->t_stamp2
= ktime_to_us(ktime_get());
729 spin_unlock_irq(&dac33
->lock
);
731 dac33_write16(codec
, DAC33_NSAMPLE_MSB
,
732 DAC33_THRREG(dac33
->nsample
));
734 case DAC33_FIFO_MODE7
:
735 /* At the moment we are not using interrupts in mode7 */
738 dev_warn(codec
->dev
, "Unhandled FIFO mode: %d\n",
744 static void dac33_work(struct work_struct
*work
)
746 struct snd_soc_codec
*codec
;
747 struct tlv320dac33_priv
*dac33
;
750 dac33
= container_of(work
, struct tlv320dac33_priv
, work
);
751 codec
= dac33
->codec
;
753 mutex_lock(&dac33
->mutex
);
754 switch (dac33
->state
) {
756 dac33
->state
= DAC33_PLAYBACK
;
757 dac33_prefill_handler(dac33
);
760 dac33_playback_handler(dac33
);
765 dac33
->state
= DAC33_IDLE
;
766 /* Mask all interrupts from dac33 */
767 dac33_write(codec
, DAC33_FIFO_IRQ_MASK
, 0);
770 reg
= dac33_read_reg_cache(codec
, DAC33_FIFO_CTRL_A
);
771 reg
|= DAC33_FIFOFLUSH
;
772 dac33_write(codec
, DAC33_FIFO_CTRL_A
, reg
);
775 mutex_unlock(&dac33
->mutex
);
778 static irqreturn_t
dac33_interrupt_handler(int irq
, void *dev
)
780 struct snd_soc_codec
*codec
= dev
;
781 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
783 spin_lock(&dac33
->lock
);
784 dac33
->t_stamp1
= ktime_to_us(ktime_get());
785 spin_unlock(&dac33
->lock
);
787 /* Do not schedule the workqueue in Mode7 */
788 if (dac33
->fifo_mode
!= DAC33_FIFO_MODE7
)
789 queue_work(dac33
->dac33_wq
, &dac33
->work
);
794 static void dac33_oscwait(struct snd_soc_codec
*codec
)
800 usleep_range(1000, 2000);
801 dac33_read(codec
, DAC33_INT_OSC_STATUS
, ®
);
802 } while (((reg
& 0x03) != DAC33_OSCSTATUS_NORMAL
) && timeout
--);
803 if ((reg
& 0x03) != DAC33_OSCSTATUS_NORMAL
)
805 "internal oscillator calibration failed\n");
808 static int dac33_startup(struct snd_pcm_substream
*substream
,
809 struct snd_soc_dai
*dai
)
811 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
812 struct snd_soc_codec
*codec
= rtd
->codec
;
813 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
815 /* Stream started, save the substream pointer */
816 dac33
->substream
= substream
;
821 static void dac33_shutdown(struct snd_pcm_substream
*substream
,
822 struct snd_soc_dai
*dai
)
824 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
825 struct snd_soc_codec
*codec
= rtd
->codec
;
826 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
828 dac33
->substream
= NULL
;
830 /* Reset the nSample restrictions */
831 dac33
->nsample_min
= 0;
832 dac33
->nsample_max
= NSAMPLE_MAX
;
835 static int dac33_hw_params(struct snd_pcm_substream
*substream
,
836 struct snd_pcm_hw_params
*params
,
837 struct snd_soc_dai
*dai
)
839 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
840 struct snd_soc_codec
*codec
= rtd
->codec
;
842 /* Check parameters for validity */
843 switch (params_rate(params
)) {
848 dev_err(codec
->dev
, "unsupported rate %d\n",
849 params_rate(params
));
853 switch (params_format(params
)) {
854 case SNDRV_PCM_FORMAT_S16_LE
:
857 dev_err(codec
->dev
, "unsupported format %d\n",
858 params_format(params
));
865 #define CALC_OSCSET(rate, refclk) ( \
866 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
867 #define CALC_RATIOSET(rate, refclk) ( \
868 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000)
871 * tlv320dac33 is strict on the sequence of the register writes, if the register
872 * writes happens in different order, than dac33 might end up in unknown state.
873 * Use the known, working sequence of register writes to initialize the dac33.
875 static int dac33_prepare_chip(struct snd_pcm_substream
*substream
)
877 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
878 struct snd_soc_codec
*codec
= rtd
->codec
;
879 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
880 unsigned int oscset
, ratioset
, pwr_ctrl
, reg_tmp
;
881 u8 aictrl_a
, aictrl_b
, fifoctrl_a
;
883 switch (substream
->runtime
->rate
) {
886 oscset
= CALC_OSCSET(substream
->runtime
->rate
, dac33
->refclk
);
887 ratioset
= CALC_RATIOSET(substream
->runtime
->rate
,
891 dev_err(codec
->dev
, "unsupported rate %d\n",
892 substream
->runtime
->rate
);
897 aictrl_a
= dac33_read_reg_cache(codec
, DAC33_SER_AUDIOIF_CTRL_A
);
898 aictrl_a
&= ~(DAC33_NCYCL_MASK
| DAC33_WLEN_MASK
);
899 /* Read FIFO control A, and clear FIFO flush bit */
900 fifoctrl_a
= dac33_read_reg_cache(codec
, DAC33_FIFO_CTRL_A
);
901 fifoctrl_a
&= ~DAC33_FIFOFLUSH
;
903 fifoctrl_a
&= ~DAC33_WIDTH
;
904 switch (substream
->runtime
->format
) {
905 case SNDRV_PCM_FORMAT_S16_LE
:
906 aictrl_a
|= (DAC33_NCYCL_16
| DAC33_WLEN_16
);
907 fifoctrl_a
|= DAC33_WIDTH
;
910 dev_err(codec
->dev
, "unsupported format %d\n",
911 substream
->runtime
->format
);
915 mutex_lock(&dac33
->mutex
);
917 if (!dac33
->chip_power
) {
919 * Chip is not powered yet.
920 * Do the init in the dac33_set_bias_level later.
922 mutex_unlock(&dac33
->mutex
);
926 dac33_soft_power(codec
, 0);
927 dac33_soft_power(codec
, 1);
929 reg_tmp
= dac33_read_reg_cache(codec
, DAC33_INT_OSC_CTRL
);
930 dac33_write(codec
, DAC33_INT_OSC_CTRL
, reg_tmp
);
932 /* Write registers 0x08 and 0x09 (MSB, LSB) */
933 dac33_write16(codec
, DAC33_INT_OSC_FREQ_RAT_A
, oscset
);
935 /* calib time: 128 is a nice number ;) */
936 dac33_write(codec
, DAC33_CALIB_TIME
, 128);
938 /* adjustment treshold & step */
939 dac33_write(codec
, DAC33_INT_OSC_CTRL_B
, DAC33_ADJTHRSHLD(2) |
942 /* div=4 / gain=1 / div */
943 dac33_write(codec
, DAC33_INT_OSC_CTRL_C
, DAC33_REFDIV(4));
945 pwr_ctrl
= dac33_read_reg_cache(codec
, DAC33_PWR_CTRL
);
946 pwr_ctrl
|= DAC33_OSCPDNB
| DAC33_DACRPDNB
| DAC33_DACLPDNB
;
947 dac33_write(codec
, DAC33_PWR_CTRL
, pwr_ctrl
);
949 dac33_oscwait(codec
);
951 if (dac33
->fifo_mode
) {
952 /* Generic for all FIFO modes */
953 /* 50-51 : ASRC Control registers */
954 dac33_write(codec
, DAC33_ASRC_CTRL_A
, DAC33_SRCLKDIV(1));
955 dac33_write(codec
, DAC33_ASRC_CTRL_B
, 1); /* ??? */
957 /* Write registers 0x34 and 0x35 (MSB, LSB) */
958 dac33_write16(codec
, DAC33_SRC_REF_CLK_RATIO_A
, ratioset
);
960 /* Set interrupts to high active */
961 dac33_write(codec
, DAC33_INTP_CTRL_A
, DAC33_INTPM_AHIGH
);
963 /* FIFO bypass mode */
964 /* 50-51 : ASRC Control registers */
965 dac33_write(codec
, DAC33_ASRC_CTRL_A
, DAC33_SRCBYP
);
966 dac33_write(codec
, DAC33_ASRC_CTRL_B
, 0); /* ??? */
969 /* Interrupt behaviour configuration */
970 switch (dac33
->fifo_mode
) {
971 case DAC33_FIFO_MODE1
:
972 dac33_write(codec
, DAC33_FIFO_IRQ_MODE_B
,
973 DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL
));
975 case DAC33_FIFO_MODE7
:
976 dac33_write(codec
, DAC33_FIFO_IRQ_MODE_A
,
977 DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL
));
980 /* in FIFO bypass mode, the interrupts are not used */
984 aictrl_b
= dac33_read_reg_cache(codec
, DAC33_SER_AUDIOIF_CTRL_B
);
986 switch (dac33
->fifo_mode
) {
987 case DAC33_FIFO_MODE1
:
990 * Disable the FIFO bypass (Enable the use of FIFO)
991 * Select nSample mode
992 * BCLK is only running when data is needed by DAC33
994 fifoctrl_a
&= ~DAC33_FBYPAS
;
995 fifoctrl_a
&= ~DAC33_FAUTO
;
996 if (dac33
->keep_bclk
)
997 aictrl_b
|= DAC33_BCLKON
;
999 aictrl_b
&= ~DAC33_BCLKON
;
1001 case DAC33_FIFO_MODE7
:
1004 * Disable the FIFO bypass (Enable the use of FIFO)
1005 * Select Threshold mode
1006 * BCLK is only running when data is needed by DAC33
1008 fifoctrl_a
&= ~DAC33_FBYPAS
;
1009 fifoctrl_a
|= DAC33_FAUTO
;
1010 if (dac33
->keep_bclk
)
1011 aictrl_b
|= DAC33_BCLKON
;
1013 aictrl_b
&= ~DAC33_BCLKON
;
1017 * For FIFO bypass mode:
1018 * Enable the FIFO bypass (Disable the FIFO use)
1019 * Set the BCLK as continous
1021 fifoctrl_a
|= DAC33_FBYPAS
;
1022 aictrl_b
|= DAC33_BCLKON
;
1026 dac33_write(codec
, DAC33_FIFO_CTRL_A
, fifoctrl_a
);
1027 dac33_write(codec
, DAC33_SER_AUDIOIF_CTRL_A
, aictrl_a
);
1028 dac33_write(codec
, DAC33_SER_AUDIOIF_CTRL_B
, aictrl_b
);
1039 if (dac33
->fifo_mode
)
1040 dac33_write(codec
, DAC33_SER_AUDIOIF_CTRL_C
,
1041 dac33
->burst_bclkdiv
);
1043 dac33_write(codec
, DAC33_SER_AUDIOIF_CTRL_C
, 32);
1045 switch (dac33
->fifo_mode
) {
1046 case DAC33_FIFO_MODE1
:
1047 dac33_write16(codec
, DAC33_ATHR_MSB
,
1048 DAC33_THRREG(dac33
->alarm_threshold
));
1050 case DAC33_FIFO_MODE7
:
1052 * Configure the threshold levels, and leave 10 sample space
1053 * at the bottom, and also at the top of the FIFO
1055 dac33_write16(codec
, DAC33_UTHR_MSB
, DAC33_THRREG(dac33
->uthr
));
1056 dac33_write16(codec
, DAC33_LTHR_MSB
, DAC33_THRREG(MODE7_LTHR
));
1062 mutex_unlock(&dac33
->mutex
);
1067 static void dac33_calculate_times(struct snd_pcm_substream
*substream
)
1069 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1070 struct snd_soc_codec
*codec
= rtd
->codec
;
1071 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1072 unsigned int period_size
= substream
->runtime
->period_size
;
1073 unsigned int rate
= substream
->runtime
->rate
;
1074 unsigned int nsample_limit
;
1076 /* In bypass mode we don't need to calculate */
1077 if (!dac33
->fifo_mode
)
1080 switch (dac33
->fifo_mode
) {
1081 case DAC33_FIFO_MODE1
:
1082 /* Number of samples under i2c latency */
1083 dac33
->alarm_threshold
= US_TO_SAMPLES(rate
,
1084 dac33
->mode1_latency
);
1085 nsample_limit
= DAC33_BUFFER_SIZE_SAMPLES
-
1086 dac33
->alarm_threshold
;
1088 if (dac33
->auto_fifo_config
) {
1089 if (period_size
<= dac33
->alarm_threshold
)
1091 * Configure nSamaple to number of periods,
1092 * which covers the latency requironment.
1094 dac33
->nsample
= period_size
*
1095 ((dac33
->alarm_threshold
/ period_size
) +
1096 (dac33
->alarm_threshold
% period_size
?
1098 else if (period_size
> nsample_limit
)
1099 dac33
->nsample
= nsample_limit
;
1101 dac33
->nsample
= period_size
;
1103 /* nSample time shall not be shorter than i2c latency */
1104 dac33
->nsample_min
= dac33
->alarm_threshold
;
1106 * nSample should not be bigger than alsa buffer minus
1107 * size of one period to avoid overruns
1109 dac33
->nsample_max
= substream
->runtime
->buffer_size
-
1112 if (dac33
->nsample_max
> nsample_limit
)
1113 dac33
->nsample_max
= nsample_limit
;
1115 /* Correct the nSample if it is outside of the ranges */
1116 if (dac33
->nsample
< dac33
->nsample_min
)
1117 dac33
->nsample
= dac33
->nsample_min
;
1118 if (dac33
->nsample
> dac33
->nsample_max
)
1119 dac33
->nsample
= dac33
->nsample_max
;
1122 dac33
->mode1_us_burst
= SAMPLES_TO_US(dac33
->burst_rate
,
1124 dac33
->t_stamp1
= 0;
1125 dac33
->t_stamp2
= 0;
1127 case DAC33_FIFO_MODE7
:
1128 if (dac33
->auto_fifo_config
) {
1129 dac33
->uthr
= UTHR_FROM_PERIOD_SIZE(
1132 dac33
->burst_rate
) + 9;
1133 if (dac33
->uthr
> MODE7_UTHR
)
1134 dac33
->uthr
= MODE7_UTHR
;
1135 if (dac33
->uthr
< (MODE7_LTHR
+ 10))
1136 dac33
->uthr
= (MODE7_LTHR
+ 10);
1138 dac33
->mode7_us_to_lthr
=
1139 SAMPLES_TO_US(substream
->runtime
->rate
,
1140 dac33
->uthr
- MODE7_LTHR
+ 1);
1141 dac33
->t_stamp1
= 0;
1149 static int dac33_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
,
1150 struct snd_soc_dai
*dai
)
1152 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1153 struct snd_soc_codec
*codec
= rtd
->codec
;
1154 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1158 case SNDRV_PCM_TRIGGER_START
:
1159 case SNDRV_PCM_TRIGGER_RESUME
:
1160 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1161 if (dac33
->fifo_mode
) {
1162 dac33
->state
= DAC33_PREFILL
;
1163 queue_work(dac33
->dac33_wq
, &dac33
->work
);
1166 case SNDRV_PCM_TRIGGER_STOP
:
1167 case SNDRV_PCM_TRIGGER_SUSPEND
:
1168 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1169 if (dac33
->fifo_mode
) {
1170 dac33
->state
= DAC33_FLUSH
;
1171 queue_work(dac33
->dac33_wq
, &dac33
->work
);
1181 static snd_pcm_sframes_t
dac33_dai_delay(
1182 struct snd_pcm_substream
*substream
,
1183 struct snd_soc_dai
*dai
)
1185 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1186 struct snd_soc_codec
*codec
= rtd
->codec
;
1187 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1188 unsigned long long t0
, t1
, t_now
;
1189 unsigned int time_delta
, uthr
;
1190 int samples_out
, samples_in
, samples
;
1191 snd_pcm_sframes_t delay
= 0;
1193 switch (dac33
->fifo_mode
) {
1194 case DAC33_FIFO_BYPASS
:
1196 case DAC33_FIFO_MODE1
:
1197 spin_lock(&dac33
->lock
);
1198 t0
= dac33
->t_stamp1
;
1199 t1
= dac33
->t_stamp2
;
1200 spin_unlock(&dac33
->lock
);
1201 t_now
= ktime_to_us(ktime_get());
1203 /* We have not started to fill the FIFO yet, delay is 0 */
1210 * After Alarm threshold, and before nSample write
1212 time_delta
= t_now
- t0
;
1213 samples_out
= time_delta
? US_TO_SAMPLES(
1214 substream
->runtime
->rate
,
1217 if (likely(dac33
->alarm_threshold
> samples_out
))
1218 delay
= dac33
->alarm_threshold
- samples_out
;
1221 } else if ((t_now
- t1
) <= dac33
->mode1_us_burst
) {
1224 * After nSample write (during burst operation)
1226 time_delta
= t_now
- t0
;
1227 samples_out
= time_delta
? US_TO_SAMPLES(
1228 substream
->runtime
->rate
,
1231 time_delta
= t_now
- t1
;
1232 samples_in
= time_delta
? US_TO_SAMPLES(
1236 samples
= dac33
->alarm_threshold
;
1237 samples
+= (samples_in
- samples_out
);
1239 if (likely(samples
> 0))
1246 * After burst operation, before next alarm threshold
1248 time_delta
= t_now
- t0
;
1249 samples_out
= time_delta
? US_TO_SAMPLES(
1250 substream
->runtime
->rate
,
1253 samples_in
= dac33
->nsample
;
1254 samples
= dac33
->alarm_threshold
;
1255 samples
+= (samples_in
- samples_out
);
1257 if (likely(samples
> 0))
1258 delay
= samples
> DAC33_BUFFER_SIZE_SAMPLES
?
1259 DAC33_BUFFER_SIZE_SAMPLES
: samples
;
1264 case DAC33_FIFO_MODE7
:
1265 spin_lock(&dac33
->lock
);
1266 t0
= dac33
->t_stamp1
;
1268 spin_unlock(&dac33
->lock
);
1269 t_now
= ktime_to_us(ktime_get());
1271 /* We have not started to fill the FIFO yet, delay is 0 */
1277 * Either the timestamps are messed or equal. Report
1284 time_delta
= t_now
- t0
;
1285 if (time_delta
<= dac33
->mode7_us_to_lthr
) {
1288 * After burst (draining phase)
1290 samples_out
= US_TO_SAMPLES(
1291 substream
->runtime
->rate
,
1294 if (likely(uthr
> samples_out
))
1295 delay
= uthr
- samples_out
;
1301 * During burst operation
1303 time_delta
= time_delta
- dac33
->mode7_us_to_lthr
;
1305 samples_out
= US_TO_SAMPLES(
1306 substream
->runtime
->rate
,
1308 samples_in
= US_TO_SAMPLES(
1311 delay
= MODE7_LTHR
+ samples_in
- samples_out
;
1313 if (unlikely(delay
> uthr
))
1318 dev_warn(codec
->dev
, "Unhandled FIFO mode: %d\n",
1326 static int dac33_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
1327 int clk_id
, unsigned int freq
, int dir
)
1329 struct snd_soc_codec
*codec
= codec_dai
->codec
;
1330 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1331 u8 ioc_reg
, asrcb_reg
;
1333 ioc_reg
= dac33_read_reg_cache(codec
, DAC33_INT_OSC_CTRL
);
1334 asrcb_reg
= dac33_read_reg_cache(codec
, DAC33_ASRC_CTRL_B
);
1336 case TLV320DAC33_MCLK
:
1337 ioc_reg
|= DAC33_REFSEL
;
1338 asrcb_reg
|= DAC33_SRCREFSEL
;
1340 case TLV320DAC33_SLEEPCLK
:
1341 ioc_reg
&= ~DAC33_REFSEL
;
1342 asrcb_reg
&= ~DAC33_SRCREFSEL
;
1345 dev_err(codec
->dev
, "Invalid clock ID (%d)\n", clk_id
);
1348 dac33
->refclk
= freq
;
1350 dac33_write_reg_cache(codec
, DAC33_INT_OSC_CTRL
, ioc_reg
);
1351 dac33_write_reg_cache(codec
, DAC33_ASRC_CTRL_B
, asrcb_reg
);
1356 static int dac33_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
1359 struct snd_soc_codec
*codec
= codec_dai
->codec
;
1360 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1361 u8 aictrl_a
, aictrl_b
;
1363 aictrl_a
= dac33_read_reg_cache(codec
, DAC33_SER_AUDIOIF_CTRL_A
);
1364 aictrl_b
= dac33_read_reg_cache(codec
, DAC33_SER_AUDIOIF_CTRL_B
);
1365 /* set master/slave audio interface */
1366 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
1367 case SND_SOC_DAIFMT_CBM_CFM
:
1369 aictrl_a
|= (DAC33_MSBCLK
| DAC33_MSWCLK
);
1371 case SND_SOC_DAIFMT_CBS_CFS
:
1373 if (dac33
->fifo_mode
) {
1374 dev_err(codec
->dev
, "FIFO mode requires master mode\n");
1377 aictrl_a
&= ~(DAC33_MSBCLK
| DAC33_MSWCLK
);
1383 aictrl_a
&= ~DAC33_AFMT_MASK
;
1384 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
1385 case SND_SOC_DAIFMT_I2S
:
1386 aictrl_a
|= DAC33_AFMT_I2S
;
1388 case SND_SOC_DAIFMT_DSP_A
:
1389 aictrl_a
|= DAC33_AFMT_DSP
;
1390 aictrl_b
&= ~DAC33_DATA_DELAY_MASK
;
1391 aictrl_b
|= DAC33_DATA_DELAY(0);
1393 case SND_SOC_DAIFMT_RIGHT_J
:
1394 aictrl_a
|= DAC33_AFMT_RIGHT_J
;
1396 case SND_SOC_DAIFMT_LEFT_J
:
1397 aictrl_a
|= DAC33_AFMT_LEFT_J
;
1400 dev_err(codec
->dev
, "Unsupported format (%u)\n",
1401 fmt
& SND_SOC_DAIFMT_FORMAT_MASK
);
1405 dac33_write_reg_cache(codec
, DAC33_SER_AUDIOIF_CTRL_A
, aictrl_a
);
1406 dac33_write_reg_cache(codec
, DAC33_SER_AUDIOIF_CTRL_B
, aictrl_b
);
1411 static int dac33_soc_probe(struct snd_soc_codec
*codec
)
1413 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1416 codec
->control_data
= dac33
->control_data
;
1417 codec
->hw_write
= (hw_write_t
) i2c_master_send
;
1418 codec
->idle_bias_off
= 1;
1419 dac33
->codec
= codec
;
1421 /* Read the tlv320dac33 ID registers */
1422 ret
= dac33_hard_power(codec
, 1);
1424 dev_err(codec
->dev
, "Failed to power up codec: %d\n", ret
);
1427 ret
= dac33_read_id(codec
);
1428 dac33_hard_power(codec
, 0);
1431 dev_err(codec
->dev
, "Failed to read chip ID: %d\n", ret
);
1436 /* Check if the IRQ number is valid and request it */
1437 if (dac33
->irq
>= 0) {
1438 ret
= request_irq(dac33
->irq
, dac33_interrupt_handler
,
1439 IRQF_TRIGGER_RISING
| IRQF_DISABLED
,
1440 codec
->name
, codec
);
1442 dev_err(codec
->dev
, "Could not request IRQ%d (%d)\n",
1446 if (dac33
->irq
!= -1) {
1447 /* Setup work queue */
1449 create_singlethread_workqueue("tlv320dac33");
1450 if (dac33
->dac33_wq
== NULL
) {
1451 free_irq(dac33
->irq
, codec
);
1455 INIT_WORK(&dac33
->work
, dac33_work
);
1459 snd_soc_add_controls(codec
, dac33_snd_controls
,
1460 ARRAY_SIZE(dac33_snd_controls
));
1461 /* Only add the FIFO controls, if we have valid IRQ number */
1462 if (dac33
->irq
>= 0) {
1463 snd_soc_add_controls(codec
, dac33_mode_snd_controls
,
1464 ARRAY_SIZE(dac33_mode_snd_controls
));
1465 /* FIFO usage controls only, if autoio config is not selected */
1466 if (!dac33
->auto_fifo_config
)
1467 snd_soc_add_controls(codec
, dac33_fifo_snd_controls
,
1468 ARRAY_SIZE(dac33_fifo_snd_controls
));
1470 dac33_add_widgets(codec
);
1476 static int dac33_soc_remove(struct snd_soc_codec
*codec
)
1478 struct tlv320dac33_priv
*dac33
= snd_soc_codec_get_drvdata(codec
);
1480 dac33_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
1482 if (dac33
->irq
>= 0) {
1483 free_irq(dac33
->irq
, dac33
->codec
);
1484 destroy_workqueue(dac33
->dac33_wq
);
1489 static int dac33_soc_suspend(struct snd_soc_codec
*codec
, pm_message_t state
)
1491 dac33_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
1496 static int dac33_soc_resume(struct snd_soc_codec
*codec
)
1498 dac33_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
1503 static struct snd_soc_codec_driver soc_codec_dev_tlv320dac33
= {
1504 .read
= dac33_read_reg_cache
,
1505 .write
= dac33_write_locked
,
1506 .set_bias_level
= dac33_set_bias_level
,
1507 .reg_cache_size
= ARRAY_SIZE(dac33_reg
),
1508 .reg_word_size
= sizeof(u8
),
1509 .reg_cache_default
= dac33_reg
,
1510 .probe
= dac33_soc_probe
,
1511 .remove
= dac33_soc_remove
,
1512 .suspend
= dac33_soc_suspend
,
1513 .resume
= dac33_soc_resume
,
1516 #define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
1517 SNDRV_PCM_RATE_48000)
1518 #define DAC33_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1520 static struct snd_soc_dai_ops dac33_dai_ops
= {
1521 .startup
= dac33_startup
,
1522 .shutdown
= dac33_shutdown
,
1523 .hw_params
= dac33_hw_params
,
1524 .trigger
= dac33_pcm_trigger
,
1525 .delay
= dac33_dai_delay
,
1526 .set_sysclk
= dac33_set_dai_sysclk
,
1527 .set_fmt
= dac33_set_dai_fmt
,
1530 static struct snd_soc_dai_driver dac33_dai
= {
1531 .name
= "tlv320dac33-hifi",
1533 .stream_name
= "Playback",
1536 .rates
= DAC33_RATES
,
1537 .formats
= DAC33_FORMATS
,},
1538 .ops
= &dac33_dai_ops
,
1541 static int __devinit
dac33_i2c_probe(struct i2c_client
*client
,
1542 const struct i2c_device_id
*id
)
1544 struct tlv320dac33_platform_data
*pdata
;
1545 struct tlv320dac33_priv
*dac33
;
1548 if (client
->dev
.platform_data
== NULL
) {
1549 dev_err(&client
->dev
, "Platform data not set\n");
1552 pdata
= client
->dev
.platform_data
;
1554 dac33
= kzalloc(sizeof(struct tlv320dac33_priv
), GFP_KERNEL
);
1558 dac33
->control_data
= client
;
1559 mutex_init(&dac33
->mutex
);
1560 spin_lock_init(&dac33
->lock
);
1562 i2c_set_clientdata(client
, dac33
);
1564 dac33
->power_gpio
= pdata
->power_gpio
;
1565 dac33
->burst_bclkdiv
= pdata
->burst_bclkdiv
;
1566 /* Pre calculate the burst rate */
1567 dac33
->burst_rate
= BURST_BASEFREQ_HZ
/ dac33
->burst_bclkdiv
/ 32;
1568 dac33
->keep_bclk
= pdata
->keep_bclk
;
1569 dac33
->auto_fifo_config
= pdata
->auto_fifo_config
;
1570 dac33
->mode1_latency
= pdata
->mode1_latency
;
1571 if (!dac33
->mode1_latency
)
1572 dac33
->mode1_latency
= 10000; /* 10ms */
1573 dac33
->irq
= client
->irq
;
1574 dac33
->nsample
= NSAMPLE_MAX
;
1575 dac33
->nsample_max
= NSAMPLE_MAX
;
1576 dac33
->uthr
= MODE7_UTHR
;
1577 /* Disable FIFO use by default */
1578 dac33
->fifo_mode
= DAC33_FIFO_BYPASS
;
1580 /* Check if the reset GPIO number is valid and request it */
1581 if (dac33
->power_gpio
>= 0) {
1582 ret
= gpio_request(dac33
->power_gpio
, "tlv320dac33 reset");
1584 dev_err(&client
->dev
,
1585 "Failed to request reset GPIO (%d)\n",
1589 gpio_direction_output(dac33
->power_gpio
, 0);
1592 for (i
= 0; i
< ARRAY_SIZE(dac33
->supplies
); i
++)
1593 dac33
->supplies
[i
].supply
= dac33_supply_names
[i
];
1595 ret
= regulator_bulk_get(&client
->dev
, ARRAY_SIZE(dac33
->supplies
),
1599 dev_err(&client
->dev
, "Failed to request supplies: %d\n", ret
);
1603 ret
= snd_soc_register_codec(&client
->dev
,
1604 &soc_codec_dev_tlv320dac33
, &dac33_dai
, 1);
1610 regulator_bulk_free(ARRAY_SIZE(dac33
->supplies
), dac33
->supplies
);
1612 if (dac33
->power_gpio
>= 0)
1613 gpio_free(dac33
->power_gpio
);
1619 static int __devexit
dac33_i2c_remove(struct i2c_client
*client
)
1621 struct tlv320dac33_priv
*dac33
= i2c_get_clientdata(client
);
1623 if (unlikely(dac33
->chip_power
))
1624 dac33_hard_power(dac33
->codec
, 0);
1626 if (dac33
->power_gpio
>= 0)
1627 gpio_free(dac33
->power_gpio
);
1629 regulator_bulk_free(ARRAY_SIZE(dac33
->supplies
), dac33
->supplies
);
1631 snd_soc_unregister_codec(&client
->dev
);
1637 static const struct i2c_device_id tlv320dac33_i2c_id
[] = {
1639 .name
= "tlv320dac33",
1645 static struct i2c_driver tlv320dac33_i2c_driver
= {
1647 .name
= "tlv320dac33-codec",
1648 .owner
= THIS_MODULE
,
1650 .probe
= dac33_i2c_probe
,
1651 .remove
= __devexit_p(dac33_i2c_remove
),
1652 .id_table
= tlv320dac33_i2c_id
,
1655 static int __init
dac33_module_init(void)
1658 r
= i2c_add_driver(&tlv320dac33_i2c_driver
);
1660 printk(KERN_ERR
"DAC33: driver registration failed\n");
1665 module_init(dac33_module_init
);
1667 static void __exit
dac33_module_exit(void)
1669 i2c_del_driver(&tlv320dac33_i2c_driver
);
1671 module_exit(dac33_module_exit
);
1674 MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
1675 MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@nokia.com>");
1676 MODULE_LICENSE("GPL");