tlv320aic3x.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596
  1. /*
  2. * ALSA SoC TLV320AIC3X codec driver
  3. *
  4. * Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
  5. * Copyright: (C) 2007 MontaVista Software, Inc., <source@mvista.com>
  6. *
  7. * Based on sound/soc/codecs/wm8753.c by Liam Girdwood
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. *
  13. * Notes:
  14. * The AIC3X is a driver for a low power stereo audio
  15. * codecs aic31, aic32, aic33, aic3007.
  16. *
  17. * It supports full aic33 codec functionality.
  18. * The compatibility with aic32, aic31 and aic3007 is as follows:
  19. * aic32/aic3007 | aic31
  20. * ---------------------------------------
  21. * MONO_LOUT -> N/A | MONO_LOUT -> N/A
  22. * | IN1L -> LINE1L
  23. * | IN1R -> LINE1R
  24. * | IN2L -> LINE2L
  25. * | IN2R -> LINE2R
  26. * | MIC3L/R -> N/A
  27. * truncated internal functionality in
  28. * accordance with documentation
  29. * ---------------------------------------
  30. *
  31. * Hence the machine layer should disable unsupported inputs/outputs by
  32. * snd_soc_dapm_disable_pin(codec, "MONO_LOUT"), etc.
  33. */
  34. #include <linux/module.h>
  35. #include <linux/moduleparam.h>
  36. #include <linux/init.h>
  37. #include <linux/delay.h>
  38. #include <linux/pm.h>
  39. #include <linux/i2c.h>
  40. #include <linux/gpio.h>
  41. #include <linux/regulator/consumer.h>
  42. #include <linux/of_gpio.h>
  43. #include <linux/slab.h>
  44. #include <sound/core.h>
  45. #include <sound/pcm.h>
  46. #include <sound/pcm_params.h>
  47. #include <sound/soc.h>
  48. #include <sound/initval.h>
  49. #include <sound/tlv.h>
  50. #include <sound/tlv320aic3x.h>
  51. #include "tlv320aic3x.h"
  52. #define AIC3X_NUM_SUPPLIES 4
  53. static const char *aic3x_supply_names[AIC3X_NUM_SUPPLIES] = {
  54. "IOVDD", /* I/O Voltage */
  55. "DVDD", /* Digital Core Voltage */
  56. "AVDD", /* Analog DAC Voltage */
  57. "DRVDD", /* ADC Analog and Output Driver Voltage */
  58. };
  59. static LIST_HEAD(reset_list);
  60. struct aic3x_priv;
  61. struct aic3x_disable_nb {
  62. struct notifier_block nb;
  63. struct aic3x_priv *aic3x;
  64. };
  65. /* codec private data */
  66. struct aic3x_priv {
  67. struct snd_soc_codec *codec;
  68. struct regulator_bulk_data supplies[AIC3X_NUM_SUPPLIES];
  69. struct aic3x_disable_nb disable_nb[AIC3X_NUM_SUPPLIES];
  70. enum snd_soc_control_type control_type;
  71. struct aic3x_setup_data *setup;
  72. unsigned int sysclk;
  73. struct list_head list;
  74. int master;
  75. int gpio_reset;
  76. int power;
  77. #define AIC3X_MODEL_3X 0
  78. #define AIC3X_MODEL_33 1
  79. #define AIC3X_MODEL_3007 2
  80. u16 model;
  81. /* Selects the micbias voltage */
  82. enum aic3x_micbias_voltage micbias_vg;
  83. };
  84. /*
  85. * AIC3X register cache
  86. * We can't read the AIC3X register space when we are
  87. * using 2 wire for device control, so we cache them instead.
  88. * There is no point in caching the reset register
  89. */
  90. static const u8 aic3x_reg[AIC3X_CACHEREGNUM] = {
  91. 0x00, 0x00, 0x00, 0x10, /* 0 */
  92. 0x04, 0x00, 0x00, 0x00, /* 4 */
  93. 0x00, 0x00, 0x00, 0x01, /* 8 */
  94. 0x00, 0x00, 0x00, 0x80, /* 12 */
  95. 0x80, 0xff, 0xff, 0x78, /* 16 */
  96. 0x78, 0x78, 0x78, 0x78, /* 20 */
  97. 0x78, 0x00, 0x00, 0xfe, /* 24 */
  98. 0x00, 0x00, 0xfe, 0x00, /* 28 */
  99. 0x18, 0x18, 0x00, 0x00, /* 32 */
  100. 0x00, 0x00, 0x00, 0x00, /* 36 */
  101. 0x00, 0x00, 0x00, 0x80, /* 40 */
  102. 0x80, 0x00, 0x00, 0x00, /* 44 */
  103. 0x00, 0x00, 0x00, 0x04, /* 48 */
  104. 0x00, 0x00, 0x00, 0x00, /* 52 */
  105. 0x00, 0x00, 0x04, 0x00, /* 56 */
  106. 0x00, 0x00, 0x00, 0x00, /* 60 */
  107. 0x00, 0x04, 0x00, 0x00, /* 64 */
  108. 0x00, 0x00, 0x00, 0x00, /* 68 */
  109. 0x04, 0x00, 0x00, 0x00, /* 72 */
  110. 0x00, 0x00, 0x00, 0x00, /* 76 */
  111. 0x00, 0x00, 0x00, 0x00, /* 80 */
  112. 0x00, 0x00, 0x00, 0x00, /* 84 */
  113. 0x00, 0x00, 0x00, 0x00, /* 88 */
  114. 0x00, 0x00, 0x00, 0x00, /* 92 */
  115. 0x00, 0x00, 0x00, 0x00, /* 96 */
  116. 0x00, 0x00, 0x02, 0x00, /* 100 */
  117. 0x00, 0x00, 0x00, 0x00, /* 104 */
  118. 0x00, 0x00, /* 108 */
  119. };
  120. #define SOC_DAPM_SINGLE_AIC3X(xname, reg, shift, mask, invert) \
  121. SOC_SINGLE_EXT(xname, reg, shift, mask, invert, \
  122. snd_soc_dapm_get_volsw, snd_soc_dapm_put_volsw_aic3x)
  123. /*
  124. * All input lines are connected when !0xf and disconnected with 0xf bit field,
  125. * so we have to use specific dapm_put call for input mixer
  126. */
  127. static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol,
  128. struct snd_ctl_elem_value *ucontrol)
  129. {
  130. struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
  131. struct soc_mixer_control *mc =
  132. (struct soc_mixer_control *)kcontrol->private_value;
  133. unsigned int reg = mc->reg;
  134. unsigned int shift = mc->shift;
  135. int max = mc->max;
  136. unsigned int mask = (1 << fls(max)) - 1;
  137. unsigned int invert = mc->invert;
  138. unsigned short val;
  139. struct snd_soc_dapm_update update;
  140. int connect, change;
  141. val = (ucontrol->value.integer.value[0] & mask);
  142. mask = 0xf;
  143. if (val)
  144. val = mask;
  145. connect = !!val;
  146. if (invert)
  147. val = mask - val;
  148. mask <<= shift;
  149. val <<= shift;
  150. change = snd_soc_test_bits(codec, val, mask, reg);
  151. if (change) {
  152. update.kcontrol = kcontrol;
  153. update.reg = reg;
  154. update.mask = mask;
  155. update.val = val;
  156. snd_soc_dapm_mixer_update_power(&codec->dapm, kcontrol, connect,
  157. &update);
  158. }
  159. return change;
  160. }
  161. /*
  162. * mic bias power on/off share the same register bits with
  163. * output voltage of mic bias. when power on mic bias, we
  164. * need reclaim it to voltage value.
  165. * 0x0 = Powered off
  166. * 0x1 = MICBIAS output is powered to 2.0V,
  167. * 0x2 = MICBIAS output is powered to 2.5V
  168. * 0x3 = MICBIAS output is connected to AVDD
  169. */
  170. static int mic_bias_event(struct snd_soc_dapm_widget *w,
  171. struct snd_kcontrol *kcontrol, int event)
  172. {
  173. struct snd_soc_codec *codec = w->codec;
  174. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  175. switch (event) {
  176. case SND_SOC_DAPM_POST_PMU:
  177. /* change mic bias voltage to user defined */
  178. snd_soc_update_bits(codec, MICBIAS_CTRL,
  179. MICBIAS_LEVEL_MASK,
  180. aic3x->micbias_vg << MICBIAS_LEVEL_SHIFT);
  181. break;
  182. case SND_SOC_DAPM_PRE_PMD:
  183. snd_soc_update_bits(codec, MICBIAS_CTRL,
  184. MICBIAS_LEVEL_MASK, 0);
  185. break;
  186. }
  187. return 0;
  188. }
  189. static const char *aic3x_left_dac_mux[] = { "DAC_L1", "DAC_L3", "DAC_L2" };
  190. static const char *aic3x_right_dac_mux[] = { "DAC_R1", "DAC_R3", "DAC_R2" };
  191. static const char *aic3x_left_hpcom_mux[] =
  192. { "differential of HPLOUT", "constant VCM", "single-ended" };
  193. static const char *aic3x_right_hpcom_mux[] =
  194. { "differential of HPROUT", "constant VCM", "single-ended",
  195. "differential of HPLCOM", "external feedback" };
  196. static const char *aic3x_linein_mode_mux[] = { "single-ended", "differential" };
  197. static const char *aic3x_adc_hpf[] =
  198. { "Disabled", "0.0045xFs", "0.0125xFs", "0.025xFs" };
  199. #define LDAC_ENUM 0
  200. #define RDAC_ENUM 1
  201. #define LHPCOM_ENUM 2
  202. #define RHPCOM_ENUM 3
  203. #define LINE1L_2_L_ENUM 4
  204. #define LINE1L_2_R_ENUM 5
  205. #define LINE1R_2_L_ENUM 6
  206. #define LINE1R_2_R_ENUM 7
  207. #define LINE2L_ENUM 8
  208. #define LINE2R_ENUM 9
  209. #define ADC_HPF_ENUM 10
  210. static const struct soc_enum aic3x_enum[] = {
  211. SOC_ENUM_SINGLE(DAC_LINE_MUX, 6, 3, aic3x_left_dac_mux),
  212. SOC_ENUM_SINGLE(DAC_LINE_MUX, 4, 3, aic3x_right_dac_mux),
  213. SOC_ENUM_SINGLE(HPLCOM_CFG, 4, 3, aic3x_left_hpcom_mux),
  214. SOC_ENUM_SINGLE(HPRCOM_CFG, 3, 5, aic3x_right_hpcom_mux),
  215. SOC_ENUM_SINGLE(LINE1L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
  216. SOC_ENUM_SINGLE(LINE1L_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
  217. SOC_ENUM_SINGLE(LINE1R_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
  218. SOC_ENUM_SINGLE(LINE1R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
  219. SOC_ENUM_SINGLE(LINE2L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
  220. SOC_ENUM_SINGLE(LINE2R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
  221. SOC_ENUM_DOUBLE(AIC3X_CODEC_DFILT_CTRL, 6, 4, 4, aic3x_adc_hpf),
  222. };
  223. static const char *aic3x_agc_level[] =
  224. { "-5.5dB", "-8dB", "-10dB", "-12dB", "-14dB", "-17dB", "-20dB", "-24dB" };
  225. static const struct soc_enum aic3x_agc_level_enum[] = {
  226. SOC_ENUM_SINGLE(LAGC_CTRL_A, 4, 8, aic3x_agc_level),
  227. SOC_ENUM_SINGLE(RAGC_CTRL_A, 4, 8, aic3x_agc_level),
  228. };
  229. static const char *aic3x_agc_attack[] = { "8ms", "11ms", "16ms", "20ms" };
  230. static const struct soc_enum aic3x_agc_attack_enum[] = {
  231. SOC_ENUM_SINGLE(LAGC_CTRL_A, 2, 4, aic3x_agc_attack),
  232. SOC_ENUM_SINGLE(RAGC_CTRL_A, 2, 4, aic3x_agc_attack),
  233. };
  234. static const char *aic3x_agc_decay[] = { "100ms", "200ms", "400ms", "500ms" };
  235. static const struct soc_enum aic3x_agc_decay_enum[] = {
  236. SOC_ENUM_SINGLE(LAGC_CTRL_A, 0, 4, aic3x_agc_decay),
  237. SOC_ENUM_SINGLE(RAGC_CTRL_A, 0, 4, aic3x_agc_decay),
  238. };
  239. /*
  240. * DAC digital volumes. From -63.5 to 0 dB in 0.5 dB steps
  241. */
  242. static DECLARE_TLV_DB_SCALE(dac_tlv, -6350, 50, 0);
  243. /* ADC PGA gain volumes. From 0 to 59.5 dB in 0.5 dB steps */
  244. static DECLARE_TLV_DB_SCALE(adc_tlv, 0, 50, 0);
  245. /*
  246. * Output stage volumes. From -78.3 to 0 dB. Muted below -78.3 dB.
  247. * Step size is approximately 0.5 dB over most of the scale but increasing
  248. * near the very low levels.
  249. * Define dB scale so that it is mostly correct for range about -55 to 0 dB
  250. * but having increasing dB difference below that (and where it doesn't count
  251. * so much). This setting shows -50 dB (actual is -50.3 dB) for register
  252. * value 100 and -58.5 dB (actual is -78.3 dB) for register value 117.
  253. */
  254. static DECLARE_TLV_DB_SCALE(output_stage_tlv, -5900, 50, 1);
  255. static const struct snd_kcontrol_new aic3x_snd_controls[] = {
  256. /* Output */
  257. SOC_DOUBLE_R_TLV("PCM Playback Volume",
  258. LDAC_VOL, RDAC_VOL, 0, 0x7f, 1, dac_tlv),
  259. /*
  260. * Output controls that map to output mixer switches. Note these are
  261. * only for swapped L-to-R and R-to-L routes. See below stereo controls
  262. * for direct L-to-L and R-to-R routes.
  263. */
  264. SOC_SINGLE_TLV("Left Line Mixer Line2R Bypass Volume",
  265. LINE2R_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
  266. SOC_SINGLE_TLV("Left Line Mixer PGAR Bypass Volume",
  267. PGAR_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
  268. SOC_SINGLE_TLV("Left Line Mixer DACR1 Playback Volume",
  269. DACR1_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
  270. SOC_SINGLE_TLV("Right Line Mixer Line2L Bypass Volume",
  271. LINE2L_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
  272. SOC_SINGLE_TLV("Right Line Mixer PGAL Bypass Volume",
  273. PGAL_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
  274. SOC_SINGLE_TLV("Right Line Mixer DACL1 Playback Volume",
  275. DACL1_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
  276. SOC_SINGLE_TLV("Left HP Mixer Line2R Bypass Volume",
  277. LINE2R_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
  278. SOC_SINGLE_TLV("Left HP Mixer PGAR Bypass Volume",
  279. PGAR_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
  280. SOC_SINGLE_TLV("Left HP Mixer DACR1 Playback Volume",
  281. DACR1_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
  282. SOC_SINGLE_TLV("Right HP Mixer Line2L Bypass Volume",
  283. LINE2L_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
  284. SOC_SINGLE_TLV("Right HP Mixer PGAL Bypass Volume",
  285. PGAL_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
  286. SOC_SINGLE_TLV("Right HP Mixer DACL1 Playback Volume",
  287. DACL1_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
  288. SOC_SINGLE_TLV("Left HPCOM Mixer Line2R Bypass Volume",
  289. LINE2R_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
  290. SOC_SINGLE_TLV("Left HPCOM Mixer PGAR Bypass Volume",
  291. PGAR_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
  292. SOC_SINGLE_TLV("Left HPCOM Mixer DACR1 Playback Volume",
  293. DACR1_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
  294. SOC_SINGLE_TLV("Right HPCOM Mixer Line2L Bypass Volume",
  295. LINE2L_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
  296. SOC_SINGLE_TLV("Right HPCOM Mixer PGAL Bypass Volume",
  297. PGAL_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
  298. SOC_SINGLE_TLV("Right HPCOM Mixer DACL1 Playback Volume",
  299. DACL1_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
  300. /* Stereo output controls for direct L-to-L and R-to-R routes */
  301. SOC_DOUBLE_R_TLV("Line Line2 Bypass Volume",
  302. LINE2L_2_LLOPM_VOL, LINE2R_2_RLOPM_VOL,
  303. 0, 118, 1, output_stage_tlv),
  304. SOC_DOUBLE_R_TLV("Line PGA Bypass Volume",
  305. PGAL_2_LLOPM_VOL, PGAR_2_RLOPM_VOL,
  306. 0, 118, 1, output_stage_tlv),
  307. SOC_DOUBLE_R_TLV("Line DAC Playback Volume",
  308. DACL1_2_LLOPM_VOL, DACR1_2_RLOPM_VOL,
  309. 0, 118, 1, output_stage_tlv),
  310. SOC_DOUBLE_R_TLV("Mono Line2 Bypass Volume",
  311. LINE2L_2_MONOLOPM_VOL, LINE2R_2_MONOLOPM_VOL,
  312. 0, 118, 1, output_stage_tlv),
  313. SOC_DOUBLE_R_TLV("Mono PGA Bypass Volume",
  314. PGAL_2_MONOLOPM_VOL, PGAR_2_MONOLOPM_VOL,
  315. 0, 118, 1, output_stage_tlv),
  316. SOC_DOUBLE_R_TLV("Mono DAC Playback Volume",
  317. DACL1_2_MONOLOPM_VOL, DACR1_2_MONOLOPM_VOL,
  318. 0, 118, 1, output_stage_tlv),
  319. SOC_DOUBLE_R_TLV("HP Line2 Bypass Volume",
  320. LINE2L_2_HPLOUT_VOL, LINE2R_2_HPROUT_VOL,
  321. 0, 118, 1, output_stage_tlv),
  322. SOC_DOUBLE_R_TLV("HP PGA Bypass Volume",
  323. PGAL_2_HPLOUT_VOL, PGAR_2_HPROUT_VOL,
  324. 0, 118, 1, output_stage_tlv),
  325. SOC_DOUBLE_R_TLV("HP DAC Playback Volume",
  326. DACL1_2_HPLOUT_VOL, DACR1_2_HPROUT_VOL,
  327. 0, 118, 1, output_stage_tlv),
  328. SOC_DOUBLE_R_TLV("HPCOM Line2 Bypass Volume",
  329. LINE2L_2_HPLCOM_VOL, LINE2R_2_HPRCOM_VOL,
  330. 0, 118, 1, output_stage_tlv),
  331. SOC_DOUBLE_R_TLV("HPCOM PGA Bypass Volume",
  332. PGAL_2_HPLCOM_VOL, PGAR_2_HPRCOM_VOL,
  333. 0, 118, 1, output_stage_tlv),
  334. SOC_DOUBLE_R_TLV("HPCOM DAC Playback Volume",
  335. DACL1_2_HPLCOM_VOL, DACR1_2_HPRCOM_VOL,
  336. 0, 118, 1, output_stage_tlv),
  337. /* Output pin mute controls */
  338. SOC_DOUBLE_R("Line Playback Switch", LLOPM_CTRL, RLOPM_CTRL, 3,
  339. 0x01, 0),
  340. SOC_SINGLE("Mono Playback Switch", MONOLOPM_CTRL, 3, 0x01, 0),
  341. SOC_DOUBLE_R("HP Playback Switch", HPLOUT_CTRL, HPROUT_CTRL, 3,
  342. 0x01, 0),
  343. SOC_DOUBLE_R("HPCOM Playback Switch", HPLCOM_CTRL, HPRCOM_CTRL, 3,
  344. 0x01, 0),
  345. /*
  346. * Note: enable Automatic input Gain Controller with care. It can
  347. * adjust PGA to max value when ADC is on and will never go back.
  348. */
  349. SOC_DOUBLE_R("AGC Switch", LAGC_CTRL_A, RAGC_CTRL_A, 7, 0x01, 0),
  350. SOC_ENUM("Left AGC Target level", aic3x_agc_level_enum[0]),
  351. SOC_ENUM("Right AGC Target level", aic3x_agc_level_enum[1]),
  352. SOC_ENUM("Left AGC Attack time", aic3x_agc_attack_enum[0]),
  353. SOC_ENUM("Right AGC Attack time", aic3x_agc_attack_enum[1]),
  354. SOC_ENUM("Left AGC Decay time", aic3x_agc_decay_enum[0]),
  355. SOC_ENUM("Right AGC Decay time", aic3x_agc_decay_enum[1]),
  356. /* De-emphasis */
  357. SOC_DOUBLE("De-emphasis Switch", AIC3X_CODEC_DFILT_CTRL, 2, 0, 0x01, 0),
  358. /* Input */
  359. SOC_DOUBLE_R_TLV("PGA Capture Volume", LADC_VOL, RADC_VOL,
  360. 0, 119, 0, adc_tlv),
  361. SOC_DOUBLE_R("PGA Capture Switch", LADC_VOL, RADC_VOL, 7, 0x01, 1),
  362. SOC_ENUM("ADC HPF Cut-off", aic3x_enum[ADC_HPF_ENUM]),
  363. };
  364. /*
  365. * Class-D amplifier gain. From 0 to 18 dB in 6 dB steps
  366. */
  367. static DECLARE_TLV_DB_SCALE(classd_amp_tlv, 0, 600, 0);
  368. static const struct snd_kcontrol_new aic3x_classd_amp_gain_ctrl =
  369. SOC_DOUBLE_TLV("Class-D Playback Volume", CLASSD_CTRL, 6, 4, 3, 0, classd_amp_tlv);
  370. /* Left DAC Mux */
  371. static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
  372. SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
  373. /* Right DAC Mux */
  374. static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
  375. SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
  376. /* Left HPCOM Mux */
  377. static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
  378. SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
  379. /* Right HPCOM Mux */
  380. static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
  381. SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
  382. /* Left Line Mixer */
  383. static const struct snd_kcontrol_new aic3x_left_line_mixer_controls[] = {
  384. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_LLOPM_VOL, 7, 1, 0),
  385. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_LLOPM_VOL, 7, 1, 0),
  386. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_LLOPM_VOL, 7, 1, 0),
  387. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_LLOPM_VOL, 7, 1, 0),
  388. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_LLOPM_VOL, 7, 1, 0),
  389. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_LLOPM_VOL, 7, 1, 0),
  390. };
  391. /* Right Line Mixer */
  392. static const struct snd_kcontrol_new aic3x_right_line_mixer_controls[] = {
  393. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_RLOPM_VOL, 7, 1, 0),
  394. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_RLOPM_VOL, 7, 1, 0),
  395. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_RLOPM_VOL, 7, 1, 0),
  396. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_RLOPM_VOL, 7, 1, 0),
  397. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_RLOPM_VOL, 7, 1, 0),
  398. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_RLOPM_VOL, 7, 1, 0),
  399. };
  400. /* Mono Mixer */
  401. static const struct snd_kcontrol_new aic3x_mono_mixer_controls[] = {
  402. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_MONOLOPM_VOL, 7, 1, 0),
  403. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_MONOLOPM_VOL, 7, 1, 0),
  404. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_MONOLOPM_VOL, 7, 1, 0),
  405. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_MONOLOPM_VOL, 7, 1, 0),
  406. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_MONOLOPM_VOL, 7, 1, 0),
  407. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_MONOLOPM_VOL, 7, 1, 0),
  408. };
  409. /* Left HP Mixer */
  410. static const struct snd_kcontrol_new aic3x_left_hp_mixer_controls[] = {
  411. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPLOUT_VOL, 7, 1, 0),
  412. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPLOUT_VOL, 7, 1, 0),
  413. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPLOUT_VOL, 7, 1, 0),
  414. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPLOUT_VOL, 7, 1, 0),
  415. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPLOUT_VOL, 7, 1, 0),
  416. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPLOUT_VOL, 7, 1, 0),
  417. };
  418. /* Right HP Mixer */
  419. static const struct snd_kcontrol_new aic3x_right_hp_mixer_controls[] = {
  420. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPROUT_VOL, 7, 1, 0),
  421. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPROUT_VOL, 7, 1, 0),
  422. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPROUT_VOL, 7, 1, 0),
  423. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPROUT_VOL, 7, 1, 0),
  424. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPROUT_VOL, 7, 1, 0),
  425. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPROUT_VOL, 7, 1, 0),
  426. };
  427. /* Left HPCOM Mixer */
  428. static const struct snd_kcontrol_new aic3x_left_hpcom_mixer_controls[] = {
  429. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPLCOM_VOL, 7, 1, 0),
  430. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPLCOM_VOL, 7, 1, 0),
  431. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPLCOM_VOL, 7, 1, 0),
  432. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPLCOM_VOL, 7, 1, 0),
  433. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPLCOM_VOL, 7, 1, 0),
  434. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPLCOM_VOL, 7, 1, 0),
  435. };
  436. /* Right HPCOM Mixer */
  437. static const struct snd_kcontrol_new aic3x_right_hpcom_mixer_controls[] = {
  438. SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPRCOM_VOL, 7, 1, 0),
  439. SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPRCOM_VOL, 7, 1, 0),
  440. SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPRCOM_VOL, 7, 1, 0),
  441. SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPRCOM_VOL, 7, 1, 0),
  442. SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPRCOM_VOL, 7, 1, 0),
  443. SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPRCOM_VOL, 7, 1, 0),
  444. };
  445. /* Left PGA Mixer */
  446. static const struct snd_kcontrol_new aic3x_left_pga_mixer_controls[] = {
  447. SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_LADC_CTRL, 3, 1, 1),
  448. SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_LADC_CTRL, 3, 1, 1),
  449. SOC_DAPM_SINGLE_AIC3X("Line2L Switch", LINE2L_2_LADC_CTRL, 3, 1, 1),
  450. SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_LADC_CTRL, 4, 1, 1),
  451. SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_LADC_CTRL, 0, 1, 1),
  452. };
  453. /* Right PGA Mixer */
  454. static const struct snd_kcontrol_new aic3x_right_pga_mixer_controls[] = {
  455. SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_RADC_CTRL, 3, 1, 1),
  456. SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_RADC_CTRL, 3, 1, 1),
  457. SOC_DAPM_SINGLE_AIC3X("Line2R Switch", LINE2R_2_RADC_CTRL, 3, 1, 1),
  458. SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_RADC_CTRL, 4, 1, 1),
  459. SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_RADC_CTRL, 0, 1, 1),
  460. };
  461. /* Left Line1 Mux */
  462. static const struct snd_kcontrol_new aic3x_left_line1l_mux_controls =
  463. SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_2_L_ENUM]);
  464. static const struct snd_kcontrol_new aic3x_right_line1l_mux_controls =
  465. SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_2_R_ENUM]);
  466. /* Right Line1 Mux */
  467. static const struct snd_kcontrol_new aic3x_right_line1r_mux_controls =
  468. SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_2_R_ENUM]);
  469. static const struct snd_kcontrol_new aic3x_left_line1r_mux_controls =
  470. SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_2_L_ENUM]);
  471. /* Left Line2 Mux */
  472. static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
  473. SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
  474. /* Right Line2 Mux */
  475. static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
  476. SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
  477. static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
  478. /* Left DAC to Left Outputs */
  479. SND_SOC_DAPM_DAC("Left DAC", "Left Playback", DAC_PWR, 7, 0),
  480. SND_SOC_DAPM_MUX("Left DAC Mux", SND_SOC_NOPM, 0, 0,
  481. &aic3x_left_dac_mux_controls),
  482. SND_SOC_DAPM_MUX("Left HPCOM Mux", SND_SOC_NOPM, 0, 0,
  483. &aic3x_left_hpcom_mux_controls),
  484. SND_SOC_DAPM_PGA("Left Line Out", LLOPM_CTRL, 0, 0, NULL, 0),
  485. SND_SOC_DAPM_PGA("Left HP Out", HPLOUT_CTRL, 0, 0, NULL, 0),
  486. SND_SOC_DAPM_PGA("Left HP Com", HPLCOM_CTRL, 0, 0, NULL, 0),
  487. /* Right DAC to Right Outputs */
  488. SND_SOC_DAPM_DAC("Right DAC", "Right Playback", DAC_PWR, 6, 0),
  489. SND_SOC_DAPM_MUX("Right DAC Mux", SND_SOC_NOPM, 0, 0,
  490. &aic3x_right_dac_mux_controls),
  491. SND_SOC_DAPM_MUX("Right HPCOM Mux", SND_SOC_NOPM, 0, 0,
  492. &aic3x_right_hpcom_mux_controls),
  493. SND_SOC_DAPM_PGA("Right Line Out", RLOPM_CTRL, 0, 0, NULL, 0),
  494. SND_SOC_DAPM_PGA("Right HP Out", HPROUT_CTRL, 0, 0, NULL, 0),
  495. SND_SOC_DAPM_PGA("Right HP Com", HPRCOM_CTRL, 0, 0, NULL, 0),
  496. /* Mono Output */
  497. SND_SOC_DAPM_PGA("Mono Out", MONOLOPM_CTRL, 0, 0, NULL, 0),
  498. /* Inputs to Left ADC */
  499. SND_SOC_DAPM_ADC("Left ADC", "Left Capture", LINE1L_2_LADC_CTRL, 2, 0),
  500. SND_SOC_DAPM_MIXER("Left PGA Mixer", SND_SOC_NOPM, 0, 0,
  501. &aic3x_left_pga_mixer_controls[0],
  502. ARRAY_SIZE(aic3x_left_pga_mixer_controls)),
  503. SND_SOC_DAPM_MUX("Left Line1L Mux", SND_SOC_NOPM, 0, 0,
  504. &aic3x_left_line1l_mux_controls),
  505. SND_SOC_DAPM_MUX("Left Line1R Mux", SND_SOC_NOPM, 0, 0,
  506. &aic3x_left_line1r_mux_controls),
  507. SND_SOC_DAPM_MUX("Left Line2L Mux", SND_SOC_NOPM, 0, 0,
  508. &aic3x_left_line2_mux_controls),
  509. /* Inputs to Right ADC */
  510. SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
  511. LINE1R_2_RADC_CTRL, 2, 0),
  512. SND_SOC_DAPM_MIXER("Right PGA Mixer", SND_SOC_NOPM, 0, 0,
  513. &aic3x_right_pga_mixer_controls[0],
  514. ARRAY_SIZE(aic3x_right_pga_mixer_controls)),
  515. SND_SOC_DAPM_MUX("Right Line1L Mux", SND_SOC_NOPM, 0, 0,
  516. &aic3x_right_line1l_mux_controls),
  517. SND_SOC_DAPM_MUX("Right Line1R Mux", SND_SOC_NOPM, 0, 0,
  518. &aic3x_right_line1r_mux_controls),
  519. SND_SOC_DAPM_MUX("Right Line2R Mux", SND_SOC_NOPM, 0, 0,
  520. &aic3x_right_line2_mux_controls),
  521. /*
  522. * Not a real mic bias widget but similar function. This is for dynamic
  523. * control of GPIO1 digital mic modulator clock output function when
  524. * using digital mic.
  525. */
  526. SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "GPIO1 dmic modclk",
  527. AIC3X_GPIO1_REG, 4, 0xf,
  528. AIC3X_GPIO1_FUNC_DIGITAL_MIC_MODCLK,
  529. AIC3X_GPIO1_FUNC_DISABLED),
  530. /*
  531. * Also similar function like mic bias. Selects digital mic with
  532. * configurable oversampling rate instead of ADC converter.
  533. */
  534. SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 128",
  535. AIC3X_ASD_INTF_CTRLA, 0, 3, 1, 0),
  536. SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 64",
  537. AIC3X_ASD_INTF_CTRLA, 0, 3, 2, 0),
  538. SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 32",
  539. AIC3X_ASD_INTF_CTRLA, 0, 3, 3, 0),
  540. /* Mic Bias */
  541. SND_SOC_DAPM_SUPPLY("Mic Bias", MICBIAS_CTRL, 6, 0,
  542. mic_bias_event,
  543. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
  544. /* Output mixers */
  545. SND_SOC_DAPM_MIXER("Left Line Mixer", SND_SOC_NOPM, 0, 0,
  546. &aic3x_left_line_mixer_controls[0],
  547. ARRAY_SIZE(aic3x_left_line_mixer_controls)),
  548. SND_SOC_DAPM_MIXER("Right Line Mixer", SND_SOC_NOPM, 0, 0,
  549. &aic3x_right_line_mixer_controls[0],
  550. ARRAY_SIZE(aic3x_right_line_mixer_controls)),
  551. SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0,
  552. &aic3x_mono_mixer_controls[0],
  553. ARRAY_SIZE(aic3x_mono_mixer_controls)),
  554. SND_SOC_DAPM_MIXER("Left HP Mixer", SND_SOC_NOPM, 0, 0,
  555. &aic3x_left_hp_mixer_controls[0],
  556. ARRAY_SIZE(aic3x_left_hp_mixer_controls)),
  557. SND_SOC_DAPM_MIXER("Right HP Mixer", SND_SOC_NOPM, 0, 0,
  558. &aic3x_right_hp_mixer_controls[0],
  559. ARRAY_SIZE(aic3x_right_hp_mixer_controls)),
  560. SND_SOC_DAPM_MIXER("Left HPCOM Mixer", SND_SOC_NOPM, 0, 0,
  561. &aic3x_left_hpcom_mixer_controls[0],
  562. ARRAY_SIZE(aic3x_left_hpcom_mixer_controls)),
  563. SND_SOC_DAPM_MIXER("Right HPCOM Mixer", SND_SOC_NOPM, 0, 0,
  564. &aic3x_right_hpcom_mixer_controls[0],
  565. ARRAY_SIZE(aic3x_right_hpcom_mixer_controls)),
  566. SND_SOC_DAPM_OUTPUT("LLOUT"),
  567. SND_SOC_DAPM_OUTPUT("RLOUT"),
  568. SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
  569. SND_SOC_DAPM_OUTPUT("HPLOUT"),
  570. SND_SOC_DAPM_OUTPUT("HPROUT"),
  571. SND_SOC_DAPM_OUTPUT("HPLCOM"),
  572. SND_SOC_DAPM_OUTPUT("HPRCOM"),
  573. SND_SOC_DAPM_INPUT("MIC3L"),
  574. SND_SOC_DAPM_INPUT("MIC3R"),
  575. SND_SOC_DAPM_INPUT("LINE1L"),
  576. SND_SOC_DAPM_INPUT("LINE1R"),
  577. SND_SOC_DAPM_INPUT("LINE2L"),
  578. SND_SOC_DAPM_INPUT("LINE2R"),
  579. /*
  580. * Virtual output pin to detection block inside codec. This can be
  581. * used to keep codec bias on if gpio or detection features are needed.
  582. * Force pin on or construct a path with an input jack and mic bias
  583. * widgets.
  584. */
  585. SND_SOC_DAPM_OUTPUT("Detection"),
  586. };
  587. static const struct snd_soc_dapm_widget aic3007_dapm_widgets[] = {
  588. /* Class-D outputs */
  589. SND_SOC_DAPM_PGA("Left Class-D Out", CLASSD_CTRL, 3, 0, NULL, 0),
  590. SND_SOC_DAPM_PGA("Right Class-D Out", CLASSD_CTRL, 2, 0, NULL, 0),
  591. SND_SOC_DAPM_OUTPUT("SPOP"),
  592. SND_SOC_DAPM_OUTPUT("SPOM"),
  593. };
  594. static const struct snd_soc_dapm_route intercon[] = {
  595. /* Left Input */
  596. {"Left Line1L Mux", "single-ended", "LINE1L"},
  597. {"Left Line1L Mux", "differential", "LINE1L"},
  598. {"Left Line1R Mux", "single-ended", "LINE1R"},
  599. {"Left Line1R Mux", "differential", "LINE1R"},
  600. {"Left Line2L Mux", "single-ended", "LINE2L"},
  601. {"Left Line2L Mux", "differential", "LINE2L"},
  602. {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
  603. {"Left PGA Mixer", "Line1R Switch", "Left Line1R Mux"},
  604. {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
  605. {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
  606. {"Left PGA Mixer", "Mic3R Switch", "MIC3R"},
  607. {"Left ADC", NULL, "Left PGA Mixer"},
  608. {"Left ADC", NULL, "GPIO1 dmic modclk"},
  609. /* Right Input */
  610. {"Right Line1R Mux", "single-ended", "LINE1R"},
  611. {"Right Line1R Mux", "differential", "LINE1R"},
  612. {"Right Line1L Mux", "single-ended", "LINE1L"},
  613. {"Right Line1L Mux", "differential", "LINE1L"},
  614. {"Right Line2R Mux", "single-ended", "LINE2R"},
  615. {"Right Line2R Mux", "differential", "LINE2R"},
  616. {"Right PGA Mixer", "Line1L Switch", "Right Line1L Mux"},
  617. {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
  618. {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
  619. {"Right PGA Mixer", "Mic3L Switch", "MIC3L"},
  620. {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
  621. {"Right ADC", NULL, "Right PGA Mixer"},
  622. {"Right ADC", NULL, "GPIO1 dmic modclk"},
  623. /*
  624. * Logical path between digital mic enable and GPIO1 modulator clock
  625. * output function
  626. */
  627. {"GPIO1 dmic modclk", NULL, "DMic Rate 128"},
  628. {"GPIO1 dmic modclk", NULL, "DMic Rate 64"},
  629. {"GPIO1 dmic modclk", NULL, "DMic Rate 32"},
  630. /* Left DAC Output */
  631. {"Left DAC Mux", "DAC_L1", "Left DAC"},
  632. {"Left DAC Mux", "DAC_L2", "Left DAC"},
  633. {"Left DAC Mux", "DAC_L3", "Left DAC"},
  634. /* Right DAC Output */
  635. {"Right DAC Mux", "DAC_R1", "Right DAC"},
  636. {"Right DAC Mux", "DAC_R2", "Right DAC"},
  637. {"Right DAC Mux", "DAC_R3", "Right DAC"},
  638. /* Left Line Output */
  639. {"Left Line Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  640. {"Left Line Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  641. {"Left Line Mixer", "DACL1 Switch", "Left DAC Mux"},
  642. {"Left Line Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  643. {"Left Line Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  644. {"Left Line Mixer", "DACR1 Switch", "Right DAC Mux"},
  645. {"Left Line Out", NULL, "Left Line Mixer"},
  646. {"Left Line Out", NULL, "Left DAC Mux"},
  647. {"LLOUT", NULL, "Left Line Out"},
  648. /* Right Line Output */
  649. {"Right Line Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  650. {"Right Line Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  651. {"Right Line Mixer", "DACL1 Switch", "Left DAC Mux"},
  652. {"Right Line Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  653. {"Right Line Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  654. {"Right Line Mixer", "DACR1 Switch", "Right DAC Mux"},
  655. {"Right Line Out", NULL, "Right Line Mixer"},
  656. {"Right Line Out", NULL, "Right DAC Mux"},
  657. {"RLOUT", NULL, "Right Line Out"},
  658. /* Mono Output */
  659. {"Mono Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  660. {"Mono Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  661. {"Mono Mixer", "DACL1 Switch", "Left DAC Mux"},
  662. {"Mono Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  663. {"Mono Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  664. {"Mono Mixer", "DACR1 Switch", "Right DAC Mux"},
  665. {"Mono Out", NULL, "Mono Mixer"},
  666. {"MONO_LOUT", NULL, "Mono Out"},
  667. /* Left HP Output */
  668. {"Left HP Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  669. {"Left HP Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  670. {"Left HP Mixer", "DACL1 Switch", "Left DAC Mux"},
  671. {"Left HP Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  672. {"Left HP Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  673. {"Left HP Mixer", "DACR1 Switch", "Right DAC Mux"},
  674. {"Left HP Out", NULL, "Left HP Mixer"},
  675. {"Left HP Out", NULL, "Left DAC Mux"},
  676. {"HPLOUT", NULL, "Left HP Out"},
  677. /* Right HP Output */
  678. {"Right HP Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  679. {"Right HP Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  680. {"Right HP Mixer", "DACL1 Switch", "Left DAC Mux"},
  681. {"Right HP Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  682. {"Right HP Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  683. {"Right HP Mixer", "DACR1 Switch", "Right DAC Mux"},
  684. {"Right HP Out", NULL, "Right HP Mixer"},
  685. {"Right HP Out", NULL, "Right DAC Mux"},
  686. {"HPROUT", NULL, "Right HP Out"},
  687. /* Left HPCOM Output */
  688. {"Left HPCOM Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  689. {"Left HPCOM Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  690. {"Left HPCOM Mixer", "DACL1 Switch", "Left DAC Mux"},
  691. {"Left HPCOM Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  692. {"Left HPCOM Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  693. {"Left HPCOM Mixer", "DACR1 Switch", "Right DAC Mux"},
  694. {"Left HPCOM Mux", "differential of HPLOUT", "Left HP Mixer"},
  695. {"Left HPCOM Mux", "constant VCM", "Left HPCOM Mixer"},
  696. {"Left HPCOM Mux", "single-ended", "Left HPCOM Mixer"},
  697. {"Left HP Com", NULL, "Left HPCOM Mux"},
  698. {"HPLCOM", NULL, "Left HP Com"},
  699. /* Right HPCOM Output */
  700. {"Right HPCOM Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
  701. {"Right HPCOM Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
  702. {"Right HPCOM Mixer", "DACL1 Switch", "Left DAC Mux"},
  703. {"Right HPCOM Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
  704. {"Right HPCOM Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
  705. {"Right HPCOM Mixer", "DACR1 Switch", "Right DAC Mux"},
  706. {"Right HPCOM Mux", "differential of HPROUT", "Right HP Mixer"},
  707. {"Right HPCOM Mux", "constant VCM", "Right HPCOM Mixer"},
  708. {"Right HPCOM Mux", "single-ended", "Right HPCOM Mixer"},
  709. {"Right HPCOM Mux", "differential of HPLCOM", "Left HPCOM Mixer"},
  710. {"Right HPCOM Mux", "external feedback", "Right HPCOM Mixer"},
  711. {"Right HP Com", NULL, "Right HPCOM Mux"},
  712. {"HPRCOM", NULL, "Right HP Com"},
  713. };
  714. static const struct snd_soc_dapm_route intercon_3007[] = {
  715. /* Class-D outputs */
  716. {"Left Class-D Out", NULL, "Left Line Out"},
  717. {"Right Class-D Out", NULL, "Left Line Out"},
  718. {"SPOP", NULL, "Left Class-D Out"},
  719. {"SPOM", NULL, "Right Class-D Out"},
  720. };
  721. static int aic3x_add_widgets(struct snd_soc_codec *codec)
  722. {
  723. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  724. struct snd_soc_dapm_context *dapm = &codec->dapm;
  725. snd_soc_dapm_new_controls(dapm, aic3x_dapm_widgets,
  726. ARRAY_SIZE(aic3x_dapm_widgets));
  727. /* set up audio path interconnects */
  728. snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon));
  729. if (aic3x->model == AIC3X_MODEL_3007) {
  730. snd_soc_dapm_new_controls(dapm, aic3007_dapm_widgets,
  731. ARRAY_SIZE(aic3007_dapm_widgets));
  732. snd_soc_dapm_add_routes(dapm, intercon_3007,
  733. ARRAY_SIZE(intercon_3007));
  734. }
  735. return 0;
  736. }
  737. static int aic3x_hw_params(struct snd_pcm_substream *substream,
  738. struct snd_pcm_hw_params *params,
  739. struct snd_soc_dai *dai)
  740. {
  741. struct snd_soc_codec *codec = dai->codec;
  742. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  743. int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
  744. u8 data, j, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
  745. u16 d, pll_d = 1;
  746. int clk;
  747. /* select data word length */
  748. data = snd_soc_read(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
  749. switch (params_format(params)) {
  750. case SNDRV_PCM_FORMAT_S16_LE:
  751. break;
  752. case SNDRV_PCM_FORMAT_S20_3LE:
  753. data |= (0x01 << 4);
  754. break;
  755. case SNDRV_PCM_FORMAT_S24_LE:
  756. data |= (0x02 << 4);
  757. break;
  758. case SNDRV_PCM_FORMAT_S32_LE:
  759. data |= (0x03 << 4);
  760. break;
  761. }
  762. snd_soc_write(codec, AIC3X_ASD_INTF_CTRLB, data);
  763. /* Fsref can be 44100 or 48000 */
  764. fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
  765. /* Try to find a value for Q which allows us to bypass the PLL and
  766. * generate CODEC_CLK directly. */
  767. for (pll_q = 2; pll_q < 18; pll_q++)
  768. if (aic3x->sysclk / (128 * pll_q) == fsref) {
  769. bypass_pll = 1;
  770. break;
  771. }
  772. if (bypass_pll) {
  773. pll_q &= 0xf;
  774. snd_soc_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
  775. snd_soc_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
  776. /* disable PLL if it is bypassed */
  777. snd_soc_update_bits(codec, AIC3X_PLL_PROGA_REG, PLL_ENABLE, 0);
  778. } else {
  779. snd_soc_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
  780. /* enable PLL when it is used */
  781. snd_soc_update_bits(codec, AIC3X_PLL_PROGA_REG,
  782. PLL_ENABLE, PLL_ENABLE);
  783. }
  784. /* Route Left DAC to left channel input and
  785. * right DAC to right channel input */
  786. data = (LDAC2LCH | RDAC2RCH);
  787. data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
  788. if (params_rate(params) >= 64000)
  789. data |= DUAL_RATE_MODE;
  790. snd_soc_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
  791. /* codec sample rate select */
  792. data = (fsref * 20) / params_rate(params);
  793. if (params_rate(params) < 64000)
  794. data /= 2;
  795. data /= 5;
  796. data -= 2;
  797. data |= (data << 4);
  798. snd_soc_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
  799. if (bypass_pll)
  800. return 0;
  801. /* Use PLL, compute appropriate setup for j, d, r and p, the closest
  802. * one wins the game. Try with d==0 first, next with d!=0.
  803. * Constraints for j are according to the datasheet.
  804. * The sysclk is divided by 1000 to prevent integer overflows.
  805. */
  806. codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
  807. for (r = 1; r <= 16; r++)
  808. for (p = 1; p <= 8; p++) {
  809. for (j = 4; j <= 55; j++) {
  810. /* This is actually 1000*((j+(d/10000))*r)/p
  811. * The term had to be converted to get
  812. * rid of the division by 10000; d = 0 here
  813. */
  814. int tmp_clk = (1000 * j * r) / p;
  815. /* Check whether this values get closer than
  816. * the best ones we had before
  817. */
  818. if (abs(codec_clk - tmp_clk) <
  819. abs(codec_clk - last_clk)) {
  820. pll_j = j; pll_d = 0;
  821. pll_r = r; pll_p = p;
  822. last_clk = tmp_clk;
  823. }
  824. /* Early exit for exact matches */
  825. if (tmp_clk == codec_clk)
  826. goto found;
  827. }
  828. }
  829. /* try with d != 0 */
  830. for (p = 1; p <= 8; p++) {
  831. j = codec_clk * p / 1000;
  832. if (j < 4 || j > 11)
  833. continue;
  834. /* do not use codec_clk here since we'd loose precision */
  835. d = ((2048 * p * fsref) - j * aic3x->sysclk)
  836. * 100 / (aic3x->sysclk/100);
  837. clk = (10000 * j + d) / (10 * p);
  838. /* check whether this values get closer than the best
  839. * ones we had before */
  840. if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
  841. pll_j = j; pll_d = d; pll_r = 1; pll_p = p;
  842. last_clk = clk;
  843. }
  844. /* Early exit for exact matches */
  845. if (clk == codec_clk)
  846. goto found;
  847. }
  848. if (last_clk == 0) {
  849. printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
  850. return -EINVAL;
  851. }
  852. found:
  853. snd_soc_update_bits(codec, AIC3X_PLL_PROGA_REG, PLLP_MASK, pll_p);
  854. snd_soc_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG,
  855. pll_r << PLLR_SHIFT);
  856. snd_soc_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
  857. snd_soc_write(codec, AIC3X_PLL_PROGC_REG,
  858. (pll_d >> 6) << PLLD_MSB_SHIFT);
  859. snd_soc_write(codec, AIC3X_PLL_PROGD_REG,
  860. (pll_d & 0x3F) << PLLD_LSB_SHIFT);
  861. return 0;
  862. }
  863. static int aic3x_mute(struct snd_soc_dai *dai, int mute)
  864. {
  865. struct snd_soc_codec *codec = dai->codec;
  866. u8 ldac_reg = snd_soc_read(codec, LDAC_VOL) & ~MUTE_ON;
  867. u8 rdac_reg = snd_soc_read(codec, RDAC_VOL) & ~MUTE_ON;
  868. if (mute) {
  869. snd_soc_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
  870. snd_soc_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
  871. } else {
  872. snd_soc_write(codec, LDAC_VOL, ldac_reg);
  873. snd_soc_write(codec, RDAC_VOL, rdac_reg);
  874. }
  875. return 0;
  876. }
  877. static int aic3x_set_dai_sysclk(struct snd_soc_dai *codec_dai,
  878. int clk_id, unsigned int freq, int dir)
  879. {
  880. struct snd_soc_codec *codec = codec_dai->codec;
  881. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  882. /* set clock on MCLK or GPIO2 or BCLK */
  883. snd_soc_update_bits(codec, AIC3X_CLKGEN_CTRL_REG, PLLCLK_IN_MASK,
  884. clk_id << PLLCLK_IN_SHIFT);
  885. snd_soc_update_bits(codec, AIC3X_CLKGEN_CTRL_REG, CLKDIV_IN_MASK,
  886. clk_id << CLKDIV_IN_SHIFT);
  887. aic3x->sysclk = freq;
  888. return 0;
  889. }
  890. static int aic3x_set_dai_fmt(struct snd_soc_dai *codec_dai,
  891. unsigned int fmt)
  892. {
  893. struct snd_soc_codec *codec = codec_dai->codec;
  894. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  895. u8 iface_areg, iface_breg;
  896. int delay = 0;
  897. iface_areg = snd_soc_read(codec, AIC3X_ASD_INTF_CTRLA) & 0x3f;
  898. iface_breg = snd_soc_read(codec, AIC3X_ASD_INTF_CTRLB) & 0x3f;
  899. /* set master/slave audio interface */
  900. switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
  901. case SND_SOC_DAIFMT_CBM_CFM:
  902. aic3x->master = 1;
  903. iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
  904. break;
  905. case SND_SOC_DAIFMT_CBS_CFS:
  906. aic3x->master = 0;
  907. iface_areg &= ~(BIT_CLK_MASTER | WORD_CLK_MASTER);
  908. break;
  909. default:
  910. return -EINVAL;
  911. }
  912. /*
  913. * match both interface format and signal polarities since they
  914. * are fixed
  915. */
  916. switch (fmt & (SND_SOC_DAIFMT_FORMAT_MASK |
  917. SND_SOC_DAIFMT_INV_MASK)) {
  918. case (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF):
  919. break;
  920. case (SND_SOC_DAIFMT_DSP_A | SND_SOC_DAIFMT_IB_NF):
  921. delay = 1;
  922. case (SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_IB_NF):
  923. iface_breg |= (0x01 << 6);
  924. break;
  925. case (SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_NB_NF):
  926. iface_breg |= (0x02 << 6);
  927. break;
  928. case (SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_NB_NF):
  929. iface_breg |= (0x03 << 6);
  930. break;
  931. default:
  932. return -EINVAL;
  933. }
  934. /* set iface */
  935. snd_soc_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
  936. snd_soc_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
  937. snd_soc_write(codec, AIC3X_ASD_INTF_CTRLC, delay);
  938. return 0;
  939. }
  940. static int aic3x_init_3007(struct snd_soc_codec *codec)
  941. {
  942. u8 tmp1, tmp2, *cache = codec->reg_cache;
  943. /*
  944. * There is no need to cache writes to undocumented page 0xD but
  945. * respective page 0 register cache entries must be preserved
  946. */
  947. tmp1 = cache[0xD];
  948. tmp2 = cache[0x8];
  949. /* Class-D speaker driver init; datasheet p. 46 */
  950. snd_soc_write(codec, AIC3X_PAGE_SELECT, 0x0D);
  951. snd_soc_write(codec, 0xD, 0x0D);
  952. snd_soc_write(codec, 0x8, 0x5C);
  953. snd_soc_write(codec, 0x8, 0x5D);
  954. snd_soc_write(codec, 0x8, 0x5C);
  955. snd_soc_write(codec, AIC3X_PAGE_SELECT, 0x00);
  956. cache[0xD] = tmp1;
  957. cache[0x8] = tmp2;
  958. return 0;
  959. }
  960. static int aic3x_regulator_event(struct notifier_block *nb,
  961. unsigned long event, void *data)
  962. {
  963. struct aic3x_disable_nb *disable_nb =
  964. container_of(nb, struct aic3x_disable_nb, nb);
  965. struct aic3x_priv *aic3x = disable_nb->aic3x;
  966. if (event & REGULATOR_EVENT_DISABLE) {
  967. /*
  968. * Put codec to reset and require cache sync as at least one
  969. * of the supplies was disabled
  970. */
  971. if (gpio_is_valid(aic3x->gpio_reset))
  972. gpio_set_value(aic3x->gpio_reset, 0);
  973. aic3x->codec->cache_sync = 1;
  974. }
  975. return 0;
  976. }
  977. static int aic3x_set_power(struct snd_soc_codec *codec, int power)
  978. {
  979. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  980. int i, ret;
  981. u8 *cache = codec->reg_cache;
  982. if (power) {
  983. ret = regulator_bulk_enable(ARRAY_SIZE(aic3x->supplies),
  984. aic3x->supplies);
  985. if (ret)
  986. goto out;
  987. aic3x->power = 1;
  988. /*
  989. * Reset release and cache sync is necessary only if some
  990. * supply was off or if there were cached writes
  991. */
  992. if (!codec->cache_sync)
  993. goto out;
  994. if (gpio_is_valid(aic3x->gpio_reset)) {
  995. udelay(1);
  996. gpio_set_value(aic3x->gpio_reset, 1);
  997. }
  998. /* Sync reg_cache with the hardware */
  999. codec->cache_only = 0;
  1000. for (i = AIC3X_SAMPLE_RATE_SEL_REG; i < ARRAY_SIZE(aic3x_reg); i++)
  1001. snd_soc_write(codec, i, cache[i]);
  1002. if (aic3x->model == AIC3X_MODEL_3007)
  1003. aic3x_init_3007(codec);
  1004. codec->cache_sync = 0;
  1005. } else {
  1006. /*
  1007. * Do soft reset to this codec instance in order to clear
  1008. * possible VDD leakage currents in case the supply regulators
  1009. * remain on
  1010. */
  1011. snd_soc_write(codec, AIC3X_RESET, SOFT_RESET);
  1012. codec->cache_sync = 1;
  1013. aic3x->power = 0;
  1014. /* HW writes are needless when bias is off */
  1015. codec->cache_only = 1;
  1016. ret = regulator_bulk_disable(ARRAY_SIZE(aic3x->supplies),
  1017. aic3x->supplies);
  1018. }
  1019. out:
  1020. return ret;
  1021. }
  1022. static int aic3x_set_bias_level(struct snd_soc_codec *codec,
  1023. enum snd_soc_bias_level level)
  1024. {
  1025. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  1026. switch (level) {
  1027. case SND_SOC_BIAS_ON:
  1028. break;
  1029. case SND_SOC_BIAS_PREPARE:
  1030. if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY &&
  1031. aic3x->master) {
  1032. /* enable pll */
  1033. snd_soc_update_bits(codec, AIC3X_PLL_PROGA_REG,
  1034. PLL_ENABLE, PLL_ENABLE);
  1035. }
  1036. break;
  1037. case SND_SOC_BIAS_STANDBY:
  1038. if (!aic3x->power)
  1039. aic3x_set_power(codec, 1);
  1040. if (codec->dapm.bias_level == SND_SOC_BIAS_PREPARE &&
  1041. aic3x->master) {
  1042. /* disable pll */
  1043. snd_soc_update_bits(codec, AIC3X_PLL_PROGA_REG,
  1044. PLL_ENABLE, 0);
  1045. }
  1046. break;
  1047. case SND_SOC_BIAS_OFF:
  1048. if (aic3x->power)
  1049. aic3x_set_power(codec, 0);
  1050. break;
  1051. }
  1052. codec->dapm.bias_level = level;
  1053. return 0;
  1054. }
  1055. #define AIC3X_RATES SNDRV_PCM_RATE_8000_96000
  1056. #define AIC3X_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
  1057. SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
  1058. static const struct snd_soc_dai_ops aic3x_dai_ops = {
  1059. .hw_params = aic3x_hw_params,
  1060. .digital_mute = aic3x_mute,
  1061. .set_sysclk = aic3x_set_dai_sysclk,
  1062. .set_fmt = aic3x_set_dai_fmt,
  1063. };
  1064. static struct snd_soc_dai_driver aic3x_dai = {
  1065. .name = "tlv320aic3x-hifi",
  1066. .playback = {
  1067. .stream_name = "Playback",
  1068. .channels_min = 2,
  1069. .channels_max = 2,
  1070. .rates = AIC3X_RATES,
  1071. .formats = AIC3X_FORMATS,},
  1072. .capture = {
  1073. .stream_name = "Capture",
  1074. .channels_min = 2,
  1075. .channels_max = 2,
  1076. .rates = AIC3X_RATES,
  1077. .formats = AIC3X_FORMATS,},
  1078. .ops = &aic3x_dai_ops,
  1079. .symmetric_rates = 1,
  1080. };
  1081. static int aic3x_suspend(struct snd_soc_codec *codec)
  1082. {
  1083. aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
  1084. return 0;
  1085. }
  1086. static int aic3x_resume(struct snd_soc_codec *codec)
  1087. {
  1088. aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
  1089. return 0;
  1090. }
  1091. /*
  1092. * initialise the AIC3X driver
  1093. * register the mixer and dsp interfaces with the kernel
  1094. */
  1095. static int aic3x_init(struct snd_soc_codec *codec)
  1096. {
  1097. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  1098. snd_soc_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
  1099. snd_soc_write(codec, AIC3X_RESET, SOFT_RESET);
  1100. /* DAC default volume and mute */
  1101. snd_soc_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
  1102. snd_soc_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
  1103. /* DAC to HP default volume and route to Output mixer */
  1104. snd_soc_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
  1105. snd_soc_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
  1106. snd_soc_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
  1107. snd_soc_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
  1108. /* DAC to Line Out default volume and route to Output mixer */
  1109. snd_soc_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
  1110. snd_soc_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
  1111. /* DAC to Mono Line Out default volume and route to Output mixer */
  1112. snd_soc_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
  1113. snd_soc_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
  1114. /* unmute all outputs */
  1115. snd_soc_update_bits(codec, LLOPM_CTRL, UNMUTE, UNMUTE);
  1116. snd_soc_update_bits(codec, RLOPM_CTRL, UNMUTE, UNMUTE);
  1117. snd_soc_update_bits(codec, MONOLOPM_CTRL, UNMUTE, UNMUTE);
  1118. snd_soc_update_bits(codec, HPLOUT_CTRL, UNMUTE, UNMUTE);
  1119. snd_soc_update_bits(codec, HPROUT_CTRL, UNMUTE, UNMUTE);
  1120. snd_soc_update_bits(codec, HPLCOM_CTRL, UNMUTE, UNMUTE);
  1121. snd_soc_update_bits(codec, HPRCOM_CTRL, UNMUTE, UNMUTE);
  1122. /* ADC default volume and unmute */
  1123. snd_soc_write(codec, LADC_VOL, DEFAULT_GAIN);
  1124. snd_soc_write(codec, RADC_VOL, DEFAULT_GAIN);
  1125. /* By default route Line1 to ADC PGA mixer */
  1126. snd_soc_write(codec, LINE1L_2_LADC_CTRL, 0x0);
  1127. snd_soc_write(codec, LINE1R_2_RADC_CTRL, 0x0);
  1128. /* PGA to HP Bypass default volume, disconnect from Output Mixer */
  1129. snd_soc_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
  1130. snd_soc_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
  1131. snd_soc_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
  1132. snd_soc_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
  1133. /* PGA to Line Out default volume, disconnect from Output Mixer */
  1134. snd_soc_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
  1135. snd_soc_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
  1136. /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
  1137. snd_soc_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
  1138. snd_soc_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
  1139. /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
  1140. snd_soc_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
  1141. snd_soc_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
  1142. snd_soc_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
  1143. snd_soc_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
  1144. /* Line2 Line Out default volume, disconnect from Output Mixer */
  1145. snd_soc_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
  1146. snd_soc_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
  1147. /* Line2 to Mono Out default volume, disconnect from Output Mixer */
  1148. snd_soc_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
  1149. snd_soc_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
  1150. if (aic3x->model == AIC3X_MODEL_3007) {
  1151. aic3x_init_3007(codec);
  1152. snd_soc_write(codec, CLASSD_CTRL, 0);
  1153. }
  1154. return 0;
  1155. }
  1156. static bool aic3x_is_shared_reset(struct aic3x_priv *aic3x)
  1157. {
  1158. struct aic3x_priv *a;
  1159. list_for_each_entry(a, &reset_list, list) {
  1160. if (gpio_is_valid(aic3x->gpio_reset) &&
  1161. aic3x->gpio_reset == a->gpio_reset)
  1162. return true;
  1163. }
  1164. return false;
  1165. }
  1166. static int aic3x_probe(struct snd_soc_codec *codec)
  1167. {
  1168. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  1169. int ret, i;
  1170. INIT_LIST_HEAD(&aic3x->list);
  1171. aic3x->codec = codec;
  1172. ret = snd_soc_codec_set_cache_io(codec, 8, 8, aic3x->control_type);
  1173. if (ret != 0) {
  1174. dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
  1175. return ret;
  1176. }
  1177. if (gpio_is_valid(aic3x->gpio_reset) &&
  1178. !aic3x_is_shared_reset(aic3x)) {
  1179. ret = gpio_request(aic3x->gpio_reset, "tlv320aic3x reset");
  1180. if (ret != 0)
  1181. goto err_gpio;
  1182. gpio_direction_output(aic3x->gpio_reset, 0);
  1183. }
  1184. for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++)
  1185. aic3x->supplies[i].supply = aic3x_supply_names[i];
  1186. ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(aic3x->supplies),
  1187. aic3x->supplies);
  1188. if (ret != 0) {
  1189. dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
  1190. goto err_get;
  1191. }
  1192. for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++) {
  1193. aic3x->disable_nb[i].nb.notifier_call = aic3x_regulator_event;
  1194. aic3x->disable_nb[i].aic3x = aic3x;
  1195. ret = regulator_register_notifier(aic3x->supplies[i].consumer,
  1196. &aic3x->disable_nb[i].nb);
  1197. if (ret) {
  1198. dev_err(codec->dev,
  1199. "Failed to request regulator notifier: %d\n",
  1200. ret);
  1201. goto err_notif;
  1202. }
  1203. }
  1204. codec->cache_only = 1;
  1205. aic3x_init(codec);
  1206. if (aic3x->setup) {
  1207. /* setup GPIO functions */
  1208. snd_soc_write(codec, AIC3X_GPIO1_REG,
  1209. (aic3x->setup->gpio_func[0] & 0xf) << 4);
  1210. snd_soc_write(codec, AIC3X_GPIO2_REG,
  1211. (aic3x->setup->gpio_func[1] & 0xf) << 4);
  1212. }
  1213. snd_soc_add_codec_controls(codec, aic3x_snd_controls,
  1214. ARRAY_SIZE(aic3x_snd_controls));
  1215. if (aic3x->model == AIC3X_MODEL_3007)
  1216. snd_soc_add_codec_controls(codec, &aic3x_classd_amp_gain_ctrl, 1);
  1217. /* set mic bias voltage */
  1218. switch (aic3x->micbias_vg) {
  1219. case AIC3X_MICBIAS_2_0V:
  1220. case AIC3X_MICBIAS_2_5V:
  1221. case AIC3X_MICBIAS_AVDDV:
  1222. snd_soc_update_bits(codec, MICBIAS_CTRL,
  1223. MICBIAS_LEVEL_MASK,
  1224. (aic3x->micbias_vg) << MICBIAS_LEVEL_SHIFT);
  1225. break;
  1226. case AIC3X_MICBIAS_OFF:
  1227. /*
  1228. * noting to do. target won't enter here. This is just to avoid
  1229. * compile time warning "warning: enumeration value
  1230. * 'AIC3X_MICBIAS_OFF' not handled in switch"
  1231. */
  1232. break;
  1233. }
  1234. aic3x_add_widgets(codec);
  1235. list_add(&aic3x->list, &reset_list);
  1236. return 0;
  1237. err_notif:
  1238. while (i--)
  1239. regulator_unregister_notifier(aic3x->supplies[i].consumer,
  1240. &aic3x->disable_nb[i].nb);
  1241. regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
  1242. err_get:
  1243. if (gpio_is_valid(aic3x->gpio_reset) &&
  1244. !aic3x_is_shared_reset(aic3x))
  1245. gpio_free(aic3x->gpio_reset);
  1246. err_gpio:
  1247. return ret;
  1248. }
  1249. static int aic3x_remove(struct snd_soc_codec *codec)
  1250. {
  1251. struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
  1252. int i;
  1253. aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
  1254. list_del(&aic3x->list);
  1255. if (gpio_is_valid(aic3x->gpio_reset) &&
  1256. !aic3x_is_shared_reset(aic3x)) {
  1257. gpio_set_value(aic3x->gpio_reset, 0);
  1258. gpio_free(aic3x->gpio_reset);
  1259. }
  1260. for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++)
  1261. regulator_unregister_notifier(aic3x->supplies[i].consumer,
  1262. &aic3x->disable_nb[i].nb);
  1263. regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
  1264. return 0;
  1265. }
  1266. static struct snd_soc_codec_driver soc_codec_dev_aic3x = {
  1267. .set_bias_level = aic3x_set_bias_level,
  1268. .idle_bias_off = true,
  1269. .reg_cache_size = ARRAY_SIZE(aic3x_reg),
  1270. .reg_word_size = sizeof(u8),
  1271. .reg_cache_default = aic3x_reg,
  1272. .probe = aic3x_probe,
  1273. .remove = aic3x_remove,
  1274. .suspend = aic3x_suspend,
  1275. .resume = aic3x_resume,
  1276. };
  1277. /*
  1278. * AIC3X 2 wire address can be up to 4 devices with device addresses
  1279. * 0x18, 0x19, 0x1A, 0x1B
  1280. */
  1281. static const struct i2c_device_id aic3x_i2c_id[] = {
  1282. { "tlv320aic3x", AIC3X_MODEL_3X },
  1283. { "tlv320aic33", AIC3X_MODEL_33 },
  1284. { "tlv320aic3007", AIC3X_MODEL_3007 },
  1285. { "tlv320aic3106", AIC3X_MODEL_3X },
  1286. { }
  1287. };
  1288. MODULE_DEVICE_TABLE(i2c, aic3x_i2c_id);
  1289. /*
  1290. * If the i2c layer weren't so broken, we could pass this kind of data
  1291. * around
  1292. */
  1293. static int aic3x_i2c_probe(struct i2c_client *i2c,
  1294. const struct i2c_device_id *id)
  1295. {
  1296. struct aic3x_pdata *pdata = i2c->dev.platform_data;
  1297. struct aic3x_priv *aic3x;
  1298. struct aic3x_setup_data *ai3x_setup;
  1299. struct device_node *np = i2c->dev.of_node;
  1300. int ret;
  1301. u32 value;
  1302. aic3x = devm_kzalloc(&i2c->dev, sizeof(struct aic3x_priv), GFP_KERNEL);
  1303. if (aic3x == NULL) {
  1304. dev_err(&i2c->dev, "failed to create private data\n");
  1305. return -ENOMEM;
  1306. }
  1307. aic3x->control_type = SND_SOC_I2C;
  1308. i2c_set_clientdata(i2c, aic3x);
  1309. if (pdata) {
  1310. aic3x->gpio_reset = pdata->gpio_reset;
  1311. aic3x->setup = pdata->setup;
  1312. aic3x->micbias_vg = pdata->micbias_vg;
  1313. } else if (np) {
  1314. ai3x_setup = devm_kzalloc(&i2c->dev, sizeof(*ai3x_setup),
  1315. GFP_KERNEL);
  1316. if (ai3x_setup == NULL) {
  1317. dev_err(&i2c->dev, "failed to create private data\n");
  1318. return -ENOMEM;
  1319. }
  1320. ret = of_get_named_gpio(np, "gpio-reset", 0);
  1321. if (ret >= 0)
  1322. aic3x->gpio_reset = ret;
  1323. else
  1324. aic3x->gpio_reset = -1;
  1325. if (of_property_read_u32_array(np, "ai3x-gpio-func",
  1326. ai3x_setup->gpio_func, 2) >= 0) {
  1327. aic3x->setup = ai3x_setup;
  1328. }
  1329. if (!of_property_read_u32(np, "ai3x-micbias-vg", &value)) {
  1330. switch (value) {
  1331. case 1 :
  1332. aic3x->micbias_vg = AIC3X_MICBIAS_2_0V;
  1333. break;
  1334. case 2 :
  1335. aic3x->micbias_vg = AIC3X_MICBIAS_2_5V;
  1336. break;
  1337. case 3 :
  1338. aic3x->micbias_vg = AIC3X_MICBIAS_AVDDV;
  1339. break;
  1340. default :
  1341. aic3x->micbias_vg = AIC3X_MICBIAS_OFF;
  1342. dev_err(&i2c->dev, "Unsuitable MicBias voltage "
  1343. "found in DT\n");
  1344. }
  1345. } else {
  1346. aic3x->micbias_vg = AIC3X_MICBIAS_OFF;
  1347. }
  1348. } else {
  1349. aic3x->gpio_reset = -1;
  1350. }
  1351. aic3x->model = id->driver_data;
  1352. ret = snd_soc_register_codec(&i2c->dev,
  1353. &soc_codec_dev_aic3x, &aic3x_dai, 1);
  1354. return ret;
  1355. }
  1356. static int aic3x_i2c_remove(struct i2c_client *client)
  1357. {
  1358. snd_soc_unregister_codec(&client->dev);
  1359. return 0;
  1360. }
  1361. #if defined(CONFIG_OF)
  1362. static const struct of_device_id tlv320aic3x_of_match[] = {
  1363. { .compatible = "ti,tlv320aic3x", },
  1364. { .compatible = "ti,tlv320aic33" },
  1365. { .compatible = "ti,tlv320aic3007" },
  1366. { .compatible = "ti,tlv320aic3106" },
  1367. {},
  1368. };
  1369. MODULE_DEVICE_TABLE(of, tlv320aic3x_of_match);
  1370. #endif
  1371. /* machine i2c codec control layer */
  1372. static struct i2c_driver aic3x_i2c_driver = {
  1373. .driver = {
  1374. .name = "tlv320aic3x-codec",
  1375. .owner = THIS_MODULE,
  1376. .of_match_table = of_match_ptr(tlv320aic3x_of_match),
  1377. },
  1378. .probe = aic3x_i2c_probe,
  1379. .remove = aic3x_i2c_remove,
  1380. .id_table = aic3x_i2c_id,
  1381. };
  1382. module_i2c_driver(aic3x_i2c_driver);
  1383. MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
  1384. MODULE_AUTHOR("Vladimir Barinov");
  1385. MODULE_LICENSE("GPL");