tlv320aic3x.c 48 KB

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