wsa883x.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/init.h>
  7. #include <linux/slab.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/device.h>
  10. #include <linux/printk.h>
  11. #include <linux/bitops.h>
  12. #include <linux/regulator/consumer.h>
  13. #include <linux/pm_runtime.h>
  14. #include <linux/delay.h>
  15. #include <linux/kernel.h>
  16. #include <linux/gpio.h>
  17. #include <linux/of_gpio.h>
  18. #include <linux/regmap.h>
  19. #include <linux/debugfs.h>
  20. #include <soc/soundwire.h>
  21. #include <sound/pcm.h>
  22. #include <sound/pcm_params.h>
  23. #include <sound/soc.h>
  24. #include <sound/soc-dapm.h>
  25. #include <sound/tlv.h>
  26. #include <asoc/msm-cdc-pinctrl.h>
  27. #include "wsa883x.h"
  28. #include "wsa883x-temp-sensor.h"
  29. #include "internal.h"
  30. #ifdef CONFIG_DEBUG_FS
  31. static int codec_debug_open(struct inode *inode, struct file *file)
  32. {
  33. file->private_data = inode->i_private;
  34. return 0;
  35. }
  36. static int get_parameters(char *buf, u32 *param1, int num_of_par)
  37. {
  38. char *token;
  39. int base, cnt;
  40. token = strsep(&buf, " ");
  41. for (cnt = 0; cnt < num_of_par; cnt++) {
  42. if (token) {
  43. if ((token[1] == 'x') || (token[1] == 'X'))
  44. base = 16;
  45. else
  46. base = 10;
  47. if (kstrtou32(token, base, &param1[cnt]) != 0)
  48. return -EINVAL;
  49. token = strsep(&buf, " ");
  50. } else {
  51. return -EINVAL;
  52. }
  53. }
  54. return 0;
  55. }
  56. static bool is_swr_slave_reg_readable(int reg)
  57. {
  58. int ret = true;
  59. if (((reg > 0x46) && (reg < 0x4A)) ||
  60. ((reg > 0x4A) && (reg < 0x50)) ||
  61. ((reg > 0x55) && (reg < 0xD0)) ||
  62. ((reg > 0xD0) && (reg < 0xE0)) ||
  63. ((reg > 0xE0) && (reg < 0xF0)) ||
  64. ((reg > 0xF0) && (reg < 0x100)) ||
  65. ((reg > 0x105) && (reg < 0x120)) ||
  66. ((reg > 0x205) && (reg < 0x220)) ||
  67. ((reg > 0x305) && (reg < 0x320)) ||
  68. ((reg > 0x405) && (reg < 0x420)) ||
  69. ((reg > 0x128) && (reg < 0x130)) ||
  70. ((reg > 0x228) && (reg < 0x230)) ||
  71. ((reg > 0x328) && (reg < 0x330)) ||
  72. ((reg > 0x428) && (reg < 0x430)) ||
  73. ((reg > 0x138) && (reg < 0x205)) ||
  74. ((reg > 0x238) && (reg < 0x305)) ||
  75. ((reg > 0x338) && (reg < 0x405)) ||
  76. ((reg > 0x405) && (reg < 0xF00)) ||
  77. ((reg > 0xF05) && (reg < 0xF20)) ||
  78. ((reg > 0xF25) && (reg < 0xF30)) ||
  79. ((reg > 0xF35) && (reg < 0x2000)))
  80. ret = false;
  81. return ret;
  82. }
  83. static ssize_t swr_slave_reg_show(struct swr_device *pdev, char __user *ubuf,
  84. size_t count, loff_t *ppos)
  85. {
  86. int i, reg_val, len;
  87. ssize_t total = 0;
  88. char tmp_buf[SWR_SLV_MAX_BUF_LEN];
  89. if (!ubuf || !ppos)
  90. return 0;
  91. for (i = (((int) *ppos/BYTES_PER_LINE) + SWR_SLV_START_REG_ADDR);
  92. i <= SWR_SLV_MAX_REG_ADDR; i++) {
  93. if (!is_swr_slave_reg_readable(i))
  94. continue;
  95. swr_read(pdev, pdev->dev_num, i, &reg_val, 1);
  96. len = snprintf(tmp_buf, 25, "0x%.3x: 0x%.2x\n", i,
  97. (reg_val & 0xFF));
  98. if ((total + len) >= count - 1)
  99. break;
  100. if (copy_to_user((ubuf + total), tmp_buf, len)) {
  101. pr_err("%s: fail to copy reg dump\n", __func__);
  102. total = -EFAULT;
  103. goto copy_err;
  104. }
  105. total += len;
  106. *ppos += len;
  107. }
  108. copy_err:
  109. *ppos = SWR_SLV_MAX_REG_ADDR * BYTES_PER_LINE;
  110. return total;
  111. }
  112. static ssize_t codec_debug_dump(struct file *file, char __user *ubuf,
  113. size_t count, loff_t *ppos)
  114. {
  115. struct swr_device *pdev;
  116. if (!count || !file || !ppos || !ubuf)
  117. return -EINVAL;
  118. pdev = file->private_data;
  119. if (!pdev)
  120. return -EINVAL;
  121. if (*ppos < 0)
  122. return -EINVAL;
  123. return swr_slave_reg_show(pdev, ubuf, count, ppos);
  124. }
  125. static ssize_t codec_debug_read(struct file *file, char __user *ubuf,
  126. size_t count, loff_t *ppos)
  127. {
  128. char lbuf[SWR_SLV_RD_BUF_LEN];
  129. struct swr_device *pdev = NULL;
  130. struct wsa883x_priv *wsa883x = NULL;
  131. if (!count || !file || !ppos || !ubuf)
  132. return -EINVAL;
  133. pdev = file->private_data;
  134. if (!pdev)
  135. return -EINVAL;
  136. wsa883x = swr_get_dev_data(pdev);
  137. if (!wsa883x)
  138. return -EINVAL;
  139. if (*ppos < 0)
  140. return -EINVAL;
  141. snprintf(lbuf, sizeof(lbuf), "0x%x\n",
  142. (wsa883x->read_data & 0xFF));
  143. return simple_read_from_buffer(ubuf, count, ppos, lbuf,
  144. strnlen(lbuf, 7));
  145. }
  146. static ssize_t codec_debug_peek_write(struct file *file,
  147. const char __user *ubuf, size_t cnt, loff_t *ppos)
  148. {
  149. char lbuf[SWR_SLV_WR_BUF_LEN];
  150. int rc = 0;
  151. u32 param[5];
  152. struct swr_device *pdev = NULL;
  153. struct wsa883x_priv *wsa883x = NULL;
  154. if (!cnt || !file || !ppos || !ubuf)
  155. return -EINVAL;
  156. pdev = file->private_data;
  157. if (!pdev)
  158. return -EINVAL;
  159. wsa883x = swr_get_dev_data(pdev);
  160. if (!wsa883x)
  161. return -EINVAL;
  162. if (*ppos < 0)
  163. return -EINVAL;
  164. if (cnt > sizeof(lbuf) - 1)
  165. return -EINVAL;
  166. rc = copy_from_user(lbuf, ubuf, cnt);
  167. if (rc)
  168. return -EFAULT;
  169. lbuf[cnt] = '\0';
  170. rc = get_parameters(lbuf, param, 1);
  171. if (!((param[0] <= SWR_SLV_MAX_REG_ADDR) && (rc == 0)))
  172. return -EINVAL;
  173. swr_read(pdev, pdev->dev_num, param[0], &wsa883x->read_data, 1);
  174. if (rc == 0)
  175. rc = cnt;
  176. else
  177. pr_err("%s: rc = %d\n", __func__, rc);
  178. return rc;
  179. }
  180. static ssize_t codec_debug_write(struct file *file,
  181. const char __user *ubuf, size_t cnt, loff_t *ppos)
  182. {
  183. char lbuf[SWR_SLV_WR_BUF_LEN];
  184. int rc = 0;
  185. u32 param[5];
  186. struct swr_device *pdev;
  187. if (!file || !ppos || !ubuf)
  188. return -EINVAL;
  189. pdev = file->private_data;
  190. if (!pdev)
  191. return -EINVAL;
  192. if (cnt > sizeof(lbuf) - 1)
  193. return -EINVAL;
  194. rc = copy_from_user(lbuf, ubuf, cnt);
  195. if (rc)
  196. return -EFAULT;
  197. lbuf[cnt] = '\0';
  198. rc = get_parameters(lbuf, param, 2);
  199. if (!((param[0] <= SWR_SLV_MAX_REG_ADDR) &&
  200. (param[1] <= 0xFF) && (rc == 0)))
  201. return -EINVAL;
  202. swr_write(pdev, pdev->dev_num, param[0], &param[1]);
  203. if (rc == 0)
  204. rc = cnt;
  205. else
  206. pr_err("%s: rc = %d\n", __func__, rc);
  207. return rc;
  208. }
  209. static const struct file_operations codec_debug_write_ops = {
  210. .open = codec_debug_open,
  211. .write = codec_debug_write,
  212. };
  213. static const struct file_operations codec_debug_read_ops = {
  214. .open = codec_debug_open,
  215. .read = codec_debug_read,
  216. .write = codec_debug_peek_write,
  217. };
  218. static const struct file_operations codec_debug_dump_ops = {
  219. .open = codec_debug_open,
  220. .read = codec_debug_dump,
  221. };
  222. #endif
  223. static const char * const wsa_pa_gain_text[] = {
  224. "G_18_DB", "G_16P5_DB", "G_15_DB", "G_13P5_DB", "G_12_DB", "G_10P5_DB",
  225. "G_9_DB", "G_7P5_DB", "G_6_DB", "G_4P5_DB", "G_3_DB", "G_1P5_DB",
  226. "G_0_DB"
  227. };
  228. static const struct soc_enum wsa_pa_gain_enum =
  229. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(wsa_pa_gain_text), wsa_pa_gain_text);
  230. static int wsa_pa_gain_get(struct snd_kcontrol *kcontrol,
  231. struct snd_ctl_elem_value *ucontrol)
  232. {
  233. struct snd_soc_component *component =
  234. snd_soc_kcontrol_component(kcontrol);
  235. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  236. ucontrol->value.integer.value[0] = wsa883x->pa_gain;
  237. dev_dbg(component->dev, "%s: PA gain = 0x%x\n", __func__,
  238. wsa883x->pa_gain);
  239. return 0;
  240. }
  241. static int wsa_pa_gain_put(struct snd_kcontrol *kcontrol,
  242. struct snd_ctl_elem_value *ucontrol)
  243. {
  244. struct snd_soc_component *component =
  245. snd_soc_kcontrol_component(kcontrol);
  246. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  247. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  248. __func__, ucontrol->value.integer.value[0]);
  249. wsa883x->pa_gain = ucontrol->value.integer.value[0];
  250. return 0;
  251. }
  252. static int wsa883x_get_mute(struct snd_kcontrol *kcontrol,
  253. struct snd_ctl_elem_value *ucontrol)
  254. {
  255. struct snd_soc_component *component =
  256. snd_soc_kcontrol_component(kcontrol);
  257. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  258. ucontrol->value.integer.value[0] = wsa883x->pa_mute;
  259. return 0;
  260. }
  261. static int wsa883x_set_mute(struct snd_kcontrol *kcontrol,
  262. struct snd_ctl_elem_value *ucontrol)
  263. {
  264. struct snd_soc_component *component =
  265. snd_soc_kcontrol_component(kcontrol);
  266. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  267. int value = ucontrol->value.integer.value[0];
  268. dev_dbg(component->dev, "%s: mute current %d, new %d\n",
  269. __func__, wsa883x->pa_mute, value);
  270. wsa883x->pa_mute = value;
  271. return 0;
  272. }
  273. static int wsa883x_get_t0_init(struct snd_kcontrol *kcontrol,
  274. struct snd_ctl_elem_value *ucontrol)
  275. {
  276. struct snd_soc_component *component =
  277. snd_soc_kcontrol_component(kcontrol);
  278. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  279. struct wsa883x_tz_priv *pdata = &wsa883x->tz_pdata;
  280. ucontrol->value.integer.value[0] = pdata->t0_init;
  281. dev_dbg(component->dev, "%s: t0 init %d\n", __func__, pdata->t0_init);
  282. return 0;
  283. }
  284. static int wsa883x_set_t0_init(struct snd_kcontrol *kcontrol,
  285. struct snd_ctl_elem_value *ucontrol)
  286. {
  287. struct snd_soc_component *component =
  288. snd_soc_kcontrol_component(kcontrol);
  289. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  290. struct wsa883x_tz_priv *pdata = &wsa883x->tz_pdata;
  291. pdata->t0_init = ucontrol->value.integer.value[0];
  292. dev_dbg(component->dev, "%s: t0 init %d\n", __func__, pdata->t0_init);
  293. return 0;
  294. }
  295. static const struct snd_kcontrol_new wsa_snd_controls[] = {
  296. SOC_ENUM_EXT("WSA PA Gain", wsa_pa_gain_enum,
  297. wsa_pa_gain_get, wsa_pa_gain_put),
  298. SOC_SINGLE_EXT("WSA PA Mute", SND_SOC_NOPM, 0, 1, 0,
  299. wsa883x_get_mute, wsa883x_set_mute),
  300. SOC_SINGLE_EXT("WSA T0 Init", SND_SOC_NOPM, 0, 1, 0,
  301. wsa883x_get_t0_init, wsa883x_set_t0_init),
  302. };
  303. static ssize_t wsa883x_codec_version_read(struct snd_info_entry *entry,
  304. void *file_private_data, struct file *file,
  305. char __user *buf, size_t count, loff_t pos)
  306. {
  307. struct wsa883x_priv *wsa883x;
  308. char buffer[WSA883X_VERSION_ENTRY_SIZE];
  309. int len = 0;
  310. wsa883x = (struct wsa883x_priv *) entry->private_data;
  311. if (!wsa883x) {
  312. pr_err("%s: wsa883x priv is null\n", __func__);
  313. return -EINVAL;
  314. }
  315. len = snprintf(buffer, sizeof(buffer), "WSA883X-SOUNDWIRE_1_0\n");
  316. return simple_read_from_buffer(buf, count, &pos, buffer, len);
  317. }
  318. static struct snd_info_entry_ops wsa883x_codec_info_ops = {
  319. .read = wsa883x_codec_version_read,
  320. };
  321. /*
  322. * wsa883x_codec_info_create_codec_entry - creates wsa883x module
  323. * @codec_root: The parent directory
  324. * @component: Codec instance
  325. *
  326. * Creates wsa883x module and version entry under the given
  327. * parent directory.
  328. *
  329. * Return: 0 on success or negative error code on failure.
  330. */
  331. int wsa883x_codec_info_create_codec_entry(struct snd_info_entry *codec_root,
  332. struct snd_soc_component *component)
  333. {
  334. struct snd_info_entry *version_entry;
  335. struct wsa883x_priv *wsa883x;
  336. struct snd_soc_card *card;
  337. char name[80];
  338. if (!codec_root || !component)
  339. return -EINVAL;
  340. wsa883x = snd_soc_component_get_drvdata(component);
  341. card = component->card;
  342. snprintf(name, sizeof(name), "%s.%x", "wsa883x",
  343. (u32)wsa883x->swr_slave->addr);
  344. wsa883x->entry = snd_info_create_subdir(codec_root->module,
  345. (const char *)name,
  346. codec_root);
  347. if (!wsa883x->entry) {
  348. dev_dbg(component->dev, "%s: failed to create wsa883x entry\n",
  349. __func__);
  350. return -ENOMEM;
  351. }
  352. version_entry = snd_info_create_card_entry(card->snd_card,
  353. "version",
  354. wsa883x->entry);
  355. if (!version_entry) {
  356. dev_dbg(component->dev, "%s: failed to create wsa883x version entry\n",
  357. __func__);
  358. return -ENOMEM;
  359. }
  360. version_entry->private_data = wsa883x;
  361. version_entry->size = WSA883X_VERSION_ENTRY_SIZE;
  362. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  363. version_entry->c.ops = &wsa883x_codec_info_ops;
  364. if (snd_info_register(version_entry) < 0) {
  365. snd_info_free_entry(version_entry);
  366. return -ENOMEM;
  367. }
  368. wsa883x->version_entry = version_entry;
  369. return 0;
  370. }
  371. EXPORT_SYMBOL(wsa883x_codec_info_create_codec_entry);
  372. static void wsa883x_regcache_sync(struct wsa883x_priv *wsa883x)
  373. {
  374. mutex_lock(&wsa883x->res_lock);
  375. if (wsa883x->state != WSA883X_DEV_READY) {
  376. regcache_mark_dirty(wsa883x->regmap);
  377. regcache_sync(wsa883x->regmap);
  378. wsa883x->state = WSA883X_DEV_READY;
  379. }
  380. mutex_unlock(&wsa883x->res_lock);
  381. }
  382. static int wsa883x_visense_txfe_ctrl(struct snd_soc_component *component,
  383. bool enable, u8 isense1_gain,
  384. u8 isense2_gain, u8 vsense_gain)
  385. {
  386. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  387. dev_dbg(component->dev,
  388. "%s: enable:%d, isense1 gain: %d, isense2 gain: %d, vsense_gain %d\n",
  389. __func__, enable, isense1_gain, isense2_gain, vsense_gain);
  390. return 0;
  391. }
  392. static int wsa883x_visense_adc_ctrl(struct snd_soc_component *component,
  393. bool enable)
  394. {
  395. dev_dbg(component->dev, "%s: enable:%d\n", __func__, enable);
  396. return 0;
  397. }
  398. static void wsa883x_bandgap_ctrl(struct snd_soc_component *component,
  399. bool enable)
  400. {
  401. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  402. dev_dbg(component->dev, "%s: enable:%d, bg_count:%d\n", __func__,
  403. enable, wsa883x->bg_cnt);
  404. mutex_lock(&wsa883x->bg_lock);
  405. if (enable) {
  406. ++wsa883x->bg_cnt;
  407. if (wsa883x->bg_cnt == 1) {
  408. snd_soc_component_update_bits(component,
  409. WSA883X_OP_CTL,
  410. 0x08, 0x08);
  411. }
  412. } else {
  413. --wsa883x->bg_cnt;
  414. if (wsa883x->bg_cnt <= 0) {
  415. WARN_ON(wsa883x->bg_cnt < 0);
  416. wsa883x->bg_cnt = 0;
  417. snd_soc_component_update_bits(component,
  418. WSA883X_OP_CTL, 0x08, 0x00);
  419. }
  420. }
  421. mutex_unlock(&wsa883x->bg_lock);
  422. }
  423. static void wsa883x_clk_ctrl(struct snd_soc_component *component, bool enable)
  424. {
  425. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  426. dev_dbg(component->dev, "%s: enable:%d, clk_count:%d\n", __func__,
  427. enable, wsa883x->clk_cnt);
  428. mutex_lock(&wsa883x->res_lock);
  429. if (enable) {
  430. ++wsa883x->clk_cnt;
  431. if (wsa883x->clk_cnt == 1) {
  432. snd_soc_component_write(component,
  433. WSA883X_CDC_CLK_CTL, 0x01);
  434. snd_soc_component_write(component,
  435. WSA883X_CLK_CTL, 0x01);
  436. }
  437. } else {
  438. --wsa883x->clk_cnt;
  439. if (wsa883x->clk_cnt <= 0) {
  440. WARN_ON(wsa883x->clk_cnt < 0);
  441. wsa883x->clk_cnt = 0;
  442. snd_soc_component_write(component,
  443. WSA883X_CDC_CLK_CTL, 0x00);
  444. snd_soc_component_write(component,
  445. WSA883X_CLK_CTL, 0x00);
  446. }
  447. }
  448. mutex_unlock(&wsa883x->res_lock);
  449. }
  450. static int wsa883x_get_compander(struct snd_kcontrol *kcontrol,
  451. struct snd_ctl_elem_value *ucontrol)
  452. {
  453. struct snd_soc_component *component =
  454. snd_soc_kcontrol_component(kcontrol);
  455. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  456. ucontrol->value.integer.value[0] = wsa883x->comp_enable;
  457. return 0;
  458. }
  459. static int wsa883x_set_compander(struct snd_kcontrol *kcontrol,
  460. struct snd_ctl_elem_value *ucontrol)
  461. {
  462. struct snd_soc_component *component =
  463. snd_soc_kcontrol_component(kcontrol);
  464. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  465. int value = ucontrol->value.integer.value[0];
  466. dev_dbg(component->dev, "%s: Compander enable current %d, new %d\n",
  467. __func__, wsa883x->comp_enable, value);
  468. wsa883x->comp_enable = value;
  469. return 0;
  470. }
  471. static int wsa883x_get_visense(struct snd_kcontrol *kcontrol,
  472. struct snd_ctl_elem_value *ucontrol)
  473. {
  474. struct snd_soc_component *component =
  475. snd_soc_kcontrol_component(kcontrol);
  476. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  477. ucontrol->value.integer.value[0] = wsa883x->visense_enable;
  478. return 0;
  479. }
  480. static int wsa883x_set_visense(struct snd_kcontrol *kcontrol,
  481. struct snd_ctl_elem_value *ucontrol)
  482. {
  483. struct snd_soc_component *component =
  484. snd_soc_kcontrol_component(kcontrol);
  485. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  486. int value = ucontrol->value.integer.value[0];
  487. dev_dbg(component->dev, "%s: VIsense enable current %d, new %d\n",
  488. __func__, wsa883x->visense_enable, value);
  489. wsa883x->visense_enable = value;
  490. return 0;
  491. }
  492. static const struct snd_kcontrol_new wsa883x_snd_controls[] = {
  493. SOC_SINGLE_EXT("COMP Switch", SND_SOC_NOPM, 0, 1, 0,
  494. wsa883x_get_compander, wsa883x_set_compander),
  495. SOC_SINGLE_EXT("VISENSE Switch", SND_SOC_NOPM, 0, 1, 0,
  496. wsa883x_get_visense, wsa883x_set_visense),
  497. };
  498. static const struct snd_kcontrol_new swr_dac_port[] = {
  499. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  500. };
  501. static int wsa883x_set_port(struct snd_soc_component *component, int port_idx,
  502. u8 *port_id, u8 *num_ch, u8 *ch_mask, u32 *ch_rate,
  503. u8 *port_type)
  504. {
  505. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  506. *port_id = wsa883x->port[port_idx].port_id;
  507. *num_ch = wsa883x->port[port_idx].num_ch;
  508. *ch_mask = wsa883x->port[port_idx].ch_mask;
  509. *ch_rate = wsa883x->port[port_idx].ch_rate;
  510. *port_type = wsa883x->port[port_idx].port_type;
  511. return 0;
  512. }
  513. static int wsa883x_enable_swr_dac_port(struct snd_soc_dapm_widget *w,
  514. struct snd_kcontrol *kcontrol, int event)
  515. {
  516. struct snd_soc_component *component =
  517. snd_soc_dapm_to_component(w->dapm);
  518. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  519. u8 port_id[WSA883X_MAX_SWR_PORTS];
  520. u8 num_ch[WSA883X_MAX_SWR_PORTS];
  521. u8 ch_mask[WSA883X_MAX_SWR_PORTS];
  522. u32 ch_rate[WSA883X_MAX_SWR_PORTS];
  523. u8 port_type[WSA883X_MAX_SWR_PORTS];
  524. u8 num_port = 0;
  525. dev_dbg(component->dev, "%s: event %d name %s\n", __func__,
  526. event, w->name);
  527. if (wsa883x == NULL)
  528. return -EINVAL;
  529. switch (event) {
  530. case SND_SOC_DAPM_PRE_PMU:
  531. wsa883x_set_port(component, SWR_DAC_PORT,
  532. &port_id[num_port], &num_ch[num_port],
  533. &ch_mask[num_port], &ch_rate[num_port],
  534. &port_type[num_port]);
  535. ++num_port;
  536. if (wsa883x->comp_enable) {
  537. wsa883x_set_port(component, SWR_COMP_PORT,
  538. &port_id[num_port], &num_ch[num_port],
  539. &ch_mask[num_port], &ch_rate[num_port],
  540. &port_type[num_port]);
  541. ++num_port;
  542. }
  543. if (wsa883x->visense_enable) {
  544. wsa883x_set_port(component, SWR_VISENSE_PORT,
  545. &port_id[num_port], &num_ch[num_port],
  546. &ch_mask[num_port], &ch_rate[num_port],
  547. &port_type[num_port]);
  548. ++num_port;
  549. }
  550. swr_connect_port(wsa883x->swr_slave, &port_id[0], num_port,
  551. &ch_mask[0], &ch_rate[0], &num_ch[0],
  552. &port_type[0]);
  553. break;
  554. case SND_SOC_DAPM_POST_PMU:
  555. break;
  556. case SND_SOC_DAPM_PRE_PMD:
  557. break;
  558. case SND_SOC_DAPM_POST_PMD:
  559. wsa883x_set_port(component, SWR_DAC_PORT,
  560. &port_id[num_port], &num_ch[num_port],
  561. &ch_mask[num_port], &ch_rate[num_port],
  562. &port_type[num_port]);
  563. ++num_port;
  564. if (wsa883x->comp_enable) {
  565. wsa883x_set_port(component, SWR_COMP_PORT,
  566. &port_id[num_port], &num_ch[num_port],
  567. &ch_mask[num_port], &ch_rate[num_port],
  568. &port_type[num_port]);
  569. ++num_port;
  570. }
  571. if (wsa883x->visense_enable) {
  572. wsa883x_set_port(component, SWR_VISENSE_PORT,
  573. &port_id[num_port], &num_ch[num_port],
  574. &ch_mask[num_port], &ch_rate[num_port],
  575. &port_type[num_port]);
  576. ++num_port;
  577. }
  578. swr_disconnect_port(wsa883x->swr_slave, &port_id[0], num_port,
  579. &ch_mask[0], &port_type[0]);
  580. break;
  581. default:
  582. break;
  583. }
  584. return 0;
  585. }
  586. static int wsa883x_rdac_event(struct snd_soc_dapm_widget *w,
  587. struct snd_kcontrol *kcontrol, int event)
  588. {
  589. struct snd_soc_component *component =
  590. snd_soc_dapm_to_component(w->dapm);
  591. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  592. dev_dbg(component->dev, "%s: %s event: %d visense %d\n", __func__,
  593. w->name, event, wsa883x->visense_enable);
  594. switch (event) {
  595. case SND_SOC_DAPM_PRE_PMU:
  596. mutex_lock(&wsa883x->temp_lock);
  597. wsa883x_resource_acquire(component, ENABLE);
  598. mutex_unlock(&wsa883x->temp_lock);
  599. break;
  600. case SND_SOC_DAPM_POST_PMD:
  601. swr_slvdev_datapath_control(wsa883x->swr_slave,
  602. wsa883x->swr_slave->dev_num,
  603. false);
  604. mutex_lock(&wsa883x->temp_lock);
  605. wsa883x_resource_acquire(component, DISABLE);
  606. mutex_unlock(&wsa883x->temp_lock);
  607. break;
  608. }
  609. return 0;
  610. }
  611. static int wsa883x_ramp_pa_gain(struct snd_soc_component *component,
  612. int min_gain, int max_gain, int udelay)
  613. {
  614. int val;
  615. for (val = min_gain; max_gain <= val; val--) {
  616. snd_soc_component_update_bits(component, WSA883X_SPKR_DRV_GAIN,
  617. 0xF0, val << 4);
  618. /*
  619. * 1ms delay is needed for every step change in gain as per
  620. * HW requirement.
  621. */
  622. usleep_range(udelay, udelay + 10);
  623. }
  624. return 0;
  625. }
  626. static int wsa883x_spkr_pa_event(struct snd_soc_dapm_widget *w,
  627. struct snd_kcontrol *kcontrol, int event)
  628. {
  629. struct snd_soc_component *component =
  630. snd_soc_dapm_to_component(w->dapm);
  631. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  632. int min_gain, max_gain;
  633. dev_dbg(component->dev, "%s: %s %d\n", __func__, w->name, event);
  634. switch (event) {
  635. case SND_SOC_DAPM_PRE_PMU:
  636. swr_slvdev_datapath_control(wsa883x->swr_slave,
  637. wsa883x->swr_slave->dev_num,
  638. true);
  639. /* Set register mode if compander is not enabled */
  640. if (!wsa883x->comp_enable)
  641. snd_soc_component_update_bits(component,
  642. WSA883X_SPKR_DRV_GAIN,
  643. 0x08, 0x08);
  644. else
  645. snd_soc_component_update_bits(component,
  646. WSA883X_SPKR_DRV_GAIN,
  647. 0x08, 0x00);
  648. break;
  649. case SND_SOC_DAPM_POST_PMU:
  650. if (!wsa883x->comp_enable) {
  651. max_gain = wsa883x->pa_gain;
  652. /*
  653. * Gain has to set incrementally in 4 steps
  654. * as per HW sequence
  655. */
  656. if (max_gain > G_4P5DB)
  657. min_gain = G_0DB;
  658. else
  659. min_gain = max_gain + 3;
  660. /*
  661. * 1ms delay is needed before change in gain
  662. * as per HW requirement.
  663. */
  664. usleep_range(1000, 1010);
  665. wsa883x_ramp_pa_gain(component, min_gain, max_gain,
  666. 1000);
  667. }
  668. if (wsa883x->visense_enable) {
  669. wsa883x_visense_txfe_ctrl(component, ENABLE,
  670. 0x00, 0x03, 0x01);
  671. wsa883x_visense_adc_ctrl(component, ENABLE);
  672. }
  673. /* Force remove group */
  674. swr_remove_from_group(wsa883x->swr_slave,
  675. wsa883x->swr_slave->dev_num);
  676. break;
  677. case SND_SOC_DAPM_POST_PMD:
  678. if (wsa883x->visense_enable) {
  679. wsa883x_visense_adc_ctrl(component, DISABLE);
  680. wsa883x_visense_txfe_ctrl(component, DISABLE,
  681. 0x00, 0x01, 0x01);
  682. }
  683. break;
  684. }
  685. return 0;
  686. }
  687. static const struct snd_soc_dapm_widget wsa883x_dapm_widgets[] = {
  688. SND_SOC_DAPM_INPUT("IN"),
  689. SND_SOC_DAPM_MIXER_E("SWR DAC_Port", SND_SOC_NOPM, 0, 0, swr_dac_port,
  690. ARRAY_SIZE(swr_dac_port), wsa883x_enable_swr_dac_port,
  691. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  692. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  693. SND_SOC_DAPM_DAC_E("RDAC", NULL, WSA883X_SPKR_DAC_CTL, 7, 0,
  694. wsa883x_rdac_event,
  695. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  696. SND_SOC_DAPM_PGA_E("SPKR PGA", WSA883X_SPKR_DRV_EN, 7, 0, NULL, 0,
  697. wsa883x_spkr_pa_event, SND_SOC_DAPM_PRE_PMU |
  698. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
  699. SND_SOC_DAPM_OUTPUT("SPKR"),
  700. };
  701. static const struct snd_soc_dapm_route wsa883x_audio_map[] = {
  702. {"SWR DAC_Port", "Switch", "IN"},
  703. {"RDAC", NULL, "SWR DAC_Port"},
  704. {"SPKR PGA", NULL, "RDAC"},
  705. {"SPKR", NULL, "SPKR PGA"},
  706. };
  707. int wsa883x_set_channel_map(struct snd_soc_component *component, u8 *port,
  708. u8 num_port, unsigned int *ch_mask,
  709. unsigned int *ch_rate, u8 *port_type)
  710. {
  711. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  712. int i;
  713. if (!port || !ch_mask || !ch_rate ||
  714. (num_port > WSA883X_MAX_SWR_PORTS)) {
  715. dev_err(component->dev,
  716. "%s: Invalid port=%pK, ch_mask=%pK, ch_rate=%pK\n",
  717. __func__, port, ch_mask, ch_rate);
  718. return -EINVAL;
  719. }
  720. for (i = 0; i < num_port; i++) {
  721. wsa883x->port[i].port_id = port[i];
  722. wsa883x->port[i].ch_mask = ch_mask[i];
  723. wsa883x->port[i].ch_rate = ch_rate[i];
  724. wsa883x->port[i].num_ch = __sw_hweight8(ch_mask[i]);
  725. if (port_type)
  726. wsa883x->port[i].port_type = port_type[i];
  727. }
  728. return 0;
  729. }
  730. EXPORT_SYMBOL(wsa883x_set_channel_map);
  731. static void wsa883x_init(struct snd_soc_component *component)
  732. {
  733. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  734. if (!wsa883x)
  735. return;
  736. }
  737. static int32_t wsa883x_resource_acquire(struct snd_soc_component *component,
  738. bool enable)
  739. {
  740. wsa883x_clk_ctrl(component, enable);
  741. wsa883x_bandgap_ctrl(component, enable);
  742. return 0;
  743. }
  744. static int32_t wsa883x_temp_reg_read(struct snd_soc_component *component,
  745. struct wsa_temp_register *wsa_temp_reg)
  746. {
  747. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  748. struct swr_device *dev;
  749. u8 retry = WSA883X_NUM_RETRY;
  750. u8 devnum = 0;
  751. if (!wsa883x) {
  752. dev_err(component->dev, "%s: wsa883x is NULL\n", __func__);
  753. return -EINVAL;
  754. }
  755. dev = wsa883x->swr_slave;
  756. if (dev && (wsa883x->state == WSA883X_DEV_DOWN)) {
  757. while (swr_get_logical_dev_num(dev, dev->addr, &devnum) &&
  758. retry--) {
  759. /* Retry after 1 msec delay */
  760. usleep_range(1000, 1100);
  761. }
  762. if (retry == 0) {
  763. dev_err(component->dev,
  764. "%s get devnum %d for dev addr %lx failed\n",
  765. __func__, devnum, dev->addr);
  766. return -EINVAL;
  767. }
  768. }
  769. wsa883x_regcache_sync(wsa883x);
  770. mutex_lock(&wsa883x->temp_lock);
  771. wsa883x_resource_acquire(component, ENABLE);
  772. snd_soc_component_update_bits(component, WSA883X_TADC_VALUE_CTL,
  773. 0x01, 0x00);
  774. wsa_temp_reg->dmeas_msb = snd_soc_component_read32(
  775. component, WSA883X_TEMP_MSB);
  776. wsa_temp_reg->dmeas_lsb = snd_soc_component_read32(
  777. component, WSA883X_TEMP_LSB);
  778. snd_soc_component_update_bits(component, WSA883X_TADC_VALUE_CTL,
  779. 0x01, 0x01);
  780. wsa_temp_reg->d1_msb = snd_soc_component_read32(
  781. component, WSA883X_OTP_REG_1);
  782. wsa_temp_reg->d1_lsb = snd_soc_component_read32(
  783. component, WSA883X_OTP_REG_2);
  784. wsa_temp_reg->d2_msb = snd_soc_component_read32(
  785. component, WSA883X_OTP_REG_3);
  786. wsa_temp_reg->d2_lsb = snd_soc_component_read32(
  787. component, WSA883X_OTP_REG_4);
  788. wsa883x_resource_acquire(component, DISABLE);
  789. mutex_unlock(&wsa883x->temp_lock);
  790. return 0;
  791. }
  792. static int wsa883x_codec_probe(struct snd_soc_component *component)
  793. {
  794. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  795. struct swr_device *dev;
  796. if (!wsa883x)
  797. return -EINVAL;
  798. snd_soc_component_init_regmap(component, wsa883x->regmap);
  799. dev = wsa883x->swr_slave;
  800. wsa883x->component = component;
  801. mutex_init(&wsa883x->bg_lock);
  802. wsa883x_init(component);
  803. snprintf(wsa883x->tz_pdata.name, sizeof(wsa883x->tz_pdata.name),
  804. "%s.%x", "wsatz", (u8)dev->addr);
  805. wsa883x->bg_cnt = 0;
  806. wsa883x->clk_cnt = 0;
  807. wsa883x->tz_pdata.component = component;
  808. wsa883x->tz_pdata.wsa_temp_reg_read = wsa883x_temp_reg_read;
  809. wsa883x_init_thermal(&wsa883x->tz_pdata);
  810. snd_soc_add_component_controls(component, wsa_snd_controls,
  811. ARRAY_SIZE(wsa_snd_controls));
  812. return 0;
  813. }
  814. static void wsa883x_codec_remove(struct snd_soc_component *component)
  815. {
  816. struct wsa883x_priv *wsa883x = snd_soc_component_get_drvdata(component);
  817. if (wsa883x->tz_pdata.tz_dev)
  818. wsa883x_deinit_thermal(wsa883x->tz_pdata.tz_dev);
  819. mutex_destroy(&wsa883x->bg_lock);
  820. return;
  821. }
  822. static const struct snd_soc_component_driver soc_codec_dev_wsa883x = {
  823. .name = DRV_NAME,
  824. .probe = wsa883x_codec_probe,
  825. .remove = wsa883x_codec_remove,
  826. .controls = wsa883x_snd_controls,
  827. .num_controls = ARRAY_SIZE(wsa883x_snd_controls),
  828. .dapm_widgets = wsa883x_dapm_widgets,
  829. .num_dapm_widgets = ARRAY_SIZE(wsa883x_dapm_widgets),
  830. .dapm_routes = wsa883x_audio_map,
  831. .num_dapm_routes = ARRAY_SIZE(wsa883x_audio_map),
  832. };
  833. static int wsa883x_gpio_ctrl(struct wsa883x_priv *wsa883x, bool enable)
  834. {
  835. int ret = 0;
  836. if (enable)
  837. ret = msm_cdc_pinctrl_select_active_state(
  838. wsa883x->wsa_rst_np);
  839. else
  840. ret = msm_cdc_pinctrl_select_sleep_state(
  841. wsa883x->wsa_rst_np);
  842. if (ret != 0)
  843. dev_err(wsa883x->dev,
  844. "%s: Failed to turn state %d; ret=%d\n",
  845. __func__, enable, ret);
  846. return ret;
  847. }
  848. static int wsa883x_swr_probe(struct swr_device *pdev)
  849. {
  850. int ret = 0;
  851. struct wsa883x_priv *wsa883x;
  852. u8 devnum = 0;
  853. bool pin_state_current = false;
  854. wsa883x = devm_kzalloc(&pdev->dev, sizeof(struct wsa883x_priv),
  855. GFP_KERNEL);
  856. if (!wsa883x)
  857. return -ENOMEM;
  858. wsa883x->wsa_rst_np = of_parse_phandle(pdev->dev.of_node,
  859. "qcom,spkr-sd-n-node", 0);
  860. if (!wsa883x->wsa_rst_np) {
  861. dev_dbg(&pdev->dev, "%s: pinctrl not defined\n", __func__);
  862. goto err;
  863. }
  864. swr_set_dev_data(pdev, wsa883x);
  865. wsa883x->swr_slave = pdev;
  866. pin_state_current = msm_cdc_pinctrl_get_state(wsa883x->wsa_rst_np);
  867. wsa883x_gpio_ctrl(wsa883x, true);
  868. /*
  869. * Add 5msec delay to provide sufficient time for
  870. * soundwire auto enumeration of slave devices as
  871. * as per HW requirement.
  872. */
  873. usleep_range(5000, 5010);
  874. ret = swr_get_logical_dev_num(pdev, pdev->addr, &devnum);
  875. if (ret) {
  876. dev_dbg(&pdev->dev,
  877. "%s get devnum %d for dev addr %lx failed\n",
  878. __func__, devnum, pdev->addr);
  879. goto dev_err;
  880. }
  881. pdev->dev_num = devnum;
  882. wsa883x->regmap = devm_regmap_init_swr(pdev,
  883. &wsa883x_regmap_config);
  884. if (IS_ERR(wsa883x->regmap)) {
  885. ret = PTR_ERR(wsa883x->regmap);
  886. dev_err(&pdev->dev, "%s: regmap_init failed %d\n",
  887. __func__, ret);
  888. goto dev_err;
  889. }
  890. ret = snd_soc_register_component(&pdev->dev, &soc_codec_dev_wsa883x,
  891. NULL, 0);
  892. if (ret) {
  893. dev_err(&pdev->dev, "%s: Codec registration failed\n",
  894. __func__);
  895. goto dev_err;
  896. }
  897. mutex_init(&wsa883x->res_lock);
  898. mutex_init(&wsa883x->temp_lock);
  899. wsa883x->state = WSA883X_DEV_UP;
  900. #ifdef CONFIG_DEBUG_FS
  901. if (!wcd938x->debugfs_dent) {
  902. wcd938x->debugfs_dent = debugfs_create_dir(
  903. dev_name(&pdev->dev), 0);
  904. if (!IS_ERR(wcd938x->debugfs_dent)) {
  905. wcd938x->debugfs_peek =
  906. debugfs_create_file("swrslave_peek",
  907. S_IFREG | 0444,
  908. wcd938x->debugfs_dent,
  909. (void *) pdev,
  910. &codec_debug_read_ops);
  911. wcd938x->debugfs_poke =
  912. debugfs_create_file("swrslave_poke",
  913. S_IFREG | 0444,
  914. wcd938x->debugfs_dent,
  915. (void *) pdev,
  916. &codec_debug_write_ops);
  917. wcd938x->debugfs_reg_dump =
  918. debugfs_create_file(
  919. "swrslave_reg_dump",
  920. S_IFREG | 0444,
  921. wcd938x->debugfs_dent,
  922. (void *) pdev,
  923. &codec_debug_dump_ops);
  924. }
  925. }
  926. #endif
  927. return 0;
  928. dev_err:
  929. if (pin_state_current == false)
  930. wsa883x_gpio_ctrl(wsa883x, false);
  931. swr_remove_device(pdev);
  932. err:
  933. return ret;
  934. }
  935. static int wsa883x_swr_remove(struct swr_device *pdev)
  936. {
  937. struct wsa883x_priv *wsa883x;
  938. wsa883x = swr_get_dev_data(pdev);
  939. if (!wsa883x) {
  940. dev_err(&pdev->dev, "%s: wsa883x is NULL\n", __func__);
  941. return -EINVAL;
  942. }
  943. #ifdef CONFIG_DEBUG_FS
  944. debugfs_remove_recursive(wsa883x->debugfs_dent);
  945. wsa883x->debugfs_dent = NULL;
  946. #endif
  947. mutex_destroy(&wsa883x->res_lock);
  948. mutex_destroy(&wsa883x->temp_lock);
  949. snd_soc_unregister_component(&pdev->dev);
  950. if (wsa883x->pd_gpio)
  951. gpio_free(wsa883x->pd_gpio);
  952. swr_set_dev_data(pdev, NULL);
  953. return 0;
  954. }
  955. #ifdef CONFIG_PM_SLEEP
  956. static int wsa883x_swr_suspend(struct device *dev)
  957. {
  958. dev_dbg(dev, "%s: system suspend\n", __func__);
  959. return 0;
  960. }
  961. static int wsa883x_swr_resume(struct device *dev)
  962. {
  963. struct wsa883x_priv *wsa883x = swr_get_dev_data(to_swr_device(dev));
  964. if (!wsa883x) {
  965. dev_err(dev, "%s: wsa883x private data is NULL\n", __func__);
  966. return -EINVAL;
  967. }
  968. dev_dbg(dev, "%s: system resume\n", __func__);
  969. return 0;
  970. }
  971. #endif /* CONFIG_PM_SLEEP */
  972. static const struct dev_pm_ops wsa883x_swr_pm_ops = {
  973. SET_SYSTEM_SLEEP_PM_OPS(wsa883x_swr_suspend, wsa883x_swr_resume)
  974. };
  975. static const struct swr_device_id wsa883x_swr_id[] = {
  976. {"wsa883x", 0},
  977. {}
  978. };
  979. static const struct of_device_id wsa883x_swr_dt_match[] = {
  980. {
  981. .compatible = "qcom,wsa883x",
  982. },
  983. {}
  984. };
  985. static struct swr_driver wsa883x_swr_driver = {
  986. .driver = {
  987. .name = "wsa883x",
  988. .owner = THIS_MODULE,
  989. .pm = &wsa883x_swr_pm_ops,
  990. .of_match_table = wsa883x_swr_dt_match,
  991. },
  992. .probe = wsa883x_swr_probe,
  993. .remove = wsa883x_swr_remove,
  994. .id_table = wsa883x_swr_id,
  995. };
  996. static int __init wsa883x_swr_init(void)
  997. {
  998. return swr_driver_register(&wsa883x_swr_driver);
  999. }
  1000. static void __exit wsa883x_swr_exit(void)
  1001. {
  1002. swr_driver_unregister(&wsa883x_swr_driver);
  1003. }
  1004. module_init(wsa883x_swr_init);
  1005. module_exit(wsa883x_swr_exit);
  1006. MODULE_DESCRIPTION("WSA883x codec driver");
  1007. MODULE_LICENSE("GPL v2");