csra66x0.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960
  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 <linux/fs.h>
  27. #include <linux/debugfs.h>
  28. #include "csra66x0.h"
  29. /* CSRA66X0 register default values */
  30. static struct reg_default csra66x0_reg_defaults[] = {
  31. {CSRA66X0_AUDIO_IF_RX_CONFIG1, 0x00},
  32. {CSRA66X0_AUDIO_IF_RX_CONFIG2, 0x0B},
  33. {CSRA66X0_AUDIO_IF_RX_CONFIG3, 0x0F},
  34. {CSRA66X0_AUDIO_IF_TX_EN, 0x00},
  35. {CSRA66X0_AUDIO_IF_TX_CONFIG1, 0x6B},
  36. {CSRA66X0_AUDIO_IF_TX_CONFIG2, 0x02},
  37. {CSRA66X0_I2C_DEVICE_ADDRESS, 0x0D},
  38. {CSRA66X0_CHIP_ID_FA, 0x39},
  39. {CSRA66X0_ROM_VER_FA, 0x08},
  40. {CSRA66X0_CHIP_REV_0_FA, 0x05},
  41. {CSRA66X0_CHIP_REV_1_FA, 0x03},
  42. {CSRA66X0_CH1_MIX_SEL, 0x01},
  43. {CSRA66X0_CH2_MIX_SEL, 0x10},
  44. {CSRA66X0_CH1_SAMPLE1_SCALE_0, 0x00},
  45. {CSRA66X0_CH1_SAMPLE1_SCALE_1, 0x20},
  46. {CSRA66X0_CH1_SAMPLE3_SCALE_0, 0x00},
  47. {CSRA66X0_CH1_SAMPLE3_SCALE_1, 0x20},
  48. {CSRA66X0_CH1_SAMPLE5_SCALE_0, 0x00},
  49. {CSRA66X0_CH1_SAMPLE5_SCALE_1, 0x20},
  50. {CSRA66X0_CH1_SAMPLE7_SCALE_0, 0x00},
  51. {CSRA66X0_CH1_SAMPLE7_SCALE_1, 0x20},
  52. {CSRA66X0_CH1_SAMPLE2_SCALE_0, 0x00},
  53. {CSRA66X0_CH1_SAMPLE2_SCALE_1, 0x20},
  54. {CSRA66X0_CH1_SAMPLE4_SCALE_0, 0x00},
  55. {CSRA66X0_CH1_SAMPLE4_SCALE_1, 0x20},
  56. {CSRA66X0_CH1_SAMPLE6_SCALE_0, 0x00},
  57. {CSRA66X0_CH1_SAMPLE6_SCALE_1, 0x20},
  58. {CSRA66X0_CH1_SAMPLE8_SCALE_0, 0x00},
  59. {CSRA66X0_CH1_SAMPLE8_SCALE_1, 0x20},
  60. {CSRA66X0_CH2_SAMPLE1_SCALE_0, 0x00},
  61. {CSRA66X0_CH2_SAMPLE1_SCALE_1, 0x20},
  62. {CSRA66X0_CH2_SAMPLE3_SCALE_0, 0x00},
  63. {CSRA66X0_CH2_SAMPLE3_SCALE_1, 0x20},
  64. {CSRA66X0_CH2_SAMPLE5_SCALE_0, 0x00},
  65. {CSRA66X0_CH2_SAMPLE5_SCALE_1, 0x20},
  66. {CSRA66X0_CH2_SAMPLE7_SCALE_0, 0x00},
  67. {CSRA66X0_CH2_SAMPLE7_SCALE_1, 0x20},
  68. {CSRA66X0_CH2_SAMPLE2_SCALE_0, 0x00},
  69. {CSRA66X0_CH2_SAMPLE2_SCALE_1, 0x20},
  70. {CSRA66X0_CH2_SAMPLE4_SCALE_0, 0x00},
  71. {CSRA66X0_CH2_SAMPLE4_SCALE_1, 0x20},
  72. {CSRA66X0_CH2_SAMPLE6_SCALE_0, 0x00},
  73. {CSRA66X0_CH2_SAMPLE6_SCALE_1, 0x20},
  74. {CSRA66X0_CH2_SAMPLE8_SCALE_0, 0x00},
  75. {CSRA66X0_CH2_SAMPLE8_SCALE_1, 0x20},
  76. {CSRA66X0_VOLUME_CONFIG_FA, 0x26},
  77. {CSRA66X0_STARTUP_DELAY_FA, 0x00},
  78. {CSRA66X0_CH1_VOLUME_0_FA, 0x19},
  79. {CSRA66X0_CH1_VOLUME_1_FA, 0x01},
  80. {CSRA66X0_CH2_VOLUME_0_FA, 0x19},
  81. {CSRA66X0_CH2_VOLUME_1_FA, 0x01},
  82. {CSRA66X0_QUAD_ENC_COUNT_0_FA, 0x00},
  83. {CSRA66X0_QUAD_ENC_COUNT_1_FA, 0x00},
  84. {CSRA66X0_SOFT_CLIP_CONFIG, 0x00},
  85. {CSRA66X0_CH1_HARD_CLIP_THRESH, 0x00},
  86. {CSRA66X0_CH2_HARD_CLIP_THRESH, 0x00},
  87. {CSRA66X0_SOFT_CLIP_THRESH, 0x00},
  88. {CSRA66X0_DS_ENABLE_THRESH_0, 0x05},
  89. {CSRA66X0_DS_ENABLE_THRESH_1, 0x00},
  90. {CSRA66X0_DS_TARGET_COUNT_0, 0x00},
  91. {CSRA66X0_DS_TARGET_COUNT_1, 0xFF},
  92. {CSRA66X0_DS_TARGET_COUNT_2, 0xFF},
  93. {CSRA66X0_DS_DISABLE_THRESH_0, 0x0F},
  94. {CSRA66X0_DS_DISABLE_THRESH_1, 0x00},
  95. {CSRA66X0_DCA_CTRL, 0x07},
  96. {CSRA66X0_CH1_DCA_THRESH, 0x40},
  97. {CSRA66X0_CH2_DCA_THRESH, 0x40},
  98. {CSRA66X0_DCA_ATTACK_RATE, 0x00},
  99. {CSRA66X0_DCA_RELEASE_RATE, 0x00},
  100. {CSRA66X0_CH1_OUTPUT_INVERT_EN, 0x00},
  101. {CSRA66X0_CH2_OUTPUT_INVERT_EN, 0x00},
  102. {CSRA66X0_CH1_176P4K_DELAY, 0x00},
  103. {CSRA66X0_CH2_176P4K_DELAY, 0x00},
  104. {CSRA66X0_CH1_192K_DELAY, 0x00},
  105. {CSRA66X0_CH2_192K_DELAY, 0x00},
  106. {CSRA66X0_DEEMP_CONFIG_FA, 0x00},
  107. {CSRA66X0_CH1_TREBLE_GAIN_CTRL_FA, 0x00},
  108. {CSRA66X0_CH2_TREBLE_GAIN_CTRL_FA, 0x00},
  109. {CSRA66X0_CH1_TREBLE_FC_CTRL_FA, 0x00},
  110. {CSRA66X0_CH2_TREBLE_FC_CTRL_FA, 0x00},
  111. {CSRA66X0_CH1_BASS_GAIN_CTRL_FA, 0x00},
  112. {CSRA66X0_CH2_BASS_GAIN_CTRL_FA, 0x00},
  113. {CSRA66X0_CH1_BASS_FC_CTRL_FA, 0x00},
  114. {CSRA66X0_CH2_BASS_FC_CTRL_FA, 0x00},
  115. {CSRA66X0_FILTER_SEL_8K, 0x00},
  116. {CSRA66X0_FILTER_SEL_11P025K, 0x00},
  117. {CSRA66X0_FILTER_SEL_16K, 0x00},
  118. {CSRA66X0_FILTER_SEL_22P05K, 0x00},
  119. {CSRA66X0_FILTER_SEL_32K, 0x00},
  120. {CSRA66X0_FILTER_SEL_44P1K_48K, 0x00},
  121. {CSRA66X0_FILTER_SEL_88P2K_96K, 0x00},
  122. {CSRA66X0_FILTER_SEL_176P4K_192K, 0x00},
  123. /* RESERVED */
  124. {CSRA66X0_USER_DSP_CTRL, 0x00},
  125. {CSRA66X0_TEST_TONE_CTRL, 0x00},
  126. {CSRA66X0_TEST_TONE_FREQ_0, 0x00},
  127. {CSRA66X0_TEST_TONE_FREQ_1, 0x00},
  128. {CSRA66X0_TEST_TONE_FREQ_2, 0x00},
  129. {CSRA66X0_AUDIO_RATE_CTRL_FA, 0x08},
  130. {CSRA66X0_MODULATION_INDEX_CTRL, 0x3F},
  131. {CSRA66X0_MODULATION_INDEX_COUNT, 0x10},
  132. {CSRA66X0_MIN_MODULATION_PULSE_WIDTH, 0x7A},
  133. {CSRA66X0_DEAD_TIME_CTRL, 0x00},
  134. {CSRA66X0_DEAD_TIME_THRESHOLD_0, 0xE7},
  135. {CSRA66X0_DEAD_TIME_THRESHOLD_1, 0x26},
  136. {CSRA66X0_DEAD_TIME_THRESHOLD_2, 0x40},
  137. {CSRA66X0_CH1_LOW_SIDE_DLY, 0x00},
  138. {CSRA66X0_CH2_LOW_SIDE_DLY, 0x00},
  139. {CSRA66X0_SPECTRUM_CTRL, 0x00},
  140. /* RESERVED */
  141. {CSRA66X0_SPECTRUM_SPREAD_CTRL, 0x0C},
  142. /* RESERVED */
  143. {CSRA66X0_EXT_PA_PROTECT_POLARITY, 0x03},
  144. {CSRA66X0_TEMP0_BACKOFF_COMP_VALUE, 0x98},
  145. {CSRA66X0_TEMP0_SHUTDOWN_COMP_VALUE, 0xA3},
  146. {CSRA66X0_TEMP1_BACKOFF_COMP_VALUE, 0x98},
  147. {CSRA66X0_TEMP1_SHUTDOWN_COMP_VALUE, 0xA3},
  148. {CSRA66X0_TEMP_PROT_BACKOFF, 0x00},
  149. {CSRA66X0_TEMP_READ0_FA, 0x00},
  150. {CSRA66X0_TEMP_READ1_FA, 0x00},
  151. {CSRA66X0_CHIP_STATE_CTRL_FA, 0x02},
  152. /* RESERVED */
  153. {CSRA66X0_PWM_OUTPUT_CONFIG, 0x00},
  154. {CSRA66X0_MISC_CONTROL_STATUS_0, 0x08},
  155. {CSRA66X0_MISC_CONTROL_STATUS_1_FA, 0x40},
  156. {CSRA66X0_PIO0_SELECT, 0x00},
  157. {CSRA66X0_PIO1_SELECT, 0x00},
  158. {CSRA66X0_PIO2_SELECT, 0x00},
  159. {CSRA66X0_PIO3_SELECT, 0x00},
  160. {CSRA66X0_PIO4_SELECT, 0x00},
  161. {CSRA66X0_PIO5_SELECT, 0x00},
  162. {CSRA66X0_PIO6_SELECT, 0x00},
  163. {CSRA66X0_PIO7_SELECT, 0x00},
  164. {CSRA66X0_PIO8_SELECT, 0x00},
  165. {CSRA66X0_PIO_DIRN0, 0xFF},
  166. {CSRA66X0_PIO_DIRN1, 0x01},
  167. {CSRA66X0_PIO_PULL_EN0, 0xFF},
  168. {CSRA66X0_PIO_PULL_EN1, 0x01},
  169. {CSRA66X0_PIO_PULL_DIR0, 0x00},
  170. {CSRA66X0_PIO_PULL_DIR1, 0x00},
  171. {CSRA66X0_PIO_DRIVE_OUT0_FA, 0x00},
  172. {CSRA66X0_PIO_DRIVE_OUT1_FA, 0x00},
  173. {CSRA66X0_PIO_STATUS_IN0_FA, 0x00},
  174. {CSRA66X0_PIO_STATUS_IN1_FA, 0x00},
  175. /* RESERVED */
  176. {CSRA66X0_IRQ_OUTPUT_ENABLE, 0x00},
  177. {CSRA66X0_IRQ_OUTPUT_POLARITY, 0x01},
  178. {CSRA66X0_IRQ_OUTPUT_STATUS_FA, 0x00},
  179. {CSRA66X0_CLIP_DCA_STATUS_FA, 0x00},
  180. {CSRA66X0_CHIP_STATE_STATUS_FA, 0x02},
  181. {CSRA66X0_FAULT_STATUS_FA, 0x00},
  182. {CSRA66X0_OTP_STATUS_FA, 0x00},
  183. {CSRA66X0_AUDIO_IF_STATUS_FA, 0x00},
  184. /* RESERVED */
  185. {CSRA66X0_DSP_SATURATION_STATUS_FA, 0x00},
  186. {CSRA66X0_AUDIO_RATE_STATUS_FA, 0x00},
  187. /* RESERVED */
  188. {CSRA66X0_DISABLE_PWM_OUTPUT, 0x00},
  189. /* RESERVED */
  190. {CSRA66X0_OTP_VER_FA, 0x03},
  191. {CSRA66X0_RAM_VER_FA, 0x02},
  192. /* RESERVED */
  193. {CSRA66X0_AUDIO_SATURATION_FLAGS_FA, 0x00},
  194. {CSRA66X0_DCOFFSET_CHAN_1_01_FA, 0x00},
  195. {CSRA66X0_DCOFFSET_CHAN_1_02_FA, 0x00},
  196. {CSRA66X0_DCOFFSET_CHAN_1_03_FA, 0x00},
  197. {CSRA66X0_DCOFFSET_CHAN_2_01_FA, 0x00},
  198. {CSRA66X0_DCOFFSET_CHAN_2_02_FA, 0x00},
  199. {CSRA66X0_DCOFFSET_CHAN_2_03_FA, 0x00},
  200. {CSRA66X0_FORCED_PA_SWITCHING_CTRL, 0x90},
  201. {CSRA66X0_PA_FORCE_PULSE_WIDTH, 0x07},
  202. {CSRA66X0_PA_HIGH_MODULATION_CTRL_CH1, 0x00},
  203. /* RESERVED */
  204. {CSRA66X0_HIGH_MODULATION_THRESHOLD_LOW, 0xD4},
  205. {CSRA66X0_HIGH_MODULATION_THRESHOLD_HIGH, 0x78},
  206. /* RESERVED */
  207. {CSRA66X0_PA_FREEZE_CTRL, 0x00},
  208. {CSRA66X0_DCA_FREEZE_CTRL, 0x3C},
  209. /* RESERVED */
  210. };
  211. static bool csra66x0_volatile_register(struct device *dev, unsigned int reg)
  212. {
  213. switch (reg) {
  214. case CSRA66X0_CHIP_ID_FA:
  215. case CSRA66X0_TEMP_READ0_FA:
  216. case CSRA66X0_TEMP_READ1_FA:
  217. case CSRA66X0_MISC_CONTROL_STATUS_1_FA:
  218. case CSRA66X0_IRQ_OUTPUT_STATUS_FA:
  219. case CSRA66X0_CLIP_DCA_STATUS_FA:
  220. case CSRA66X0_CHIP_STATE_STATUS_FA:
  221. case CSRA66X0_FAULT_STATUS_FA:
  222. case CSRA66X0_OTP_STATUS_FA:
  223. case CSRA66X0_AUDIO_IF_STATUS_FA:
  224. case CSRA66X0_DSP_SATURATION_STATUS_FA:
  225. case CSRA66X0_AUDIO_RATE_STATUS_FA:
  226. return true;
  227. default:
  228. return false;
  229. }
  230. }
  231. static bool csra66x0_writeable_registers(struct device *dev, unsigned int reg)
  232. {
  233. if ((reg >= CSRA66X0_AUDIO_IF_RX_CONFIG1)
  234. && (reg <= CSRA66X0_MAX_REGISTER_ADDR))
  235. return true;
  236. return false;
  237. }
  238. static bool csra66x0_readable_registers(struct device *dev, unsigned int reg)
  239. {
  240. if ((reg >= CSRA66X0_AUDIO_IF_RX_CONFIG1)
  241. && (reg <= CSRA66X0_MAX_REGISTER_ADDR))
  242. return true;
  243. return false;
  244. }
  245. /* codec private data */
  246. struct csra66x0_priv {
  247. struct regmap *regmap;
  248. struct snd_soc_codec *codec;
  249. int spk_volume_ch1;
  250. int spk_volume_ch2;
  251. int irq;
  252. int vreg_gpio;
  253. u32 irq_active_low;
  254. u32 in_cluster;
  255. u32 is_master;
  256. #if IS_ENABLED(CONFIG_DEBUG_FS)
  257. struct dentry *debugfs_dir;
  258. struct dentry *debugfs_file_wo;
  259. struct dentry *debugfs_file_ro;
  260. #endif /* CONFIG_DEBUG_FS */
  261. };
  262. #if IS_ENABLED(CONFIG_DEBUG_FS)
  263. static int debugfs_codec_open_op(struct inode *inode, struct file *file)
  264. {
  265. file->private_data = inode->i_private;
  266. return 0;
  267. }
  268. static int debugfs_get_parameters(char *buf, u32 *param1, int num_of_par)
  269. {
  270. char *token;
  271. int base, cnt;
  272. token = strsep(&buf, " ");
  273. for (cnt = 0; cnt < num_of_par; cnt++) {
  274. if (token) {
  275. if ((token[1] == 'x') || (token[1] == 'X'))
  276. base = 16;
  277. else
  278. base = 10;
  279. if (kstrtou32(token, base, &param1[cnt]) != 0)
  280. return -EINVAL;
  281. token = strsep(&buf, " ");
  282. } else {
  283. return -EINVAL;
  284. }
  285. }
  286. return 0;
  287. }
  288. static ssize_t debugfs_codec_write_op(struct file *filp,
  289. const char __user *ubuf, size_t cnt, loff_t *ppos)
  290. {
  291. struct csra66x0_priv *csra66x0 =
  292. (struct csra66x0_priv *) filp->private_data;
  293. struct snd_soc_codec *codec = csra66x0->codec;
  294. char lbuf[32];
  295. int rc;
  296. u32 param[2];
  297. if (!filp || !ppos || !ubuf)
  298. return -EINVAL;
  299. if (cnt > sizeof(lbuf) - 1)
  300. return -EINVAL;
  301. rc = copy_from_user(lbuf, ubuf, cnt);
  302. if (rc)
  303. return -EFAULT;
  304. lbuf[cnt] = '\0';
  305. rc = debugfs_get_parameters(lbuf, param, 2);
  306. if ((param[0] < CSRA66X0_AUDIO_IF_RX_CONFIG1)
  307. || (param[0] > CSRA66X0_MAX_REGISTER_ADDR)) {
  308. dev_err(codec->dev, "%s: register address 0x%04X out of range\n",
  309. __func__, param[0]);
  310. return -EINVAL;
  311. }
  312. if ((param[1] < 0) || (param[1] > 255)) {
  313. dev_err(codec->dev, "%s: register data 0x%02X out of range\n",
  314. __func__, param[1]);
  315. return -EINVAL;
  316. }
  317. if (rc == 0)
  318. {
  319. rc = cnt;
  320. dev_info(codec->dev, "%s: reg[0x%04X]=0x%02X\n",
  321. __func__, param[0], param[1]);
  322. snd_soc_write(codec, param[0], param[1]);
  323. } else {
  324. dev_err(codec->dev, "%s: write to register addr=0x%04X failed\n",
  325. __func__, param[0]);
  326. }
  327. return rc;
  328. }
  329. static ssize_t debugfs_csra66x0_reg_show(struct snd_soc_codec *codec,
  330. char __user *ubuf, size_t count, loff_t *ppos)
  331. {
  332. int i, reg_val, len;
  333. ssize_t total = 0;
  334. char tmp_buf[20];
  335. if (!ubuf || !ppos || !codec || *ppos < 0)
  336. return -EINVAL;
  337. for (i = ((int) *ppos + CSRA66X0_BASE);
  338. i <= CSRA66X0_MAX_REGISTER_ADDR; i++) {
  339. reg_val = snd_soc_read(codec, i);
  340. len = snprintf(tmp_buf, 20, "0x%04X: 0x%02X\n", i, (reg_val & 0xFF));
  341. if ((total + len) >= count - 1)
  342. break;
  343. if (copy_to_user((ubuf + total), tmp_buf, len)) {
  344. dev_err(codec->dev, "%s: fail to copy reg dump\n", __func__);
  345. total = -EFAULT;
  346. goto copy_err;
  347. }
  348. *ppos += len;
  349. total += len;
  350. }
  351. copy_err:
  352. return total;
  353. }
  354. static ssize_t debugfs_codec_read_op(struct file *filp,
  355. char __user *ubuf, size_t cnt, loff_t *ppos)
  356. {
  357. struct csra66x0_priv *csra66x0 =
  358. (struct csra66x0_priv *) filp->private_data;
  359. struct snd_soc_codec *codec = csra66x0->codec;
  360. ssize_t ret_cnt;
  361. if (!filp || !ppos || !ubuf || *ppos < 0)
  362. return -EINVAL;
  363. ret_cnt = debugfs_csra66x0_reg_show(codec, ubuf, cnt, ppos);
  364. return ret_cnt;
  365. }
  366. static const struct file_operations debugfs_codec_ops = {
  367. .open = debugfs_codec_open_op,
  368. .write = debugfs_codec_write_op,
  369. .read = debugfs_codec_read_op,
  370. };
  371. #endif /* CONFIG_DEBUG_FS */
  372. /*
  373. * CSRA66X0 Controls
  374. */
  375. static const DECLARE_TLV_DB_SCALE(csra66x0_volume_tlv, -9000, 25, 0);
  376. static const DECLARE_TLV_DB_RANGE(csra66x0_bass_treble_tlv,
  377. 0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
  378. 1, 15, TLV_DB_SCALE_ITEM(-1500, 100, 0),
  379. 16, 30, TLV_DB_SCALE_ITEM(100, 100, 0)
  380. );
  381. static int csra66x0_get_volume(struct snd_kcontrol *kcontrol,
  382. struct snd_ctl_elem_value *ucontrol)
  383. {
  384. struct soc_mixer_control *mc =
  385. (struct soc_mixer_control *)kcontrol->private_value;
  386. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  387. unsigned int reg_l = mc->reg;
  388. unsigned int reg_r = mc->rreg;
  389. unsigned int val_l, val_r;
  390. val_l = (snd_soc_read(codec, reg_l) & 0xff) |
  391. ((snd_soc_read(codec,
  392. CSRA66X0_CH1_VOLUME_1_FA) & (0x01)) << 8);
  393. val_r = (snd_soc_read(codec, reg_r) & 0xff) |
  394. ((snd_soc_read(codec,
  395. CSRA66X0_CH2_VOLUME_1_FA) & (0x01)) << 8);
  396. ucontrol->value.integer.value[0] = val_l;
  397. ucontrol->value.integer.value[1] = val_r;
  398. return 0;
  399. }
  400. static int csra66x0_set_volume(struct snd_kcontrol *kcontrol,
  401. struct snd_ctl_elem_value *ucontrol)
  402. {
  403. struct soc_mixer_control *mc =
  404. (struct soc_mixer_control *)kcontrol->private_value;
  405. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  406. struct csra66x0_priv *csra66x0 = snd_soc_codec_get_drvdata(codec);
  407. unsigned int reg_l = mc->reg;
  408. unsigned int reg_r = mc->rreg;
  409. unsigned int val_l[2];
  410. unsigned int val_r[2];
  411. csra66x0->spk_volume_ch1 = (ucontrol->value.integer.value[0]);
  412. csra66x0->spk_volume_ch2 = (ucontrol->value.integer.value[1]);
  413. val_l[0] = csra66x0->spk_volume_ch1 & SPK_VOLUME_LSB_MSK;
  414. val_l[1] = (csra66x0->spk_volume_ch1 & SPK_VOLUME_MSB_MSK) ? 1 : 0;
  415. val_r[0] = csra66x0->spk_volume_ch2 & SPK_VOLUME_LSB_MSK;
  416. val_r[1] = (csra66x0->spk_volume_ch2 & SPK_VOLUME_MSB_MSK) ? 1 : 0;
  417. snd_soc_write(codec, reg_l, val_l[0]);
  418. snd_soc_write(codec, reg_r, val_r[0]);
  419. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_1_FA, val_l[1]);
  420. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_1_FA, val_r[1]);
  421. return 0;
  422. }
  423. /* enumerated controls */
  424. static const char * const csra66x0_mute_output_text[] = {"PLAY", "MUTE"};
  425. static const char * const csra66x0_output_invert_text[] = {
  426. "UNCHANGED", "INVERTED"};
  427. static const char * const csra66x0_deemp_config_text[] = {
  428. "DISABLED", "ENABLED"};
  429. SOC_ENUM_SINGLE_DECL(csra66x0_mute_output_enum,
  430. CSRA66X0_MISC_CONTROL_STATUS_1_FA, 2,
  431. csra66x0_mute_output_text);
  432. SOC_ENUM_SINGLE_DECL(csra66x0_ch1_output_invert_enum,
  433. CSRA66X0_CH1_OUTPUT_INVERT_EN, 0,
  434. csra66x0_output_invert_text);
  435. SOC_ENUM_SINGLE_DECL(csra66x0_ch2_output_invert_enum,
  436. CSRA66X0_CH2_OUTPUT_INVERT_EN, 0,
  437. csra66x0_output_invert_text);
  438. SOC_ENUM_DOUBLE_DECL(csra66x0_deemp_config_enum,
  439. CSRA66X0_DEEMP_CONFIG_FA, 0, 1,
  440. csra66x0_deemp_config_text);
  441. static const struct snd_kcontrol_new csra66x0_snd_controls[] = {
  442. /* volume */
  443. SOC_DOUBLE_R_EXT_TLV("PA VOLUME", CSRA66X0_CH1_VOLUME_0_FA,
  444. CSRA66X0_CH2_VOLUME_0_FA, 0, 0x1C9, 0,
  445. csra66x0_get_volume, csra66x0_set_volume,
  446. csra66x0_volume_tlv),
  447. /* bass treble */
  448. SOC_DOUBLE_R_TLV("PA BASS GAIN", CSRA66X0_CH1_BASS_GAIN_CTRL_FA,
  449. CSRA66X0_CH2_BASS_GAIN_CTRL_FA, 0, 0x1E, 0,
  450. csra66x0_bass_treble_tlv),
  451. SOC_DOUBLE_R_TLV("PA TREBLE GAIN", CSRA66X0_CH1_TREBLE_GAIN_CTRL_FA,
  452. CSRA66X0_CH2_TREBLE_GAIN_CTRL_FA, 0, 0x1E, 0,
  453. csra66x0_bass_treble_tlv),
  454. SOC_DOUBLE_R("PA BASS_XOVER FREQ", CSRA66X0_CH1_BASS_FC_CTRL_FA,
  455. CSRA66X0_CH2_BASS_FC_CTRL_FA, 0, 2, 0),
  456. SOC_DOUBLE_R("PA TREBLE_XOVER FREQ", CSRA66X0_CH1_TREBLE_FC_CTRL_FA,
  457. CSRA66X0_CH2_TREBLE_FC_CTRL_FA, 0, 2, 0),
  458. /* switch */
  459. SOC_ENUM("PA MUTE_OUTPUT SWITCH", csra66x0_mute_output_enum),
  460. SOC_ENUM("PA DE-EMPHASIS SWITCH", csra66x0_deemp_config_enum),
  461. };
  462. static const struct snd_kcontrol_new csra_mix_switch[] = {
  463. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  464. };
  465. static const struct snd_soc_dapm_widget csra66x0_dapm_widgets[] = {
  466. SND_SOC_DAPM_INPUT("IN"),
  467. SND_SOC_DAPM_MIXER("MIXER", SND_SOC_NOPM, 0, 0,
  468. csra_mix_switch, ARRAY_SIZE(csra_mix_switch)),
  469. SND_SOC_DAPM_DAC("DAC", NULL, SND_SOC_NOPM, 0, 0),
  470. SND_SOC_DAPM_PGA("PGA", CSRA66X0_CHIP_STATE_CTRL_FA, 0, 0, NULL, 0),
  471. SND_SOC_DAPM_OUTPUT("SPKR"),
  472. SND_SOC_DAPM_SUPPLY("POWER", CSRA66X0_CHIP_STATE_CTRL_FA,
  473. 1, 1, NULL, 0),
  474. };
  475. static const struct snd_soc_dapm_route csra66x0_dapm_routes[] = {
  476. {"MIXER", "Switch", "IN"},
  477. {"DAC", NULL, "MIXER"},
  478. {"PGA", NULL, "DAC"},
  479. {"SPKR", NULL, "PGA"},
  480. {"SPKR", NULL, "POWER"},
  481. };
  482. static int csra66x0_init(struct snd_soc_codec *codec,
  483. struct csra66x0_priv *csra66x0)
  484. {
  485. /* config */
  486. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, CONFIG_STATE);
  487. /* settle time in HW is min. 500ms before proceeding */
  488. msleep(500);
  489. /* setup */
  490. snd_soc_write(codec, CSRA66X0_MISC_CONTROL_STATUS_0, 0x09);
  491. snd_soc_write(codec, CSRA66X0_TEMP_PROT_BACKOFF, 0x0C);
  492. snd_soc_write(codec, CSRA66X0_EXT_PA_PROTECT_POLARITY, 0x03);
  493. snd_soc_write(codec, CSRA66X0_PWM_OUTPUT_CONFIG, 0xC8);
  494. csra66x0->spk_volume_ch1 = SPK_VOLUME_M20DB;
  495. csra66x0->spk_volume_ch2 = SPK_VOLUME_M20DB;
  496. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_0_FA, SPK_VOLUME_M20DB_LSB);
  497. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_0_FA, SPK_VOLUME_M20DB_LSB);
  498. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_1_FA, SPK_VOLUME_M20DB_MSB);
  499. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_1_FA, SPK_VOLUME_M20DB_MSB);
  500. snd_soc_write(codec, CSRA66X0_DEAD_TIME_CTRL, 0x0);
  501. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_0, 0xE7);
  502. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_1, 0x26);
  503. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_2, 0x40);
  504. snd_soc_write(codec, CSRA66X0_MIN_MODULATION_PULSE_WIDTH, 0x7A);
  505. snd_soc_write(codec, CSRA66X0_CH1_HARD_CLIP_THRESH, 0x00);
  506. snd_soc_write(codec, CSRA66X0_CH2_HARD_CLIP_THRESH, 0x00);
  507. snd_soc_write(codec, CSRA66X0_CH1_DCA_THRESH, 0x40);
  508. snd_soc_write(codec, CSRA66X0_CH2_DCA_THRESH, 0x40);
  509. snd_soc_write(codec, CSRA66X0_DCA_ATTACK_RATE, 0x00);
  510. snd_soc_write(codec, CSRA66X0_DCA_RELEASE_RATE, 0x00);
  511. if (csra66x0->irq) {
  512. snd_soc_write(codec, CSRA66X0_PIO0_SELECT, 0x1);
  513. if (csra66x0->irq_active_low)
  514. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_POLARITY, 0x0);
  515. else
  516. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_POLARITY, 0x1);
  517. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_ENABLE, 0x01);
  518. } else {
  519. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_ENABLE, 0x00);
  520. }
  521. /* settle time in HW is min. 500ms before slave initializing */
  522. msleep(500);
  523. return 0;
  524. }
  525. static int csra66x0_soc_probe(struct snd_soc_codec *codec)
  526. {
  527. struct csra66x0_priv *csra66x0 = snd_soc_codec_get_drvdata(codec);
  528. struct snd_soc_dapm_context *dapm;
  529. char name[50];
  530. if (csra66x0->in_cluster) {
  531. dapm = snd_soc_codec_get_dapm(codec);
  532. dev_dbg(codec->dev, "%s: assign prefix %s to codec device %s\n",
  533. __func__, codec->component.name_prefix,
  534. codec->component.name);
  535. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA,
  536. CONFIG_STATE);
  537. /* settle time in HW is min. 500ms before proceeding */
  538. msleep(500);
  539. snd_soc_write(codec, CSRA66X0_PIO7_SELECT, 0x04);
  540. snd_soc_write(codec, CSRA66X0_PIO8_SELECT, 0x04);
  541. if (csra66x0->is_master) {
  542. /* Master specific config */
  543. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0xFF);
  544. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR0, 0x80);
  545. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x01);
  546. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR1, 0x01);
  547. } else {
  548. /* Slave specific config */
  549. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0x7F);
  550. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x00);
  551. }
  552. snd_soc_write(codec, CSRA66X0_DCA_CTRL, 0x05);
  553. if (dapm->component) {
  554. strlcpy(name, dapm->component->name_prefix,
  555. sizeof(name));
  556. strlcat(name, " IN", sizeof(name));
  557. snd_soc_dapm_ignore_suspend(dapm, name);
  558. strlcpy(name, dapm->component->name_prefix,
  559. sizeof(name));
  560. strlcat(name, " SPKR", sizeof(name));
  561. snd_soc_dapm_ignore_suspend(dapm, name);
  562. }
  563. }
  564. csra66x0->codec = codec;
  565. /* common configuration */
  566. csra66x0_init(codec, csra66x0);
  567. return 0;
  568. }
  569. static int csra66x0_soc_remove(struct snd_soc_codec *codec)
  570. {
  571. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, STDBY_STATE);
  572. return 0;
  573. }
  574. static int csra66x0_soc_suspend(struct snd_soc_codec *codec)
  575. {
  576. u16 state_reg = snd_soc_read(codec, CSRA66X0_CHIP_STATE_CTRL_FA) & 0xFC;
  577. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, state_reg |
  578. STDBY_STATE);
  579. return 0;
  580. }
  581. static int csra66x0_soc_resume(struct snd_soc_codec *codec)
  582. {
  583. u16 state_reg = snd_soc_read(codec, CSRA66X0_CHIP_STATE_CTRL_FA) & 0xFC;
  584. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, state_reg |
  585. RUN_STATE);
  586. return 0;
  587. }
  588. static struct regmap *csra66x0_get_regmap(struct device *dev)
  589. {
  590. struct csra66x0_priv *csra66x0_ctrl = dev_get_drvdata(dev);
  591. if (!csra66x0_ctrl)
  592. return NULL;
  593. return csra66x0_ctrl->regmap;
  594. }
  595. static struct snd_soc_codec_driver soc_codec_drv_csra66x0 = {
  596. .probe = csra66x0_soc_probe,
  597. .remove = csra66x0_soc_remove,
  598. .suspend = csra66x0_soc_suspend,
  599. .resume = csra66x0_soc_resume,
  600. .get_regmap = csra66x0_get_regmap,
  601. .component_driver = {
  602. .controls = csra66x0_snd_controls,
  603. .num_controls = ARRAY_SIZE(csra66x0_snd_controls),
  604. .dapm_widgets = csra66x0_dapm_widgets,
  605. .num_dapm_widgets = ARRAY_SIZE(csra66x0_dapm_widgets),
  606. .dapm_routes = csra66x0_dapm_routes,
  607. .num_dapm_routes = ARRAY_SIZE(csra66x0_dapm_routes),
  608. },
  609. };
  610. static struct regmap_config csra66x0_regmap_config = {
  611. .reg_bits = 16,
  612. .val_bits = 8,
  613. .cache_type = REGCACHE_RBTREE,
  614. .reg_defaults = csra66x0_reg_defaults,
  615. .num_reg_defaults = ARRAY_SIZE(csra66x0_reg_defaults),
  616. .max_register = CSRA66X0_MAX_REGISTER_ADDR,
  617. .volatile_reg = csra66x0_volatile_register,
  618. .writeable_reg = csra66x0_writeable_registers,
  619. .readable_reg = csra66x0_readable_registers,
  620. };
  621. static irqreturn_t csra66x0_irq(int irq, void *data)
  622. {
  623. struct csra66x0_priv *csra66x0 = (struct csra66x0_priv *) data;
  624. struct snd_soc_codec *codec = csra66x0->codec;
  625. u16 val;
  626. /* Treat interrupt before codec is initialized as spurious */
  627. if (codec == NULL)
  628. return IRQ_NONE;
  629. dev_dbg(codec->dev, "%s: csra66x0_interrupt\n", __func__);
  630. /* fault indication */
  631. val = snd_soc_read(codec, CSRA66X0_IRQ_OUTPUT_STATUS_FA) & 0x1;
  632. if (val) {
  633. val = snd_soc_read(codec, CSRA66X0_FAULT_STATUS_FA);
  634. if (val & FAULT_STATUS_INTERNAL)
  635. dev_dbg(codec->dev, "%s: FAULT_STATUS_INTERNAL 0x%X\n",
  636. __func__, val);
  637. if (val & FAULT_STATUS_OTP_INTEGRITY)
  638. dev_dbg(codec->dev, "%s: FAULT_STATUS_OTP_INTEGRITY 0x%X\n",
  639. __func__, val);
  640. if (val & FAULT_STATUS_PADS2)
  641. dev_dbg(codec->dev, "%s: FAULT_STATUS_PADS2 0x%X\n",
  642. __func__, val);
  643. if (val & FAULT_STATUS_SMPS)
  644. dev_dbg(codec->dev, "%s: FAULT_STATUS_SMPS 0x%X\n",
  645. __func__, val);
  646. if (val & FAULT_STATUS_TEMP)
  647. dev_dbg(codec->dev, "%s: FAULT_STATUS_TEMP 0x%X\n",
  648. __func__, val);
  649. if (val & FAULT_STATUS_PROTECT)
  650. dev_dbg(codec->dev, "%s: FAULT_STATUS_PROTECT 0x%X\n",
  651. __func__, val);
  652. /* clear fault state and re-init */
  653. snd_soc_write(codec, CSRA66X0_FAULT_STATUS_FA, 0x00);
  654. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_STATUS_FA, 0x00);
  655. /* apply reset to CSRA66X0 */
  656. val = snd_soc_read(codec, CSRA66X0_MISC_CONTROL_STATUS_1_FA);
  657. snd_soc_write(codec, CSRA66X0_MISC_CONTROL_STATUS_1_FA, val | 0x08);
  658. /* wait 2s after reset to recover CSRA66X0 */
  659. msleep(2000);
  660. /* re-init */
  661. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA,
  662. CONFIG_STATE);
  663. /* settle time in HW is min. 500ms before proceeding */
  664. msleep(500);
  665. snd_soc_write(codec, CSRA66X0_PIO7_SELECT, 0x04);
  666. snd_soc_write(codec, CSRA66X0_PIO8_SELECT, 0x04);
  667. if (csra66x0->is_master) {
  668. /* Master specific config */
  669. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0xFF);
  670. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR0, 0x80);
  671. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x01);
  672. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR1, 0x01);
  673. } else {
  674. /* Slave specific config */
  675. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0x7F);
  676. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x00);
  677. }
  678. snd_soc_write(codec, CSRA66X0_DCA_CTRL, 0x05);
  679. csra66x0_init(codec, csra66x0);
  680. } else {
  681. return IRQ_NONE;
  682. }
  683. return IRQ_HANDLED;
  684. };
  685. static const struct of_device_id csra66x0_of_match[] = {
  686. { .compatible = "qcom,csra66x0", },
  687. { }
  688. };
  689. MODULE_DEVICE_TABLE(of, csra66x0_of_match);
  690. #if IS_ENABLED(CONFIG_I2C)
  691. static int csra66x0_i2c_probe(struct i2c_client *client_i2c,
  692. const struct i2c_device_id *id)
  693. {
  694. struct csra66x0_priv *csra66x0;
  695. int ret, irq_trigger;
  696. char debugfs_dir_name[32];
  697. csra66x0 = devm_kzalloc(&client_i2c->dev, sizeof(struct csra66x0_priv),
  698. GFP_KERNEL);
  699. if (csra66x0 == NULL)
  700. return -ENOMEM;
  701. csra66x0->regmap = devm_regmap_init_i2c(client_i2c,
  702. &csra66x0_regmap_config);
  703. if (IS_ERR(csra66x0->regmap)) {
  704. ret = PTR_ERR(csra66x0->regmap);
  705. dev_err(&client_i2c->dev,
  706. "%s %d: Failed to allocate register map for I2C device: %d\n",
  707. __func__, __LINE__, ret);
  708. return ret;
  709. }
  710. i2c_set_clientdata(client_i2c, csra66x0);
  711. /* get data from device tree */
  712. if (client_i2c->dev.of_node) {
  713. /* cluster of multiple devices */
  714. ret = of_property_read_u32(
  715. client_i2c->dev.of_node, "qcom,csra-cluster",
  716. &csra66x0->in_cluster);
  717. if (ret) {
  718. dev_info(&client_i2c->dev,
  719. "%s: qcom,csra-cluster property not defined in DT\n", __func__);
  720. csra66x0->in_cluster = 0;
  721. }
  722. /* master or slave device */
  723. ret = of_property_read_u32(
  724. client_i2c->dev.of_node, "qcom,csra-cluster-master",
  725. &csra66x0->is_master);
  726. if (ret) {
  727. dev_info(&client_i2c->dev,
  728. "%s: qcom,csra-cluster-master property not defined in DT\n", __func__);
  729. csra66x0->is_master = 0;
  730. }
  731. /* gpio setup for vreg */
  732. csra66x0->vreg_gpio = of_get_named_gpio(client_i2c->dev.of_node,
  733. "qcom,csra-vreg-en-gpio", 0);
  734. if (!gpio_is_valid(csra66x0->vreg_gpio)) {
  735. dev_err(&client_i2c->dev, "%s: %s property is not found %d\n",
  736. __func__, "qcom,csra-vreg-en-gpio",
  737. csra66x0->vreg_gpio);
  738. return -ENODEV;
  739. }
  740. dev_dbg(&client_i2c->dev, "%s: vreg_en gpio %d\n", __func__,
  741. csra66x0->vreg_gpio);
  742. ret = gpio_request(csra66x0->vreg_gpio, dev_name(&client_i2c->dev));
  743. if (ret) {
  744. if (ret == -EBUSY) {
  745. /* GPIO was already requested */
  746. dev_dbg(&client_i2c->dev,
  747. "%s: gpio %d is already set\n",
  748. __func__, csra66x0->vreg_gpio);
  749. } else {
  750. dev_err(&client_i2c->dev, "%s: Failed to request gpio %d, err: %d\n",
  751. __func__, csra66x0->vreg_gpio, ret);
  752. }
  753. } else {
  754. gpio_direction_output(csra66x0->vreg_gpio, 1);
  755. gpio_set_value(csra66x0->vreg_gpio, 0);
  756. }
  757. /* register interrupt handle */
  758. if (client_i2c->irq) {
  759. csra66x0->irq = client_i2c->irq;
  760. /* interrupt polarity */
  761. ret = of_property_read_u32(
  762. client_i2c->dev.of_node, "irq-active-low",
  763. &csra66x0->irq_active_low);
  764. if (ret) {
  765. dev_info(&client_i2c->dev,
  766. "%s: irq-active-low property not defined in DT\n", __func__);
  767. csra66x0->irq_active_low = 0;
  768. }
  769. if (csra66x0->irq_active_low)
  770. irq_trigger = IRQF_TRIGGER_LOW;
  771. else
  772. irq_trigger = IRQF_TRIGGER_HIGH;
  773. ret = devm_request_threaded_irq(&client_i2c->dev,
  774. csra66x0->irq, NULL, csra66x0_irq,
  775. irq_trigger | IRQF_ONESHOT,
  776. "csra66x0_irq", csra66x0);
  777. if (ret) {
  778. dev_err(&client_i2c->dev,
  779. "%s: Failed to request IRQ %d: %d\n",
  780. __func__, csra66x0->irq, ret);
  781. csra66x0->irq = 0;
  782. }
  783. }
  784. }
  785. #if IS_ENABLED(CONFIG_DEBUG_FS)
  786. /* debugfs interface */
  787. snprintf(debugfs_dir_name, sizeof(debugfs_dir_name), "%s-%s",
  788. client_i2c->name, dev_name(&client_i2c->dev));
  789. csra66x0->debugfs_dir = debugfs_create_dir(debugfs_dir_name, NULL);
  790. if (!csra66x0->debugfs_dir) {
  791. dev_dbg(&client_i2c->dev,
  792. "%s: Failed to create /sys/kernel/debug/%s for debugfs\n",
  793. __func__, debugfs_dir_name);
  794. return -ENOMEM;
  795. }
  796. csra66x0->debugfs_file_wo = debugfs_create_file(
  797. "write_reg_val", S_IFREG | S_IRUGO, csra66x0->debugfs_dir,
  798. (void *) csra66x0,
  799. &debugfs_codec_ops);
  800. if (!csra66x0->debugfs_file_wo) {
  801. dev_dbg(&client_i2c->dev,
  802. "%s: Failed to create /sys/kernel/debug/%s/write_reg_val\n",
  803. __func__, debugfs_dir_name);
  804. return -ENOMEM;
  805. }
  806. csra66x0->debugfs_file_ro = debugfs_create_file(
  807. "show_reg_dump", S_IFREG | S_IRUGO, csra66x0->debugfs_dir,
  808. (void *) csra66x0,
  809. &debugfs_codec_ops);
  810. if (!csra66x0->debugfs_file_ro) {
  811. dev_dbg(&client_i2c->dev,
  812. "%s: Failed to create /sys/kernel/debug/%s/show_reg_dump\n",
  813. __func__, debugfs_dir_name);
  814. return -ENOMEM;
  815. }
  816. #endif /* CONFIG_DEBUG_FS */
  817. /* register codec */
  818. ret = snd_soc_register_codec(&client_i2c->dev,
  819. &soc_codec_drv_csra66x0, NULL, 0);
  820. if (ret != 0) {
  821. dev_err(&client_i2c->dev, "%s %d: Failed to register codec: %d\n",
  822. __func__, __LINE__, ret);
  823. if (gpio_is_valid(csra66x0->vreg_gpio)) {
  824. gpio_set_value(csra66x0->vreg_gpio, 0);
  825. gpio_free(csra66x0->vreg_gpio);
  826. }
  827. return ret;
  828. }
  829. return 0;
  830. }
  831. static int csra66x0_i2c_remove(struct i2c_client *i2c_client)
  832. {
  833. struct csra66x0_priv *csra66x0 = i2c_get_clientdata(i2c_client);
  834. if (csra66x0) {
  835. if (gpio_is_valid(csra66x0->vreg_gpio)) {
  836. gpio_set_value(csra66x0->vreg_gpio, 0);
  837. gpio_free(csra66x0->vreg_gpio);
  838. }
  839. #if IS_ENABLED(CONFIG_DEBUG_FS)
  840. debugfs_remove_recursive(csra66x0->debugfs_dir);
  841. #endif
  842. }
  843. snd_soc_unregister_codec(&i2c_client->dev);
  844. return 0;
  845. }
  846. static const struct i2c_device_id csra66x0_i2c_id[] = {
  847. { "csra66x0", 0},
  848. { }
  849. };
  850. MODULE_DEVICE_TABLE(i2c, csra66x0_i2c_id);
  851. static struct i2c_driver csra66x0_i2c_driver = {
  852. .probe = csra66x0_i2c_probe,
  853. .remove = csra66x0_i2c_remove,
  854. .id_table = csra66x0_i2c_id,
  855. .driver = {
  856. .name = "csra66x0",
  857. .owner = THIS_MODULE,
  858. .of_match_table = csra66x0_of_match
  859. },
  860. };
  861. #endif
  862. static int __init csra66x0_codec_init(void)
  863. {
  864. int ret = 0;
  865. #if IS_ENABLED(CONFIG_I2C)
  866. ret = i2c_add_driver(&csra66x0_i2c_driver);
  867. if (ret != 0)
  868. pr_err("%s: Failed to register CSRA66X0 I2C driver, ret = %d\n",
  869. __func__, ret);
  870. #endif
  871. return ret;
  872. }
  873. module_init(csra66x0_codec_init);
  874. static void __exit csra66x0_codec_exit(void)
  875. {
  876. #if IS_ENABLED(CONFIG_I2C)
  877. i2c_del_driver(&csra66x0_i2c_driver);
  878. #endif
  879. }
  880. module_exit(csra66x0_codec_exit);
  881. MODULE_DESCRIPTION("CSRA66X0 Codec driver");
  882. MODULE_LICENSE("GPL v2");