blob: a14dd2dc5ec67cbce6ea2ace2936fe38128e312c [file] [log] [blame]
Andrew F. Davisb1c52b72017-11-29 15:32:42 -06001// SPDX-License-Identifier: GPL-2.0
Jyri Sarhae00447f2014-03-11 12:57:32 +02002/*
Andrew F. Davisb1c52b72017-11-29 15:32:42 -06003 * ALSA SoC TLV320AIC31xx CODEC Driver
Jyri Sarhae00447f2014-03-11 12:57:32 +02004 *
Andrew F. Davisb1c52b72017-11-29 15:32:42 -06005 * Copyright (C) 2014-2017 Texas Instruments Incorporated - http://www.ti.com/
6 * Jyri Sarha <jsarha@ti.com>
Jyri Sarhae00447f2014-03-11 12:57:32 +02007 *
8 * Based on ground work by: Ajit Kulkarni <x0175765@ti.com>
9 *
Andrew F. Davisb1c52b72017-11-29 15:32:42 -060010 * The TLV320AIC31xx series of audio codecs are low-power, highly integrated
11 * high performance codecs which provides a stereo DAC, a mono ADC,
Jyri Sarhae00447f2014-03-11 12:57:32 +020012 * and mono/stereo Class-D speaker driver.
13 */
14
15#include <linux/module.h>
16#include <linux/moduleparam.h>
17#include <linux/init.h>
18#include <linux/delay.h>
19#include <linux/pm.h>
20#include <linux/i2c.h>
Andrew F. Davis283c3502017-12-07 09:38:51 -060021#include <linux/gpio/consumer.h>
Jyri Sarhae00447f2014-03-11 12:57:32 +020022#include <linux/regulator/consumer.h>
Bastien Noceraf5cc1772016-04-19 18:00:20 +020023#include <linux/acpi.h>
Sachin Kamat0faabc42014-04-04 11:29:12 +053024#include <linux/of.h>
Jyri Sarhae00447f2014-03-11 12:57:32 +020025#include <linux/of_gpio.h>
26#include <linux/slab.h>
27#include <sound/core.h>
Andrew F. Davisebf33262019-04-01 10:13:28 -050028#include <sound/jack.h>
Jyri Sarhae00447f2014-03-11 12:57:32 +020029#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/soc.h>
32#include <sound/initval.h>
33#include <sound/tlv.h>
34#include <dt-bindings/sound/tlv320aic31xx-micbias.h>
35
36#include "tlv320aic31xx.h"
37
38static const struct reg_default aic31xx_reg_defaults[] = {
39 { AIC31XX_CLKMUX, 0x00 },
40 { AIC31XX_PLLPR, 0x11 },
41 { AIC31XX_PLLJ, 0x04 },
42 { AIC31XX_PLLDMSB, 0x00 },
43 { AIC31XX_PLLDLSB, 0x00 },
44 { AIC31XX_NDAC, 0x01 },
45 { AIC31XX_MDAC, 0x01 },
46 { AIC31XX_DOSRMSB, 0x00 },
47 { AIC31XX_DOSRLSB, 0x80 },
48 { AIC31XX_NADC, 0x01 },
49 { AIC31XX_MADC, 0x01 },
50 { AIC31XX_AOSR, 0x80 },
51 { AIC31XX_IFACE1, 0x00 },
52 { AIC31XX_DATA_OFFSET, 0x00 },
53 { AIC31XX_IFACE2, 0x00 },
54 { AIC31XX_BCLKN, 0x01 },
55 { AIC31XX_DACSETUP, 0x14 },
56 { AIC31XX_DACMUTE, 0x0c },
57 { AIC31XX_LDACVOL, 0x00 },
58 { AIC31XX_RDACVOL, 0x00 },
59 { AIC31XX_ADCSETUP, 0x00 },
60 { AIC31XX_ADCFGA, 0x80 },
61 { AIC31XX_ADCVOL, 0x00 },
62 { AIC31XX_HPDRIVER, 0x04 },
63 { AIC31XX_SPKAMP, 0x06 },
64 { AIC31XX_DACMIXERROUTE, 0x00 },
65 { AIC31XX_LANALOGHPL, 0x7f },
66 { AIC31XX_RANALOGHPR, 0x7f },
67 { AIC31XX_LANALOGSPL, 0x7f },
68 { AIC31XX_RANALOGSPR, 0x7f },
69 { AIC31XX_HPLGAIN, 0x02 },
70 { AIC31XX_HPRGAIN, 0x02 },
71 { AIC31XX_SPLGAIN, 0x00 },
72 { AIC31XX_SPRGAIN, 0x00 },
73 { AIC31XX_MICBIAS, 0x00 },
74 { AIC31XX_MICPGA, 0x80 },
75 { AIC31XX_MICPGAPI, 0x00 },
76 { AIC31XX_MICPGAMI, 0x00 },
77};
78
79static bool aic31xx_volatile(struct device *dev, unsigned int reg)
80{
81 switch (reg) {
82 case AIC31XX_PAGECTL: /* regmap implementation requires this */
83 case AIC31XX_RESET: /* always clears after write */
84 case AIC31XX_OT_FLAG:
85 case AIC31XX_ADCFLAG:
86 case AIC31XX_DACFLAG1:
87 case AIC31XX_DACFLAG2:
88 case AIC31XX_OFFLAG: /* Sticky interrupt flags */
89 case AIC31XX_INTRDACFLAG: /* Sticky interrupt flags */
90 case AIC31XX_INTRADCFLAG: /* Sticky interrupt flags */
91 case AIC31XX_INTRDACFLAG2:
92 case AIC31XX_INTRADCFLAG2:
Andrew F. Davisebf33262019-04-01 10:13:28 -050093 case AIC31XX_HSDETECT:
Jyri Sarhae00447f2014-03-11 12:57:32 +020094 return true;
95 }
96 return false;
97}
98
99static bool aic31xx_writeable(struct device *dev, unsigned int reg)
100{
101 switch (reg) {
102 case AIC31XX_OT_FLAG:
103 case AIC31XX_ADCFLAG:
104 case AIC31XX_DACFLAG1:
105 case AIC31XX_DACFLAG2:
106 case AIC31XX_OFFLAG: /* Sticky interrupt flags */
107 case AIC31XX_INTRDACFLAG: /* Sticky interrupt flags */
108 case AIC31XX_INTRADCFLAG: /* Sticky interrupt flags */
109 case AIC31XX_INTRDACFLAG2:
110 case AIC31XX_INTRADCFLAG2:
111 return false;
112 }
113 return true;
114}
115
116static const struct regmap_range_cfg aic31xx_ranges[] = {
117 {
118 .range_min = 0,
119 .range_max = 12 * 128,
120 .selector_reg = AIC31XX_PAGECTL,
121 .selector_mask = 0xff,
122 .selector_shift = 0,
123 .window_start = 0,
124 .window_len = 128,
125 },
126};
127
Mark Brown9296f4d2014-03-13 17:44:22 +0000128static const struct regmap_config aic31xx_i2c_regmap = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200129 .reg_bits = 8,
130 .val_bits = 8,
131 .writeable_reg = aic31xx_writeable,
132 .volatile_reg = aic31xx_volatile,
133 .reg_defaults = aic31xx_reg_defaults,
134 .num_reg_defaults = ARRAY_SIZE(aic31xx_reg_defaults),
135 .cache_type = REGCACHE_RBTREE,
136 .ranges = aic31xx_ranges,
137 .num_ranges = ARRAY_SIZE(aic31xx_ranges),
138 .max_register = 12 * 128,
139};
140
Andrew F. Davisca7840f2017-11-29 15:32:45 -0600141static const char * const aic31xx_supply_names[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200142 "HPVDD",
143 "SPRVDD",
144 "SPLVDD",
145 "AVDD",
146 "IOVDD",
147 "DVDD",
148};
149
Andrew F. Davisca7840f2017-11-29 15:32:45 -0600150#define AIC31XX_NUM_SUPPLIES ARRAY_SIZE(aic31xx_supply_names)
151
Jyri Sarhae00447f2014-03-11 12:57:32 +0200152struct aic31xx_disable_nb {
153 struct notifier_block nb;
154 struct aic31xx_priv *aic31xx;
155};
156
157struct aic31xx_priv {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000158 struct snd_soc_component *component;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200159 u8 i2c_regs_status;
160 struct device *dev;
161 struct regmap *regmap;
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600162 enum aic31xx_type codec_type;
Andrew F. Davisb6b247c2017-11-29 15:32:49 -0600163 struct gpio_desc *gpio_reset;
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600164 int micbias_vg;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200165 struct aic31xx_pdata pdata;
166 struct regulator_bulk_data supplies[AIC31XX_NUM_SUPPLIES];
167 struct aic31xx_disable_nb disable_nb[AIC31XX_NUM_SUPPLIES];
Andrew F. Davisebf33262019-04-01 10:13:28 -0500168 struct snd_soc_jack *jack;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200169 unsigned int sysclk;
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300170 u8 p_div;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200171 int rate_div_line;
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200172 bool master_dapm_route_applied;
Andrew F. Davis80863ee2018-08-31 13:24:31 -0500173 int irq;
Lucas Stache48fdb52019-11-18 16:12:06 +0100174 u8 ocmv; /* output common-mode voltage */
Jyri Sarhae00447f2014-03-11 12:57:32 +0200175};
176
177struct aic31xx_rate_divs {
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300178 u32 mclk_p;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200179 u32 rate;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200180 u8 pll_j;
181 u16 pll_d;
182 u16 dosr;
183 u8 ndac;
184 u8 mdac;
185 u8 aosr;
186 u8 nadc;
187 u8 madc;
188};
189
Andrew F. Davisca7840f2017-11-29 15:32:45 -0600190/* ADC dividers can be disabled by configuring them to 0 */
Jyri Sarhae00447f2014-03-11 12:57:32 +0200191static const struct aic31xx_rate_divs aic31xx_divs[] = {
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300192 /* mclk/p rate pll: j d dosr ndac mdac aors nadc madc */
Jyri Sarhae00447f2014-03-11 12:57:32 +0200193 /* 8k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300194 {12000000, 8000, 8, 1920, 128, 48, 2, 128, 48, 2},
195 {12000000, 8000, 8, 1920, 128, 32, 3, 128, 32, 3},
196 {12500000, 8000, 7, 8643, 128, 48, 2, 128, 48, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200197 /* 11.025k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300198 {12000000, 11025, 7, 5264, 128, 32, 2, 128, 32, 2},
199 {12000000, 11025, 8, 4672, 128, 24, 3, 128, 24, 3},
200 {12500000, 11025, 7, 2253, 128, 32, 2, 128, 32, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200201 /* 16k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300202 {12000000, 16000, 8, 1920, 128, 24, 2, 128, 24, 2},
203 {12000000, 16000, 8, 1920, 128, 16, 3, 128, 16, 3},
204 {12500000, 16000, 7, 8643, 128, 24, 2, 128, 24, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200205 /* 22.05k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300206 {12000000, 22050, 7, 5264, 128, 16, 2, 128, 16, 2},
207 {12000000, 22050, 8, 4672, 128, 12, 3, 128, 12, 3},
208 {12500000, 22050, 7, 2253, 128, 16, 2, 128, 16, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200209 /* 32k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300210 {12000000, 32000, 8, 1920, 128, 12, 2, 128, 12, 2},
211 {12000000, 32000, 8, 1920, 128, 8, 3, 128, 8, 3},
212 {12500000, 32000, 7, 8643, 128, 12, 2, 128, 12, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200213 /* 44.1k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300214 {12000000, 44100, 7, 5264, 128, 8, 2, 128, 8, 2},
215 {12000000, 44100, 8, 4672, 128, 6, 3, 128, 6, 3},
216 {12500000, 44100, 7, 2253, 128, 8, 2, 128, 8, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200217 /* 48k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300218 {12000000, 48000, 8, 1920, 128, 8, 2, 128, 8, 2},
219 {12000000, 48000, 7, 6800, 96, 5, 4, 96, 5, 4},
220 {12500000, 48000, 7, 8643, 128, 8, 2, 128, 8, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200221 /* 88.2k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300222 {12000000, 88200, 7, 5264, 64, 8, 2, 64, 8, 2},
223 {12000000, 88200, 8, 4672, 64, 6, 3, 64, 6, 3},
224 {12500000, 88200, 7, 2253, 64, 8, 2, 64, 8, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200225 /* 96k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300226 {12000000, 96000, 8, 1920, 64, 8, 2, 64, 8, 2},
227 {12000000, 96000, 7, 6800, 48, 5, 4, 48, 5, 4},
228 {12500000, 96000, 7, 8643, 64, 8, 2, 64, 8, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200229 /* 176.4k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300230 {12000000, 176400, 7, 5264, 32, 8, 2, 32, 8, 2},
231 {12000000, 176400, 8, 4672, 32, 6, 3, 32, 6, 3},
232 {12500000, 176400, 7, 2253, 32, 8, 2, 32, 8, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200233 /* 192k rate */
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300234 {12000000, 192000, 8, 1920, 32, 8, 2, 32, 8, 2},
235 {12000000, 192000, 7, 6800, 24, 5, 4, 24, 5, 4},
236 {12500000, 192000, 7, 8643, 32, 8, 2, 32, 8, 2},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200237};
238
239static const char * const ldac_in_text[] = {
240 "Off", "Left Data", "Right Data", "Mono"
241};
242
243static const char * const rdac_in_text[] = {
244 "Off", "Right Data", "Left Data", "Mono"
245};
246
247static SOC_ENUM_SINGLE_DECL(ldac_in_enum, AIC31XX_DACSETUP, 4, ldac_in_text);
248
249static SOC_ENUM_SINGLE_DECL(rdac_in_enum, AIC31XX_DACSETUP, 2, rdac_in_text);
250
251static const char * const mic_select_text[] = {
252 "Off", "FFR 10 Ohm", "FFR 20 Ohm", "FFR 40 Ohm"
253};
254
Lars-Peter Clausen914bc162014-06-19 09:40:27 +0200255static SOC_ENUM_SINGLE_DECL(mic1lp_p_enum, AIC31XX_MICPGAPI, 6,
256 mic_select_text);
257static SOC_ENUM_SINGLE_DECL(mic1rp_p_enum, AIC31XX_MICPGAPI, 4,
258 mic_select_text);
259static SOC_ENUM_SINGLE_DECL(mic1lm_p_enum, AIC31XX_MICPGAPI, 2,
260 mic_select_text);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200261
Lars-Peter Clausen914bc162014-06-19 09:40:27 +0200262static SOC_ENUM_SINGLE_DECL(mic1lm_m_enum, AIC31XX_MICPGAMI, 4,
263 mic_select_text);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200264
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300265static const char * const hp_poweron_time_text[] = {
266 "0us", "15.3us", "153us", "1.53ms", "15.3ms", "76.2ms",
267 "153ms", "304ms", "610ms", "1.22s", "3.04s", "6.1s" };
268
269static SOC_ENUM_SINGLE_DECL(hp_poweron_time_enum, AIC31XX_HPPOP, 3,
270 hp_poweron_time_text);
271
272static const char * const hp_rampup_step_text[] = {
273 "0ms", "0.98ms", "1.95ms", "3.9ms" };
274
275static SOC_ENUM_SINGLE_DECL(hp_rampup_step_enum, AIC31XX_HPPOP, 1,
276 hp_rampup_step_text);
277
Nikita Yushchenko3176f942019-11-29 16:27:19 +0300278static const char * const vol_soft_step_mode_text[] = {
279 "fast", "slow", "disabled" };
280
281static SOC_ENUM_SINGLE_DECL(vol_soft_step_mode_enum, AIC31XX_DACSETUP, 0,
282 vol_soft_step_mode_text);
283
Jyri Sarhae00447f2014-03-11 12:57:32 +0200284static const DECLARE_TLV_DB_SCALE(dac_vol_tlv, -6350, 50, 0);
285static const DECLARE_TLV_DB_SCALE(adc_fgain_tlv, 0, 10, 0);
286static const DECLARE_TLV_DB_SCALE(adc_cgain_tlv, -2000, 50, 0);
287static const DECLARE_TLV_DB_SCALE(mic_pga_tlv, 0, 50, 0);
288static const DECLARE_TLV_DB_SCALE(hp_drv_tlv, 0, 100, 0);
289static const DECLARE_TLV_DB_SCALE(class_D_drv_tlv, 600, 600, 0);
290static const DECLARE_TLV_DB_SCALE(hp_vol_tlv, -6350, 50, 0);
291static const DECLARE_TLV_DB_SCALE(sp_vol_tlv, -6350, 50, 0);
292
293/*
294 * controls to be exported to the user space
295 */
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300296static const struct snd_kcontrol_new common31xx_snd_controls[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200297 SOC_DOUBLE_R_S_TLV("DAC Playback Volume", AIC31XX_LDACVOL,
298 AIC31XX_RDACVOL, 0, -127, 48, 7, 0, dac_vol_tlv),
299
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300300 SOC_DOUBLE_R("HP Driver Playback Switch", AIC31XX_HPLGAIN,
301 AIC31XX_HPRGAIN, 2, 1, 0),
302 SOC_DOUBLE_R_TLV("HP Driver Playback Volume", AIC31XX_HPLGAIN,
303 AIC31XX_HPRGAIN, 3, 0x09, 0, hp_drv_tlv),
304
305 SOC_DOUBLE_R_TLV("HP Analog Playback Volume", AIC31XX_LANALOGHPL,
306 AIC31XX_RANALOGHPR, 0, 0x7F, 1, hp_vol_tlv),
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300307
308 /* HP de-pop control: apply power not immediately but via ramp
309 * function with these psarameters. Note that power up sequence
310 * has to wait for this to complete; this is implemented by
311 * polling HP driver status in aic31xx_dapm_power_event()
312 */
313 SOC_ENUM("HP Output Driver Power-On time", hp_poweron_time_enum),
314 SOC_ENUM("HP Output Driver Ramp-up step", hp_rampup_step_enum),
Nikita Yushchenko3176f942019-11-29 16:27:19 +0300315
316 SOC_ENUM("Volume Soft Stepping", vol_soft_step_mode_enum),
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300317};
318
319static const struct snd_kcontrol_new aic31xx_snd_controls[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200320 SOC_SINGLE_TLV("ADC Fine Capture Volume", AIC31XX_ADCFGA, 4, 4, 1,
321 adc_fgain_tlv),
322
323 SOC_SINGLE("ADC Capture Switch", AIC31XX_ADCFGA, 7, 1, 1),
324 SOC_DOUBLE_R_S_TLV("ADC Capture Volume", AIC31XX_ADCVOL, AIC31XX_ADCVOL,
325 0, -24, 40, 6, 0, adc_cgain_tlv),
326
327 SOC_SINGLE_TLV("Mic PGA Capture Volume", AIC31XX_MICPGA, 0,
328 119, 0, mic_pga_tlv),
Jyri Sarhae00447f2014-03-11 12:57:32 +0200329};
330
331static const struct snd_kcontrol_new aic311x_snd_controls[] = {
332 SOC_DOUBLE_R("Speaker Driver Playback Switch", AIC31XX_SPLGAIN,
333 AIC31XX_SPRGAIN, 2, 1, 0),
334 SOC_DOUBLE_R_TLV("Speaker Driver Playback Volume", AIC31XX_SPLGAIN,
335 AIC31XX_SPRGAIN, 3, 3, 0, class_D_drv_tlv),
336
337 SOC_DOUBLE_R_TLV("Speaker Analog Playback Volume", AIC31XX_LANALOGSPL,
338 AIC31XX_RANALOGSPR, 0, 0x7F, 1, sp_vol_tlv),
339};
340
341static const struct snd_kcontrol_new aic310x_snd_controls[] = {
342 SOC_SINGLE("Speaker Driver Playback Switch", AIC31XX_SPLGAIN,
343 2, 1, 0),
344 SOC_SINGLE_TLV("Speaker Driver Playback Volume", AIC31XX_SPLGAIN,
345 3, 3, 0, class_D_drv_tlv),
346
347 SOC_SINGLE_TLV("Speaker Analog Playback Volume", AIC31XX_LANALOGSPL,
348 0, 0x7F, 1, sp_vol_tlv),
349};
350
351static const struct snd_kcontrol_new ldac_in_control =
352 SOC_DAPM_ENUM("DAC Left Input", ldac_in_enum);
353
354static const struct snd_kcontrol_new rdac_in_control =
355 SOC_DAPM_ENUM("DAC Right Input", rdac_in_enum);
356
Mark Brown9296f4d2014-03-13 17:44:22 +0000357static int aic31xx_wait_bits(struct aic31xx_priv *aic31xx, unsigned int reg,
358 unsigned int mask, unsigned int wbits, int sleep,
359 int count)
Jyri Sarhae00447f2014-03-11 12:57:32 +0200360{
361 unsigned int bits;
362 int counter = count;
363 int ret = regmap_read(aic31xx->regmap, reg, &bits);
Shahina Shaik423ca882014-06-13 11:56:54 +0530364
Jyri Sarhae00447f2014-03-11 12:57:32 +0200365 while ((bits & mask) != wbits && counter && !ret) {
366 usleep_range(sleep, sleep * 2);
367 ret = regmap_read(aic31xx->regmap, reg, &bits);
368 counter--;
369 }
370 if ((bits & mask) != wbits) {
371 dev_err(aic31xx->dev,
372 "%s: Failed! 0x%x was 0x%x expected 0x%x (%d, 0x%x, %d us)\n",
373 __func__, reg, bits, wbits, ret, mask,
374 (count - counter) * sleep);
375 ret = -1;
376 }
377 return ret;
378}
379
380#define WIDGET_BIT(reg, shift) (((shift) << 8) | (reg))
381
382static int aic31xx_dapm_power_event(struct snd_soc_dapm_widget *w,
383 struct snd_kcontrol *kcontrol, int event)
384{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000385 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
386 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200387 unsigned int reg = AIC31XX_DACFLAG1;
388 unsigned int mask;
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300389 unsigned int timeout = 500 * USEC_PER_MSEC;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200390
391 switch (WIDGET_BIT(w->reg, w->shift)) {
392 case WIDGET_BIT(AIC31XX_DACSETUP, 7):
393 mask = AIC31XX_LDACPWRSTATUS_MASK;
394 break;
395 case WIDGET_BIT(AIC31XX_DACSETUP, 6):
396 mask = AIC31XX_RDACPWRSTATUS_MASK;
397 break;
398 case WIDGET_BIT(AIC31XX_HPDRIVER, 7):
399 mask = AIC31XX_HPLDRVPWRSTATUS_MASK;
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300400 if (event == SND_SOC_DAPM_POST_PMU)
401 timeout = 7 * USEC_PER_SEC;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200402 break;
403 case WIDGET_BIT(AIC31XX_HPDRIVER, 6):
404 mask = AIC31XX_HPRDRVPWRSTATUS_MASK;
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300405 if (event == SND_SOC_DAPM_POST_PMU)
406 timeout = 7 * USEC_PER_SEC;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200407 break;
408 case WIDGET_BIT(AIC31XX_SPKAMP, 7):
409 mask = AIC31XX_SPLDRVPWRSTATUS_MASK;
410 break;
411 case WIDGET_BIT(AIC31XX_SPKAMP, 6):
412 mask = AIC31XX_SPRDRVPWRSTATUS_MASK;
413 break;
414 case WIDGET_BIT(AIC31XX_ADCSETUP, 7):
415 mask = AIC31XX_ADCPWRSTATUS_MASK;
416 reg = AIC31XX_ADCFLAG;
417 break;
418 default:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000419 dev_err(component->dev, "Unknown widget '%s' calling %s\n",
Jyri Sarhae00447f2014-03-11 12:57:32 +0200420 w->name, __func__);
421 return -EINVAL;
422 }
423
424 switch (event) {
425 case SND_SOC_DAPM_POST_PMU:
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300426 return aic31xx_wait_bits(aic31xx, reg, mask, mask,
427 5000, timeout / 5000);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200428 case SND_SOC_DAPM_POST_PMD:
Nikita Yushchenko0bb13062019-11-28 16:54:47 +0300429 return aic31xx_wait_bits(aic31xx, reg, mask, 0,
430 5000, timeout / 5000);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200431 default:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000432 dev_dbg(component->dev,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200433 "Unhandled dapm widget event %d from %s\n",
434 event, w->name);
435 }
436 return 0;
437}
438
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300439static const struct snd_kcontrol_new aic31xx_left_output_switches[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200440 SOC_DAPM_SINGLE("From Left DAC", AIC31XX_DACMIXERROUTE, 6, 1, 0),
441 SOC_DAPM_SINGLE("From MIC1LP", AIC31XX_DACMIXERROUTE, 5, 1, 0),
442 SOC_DAPM_SINGLE("From MIC1RP", AIC31XX_DACMIXERROUTE, 4, 1, 0),
443};
444
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300445static const struct snd_kcontrol_new aic31xx_right_output_switches[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200446 SOC_DAPM_SINGLE("From Right DAC", AIC31XX_DACMIXERROUTE, 2, 1, 0),
447 SOC_DAPM_SINGLE("From MIC1RP", AIC31XX_DACMIXERROUTE, 1, 1, 0),
448};
449
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300450static const struct snd_kcontrol_new dac31xx_left_output_switches[] = {
451 SOC_DAPM_SINGLE("From Left DAC", AIC31XX_DACMIXERROUTE, 6, 1, 0),
452 SOC_DAPM_SINGLE("From AIN1", AIC31XX_DACMIXERROUTE, 5, 1, 0),
453 SOC_DAPM_SINGLE("From AIN2", AIC31XX_DACMIXERROUTE, 4, 1, 0),
454};
455
456static const struct snd_kcontrol_new dac31xx_right_output_switches[] = {
457 SOC_DAPM_SINGLE("From Right DAC", AIC31XX_DACMIXERROUTE, 2, 1, 0),
458 SOC_DAPM_SINGLE("From AIN2", AIC31XX_DACMIXERROUTE, 1, 1, 0),
459};
460
Jyri Sarhae00447f2014-03-11 12:57:32 +0200461static const struct snd_kcontrol_new p_term_mic1lp =
462 SOC_DAPM_ENUM("MIC1LP P-Terminal", mic1lp_p_enum);
463
464static const struct snd_kcontrol_new p_term_mic1rp =
465 SOC_DAPM_ENUM("MIC1RP P-Terminal", mic1rp_p_enum);
466
467static const struct snd_kcontrol_new p_term_mic1lm =
468 SOC_DAPM_ENUM("MIC1LM P-Terminal", mic1lm_p_enum);
469
470static const struct snd_kcontrol_new m_term_mic1lm =
471 SOC_DAPM_ENUM("MIC1LM M-Terminal", mic1lm_m_enum);
472
473static const struct snd_kcontrol_new aic31xx_dapm_hpl_switch =
474 SOC_DAPM_SINGLE("Switch", AIC31XX_LANALOGHPL, 7, 1, 0);
475
476static const struct snd_kcontrol_new aic31xx_dapm_hpr_switch =
477 SOC_DAPM_SINGLE("Switch", AIC31XX_RANALOGHPR, 7, 1, 0);
478
479static const struct snd_kcontrol_new aic31xx_dapm_spl_switch =
480 SOC_DAPM_SINGLE("Switch", AIC31XX_LANALOGSPL, 7, 1, 0);
481
482static const struct snd_kcontrol_new aic31xx_dapm_spr_switch =
483 SOC_DAPM_SINGLE("Switch", AIC31XX_RANALOGSPR, 7, 1, 0);
484
485static int mic_bias_event(struct snd_soc_dapm_widget *w,
486 struct snd_kcontrol *kcontrol, int event)
487{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000488 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
489 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Shahina Shaik423ca882014-06-13 11:56:54 +0530490
Jyri Sarhae00447f2014-03-11 12:57:32 +0200491 switch (event) {
492 case SND_SOC_DAPM_POST_PMU:
493 /* change mic bias voltage to user defined */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000494 snd_soc_component_update_bits(component, AIC31XX_MICBIAS,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200495 AIC31XX_MICBIAS_MASK,
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600496 aic31xx->micbias_vg <<
Jyri Sarhae00447f2014-03-11 12:57:32 +0200497 AIC31XX_MICBIAS_SHIFT);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000498 dev_dbg(component->dev, "%s: turned on\n", __func__);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200499 break;
500 case SND_SOC_DAPM_PRE_PMD:
501 /* turn mic bias off */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000502 snd_soc_component_update_bits(component, AIC31XX_MICBIAS,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200503 AIC31XX_MICBIAS_MASK, 0);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000504 dev_dbg(component->dev, "%s: turned off\n", __func__);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200505 break;
506 }
507 return 0;
508}
509
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300510static const struct snd_soc_dapm_widget common31xx_dapm_widgets[] = {
Peter Ujfalusi7d41bc22018-02-19 11:45:07 +0200511 SND_SOC_DAPM_AIF_IN("AIF IN", "Playback", 0, SND_SOC_NOPM, 0, 0),
Jyri Sarhae00447f2014-03-11 12:57:32 +0200512
513 SND_SOC_DAPM_MUX("DAC Left Input",
514 SND_SOC_NOPM, 0, 0, &ldac_in_control),
515 SND_SOC_DAPM_MUX("DAC Right Input",
516 SND_SOC_NOPM, 0, 0, &rdac_in_control),
517 /* DACs */
518 SND_SOC_DAPM_DAC_E("DAC Left", "Left Playback",
519 AIC31XX_DACSETUP, 7, 0, aic31xx_dapm_power_event,
520 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
521
522 SND_SOC_DAPM_DAC_E("DAC Right", "Right Playback",
523 AIC31XX_DACSETUP, 6, 0, aic31xx_dapm_power_event,
524 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
525
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300526 /* HP */
Jyri Sarhae00447f2014-03-11 12:57:32 +0200527 SND_SOC_DAPM_SWITCH("HP Left", SND_SOC_NOPM, 0, 0,
528 &aic31xx_dapm_hpl_switch),
529 SND_SOC_DAPM_SWITCH("HP Right", SND_SOC_NOPM, 0, 0,
530 &aic31xx_dapm_hpr_switch),
531
532 /* Output drivers */
533 SND_SOC_DAPM_OUT_DRV_E("HPL Driver", AIC31XX_HPDRIVER, 7, 0,
534 NULL, 0, aic31xx_dapm_power_event,
535 SND_SOC_DAPM_POST_PMD | SND_SOC_DAPM_POST_PMU),
536 SND_SOC_DAPM_OUT_DRV_E("HPR Driver", AIC31XX_HPDRIVER, 6, 0,
537 NULL, 0, aic31xx_dapm_power_event,
538 SND_SOC_DAPM_POST_PMD | SND_SOC_DAPM_POST_PMU),
539
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300540 /* Mic Bias */
541 SND_SOC_DAPM_SUPPLY("MICBIAS", SND_SOC_NOPM, 0, 0, mic_bias_event,
542 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
543
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200544 /* Keep BCLK/WCLK enabled even if DAC/ADC is powered down */
545 SND_SOC_DAPM_SUPPLY("Activate I2S clocks", AIC31XX_IFACE2, 2, 0,
546 NULL, 0),
547
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300548 /* Outputs */
549 SND_SOC_DAPM_OUTPUT("HPL"),
550 SND_SOC_DAPM_OUTPUT("HPR"),
551};
552
553static const struct snd_soc_dapm_widget dac31xx_dapm_widgets[] = {
554 /* Inputs */
555 SND_SOC_DAPM_INPUT("AIN1"),
556 SND_SOC_DAPM_INPUT("AIN2"),
557
558 /* Output Mixers */
559 SND_SOC_DAPM_MIXER("Output Left", SND_SOC_NOPM, 0, 0,
560 dac31xx_left_output_switches,
561 ARRAY_SIZE(dac31xx_left_output_switches)),
562 SND_SOC_DAPM_MIXER("Output Right", SND_SOC_NOPM, 0, 0,
563 dac31xx_right_output_switches,
564 ARRAY_SIZE(dac31xx_right_output_switches)),
565};
566
567static const struct snd_soc_dapm_widget aic31xx_dapm_widgets[] = {
568 /* Inputs */
569 SND_SOC_DAPM_INPUT("MIC1LP"),
570 SND_SOC_DAPM_INPUT("MIC1RP"),
571 SND_SOC_DAPM_INPUT("MIC1LM"),
Jyri Sarhae00447f2014-03-11 12:57:32 +0200572
573 /* Input Selection to MIC_PGA */
574 SND_SOC_DAPM_MUX("MIC1LP P-Terminal", SND_SOC_NOPM, 0, 0,
575 &p_term_mic1lp),
576 SND_SOC_DAPM_MUX("MIC1RP P-Terminal", SND_SOC_NOPM, 0, 0,
577 &p_term_mic1rp),
578 SND_SOC_DAPM_MUX("MIC1LM P-Terminal", SND_SOC_NOPM, 0, 0,
579 &p_term_mic1lm),
580
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300581 /* ADC */
582 SND_SOC_DAPM_ADC_E("ADC", "Capture", AIC31XX_ADCSETUP, 7, 0,
583 aic31xx_dapm_power_event, SND_SOC_DAPM_POST_PMU |
584 SND_SOC_DAPM_POST_PMD),
585
Jyri Sarhae00447f2014-03-11 12:57:32 +0200586 SND_SOC_DAPM_MUX("MIC1LM M-Terminal", SND_SOC_NOPM, 0, 0,
587 &m_term_mic1lm),
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300588
Jyri Sarhae00447f2014-03-11 12:57:32 +0200589 /* Enabling & Disabling MIC Gain Ctl */
590 SND_SOC_DAPM_PGA("MIC_GAIN_CTL", AIC31XX_MICPGA,
591 7, 1, NULL, 0),
592
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300593 /* Output Mixers */
594 SND_SOC_DAPM_MIXER("Output Left", SND_SOC_NOPM, 0, 0,
595 aic31xx_left_output_switches,
596 ARRAY_SIZE(aic31xx_left_output_switches)),
597 SND_SOC_DAPM_MIXER("Output Right", SND_SOC_NOPM, 0, 0,
598 aic31xx_right_output_switches,
599 ARRAY_SIZE(aic31xx_right_output_switches)),
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200600
601 SND_SOC_DAPM_AIF_OUT("AIF OUT", "Capture", 0, SND_SOC_NOPM, 0, 0),
Jyri Sarhae00447f2014-03-11 12:57:32 +0200602};
603
604static const struct snd_soc_dapm_widget aic311x_dapm_widgets[] = {
605 /* AIC3111 and AIC3110 have stereo class-D amplifier */
606 SND_SOC_DAPM_OUT_DRV_E("SPL ClassD", AIC31XX_SPKAMP, 7, 0, NULL, 0,
607 aic31xx_dapm_power_event, SND_SOC_DAPM_POST_PMU |
608 SND_SOC_DAPM_POST_PMD),
609 SND_SOC_DAPM_OUT_DRV_E("SPR ClassD", AIC31XX_SPKAMP, 6, 0, NULL, 0,
610 aic31xx_dapm_power_event, SND_SOC_DAPM_POST_PMU |
611 SND_SOC_DAPM_POST_PMD),
612 SND_SOC_DAPM_SWITCH("Speaker Left", SND_SOC_NOPM, 0, 0,
613 &aic31xx_dapm_spl_switch),
614 SND_SOC_DAPM_SWITCH("Speaker Right", SND_SOC_NOPM, 0, 0,
615 &aic31xx_dapm_spr_switch),
616 SND_SOC_DAPM_OUTPUT("SPL"),
617 SND_SOC_DAPM_OUTPUT("SPR"),
618};
619
620/* AIC3100 and AIC3120 have only mono class-D amplifier */
621static const struct snd_soc_dapm_widget aic310x_dapm_widgets[] = {
622 SND_SOC_DAPM_OUT_DRV_E("SPK ClassD", AIC31XX_SPKAMP, 7, 0, NULL, 0,
623 aic31xx_dapm_power_event, SND_SOC_DAPM_POST_PMU |
624 SND_SOC_DAPM_POST_PMD),
625 SND_SOC_DAPM_SWITCH("Speaker", SND_SOC_NOPM, 0, 0,
626 &aic31xx_dapm_spl_switch),
627 SND_SOC_DAPM_OUTPUT("SPK"),
628};
629
630static const struct snd_soc_dapm_route
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300631common31xx_audio_map[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200632 /* DAC Input Routing */
Peter Ujfalusi7d41bc22018-02-19 11:45:07 +0200633 {"DAC Left Input", "Left Data", "AIF IN"},
634 {"DAC Left Input", "Right Data", "AIF IN"},
635 {"DAC Left Input", "Mono", "AIF IN"},
636 {"DAC Right Input", "Left Data", "AIF IN"},
637 {"DAC Right Input", "Right Data", "AIF IN"},
638 {"DAC Right Input", "Mono", "AIF IN"},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200639 {"DAC Left", NULL, "DAC Left Input"},
640 {"DAC Right", NULL, "DAC Right Input"},
641
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300642 /* HPL path */
643 {"HP Left", "Switch", "Output Left"},
644 {"HPL Driver", NULL, "HP Left"},
645 {"HPL", NULL, "HPL Driver"},
646
647 /* HPR path */
648 {"HP Right", "Switch", "Output Right"},
649 {"HPR Driver", NULL, "HP Right"},
650 {"HPR", NULL, "HPR Driver"},
651};
652
653static const struct snd_soc_dapm_route
654dac31xx_audio_map[] = {
655 /* Left Output */
656 {"Output Left", "From Left DAC", "DAC Left"},
657 {"Output Left", "From AIN1", "AIN1"},
658 {"Output Left", "From AIN2", "AIN2"},
659
660 /* Right Output */
661 {"Output Right", "From Right DAC", "DAC Right"},
662 {"Output Right", "From AIN2", "AIN2"},
663};
664
665static const struct snd_soc_dapm_route
666aic31xx_audio_map[] = {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200667 /* Mic input */
668 {"MIC1LP P-Terminal", "FFR 10 Ohm", "MIC1LP"},
669 {"MIC1LP P-Terminal", "FFR 20 Ohm", "MIC1LP"},
670 {"MIC1LP P-Terminal", "FFR 40 Ohm", "MIC1LP"},
671 {"MIC1RP P-Terminal", "FFR 10 Ohm", "MIC1RP"},
672 {"MIC1RP P-Terminal", "FFR 20 Ohm", "MIC1RP"},
673 {"MIC1RP P-Terminal", "FFR 40 Ohm", "MIC1RP"},
674 {"MIC1LM P-Terminal", "FFR 10 Ohm", "MIC1LM"},
675 {"MIC1LM P-Terminal", "FFR 20 Ohm", "MIC1LM"},
676 {"MIC1LM P-Terminal", "FFR 40 Ohm", "MIC1LM"},
677
678 {"MIC1LM M-Terminal", "FFR 10 Ohm", "MIC1LM"},
679 {"MIC1LM M-Terminal", "FFR 20 Ohm", "MIC1LM"},
680 {"MIC1LM M-Terminal", "FFR 40 Ohm", "MIC1LM"},
681
682 {"MIC_GAIN_CTL", NULL, "MIC1LP P-Terminal"},
683 {"MIC_GAIN_CTL", NULL, "MIC1RP P-Terminal"},
684 {"MIC_GAIN_CTL", NULL, "MIC1LM P-Terminal"},
685 {"MIC_GAIN_CTL", NULL, "MIC1LM M-Terminal"},
686
687 {"ADC", NULL, "MIC_GAIN_CTL"},
688
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200689 {"AIF OUT", NULL, "ADC"},
690
Jyri Sarhae00447f2014-03-11 12:57:32 +0200691 /* Left Output */
692 {"Output Left", "From Left DAC", "DAC Left"},
693 {"Output Left", "From MIC1LP", "MIC1LP"},
694 {"Output Left", "From MIC1RP", "MIC1RP"},
695
696 /* Right Output */
697 {"Output Right", "From Right DAC", "DAC Right"},
698 {"Output Right", "From MIC1RP", "MIC1RP"},
Jyri Sarhae00447f2014-03-11 12:57:32 +0200699};
700
701static const struct snd_soc_dapm_route
702aic311x_audio_map[] = {
703 /* SP L path */
704 {"Speaker Left", "Switch", "Output Left"},
705 {"SPL ClassD", NULL, "Speaker Left"},
706 {"SPL", NULL, "SPL ClassD"},
707
708 /* SP R path */
709 {"Speaker Right", "Switch", "Output Right"},
710 {"SPR ClassD", NULL, "Speaker Right"},
711 {"SPR", NULL, "SPR ClassD"},
712};
713
714static const struct snd_soc_dapm_route
715aic310x_audio_map[] = {
716 /* SP L path */
717 {"Speaker", "Switch", "Output Left"},
718 {"SPK ClassD", NULL, "Speaker"},
719 {"SPK", NULL, "SPK ClassD"},
720};
721
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200722/*
723 * Always connected DAPM routes for codec clock master modes.
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200724 * If the codec is the master on the I2S bus, we need to power up components
725 * to have valid DAC_CLK.
726 *
727 * In order to have the I2S clocks on the bus either the DACs/ADC need to be
728 * enabled, or the P0/R29/D2 (Keep bclk/wclk in power down) need to be set.
729 *
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200730 * Otherwise the codec will not generate clocks on the bus.
731 */
732static const struct snd_soc_dapm_route
733common31xx_cm_audio_map[] = {
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200734 {"HPL", NULL, "AIF IN"},
735 {"HPR", NULL, "AIF IN"},
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200736
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200737 {"AIF IN", NULL, "Activate I2S clocks"},
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200738};
739
740static const struct snd_soc_dapm_route
741aic31xx_cm_audio_map[] = {
Peter Ujfalusia16be2a2018-02-19 11:45:08 +0200742 {"AIF OUT", NULL, "MIC1LP"},
743 {"AIF OUT", NULL, "MIC1RP"},
744 {"AIF OUT", NULL, "MIC1LM"},
745
746 {"AIF OUT", NULL, "Activate I2S clocks"},
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200747};
748
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000749static int aic31xx_add_controls(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +0200750{
751 int ret = 0;
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000752 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200753
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600754 if (!(aic31xx->codec_type & DAC31XX_BIT))
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000755 ret = snd_soc_add_component_controls(
756 component, aic31xx_snd_controls,
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300757 ARRAY_SIZE(aic31xx_snd_controls));
758 if (ret)
759 return ret;
760
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600761 if (aic31xx->codec_type & AIC31XX_STEREO_CLASS_D_BIT)
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000762 ret = snd_soc_add_component_controls(
763 component, aic311x_snd_controls,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200764 ARRAY_SIZE(aic311x_snd_controls));
765 else
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000766 ret = snd_soc_add_component_controls(
767 component, aic310x_snd_controls,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200768 ARRAY_SIZE(aic310x_snd_controls));
769
770 return ret;
771}
772
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000773static int aic31xx_add_widgets(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +0200774{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000775 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
776 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200777 int ret = 0;
778
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600779 if (aic31xx->codec_type & DAC31XX_BIT) {
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +0300780 ret = snd_soc_dapm_new_controls(
781 dapm, dac31xx_dapm_widgets,
782 ARRAY_SIZE(dac31xx_dapm_widgets));
783 if (ret)
784 return ret;
785
786 ret = snd_soc_dapm_add_routes(dapm, dac31xx_audio_map,
787 ARRAY_SIZE(dac31xx_audio_map));
788 if (ret)
789 return ret;
790 } else {
791 ret = snd_soc_dapm_new_controls(
792 dapm, aic31xx_dapm_widgets,
793 ARRAY_SIZE(aic31xx_dapm_widgets));
794 if (ret)
795 return ret;
796
797 ret = snd_soc_dapm_add_routes(dapm, aic31xx_audio_map,
798 ARRAY_SIZE(aic31xx_audio_map));
799 if (ret)
800 return ret;
801 }
802
Andrew F. Daviscd15da82017-12-07 09:38:52 -0600803 if (aic31xx->codec_type & AIC31XX_STEREO_CLASS_D_BIT) {
Jyri Sarhae00447f2014-03-11 12:57:32 +0200804 ret = snd_soc_dapm_new_controls(
805 dapm, aic311x_dapm_widgets,
806 ARRAY_SIZE(aic311x_dapm_widgets));
807 if (ret)
808 return ret;
809
810 ret = snd_soc_dapm_add_routes(dapm, aic311x_audio_map,
811 ARRAY_SIZE(aic311x_audio_map));
812 if (ret)
813 return ret;
814 } else {
815 ret = snd_soc_dapm_new_controls(
816 dapm, aic310x_dapm_widgets,
817 ARRAY_SIZE(aic310x_dapm_widgets));
818 if (ret)
819 return ret;
820
821 ret = snd_soc_dapm_add_routes(dapm, aic310x_audio_map,
822 ARRAY_SIZE(aic310x_audio_map));
823 if (ret)
824 return ret;
825 }
826
827 return 0;
828}
829
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000830static int aic31xx_setup_pll(struct snd_soc_component *component,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200831 struct snd_pcm_hw_params *params)
832{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000833 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarha03be88e2014-09-03 15:52:33 +0300834 int bclk_score = snd_soc_params_to_frame_size(params);
Andrew F. Davisc6b8c772017-11-29 15:32:52 -0600835 int mclk_p;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200836 int bclk_n = 0;
Jyri Sarha03be88e2014-09-03 15:52:33 +0300837 int match = -1;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200838 int i;
839
Andrew F. Davisc6b8c772017-11-29 15:32:52 -0600840 if (!aic31xx->sysclk || !aic31xx->p_div) {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000841 dev_err(component->dev, "Master clock not supplied\n");
Andrew F. Davisc6b8c772017-11-29 15:32:52 -0600842 return -EINVAL;
843 }
844 mclk_p = aic31xx->sysclk / aic31xx->p_div;
845
Jyri Sarhae00447f2014-03-11 12:57:32 +0200846 /* Use PLL as CODEC_CLKIN and DAC_CLK as BDIV_CLKIN */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000847 snd_soc_component_update_bits(component, AIC31XX_CLKMUX,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200848 AIC31XX_CODEC_CLKIN_MASK, AIC31XX_CODEC_CLKIN_PLL);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000849 snd_soc_component_update_bits(component, AIC31XX_IFACE2,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200850 AIC31XX_BDIVCLK_MASK, AIC31XX_DAC2BCLK);
851
852 for (i = 0; i < ARRAY_SIZE(aic31xx_divs); i++) {
853 if (aic31xx_divs[i].rate == params_rate(params) &&
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300854 aic31xx_divs[i].mclk_p == mclk_p) {
Jyri Sarha03be88e2014-09-03 15:52:33 +0300855 int s = (aic31xx_divs[i].dosr * aic31xx_divs[i].mdac) %
856 snd_soc_params_to_frame_size(params);
857 int bn = (aic31xx_divs[i].dosr * aic31xx_divs[i].mdac) /
858 snd_soc_params_to_frame_size(params);
859 if (s < bclk_score && bn > 0) {
860 match = i;
861 bclk_n = bn;
862 bclk_score = s;
863 }
864 }
Jyri Sarhae00447f2014-03-11 12:57:32 +0200865 }
866
Jyri Sarha03be88e2014-09-03 15:52:33 +0300867 if (match == -1) {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000868 dev_err(component->dev,
Jyri Sarha03be88e2014-09-03 15:52:33 +0300869 "%s: Sample rate (%u) and format not supported\n",
Jyri Sarhae00447f2014-03-11 12:57:32 +0200870 __func__, params_rate(params));
Jyri Sarha03be88e2014-09-03 15:52:33 +0300871 /* See bellow for details how fix this. */
Jyri Sarhae00447f2014-03-11 12:57:32 +0200872 return -EINVAL;
873 }
Jyri Sarha03be88e2014-09-03 15:52:33 +0300874 if (bclk_score != 0) {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000875 dev_warn(component->dev, "Can not produce exact bitclock");
Jyri Sarha03be88e2014-09-03 15:52:33 +0300876 /* This is fine if using dsp format, but if using i2s
877 there may be trouble. To fix the issue edit the
878 aic31xx_divs table for your mclk and sample
879 rate. Details can be found from:
880 http://www.ti.com/lit/ds/symlink/tlv320aic3100.pdf
881 Section: 5.6 CLOCK Generation and PLL
882 */
883 }
884 i = match;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200885
886 /* PLL configuration */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000887 snd_soc_component_update_bits(component, AIC31XX_PLLPR, AIC31XX_PLL_MASK,
Jyri Sarha7ed36e92014-09-03 15:52:34 +0300888 (aic31xx->p_div << 4) | 0x01);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000889 snd_soc_component_write(component, AIC31XX_PLLJ, aic31xx_divs[i].pll_j);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200890
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000891 snd_soc_component_write(component, AIC31XX_PLLDMSB,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200892 aic31xx_divs[i].pll_d >> 8);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000893 snd_soc_component_write(component, AIC31XX_PLLDLSB,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200894 aic31xx_divs[i].pll_d & 0xff);
895
896 /* DAC dividers configuration */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000897 snd_soc_component_update_bits(component, AIC31XX_NDAC, AIC31XX_PLL_MASK,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200898 aic31xx_divs[i].ndac);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000899 snd_soc_component_update_bits(component, AIC31XX_MDAC, AIC31XX_PLL_MASK,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200900 aic31xx_divs[i].mdac);
901
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000902 snd_soc_component_write(component, AIC31XX_DOSRMSB, aic31xx_divs[i].dosr >> 8);
903 snd_soc_component_write(component, AIC31XX_DOSRLSB, aic31xx_divs[i].dosr & 0xff);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200904
905 /* ADC dividers configuration. Write reset value 1 if not used. */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000906 snd_soc_component_update_bits(component, AIC31XX_NADC, AIC31XX_PLL_MASK,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200907 aic31xx_divs[i].nadc ? aic31xx_divs[i].nadc : 1);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000908 snd_soc_component_update_bits(component, AIC31XX_MADC, AIC31XX_PLL_MASK,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200909 aic31xx_divs[i].madc ? aic31xx_divs[i].madc : 1);
910
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000911 snd_soc_component_write(component, AIC31XX_AOSR, aic31xx_divs[i].aosr);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200912
913 /* Bit clock divider configuration. */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000914 snd_soc_component_update_bits(component, AIC31XX_BCLKN,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200915 AIC31XX_PLL_MASK, bclk_n);
916
917 aic31xx->rate_div_line = i;
918
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000919 dev_dbg(component->dev,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200920 "pll %d.%04d/%d dosr %d n %d m %d aosr %d n %d m %d bclk_n %d\n",
Andrew F. Davisca7840f2017-11-29 15:32:45 -0600921 aic31xx_divs[i].pll_j,
922 aic31xx_divs[i].pll_d,
923 aic31xx->p_div,
924 aic31xx_divs[i].dosr,
925 aic31xx_divs[i].ndac,
926 aic31xx_divs[i].mdac,
927 aic31xx_divs[i].aosr,
928 aic31xx_divs[i].nadc,
929 aic31xx_divs[i].madc,
930 bclk_n
931 );
Jyri Sarhae00447f2014-03-11 12:57:32 +0200932
933 return 0;
934}
935
936static int aic31xx_hw_params(struct snd_pcm_substream *substream,
937 struct snd_pcm_hw_params *params,
Lars-Peter Clausenab642462014-03-13 21:24:54 +0100938 struct snd_soc_dai *dai)
Jyri Sarhae00447f2014-03-11 12:57:32 +0200939{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000940 struct snd_soc_component *component = dai->component;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200941 u8 data = 0;
942
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000943 dev_dbg(component->dev, "## %s: width %d rate %d\n",
Mark Brown88be6812014-07-31 12:48:13 +0100944 __func__, params_width(params),
Jyri Sarhae00447f2014-03-11 12:57:32 +0200945 params_rate(params));
946
947 switch (params_width(params)) {
948 case 16:
949 break;
950 case 20:
951 data = (AIC31XX_WORD_LEN_20BITS <<
952 AIC31XX_IFACE1_DATALEN_SHIFT);
953 break;
954 case 24:
955 data = (AIC31XX_WORD_LEN_24BITS <<
956 AIC31XX_IFACE1_DATALEN_SHIFT);
957 break;
958 case 32:
959 data = (AIC31XX_WORD_LEN_32BITS <<
960 AIC31XX_IFACE1_DATALEN_SHIFT);
961 break;
962 default:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000963 dev_err(component->dev, "%s: Unsupported width %d\n",
Mark Brown88be6812014-07-31 12:48:13 +0100964 __func__, params_width(params));
Jyri Sarhae00447f2014-03-11 12:57:32 +0200965 return -EINVAL;
966 }
967
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000968 snd_soc_component_update_bits(component, AIC31XX_IFACE1,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200969 AIC31XX_IFACE1_DATALEN_MASK,
970 data);
971
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000972 return aic31xx_setup_pll(component, params);
Jyri Sarhae00447f2014-03-11 12:57:32 +0200973}
974
Kuninori Morimoto960af792020-07-09 10:56:25 +0900975static int aic31xx_dac_mute(struct snd_soc_dai *codec_dai, int mute,
976 int direction)
Jyri Sarhae00447f2014-03-11 12:57:32 +0200977{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000978 struct snd_soc_component *component = codec_dai->component;
Jyri Sarhae00447f2014-03-11 12:57:32 +0200979
980 if (mute) {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000981 snd_soc_component_update_bits(component, AIC31XX_DACMUTE,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200982 AIC31XX_DACMUTE_MASK,
983 AIC31XX_DACMUTE_MASK);
984 } else {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +0000985 snd_soc_component_update_bits(component, AIC31XX_DACMUTE,
Jyri Sarhae00447f2014-03-11 12:57:32 +0200986 AIC31XX_DACMUTE_MASK, 0x0);
987 }
988
989 return 0;
990}
991
Peter Ujfalusid460b3f2018-02-14 14:20:56 +0200992static int aic31xx_clock_master_routes(struct snd_soc_component *component,
993 unsigned int fmt)
994{
995 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
996 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
997 int ret;
998
999 fmt &= SND_SOC_DAIFMT_MASTER_MASK;
1000 if (fmt == SND_SOC_DAIFMT_CBS_CFS &&
1001 aic31xx->master_dapm_route_applied) {
1002 /*
1003 * Remove the DAPM route(s) for codec clock master modes,
1004 * if applied
1005 */
1006 ret = snd_soc_dapm_del_routes(dapm, common31xx_cm_audio_map,
1007 ARRAY_SIZE(common31xx_cm_audio_map));
1008 if (!ret && !(aic31xx->codec_type & DAC31XX_BIT))
1009 ret = snd_soc_dapm_del_routes(dapm,
1010 aic31xx_cm_audio_map,
1011 ARRAY_SIZE(aic31xx_cm_audio_map));
1012
1013 if (ret)
1014 return ret;
1015
1016 aic31xx->master_dapm_route_applied = false;
1017 } else if (fmt != SND_SOC_DAIFMT_CBS_CFS &&
1018 !aic31xx->master_dapm_route_applied) {
1019 /*
1020 * Add the needed DAPM route(s) for codec clock master modes,
1021 * if it is not done already
1022 */
1023 ret = snd_soc_dapm_add_routes(dapm, common31xx_cm_audio_map,
1024 ARRAY_SIZE(common31xx_cm_audio_map));
1025 if (!ret && !(aic31xx->codec_type & DAC31XX_BIT))
1026 ret = snd_soc_dapm_add_routes(dapm,
1027 aic31xx_cm_audio_map,
1028 ARRAY_SIZE(aic31xx_cm_audio_map));
1029
1030 if (ret)
1031 return ret;
1032
1033 aic31xx->master_dapm_route_applied = true;
1034 }
1035
1036 return 0;
1037}
1038
Jyri Sarhae00447f2014-03-11 12:57:32 +02001039static int aic31xx_set_dai_fmt(struct snd_soc_dai *codec_dai,
1040 unsigned int fmt)
1041{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001042 struct snd_soc_component *component = codec_dai->component;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001043 u8 iface_reg1 = 0;
Peter Ujfalusi085f3ec2014-09-01 12:46:37 +03001044 u8 iface_reg2 = 0;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001045 u8 dsp_a_val = 0;
1046
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001047 dev_dbg(component->dev, "## %s: fmt = 0x%x\n", __func__, fmt);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001048
1049 /* set master/slave audio interface */
1050 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1051 case SND_SOC_DAIFMT_CBM_CFM:
1052 iface_reg1 |= AIC31XX_BCLK_MASTER | AIC31XX_WCLK_MASTER;
1053 break;
Andrew F. Davis77f8b3c2017-11-29 15:32:53 -06001054 case SND_SOC_DAIFMT_CBS_CFM:
1055 iface_reg1 |= AIC31XX_WCLK_MASTER;
1056 break;
1057 case SND_SOC_DAIFMT_CBM_CFS:
1058 iface_reg1 |= AIC31XX_BCLK_MASTER;
1059 break;
1060 case SND_SOC_DAIFMT_CBS_CFS:
1061 break;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001062 default:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001063 dev_err(component->dev, "Invalid DAI master/slave interface\n");
Jyri Sarhae00447f2014-03-11 12:57:32 +02001064 return -EINVAL;
1065 }
1066
Andrew F. Davisdcb407b2017-11-29 15:32:54 -06001067 /* signal polarity */
1068 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1069 case SND_SOC_DAIFMT_NB_NF:
1070 break;
1071 case SND_SOC_DAIFMT_IB_NF:
1072 iface_reg2 |= AIC31XX_BCLKINV_MASK;
1073 break;
1074 default:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001075 dev_err(component->dev, "Invalid DAI clock signal polarity\n");
Andrew F. Davisdcb407b2017-11-29 15:32:54 -06001076 return -EINVAL;
1077 }
1078
Jyri Sarhae00447f2014-03-11 12:57:32 +02001079 /* interface format */
1080 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1081 case SND_SOC_DAIFMT_I2S:
1082 break;
1083 case SND_SOC_DAIFMT_DSP_A:
Gustavo A. R. Silva3e146b52020-07-08 20:03:59 -05001084 dsp_a_val = 0x1;
1085 fallthrough;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001086 case SND_SOC_DAIFMT_DSP_B:
Andrew F. Davisdcb407b2017-11-29 15:32:54 -06001087 /*
1088 * NOTE: This CODEC samples on the falling edge of BCLK in
1089 * DSP mode, this is inverted compared to what most DAIs
1090 * expect, so we invert for this mode
1091 */
1092 iface_reg2 ^= AIC31XX_BCLKINV_MASK;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001093 iface_reg1 |= (AIC31XX_DSP_MODE <<
1094 AIC31XX_IFACE1_DATATYPE_SHIFT);
1095 break;
1096 case SND_SOC_DAIFMT_RIGHT_J:
1097 iface_reg1 |= (AIC31XX_RIGHT_JUSTIFIED_MODE <<
1098 AIC31XX_IFACE1_DATATYPE_SHIFT);
1099 break;
1100 case SND_SOC_DAIFMT_LEFT_J:
1101 iface_reg1 |= (AIC31XX_LEFT_JUSTIFIED_MODE <<
1102 AIC31XX_IFACE1_DATATYPE_SHIFT);
1103 break;
1104 default:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001105 dev_err(component->dev, "Invalid DAI interface format\n");
Jyri Sarhae00447f2014-03-11 12:57:32 +02001106 return -EINVAL;
1107 }
1108
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001109 snd_soc_component_update_bits(component, AIC31XX_IFACE1,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001110 AIC31XX_IFACE1_DATATYPE_MASK |
1111 AIC31XX_IFACE1_MASTER_MASK,
1112 iface_reg1);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001113 snd_soc_component_update_bits(component, AIC31XX_DATA_OFFSET,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001114 AIC31XX_DATA_OFFSET_MASK,
1115 dsp_a_val);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001116 snd_soc_component_update_bits(component, AIC31XX_IFACE2,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001117 AIC31XX_BCLKINV_MASK,
Peter Ujfalusi085f3ec2014-09-01 12:46:37 +03001118 iface_reg2);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001119
Peter Ujfalusid460b3f2018-02-14 14:20:56 +02001120 return aic31xx_clock_master_routes(component, fmt);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001121}
1122
1123static int aic31xx_set_dai_sysclk(struct snd_soc_dai *codec_dai,
1124 int clk_id, unsigned int freq, int dir)
1125{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001126 struct snd_soc_component *component = codec_dai->component;
1127 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001128 int i;
1129
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001130 dev_dbg(component->dev, "## %s: clk_id = %d, freq = %d, dir = %d\n",
Jyri Sarhae00447f2014-03-11 12:57:32 +02001131 __func__, clk_id, freq, dir);
1132
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001133 for (i = 1; i < 8; i++)
1134 if (freq / i <= 20000000)
1135 break;
Jyri Sarha7ed36e92014-09-03 15:52:34 +03001136 if (freq/i > 20000000) {
1137 dev_err(aic31xx->dev, "%s: Too high mclk frequency %u\n",
1138 __func__, freq);
Colin Ian King78068692018-11-16 15:06:33 +00001139 return -EINVAL;
Jyri Sarha7ed36e92014-09-03 15:52:34 +03001140 }
1141 aic31xx->p_div = i;
1142
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001143 for (i = 0; i < ARRAY_SIZE(aic31xx_divs); i++)
1144 if (aic31xx_divs[i].mclk_p == freq / aic31xx->p_div)
1145 break;
Jyri Sarhabbc686b2014-11-24 20:37:12 +02001146 if (i == ARRAY_SIZE(aic31xx_divs)) {
1147 dev_err(aic31xx->dev, "%s: Unsupported frequency %d\n",
1148 __func__, freq);
1149 return -EINVAL;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001150 }
1151
1152 /* set clock on MCLK, BCLK, or GPIO1 as PLL input */
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001153 snd_soc_component_update_bits(component, AIC31XX_CLKMUX, AIC31XX_PLL_CLKIN_MASK,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001154 clk_id << AIC31XX_PLL_CLKIN_SHIFT);
1155
1156 aic31xx->sysclk = freq;
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001157
Jyri Sarhae00447f2014-03-11 12:57:32 +02001158 return 0;
1159}
1160
1161static int aic31xx_regulator_event(struct notifier_block *nb,
1162 unsigned long event, void *data)
1163{
1164 struct aic31xx_disable_nb *disable_nb =
1165 container_of(nb, struct aic31xx_disable_nb, nb);
1166 struct aic31xx_priv *aic31xx = disable_nb->aic31xx;
1167
1168 if (event & REGULATOR_EVENT_DISABLE) {
1169 /*
1170 * Put codec to reset and as at least one of the
1171 * supplies was disabled.
1172 */
Andrew F. Davisb6b247c2017-11-29 15:32:49 -06001173 if (aic31xx->gpio_reset)
1174 gpiod_set_value(aic31xx->gpio_reset, 1);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001175
1176 regcache_mark_dirty(aic31xx->regmap);
1177 dev_dbg(aic31xx->dev, "## %s: DISABLE received\n", __func__);
1178 }
1179
1180 return 0;
1181}
1182
Andrew F. Davis0ce918c2017-12-07 09:38:56 -06001183static int aic31xx_reset(struct aic31xx_priv *aic31xx)
1184{
1185 int ret = 0;
1186
1187 if (aic31xx->gpio_reset) {
1188 gpiod_set_value(aic31xx->gpio_reset, 1);
1189 ndelay(10); /* At least 10ns */
1190 gpiod_set_value(aic31xx->gpio_reset, 0);
1191 } else {
1192 ret = regmap_write(aic31xx->regmap, AIC31XX_RESET, 1);
1193 }
1194 mdelay(1); /* At least 1ms */
1195
1196 return ret;
1197}
1198
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001199static void aic31xx_clk_on(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +02001200{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001201 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001202 u8 mask = AIC31XX_PM_MASK;
1203 u8 on = AIC31XX_PM_MASK;
1204
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001205 dev_dbg(component->dev, "codec clock -> on (rate %d)\n",
Jyri Sarhae00447f2014-03-11 12:57:32 +02001206 aic31xx_divs[aic31xx->rate_div_line].rate);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001207 snd_soc_component_update_bits(component, AIC31XX_PLLPR, mask, on);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001208 mdelay(10);
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001209 snd_soc_component_update_bits(component, AIC31XX_NDAC, mask, on);
1210 snd_soc_component_update_bits(component, AIC31XX_MDAC, mask, on);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001211 if (aic31xx_divs[aic31xx->rate_div_line].nadc)
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001212 snd_soc_component_update_bits(component, AIC31XX_NADC, mask, on);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001213 if (aic31xx_divs[aic31xx->rate_div_line].madc)
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001214 snd_soc_component_update_bits(component, AIC31XX_MADC, mask, on);
1215 snd_soc_component_update_bits(component, AIC31XX_BCLKN, mask, on);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001216}
1217
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001218static void aic31xx_clk_off(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +02001219{
Jyri Sarhae00447f2014-03-11 12:57:32 +02001220 u8 mask = AIC31XX_PM_MASK;
1221 u8 off = 0;
1222
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001223 dev_dbg(component->dev, "codec clock -> off\n");
1224 snd_soc_component_update_bits(component, AIC31XX_BCLKN, mask, off);
1225 snd_soc_component_update_bits(component, AIC31XX_MADC, mask, off);
1226 snd_soc_component_update_bits(component, AIC31XX_NADC, mask, off);
1227 snd_soc_component_update_bits(component, AIC31XX_MDAC, mask, off);
1228 snd_soc_component_update_bits(component, AIC31XX_NDAC, mask, off);
1229 snd_soc_component_update_bits(component, AIC31XX_PLLPR, mask, off);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001230}
1231
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001232static int aic31xx_power_on(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +02001233{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001234 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001235 int ret;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001236
1237 ret = regulator_bulk_enable(ARRAY_SIZE(aic31xx->supplies),
1238 aic31xx->supplies);
1239 if (ret)
1240 return ret;
1241
Jyri Sarhae00447f2014-03-11 12:57:32 +02001242 regcache_cache_only(aic31xx->regmap, false);
Andrew F. Davis0ce918c2017-12-07 09:38:56 -06001243
1244 /* Reset device registers for a consistent power-on like state */
1245 ret = aic31xx_reset(aic31xx);
1246 if (ret < 0)
1247 dev_err(aic31xx->dev, "Could not reset device: %d\n", ret);
1248
Jyri Sarhae00447f2014-03-11 12:57:32 +02001249 ret = regcache_sync(aic31xx->regmap);
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001250 if (ret) {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001251 dev_err(component->dev,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001252 "Failed to restore cache: %d\n", ret);
1253 regcache_cache_only(aic31xx->regmap, true);
1254 regulator_bulk_disable(ARRAY_SIZE(aic31xx->supplies),
1255 aic31xx->supplies);
1256 return ret;
1257 }
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001258
Jyri Sarhae00447f2014-03-11 12:57:32 +02001259 return 0;
1260}
1261
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001262static void aic31xx_power_off(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +02001263{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001264 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001265
1266 regcache_cache_only(aic31xx->regmap, true);
Andrew F. Davisc7734e82017-11-29 15:32:43 -06001267 regulator_bulk_disable(ARRAY_SIZE(aic31xx->supplies),
1268 aic31xx->supplies);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001269}
1270
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001271static int aic31xx_set_bias_level(struct snd_soc_component *component,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001272 enum snd_soc_bias_level level)
1273{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001274 dev_dbg(component->dev, "## %s: %d -> %d\n", __func__,
1275 snd_soc_component_get_bias_level(component), level);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001276
1277 switch (level) {
1278 case SND_SOC_BIAS_ON:
1279 break;
1280 case SND_SOC_BIAS_PREPARE:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001281 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_STANDBY)
1282 aic31xx_clk_on(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001283 break;
1284 case SND_SOC_BIAS_STANDBY:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001285 switch (snd_soc_component_get_bias_level(component)) {
Jyri Sarhae00447f2014-03-11 12:57:32 +02001286 case SND_SOC_BIAS_OFF:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001287 aic31xx_power_on(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001288 break;
1289 case SND_SOC_BIAS_PREPARE:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001290 aic31xx_clk_off(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001291 break;
1292 default:
1293 BUG();
1294 }
1295 break;
1296 case SND_SOC_BIAS_OFF:
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001297 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_STANDBY)
1298 aic31xx_power_off(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001299 break;
1300 }
Jyri Sarhae00447f2014-03-11 12:57:32 +02001301
1302 return 0;
1303}
1304
kbuild test robot7742a5b2019-04-02 19:46:18 +08001305static int aic31xx_set_jack(struct snd_soc_component *component,
1306 struct snd_soc_jack *jack, void *data)
Andrew F. Davisebf33262019-04-01 10:13:28 -05001307{
1308 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
1309
1310 aic31xx->jack = jack;
1311
1312 /* Enable/Disable jack detection */
1313 regmap_write(aic31xx->regmap, AIC31XX_HSDETECT,
1314 jack ? AIC31XX_HSD_ENABLE : 0);
1315
1316 return 0;
1317}
1318
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001319static int aic31xx_codec_probe(struct snd_soc_component *component)
Jyri Sarhae00447f2014-03-11 12:57:32 +02001320{
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001321 struct aic31xx_priv *aic31xx = snd_soc_component_get_drvdata(component);
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001322 int i, ret;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001323
1324 dev_dbg(aic31xx->dev, "## %s\n", __func__);
1325
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001326 aic31xx->component = component;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001327
Jyri Sarhae00447f2014-03-11 12:57:32 +02001328 for (i = 0; i < ARRAY_SIZE(aic31xx->supplies); i++) {
1329 aic31xx->disable_nb[i].nb.notifier_call =
1330 aic31xx_regulator_event;
1331 aic31xx->disable_nb[i].aic31xx = aic31xx;
Guennadi Liakhovetski0bb423f2019-02-08 14:45:20 +01001332 ret = devm_regulator_register_notifier(
1333 aic31xx->supplies[i].consumer,
1334 &aic31xx->disable_nb[i].nb);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001335 if (ret) {
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001336 dev_err(component->dev,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001337 "Failed to request regulator notifier: %d\n",
1338 ret);
1339 return ret;
1340 }
1341 }
1342
1343 regcache_cache_only(aic31xx->regmap, true);
1344 regcache_mark_dirty(aic31xx->regmap);
1345
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001346 ret = aic31xx_add_controls(component);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001347 if (ret)
1348 return ret;
1349
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001350 ret = aic31xx_add_widgets(component);
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001351 if (ret)
1352 return ret;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001353
Lucas Stache48fdb52019-11-18 16:12:06 +01001354 /* set output common-mode voltage */
1355 snd_soc_component_update_bits(component, AIC31XX_HPDRIVER,
1356 AIC31XX_HPD_OCMV_MASK,
1357 aic31xx->ocmv << AIC31XX_HPD_OCMV_SHIFT);
1358
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001359 return 0;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001360}
1361
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001362static const struct snd_soc_component_driver soc_codec_driver_aic31xx = {
Jyri Sarhae00447f2014-03-11 12:57:32 +02001363 .probe = aic31xx_codec_probe,
Andrew F. Davisebf33262019-04-01 10:13:28 -05001364 .set_jack = aic31xx_set_jack,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001365 .set_bias_level = aic31xx_set_bias_level,
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001366 .controls = common31xx_snd_controls,
1367 .num_controls = ARRAY_SIZE(common31xx_snd_controls),
1368 .dapm_widgets = common31xx_dapm_widgets,
1369 .num_dapm_widgets = ARRAY_SIZE(common31xx_dapm_widgets),
1370 .dapm_routes = common31xx_audio_map,
1371 .num_dapm_routes = ARRAY_SIZE(common31xx_audio_map),
1372 .suspend_bias_off = 1,
1373 .idle_bias_on = 1,
1374 .use_pmdown_time = 1,
1375 .endianness = 1,
1376 .non_legacy_dai_naming = 1,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001377};
1378
Axel Lin64793042015-07-15 15:38:14 +08001379static const struct snd_soc_dai_ops aic31xx_dai_ops = {
Jyri Sarhae00447f2014-03-11 12:57:32 +02001380 .hw_params = aic31xx_hw_params,
1381 .set_sysclk = aic31xx_set_dai_sysclk,
1382 .set_fmt = aic31xx_set_dai_fmt,
Kuninori Morimoto960af792020-07-09 10:56:25 +09001383 .mute_stream = aic31xx_dac_mute,
1384 .no_capture_mute = 1,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001385};
1386
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +03001387static struct snd_soc_dai_driver dac31xx_dai_driver[] = {
1388 {
Tomas Vilda51827c42017-05-13 00:29:37 +03001389 .name = "tlv320dac31xx-hifi",
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +03001390 .playback = {
1391 .stream_name = "Playback",
Nikita Yushchenko35206462016-09-27 11:30:15 +03001392 .channels_min = 2,
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +03001393 .channels_max = 2,
1394 .rates = AIC31XX_RATES,
1395 .formats = AIC31XX_FORMATS,
1396 },
1397 .ops = &aic31xx_dai_ops,
1398 .symmetric_rates = 1,
1399 }
1400};
1401
Jyri Sarhae00447f2014-03-11 12:57:32 +02001402static struct snd_soc_dai_driver aic31xx_dai_driver[] = {
1403 {
1404 .name = "tlv320aic31xx-hifi",
1405 .playback = {
1406 .stream_name = "Playback",
Nikita Yushchenko35206462016-09-27 11:30:15 +03001407 .channels_min = 2,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001408 .channels_max = 2,
1409 .rates = AIC31XX_RATES,
1410 .formats = AIC31XX_FORMATS,
1411 },
1412 .capture = {
1413 .stream_name = "Capture",
Nikita Yushchenko35206462016-09-27 11:30:15 +03001414 .channels_min = 2,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001415 .channels_max = 2,
1416 .rates = AIC31XX_RATES,
1417 .formats = AIC31XX_FORMATS,
1418 },
1419 .ops = &aic31xx_dai_ops,
1420 .symmetric_rates = 1,
1421 }
1422};
1423
1424#if defined(CONFIG_OF)
1425static const struct of_device_id tlv320aic31xx_of_match[] = {
1426 { .compatible = "ti,tlv320aic310x" },
1427 { .compatible = "ti,tlv320aic311x" },
1428 { .compatible = "ti,tlv320aic3100" },
1429 { .compatible = "ti,tlv320aic3110" },
1430 { .compatible = "ti,tlv320aic3120" },
1431 { .compatible = "ti,tlv320aic3111" },
Peter Ujfalusia4a1d792016-11-10 09:55:54 +02001432 { .compatible = "ti,tlv320dac3100" },
Peter Ujfalusi4e2cc812016-11-10 09:55:55 +02001433 { .compatible = "ti,tlv320dac3101" },
Jyri Sarhae00447f2014-03-11 12:57:32 +02001434 {},
1435};
1436MODULE_DEVICE_TABLE(of, tlv320aic31xx_of_match);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001437#endif /* CONFIG_OF */
1438
Andrew F. Davis09303602017-11-29 15:32:44 -06001439#ifdef CONFIG_ACPI
1440static const struct acpi_device_id aic31xx_acpi_match[] = {
1441 { "10TI3100", 0 },
1442 { }
1443};
1444MODULE_DEVICE_TABLE(acpi, aic31xx_acpi_match);
1445#endif
1446
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001447static irqreturn_t aic31xx_irq(int irq, void *data)
1448{
1449 struct aic31xx_priv *aic31xx = data;
1450 struct device *dev = aic31xx->dev;
1451 unsigned int value;
1452 bool handled = false;
1453 int ret;
1454
1455 ret = regmap_read(aic31xx->regmap, AIC31XX_INTRDACFLAG, &value);
1456 if (ret) {
1457 dev_err(dev, "Failed to read interrupt mask: %d\n", ret);
1458 goto exit;
1459 }
1460
1461 if (value)
1462 handled = true;
1463 else
Andrew F. Davis18d545b2018-09-04 10:36:17 -05001464 goto read_overflow;
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001465
1466 if (value & AIC31XX_HPLSCDETECT)
1467 dev_err(dev, "Short circuit on Left output is detected\n");
1468 if (value & AIC31XX_HPRSCDETECT)
1469 dev_err(dev, "Short circuit on Right output is detected\n");
Andrew F. Davis90f02022019-04-01 10:13:29 -05001470 if (value & (AIC31XX_HSPLUG | AIC31XX_BUTTONPRESS)) {
Andrew F. Davisebf33262019-04-01 10:13:28 -05001471 unsigned int val;
1472 int status = 0;
1473
Andrew F. Davis90f02022019-04-01 10:13:29 -05001474 ret = regmap_read(aic31xx->regmap, AIC31XX_INTRDACFLAG2,
1475 &val);
1476 if (ret) {
1477 dev_err(dev, "Failed to read interrupt mask: %d\n",
1478 ret);
1479 goto exit;
1480 }
1481
1482 if (val & AIC31XX_BUTTONPRESS)
1483 status |= SND_JACK_BTN_0;
1484
Andrew F. Davisebf33262019-04-01 10:13:28 -05001485 ret = regmap_read(aic31xx->regmap, AIC31XX_HSDETECT, &val);
1486 if (ret) {
1487 dev_err(dev, "Failed to read headset type: %d\n", ret);
1488 goto exit;
1489 }
1490
1491 switch ((val & AIC31XX_HSD_TYPE_MASK) >>
1492 AIC31XX_HSD_TYPE_SHIFT) {
1493 case AIC31XX_HSD_HP:
1494 status |= SND_JACK_HEADPHONE;
1495 break;
1496 case AIC31XX_HSD_HS:
1497 status |= SND_JACK_HEADSET;
1498 break;
1499 default:
1500 break;
1501 }
1502
1503 if (aic31xx->jack)
1504 snd_soc_jack_report(aic31xx->jack, status,
1505 AIC31XX_JACK_MASK);
1506 }
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001507 if (value & ~(AIC31XX_HPLSCDETECT |
Andrew F. Davisebf33262019-04-01 10:13:28 -05001508 AIC31XX_HPRSCDETECT |
Andrew F. Davis90f02022019-04-01 10:13:29 -05001509 AIC31XX_HSPLUG |
1510 AIC31XX_BUTTONPRESS))
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001511 dev_err(dev, "Unknown DAC interrupt flags: 0x%08x\n", value);
1512
Andrew F. Davis18d545b2018-09-04 10:36:17 -05001513read_overflow:
1514 ret = regmap_read(aic31xx->regmap, AIC31XX_OFFLAG, &value);
1515 if (ret) {
1516 dev_err(dev, "Failed to read overflow flag: %d\n", ret);
1517 goto exit;
1518 }
1519
1520 if (value)
1521 handled = true;
1522 else
1523 goto exit;
1524
1525 if (value & AIC31XX_DAC_OF_LEFT)
1526 dev_warn(dev, "Left-channel DAC overflow has occurred\n");
1527 if (value & AIC31XX_DAC_OF_RIGHT)
1528 dev_warn(dev, "Right-channel DAC overflow has occurred\n");
1529 if (value & AIC31XX_DAC_OF_SHIFTER)
1530 dev_warn(dev, "DAC barrel shifter overflow has occurred\n");
1531 if (value & AIC31XX_ADC_OF)
1532 dev_warn(dev, "ADC overflow has occurred\n");
1533 if (value & AIC31XX_ADC_OF_SHIFTER)
1534 dev_warn(dev, "ADC barrel shifter overflow has occurred\n");
1535 if (value & ~(AIC31XX_DAC_OF_LEFT |
1536 AIC31XX_DAC_OF_RIGHT |
1537 AIC31XX_DAC_OF_SHIFTER |
1538 AIC31XX_ADC_OF |
1539 AIC31XX_ADC_OF_SHIFTER))
1540 dev_warn(dev, "Unknown overflow interrupt flags: 0x%08x\n", value);
1541
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001542exit:
1543 if (handled)
1544 return IRQ_HANDLED;
1545 else
1546 return IRQ_NONE;
1547}
1548
Lucas Stache48fdb52019-11-18 16:12:06 +01001549static void aic31xx_configure_ocmv(struct aic31xx_priv *priv)
1550{
1551 struct device *dev = priv->dev;
1552 int dvdd, avdd;
1553 u32 value;
1554
1555 if (dev->fwnode &&
1556 fwnode_property_read_u32(dev->fwnode, "ai31xx-ocmv", &value)) {
1557 /* OCMV setting is forced by DT */
1558 if (value <= 3) {
1559 priv->ocmv = value;
1560 return;
1561 }
1562 }
1563
1564 avdd = regulator_get_voltage(priv->supplies[3].consumer);
1565 dvdd = regulator_get_voltage(priv->supplies[5].consumer);
1566
1567 if (avdd > 3600000 || dvdd > 1950000) {
1568 dev_warn(dev,
1569 "Too high supply voltage(s) AVDD: %d, DVDD: %d\n",
1570 avdd, dvdd);
1571 } else if (avdd == 3600000 && dvdd == 1950000) {
1572 priv->ocmv = AIC31XX_HPD_OCMV_1_8V;
1573 } else if (avdd >= 3300000 && dvdd >= 1800000) {
1574 priv->ocmv = AIC31XX_HPD_OCMV_1_65V;
1575 } else if (avdd >= 3000000 && dvdd >= 1650000) {
1576 priv->ocmv = AIC31XX_HPD_OCMV_1_5V;
1577 } else if (avdd >= 2700000 && dvdd >= 1525000) {
1578 priv->ocmv = AIC31XX_HPD_OCMV_1_35V;
1579 } else {
1580 dev_warn(dev,
1581 "Invalid supply voltage(s) AVDD: %d, DVDD: %d\n",
1582 avdd, dvdd);
1583 }
1584}
1585
Andrew F. Davise88c3882017-11-29 15:32:48 -06001586static int aic31xx_i2c_probe(struct i2c_client *i2c,
1587 const struct i2c_device_id *id)
Jyri Sarhae00447f2014-03-11 12:57:32 +02001588{
Andrew F. Davise88c3882017-11-29 15:32:48 -06001589 struct aic31xx_priv *aic31xx;
Andrew F. Daviscd15da82017-12-07 09:38:52 -06001590 unsigned int micbias_value = MICBIAS_2_0V;
Andrew F. Davise88c3882017-11-29 15:32:48 -06001591 int i, ret;
1592
1593 dev_dbg(&i2c->dev, "## %s: %s codec_type = %d\n", __func__,
1594 id->name, (int)id->driver_data);
1595
1596 aic31xx = devm_kzalloc(&i2c->dev, sizeof(*aic31xx), GFP_KERNEL);
1597 if (!aic31xx)
1598 return -ENOMEM;
1599
1600 aic31xx->regmap = devm_regmap_init_i2c(i2c, &aic31xx_i2c_regmap);
1601 if (IS_ERR(aic31xx->regmap)) {
1602 ret = PTR_ERR(aic31xx->regmap);
1603 dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
1604 ret);
1605 return ret;
1606 }
1607 aic31xx->dev = &i2c->dev;
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001608 aic31xx->irq = i2c->irq;
Andrew F. Davise88c3882017-11-29 15:32:48 -06001609
Andrew F. Daviscd15da82017-12-07 09:38:52 -06001610 aic31xx->codec_type = id->driver_data;
Jyri Sarhae00447f2014-03-11 12:57:32 +02001611
1612 dev_set_drvdata(aic31xx->dev, aic31xx);
1613
Andrew F. Daviscd15da82017-12-07 09:38:52 -06001614 fwnode_property_read_u32(aic31xx->dev->fwnode, "ai31xx-micbias-vg",
1615 &micbias_value);
1616 switch (micbias_value) {
1617 case MICBIAS_2_0V:
1618 case MICBIAS_2_5V:
1619 case MICBIAS_AVDDV:
1620 aic31xx->micbias_vg = micbias_value;
1621 break;
1622 default:
1623 dev_err(aic31xx->dev, "Bad ai31xx-micbias-vg value %d\n",
1624 micbias_value);
1625 aic31xx->micbias_vg = MICBIAS_2_0V;
1626 }
1627
1628 if (dev_get_platdata(aic31xx->dev)) {
1629 memcpy(&aic31xx->pdata, dev_get_platdata(aic31xx->dev), sizeof(aic31xx->pdata));
1630 aic31xx->codec_type = aic31xx->pdata.codec_type;
1631 aic31xx->micbias_vg = aic31xx->pdata.micbias_vg;
1632 }
Jyri Sarhae00447f2014-03-11 12:57:32 +02001633
Andrew F. Davisb6b247c2017-11-29 15:32:49 -06001634 aic31xx->gpio_reset = devm_gpiod_get_optional(aic31xx->dev, "reset",
1635 GPIOD_OUT_LOW);
1636 if (IS_ERR(aic31xx->gpio_reset)) {
Lucas Stachb7e814d2019-07-19 16:36:37 +02001637 if (PTR_ERR(aic31xx->gpio_reset) != -EPROBE_DEFER)
1638 dev_err(aic31xx->dev, "not able to acquire gpio\n");
Andrew F. Davisb6b247c2017-11-29 15:32:49 -06001639 return PTR_ERR(aic31xx->gpio_reset);
Jyri Sarhae00447f2014-03-11 12:57:32 +02001640 }
1641
1642 for (i = 0; i < ARRAY_SIZE(aic31xx->supplies); i++)
1643 aic31xx->supplies[i].supply = aic31xx_supply_names[i];
1644
1645 ret = devm_regulator_bulk_get(aic31xx->dev,
1646 ARRAY_SIZE(aic31xx->supplies),
1647 aic31xx->supplies);
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001648 if (ret) {
Lucas Stachb7e814d2019-07-19 16:36:37 +02001649 if (ret != -EPROBE_DEFER)
1650 dev_err(aic31xx->dev,
1651 "Failed to request supplies: %d\n", ret);
Andrew F. Davisca7840f2017-11-29 15:32:45 -06001652 return ret;
1653 }
Jyri Sarhae00447f2014-03-11 12:57:32 +02001654
Lucas Stache48fdb52019-11-18 16:12:06 +01001655 aic31xx_configure_ocmv(aic31xx);
1656
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001657 if (aic31xx->irq > 0) {
1658 regmap_update_bits(aic31xx->regmap, AIC31XX_GPIO1,
1659 AIC31XX_GPIO1_FUNC_MASK,
1660 AIC31XX_GPIO1_INT1 <<
1661 AIC31XX_GPIO1_FUNC_SHIFT);
1662
1663 regmap_write(aic31xx->regmap, AIC31XX_INT1CTRL,
Andrew F. Davisebf33262019-04-01 10:13:28 -05001664 AIC31XX_HSPLUGDET |
Andrew F. Davis90f02022019-04-01 10:13:29 -05001665 AIC31XX_BUTTONPRESSDET |
Andrew F. Davis18d545b2018-09-04 10:36:17 -05001666 AIC31XX_SC |
1667 AIC31XX_ENGINE);
Andrew F. Davis80863ee2018-08-31 13:24:31 -05001668
1669 ret = devm_request_threaded_irq(aic31xx->dev, aic31xx->irq,
1670 NULL, aic31xx_irq,
1671 IRQF_ONESHOT, "aic31xx-irq",
1672 aic31xx);
1673 if (ret) {
1674 dev_err(aic31xx->dev, "Unable to request IRQ\n");
1675 return ret;
1676 }
1677 }
1678
Andrew F. Daviscd15da82017-12-07 09:38:52 -06001679 if (aic31xx->codec_type & DAC31XX_BIT)
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001680 return devm_snd_soc_register_component(&i2c->dev,
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +03001681 &soc_codec_driver_aic31xx,
1682 dac31xx_dai_driver,
1683 ARRAY_SIZE(dac31xx_dai_driver));
1684 else
Kuninori Morimotof2e6f95b2018-01-29 04:15:27 +00001685 return devm_snd_soc_register_component(&i2c->dev,
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +03001686 &soc_codec_driver_aic31xx,
1687 aic31xx_dai_driver,
1688 ARRAY_SIZE(aic31xx_dai_driver));
Jyri Sarhae00447f2014-03-11 12:57:32 +02001689}
1690
Jyri Sarhae00447f2014-03-11 12:57:32 +02001691static const struct i2c_device_id aic31xx_i2c_id[] = {
1692 { "tlv320aic310x", AIC3100 },
1693 { "tlv320aic311x", AIC3110 },
1694 { "tlv320aic3100", AIC3100 },
1695 { "tlv320aic3110", AIC3110 },
1696 { "tlv320aic3120", AIC3120 },
1697 { "tlv320aic3111", AIC3111 },
Nikita Yushchenkoef9656b2016-09-23 14:52:52 +03001698 { "tlv320dac3100", DAC3100 },
Peter Ujfalusi4e2cc812016-11-10 09:55:55 +02001699 { "tlv320dac3101", DAC3101 },
Jyri Sarhae00447f2014-03-11 12:57:32 +02001700 { }
1701};
1702MODULE_DEVICE_TABLE(i2c, aic31xx_i2c_id);
1703
1704static struct i2c_driver aic31xx_i2c_driver = {
1705 .driver = {
1706 .name = "tlv320aic31xx-codec",
Jyri Sarhae00447f2014-03-11 12:57:32 +02001707 .of_match_table = of_match_ptr(tlv320aic31xx_of_match),
Bastien Noceraf5cc1772016-04-19 18:00:20 +02001708 .acpi_match_table = ACPI_PTR(aic31xx_acpi_match),
Jyri Sarhae00447f2014-03-11 12:57:32 +02001709 },
1710 .probe = aic31xx_i2c_probe,
Jyri Sarhae00447f2014-03-11 12:57:32 +02001711 .id_table = aic31xx_i2c_id,
1712};
Jyri Sarhae00447f2014-03-11 12:57:32 +02001713module_i2c_driver(aic31xx_i2c_driver);
1714
Andrew F. Davisb1c52b72017-11-29 15:32:42 -06001715MODULE_AUTHOR("Jyri Sarha <jsarha@ti.com>");
1716MODULE_DESCRIPTION("ASoC TLV320AIC31xx CODEC Driver");
1717MODULE_LICENSE("GPL v2");