blob: a957eaeb7bc137e97c6809810f40a1f557a64cd8 [file] [log] [blame]
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001/*
2 * ALSA SoC Texas Instruments TLV320DAC33 codec driver
3 *
Peter Ujfalusi93864cf2011-05-03 18:11:36 +03004 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03005 *
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>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030030#include <linux/interrupt.h>
31#include <linux/gpio.h>
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020032#include <linux/regulator/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030034#include <sound/core.h>
35#include <sound/pcm.h>
36#include <sound/pcm_params.h>
37#include <sound/soc.h>
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030038#include <sound/initval.h>
39#include <sound/tlv.h>
40
41#include <sound/tlv320dac33-plat.h>
42#include "tlv320dac33.h"
43
Peter Ujfalusi549675e2010-12-22 10:45:17 +020044/*
45 * The internal FIFO is 24576 bytes long
46 * It can be configured to hold 16bit or 24bit samples
47 * In 16bit configuration the FIFO can hold 6144 stereo samples
48 * In 24bit configuration the FIFO can hold 4096 stereo samples
49 */
50#define DAC33_FIFO_SIZE_16BIT 6144
51#define DAC33_FIFO_SIZE_24BIT 4096
52#define DAC33_MODE7_MARGIN 10 /* Safety margin for FIFO in Mode7 */
Peter Ujfalusi42603932010-04-23 10:09:59 +030053
Peter Ujfalusi76f471272010-04-23 10:10:00 +030054#define BURST_BASEFREQ_HZ 49152000
55
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030056#define SAMPLES_TO_US(rate, samples) \
Axel Linc29429f32011-09-29 12:09:57 +080057 (1000000000 / (((rate) * 1000) / (samples)))
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030058
59#define US_TO_SAMPLES(rate, us) \
Axel Linc29429f32011-09-29 12:09:57 +080060 ((rate) / (1000000 / ((us) < 1000000 ? (us) : 1000000)))
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030061
Peter Ujfalusia577b312010-07-28 15:26:55 +030062#define UTHR_FROM_PERIOD_SIZE(samples, playrate, burstrate) \
Axel Linc29429f32011-09-29 12:09:57 +080063 (((samples)*5000) / (((burstrate)*5000) / ((burstrate) - (playrate))))
Peter Ujfalusia577b312010-07-28 15:26:55 +030064
Mark Browne6968a12012-04-04 15:58:16 +010065static void dac33_calculate_times(struct snd_pcm_substream *substream,
Kuninori Morimotocd21ac82018-01-29 04:14:21 +000066 struct snd_soc_component *component);
Mark Browne6968a12012-04-04 15:58:16 +010067static int dac33_prepare_chip(struct snd_pcm_substream *substream,
Kuninori Morimotocd21ac82018-01-29 04:14:21 +000068 struct snd_soc_component *component);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +030069
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030070enum dac33_state {
71 DAC33_IDLE = 0,
72 DAC33_PREFILL,
73 DAC33_PLAYBACK,
74 DAC33_FLUSH,
75};
76
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +020077enum dac33_fifo_modes {
78 DAC33_FIFO_BYPASS = 0,
79 DAC33_FIFO_MODE1,
Peter Ujfalusi28e05d92009-12-31 10:30:22 +020080 DAC33_FIFO_MODE7,
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +020081 DAC33_FIFO_LAST_MODE,
82};
83
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +020084#define DAC33_NUM_SUPPLIES 3
85static const char *dac33_supply_names[DAC33_NUM_SUPPLIES] = {
86 "AVDD",
87 "DVDD",
88 "IOVDD",
89};
90
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030091struct tlv320dac33_priv {
92 struct mutex mutex;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +030093 struct work_struct work;
Kuninori Morimotocd21ac82018-01-29 04:14:21 +000094 struct snd_soc_component *component;
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 */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200103 enum dac33_fifo_modes fifo_mode;/* FIFO mode selection */
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200104 unsigned int fifo_size; /* Size of the FIFO in samples */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300105 unsigned int nsample; /* burst read amount from host */
Peter Ujfalusif430a272010-07-28 15:26:54 +0300106 int mode1_latency; /* latency caused by the i2c writes in
107 * us */
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +0200108 u8 burst_bclkdiv; /* BCLK divider value in burst mode */
Kuninori Morimotoc4305af2017-11-14 01:04:25 +0000109 u8 *reg_cache;
Peter Ujfalusi76f471272010-04-23 10:10:00 +0300110 unsigned int burst_rate; /* Interface speed in Burst modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300111
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200112 int keep_bclk; /* Keep the BCLK continuously running
113 * in FIFO modes */
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300114 spinlock_t lock;
115 unsigned long long t_stamp1; /* Time stamp for FIFO modes to */
116 unsigned long long t_stamp2; /* calculate the FIFO caused delay */
117
118 unsigned int mode1_us_burst; /* Time to burst read n number of
119 * samples */
120 unsigned int mode7_us_to_lthr; /* Time to reach lthr from uthr */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300121
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +0300122 unsigned int uthr;
123
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300124 enum dac33_state state;
Kuninori Morimotoce9544d2017-11-09 00:19:48 +0000125 struct i2c_client *i2c;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300126};
127
128static const u8 dac33_reg[DAC33_CACHEREGNUM] = {
1290x00, 0x00, 0x00, 0x00, /* 0x00 - 0x03 */
1300x00, 0x00, 0x00, 0x00, /* 0x04 - 0x07 */
1310x00, 0x00, 0x00, 0x00, /* 0x08 - 0x0b */
1320x00, 0x00, 0x00, 0x00, /* 0x0c - 0x0f */
1330x00, 0x00, 0x00, 0x00, /* 0x10 - 0x13 */
1340x00, 0x00, 0x00, 0x00, /* 0x14 - 0x17 */
1350x00, 0x00, 0x00, 0x00, /* 0x18 - 0x1b */
1360x00, 0x00, 0x00, 0x00, /* 0x1c - 0x1f */
1370x00, 0x00, 0x00, 0x00, /* 0x20 - 0x23 */
1380x00, 0x00, 0x00, 0x00, /* 0x24 - 0x27 */
1390x00, 0x00, 0x00, 0x00, /* 0x28 - 0x2b */
1400x00, 0x00, 0x00, 0x80, /* 0x2c - 0x2f */
1410x80, 0x00, 0x00, 0x00, /* 0x30 - 0x33 */
1420x00, 0x00, 0x00, 0x00, /* 0x34 - 0x37 */
1430x00, 0x00, /* 0x38 - 0x39 */
144/* Registers 0x3a - 0x3f are reserved */
145 0x00, 0x00, /* 0x3a - 0x3b */
1460x00, 0x00, 0x00, 0x00, /* 0x3c - 0x3f */
147
1480x00, 0x00, 0x00, 0x00, /* 0x40 - 0x43 */
1490x00, 0x80, /* 0x44 - 0x45 */
150/* Registers 0x46 - 0x47 are reserved */
151 0x80, 0x80, /* 0x46 - 0x47 */
152
1530x80, 0x00, 0x00, /* 0x48 - 0x4a */
154/* Registers 0x4b - 0x7c are reserved */
155 0x00, /* 0x4b */
1560x00, 0x00, 0x00, 0x00, /* 0x4c - 0x4f */
1570x00, 0x00, 0x00, 0x00, /* 0x50 - 0x53 */
1580x00, 0x00, 0x00, 0x00, /* 0x54 - 0x57 */
1590x00, 0x00, 0x00, 0x00, /* 0x58 - 0x5b */
1600x00, 0x00, 0x00, 0x00, /* 0x5c - 0x5f */
1610x00, 0x00, 0x00, 0x00, /* 0x60 - 0x63 */
1620x00, 0x00, 0x00, 0x00, /* 0x64 - 0x67 */
1630x00, 0x00, 0x00, 0x00, /* 0x68 - 0x6b */
1640x00, 0x00, 0x00, 0x00, /* 0x6c - 0x6f */
1650x00, 0x00, 0x00, 0x00, /* 0x70 - 0x73 */
1660x00, 0x00, 0x00, 0x00, /* 0x74 - 0x77 */
1670x00, 0x00, 0x00, 0x00, /* 0x78 - 0x7b */
1680x00, /* 0x7c */
169
170 0xda, 0x33, 0x03, /* 0x7d - 0x7f */
171};
172
173/* Register read and write */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000174static inline unsigned int dac33_read_reg_cache(struct snd_soc_component *component,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300175 unsigned reg)
176{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000177 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Kuninori Morimotoc4305af2017-11-14 01:04:25 +0000178 u8 *cache = dac33->reg_cache;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300179 if (reg >= DAC33_CACHEREGNUM)
180 return 0;
181
182 return cache[reg];
183}
184
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000185static inline void dac33_write_reg_cache(struct snd_soc_component *component,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300186 u8 reg, u8 value)
187{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000188 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Kuninori Morimotoc4305af2017-11-14 01:04:25 +0000189 u8 *cache = dac33->reg_cache;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300190 if (reg >= DAC33_CACHEREGNUM)
191 return;
192
193 cache[reg] = value;
194}
195
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000196static int dac33_read(struct snd_soc_component *component, unsigned int reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300197 u8 *value)
198{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000199 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300200 int val, ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300201
202 *value = reg & 0xff;
203
204 /* If powered off, return the cached value */
205 if (dac33->chip_power) {
Kuninori Morimotoce9544d2017-11-09 00:19:48 +0000206 val = i2c_smbus_read_byte_data(dac33->i2c, value[0]);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300207 if (val < 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000208 dev_err(component->dev, "Read failed (%d)\n", val);
209 value[0] = dac33_read_reg_cache(component, reg);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300210 ret = val;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300211 } else {
212 value[0] = val;
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000213 dac33_write_reg_cache(component, reg, val);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300214 }
215 } else {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000216 value[0] = dac33_read_reg_cache(component, reg);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300217 }
218
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300219 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300220}
221
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000222static int dac33_write(struct snd_soc_component *component, unsigned int reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300223 unsigned int value)
224{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000225 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300226 u8 data[2];
227 int ret = 0;
228
229 /*
230 * data is
231 * D15..D8 dac33 register offset
232 * D7...D0 register data
233 */
234 data[0] = reg & 0xff;
235 data[1] = value & 0xff;
236
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000237 dac33_write_reg_cache(component, data[0], data[1]);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300238 if (dac33->chip_power) {
Kuninori Morimotoce9544d2017-11-09 00:19:48 +0000239 ret = i2c_master_send(dac33->i2c, data, 2);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300240 if (ret != 2)
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000241 dev_err(component->dev, "Write failed (%d)\n", ret);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300242 else
243 ret = 0;
244 }
245
246 return ret;
247}
248
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000249static int dac33_write_locked(struct snd_soc_component *component, unsigned int reg,
Kuninori Morimoto3d3dd0d2018-01-16 01:59:01 +0000250 unsigned int value)
251{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000252 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Kuninori Morimoto3d3dd0d2018-01-16 01:59:01 +0000253 int ret;
254
255 mutex_lock(&dac33->mutex);
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000256 ret = dac33_write(component, reg, value);
Kuninori Morimoto3d3dd0d2018-01-16 01:59:01 +0000257 mutex_unlock(&dac33->mutex);
258
259 return ret;
260}
261
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300262#define DAC33_I2C_ADDR_AUTOINC 0x80
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000263static int dac33_write16(struct snd_soc_component *component, unsigned int reg,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300264 unsigned int value)
265{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000266 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300267 u8 data[3];
268 int ret = 0;
269
270 /*
271 * data is
272 * D23..D16 dac33 register offset
273 * D15..D8 register data MSB
274 * D7...D0 register data LSB
275 */
276 data[0] = reg & 0xff;
277 data[1] = (value >> 8) & 0xff;
278 data[2] = value & 0xff;
279
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000280 dac33_write_reg_cache(component, data[0], data[1]);
281 dac33_write_reg_cache(component, data[0] + 1, data[2]);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300282
283 if (dac33->chip_power) {
284 /* We need to set autoincrement mode for 16 bit writes */
285 data[0] |= DAC33_I2C_ADDR_AUTOINC;
Kuninori Morimotoce9544d2017-11-09 00:19:48 +0000286 ret = i2c_master_send(dac33->i2c, data, 3);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300287 if (ret != 3)
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000288 dev_err(component->dev, "Write failed (%d)\n", ret);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300289 else
290 ret = 0;
291 }
292
293 return ret;
294}
295
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000296static void dac33_init_chip(struct snd_soc_component *component)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300297{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000298 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300299
Peter Ujfalusief909d62010-04-30 14:59:33 +0300300 if (unlikely(!dac33->chip_power))
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300301 return;
302
Peter Ujfalusief909d62010-04-30 14:59:33 +0300303 /* A : DAC sample rate Fsref/1.5 */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000304 dac33_write(component, DAC33_DAC_CTRL_A, DAC33_DACRATE(0));
Peter Ujfalusief909d62010-04-30 14:59:33 +0300305 /* B : DAC src=normal, not muted */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000306 dac33_write(component, DAC33_DAC_CTRL_B, DAC33_DACSRCR_RIGHT |
Peter Ujfalusief909d62010-04-30 14:59:33 +0300307 DAC33_DACSRCL_LEFT);
308 /* C : (defaults) */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000309 dac33_write(component, DAC33_DAC_CTRL_C, 0x00);
Peter Ujfalusief909d62010-04-30 14:59:33 +0300310
Peter Ujfalusief909d62010-04-30 14:59:33 +0300311 /* 73 : volume soft stepping control,
312 clock source = internal osc (?) */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000313 dac33_write(component, DAC33_ANA_VOL_SOFT_STEP_CTRL, DAC33_VOLCLKEN);
Peter Ujfalusief909d62010-04-30 14:59:33 +0300314
Peter Ujfalusief909d62010-04-30 14:59:33 +0300315 /* Restore only selected registers (gains mostly) */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000316 dac33_write(component, DAC33_LDAC_DIG_VOL_CTRL,
317 dac33_read_reg_cache(component, DAC33_LDAC_DIG_VOL_CTRL));
318 dac33_write(component, DAC33_RDAC_DIG_VOL_CTRL,
319 dac33_read_reg_cache(component, DAC33_RDAC_DIG_VOL_CTRL));
Peter Ujfalusief909d62010-04-30 14:59:33 +0300320
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000321 dac33_write(component, DAC33_LINEL_TO_LLO_VOL,
322 dac33_read_reg_cache(component, DAC33_LINEL_TO_LLO_VOL));
323 dac33_write(component, DAC33_LINER_TO_RLO_VOL,
324 dac33_read_reg_cache(component, DAC33_LINER_TO_RLO_VOL));
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200325
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000326 dac33_write(component, DAC33_OUT_AMP_CTRL,
327 dac33_read_reg_cache(component, DAC33_OUT_AMP_CTRL));
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200328
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000329 dac33_write(component, DAC33_LDAC_PWR_CTRL,
330 dac33_read_reg_cache(component, DAC33_LDAC_PWR_CTRL));
331 dac33_write(component, DAC33_RDAC_PWR_CTRL,
332 dac33_read_reg_cache(component, DAC33_RDAC_PWR_CTRL));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300333}
334
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000335static inline int dac33_read_id(struct snd_soc_component *component)
Peter Ujfalusi239fe552010-04-30 14:59:34 +0300336{
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300337 int i, ret = 0;
Peter Ujfalusi239fe552010-04-30 14:59:34 +0300338 u8 reg;
339
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300340 for (i = 0; i < 3; i++) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000341 ret = dac33_read(component, DAC33_DEVICE_ID_MSB + i, &reg);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +0300342 if (ret < 0)
343 break;
344 }
345
346 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300347}
348
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000349static inline void dac33_soft_power(struct snd_soc_component *component, int power)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300350{
351 u8 reg;
352
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000353 reg = dac33_read_reg_cache(component, DAC33_PWR_CTRL);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300354 if (power)
355 reg |= DAC33_PDNALLB;
356 else
Peter Ujfalusic3746a02010-03-11 16:26:21 +0200357 reg &= ~(DAC33_PDNALLB | DAC33_OSCPDNB |
358 DAC33_DACRPDNB | DAC33_DACLPDNB);
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000359 dac33_write(component, DAC33_PWR_CTRL, reg);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300360}
361
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000362static inline void dac33_disable_digital(struct snd_soc_component *component)
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200363{
364 u8 reg;
365
366 /* Stop the DAI clock */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000367 reg = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B);
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200368 reg &= ~DAC33_BCLKON;
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000369 dac33_write(component, DAC33_SER_AUDIOIF_CTRL_B, reg);
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200370
371 /* Power down the Oscillator, and DACs */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000372 reg = dac33_read_reg_cache(component, DAC33_PWR_CTRL);
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200373 reg &= ~(DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB);
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000374 dac33_write(component, DAC33_PWR_CTRL, reg);
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200375}
376
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000377static int dac33_hard_power(struct snd_soc_component *component, int power)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300378{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000379 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300380 int ret = 0;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300381
382 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300383
384 /* Safety check */
385 if (unlikely(power == dac33->chip_power)) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000386 dev_dbg(component->dev, "Trying to set the same power state: %s\n",
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300387 power ? "ON" : "OFF");
388 goto exit;
389 }
390
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300391 if (power) {
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200392 ret = regulator_bulk_enable(ARRAY_SIZE(dac33->supplies),
393 dac33->supplies);
394 if (ret != 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000395 dev_err(component->dev,
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200396 "Failed to enable supplies: %d\n", ret);
397 goto exit;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300398 }
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200399
400 if (dac33->power_gpio >= 0)
401 gpio_set_value(dac33->power_gpio, 1);
402
403 dac33->chip_power = 1;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300404 } else {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000405 dac33_soft_power(component, 0);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200406 if (dac33->power_gpio >= 0)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300407 gpio_set_value(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300408
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200409 ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies),
410 dac33->supplies);
411 if (ret != 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000412 dev_err(component->dev,
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200413 "Failed to disable supplies: %d\n", ret);
414 goto exit;
415 }
416
417 dac33->chip_power = 0;
418 }
419
420exit:
421 mutex_unlock(&dac33->mutex);
422 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300423}
424
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200425static int dac33_playback_event(struct snd_soc_dapm_widget *w,
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300426 struct snd_kcontrol *kcontrol, int event)
427{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000428 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
429 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300430
431 switch (event) {
432 case SND_SOC_DAPM_PRE_PMU:
433 if (likely(dac33->substream)) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000434 dac33_calculate_times(dac33->substream, component);
435 dac33_prepare_chip(dac33->substream, component);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300436 }
437 break;
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200438 case SND_SOC_DAPM_POST_PMD:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000439 dac33_disable_digital(component);
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200440 break;
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300441 }
442 return 0;
443}
444
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200445static int dac33_get_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300446 struct snd_ctl_elem_value *ucontrol)
447{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000448 struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
449 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300450
Takashi Iwai8733f992016-02-29 18:08:03 +0100451 ucontrol->value.enumerated.item[0] = dac33->fifo_mode;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300452
453 return 0;
454}
455
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200456static int dac33_set_fifo_mode(struct snd_kcontrol *kcontrol,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300457 struct snd_ctl_elem_value *ucontrol)
458{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000459 struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
460 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300461 int ret = 0;
462
Takashi Iwai8733f992016-02-29 18:08:03 +0100463 if (dac33->fifo_mode == ucontrol->value.enumerated.item[0])
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300464 return 0;
465 /* Do not allow changes while stream is running*/
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000466 if (snd_soc_component_is_active(component))
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300467 return -EPERM;
468
Takashi Iwai8733f992016-02-29 18:08:03 +0100469 if (ucontrol->value.enumerated.item[0] >= DAC33_FIFO_LAST_MODE)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300470 ret = -EINVAL;
471 else
Takashi Iwai8733f992016-02-29 18:08:03 +0100472 dac33->fifo_mode = ucontrol->value.enumerated.item[0];
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300473
474 return ret;
475}
476
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200477/* Codec operation modes */
478static const char *dac33_fifo_mode_texts[] = {
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200479 "Bypass", "Mode 1", "Mode 7"
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200480};
481
Takashi Iwaid77c2902014-02-18 11:07:32 +0100482static SOC_ENUM_SINGLE_EXT_DECL(dac33_fifo_mode_enum, dac33_fifo_mode_texts);
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200483
Peter Ujfalusicf4bb6982010-10-13 11:56:28 +0300484/* L/R Line Output Gain */
485static const char *lr_lineout_gain_texts[] = {
486 "Line -12dB DAC 0dB", "Line -6dB DAC 6dB",
487 "Line 0dB DAC 12dB", "Line 6dB DAC 18dB",
488};
489
Takashi Iwaid77c2902014-02-18 11:07:32 +0100490static SOC_ENUM_SINGLE_DECL(l_lineout_gain_enum,
491 DAC33_LDAC_PWR_CTRL, 0,
492 lr_lineout_gain_texts);
Peter Ujfalusicf4bb6982010-10-13 11:56:28 +0300493
Takashi Iwaid77c2902014-02-18 11:07:32 +0100494static SOC_ENUM_SINGLE_DECL(r_lineout_gain_enum,
495 DAC33_RDAC_PWR_CTRL, 0,
496 lr_lineout_gain_texts);
Peter Ujfalusicf4bb6982010-10-13 11:56:28 +0300497
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300498/*
499 * DACL/R digital volume control:
500 * from 0 dB to -63.5 in 0.5 dB steps
501 * Need to be inverted later on:
502 * 0x00 == 0 dB
503 * 0x7f == -63.5 dB
504 */
505static DECLARE_TLV_DB_SCALE(dac_digivol_tlv, -6350, 50, 0);
506
507static const struct snd_kcontrol_new dac33_snd_controls[] = {
508 SOC_DOUBLE_R_TLV("DAC Digital Playback Volume",
509 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL,
510 0, 0x7f, 1, dac_digivol_tlv),
511 SOC_DOUBLE_R("DAC Digital Playback Switch",
512 DAC33_LDAC_DIG_VOL_CTRL, DAC33_RDAC_DIG_VOL_CTRL, 7, 1, 1),
513 SOC_DOUBLE_R("Line to Line Out Volume",
514 DAC33_LINEL_TO_LLO_VOL, DAC33_LINER_TO_RLO_VOL, 0, 127, 1),
Peter Ujfalusicf4bb6982010-10-13 11:56:28 +0300515 SOC_ENUM("Left Line Output Gain", l_lineout_gain_enum),
516 SOC_ENUM("Right Line Output Gain", r_lineout_gain_enum),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300517};
518
Peter Ujfalusia577b312010-07-28 15:26:55 +0300519static const struct snd_kcontrol_new dac33_mode_snd_controls[] = {
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200520 SOC_ENUM_EXT("FIFO Mode", dac33_fifo_mode_enum,
521 dac33_get_fifo_mode, dac33_set_fifo_mode),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300522};
523
524/* Analog bypass */
525static const struct snd_kcontrol_new dac33_dapm_abypassl_control =
526 SOC_DAPM_SINGLE("Switch", DAC33_LINEL_TO_LLO_VOL, 7, 1, 1);
527
528static const struct snd_kcontrol_new dac33_dapm_abypassr_control =
529 SOC_DAPM_SINGLE("Switch", DAC33_LINER_TO_RLO_VOL, 7, 1, 1);
530
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200531/* LOP L/R invert selection */
532static const char *dac33_lr_lom_texts[] = {"DAC", "LOP"};
533
Takashi Iwaid77c2902014-02-18 11:07:32 +0100534static SOC_ENUM_SINGLE_DECL(dac33_left_lom_enum,
535 DAC33_OUT_AMP_CTRL, 3,
536 dac33_lr_lom_texts);
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200537
538static const struct snd_kcontrol_new dac33_dapm_left_lom_control =
539SOC_DAPM_ENUM("Route", dac33_left_lom_enum);
540
Takashi Iwaid77c2902014-02-18 11:07:32 +0100541static SOC_ENUM_SINGLE_DECL(dac33_right_lom_enum,
542 DAC33_OUT_AMP_CTRL, 2,
543 dac33_lr_lom_texts);
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200544
545static const struct snd_kcontrol_new dac33_dapm_right_lom_control =
546SOC_DAPM_ENUM("Route", dac33_right_lom_enum);
547
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300548static const struct snd_soc_dapm_widget dac33_dapm_widgets[] = {
549 SND_SOC_DAPM_OUTPUT("LEFT_LO"),
550 SND_SOC_DAPM_OUTPUT("RIGHT_LO"),
551
552 SND_SOC_DAPM_INPUT("LINEL"),
553 SND_SOC_DAPM_INPUT("LINER"),
554
Peter Ujfalusi76eac392010-12-08 16:04:33 +0200555 SND_SOC_DAPM_DAC("DACL", "Left Playback", SND_SOC_NOPM, 0, 0),
556 SND_SOC_DAPM_DAC("DACR", "Right Playback", SND_SOC_NOPM, 0, 0),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300557
558 /* Analog bypass */
559 SND_SOC_DAPM_SWITCH("Analog Left Bypass", SND_SOC_NOPM, 0, 0,
560 &dac33_dapm_abypassl_control),
561 SND_SOC_DAPM_SWITCH("Analog Right Bypass", SND_SOC_NOPM, 0, 0,
562 &dac33_dapm_abypassr_control),
563
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200564 SND_SOC_DAPM_MUX("Left LOM Inverted From", SND_SOC_NOPM, 0, 0,
565 &dac33_dapm_left_lom_control),
566 SND_SOC_DAPM_MUX("Right LOM Inverted From", SND_SOC_NOPM, 0, 0,
567 &dac33_dapm_right_lom_control),
568 /*
569 * For DAPM path, when only the anlog bypass path is enabled, and the
570 * LOP inverted from the corresponding DAC side.
571 * This is needed, so we can attach the DAC power supply in this case.
572 */
573 SND_SOC_DAPM_PGA("Left Bypass PGA", SND_SOC_NOPM, 0, 0, NULL, 0),
574 SND_SOC_DAPM_PGA("Right Bypass PGA", SND_SOC_NOPM, 0, 0, NULL, 0),
575
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200576 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Left Amplifier",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300577 DAC33_OUT_AMP_PWR_CTRL, 6, 3, 3, 0),
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200578 SND_SOC_DAPM_REG(snd_soc_dapm_mixer, "Output Right Amplifier",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300579 DAC33_OUT_AMP_PWR_CTRL, 4, 3, 3, 0),
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300580
Peter Ujfalusi76eac392010-12-08 16:04:33 +0200581 SND_SOC_DAPM_SUPPLY("Left DAC Power",
582 DAC33_LDAC_PWR_CTRL, 2, 0, NULL, 0),
583 SND_SOC_DAPM_SUPPLY("Right DAC Power",
584 DAC33_RDAC_PWR_CTRL, 2, 0, NULL, 0),
585
Peter Ujfalusi4b8ffdb2011-03-24 09:11:49 +0200586 SND_SOC_DAPM_SUPPLY("Codec Power",
587 DAC33_PWR_CTRL, 4, 0, NULL, 0),
588
Peter Ujfalusia6cea962010-12-10 13:26:31 +0200589 SND_SOC_DAPM_PRE("Pre Playback", dac33_playback_event),
590 SND_SOC_DAPM_POST("Post Playback", dac33_playback_event),
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300591};
592
593static const struct snd_soc_dapm_route audio_map[] = {
594 /* Analog bypass */
595 {"Analog Left Bypass", "Switch", "LINEL"},
596 {"Analog Right Bypass", "Switch", "LINER"},
597
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200598 {"Output Left Amplifier", NULL, "DACL"},
599 {"Output Right Amplifier", NULL, "DACR"},
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300600
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200601 {"Left Bypass PGA", NULL, "Analog Left Bypass"},
602 {"Right Bypass PGA", NULL, "Analog Right Bypass"},
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300603
Peter Ujfalusi399b82e2011-01-10 15:39:49 +0200604 {"Left LOM Inverted From", "DAC", "Left Bypass PGA"},
605 {"Right LOM Inverted From", "DAC", "Right Bypass PGA"},
606 {"Left LOM Inverted From", "LOP", "Analog Left Bypass"},
607 {"Right LOM Inverted From", "LOP", "Analog Right Bypass"},
608
609 {"Output Left Amplifier", NULL, "Left LOM Inverted From"},
610 {"Output Right Amplifier", NULL, "Right LOM Inverted From"},
611
612 {"DACL", NULL, "Left DAC Power"},
613 {"DACR", NULL, "Right DAC Power"},
614
615 {"Left Bypass PGA", NULL, "Left DAC Power"},
616 {"Right Bypass PGA", NULL, "Right DAC Power"},
Peter Ujfalusi76eac392010-12-08 16:04:33 +0200617
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300618 /* output */
Peter Ujfalusi9e871862010-12-08 16:04:32 +0200619 {"LEFT_LO", NULL, "Output Left Amplifier"},
620 {"RIGHT_LO", NULL, "Output Right Amplifier"},
Peter Ujfalusi4b8ffdb2011-03-24 09:11:49 +0200621
622 {"LEFT_LO", NULL, "Codec Power"},
623 {"RIGHT_LO", NULL, "Codec Power"},
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300624};
625
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000626static int dac33_set_bias_level(struct snd_soc_component *component,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300627 enum snd_soc_bias_level level)
628{
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200629 int ret;
630
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300631 switch (level) {
632 case SND_SOC_BIAS_ON:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300633 break;
634 case SND_SOC_BIAS_PREPARE:
635 break;
636 case SND_SOC_BIAS_STANDBY:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000637 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF) {
638 /* Coming from OFF, switch on the component */
639 ret = dac33_hard_power(component, 1);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200640 if (ret != 0)
641 return ret;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200642
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000643 dac33_init_chip(component);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300644 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300645 break;
646 case SND_SOC_BIAS_OFF:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000647 /* Do not power off, when the component is already off */
648 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF)
Peter Ujfalusi2d4cdd62010-05-17 14:21:46 +0300649 return 0;
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000650 ret = dac33_hard_power(component, 0);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +0200651 if (ret != 0)
652 return ret;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300653 break;
654 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300655
656 return 0;
657}
658
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200659static inline void dac33_prefill_handler(struct tlv320dac33_priv *dac33)
660{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000661 struct snd_soc_component *component = dac33->component;
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300662 unsigned int delay;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200663 unsigned long flags;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200664
665 switch (dac33->fifo_mode) {
666 case DAC33_FIFO_MODE1:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000667 dac33_write16(component, DAC33_NSAMPLE_MSB,
Peter Ujfalusif430a272010-07-28 15:26:54 +0300668 DAC33_THRREG(dac33->nsample));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300669
670 /* Take the timestamps */
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200671 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300672 dac33->t_stamp2 = ktime_to_us(ktime_get());
673 dac33->t_stamp1 = dac33->t_stamp2;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200674 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300675
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000676 dac33_write16(component, DAC33_PREFILL_MSB,
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200677 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusif4d59322010-04-23 10:09:57 +0300678 /* Enable Alarm Threshold IRQ with a delay */
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300679 delay = SAMPLES_TO_US(dac33->burst_rate,
680 dac33->alarm_threshold) + 1000;
681 usleep_range(delay, delay + 500);
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000682 dac33_write(component, DAC33_FIFO_IRQ_MASK, DAC33_MAT);
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200683 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200684 case DAC33_FIFO_MODE7:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300685 /* Take the timestamp */
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200686 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300687 dac33->t_stamp1 = ktime_to_us(ktime_get());
688 /* Move back the timestamp with drain time */
689 dac33->t_stamp1 -= dac33->mode7_us_to_lthr;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200690 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300691
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000692 dac33_write16(component, DAC33_PREFILL_MSB,
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200693 DAC33_THRREG(DAC33_MODE7_MARGIN));
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300694
695 /* Enable Upper Threshold IRQ */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000696 dac33_write(component, DAC33_FIFO_IRQ_MASK, DAC33_MUT);
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200697 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200698 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000699 dev_warn(component->dev, "Unhandled FIFO mode: %d\n",
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200700 dac33->fifo_mode);
701 break;
702 }
703}
704
705static inline void dac33_playback_handler(struct tlv320dac33_priv *dac33)
706{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000707 struct snd_soc_component *component = dac33->component;
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200708 unsigned long flags;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200709
710 switch (dac33->fifo_mode) {
711 case DAC33_FIFO_MODE1:
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300712 /* Take the timestamp */
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200713 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300714 dac33->t_stamp2 = ktime_to_us(ktime_get());
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200715 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300716
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000717 dac33_write16(component, DAC33_NSAMPLE_MSB,
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200718 DAC33_THRREG(dac33->nsample));
719 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200720 case DAC33_FIFO_MODE7:
721 /* At the moment we are not using interrupts in mode7 */
722 break;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200723 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000724 dev_warn(component->dev, "Unhandled FIFO mode: %d\n",
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200725 dac33->fifo_mode);
726 break;
727 }
728}
729
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300730static void dac33_work(struct work_struct *work)
731{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000732 struct snd_soc_component *component;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300733 struct tlv320dac33_priv *dac33;
734 u8 reg;
735
736 dac33 = container_of(work, struct tlv320dac33_priv, work);
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000737 component = dac33->component;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300738
739 mutex_lock(&dac33->mutex);
740 switch (dac33->state) {
741 case DAC33_PREFILL:
742 dac33->state = DAC33_PLAYBACK;
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200743 dac33_prefill_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300744 break;
745 case DAC33_PLAYBACK:
Peter Ujfalusid4f102d2009-12-31 10:30:20 +0200746 dac33_playback_handler(dac33);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300747 break;
748 case DAC33_IDLE:
749 break;
750 case DAC33_FLUSH:
751 dac33->state = DAC33_IDLE;
752 /* Mask all interrupts from dac33 */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000753 dac33_write(component, DAC33_FIFO_IRQ_MASK, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300754
755 /* flush fifo */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000756 reg = dac33_read_reg_cache(component, DAC33_FIFO_CTRL_A);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300757 reg |= DAC33_FIFOFLUSH;
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000758 dac33_write(component, DAC33_FIFO_CTRL_A, reg);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300759 break;
760 }
761 mutex_unlock(&dac33->mutex);
762}
763
764static irqreturn_t dac33_interrupt_handler(int irq, void *dev)
765{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000766 struct snd_soc_component *component = dev;
767 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200768 unsigned long flags;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300769
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200770 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300771 dac33->t_stamp1 = ktime_to_us(ktime_get());
Peter Ujfalusia3b55792011-03-18 15:15:11 +0200772 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300773
774 /* Do not schedule the workqueue in Mode7 */
775 if (dac33->fifo_mode != DAC33_FIFO_MODE7)
Bhaktipriya Shridhar88910982016-09-04 21:27:32 +0530776 schedule_work(&dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300777
778 return IRQ_HANDLED;
779}
780
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000781static void dac33_oscwait(struct snd_soc_component *component)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300782{
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300783 int timeout = 60;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300784 u8 reg;
785
786 do {
Peter Ujfalusi84eae182010-10-22 15:11:20 +0300787 usleep_range(1000, 2000);
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000788 dac33_read(component, DAC33_INT_OSC_STATUS, &reg);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300789 } while (((reg & 0x03) != DAC33_OSCSTATUS_NORMAL) && timeout--);
790 if ((reg & 0x03) != DAC33_OSCSTATUS_NORMAL)
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000791 dev_err(component->dev,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300792 "internal oscillator calibration failed\n");
793}
794
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300795static int dac33_startup(struct snd_pcm_substream *substream,
796 struct snd_soc_dai *dai)
797{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000798 struct snd_soc_component *component = dai->component;
799 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300800
801 /* Stream started, save the substream pointer */
802 dac33->substream = substream;
803
804 return 0;
805}
806
807static void dac33_shutdown(struct snd_pcm_substream *substream,
808 struct snd_soc_dai *dai)
809{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000810 struct snd_soc_component *component = dai->component;
811 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +0300812
813 dac33->substream = NULL;
814}
815
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200816#define CALC_BURST_RATE(bclkdiv, bclk_per_sample) \
817 (BURST_BASEFREQ_HZ / bclkdiv / bclk_per_sample)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300818static int dac33_hw_params(struct snd_pcm_substream *substream,
819 struct snd_pcm_hw_params *params,
820 struct snd_soc_dai *dai)
821{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000822 struct snd_soc_component *component = dai->component;
823 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300824
825 /* Check parameters for validity */
826 switch (params_rate(params)) {
827 case 44100:
828 case 48000:
829 break;
830 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000831 dev_err(component->dev, "unsupported rate %d\n",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300832 params_rate(params));
833 return -EINVAL;
834 }
835
Mark Brownc60f23c2014-07-31 12:48:44 +0100836 switch (params_width(params)) {
837 case 16:
Peter Ujfalusi549675e2010-12-22 10:45:17 +0200838 dac33->fifo_size = DAC33_FIFO_SIZE_16BIT;
839 dac33->burst_rate = CALC_BURST_RATE(dac33->burst_bclkdiv, 32);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300840 break;
Mark Brownc60f23c2014-07-31 12:48:44 +0100841 case 32:
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +0200842 dac33->fifo_size = DAC33_FIFO_SIZE_24BIT;
843 dac33->burst_rate = CALC_BURST_RATE(dac33->burst_bclkdiv, 64);
844 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300845 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000846 dev_err(component->dev, "unsupported width %d\n",
Mark Brownc60f23c2014-07-31 12:48:44 +0100847 params_width(params));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300848 return -EINVAL;
849 }
850
851 return 0;
852}
853
854#define CALC_OSCSET(rate, refclk) ( \
Peter Ujfalusi7833ae02010-02-16 13:23:16 +0200855 ((((rate * 10000) / refclk) * 4096) + 7000) / 10000)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300856#define CALC_RATIOSET(rate, refclk) ( \
857 ((((refclk * 100000) / rate) * 16384) + 50000) / 100000)
858
859/*
860 * tlv320dac33 is strict on the sequence of the register writes, if the register
861 * writes happens in different order, than dac33 might end up in unknown state.
862 * Use the known, working sequence of register writes to initialize the dac33.
863 */
Mark Browne6968a12012-04-04 15:58:16 +0100864static int dac33_prepare_chip(struct snd_pcm_substream *substream,
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000865 struct snd_soc_component *component)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300866{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000867 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300868 unsigned int oscset, ratioset, pwr_ctrl, reg_tmp;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200869 u8 aictrl_a, aictrl_b, fifoctrl_a;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300870
871 switch (substream->runtime->rate) {
872 case 44100:
873 case 48000:
874 oscset = CALC_OSCSET(substream->runtime->rate, dac33->refclk);
875 ratioset = CALC_RATIOSET(substream->runtime->rate,
876 dac33->refclk);
877 break;
878 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000879 dev_err(component->dev, "unsupported rate %d\n",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300880 substream->runtime->rate);
881 return -EINVAL;
882 }
883
884
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000885 aictrl_a = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_A);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300886 aictrl_a &= ~(DAC33_NCYCL_MASK | DAC33_WLEN_MASK);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200887 /* Read FIFO control A, and clear FIFO flush bit */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000888 fifoctrl_a = dac33_read_reg_cache(component, DAC33_FIFO_CTRL_A);
Peter Ujfalusie5e878c2010-02-16 13:23:15 +0200889 fifoctrl_a &= ~DAC33_FIFOFLUSH;
890
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300891 fifoctrl_a &= ~DAC33_WIDTH;
892 switch (substream->runtime->format) {
893 case SNDRV_PCM_FORMAT_S16_LE:
894 aictrl_a |= (DAC33_NCYCL_16 | DAC33_WLEN_16);
895 fifoctrl_a |= DAC33_WIDTH;
896 break;
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +0200897 case SNDRV_PCM_FORMAT_S32_LE:
898 aictrl_a |= (DAC33_NCYCL_32 | DAC33_WLEN_24);
899 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300900 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000901 dev_err(component->dev, "unsupported format %d\n",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300902 substream->runtime->format);
903 return -EINVAL;
904 }
905
906 mutex_lock(&dac33->mutex);
Peter Ujfalusiad05c032010-04-30 14:59:36 +0300907
908 if (!dac33->chip_power) {
909 /*
910 * Chip is not powered yet.
911 * Do the init in the dac33_set_bias_level later.
912 */
913 mutex_unlock(&dac33->mutex);
914 return 0;
915 }
916
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000917 dac33_soft_power(component, 0);
918 dac33_soft_power(component, 1);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300919
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000920 reg_tmp = dac33_read_reg_cache(component, DAC33_INT_OSC_CTRL);
921 dac33_write(component, DAC33_INT_OSC_CTRL, reg_tmp);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300922
923 /* Write registers 0x08 and 0x09 (MSB, LSB) */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000924 dac33_write16(component, DAC33_INT_OSC_FREQ_RAT_A, oscset);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300925
Peter Ujfalusi82a58a82011-04-12 09:09:17 +0300926 /* OSC calibration time */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000927 dac33_write(component, DAC33_CALIB_TIME, 96);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300928
929 /* adjustment treshold & step */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000930 dac33_write(component, DAC33_INT_OSC_CTRL_B, DAC33_ADJTHRSHLD(2) |
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300931 DAC33_ADJSTEP(1));
932
933 /* div=4 / gain=1 / div */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000934 dac33_write(component, DAC33_INT_OSC_CTRL_C, DAC33_REFDIV(4));
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300935
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000936 pwr_ctrl = dac33_read_reg_cache(component, DAC33_PWR_CTRL);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300937 pwr_ctrl |= DAC33_OSCPDNB | DAC33_DACRPDNB | DAC33_DACLPDNB;
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000938 dac33_write(component, DAC33_PWR_CTRL, pwr_ctrl);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300939
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000940 dac33_oscwait(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300941
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +0200942 if (dac33->fifo_mode) {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200943 /* Generic for all FIFO modes */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300944 /* 50-51 : ASRC Control registers */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000945 dac33_write(component, DAC33_ASRC_CTRL_A, DAC33_SRCLKDIV(1));
946 dac33_write(component, DAC33_ASRC_CTRL_B, 1); /* ??? */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300947
948 /* Write registers 0x34 and 0x35 (MSB, LSB) */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000949 dac33_write16(component, DAC33_SRC_REF_CLK_RATIO_A, ratioset);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300950
951 /* Set interrupts to high active */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000952 dac33_write(component, DAC33_INTP_CTRL_A, DAC33_INTPM_AHIGH);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300953 } else {
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200954 /* FIFO bypass mode */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300955 /* 50-51 : ASRC Control registers */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000956 dac33_write(component, DAC33_ASRC_CTRL_A, DAC33_SRCBYP);
957 dac33_write(component, DAC33_ASRC_CTRL_B, 0); /* ??? */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300958 }
959
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200960 /* Interrupt behaviour configuration */
961 switch (dac33->fifo_mode) {
962 case DAC33_FIFO_MODE1:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000963 dac33_write(component, DAC33_FIFO_IRQ_MODE_B,
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200964 DAC33_ATM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200965 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200966 case DAC33_FIFO_MODE7:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000967 dac33_write(component, DAC33_FIFO_IRQ_MODE_A,
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +0300968 DAC33_UTM(DAC33_FIFO_IRQ_MODE_LEVEL));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200969 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200970 default:
971 /* in FIFO bypass mode, the interrupts are not used */
972 break;
973 }
974
Kuninori Morimotocd21ac82018-01-29 04:14:21 +0000975 aictrl_b = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B);
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200976
977 switch (dac33->fifo_mode) {
978 case DAC33_FIFO_MODE1:
979 /*
980 * For mode1:
981 * Disable the FIFO bypass (Enable the use of FIFO)
982 * Select nSample mode
983 * BCLK is only running when data is needed by DAC33
984 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +0300985 fifoctrl_a &= ~DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200986 fifoctrl_a &= ~DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +0200987 if (dac33->keep_bclk)
988 aictrl_b |= DAC33_BCLKON;
989 else
990 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +0200991 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +0200992 case DAC33_FIFO_MODE7:
993 /*
994 * For mode1:
995 * Disable the FIFO bypass (Enable the use of FIFO)
996 * Select Threshold mode
997 * BCLK is only running when data is needed by DAC33
998 */
999 fifoctrl_a &= ~DAC33_FBYPAS;
1000 fifoctrl_a |= DAC33_FAUTO;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001001 if (dac33->keep_bclk)
1002 aictrl_b |= DAC33_BCLKON;
1003 else
1004 aictrl_b &= ~DAC33_BCLKON;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001005 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001006 default:
1007 /*
1008 * For FIFO bypass mode:
1009 * Enable the FIFO bypass (Disable the FIFO use)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001010 * Set the BCLK as continuous
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001011 */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001012 fifoctrl_a |= DAC33_FBYPAS;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001013 aictrl_b |= DAC33_BCLKON;
1014 break;
1015 }
1016
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001017 dac33_write(component, DAC33_FIFO_CTRL_A, fifoctrl_a);
1018 dac33_write(component, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1019 dac33_write(component, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001020
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001021 /*
1022 * BCLK divide ratio
1023 * 0: 1.5
1024 * 1: 1
1025 * 2: 2
1026 * ...
1027 * 254: 254
1028 * 255: 255
1029 */
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001030 if (dac33->fifo_mode)
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001031 dac33_write(component, DAC33_SER_AUDIOIF_CTRL_C,
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001032 dac33->burst_bclkdiv);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001033 else
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +02001034 if (substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE)
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001035 dac33_write(component, DAC33_SER_AUDIOIF_CTRL_C, 32);
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +02001036 else
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001037 dac33_write(component, DAC33_SER_AUDIOIF_CTRL_C, 16);
Peter Ujfalusi6cd6ced2010-01-20 09:39:35 +02001038
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001039 switch (dac33->fifo_mode) {
1040 case DAC33_FIFO_MODE1:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001041 dac33_write16(component, DAC33_ATHR_MSB,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001042 DAC33_THRREG(dac33->alarm_threshold));
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001043 break;
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001044 case DAC33_FIFO_MODE7:
1045 /*
1046 * Configure the threshold levels, and leave 10 sample space
1047 * at the bottom, and also at the top of the FIFO
1048 */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001049 dac33_write16(component, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
1050 dac33_write16(component, DAC33_LTHR_MSB,
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001051 DAC33_THRREG(DAC33_MODE7_MARGIN));
Peter Ujfalusi28e05d92009-12-31 10:30:22 +02001052 break;
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001053 default:
Peter Ujfalusiaec242d2009-12-31 10:30:21 +02001054 break;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001055 }
1056
1057 mutex_unlock(&dac33->mutex);
1058
1059 return 0;
1060}
1061
Mark Browne6968a12012-04-04 15:58:16 +01001062static void dac33_calculate_times(struct snd_pcm_substream *substream,
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001063 struct snd_soc_component *component)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001064{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001065 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusif430a272010-07-28 15:26:54 +03001066 unsigned int period_size = substream->runtime->period_size;
1067 unsigned int rate = substream->runtime->rate;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001068 unsigned int nsample_limit;
1069
Peter Ujfalusi55abb592010-04-23 10:09:58 +03001070 /* In bypass mode we don't need to calculate */
1071 if (!dac33->fifo_mode)
1072 return;
1073
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001074 switch (dac33->fifo_mode) {
1075 case DAC33_FIFO_MODE1:
Peter Ujfalusif430a272010-07-28 15:26:54 +03001076 /* Number of samples under i2c latency */
1077 dac33->alarm_threshold = US_TO_SAMPLES(rate,
1078 dac33->mode1_latency);
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001079 nsample_limit = dac33->fifo_size - dac33->alarm_threshold;
Peter Ujfalusi1bc13b22010-10-29 09:49:37 +03001080
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001081 if (period_size <= dac33->alarm_threshold)
Peter Ujfalusia577b312010-07-28 15:26:55 +03001082 /*
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001083 * Configure nSamaple to number of periods,
1084 * which covers the latency requironment.
Peter Ujfalusia577b312010-07-28 15:26:55 +03001085 */
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001086 dac33->nsample = period_size *
1087 ((dac33->alarm_threshold / period_size) +
1088 (dac33->alarm_threshold % period_size ?
1089 1 : 0));
1090 else if (period_size > nsample_limit)
1091 dac33->nsample = nsample_limit;
1092 else
1093 dac33->nsample = period_size;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001094
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001095 dac33->mode1_us_burst = SAMPLES_TO_US(dac33->burst_rate,
1096 dac33->nsample);
1097 dac33->t_stamp1 = 0;
1098 dac33->t_stamp2 = 0;
1099 break;
1100 case DAC33_FIFO_MODE7:
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001101 dac33->uthr = UTHR_FROM_PERIOD_SIZE(period_size, rate,
1102 dac33->burst_rate) + 9;
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001103 if (dac33->uthr > (dac33->fifo_size - DAC33_MODE7_MARGIN))
1104 dac33->uthr = dac33->fifo_size - DAC33_MODE7_MARGIN;
1105 if (dac33->uthr < (DAC33_MODE7_MARGIN + 10))
1106 dac33->uthr = (DAC33_MODE7_MARGIN + 10);
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001107
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001108 dac33->mode7_us_to_lthr =
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001109 SAMPLES_TO_US(substream->runtime->rate,
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001110 dac33->uthr - DAC33_MODE7_MARGIN + 1);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001111 dac33->t_stamp1 = 0;
1112 break;
1113 default:
1114 break;
1115 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001116
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001117}
1118
1119static int dac33_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
1120 struct snd_soc_dai *dai)
1121{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001122 struct snd_soc_component *component = dai->component;
1123 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001124 int ret = 0;
1125
1126 switch (cmd) {
1127 case SNDRV_PCM_TRIGGER_START:
1128 case SNDRV_PCM_TRIGGER_RESUME:
1129 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001130 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001131 dac33->state = DAC33_PREFILL;
Bhaktipriya Shridhar88910982016-09-04 21:27:32 +05301132 schedule_work(&dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001133 }
1134 break;
1135 case SNDRV_PCM_TRIGGER_STOP:
1136 case SNDRV_PCM_TRIGGER_SUSPEND:
1137 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001138 if (dac33->fifo_mode) {
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001139 dac33->state = DAC33_FLUSH;
Bhaktipriya Shridhar88910982016-09-04 21:27:32 +05301140 schedule_work(&dac33->work);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001141 }
1142 break;
1143 default:
1144 ret = -EINVAL;
1145 }
1146
1147 return ret;
1148}
1149
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001150static snd_pcm_sframes_t dac33_dai_delay(
1151 struct snd_pcm_substream *substream,
1152 struct snd_soc_dai *dai)
1153{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001154 struct snd_soc_component *component = dai->component;
1155 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001156 unsigned long long t0, t1, t_now;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001157 unsigned int time_delta, uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001158 int samples_out, samples_in, samples;
1159 snd_pcm_sframes_t delay = 0;
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001160 unsigned long flags;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001161
1162 switch (dac33->fifo_mode) {
1163 case DAC33_FIFO_BYPASS:
1164 break;
1165 case DAC33_FIFO_MODE1:
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001166 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001167 t0 = dac33->t_stamp1;
1168 t1 = dac33->t_stamp2;
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001169 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001170 t_now = ktime_to_us(ktime_get());
1171
1172 /* We have not started to fill the FIFO yet, delay is 0 */
1173 if (!t1)
1174 goto out;
1175
1176 if (t0 > t1) {
1177 /*
1178 * Phase 1:
1179 * After Alarm threshold, and before nSample write
1180 */
1181 time_delta = t_now - t0;
1182 samples_out = time_delta ? US_TO_SAMPLES(
1183 substream->runtime->rate,
1184 time_delta) : 0;
1185
1186 if (likely(dac33->alarm_threshold > samples_out))
1187 delay = dac33->alarm_threshold - samples_out;
1188 else
1189 delay = 0;
1190 } else if ((t_now - t1) <= dac33->mode1_us_burst) {
1191 /*
1192 * Phase 2:
1193 * After nSample write (during burst operation)
1194 */
1195 time_delta = t_now - t0;
1196 samples_out = time_delta ? US_TO_SAMPLES(
1197 substream->runtime->rate,
1198 time_delta) : 0;
1199
1200 time_delta = t_now - t1;
1201 samples_in = time_delta ? US_TO_SAMPLES(
1202 dac33->burst_rate,
1203 time_delta) : 0;
1204
1205 samples = dac33->alarm_threshold;
1206 samples += (samples_in - samples_out);
1207
1208 if (likely(samples > 0))
1209 delay = samples;
1210 else
1211 delay = 0;
1212 } else {
1213 /*
1214 * Phase 3:
1215 * After burst operation, before next alarm threshold
1216 */
1217 time_delta = t_now - t0;
1218 samples_out = time_delta ? US_TO_SAMPLES(
1219 substream->runtime->rate,
1220 time_delta) : 0;
1221
1222 samples_in = dac33->nsample;
1223 samples = dac33->alarm_threshold;
1224 samples += (samples_in - samples_out);
1225
1226 if (likely(samples > 0))
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001227 delay = samples > dac33->fifo_size ?
1228 dac33->fifo_size : samples;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001229 else
1230 delay = 0;
1231 }
1232 break;
1233 case DAC33_FIFO_MODE7:
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001234 spin_lock_irqsave(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001235 t0 = dac33->t_stamp1;
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001236 uthr = dac33->uthr;
Peter Ujfalusia3b55792011-03-18 15:15:11 +02001237 spin_unlock_irqrestore(&dac33->lock, flags);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001238 t_now = ktime_to_us(ktime_get());
1239
1240 /* We have not started to fill the FIFO yet, delay is 0 */
1241 if (!t0)
1242 goto out;
1243
1244 if (t_now <= t0) {
1245 /*
1246 * Either the timestamps are messed or equal. Report
1247 * maximum delay
1248 */
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001249 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001250 goto out;
1251 }
1252
1253 time_delta = t_now - t0;
1254 if (time_delta <= dac33->mode7_us_to_lthr) {
1255 /*
1256 * Phase 1:
1257 * After burst (draining phase)
1258 */
1259 samples_out = US_TO_SAMPLES(
1260 substream->runtime->rate,
1261 time_delta);
1262
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001263 if (likely(uthr > samples_out))
1264 delay = uthr - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001265 else
1266 delay = 0;
1267 } else {
1268 /*
1269 * Phase 2:
1270 * During burst operation
1271 */
1272 time_delta = time_delta - dac33->mode7_us_to_lthr;
1273
1274 samples_out = US_TO_SAMPLES(
1275 substream->runtime->rate,
1276 time_delta);
1277 samples_in = US_TO_SAMPLES(
1278 dac33->burst_rate,
1279 time_delta);
Peter Ujfalusi549675e2010-12-22 10:45:17 +02001280 delay = DAC33_MODE7_MARGIN + samples_in - samples_out;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001281
Peter Ujfalusi9d7db2b2010-06-07 10:50:39 +03001282 if (unlikely(delay > uthr))
1283 delay = uthr;
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001284 }
1285 break;
1286 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001287 dev_warn(component->dev, "Unhandled FIFO mode: %d\n",
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001288 dac33->fifo_mode);
1289 break;
1290 }
1291out:
1292 return delay;
1293}
1294
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001295static int dac33_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1296 int clk_id, unsigned int freq, int dir)
1297{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001298 struct snd_soc_component *component = codec_dai->component;
1299 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001300 u8 ioc_reg, asrcb_reg;
1301
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001302 ioc_reg = dac33_read_reg_cache(component, DAC33_INT_OSC_CTRL);
1303 asrcb_reg = dac33_read_reg_cache(component, DAC33_ASRC_CTRL_B);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001304 switch (clk_id) {
1305 case TLV320DAC33_MCLK:
1306 ioc_reg |= DAC33_REFSEL;
1307 asrcb_reg |= DAC33_SRCREFSEL;
1308 break;
1309 case TLV320DAC33_SLEEPCLK:
1310 ioc_reg &= ~DAC33_REFSEL;
1311 asrcb_reg &= ~DAC33_SRCREFSEL;
1312 break;
1313 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001314 dev_err(component->dev, "Invalid clock ID (%d)\n", clk_id);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001315 break;
1316 }
1317 dac33->refclk = freq;
1318
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001319 dac33_write_reg_cache(component, DAC33_INT_OSC_CTRL, ioc_reg);
1320 dac33_write_reg_cache(component, DAC33_ASRC_CTRL_B, asrcb_reg);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001321
1322 return 0;
1323}
1324
1325static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
1326 unsigned int fmt)
1327{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001328 struct snd_soc_component *component = codec_dai->component;
1329 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001330 u8 aictrl_a, aictrl_b;
1331
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001332 aictrl_a = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_A);
1333 aictrl_b = dac33_read_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001334 /* set master/slave audio interface */
1335 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1336 case SND_SOC_DAIFMT_CBM_CFM:
1337 /* Codec Master */
1338 aictrl_a |= (DAC33_MSBCLK | DAC33_MSWCLK);
1339 break;
1340 case SND_SOC_DAIFMT_CBS_CFS:
1341 /* Codec Slave */
Peter Ujfalusiadcb8bc2009-12-31 10:30:23 +02001342 if (dac33->fifo_mode) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001343 dev_err(component->dev, "FIFO mode requires master mode\n");
Peter Ujfalusiadcb8bc2009-12-31 10:30:23 +02001344 return -EINVAL;
1345 } else
1346 aictrl_a &= ~(DAC33_MSBCLK | DAC33_MSWCLK);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001347 break;
1348 default:
1349 return -EINVAL;
1350 }
1351
1352 aictrl_a &= ~DAC33_AFMT_MASK;
1353 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1354 case SND_SOC_DAIFMT_I2S:
1355 aictrl_a |= DAC33_AFMT_I2S;
1356 break;
1357 case SND_SOC_DAIFMT_DSP_A:
1358 aictrl_a |= DAC33_AFMT_DSP;
1359 aictrl_b &= ~DAC33_DATA_DELAY_MASK;
Peter Ujfalusi44f497b2010-03-19 11:10:19 +02001360 aictrl_b |= DAC33_DATA_DELAY(0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001361 break;
1362 case SND_SOC_DAIFMT_RIGHT_J:
1363 aictrl_a |= DAC33_AFMT_RIGHT_J;
1364 break;
1365 case SND_SOC_DAIFMT_LEFT_J:
1366 aictrl_a |= DAC33_AFMT_LEFT_J;
1367 break;
1368 default:
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001369 dev_err(component->dev, "Unsupported format (%u)\n",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001370 fmt & SND_SOC_DAIFMT_FORMAT_MASK);
1371 return -EINVAL;
1372 }
1373
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001374 dac33_write_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_A, aictrl_a);
1375 dac33_write_reg_cache(component, DAC33_SER_AUDIOIF_CTRL_B, aictrl_b);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001376
1377 return 0;
1378}
1379
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001380static int dac33_soc_probe(struct snd_soc_component *component)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001381{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001382 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001383 int ret = 0;
1384
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001385 dac33->component = component;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001386
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001387 /* Read the tlv320dac33 ID registers */
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001388 ret = dac33_hard_power(component, 1);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001389 if (ret != 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001390 dev_err(component->dev, "Failed to power up component: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001391 goto err_power;
1392 }
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001393 ret = dac33_read_id(component);
1394 dac33_hard_power(component, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001395
Peter Ujfalusi911a0f02010-10-26 11:45:59 +03001396 if (ret < 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001397 dev_err(component->dev, "Failed to read chip ID: %d\n", ret);
Peter Ujfalusi911a0f02010-10-26 11:45:59 +03001398 ret = -ENODEV;
1399 goto err_power;
1400 }
1401
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001402 /* Check if the IRQ number is valid and request it */
1403 if (dac33->irq >= 0) {
1404 ret = request_irq(dac33->irq, dac33_interrupt_handler,
Yong Zhang88e24c32011-09-22 16:59:20 +08001405 IRQF_TRIGGER_RISING,
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001406 component->name, component);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001407 if (ret < 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001408 dev_err(component->dev, "Could not request IRQ%d (%d)\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001409 dac33->irq, ret);
1410 dac33->irq = -1;
1411 }
1412 if (dac33->irq != -1) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001413 INIT_WORK(&dac33->work, dac33_work);
1414 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001415 }
1416
Peter Ujfalusia577b312010-07-28 15:26:55 +03001417 /* Only add the FIFO controls, if we have valid IRQ number */
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001418 if (dac33->irq >= 0)
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001419 snd_soc_add_component_controls(component, dac33_mode_snd_controls,
Peter Ujfalusia577b312010-07-28 15:26:55 +03001420 ARRAY_SIZE(dac33_mode_snd_controls));
Peter Ujfalusi3591f4c2010-12-22 10:45:16 +02001421
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001422err_power:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001423 return ret;
1424}
1425
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001426static void dac33_soc_remove(struct snd_soc_component *component)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001427{
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001428 struct tlv320dac33_priv *dac33 = snd_soc_component_get_drvdata(component);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001429
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001430 if (dac33->irq >= 0) {
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001431 free_irq(dac33->irq, dac33->component);
Bhaktipriya Shridhar88910982016-09-04 21:27:32 +05301432 flush_work(&dac33->work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001433 }
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001434}
1435
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001436static const struct snd_soc_component_driver soc_component_dev_tlv320dac33 = {
1437 .read = dac33_read_reg_cache,
1438 .write = dac33_write_locked,
1439 .set_bias_level = dac33_set_bias_level,
1440 .probe = dac33_soc_probe,
1441 .remove = dac33_soc_remove,
1442 .controls = dac33_snd_controls,
1443 .num_controls = ARRAY_SIZE(dac33_snd_controls),
1444 .dapm_widgets = dac33_dapm_widgets,
1445 .num_dapm_widgets = ARRAY_SIZE(dac33_dapm_widgets),
1446 .dapm_routes = audio_map,
1447 .num_dapm_routes = ARRAY_SIZE(audio_map),
1448 .use_pmdown_time = 1,
1449 .endianness = 1,
1450 .non_legacy_dai_naming = 1,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001451};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001452
1453#define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
1454 SNDRV_PCM_RATE_48000)
Peter Ujfalusi0d99d2b2010-12-22 10:45:18 +02001455#define DAC33_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001456
Lars-Peter Clausen85e76522011-11-23 11:40:40 +01001457static const struct snd_soc_dai_ops dac33_dai_ops = {
Peter Ujfalusi0b61d2b2010-04-30 14:59:35 +03001458 .startup = dac33_startup,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001459 .shutdown = dac33_shutdown,
1460 .hw_params = dac33_hw_params,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001461 .trigger = dac33_pcm_trigger,
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001462 .delay = dac33_dai_delay,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001463 .set_sysclk = dac33_set_dai_sysclk,
1464 .set_fmt = dac33_set_dai_fmt,
1465};
1466
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001467static struct snd_soc_dai_driver dac33_dai = {
1468 .name = "tlv320dac33-hifi",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001469 .playback = {
1470 .stream_name = "Playback",
1471 .channels_min = 2,
1472 .channels_max = 2,
1473 .rates = DAC33_RATES,
Mark Brown3a4cbf82012-01-20 17:52:39 +00001474 .formats = DAC33_FORMATS,
Peter Ujfalusi8d725b22012-01-18 12:18:25 +01001475 .sig_bits = 24,
Mark Brown3a4cbf82012-01-20 17:52:39 +00001476 },
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001477 .ops = &dac33_dai_ops,
1478};
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001479
Bill Pemberton7a79e942012-12-07 09:26:37 -05001480static int dac33_i2c_probe(struct i2c_client *client,
1481 const struct i2c_device_id *id)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001482{
1483 struct tlv320dac33_platform_data *pdata;
1484 struct tlv320dac33_priv *dac33;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001485 int ret, i;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001486
1487 if (client->dev.platform_data == NULL) {
1488 dev_err(&client->dev, "Platform data not set\n");
1489 return -ENODEV;
1490 }
1491 pdata = client->dev.platform_data;
1492
Axel Lina54877d2011-12-29 12:11:00 +08001493 dac33 = devm_kzalloc(&client->dev, sizeof(struct tlv320dac33_priv),
1494 GFP_KERNEL);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001495 if (dac33 == NULL)
1496 return -ENOMEM;
1497
Kuninori Morimotoc4305af2017-11-14 01:04:25 +00001498 dac33->reg_cache = devm_kmemdup(&client->dev,
1499 dac33_reg,
1500 ARRAY_SIZE(dac33_reg) * sizeof(u8),
1501 GFP_KERNEL);
1502 if (!dac33->reg_cache)
1503 return -ENOMEM;
1504
Kuninori Morimotoce9544d2017-11-09 00:19:48 +00001505 dac33->i2c = client;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001506 mutex_init(&dac33->mutex);
Peter Ujfalusif57d2cf2010-04-23 10:10:01 +03001507 spin_lock_init(&dac33->lock);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001508
1509 i2c_set_clientdata(client, dac33);
1510
1511 dac33->power_gpio = pdata->power_gpio;
Peter Ujfalusi6aceabb2010-01-20 09:39:36 +02001512 dac33->burst_bclkdiv = pdata->burst_bclkdiv;
Peter Ujfalusieeb309a2010-03-11 16:26:22 +02001513 dac33->keep_bclk = pdata->keep_bclk;
Peter Ujfalusif430a272010-07-28 15:26:54 +03001514 dac33->mode1_latency = pdata->mode1_latency;
1515 if (!dac33->mode1_latency)
1516 dac33->mode1_latency = 10000; /* 10ms */
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001517 dac33->irq = client->irq;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001518 /* Disable FIFO use by default */
Peter Ujfalusi7427b4b2009-12-31 10:30:19 +02001519 dac33->fifo_mode = DAC33_FIFO_BYPASS;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001520
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001521 /* Check if the reset GPIO number is valid and request it */
1522 if (dac33->power_gpio >= 0) {
1523 ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset");
1524 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001525 dev_err(&client->dev,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001526 "Failed to request reset GPIO (%d)\n",
1527 dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001528 goto err_gpio;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001529 }
1530 gpio_direction_output(dac33->power_gpio, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001531 }
1532
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001533 for (i = 0; i < ARRAY_SIZE(dac33->supplies); i++)
1534 dac33->supplies[i].supply = dac33_supply_names[i];
1535
Fabio Estevame9382e32014-04-24 22:27:03 -03001536 ret = devm_regulator_bulk_get(&client->dev, ARRAY_SIZE(dac33->supplies),
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001537 dac33->supplies);
1538
1539 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001540 dev_err(&client->dev, "Failed to request supplies: %d\n", ret);
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001541 goto err_get;
1542 }
1543
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001544 ret = devm_snd_soc_register_component(&client->dev,
1545 &soc_component_dev_tlv320dac33, &dac33_dai, 1);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001546 if (ret < 0)
Fabio Estevame9382e32014-04-24 22:27:03 -03001547 goto err_get;
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001548
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001549 return ret;
Ilkka Koskinen3a7aaed2009-12-04 13:49:10 +02001550err_get:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001551 if (dac33->power_gpio >= 0)
1552 gpio_free(dac33->power_gpio);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001553err_gpio:
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001554 return ret;
1555}
1556
Bill Pemberton7a79e942012-12-07 09:26:37 -05001557static int dac33_i2c_remove(struct i2c_client *client)
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001558{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001559 struct tlv320dac33_priv *dac33 = i2c_get_clientdata(client);
Peter Ujfalusi239fe552010-04-30 14:59:34 +03001560
1561 if (unlikely(dac33->chip_power))
Kuninori Morimotocd21ac82018-01-29 04:14:21 +00001562 dac33_hard_power(dac33->component, 0);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001563
1564 if (dac33->power_gpio >= 0)
1565 gpio_free(dac33->power_gpio);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001566
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001567 return 0;
1568}
1569
1570static const struct i2c_device_id tlv320dac33_i2c_id[] = {
1571 {
1572 .name = "tlv320dac33",
1573 .driver_data = 0,
1574 },
1575 { },
1576};
Axel Lin573f26e2011-03-04 15:18:18 +08001577MODULE_DEVICE_TABLE(i2c, tlv320dac33_i2c_id);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001578
1579static struct i2c_driver tlv320dac33_i2c_driver = {
1580 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001581 .name = "tlv320dac33-codec",
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001582 },
1583 .probe = dac33_i2c_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -05001584 .remove = dac33_i2c_remove,
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001585 .id_table = tlv320dac33_i2c_id,
1586};
1587
Sachin Kamat63a47a72012-08-06 17:25:44 +05301588module_i2c_driver(tlv320dac33_i2c_driver);
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001589
1590MODULE_DESCRIPTION("ASoC TLV320DAC33 codec driver");
Peter Ujfalusi93864cf2011-05-03 18:11:36 +03001591MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
Peter Ujfalusic8bf93f2009-10-15 09:03:56 +03001592MODULE_LICENSE("GPL");