csra66x0.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  1. /*
  2. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/delay.h>
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/i2c.h>
  18. #include <linux/slab.h>
  19. #include <sound/core.h>
  20. #include <sound/pcm.h>
  21. #include <sound/pcm_params.h>
  22. #include <sound/tlv.h>
  23. #include <sound/soc.h>
  24. #include <linux/gpio.h>
  25. #include <linux/of_gpio.h>
  26. #include "csra66x0.h"
  27. /* CSRA66X0 register default values */
  28. static struct reg_default csra66x0_reg_defaults[] = {
  29. {CSRA66X0_AUDIO_IF_RX_CONFIG1, 0x00},
  30. {CSRA66X0_AUDIO_IF_RX_CONFIG2, 0x0B},
  31. {CSRA66X0_AUDIO_IF_RX_CONFIG3, 0x0F},
  32. {CSRA66X0_AUDIO_IF_TX_EN, 0x00},
  33. {CSRA66X0_AUDIO_IF_TX_CONFIG1, 0x6B},
  34. {CSRA66X0_AUDIO_IF_TX_CONFIG2, 0x02},
  35. {CSRA66X0_I2C_DEVICE_ADDRESS, 0x0D},
  36. {CSRA66X0_CHIP_ID_FA, 0x39},
  37. {CSRA66X0_ROM_VER_FA, 0x08},
  38. {CSRA66X0_CHIP_REV_0_FA, 0x05},
  39. {CSRA66X0_CHIP_REV_1_FA, 0x03},
  40. {CSRA66X0_CH1_MIX_SEL, 0x01},
  41. {CSRA66X0_CH2_MIX_SEL, 0x10},
  42. {CSRA66X0_CH1_SAMPLE1_SCALE_0, 0x00},
  43. {CSRA66X0_CH1_SAMPLE1_SCALE_1, 0x20},
  44. {CSRA66X0_CH1_SAMPLE3_SCALE_0, 0x00},
  45. {CSRA66X0_CH1_SAMPLE3_SCALE_1, 0x20},
  46. {CSRA66X0_CH1_SAMPLE5_SCALE_0, 0x00},
  47. {CSRA66X0_CH1_SAMPLE5_SCALE_1, 0x20},
  48. {CSRA66X0_CH1_SAMPLE7_SCALE_0, 0x00},
  49. {CSRA66X0_CH1_SAMPLE7_SCALE_1, 0x20},
  50. {CSRA66X0_CH1_SAMPLE2_SCALE_0, 0x00},
  51. {CSRA66X0_CH1_SAMPLE2_SCALE_1, 0x20},
  52. {CSRA66X0_CH1_SAMPLE4_SCALE_0, 0x00},
  53. {CSRA66X0_CH1_SAMPLE4_SCALE_1, 0x20},
  54. {CSRA66X0_CH1_SAMPLE6_SCALE_0, 0x00},
  55. {CSRA66X0_CH1_SAMPLE6_SCALE_1, 0x20},
  56. {CSRA66X0_CH1_SAMPLE8_SCALE_0, 0x00},
  57. {CSRA66X0_CH1_SAMPLE8_SCALE_1, 0x20},
  58. {CSRA66X0_CH2_SAMPLE1_SCALE_0, 0x00},
  59. {CSRA66X0_CH2_SAMPLE1_SCALE_1, 0x20},
  60. {CSRA66X0_CH2_SAMPLE3_SCALE_0, 0x00},
  61. {CSRA66X0_CH2_SAMPLE3_SCALE_1, 0x20},
  62. {CSRA66X0_CH2_SAMPLE5_SCALE_0, 0x00},
  63. {CSRA66X0_CH2_SAMPLE5_SCALE_1, 0x20},
  64. {CSRA66X0_CH2_SAMPLE7_SCALE_0, 0x00},
  65. {CSRA66X0_CH2_SAMPLE7_SCALE_1, 0x20},
  66. {CSRA66X0_CH2_SAMPLE2_SCALE_0, 0x00},
  67. {CSRA66X0_CH2_SAMPLE2_SCALE_1, 0x20},
  68. {CSRA66X0_CH2_SAMPLE4_SCALE_0, 0x00},
  69. {CSRA66X0_CH2_SAMPLE4_SCALE_1, 0x20},
  70. {CSRA66X0_CH2_SAMPLE6_SCALE_0, 0x00},
  71. {CSRA66X0_CH2_SAMPLE6_SCALE_1, 0x20},
  72. {CSRA66X0_CH2_SAMPLE8_SCALE_0, 0x00},
  73. {CSRA66X0_CH2_SAMPLE8_SCALE_1, 0x20},
  74. {CSRA66X0_VOLUME_CONFIG_FA, 0x26},
  75. {CSRA66X0_STARTUP_DELAY_FA, 0x00},
  76. {CSRA66X0_CH1_VOLUME_0_FA, 0x19},
  77. {CSRA66X0_CH1_VOLUME_1_FA, 0x01},
  78. {CSRA66X0_CH2_VOLUME_0_FA, 0x19},
  79. {CSRA66X0_CH2_VOLUME_1_FA, 0x01},
  80. {CSRA66X0_QUAD_ENC_COUNT_0_FA, 0x00},
  81. {CSRA66X0_QUAD_ENC_COUNT_1_FA, 0x00},
  82. {CSRA66X0_SOFT_CLIP_CONFIG, 0x00},
  83. {CSRA66X0_CH1_HARD_CLIP_THRESH, 0x00},
  84. {CSRA66X0_CH2_HARD_CLIP_THRESH, 0x00},
  85. {CSRA66X0_SOFT_CLIP_THRESH, 0x00},
  86. {CSRA66X0_DS_ENABLE_THRESH_0, 0x05},
  87. {CSRA66X0_DS_ENABLE_THRESH_1, 0x00},
  88. {CSRA66X0_DS_TARGET_COUNT_0, 0x00},
  89. {CSRA66X0_DS_TARGET_COUNT_1, 0xFF},
  90. {CSRA66X0_DS_TARGET_COUNT_2, 0xFF},
  91. {CSRA66X0_DS_DISABLE_THRESH_0, 0x0F},
  92. {CSRA66X0_DS_DISABLE_THRESH_1, 0x00},
  93. {CSRA66X0_DCA_CTRL, 0x07},
  94. {CSRA66X0_CH1_DCA_THRESH, 0x40},
  95. {CSRA66X0_CH2_DCA_THRESH, 0x40},
  96. {CSRA66X0_DCA_ATTACK_RATE, 0x00},
  97. {CSRA66X0_DCA_RELEASE_RATE, 0x00},
  98. {CSRA66X0_CH1_OUTPUT_INVERT_EN, 0x00},
  99. {CSRA66X0_CH2_OUTPUT_INVERT_EN, 0x00},
  100. {CSRA66X0_CH1_176P4K_DELAY, 0x00},
  101. {CSRA66X0_CH2_176P4K_DELAY, 0x00},
  102. {CSRA66X0_CH1_192K_DELAY, 0x00},
  103. {CSRA66X0_CH2_192K_DELAY, 0x00},
  104. {CSRA66X0_DEEMP_CONFIG_FA, 0x00},
  105. {CSRA66X0_CH1_TREBLE_GAIN_CTRL_FA, 0x00},
  106. {CSRA66X0_CH2_TREBLE_GAIN_CTRL_FA, 0x00},
  107. {CSRA66X0_CH1_TREBLE_FC_CTRL_FA, 0x00},
  108. {CSRA66X0_CH2_TREBLE_FC_CTRL_FA, 0x00},
  109. {CSRA66X0_CH1_BASS_GAIN_CTRL_FA, 0x00},
  110. {CSRA66X0_CH2_BASS_GAIN_CTRL_FA, 0x00},
  111. {CSRA66X0_CH1_BASS_FC_CTRL_FA, 0x00},
  112. {CSRA66X0_CH2_BASS_FC_CTRL_FA, 0x00},
  113. {CSRA66X0_FILTER_SEL_8K, 0x00},
  114. {CSRA66X0_FILTER_SEL_11P025K, 0x00},
  115. {CSRA66X0_FILTER_SEL_16K, 0x00},
  116. {CSRA66X0_FILTER_SEL_22P05K, 0x00},
  117. {CSRA66X0_FILTER_SEL_32K, 0x00},
  118. {CSRA66X0_FILTER_SEL_44P1K_48K, 0x00},
  119. {CSRA66X0_FILTER_SEL_88P2K_96K, 0x00},
  120. {CSRA66X0_FILTER_SEL_176P4K_192K, 0x00},
  121. /* RESERVED */
  122. {CSRA66X0_USER_DSP_CTRL, 0x00},
  123. {CSRA66X0_TEST_TONE_CTRL, 0x00},
  124. {CSRA66X0_TEST_TONE_FREQ_0, 0x00},
  125. {CSRA66X0_TEST_TONE_FREQ_1, 0x00},
  126. {CSRA66X0_TEST_TONE_FREQ_2, 0x00},
  127. {CSRA66X0_AUDIO_RATE_CTRL_FA, 0x08},
  128. {CSRA66X0_MODULATION_INDEX_CTRL, 0x3F},
  129. {CSRA66X0_MODULATION_INDEX_COUNT, 0x10},
  130. {CSRA66X0_MIN_MODULATION_PULSE_WIDTH, 0x7A},
  131. {CSRA66X0_DEAD_TIME_CTRL, 0x00},
  132. {CSRA66X0_DEAD_TIME_THRESHOLD_0, 0xE7},
  133. {CSRA66X0_DEAD_TIME_THRESHOLD_1, 0x26},
  134. {CSRA66X0_DEAD_TIME_THRESHOLD_2, 0x40},
  135. {CSRA66X0_CH1_LOW_SIDE_DLY, 0x00},
  136. {CSRA66X0_CH2_LOW_SIDE_DLY, 0x00},
  137. {CSRA66X0_SPECTRUM_CTRL, 0x00},
  138. /* RESERVED */
  139. {CSRA66X0_SPECTRUM_SPREAD_CTRL, 0x0C},
  140. /* RESERVED */
  141. {CSRA66X0_EXT_PA_PROTECT_POLARITY, 0x03},
  142. {CSRA66X0_TEMP0_BACKOFF_COMP_VALUE, 0x98},
  143. {CSRA66X0_TEMP0_SHUTDOWN_COMP_VALUE, 0xA3},
  144. {CSRA66X0_TEMP1_BACKOFF_COMP_VALUE, 0x98},
  145. {CSRA66X0_TEMP1_SHUTDOWN_COMP_VALUE, 0xA3},
  146. {CSRA66X0_TEMP_PROT_BACKOFF, 0x00},
  147. {CSRA66X0_TEMP_READ0_FA, 0x00},
  148. {CSRA66X0_TEMP_READ1_FA, 0x00},
  149. {CSRA66X0_CHIP_STATE_CTRL_FA, 0x02},
  150. /* RESERVED */
  151. {CSRA66X0_PWM_OUTPUT_CONFIG, 0x00},
  152. {CSRA66X0_MISC_CONTROL_STATUS_0, 0x08},
  153. {CSRA66X0_MISC_CONTROL_STATUS_1_FA, 0x40},
  154. {CSRA66X0_PIO0_SELECT, 0x00},
  155. {CSRA66X0_PIO1_SELECT, 0x00},
  156. {CSRA66X0_PIO2_SELECT, 0x00},
  157. {CSRA66X0_PIO3_SELECT, 0x00},
  158. {CSRA66X0_PIO4_SELECT, 0x00},
  159. {CSRA66X0_PIO5_SELECT, 0x00},
  160. {CSRA66X0_PIO6_SELECT, 0x00},
  161. {CSRA66X0_PIO7_SELECT, 0x00},
  162. {CSRA66X0_PIO8_SELECT, 0x00},
  163. {CSRA66X0_PIO_DIRN0, 0xFF},
  164. {CSRA66X0_PIO_DIRN1, 0x01},
  165. {CSRA66X0_PIO_PULL_EN0, 0xFF},
  166. {CSRA66X0_PIO_PULL_EN1, 0x01},
  167. {CSRA66X0_PIO_PULL_DIR0, 0x00},
  168. {CSRA66X0_PIO_PULL_DIR1, 0x00},
  169. {CSRA66X0_PIO_DRIVE_OUT0_FA, 0x00},
  170. {CSRA66X0_PIO_DRIVE_OUT1_FA, 0x00},
  171. {CSRA66X0_PIO_STATUS_IN0_FA, 0x00},
  172. {CSRA66X0_PIO_STATUS_IN1_FA, 0x00},
  173. /* RESERVED */
  174. {CSRA66X0_IRQ_OUTPUT_ENABLE, 0x00},
  175. {CSRA66X0_IRQ_OUTPUT_POLARITY, 0x01},
  176. {CSRA66X0_IRQ_OUTPUT_STATUS_FA, 0x00},
  177. {CSRA66X0_CLIP_DCA_STATUS_FA, 0x00},
  178. {CSRA66X0_CHIP_STATE_STATUS_FA, 0x02},
  179. {CSRA66X0_FAULT_STATUS_FA, 0x00},
  180. {CSRA66X0_OTP_STATUS_FA, 0x00},
  181. {CSRA66X0_AUDIO_IF_STATUS_FA, 0x00},
  182. /* RESERVED */
  183. {CSRA66X0_DSP_SATURATION_STATUS_FA, 0x00},
  184. {CSRA66X0_AUDIO_RATE_STATUS_FA, 0x00},
  185. /* RESERVED */
  186. {CSRA66X0_DISABLE_PWM_OUTPUT, 0x00},
  187. /* RESERVED */
  188. {CSRA66X0_OTP_VER_FA, 0x03},
  189. {CSRA66X0_RAM_VER_FA, 0x02},
  190. /* RESERVED */
  191. {CSRA66X0_AUDIO_SATURATION_FLAGS_FA, 0x00},
  192. {CSRA66X0_DCOFFSET_CHAN_1_01_FA, 0x00},
  193. {CSRA66X0_DCOFFSET_CHAN_1_02_FA, 0x00},
  194. {CSRA66X0_DCOFFSET_CHAN_1_03_FA, 0x00},
  195. {CSRA66X0_DCOFFSET_CHAN_2_01_FA, 0x00},
  196. {CSRA66X0_DCOFFSET_CHAN_2_02_FA, 0x00},
  197. {CSRA66X0_DCOFFSET_CHAN_2_03_FA, 0x00},
  198. {CSRA66X0_FORCED_PA_SWITCHING_CTRL, 0x90},
  199. {CSRA66X0_PA_FORCE_PULSE_WIDTH, 0x07},
  200. {CSRA66X0_PA_HIGH_MODULATION_CTRL_CH1, 0x00},
  201. /* RESERVED */
  202. {CSRA66X0_HIGH_MODULATION_THRESHOLD_LOW, 0xD4},
  203. {CSRA66X0_HIGH_MODULATION_THRESHOLD_HIGH, 0x78},
  204. /* RESERVED */
  205. {CSRA66X0_PA_FREEZE_CTRL, 0x00},
  206. {CSRA66X0_DCA_FREEZE_CTRL, 0x3C},
  207. /* RESERVED */
  208. };
  209. static bool csra66x0_volatile_register(struct device *dev, unsigned int reg)
  210. {
  211. switch (reg) {
  212. case CSRA66X0_CHIP_ID_FA:
  213. case CSRA66X0_TEMP_READ0_FA:
  214. case CSRA66X0_TEMP_READ1_FA:
  215. case CSRA66X0_MISC_CONTROL_STATUS_1_FA:
  216. case CSRA66X0_IRQ_OUTPUT_STATUS_FA:
  217. case CSRA66X0_CLIP_DCA_STATUS_FA:
  218. case CSRA66X0_CHIP_STATE_STATUS_FA:
  219. case CSRA66X0_FAULT_STATUS_FA:
  220. case CSRA66X0_OTP_STATUS_FA:
  221. case CSRA66X0_AUDIO_IF_STATUS_FA:
  222. case CSRA66X0_DSP_SATURATION_STATUS_FA:
  223. case CSRA66X0_AUDIO_RATE_STATUS_FA:
  224. return true;
  225. default:
  226. return false;
  227. }
  228. }
  229. static bool csra66x0_writeable_registers(struct device *dev, unsigned int reg)
  230. {
  231. if ((reg >= CSRA66X0_AUDIO_IF_RX_CONFIG1)
  232. && (reg <= CSRA66X0_MAX_REGISTER_ADDR))
  233. return true;
  234. return false;
  235. }
  236. static bool csra66x0_readable_registers(struct device *dev, unsigned int reg)
  237. {
  238. if ((reg >= CSRA66X0_AUDIO_IF_RX_CONFIG1)
  239. && (reg <= CSRA66X0_MAX_REGISTER_ADDR))
  240. return true;
  241. return false;
  242. }
  243. /* codec private data */
  244. struct csra66x0_priv {
  245. struct regmap *regmap;
  246. struct snd_soc_codec *codec;
  247. int spk_volume_ch1;
  248. int spk_volume_ch2;
  249. int irq;
  250. int vreg_gpio;
  251. u32 irq_active_low;
  252. u32 in_cluster;
  253. u32 is_master;
  254. };
  255. /*
  256. * CSRA66X0 Controls
  257. */
  258. static const DECLARE_TLV_DB_SCALE(csra66x0_volume_tlv, -9000, 25, 0);
  259. static const DECLARE_TLV_DB_RANGE(csra66x0_bass_treble_tlv,
  260. 0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
  261. 1, 15, TLV_DB_SCALE_ITEM(-1500, 100, 0),
  262. 16, 30, TLV_DB_SCALE_ITEM(100, 100, 0)
  263. );
  264. static int csra66x0_get_volume(struct snd_kcontrol *kcontrol,
  265. struct snd_ctl_elem_value *ucontrol)
  266. {
  267. struct soc_mixer_control *mc =
  268. (struct soc_mixer_control *)kcontrol->private_value;
  269. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  270. unsigned int reg_l = mc->reg;
  271. unsigned int reg_r = mc->rreg;
  272. unsigned int val_l, val_r;
  273. val_l = (snd_soc_read(codec, reg_l) & 0xff) |
  274. ((snd_soc_read(codec,
  275. CSRA66X0_CH1_VOLUME_1_FA) & (0x01)) << 8);
  276. val_r = (snd_soc_read(codec, reg_r) & 0xff) |
  277. ((snd_soc_read(codec,
  278. CSRA66X0_CH2_VOLUME_1_FA) & (0x01)) << 8);
  279. ucontrol->value.integer.value[0] = val_l;
  280. ucontrol->value.integer.value[1] = val_r;
  281. return 0;
  282. }
  283. static int csra66x0_set_volume(struct snd_kcontrol *kcontrol,
  284. struct snd_ctl_elem_value *ucontrol)
  285. {
  286. struct soc_mixer_control *mc =
  287. (struct soc_mixer_control *)kcontrol->private_value;
  288. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  289. struct csra66x0_priv *csra66x0 = snd_soc_codec_get_drvdata(codec);
  290. unsigned int reg_l = mc->reg;
  291. unsigned int reg_r = mc->rreg;
  292. unsigned int val_l[2];
  293. unsigned int val_r[2];
  294. csra66x0->spk_volume_ch1 = (ucontrol->value.integer.value[0]);
  295. csra66x0->spk_volume_ch2 = (ucontrol->value.integer.value[1]);
  296. val_l[0] = csra66x0->spk_volume_ch1 & SPK_VOLUME_LSB_MSK;
  297. val_l[1] = (csra66x0->spk_volume_ch1 & SPK_VOLUME_MSB_MSK) ? 1 : 0;
  298. val_r[0] = csra66x0->spk_volume_ch2 & SPK_VOLUME_LSB_MSK;
  299. val_r[1] = (csra66x0->spk_volume_ch2 & SPK_VOLUME_MSB_MSK) ? 1 : 0;
  300. snd_soc_write(codec, reg_l, val_l[0]);
  301. snd_soc_write(codec, reg_r, val_r[0]);
  302. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_1_FA, val_l[1]);
  303. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_1_FA, val_r[1]);
  304. return 0;
  305. }
  306. /* enumerated controls */
  307. static const char * const csra66x0_mute_output_text[] = {"PLAY", "MUTE"};
  308. static const char * const csra66x0_output_invert_text[] = {
  309. "UNCHANGED", "INVERTED"};
  310. static const char * const csra66x0_deemp_config_text[] = {
  311. "DISABLED", "ENABLED"};
  312. SOC_ENUM_SINGLE_DECL(csra66x0_mute_output_enum,
  313. CSRA66X0_MISC_CONTROL_STATUS_1_FA, 2,
  314. csra66x0_mute_output_text);
  315. SOC_ENUM_SINGLE_DECL(csra66x0_ch1_output_invert_enum,
  316. CSRA66X0_CH1_OUTPUT_INVERT_EN, 0,
  317. csra66x0_output_invert_text);
  318. SOC_ENUM_SINGLE_DECL(csra66x0_ch2_output_invert_enum,
  319. CSRA66X0_CH2_OUTPUT_INVERT_EN, 0,
  320. csra66x0_output_invert_text);
  321. SOC_ENUM_DOUBLE_DECL(csra66x0_deemp_config_enum,
  322. CSRA66X0_DEEMP_CONFIG_FA, 0, 1,
  323. csra66x0_deemp_config_text);
  324. static const struct snd_kcontrol_new csra66x0_snd_controls[] = {
  325. /* volume */
  326. SOC_DOUBLE_R_EXT_TLV("PA VOLUME", CSRA66X0_CH1_VOLUME_0_FA,
  327. CSRA66X0_CH2_VOLUME_0_FA, 0, 0x1C9, 0,
  328. csra66x0_get_volume, csra66x0_set_volume,
  329. csra66x0_volume_tlv),
  330. /* bass treble */
  331. SOC_DOUBLE_R_TLV("PA BASS GAIN", CSRA66X0_CH1_BASS_GAIN_CTRL_FA,
  332. CSRA66X0_CH2_BASS_GAIN_CTRL_FA, 0, 0x1E, 0,
  333. csra66x0_bass_treble_tlv),
  334. SOC_DOUBLE_R_TLV("PA TREBLE GAIN", CSRA66X0_CH1_TREBLE_GAIN_CTRL_FA,
  335. CSRA66X0_CH2_TREBLE_GAIN_CTRL_FA, 0, 0x1E, 0,
  336. csra66x0_bass_treble_tlv),
  337. SOC_DOUBLE_R("PA BASS_XOVER FREQ", CSRA66X0_CH1_BASS_FC_CTRL_FA,
  338. CSRA66X0_CH2_BASS_FC_CTRL_FA, 0, 2, 0),
  339. SOC_DOUBLE_R("PA TREBLE_XOVER FREQ", CSRA66X0_CH1_TREBLE_FC_CTRL_FA,
  340. CSRA66X0_CH2_TREBLE_FC_CTRL_FA, 0, 2, 0),
  341. /* switch */
  342. SOC_ENUM("PA MUTE_OUTPUT SWITCH", csra66x0_mute_output_enum),
  343. SOC_ENUM("PA DE-EMPHASIS SWITCH", csra66x0_deemp_config_enum),
  344. };
  345. static const struct snd_kcontrol_new csra_mix_switch[] = {
  346. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  347. };
  348. static const struct snd_soc_dapm_widget csra66x0_dapm_widgets[] = {
  349. SND_SOC_DAPM_INPUT("IN"),
  350. SND_SOC_DAPM_MIXER("MIXER", SND_SOC_NOPM, 0, 0,
  351. csra_mix_switch, ARRAY_SIZE(csra_mix_switch)),
  352. SND_SOC_DAPM_DAC("DAC", NULL, SND_SOC_NOPM, 0, 0),
  353. SND_SOC_DAPM_PGA("PGA", CSRA66X0_CHIP_STATE_CTRL_FA, 0, 0, NULL, 0),
  354. SND_SOC_DAPM_OUTPUT("SPKR"),
  355. SND_SOC_DAPM_SUPPLY("POWER", CSRA66X0_CHIP_STATE_CTRL_FA,
  356. 1, 1, NULL, 0),
  357. };
  358. static const struct snd_soc_dapm_route csra66x0_dapm_routes[] = {
  359. {"MIXER", "Switch", "IN"},
  360. {"DAC", NULL, "MIXER"},
  361. {"PGA", NULL, "DAC"},
  362. {"SPKR", NULL, "PGA"},
  363. {"SPKR", NULL, "POWER"},
  364. };
  365. static int csra66x0_init(struct snd_soc_codec *codec,
  366. struct csra66x0_priv *csra66x0)
  367. {
  368. /* config */
  369. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, CONFIG_STATE);
  370. /* settle time in HW is min. 500ms before proceeding */
  371. msleep(500);
  372. /* setup */
  373. snd_soc_write(codec, CSRA66X0_MISC_CONTROL_STATUS_0, 0x09);
  374. snd_soc_write(codec, CSRA66X0_TEMP_PROT_BACKOFF, 0x0C);
  375. snd_soc_write(codec, CSRA66X0_EXT_PA_PROTECT_POLARITY, 0x03);
  376. snd_soc_write(codec, CSRA66X0_PWM_OUTPUT_CONFIG, 0xC8);
  377. csra66x0->spk_volume_ch1 = SPK_VOLUME_M20DB;
  378. csra66x0->spk_volume_ch2 = SPK_VOLUME_M20DB;
  379. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_0_FA, SPK_VOLUME_M20DB_LSB);
  380. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_0_FA, SPK_VOLUME_M20DB_LSB);
  381. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_1_FA, SPK_VOLUME_M20DB_MSB);
  382. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_1_FA, SPK_VOLUME_M20DB_MSB);
  383. snd_soc_write(codec, CSRA66X0_DEAD_TIME_CTRL, 0x0);
  384. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_0, 0xE7);
  385. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_1, 0x26);
  386. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_2, 0x40);
  387. snd_soc_write(codec, CSRA66X0_MIN_MODULATION_PULSE_WIDTH, 0x7A);
  388. snd_soc_write(codec, CSRA66X0_CH1_HARD_CLIP_THRESH, 0x00);
  389. snd_soc_write(codec, CSRA66X0_CH2_HARD_CLIP_THRESH, 0x00);
  390. snd_soc_write(codec, CSRA66X0_CH1_DCA_THRESH, 0x40);
  391. snd_soc_write(codec, CSRA66X0_CH2_DCA_THRESH, 0x40);
  392. snd_soc_write(codec, CSRA66X0_DCA_ATTACK_RATE, 0x00);
  393. snd_soc_write(codec, CSRA66X0_DCA_RELEASE_RATE, 0x00);
  394. if (csra66x0->irq) {
  395. snd_soc_write(codec, CSRA66X0_PIO0_SELECT, 0x1);
  396. if (csra66x0->irq_active_low)
  397. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_POLARITY, 0x0);
  398. else
  399. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_POLARITY, 0x1);
  400. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_ENABLE, 0x01);
  401. } else {
  402. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_ENABLE, 0x00);
  403. }
  404. /* settle time in HW is min. 500ms before slave initializing */
  405. msleep(500);
  406. return 0;
  407. }
  408. static int csra66x0_soc_probe(struct snd_soc_codec *codec)
  409. {
  410. struct csra66x0_priv *csra66x0 = snd_soc_codec_get_drvdata(codec);
  411. struct snd_soc_dapm_context *dapm;
  412. char name[50];
  413. if (csra66x0->in_cluster) {
  414. dapm = snd_soc_codec_get_dapm(codec);
  415. dev_dbg(codec->dev, "%s: setting %s to codec %s\n",
  416. __func__, codec->component.name_prefix,
  417. codec->component.name);
  418. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA,
  419. CONFIG_STATE);
  420. /* settle time in HW is min. 500ms before proceeding */
  421. msleep(500);
  422. snd_soc_write(codec, CSRA66X0_PIO7_SELECT, 0x04);
  423. snd_soc_write(codec, CSRA66X0_PIO8_SELECT, 0x04);
  424. if (csra66x0->is_master) {
  425. /* Master specific config */
  426. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0xFF);
  427. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR0, 0x80);
  428. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x01);
  429. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR1, 0x01);
  430. } else {
  431. /* Slave specific config */
  432. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0x7F);
  433. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x00);
  434. }
  435. snd_soc_write(codec, CSRA66X0_DCA_CTRL, 0x05);
  436. if (dapm->component) {
  437. strlcpy(name, dapm->component->name_prefix,
  438. sizeof(name));
  439. strlcat(name, " IN", sizeof(name));
  440. snd_soc_dapm_ignore_suspend(dapm, name);
  441. strlcpy(name, dapm->component->name_prefix,
  442. sizeof(name));
  443. strlcat(name, " SPKR", sizeof(name));
  444. snd_soc_dapm_ignore_suspend(dapm, name);
  445. }
  446. }
  447. csra66x0->codec = codec;
  448. /* common configuration */
  449. csra66x0_init(codec, csra66x0);
  450. return 0;
  451. }
  452. static int csra66x0_soc_remove(struct snd_soc_codec *codec)
  453. {
  454. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, STDBY_STATE);
  455. return 0;
  456. }
  457. static int csra66x0_soc_suspend(struct snd_soc_codec *codec)
  458. {
  459. u16 state_reg = snd_soc_read(codec, CSRA66X0_CHIP_STATE_CTRL_FA) & 0xFC;
  460. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, state_reg |
  461. STDBY_STATE);
  462. return 0;
  463. }
  464. static int csra66x0_soc_resume(struct snd_soc_codec *codec)
  465. {
  466. u16 state_reg = snd_soc_read(codec, CSRA66X0_CHIP_STATE_CTRL_FA) & 0xFC;
  467. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, state_reg |
  468. RUN_STATE);
  469. return 0;
  470. }
  471. static struct regmap *csra66x0_get_regmap(struct device *dev)
  472. {
  473. struct csra66x0_priv *csra66x0_ctrl = dev_get_drvdata(dev);
  474. if (!csra66x0_ctrl)
  475. return NULL;
  476. return csra66x0_ctrl->regmap;
  477. }
  478. static struct snd_soc_codec_driver soc_codec_drv_csra66x0 = {
  479. .probe = csra66x0_soc_probe,
  480. .remove = csra66x0_soc_remove,
  481. .suspend = csra66x0_soc_suspend,
  482. .resume = csra66x0_soc_resume,
  483. .get_regmap = csra66x0_get_regmap,
  484. .component_driver = {
  485. .controls = csra66x0_snd_controls,
  486. .num_controls = ARRAY_SIZE(csra66x0_snd_controls),
  487. .dapm_widgets = csra66x0_dapm_widgets,
  488. .num_dapm_widgets = ARRAY_SIZE(csra66x0_dapm_widgets),
  489. .dapm_routes = csra66x0_dapm_routes,
  490. .num_dapm_routes = ARRAY_SIZE(csra66x0_dapm_routes),
  491. },
  492. };
  493. static struct regmap_config csra66x0_regmap_config = {
  494. .reg_bits = 16,
  495. .val_bits = 8,
  496. .cache_type = REGCACHE_RBTREE,
  497. .reg_defaults = csra66x0_reg_defaults,
  498. .num_reg_defaults = ARRAY_SIZE(csra66x0_reg_defaults),
  499. .max_register = CSRA66X0_MAX_REGISTER_ADDR,
  500. .volatile_reg = csra66x0_volatile_register,
  501. .writeable_reg = csra66x0_writeable_registers,
  502. .readable_reg = csra66x0_readable_registers,
  503. };
  504. static irqreturn_t csra66x0_irq(int irq, void *data)
  505. {
  506. struct csra66x0_priv *csra66x0 = (struct csra66x0_priv *) data;
  507. struct snd_soc_codec *codec = csra66x0->codec;
  508. u16 val;
  509. /* Treat interrupt before codec is initialized as spurious */
  510. if (codec == NULL)
  511. return IRQ_NONE;
  512. dev_dbg(codec->dev, "%s: csra66x0_interrupt\n", __func__);
  513. /* fault indication */
  514. val = snd_soc_read(codec, CSRA66X0_IRQ_OUTPUT_STATUS_FA) & 0x1;
  515. if (val) {
  516. val = snd_soc_read(codec, CSRA66X0_FAULT_STATUS_FA);
  517. if (val & FAULT_STATUS_INTERNAL)
  518. dev_dbg(codec->dev, "%s: FAULT_STATUS_INTERNAL 0x%X\n",
  519. __func__, val);
  520. if (val & FAULT_STATUS_OTP_INTEGRITY)
  521. dev_dbg(codec->dev, "%s: FAULT_STATUS_OTP_INTEGRITY 0x%X\n",
  522. __func__, val);
  523. if (val & FAULT_STATUS_PADS2)
  524. dev_dbg(codec->dev, "%s: FAULT_STATUS_PADS2 0x%X\n",
  525. __func__, val);
  526. if (val & FAULT_STATUS_SMPS)
  527. dev_dbg(codec->dev, "%s: FAULT_STATUS_SMPS 0x%X\n",
  528. __func__, val);
  529. if (val & FAULT_STATUS_TEMP)
  530. dev_dbg(codec->dev, "%s: FAULT_STATUS_TEMP 0x%X\n",
  531. __func__, val);
  532. if (val & FAULT_STATUS_PROTECT)
  533. dev_dbg(codec->dev, "%s: FAULT_STATUS_PROTECT 0x%X\n",
  534. __func__, val);
  535. /* clear fault state and re-init */
  536. snd_soc_write(codec, CSRA66X0_FAULT_STATUS_FA, 0x00);
  537. csra66x0_init(codec, csra66x0);
  538. } else {
  539. return IRQ_NONE;
  540. }
  541. return IRQ_HANDLED;
  542. };
  543. static const struct of_device_id csra66x0_of_match[] = {
  544. { .compatible = "qcom,csra66x0", },
  545. { }
  546. };
  547. MODULE_DEVICE_TABLE(of, csra66x0_of_match);
  548. #if IS_ENABLED(CONFIG_I2C)
  549. static int csra66x0_i2c_probe(struct i2c_client *client_i2c,
  550. const struct i2c_device_id *id)
  551. {
  552. struct csra66x0_priv *csra66x0;
  553. int ret, irq_trigger;
  554. csra66x0 = devm_kzalloc(&client_i2c->dev, sizeof(struct csra66x0_priv),
  555. GFP_KERNEL);
  556. if (csra66x0 == NULL)
  557. return -ENOMEM;
  558. csra66x0->regmap = devm_regmap_init_i2c(client_i2c,
  559. &csra66x0_regmap_config);
  560. if (IS_ERR(csra66x0->regmap)) {
  561. ret = PTR_ERR(csra66x0->regmap);
  562. dev_err(&client_i2c->dev,
  563. "%s %d: Failed to allocate register map for I2C device: %d\n",
  564. __func__, __LINE__, ret);
  565. return ret;
  566. }
  567. i2c_set_clientdata(client_i2c, csra66x0);
  568. /* get data from device tree */
  569. if (client_i2c->dev.of_node) {
  570. /* cluster of multiple devices */
  571. ret = of_property_read_u32(
  572. client_i2c->dev.of_node, "qcom,csra-cluster",
  573. &csra66x0->in_cluster);
  574. if (ret) {
  575. dev_info(&client_i2c->dev,
  576. "%s: qcom,csra-cluster property not defined in DT\n", __func__);
  577. csra66x0->in_cluster = 0;
  578. }
  579. /* master or slave device */
  580. ret = of_property_read_u32(
  581. client_i2c->dev.of_node, "qcom,csra-cluster-master",
  582. &csra66x0->is_master);
  583. if (ret) {
  584. dev_info(&client_i2c->dev,
  585. "%s: qcom,csra-cluster-master property not defined in DT\n", __func__);
  586. csra66x0->is_master = 0;
  587. }
  588. /* gpio setup for vreg */
  589. csra66x0->vreg_gpio = of_get_named_gpio(client_i2c->dev.of_node,
  590. "qcom,csra-vreg-en-gpio", 0);
  591. if (!gpio_is_valid(csra66x0->vreg_gpio)) {
  592. dev_err(&client_i2c->dev, "%s: %s property is not found %d\n",
  593. __func__, "qcom,csra-vreg-en-gpio",
  594. csra66x0->vreg_gpio);
  595. return -ENODEV;
  596. }
  597. dev_dbg(&client_i2c->dev, "%s: vreg_en gpio %d\n", __func__,
  598. csra66x0->vreg_gpio);
  599. ret = gpio_request(csra66x0->vreg_gpio, dev_name(&client_i2c->dev));
  600. if (ret) {
  601. if (ret == -EBUSY) {
  602. /* GPIO was already requested */
  603. dev_dbg(&client_i2c->dev,
  604. "%s: gpio %d is already set\n",
  605. __func__, csra66x0->vreg_gpio);
  606. } else {
  607. dev_err(&client_i2c->dev, "%s: Failed to request gpio %d, err: %d\n",
  608. __func__, csra66x0->vreg_gpio, ret);
  609. }
  610. } else {
  611. gpio_direction_output(csra66x0->vreg_gpio, 1);
  612. gpio_set_value(csra66x0->vreg_gpio, 1);
  613. }
  614. /* register interrupt handle */
  615. if (client_i2c->irq) {
  616. csra66x0->irq = client_i2c->irq;
  617. /* interrupt polarity */
  618. ret = of_property_read_u32(
  619. client_i2c->dev.of_node, "irq-active-low",
  620. &csra66x0->irq_active_low);
  621. if (ret) {
  622. dev_info(&client_i2c->dev,
  623. "%s: irq-active-low property not defined in DT\n", __func__);
  624. csra66x0->irq_active_low = 0;
  625. }
  626. if (csra66x0->irq_active_low)
  627. irq_trigger = IRQF_TRIGGER_LOW;
  628. else
  629. irq_trigger = IRQF_TRIGGER_HIGH;
  630. ret = devm_request_threaded_irq(&client_i2c->dev,
  631. csra66x0->irq, NULL, csra66x0_irq,
  632. irq_trigger | IRQF_ONESHOT,
  633. "csra66x0_irq", csra66x0);
  634. if (ret) {
  635. dev_err(&client_i2c->dev,
  636. "%s: Failed to request IRQ %d: %d\n",
  637. __func__, csra66x0->irq, ret);
  638. csra66x0->irq = 0;
  639. }
  640. }
  641. }
  642. /* register codec */
  643. ret = snd_soc_register_codec(&client_i2c->dev,
  644. &soc_codec_drv_csra66x0, NULL, 0);
  645. if (ret != 0) {
  646. dev_err(&client_i2c->dev, "%s %d: Failed to register CODEC: %d\n",
  647. __func__, __LINE__, ret);
  648. if (gpio_is_valid(csra66x0->vreg_gpio)) {
  649. gpio_set_value(csra66x0->vreg_gpio, 0);
  650. gpio_free(csra66x0->vreg_gpio);
  651. }
  652. return ret;
  653. }
  654. return 0;
  655. }
  656. static int csra66x0_i2c_remove(struct i2c_client *i2c_client)
  657. {
  658. struct csra66x0_priv *csra66x0 = i2c_get_clientdata(i2c_client);
  659. if (csra66x0) {
  660. if (gpio_is_valid(csra66x0->vreg_gpio)) {
  661. gpio_set_value(csra66x0->vreg_gpio, 0);
  662. gpio_free(csra66x0->vreg_gpio);
  663. }
  664. }
  665. snd_soc_unregister_codec(&i2c_client->dev);
  666. return 0;
  667. }
  668. static const struct i2c_device_id csra66x0_i2c_id[] = {
  669. { "csra66x0", 0},
  670. { }
  671. };
  672. MODULE_DEVICE_TABLE(i2c, csra66x0_i2c_id);
  673. static struct i2c_driver csra66x0_i2c_driver = {
  674. .probe = csra66x0_i2c_probe,
  675. .remove = csra66x0_i2c_remove,
  676. .id_table = csra66x0_i2c_id,
  677. .driver = {
  678. .name = "csra66x0",
  679. .owner = THIS_MODULE,
  680. .of_match_table = csra66x0_of_match
  681. },
  682. };
  683. #endif
  684. static int __init csra66x0_codec_init(void)
  685. {
  686. int ret = 0;
  687. #if IS_ENABLED(CONFIG_I2C)
  688. ret = i2c_add_driver(&csra66x0_i2c_driver);
  689. if (ret != 0)
  690. pr_err("%s: Failed to register CSRA66X0 I2C driver, ret = %d\n",
  691. __func__, ret);
  692. #endif
  693. return ret;
  694. }
  695. module_init(csra66x0_codec_init);
  696. static void __exit csra66x0_codec_exit(void)
  697. {
  698. #if IS_ENABLED(CONFIG_I2C)
  699. i2c_del_driver(&csra66x0_i2c_driver);
  700. #endif
  701. }
  702. module_exit(csra66x0_codec_exit);
  703. MODULE_DESCRIPTION("CSRA66X0 Codec driver");
  704. MODULE_LICENSE("GPL v2");