csra66x0.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  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_ROM_VER_FA:
  216. case CSRA66X0_CHIP_REV_0_FA:
  217. case CSRA66X0_CHIP_REV_1_FA:
  218. case CSRA66X0_TEMP_READ0_FA:
  219. case CSRA66X0_TEMP_READ1_FA:
  220. case CSRA66X0_MISC_CONTROL_STATUS_1_FA:
  221. case CSRA66X0_IRQ_OUTPUT_STATUS_FA:
  222. case CSRA66X0_CLIP_DCA_STATUS_FA:
  223. case CSRA66X0_CHIP_STATE_STATUS_FA:
  224. case CSRA66X0_FAULT_STATUS_FA:
  225. case CSRA66X0_OTP_STATUS_FA:
  226. case CSRA66X0_AUDIO_IF_STATUS_FA:
  227. case CSRA66X0_DSP_SATURATION_STATUS_FA:
  228. case CSRA66X0_AUDIO_RATE_STATUS_FA:
  229. return true;
  230. default:
  231. return false;
  232. }
  233. }
  234. static bool csra66x0_writeable_registers(struct device *dev, unsigned int reg)
  235. {
  236. if ((reg >= CSRA66X0_AUDIO_IF_RX_CONFIG1)
  237. && (reg <= CSRA66X0_MAX_REGISTER_ADDR))
  238. return true;
  239. return false;
  240. }
  241. static bool csra66x0_readable_registers(struct device *dev, unsigned int reg)
  242. {
  243. if ((reg >= CSRA66X0_AUDIO_IF_RX_CONFIG1)
  244. && (reg <= CSRA66X0_MAX_REGISTER_ADDR))
  245. return true;
  246. return false;
  247. }
  248. /* codec private data */
  249. struct csra66x0_priv {
  250. struct regmap *regmap;
  251. struct snd_soc_codec *codec;
  252. int spk_volume_ch1;
  253. int spk_volume_ch2;
  254. int irq;
  255. int vreg_gpio;
  256. u32 irq_active_low;
  257. u32 in_cluster;
  258. u32 is_master;
  259. #if IS_ENABLED(CONFIG_DEBUG_FS)
  260. struct dentry *debugfs_dir;
  261. struct dentry *debugfs_file_wo;
  262. struct dentry *debugfs_file_ro;
  263. #endif /* CONFIG_DEBUG_FS */
  264. };
  265. struct csra66x0_cluster_device {
  266. struct csra66x0_priv *csra66x0_ptr;
  267. const char *csra66x0_prefix;
  268. };
  269. struct csra66x0_cluster_device csra_clust_dev_tbl[] = {
  270. {NULL, "CSRA_12"},
  271. {NULL, "CSRA_34"},
  272. {NULL, "CSRA_56"},
  273. {NULL, "CSRA_78"},
  274. {NULL, "CSRA_9A"},
  275. {NULL, "CSRA_BC"}
  276. };
  277. #if IS_ENABLED(CONFIG_DEBUG_FS)
  278. static int debugfs_codec_open_op(struct inode *inode, struct file *file)
  279. {
  280. file->private_data = inode->i_private;
  281. return 0;
  282. }
  283. static int debugfs_get_parameters(char *buf, u32 *param1, int num_of_par)
  284. {
  285. char *token;
  286. int base, cnt;
  287. token = strsep(&buf, " ");
  288. for (cnt = 0; cnt < num_of_par; cnt++) {
  289. if (token) {
  290. if ((token[1] == 'x') || (token[1] == 'X'))
  291. base = 16;
  292. else
  293. base = 10;
  294. if (kstrtou32(token, base, &param1[cnt]) != 0)
  295. return -EINVAL;
  296. token = strsep(&buf, " ");
  297. } else {
  298. return -EINVAL;
  299. }
  300. }
  301. return 0;
  302. }
  303. static ssize_t debugfs_codec_write_op(struct file *filp,
  304. const char __user *ubuf, size_t cnt, loff_t *ppos)
  305. {
  306. struct csra66x0_priv *csra66x0 =
  307. (struct csra66x0_priv *) filp->private_data;
  308. struct snd_soc_codec *codec = csra66x0->codec;
  309. char lbuf[32];
  310. int rc;
  311. u32 param[2];
  312. if (!filp || !ppos || !ubuf)
  313. return -EINVAL;
  314. if (cnt > sizeof(lbuf) - 1)
  315. return -EINVAL;
  316. rc = copy_from_user(lbuf, ubuf, cnt);
  317. if (rc)
  318. return -EFAULT;
  319. lbuf[cnt] = '\0';
  320. rc = debugfs_get_parameters(lbuf, param, 2);
  321. if ((param[0] < CSRA66X0_AUDIO_IF_RX_CONFIG1)
  322. || (param[0] > CSRA66X0_MAX_REGISTER_ADDR)) {
  323. dev_err(codec->dev, "%s: register address 0x%04X out of range\n",
  324. __func__, param[0]);
  325. return -EINVAL;
  326. }
  327. if ((param[1] < 0) || (param[1] > 255)) {
  328. dev_err(codec->dev, "%s: register data 0x%02X out of range\n",
  329. __func__, param[1]);
  330. return -EINVAL;
  331. }
  332. if (rc == 0)
  333. {
  334. rc = cnt;
  335. dev_info(codec->dev, "%s: reg[0x%04X]=0x%02X\n",
  336. __func__, param[0], param[1]);
  337. snd_soc_write(codec, param[0], param[1]);
  338. } else {
  339. dev_err(codec->dev, "%s: write to register addr=0x%04X failed\n",
  340. __func__, param[0]);
  341. }
  342. return rc;
  343. }
  344. static ssize_t debugfs_csra66x0_reg_show(struct snd_soc_codec *codec,
  345. char __user *ubuf, size_t count, loff_t *ppos)
  346. {
  347. int i, reg_val, len;
  348. ssize_t total = 0;
  349. char tmp_buf[20];
  350. if (!ubuf || !ppos || !codec || *ppos < 0)
  351. return -EINVAL;
  352. for (i = ((int) *ppos + CSRA66X0_BASE);
  353. i <= CSRA66X0_MAX_REGISTER_ADDR; i++) {
  354. reg_val = snd_soc_read(codec, i);
  355. len = snprintf(tmp_buf, 20, "0x%04X: 0x%02X\n", i, (reg_val & 0xFF));
  356. if ((total + len) >= count - 1)
  357. break;
  358. if (copy_to_user((ubuf + total), tmp_buf, len)) {
  359. dev_err(codec->dev, "%s: fail to copy reg dump\n", __func__);
  360. total = -EFAULT;
  361. goto copy_err;
  362. }
  363. *ppos += len;
  364. total += len;
  365. }
  366. copy_err:
  367. return total;
  368. }
  369. static ssize_t debugfs_codec_read_op(struct file *filp,
  370. char __user *ubuf, size_t cnt, loff_t *ppos)
  371. {
  372. struct csra66x0_priv *csra66x0 =
  373. (struct csra66x0_priv *) filp->private_data;
  374. struct snd_soc_codec *codec = csra66x0->codec;
  375. ssize_t ret_cnt;
  376. if (!filp || !ppos || !ubuf || *ppos < 0)
  377. return -EINVAL;
  378. ret_cnt = debugfs_csra66x0_reg_show(codec, ubuf, cnt, ppos);
  379. return ret_cnt;
  380. }
  381. static const struct file_operations debugfs_codec_ops = {
  382. .open = debugfs_codec_open_op,
  383. .write = debugfs_codec_write_op,
  384. .read = debugfs_codec_read_op,
  385. };
  386. #endif /* CONFIG_DEBUG_FS */
  387. /*
  388. * CSRA66X0 Controls
  389. */
  390. static const DECLARE_TLV_DB_SCALE(csra66x0_volume_tlv, -9000, 25, 0);
  391. static const DECLARE_TLV_DB_RANGE(csra66x0_bass_treble_tlv,
  392. 0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
  393. 1, 15, TLV_DB_SCALE_ITEM(-1500, 100, 0),
  394. 16, 30, TLV_DB_SCALE_ITEM(100, 100, 0)
  395. );
  396. static int csra66x0_get_volume(struct snd_kcontrol *kcontrol,
  397. struct snd_ctl_elem_value *ucontrol)
  398. {
  399. struct soc_mixer_control *mc =
  400. (struct soc_mixer_control *)kcontrol->private_value;
  401. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  402. unsigned int reg_l = mc->reg;
  403. unsigned int reg_r = mc->rreg;
  404. unsigned int val_l, val_r;
  405. val_l = (snd_soc_read(codec, reg_l) & 0xff) |
  406. ((snd_soc_read(codec,
  407. CSRA66X0_CH1_VOLUME_1_FA) & (0x01)) << 8);
  408. val_r = (snd_soc_read(codec, reg_r) & 0xff) |
  409. ((snd_soc_read(codec,
  410. CSRA66X0_CH2_VOLUME_1_FA) & (0x01)) << 8);
  411. ucontrol->value.integer.value[0] = val_l;
  412. ucontrol->value.integer.value[1] = val_r;
  413. return 0;
  414. }
  415. static int csra66x0_set_volume(struct snd_kcontrol *kcontrol,
  416. struct snd_ctl_elem_value *ucontrol)
  417. {
  418. struct soc_mixer_control *mc =
  419. (struct soc_mixer_control *)kcontrol->private_value;
  420. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  421. struct csra66x0_priv *csra66x0 = snd_soc_codec_get_drvdata(codec);
  422. unsigned int reg_l = mc->reg;
  423. unsigned int reg_r = mc->rreg;
  424. unsigned int val_l[2];
  425. unsigned int val_r[2];
  426. csra66x0->spk_volume_ch1 = (ucontrol->value.integer.value[0]);
  427. csra66x0->spk_volume_ch2 = (ucontrol->value.integer.value[1]);
  428. val_l[0] = csra66x0->spk_volume_ch1 & SPK_VOLUME_LSB_MSK;
  429. val_l[1] = (csra66x0->spk_volume_ch1 & SPK_VOLUME_MSB_MSK) ? 1 : 0;
  430. val_r[0] = csra66x0->spk_volume_ch2 & SPK_VOLUME_LSB_MSK;
  431. val_r[1] = (csra66x0->spk_volume_ch2 & SPK_VOLUME_MSB_MSK) ? 1 : 0;
  432. snd_soc_write(codec, reg_l, val_l[0]);
  433. snd_soc_write(codec, reg_r, val_r[0]);
  434. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_1_FA, val_l[1]);
  435. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_1_FA, val_r[1]);
  436. return 0;
  437. }
  438. /* enumerated controls */
  439. static const char * const csra66x0_mute_output_text[] = {"PLAY", "MUTE"};
  440. static const char * const csra66x0_output_invert_text[] = {
  441. "UNCHANGED", "INVERTED"};
  442. static const char * const csra66x0_deemp_config_text[] = {
  443. "DISABLED", "ENABLED"};
  444. SOC_ENUM_SINGLE_DECL(csra66x0_mute_output_enum,
  445. CSRA66X0_MISC_CONTROL_STATUS_1_FA, 2,
  446. csra66x0_mute_output_text);
  447. SOC_ENUM_SINGLE_DECL(csra66x0_ch1_output_invert_enum,
  448. CSRA66X0_CH1_OUTPUT_INVERT_EN, 0,
  449. csra66x0_output_invert_text);
  450. SOC_ENUM_SINGLE_DECL(csra66x0_ch2_output_invert_enum,
  451. CSRA66X0_CH2_OUTPUT_INVERT_EN, 0,
  452. csra66x0_output_invert_text);
  453. SOC_ENUM_DOUBLE_DECL(csra66x0_deemp_config_enum,
  454. CSRA66X0_DEEMP_CONFIG_FA, 0, 1,
  455. csra66x0_deemp_config_text);
  456. static const struct snd_kcontrol_new csra66x0_snd_controls[] = {
  457. /* volume */
  458. SOC_DOUBLE_R_EXT_TLV("PA VOLUME", CSRA66X0_CH1_VOLUME_0_FA,
  459. CSRA66X0_CH2_VOLUME_0_FA, 0, 0x1C9, 0,
  460. csra66x0_get_volume, csra66x0_set_volume,
  461. csra66x0_volume_tlv),
  462. /* bass treble */
  463. SOC_DOUBLE_R_TLV("PA BASS GAIN", CSRA66X0_CH1_BASS_GAIN_CTRL_FA,
  464. CSRA66X0_CH2_BASS_GAIN_CTRL_FA, 0, 0x1E, 0,
  465. csra66x0_bass_treble_tlv),
  466. SOC_DOUBLE_R_TLV("PA TREBLE GAIN", CSRA66X0_CH1_TREBLE_GAIN_CTRL_FA,
  467. CSRA66X0_CH2_TREBLE_GAIN_CTRL_FA, 0, 0x1E, 0,
  468. csra66x0_bass_treble_tlv),
  469. SOC_DOUBLE_R("PA BASS_XOVER FREQ", CSRA66X0_CH1_BASS_FC_CTRL_FA,
  470. CSRA66X0_CH2_BASS_FC_CTRL_FA, 0, 2, 0),
  471. SOC_DOUBLE_R("PA TREBLE_XOVER FREQ", CSRA66X0_CH1_TREBLE_FC_CTRL_FA,
  472. CSRA66X0_CH2_TREBLE_FC_CTRL_FA, 0, 2, 0),
  473. /* switch */
  474. SOC_ENUM("PA MUTE_OUTPUT SWITCH", csra66x0_mute_output_enum),
  475. SOC_ENUM("PA DE-EMPHASIS SWITCH", csra66x0_deemp_config_enum),
  476. };
  477. static const struct snd_kcontrol_new csra_mix_switch[] = {
  478. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  479. };
  480. static const struct snd_soc_dapm_widget csra66x0_dapm_widgets[] = {
  481. SND_SOC_DAPM_INPUT("IN"),
  482. SND_SOC_DAPM_MIXER("MIXER", SND_SOC_NOPM, 0, 0,
  483. csra_mix_switch, ARRAY_SIZE(csra_mix_switch)),
  484. SND_SOC_DAPM_DAC("DAC", NULL, SND_SOC_NOPM, 0, 0),
  485. SND_SOC_DAPM_PGA("PGA", CSRA66X0_CHIP_STATE_CTRL_FA, 0, 0, NULL, 0),
  486. SND_SOC_DAPM_OUTPUT("SPKR"),
  487. SND_SOC_DAPM_SUPPLY("POWER", CSRA66X0_CHIP_STATE_CTRL_FA,
  488. 1, 1, NULL, 0),
  489. };
  490. static const struct snd_soc_dapm_route csra66x0_dapm_routes[] = {
  491. {"MIXER", "Switch", "IN"},
  492. {"DAC", NULL, "MIXER"},
  493. {"PGA", NULL, "DAC"},
  494. {"SPKR", NULL, "PGA"},
  495. {"SPKR", NULL, "POWER"},
  496. };
  497. static int csra66x0_init(struct csra66x0_priv *csra66x0)
  498. {
  499. struct snd_soc_codec *codec = csra66x0->codec;
  500. dev_dbg(codec->dev, "%s: initialize %s\n",
  501. __func__, codec->component.name);
  502. /* config */
  503. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, CONFIG_STATE);
  504. /* settle time in HW is min. 500ms before proceeding */
  505. msleep(500);
  506. /* setup */
  507. snd_soc_write(codec, CSRA66X0_MISC_CONTROL_STATUS_0, 0x09);
  508. snd_soc_write(codec, CSRA66X0_TEMP_PROT_BACKOFF, 0x0C);
  509. snd_soc_write(codec, CSRA66X0_EXT_PA_PROTECT_POLARITY, 0x03);
  510. snd_soc_write(codec, CSRA66X0_PWM_OUTPUT_CONFIG, 0xC8);
  511. csra66x0->spk_volume_ch1 = SPK_VOLUME_M20DB;
  512. csra66x0->spk_volume_ch2 = SPK_VOLUME_M20DB;
  513. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_0_FA, SPK_VOLUME_M20DB_LSB);
  514. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_0_FA, SPK_VOLUME_M20DB_LSB);
  515. snd_soc_write(codec, CSRA66X0_CH1_VOLUME_1_FA, SPK_VOLUME_M20DB_MSB);
  516. snd_soc_write(codec, CSRA66X0_CH2_VOLUME_1_FA, SPK_VOLUME_M20DB_MSB);
  517. snd_soc_write(codec, CSRA66X0_DEAD_TIME_CTRL, 0x0);
  518. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_0, 0xE7);
  519. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_1, 0x26);
  520. snd_soc_write(codec, CSRA66X0_DEAD_TIME_THRESHOLD_2, 0x40);
  521. snd_soc_write(codec, CSRA66X0_MIN_MODULATION_PULSE_WIDTH, 0x7A);
  522. snd_soc_write(codec, CSRA66X0_CH1_HARD_CLIP_THRESH, 0x00);
  523. snd_soc_write(codec, CSRA66X0_CH2_HARD_CLIP_THRESH, 0x00);
  524. snd_soc_write(codec, CSRA66X0_CH1_DCA_THRESH, 0x40);
  525. snd_soc_write(codec, CSRA66X0_CH2_DCA_THRESH, 0x40);
  526. snd_soc_write(codec, CSRA66X0_DCA_ATTACK_RATE, 0x00);
  527. snd_soc_write(codec, CSRA66X0_DCA_RELEASE_RATE, 0x00);
  528. if (csra66x0->irq) {
  529. snd_soc_write(codec, CSRA66X0_PIO0_SELECT, 0x1);
  530. if (csra66x0->irq_active_low)
  531. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_POLARITY, 0x0);
  532. else
  533. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_POLARITY, 0x1);
  534. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_ENABLE, 0x01);
  535. } else {
  536. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_ENABLE, 0x00);
  537. }
  538. /* settle time in HW is min. 500ms before slave initializing */
  539. msleep(500);
  540. return 0;
  541. }
  542. static int csra66x0_reset(struct csra66x0_priv *csra66x0)
  543. {
  544. struct snd_soc_codec *codec = csra66x0->codec;
  545. u16 val;
  546. val = snd_soc_read(codec, CSRA66X0_FAULT_STATUS_FA);
  547. if (val & FAULT_STATUS_INTERNAL)
  548. dev_dbg(codec->dev, "%s: FAULT_STATUS_INTERNAL 0x%X\n",
  549. __func__, val);
  550. if (val & FAULT_STATUS_OTP_INTEGRITY)
  551. dev_dbg(codec->dev, "%s: FAULT_STATUS_OTP_INTEGRITY 0x%X\n",
  552. __func__, val);
  553. if (val & FAULT_STATUS_PADS2)
  554. dev_dbg(codec->dev, "%s: FAULT_STATUS_PADS2 0x%X\n",
  555. __func__, val);
  556. if (val & FAULT_STATUS_SMPS)
  557. dev_dbg(codec->dev, "%s: FAULT_STATUS_SMPS 0x%X\n",
  558. __func__, val);
  559. if (val & FAULT_STATUS_TEMP)
  560. dev_dbg(codec->dev, "%s: FAULT_STATUS_TEMP 0x%X\n",
  561. __func__, val);
  562. if (val & FAULT_STATUS_PROTECT)
  563. dev_dbg(codec->dev, "%s: FAULT_STATUS_PROTECT 0x%X\n",
  564. __func__, val);
  565. dev_dbg(codec->dev, "%s: reset %s\n",
  566. __func__, codec->component.name);
  567. /* clear fault state and re-init */
  568. snd_soc_write(codec, CSRA66X0_FAULT_STATUS_FA, 0x00);
  569. snd_soc_write(codec, CSRA66X0_IRQ_OUTPUT_STATUS_FA, 0x00);
  570. /* apply reset to CSRA66X0 */
  571. val = snd_soc_read(codec, CSRA66X0_MISC_CONTROL_STATUS_1_FA);
  572. snd_soc_write(codec, CSRA66X0_MISC_CONTROL_STATUS_1_FA, val | 0x08);
  573. /* wait 500ms after reset to recover CSRA66X0 */
  574. msleep(500);
  575. return 0;
  576. }
  577. static int csra66x0_msconfig(struct csra66x0_priv *csra66x0)
  578. {
  579. struct snd_soc_codec *codec = csra66x0->codec;
  580. dev_dbg(codec->dev, "%s: configure %s\n",
  581. __func__, codec->component.name);
  582. /* config */
  583. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA,
  584. CONFIG_STATE);
  585. /* settle time in HW is min. 500ms before proceeding */
  586. msleep(500);
  587. snd_soc_write(codec, CSRA66X0_PIO7_SELECT, 0x04);
  588. snd_soc_write(codec, CSRA66X0_PIO8_SELECT, 0x04);
  589. if (csra66x0->is_master) {
  590. /* Master specific config */
  591. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0xFF);
  592. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR0, 0x80);
  593. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x01);
  594. snd_soc_write(codec, CSRA66X0_PIO_PULL_DIR1, 0x01);
  595. } else {
  596. /* Slave specific config */
  597. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN0, 0x7F);
  598. snd_soc_write(codec, CSRA66X0_PIO_PULL_EN1, 0x00);
  599. }
  600. snd_soc_write(codec, CSRA66X0_DCA_CTRL, 0x05);
  601. return 0;
  602. }
  603. static int csra66x0_soc_probe(struct snd_soc_codec *codec)
  604. {
  605. struct csra66x0_priv *csra66x0 = snd_soc_codec_get_drvdata(codec);
  606. struct snd_soc_dapm_context *dapm;
  607. char name[50];
  608. unsigned int i, max_num_cluster_devices;
  609. csra66x0->codec = codec;
  610. if (csra66x0->in_cluster) {
  611. dapm = snd_soc_codec_get_dapm(codec);
  612. dev_dbg(codec->dev, "%s: assign prefix %s to codec device %s\n",
  613. __func__, codec->component.name_prefix,
  614. codec->component.name);
  615. /* add device to cluster table */
  616. max_num_cluster_devices = sizeof(csra_clust_dev_tbl)/
  617. sizeof(csra_clust_dev_tbl[0]);
  618. for (i = 0; i < max_num_cluster_devices; i++) {
  619. if (!strncmp(codec->component.name_prefix,
  620. csra_clust_dev_tbl[i].csra66x0_prefix,
  621. strlen(
  622. csra_clust_dev_tbl[i].csra66x0_prefix))) {
  623. csra_clust_dev_tbl[i].csra66x0_ptr = csra66x0;
  624. break;
  625. }
  626. if (i == max_num_cluster_devices-1)
  627. dev_warn(codec->dev,
  628. "%s: Unknown prefix %s of cluster device %s\n",
  629. __func__, codec->component.name_prefix,
  630. codec->component.name);
  631. }
  632. /* master slave config */
  633. csra66x0_msconfig(csra66x0);
  634. if (dapm->component) {
  635. strlcpy(name, dapm->component->name_prefix,
  636. sizeof(name));
  637. strlcat(name, " IN", sizeof(name));
  638. snd_soc_dapm_ignore_suspend(dapm, name);
  639. strlcpy(name, dapm->component->name_prefix,
  640. sizeof(name));
  641. strlcat(name, " SPKR", sizeof(name));
  642. snd_soc_dapm_ignore_suspend(dapm, name);
  643. }
  644. }
  645. /* common initialization */
  646. csra66x0_init(csra66x0);
  647. return 0;
  648. }
  649. static int csra66x0_soc_remove(struct snd_soc_codec *codec)
  650. {
  651. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, STDBY_STATE);
  652. return 0;
  653. }
  654. static int csra66x0_soc_suspend(struct snd_soc_codec *codec)
  655. {
  656. u16 state_reg = snd_soc_read(codec, CSRA66X0_CHIP_STATE_CTRL_FA) & 0xFC;
  657. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, state_reg |
  658. STDBY_STATE);
  659. return 0;
  660. }
  661. static int csra66x0_soc_resume(struct snd_soc_codec *codec)
  662. {
  663. u16 state_reg = snd_soc_read(codec, CSRA66X0_CHIP_STATE_CTRL_FA) & 0xFC;
  664. snd_soc_write(codec, CSRA66X0_CHIP_STATE_CTRL_FA, state_reg |
  665. RUN_STATE);
  666. return 0;
  667. }
  668. static struct regmap *csra66x0_get_regmap(struct device *dev)
  669. {
  670. struct csra66x0_priv *csra66x0_ctrl = dev_get_drvdata(dev);
  671. if (!csra66x0_ctrl)
  672. return NULL;
  673. return csra66x0_ctrl->regmap;
  674. }
  675. static struct snd_soc_codec_driver soc_codec_drv_csra66x0 = {
  676. .probe = csra66x0_soc_probe,
  677. .remove = csra66x0_soc_remove,
  678. .suspend = csra66x0_soc_suspend,
  679. .resume = csra66x0_soc_resume,
  680. .get_regmap = csra66x0_get_regmap,
  681. .component_driver = {
  682. .controls = csra66x0_snd_controls,
  683. .num_controls = ARRAY_SIZE(csra66x0_snd_controls),
  684. .dapm_widgets = csra66x0_dapm_widgets,
  685. .num_dapm_widgets = ARRAY_SIZE(csra66x0_dapm_widgets),
  686. .dapm_routes = csra66x0_dapm_routes,
  687. .num_dapm_routes = ARRAY_SIZE(csra66x0_dapm_routes),
  688. },
  689. };
  690. static struct regmap_config csra66x0_regmap_config = {
  691. .reg_bits = 16,
  692. .val_bits = 8,
  693. .cache_type = REGCACHE_RBTREE,
  694. .reg_defaults = csra66x0_reg_defaults,
  695. .num_reg_defaults = ARRAY_SIZE(csra66x0_reg_defaults),
  696. .max_register = CSRA66X0_MAX_REGISTER_ADDR,
  697. .volatile_reg = csra66x0_volatile_register,
  698. .writeable_reg = csra66x0_writeable_registers,
  699. .readable_reg = csra66x0_readable_registers,
  700. };
  701. static irqreturn_t csra66x0_irq(int irq, void *data)
  702. {
  703. struct csra66x0_priv *csra66x0 = (struct csra66x0_priv *) data;
  704. struct snd_soc_codec *codec = csra66x0->codec;
  705. u16 val;
  706. unsigned int i, max_num_cluster_devices;
  707. /* Treat interrupt before codec is initialized as spurious */
  708. if (codec == NULL)
  709. return IRQ_NONE;
  710. dev_dbg(codec->dev, "%s: csra66x0_interrupt triggered by %s\n",
  711. __func__, codec->component.name);
  712. /* fault indication */
  713. val = snd_soc_read(codec, CSRA66X0_IRQ_OUTPUT_STATUS_FA) & 0x1;
  714. if (!val)
  715. return IRQ_HANDLED;
  716. if (csra66x0->in_cluster) {
  717. /* reset all slave codecs */
  718. max_num_cluster_devices =
  719. sizeof(csra_clust_dev_tbl) /
  720. sizeof(csra_clust_dev_tbl[0]);
  721. for (i = 0; i < max_num_cluster_devices; i++) {
  722. if (i >= codec->component.card->num_aux_devs)
  723. break;
  724. if (csra_clust_dev_tbl[i].csra66x0_ptr == NULL)
  725. continue;
  726. if (csra_clust_dev_tbl[i].csra66x0_ptr->is_master)
  727. continue;
  728. csra66x0_reset(csra_clust_dev_tbl[i].csra66x0_ptr);
  729. }
  730. /* reset all master codecs */
  731. for (i = 0; i < max_num_cluster_devices; i++) {
  732. if (i >= codec->component.card->num_aux_devs)
  733. break;
  734. if (csra_clust_dev_tbl[i].csra66x0_ptr == NULL)
  735. continue;
  736. if (csra_clust_dev_tbl[i].csra66x0_ptr->is_master)
  737. csra66x0_reset(
  738. csra_clust_dev_tbl[i].csra66x0_ptr);
  739. }
  740. /* recover all codecs */
  741. for (i = 0; i < max_num_cluster_devices; i++) {
  742. if (i >= codec->component.card->num_aux_devs)
  743. break;
  744. if (csra_clust_dev_tbl[i].csra66x0_ptr == NULL)
  745. continue;
  746. csra66x0_msconfig(csra_clust_dev_tbl[i].csra66x0_ptr);
  747. csra66x0_init(csra_clust_dev_tbl[i].csra66x0_ptr);
  748. }
  749. } else {
  750. csra66x0_reset(csra66x0);
  751. csra66x0_init(csra66x0);
  752. }
  753. return IRQ_HANDLED;
  754. };
  755. static const struct of_device_id csra66x0_of_match[] = {
  756. { .compatible = "qcom,csra66x0", },
  757. { }
  758. };
  759. MODULE_DEVICE_TABLE(of, csra66x0_of_match);
  760. #if IS_ENABLED(CONFIG_I2C)
  761. static int csra66x0_i2c_probe(struct i2c_client *client_i2c,
  762. const struct i2c_device_id *id)
  763. {
  764. struct csra66x0_priv *csra66x0;
  765. int ret, irq_trigger;
  766. char debugfs_dir_name[32];
  767. csra66x0 = devm_kzalloc(&client_i2c->dev, sizeof(struct csra66x0_priv),
  768. GFP_KERNEL);
  769. if (csra66x0 == NULL)
  770. return -ENOMEM;
  771. csra66x0->regmap = devm_regmap_init_i2c(client_i2c,
  772. &csra66x0_regmap_config);
  773. if (IS_ERR(csra66x0->regmap)) {
  774. ret = PTR_ERR(csra66x0->regmap);
  775. dev_err(&client_i2c->dev,
  776. "%s %d: Failed to allocate register map for I2C device: %d\n",
  777. __func__, __LINE__, ret);
  778. return ret;
  779. }
  780. i2c_set_clientdata(client_i2c, csra66x0);
  781. /* get data from device tree */
  782. if (client_i2c->dev.of_node) {
  783. /* cluster of multiple devices */
  784. ret = of_property_read_u32(
  785. client_i2c->dev.of_node, "qcom,csra-cluster",
  786. &csra66x0->in_cluster);
  787. if (ret) {
  788. dev_info(&client_i2c->dev,
  789. "%s: qcom,csra-cluster property not defined in DT\n", __func__);
  790. csra66x0->in_cluster = 0;
  791. }
  792. /* master or slave device */
  793. ret = of_property_read_u32(
  794. client_i2c->dev.of_node, "qcom,csra-cluster-master",
  795. &csra66x0->is_master);
  796. if (ret) {
  797. dev_info(&client_i2c->dev,
  798. "%s: qcom,csra-cluster-master property not defined in DT, slave assumed\n",
  799. __func__);
  800. csra66x0->is_master = 0;
  801. }
  802. /* gpio setup for vreg */
  803. csra66x0->vreg_gpio = of_get_named_gpio(client_i2c->dev.of_node,
  804. "qcom,csra-vreg-en-gpio", 0);
  805. if (!gpio_is_valid(csra66x0->vreg_gpio)) {
  806. dev_err(&client_i2c->dev, "%s: %s property is not found %d\n",
  807. __func__, "qcom,csra-vreg-en-gpio",
  808. csra66x0->vreg_gpio);
  809. return -ENODEV;
  810. }
  811. dev_dbg(&client_i2c->dev, "%s: vreg_en gpio %d\n", __func__,
  812. csra66x0->vreg_gpio);
  813. ret = gpio_request(csra66x0->vreg_gpio, dev_name(&client_i2c->dev));
  814. if (ret) {
  815. if (ret == -EBUSY) {
  816. /* GPIO was already requested */
  817. dev_dbg(&client_i2c->dev,
  818. "%s: gpio %d is already set\n",
  819. __func__, csra66x0->vreg_gpio);
  820. } else {
  821. dev_err(&client_i2c->dev, "%s: Failed to request gpio %d, err: %d\n",
  822. __func__, csra66x0->vreg_gpio, ret);
  823. }
  824. } else {
  825. gpio_direction_output(csra66x0->vreg_gpio, 1);
  826. gpio_set_value(csra66x0->vreg_gpio, 0);
  827. }
  828. /* register interrupt handle */
  829. if (client_i2c->irq) {
  830. csra66x0->irq = client_i2c->irq;
  831. /* interrupt polarity */
  832. ret = of_property_read_u32(
  833. client_i2c->dev.of_node, "irq-active-low",
  834. &csra66x0->irq_active_low);
  835. if (ret) {
  836. dev_info(&client_i2c->dev,
  837. "%s: irq-active-low property not defined in DT\n", __func__);
  838. csra66x0->irq_active_low = 0;
  839. }
  840. if (csra66x0->irq_active_low)
  841. irq_trigger = IRQF_TRIGGER_LOW;
  842. else
  843. irq_trigger = IRQF_TRIGGER_HIGH;
  844. ret = devm_request_threaded_irq(&client_i2c->dev,
  845. csra66x0->irq, NULL, csra66x0_irq,
  846. irq_trigger | IRQF_ONESHOT,
  847. "csra66x0_irq", csra66x0);
  848. if (ret) {
  849. dev_err(&client_i2c->dev,
  850. "%s: Failed to request IRQ %d: %d\n",
  851. __func__, csra66x0->irq, ret);
  852. csra66x0->irq = 0;
  853. }
  854. }
  855. }
  856. #if IS_ENABLED(CONFIG_DEBUG_FS)
  857. /* debugfs interface */
  858. snprintf(debugfs_dir_name, sizeof(debugfs_dir_name), "%s-%s",
  859. client_i2c->name, dev_name(&client_i2c->dev));
  860. csra66x0->debugfs_dir = debugfs_create_dir(debugfs_dir_name, NULL);
  861. if (!csra66x0->debugfs_dir) {
  862. dev_dbg(&client_i2c->dev,
  863. "%s: Failed to create /sys/kernel/debug/%s for debugfs\n",
  864. __func__, debugfs_dir_name);
  865. return -ENOMEM;
  866. }
  867. csra66x0->debugfs_file_wo = debugfs_create_file(
  868. "write_reg_val", S_IFREG | S_IRUGO, csra66x0->debugfs_dir,
  869. (void *) csra66x0,
  870. &debugfs_codec_ops);
  871. if (!csra66x0->debugfs_file_wo) {
  872. dev_dbg(&client_i2c->dev,
  873. "%s: Failed to create /sys/kernel/debug/%s/write_reg_val\n",
  874. __func__, debugfs_dir_name);
  875. return -ENOMEM;
  876. }
  877. csra66x0->debugfs_file_ro = debugfs_create_file(
  878. "show_reg_dump", S_IFREG | S_IRUGO, csra66x0->debugfs_dir,
  879. (void *) csra66x0,
  880. &debugfs_codec_ops);
  881. if (!csra66x0->debugfs_file_ro) {
  882. dev_dbg(&client_i2c->dev,
  883. "%s: Failed to create /sys/kernel/debug/%s/show_reg_dump\n",
  884. __func__, debugfs_dir_name);
  885. return -ENOMEM;
  886. }
  887. #endif /* CONFIG_DEBUG_FS */
  888. /* register codec */
  889. ret = snd_soc_register_codec(&client_i2c->dev,
  890. &soc_codec_drv_csra66x0, NULL, 0);
  891. if (ret != 0) {
  892. dev_err(&client_i2c->dev, "%s %d: Failed to register codec: %d\n",
  893. __func__, __LINE__, ret);
  894. if (gpio_is_valid(csra66x0->vreg_gpio)) {
  895. gpio_set_value(csra66x0->vreg_gpio, 0);
  896. gpio_free(csra66x0->vreg_gpio);
  897. }
  898. return ret;
  899. }
  900. return 0;
  901. }
  902. static int csra66x0_i2c_remove(struct i2c_client *i2c_client)
  903. {
  904. struct csra66x0_priv *csra66x0 = i2c_get_clientdata(i2c_client);
  905. if (csra66x0) {
  906. if (gpio_is_valid(csra66x0->vreg_gpio)) {
  907. gpio_set_value(csra66x0->vreg_gpio, 0);
  908. gpio_free(csra66x0->vreg_gpio);
  909. }
  910. #if IS_ENABLED(CONFIG_DEBUG_FS)
  911. debugfs_remove_recursive(csra66x0->debugfs_dir);
  912. #endif
  913. }
  914. snd_soc_unregister_codec(&i2c_client->dev);
  915. return 0;
  916. }
  917. static const struct i2c_device_id csra66x0_i2c_id[] = {
  918. { "csra66x0", 0},
  919. { }
  920. };
  921. MODULE_DEVICE_TABLE(i2c, csra66x0_i2c_id);
  922. static struct i2c_driver csra66x0_i2c_driver = {
  923. .probe = csra66x0_i2c_probe,
  924. .remove = csra66x0_i2c_remove,
  925. .id_table = csra66x0_i2c_id,
  926. .driver = {
  927. .name = "csra66x0",
  928. .owner = THIS_MODULE,
  929. .of_match_table = csra66x0_of_match
  930. },
  931. };
  932. #endif
  933. static int __init csra66x0_codec_init(void)
  934. {
  935. int ret = 0;
  936. #if IS_ENABLED(CONFIG_I2C)
  937. ret = i2c_add_driver(&csra66x0_i2c_driver);
  938. if (ret != 0)
  939. pr_err("%s: Failed to register CSRA66X0 I2C driver, ret = %d\n",
  940. __func__, ret);
  941. #endif
  942. return ret;
  943. }
  944. module_init(csra66x0_codec_init);
  945. static void __exit csra66x0_codec_exit(void)
  946. {
  947. #if IS_ENABLED(CONFIG_I2C)
  948. i2c_del_driver(&csra66x0_i2c_driver);
  949. #endif
  950. }
  951. module_exit(csra66x0_codec_exit);
  952. MODULE_DESCRIPTION("CSRA66X0 Codec driver");
  953. MODULE_LICENSE("GPL v2");