tlv320aic3x.c 51 KB

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