wsa881x.c 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2018, 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 "wsa881x.h"
  28. #include "wsa881x-temp-sensor.h"
  29. #define DRV_NAME "wsa-codec"
  30. #define WSA881X_NUM_RETRY 5
  31. enum {
  32. G_18DB = 0,
  33. G_16P5DB,
  34. G_15DB,
  35. G_13P5DB,
  36. G_12DB,
  37. G_10P5DB,
  38. G_9DB,
  39. G_7P5DB,
  40. G_6DB,
  41. G_4P5DB,
  42. G_3DB,
  43. G_1P5DB,
  44. G_0DB,
  45. };
  46. enum {
  47. DISABLE = 0,
  48. ENABLE,
  49. };
  50. enum {
  51. SWR_DAC_PORT,
  52. SWR_COMP_PORT,
  53. SWR_BOOST_PORT,
  54. SWR_VISENSE_PORT,
  55. };
  56. struct swr_port {
  57. u8 port_id;
  58. u8 ch_mask;
  59. u32 ch_rate;
  60. u8 num_ch;
  61. u8 port_type;
  62. };
  63. enum {
  64. WSA881X_DEV_DOWN,
  65. WSA881X_DEV_UP,
  66. WSA881X_DEV_READY,
  67. };
  68. /*
  69. * Private data Structure for wsa881x. All parameters related to
  70. * WSA881X codec needs to be defined here.
  71. */
  72. struct wsa881x_priv {
  73. struct regmap *regmap;
  74. struct device *dev;
  75. struct swr_device *swr_slave;
  76. struct snd_soc_component *component;
  77. bool comp_enable;
  78. bool boost_enable;
  79. bool visense_enable;
  80. u8 pa_gain;
  81. struct swr_port port[WSA881X_MAX_SWR_PORTS];
  82. int pd_gpio;
  83. struct wsa881x_tz_priv tz_pdata;
  84. int bg_cnt;
  85. int clk_cnt;
  86. int version;
  87. struct mutex bg_lock;
  88. struct mutex res_lock;
  89. struct mutex temp_lock;
  90. struct snd_info_entry *entry;
  91. struct snd_info_entry *version_entry;
  92. int state;
  93. struct delayed_work ocp_ctl_work;
  94. struct device_node *wsa_rst_np;
  95. int pa_mute;
  96. };
  97. #define SWR_SLV_MAX_REG_ADDR 0x390
  98. #define SWR_SLV_START_REG_ADDR 0x40
  99. #define SWR_SLV_MAX_BUF_LEN 25
  100. #define BYTES_PER_LINE 12
  101. #define SWR_SLV_RD_BUF_LEN 8
  102. #define SWR_SLV_WR_BUF_LEN 32
  103. #define SWR_SLV_MAX_DEVICES 2
  104. #define WSA881X_VERSION_ENTRY_SIZE 27
  105. #define WSA881X_OCP_CTL_TIMER_SEC 2
  106. #define WSA881X_OCP_CTL_TEMP_CELSIUS 25
  107. #define WSA881X_OCP_CTL_POLL_TIMER_SEC 60
  108. static int wsa881x_ocp_poll_timer_sec = WSA881X_OCP_CTL_POLL_TIMER_SEC;
  109. module_param(wsa881x_ocp_poll_timer_sec, int, 0664);
  110. MODULE_PARM_DESC(wsa881x_ocp_poll_timer_sec, "timer for ocp ctl polling");
  111. static struct wsa881x_priv *dbgwsa881x;
  112. static struct dentry *debugfs_wsa881x_dent;
  113. static struct dentry *debugfs_peek;
  114. static struct dentry *debugfs_poke;
  115. static struct dentry *debugfs_reg_dump;
  116. static unsigned int read_data;
  117. static unsigned int devnum;
  118. static int32_t wsa881x_resource_acquire(struct snd_soc_component *component,
  119. bool enable);
  120. static const char * const wsa_pa_gain_text[] = {
  121. "G_18_DB", "G_16P5_DB", "G_15_DB", "G_13P5_DB", "G_12_DB", "G_10P5_DB",
  122. "G_9_DB", "G_7P5_DB", "G_6_DB", "G_4P5_DB", "G_3_DB", "G_1P5_DB",
  123. "G_0_DB"
  124. };
  125. static const struct soc_enum wsa_pa_gain_enum =
  126. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(wsa_pa_gain_text), wsa_pa_gain_text);
  127. static int wsa_pa_gain_get(struct snd_kcontrol *kcontrol,
  128. struct snd_ctl_elem_value *ucontrol)
  129. {
  130. struct snd_soc_component *component =
  131. snd_soc_kcontrol_component(kcontrol);
  132. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  133. ucontrol->value.integer.value[0] = wsa881x->pa_gain;
  134. dev_dbg(component->dev, "%s: PA gain = 0x%x\n", __func__,
  135. wsa881x->pa_gain);
  136. return 0;
  137. }
  138. static int wsa_pa_gain_put(struct snd_kcontrol *kcontrol,
  139. struct snd_ctl_elem_value *ucontrol)
  140. {
  141. struct snd_soc_component *component =
  142. snd_soc_kcontrol_component(kcontrol);
  143. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  144. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  145. __func__, ucontrol->value.integer.value[0]);
  146. wsa881x->pa_gain = ucontrol->value.integer.value[0];
  147. return 0;
  148. }
  149. static int wsa881x_get_mute(struct snd_kcontrol *kcontrol,
  150. struct snd_ctl_elem_value *ucontrol)
  151. {
  152. struct snd_soc_component *component =
  153. snd_soc_kcontrol_component(kcontrol);
  154. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  155. ucontrol->value.integer.value[0] = wsa881x->pa_mute;
  156. return 0;
  157. }
  158. static int wsa881x_set_mute(struct snd_kcontrol *kcontrol,
  159. struct snd_ctl_elem_value *ucontrol)
  160. {
  161. struct snd_soc_component *component =
  162. snd_soc_kcontrol_component(kcontrol);
  163. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  164. int value = ucontrol->value.integer.value[0];
  165. dev_dbg(component->dev, "%s: mute current %d, new %d\n",
  166. __func__, wsa881x->pa_mute, value);
  167. if (value)
  168. snd_soc_component_update_bits(component, WSA881X_SPKR_DRV_EN,
  169. 0x80, 0x00);
  170. wsa881x->pa_mute = value;
  171. return 0;
  172. }
  173. static int wsa881x_get_t0_init(struct snd_kcontrol *kcontrol,
  174. struct snd_ctl_elem_value *ucontrol)
  175. {
  176. struct snd_soc_component *component =
  177. snd_soc_kcontrol_component(kcontrol);
  178. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  179. struct wsa881x_tz_priv *pdata = &wsa881x->tz_pdata;
  180. ucontrol->value.integer.value[0] = pdata->t0_init;
  181. dev_dbg(component->dev, "%s: t0 init %d\n", __func__, pdata->t0_init);
  182. return 0;
  183. }
  184. static int wsa881x_set_t0_init(struct snd_kcontrol *kcontrol,
  185. struct snd_ctl_elem_value *ucontrol)
  186. {
  187. struct snd_soc_component *component =
  188. snd_soc_kcontrol_component(kcontrol);
  189. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  190. struct wsa881x_tz_priv *pdata = &wsa881x->tz_pdata;
  191. pdata->t0_init = ucontrol->value.integer.value[0];
  192. dev_dbg(component->dev, "%s: t0 init %d\n", __func__, pdata->t0_init);
  193. return 0;
  194. }
  195. static const struct snd_kcontrol_new wsa_snd_controls[] = {
  196. SOC_ENUM_EXT("WSA PA Gain", wsa_pa_gain_enum,
  197. wsa_pa_gain_get, wsa_pa_gain_put),
  198. SOC_SINGLE_EXT("WSA PA Mute", SND_SOC_NOPM, 0, 1, 0,
  199. wsa881x_get_mute, wsa881x_set_mute),
  200. SOC_SINGLE_EXT("WSA T0 Init", SND_SOC_NOPM, 0, 1, 0,
  201. wsa881x_get_t0_init, wsa881x_set_t0_init),
  202. };
  203. static int codec_debug_open(struct inode *inode, struct file *file)
  204. {
  205. file->private_data = inode->i_private;
  206. return 0;
  207. }
  208. static int get_parameters(char *buf, u32 *param1, int num_of_par)
  209. {
  210. char *token;
  211. int base, cnt;
  212. token = strsep(&buf, " ");
  213. for (cnt = 0; cnt < num_of_par; cnt++) {
  214. if (token) {
  215. if ((token[1] == 'x') || (token[1] == 'X'))
  216. base = 16;
  217. else
  218. base = 10;
  219. if (kstrtou32(token, base, &param1[cnt]) != 0)
  220. return -EINVAL;
  221. token = strsep(&buf, " ");
  222. } else
  223. return -EINVAL;
  224. }
  225. return 0;
  226. }
  227. static ssize_t wsa881x_codec_version_read(struct snd_info_entry *entry,
  228. void *file_private_data, struct file *file,
  229. char __user *buf, size_t count, loff_t pos)
  230. {
  231. struct wsa881x_priv *wsa881x;
  232. char buffer[WSA881X_VERSION_ENTRY_SIZE];
  233. int len;
  234. wsa881x = (struct wsa881x_priv *) entry->private_data;
  235. if (!wsa881x) {
  236. pr_err("%s: wsa881x priv is null\n", __func__);
  237. return -EINVAL;
  238. }
  239. len = snprintf(buffer, sizeof(buffer), "WSA881X-SOUNDWIRE_2_0\n");
  240. return simple_read_from_buffer(buf, count, &pos, buffer, len);
  241. }
  242. static struct snd_info_entry_ops wsa881x_codec_info_ops = {
  243. .read = wsa881x_codec_version_read,
  244. };
  245. /*
  246. * wsa881x_codec_info_create_codec_entry - creates wsa881x module
  247. * @codec_root: The parent directory
  248. * @component: Codec instance
  249. *
  250. * Creates wsa881x module and version entry under the given
  251. * parent directory.
  252. *
  253. * Return: 0 on success or negative error code on failure.
  254. */
  255. int wsa881x_codec_info_create_codec_entry(struct snd_info_entry *codec_root,
  256. struct snd_soc_component *component)
  257. {
  258. struct snd_info_entry *version_entry;
  259. struct wsa881x_priv *wsa881x;
  260. struct snd_soc_card *card;
  261. char name[80];
  262. if (!codec_root || !component)
  263. return -EINVAL;
  264. wsa881x = snd_soc_component_get_drvdata(component);
  265. card = component->card;
  266. snprintf(name, sizeof(name), "%s.%x", "wsa881x",
  267. (u32)wsa881x->swr_slave->addr);
  268. wsa881x->entry = snd_info_create_subdir(codec_root->module,
  269. (const char *)name,
  270. codec_root);
  271. if (!wsa881x->entry) {
  272. dev_dbg(component->dev, "%s: failed to create wsa881x entry\n",
  273. __func__);
  274. return -ENOMEM;
  275. }
  276. version_entry = snd_info_create_card_entry(card->snd_card,
  277. "version",
  278. wsa881x->entry);
  279. if (!version_entry) {
  280. dev_dbg(component->dev, "%s: failed to create wsa881x version entry\n",
  281. __func__);
  282. return -ENOMEM;
  283. }
  284. version_entry->private_data = wsa881x;
  285. version_entry->size = WSA881X_VERSION_ENTRY_SIZE;
  286. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  287. version_entry->c.ops = &wsa881x_codec_info_ops;
  288. if (snd_info_register(version_entry) < 0) {
  289. snd_info_free_entry(version_entry);
  290. return -ENOMEM;
  291. }
  292. wsa881x->version_entry = version_entry;
  293. return 0;
  294. }
  295. EXPORT_SYMBOL(wsa881x_codec_info_create_codec_entry);
  296. static bool is_swr_slv_reg_readable(int reg)
  297. {
  298. bool ret = true;
  299. if (((reg > 0x46) && (reg < 0x4A)) ||
  300. ((reg > 0x4A) && (reg < 0x50)) ||
  301. ((reg > 0x55) && (reg < 0xE0)) ||
  302. ((reg > 0xE0) && (reg < 0xF0)) ||
  303. ((reg > 0xF0) && (reg < 0x100)) ||
  304. ((reg > 0x105) && (reg < 0x120)) ||
  305. ((reg > 0x128) && (reg < 0x130)) ||
  306. ((reg > 0x138) && (reg < 0x200)) ||
  307. ((reg > 0x205) && (reg < 0x220)) ||
  308. ((reg > 0x228) && (reg < 0x230)) ||
  309. ((reg > 0x238) && (reg < 0x300)) ||
  310. ((reg > 0x305) && (reg < 0x320)) ||
  311. ((reg > 0x328) && (reg < 0x330)) ||
  312. ((reg > 0x338) && (reg < 0x400)) ||
  313. ((reg > 0x405) && (reg < 0x420)))
  314. ret = false;
  315. return ret;
  316. }
  317. static ssize_t wsa881x_swrslave_reg_show(char __user *ubuf, size_t count,
  318. loff_t *ppos)
  319. {
  320. int i, reg_val, len;
  321. ssize_t total = 0;
  322. char tmp_buf[SWR_SLV_MAX_BUF_LEN];
  323. if (!ubuf || !ppos || (devnum == 0))
  324. return 0;
  325. for (i = (((int) *ppos / BYTES_PER_LINE) + SWR_SLV_START_REG_ADDR);
  326. i <= SWR_SLV_MAX_REG_ADDR; i++) {
  327. if (!is_swr_slv_reg_readable(i))
  328. continue;
  329. swr_read(dbgwsa881x->swr_slave, devnum,
  330. i, &reg_val, 1);
  331. len = snprintf(tmp_buf, 25, "0x%.3x: 0x%.2x\n", i,
  332. (reg_val & 0xFF));
  333. if (len < 0) {
  334. pr_err("%s: fail to fill the buffer\n", __func__);
  335. total = -EFAULT;
  336. goto copy_err;
  337. }
  338. if ((total + len) >= count - 1)
  339. break;
  340. if (copy_to_user((ubuf + total), tmp_buf, len)) {
  341. pr_err("%s: fail to copy reg dump\n", __func__);
  342. total = -EFAULT;
  343. goto copy_err;
  344. }
  345. *ppos += len;
  346. total += len;
  347. }
  348. copy_err:
  349. return total;
  350. }
  351. static ssize_t codec_debug_read(struct file *file, char __user *ubuf,
  352. size_t count, loff_t *ppos)
  353. {
  354. char lbuf[SWR_SLV_RD_BUF_LEN];
  355. char *access_str;
  356. ssize_t ret_cnt;
  357. if (!count || !file || !ppos || !ubuf)
  358. return -EINVAL;
  359. access_str = file->private_data;
  360. if (*ppos < 0)
  361. return -EINVAL;
  362. if (!strcmp(access_str, "swrslave_peek")) {
  363. snprintf(lbuf, sizeof(lbuf), "0x%x\n", (read_data & 0xFF));
  364. ret_cnt = simple_read_from_buffer(ubuf, count, ppos, lbuf,
  365. strnlen(lbuf, 7));
  366. } else if (!strcmp(access_str, "swrslave_reg_dump")) {
  367. ret_cnt = wsa881x_swrslave_reg_show(ubuf, count, ppos);
  368. } else {
  369. pr_err("%s: %s not permitted to read\n", __func__, access_str);
  370. ret_cnt = -EPERM;
  371. }
  372. return ret_cnt;
  373. }
  374. static ssize_t codec_debug_write(struct file *filp,
  375. const char __user *ubuf, size_t cnt, loff_t *ppos)
  376. {
  377. char lbuf[SWR_SLV_WR_BUF_LEN];
  378. int rc;
  379. u32 param[5];
  380. char *access_str;
  381. if (!filp || !ppos || !ubuf)
  382. return -EINVAL;
  383. access_str = filp->private_data;
  384. if (cnt > sizeof(lbuf) - 1)
  385. return -EINVAL;
  386. rc = copy_from_user(lbuf, ubuf, cnt);
  387. if (rc)
  388. return -EFAULT;
  389. lbuf[cnt] = '\0';
  390. if (!strcmp(access_str, "swrslave_poke")) {
  391. /* write */
  392. rc = get_parameters(lbuf, param, 3);
  393. if ((param[0] <= SWR_SLV_MAX_REG_ADDR) && (param[1] <= 0xFF) &&
  394. (rc == 0))
  395. swr_write(dbgwsa881x->swr_slave, param[2],
  396. param[0], &param[1]);
  397. else
  398. rc = -EINVAL;
  399. } else if (!strcmp(access_str, "swrslave_peek")) {
  400. /* read */
  401. rc = get_parameters(lbuf, param, 2);
  402. if ((param[0] <= SWR_SLV_MAX_REG_ADDR) && (rc == 0))
  403. swr_read(dbgwsa881x->swr_slave, param[1],
  404. param[0], &read_data, 1);
  405. else
  406. rc = -EINVAL;
  407. } else if (!strcmp(access_str, "swrslave_reg_dump")) {
  408. /* reg dump */
  409. rc = get_parameters(lbuf, param, 1);
  410. if ((rc == 0) && (param[0] > 0) &&
  411. (param[0] <= SWR_SLV_MAX_DEVICES))
  412. devnum = param[0];
  413. else
  414. rc = -EINVAL;
  415. }
  416. if (rc == 0)
  417. rc = cnt;
  418. else
  419. pr_err("%s: rc = %d\n", __func__, rc);
  420. return rc;
  421. }
  422. static const struct file_operations codec_debug_ops = {
  423. .open = codec_debug_open,
  424. .write = codec_debug_write,
  425. .read = codec_debug_read,
  426. };
  427. static void wsa881x_regcache_sync(struct wsa881x_priv *wsa881x)
  428. {
  429. mutex_lock(&wsa881x->res_lock);
  430. if (wsa881x->state != WSA881X_DEV_READY) {
  431. regcache_mark_dirty(wsa881x->regmap);
  432. regcache_sync(wsa881x->regmap);
  433. wsa881x->state = WSA881X_DEV_READY;
  434. }
  435. mutex_unlock(&wsa881x->res_lock);
  436. }
  437. static const struct reg_sequence wsa881x_pre_pmu_pa[] = {
  438. {WSA881X_SPKR_DRV_GAIN, 0x41, 0},
  439. {WSA881X_SPKR_MISC_CTL1, 0x01, 0},
  440. {WSA881X_ADC_EN_DET_TEST_I, 0x01, 0},
  441. {WSA881X_ADC_EN_MODU_V, 0x02, 0},
  442. {WSA881X_ADC_EN_DET_TEST_V, 0x10, 0},
  443. {WSA881X_SPKR_PWRSTG_DBG, 0xA0, 0},
  444. };
  445. static const struct reg_sequence wsa881x_pre_pmu_pa_2_0[] = {
  446. {WSA881X_SPKR_DRV_GAIN, 0x41, 0},
  447. {WSA881X_SPKR_MISC_CTL1, 0x87, 0},
  448. };
  449. static const struct reg_sequence wsa881x_post_pmu_pa[] = {
  450. {WSA881X_SPKR_PWRSTG_DBG, 0x00, 0},
  451. {WSA881X_ADC_EN_DET_TEST_V, 0x00, 0},
  452. {WSA881X_ADC_EN_MODU_V, 0x00, 0},
  453. {WSA881X_ADC_EN_DET_TEST_I, 0x00, 0},
  454. };
  455. static const struct reg_sequence wsa881x_vi_txfe_en[] = {
  456. {WSA881X_SPKR_PROT_FE_VSENSE_VCM, 0x85, 0},
  457. {WSA881X_SPKR_PROT_ATEST2, 0x0A, 0},
  458. {WSA881X_SPKR_PROT_FE_GAIN, 0xCF, 0},
  459. };
  460. static const struct reg_sequence wsa881x_vi_txfe_en_2_0[] = {
  461. {WSA881X_SPKR_PROT_FE_VSENSE_VCM, 0x85, 0},
  462. {WSA881X_SPKR_PROT_ATEST2, 0x0A, 0},
  463. {WSA881X_SPKR_PROT_FE_GAIN, 0x47, 0},
  464. };
  465. static int wsa881x_boost_ctrl(struct snd_soc_component *component, bool enable)
  466. {
  467. dev_dbg(component->dev, "%s: enable:%d\n", __func__, enable);
  468. if (enable)
  469. snd_soc_component_update_bits(component, WSA881X_BOOST_EN_CTL,
  470. 0x80, 0x80);
  471. else
  472. snd_soc_component_update_bits(component, WSA881X_BOOST_EN_CTL,
  473. 0x80, 0x00);
  474. /*
  475. * 1.5ms sleep is needed after boost enable/disable as per
  476. * HW requirement
  477. */
  478. usleep_range(1500, 1510);
  479. return 0;
  480. }
  481. static int wsa881x_visense_txfe_ctrl(struct snd_soc_component *component,
  482. bool enable, u8 isense1_gain,
  483. u8 isense2_gain, u8 vsense_gain)
  484. {
  485. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  486. dev_dbg(component->dev,
  487. "%s: enable:%d, isense1 gain: %d, isense2 gain: %d, vsense_gain %d\n",
  488. __func__, enable, isense1_gain, isense2_gain, vsense_gain);
  489. if (enable) {
  490. regmap_multi_reg_write(wsa881x->regmap,
  491. wsa881x_vi_txfe_en_2_0,
  492. ARRAY_SIZE(wsa881x_vi_txfe_en_2_0));
  493. } else {
  494. snd_soc_component_update_bits(component,
  495. WSA881X_SPKR_PROT_FE_VSENSE_VCM,
  496. 0x08, 0x08);
  497. /*
  498. * 200us sleep is needed after visense txfe disable as per
  499. * HW requirement.
  500. */
  501. usleep_range(200, 210);
  502. snd_soc_component_update_bits(component,
  503. WSA881X_SPKR_PROT_FE_GAIN,
  504. 0x01, 0x00);
  505. }
  506. return 0;
  507. }
  508. static int wsa881x_visense_adc_ctrl(struct snd_soc_component *component,
  509. bool enable)
  510. {
  511. dev_dbg(component->dev, "%s: enable:%d\n", __func__, enable);
  512. snd_soc_component_update_bits(component, WSA881X_ADC_EN_MODU_V,
  513. (0x01 << 7), (enable << 7));
  514. snd_soc_component_update_bits(component, WSA881X_ADC_EN_MODU_I,
  515. (0x01 << 7), (enable << 7));
  516. return 0;
  517. }
  518. static void wsa881x_bandgap_ctrl(struct snd_soc_component *component,
  519. bool enable)
  520. {
  521. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  522. dev_dbg(component->dev, "%s: enable:%d, bg_count:%d\n", __func__,
  523. enable, wsa881x->bg_cnt);
  524. mutex_lock(&wsa881x->bg_lock);
  525. if (enable) {
  526. ++wsa881x->bg_cnt;
  527. if (wsa881x->bg_cnt == 1) {
  528. snd_soc_component_update_bits(component,
  529. WSA881X_TEMP_OP,
  530. 0x08, 0x08);
  531. /* 400usec sleep is needed as per HW requirement */
  532. usleep_range(400, 410);
  533. snd_soc_component_update_bits(component,
  534. WSA881X_TEMP_OP,
  535. 0x04, 0x04);
  536. }
  537. } else {
  538. --wsa881x->bg_cnt;
  539. if (wsa881x->bg_cnt <= 0) {
  540. WARN_ON(wsa881x->bg_cnt < 0);
  541. wsa881x->bg_cnt = 0;
  542. snd_soc_component_update_bits(component,
  543. WSA881X_TEMP_OP, 0x04, 0x00);
  544. snd_soc_component_update_bits(component,
  545. WSA881X_TEMP_OP, 0x08, 0x00);
  546. }
  547. }
  548. mutex_unlock(&wsa881x->bg_lock);
  549. }
  550. static void wsa881x_clk_ctrl(struct snd_soc_component *component, bool enable)
  551. {
  552. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  553. dev_dbg(component->dev, "%s: enable:%d, clk_count:%d\n", __func__,
  554. enable, wsa881x->clk_cnt);
  555. mutex_lock(&wsa881x->res_lock);
  556. if (enable) {
  557. ++wsa881x->clk_cnt;
  558. if (wsa881x->clk_cnt == 1) {
  559. snd_soc_component_write(component,
  560. WSA881X_CDC_DIG_CLK_CTL, 0x01);
  561. snd_soc_component_write(component,
  562. WSA881X_CDC_ANA_CLK_CTL, 0x01);
  563. }
  564. } else {
  565. --wsa881x->clk_cnt;
  566. if (wsa881x->clk_cnt <= 0) {
  567. WARN_ON(wsa881x->clk_cnt < 0);
  568. wsa881x->clk_cnt = 0;
  569. snd_soc_component_write(component,
  570. WSA881X_CDC_DIG_CLK_CTL, 0x00);
  571. snd_soc_component_write(component,
  572. WSA881X_CDC_ANA_CLK_CTL, 0x00);
  573. }
  574. }
  575. mutex_unlock(&wsa881x->res_lock);
  576. }
  577. static int wsa881x_get_compander(struct snd_kcontrol *kcontrol,
  578. struct snd_ctl_elem_value *ucontrol)
  579. {
  580. struct snd_soc_component *component =
  581. snd_soc_kcontrol_component(kcontrol);
  582. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  583. ucontrol->value.integer.value[0] = wsa881x->comp_enable;
  584. return 0;
  585. }
  586. static int wsa881x_set_compander(struct snd_kcontrol *kcontrol,
  587. struct snd_ctl_elem_value *ucontrol)
  588. {
  589. struct snd_soc_component *component =
  590. snd_soc_kcontrol_component(kcontrol);
  591. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  592. int value = ucontrol->value.integer.value[0];
  593. dev_dbg(component->dev, "%s: Compander enable current %d, new %d\n",
  594. __func__, wsa881x->comp_enable, value);
  595. wsa881x->comp_enable = value;
  596. return 0;
  597. }
  598. static int wsa881x_get_boost(struct snd_kcontrol *kcontrol,
  599. struct snd_ctl_elem_value *ucontrol)
  600. {
  601. struct snd_soc_component *component =
  602. snd_soc_kcontrol_component(kcontrol);
  603. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  604. ucontrol->value.integer.value[0] = wsa881x->boost_enable;
  605. return 0;
  606. }
  607. static int wsa881x_set_boost(struct snd_kcontrol *kcontrol,
  608. struct snd_ctl_elem_value *ucontrol)
  609. {
  610. struct snd_soc_component *component =
  611. snd_soc_kcontrol_component(kcontrol);
  612. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  613. int value = ucontrol->value.integer.value[0];
  614. dev_dbg(component->dev, "%s: Boost enable current %d, new %d\n",
  615. __func__, wsa881x->boost_enable, value);
  616. wsa881x->boost_enable = value;
  617. return 0;
  618. }
  619. static int wsa881x_get_visense(struct snd_kcontrol *kcontrol,
  620. struct snd_ctl_elem_value *ucontrol)
  621. {
  622. struct snd_soc_component *component =
  623. snd_soc_kcontrol_component(kcontrol);
  624. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  625. ucontrol->value.integer.value[0] = wsa881x->visense_enable;
  626. return 0;
  627. }
  628. static int wsa881x_set_visense(struct snd_kcontrol *kcontrol,
  629. struct snd_ctl_elem_value *ucontrol)
  630. {
  631. struct snd_soc_component *component =
  632. snd_soc_kcontrol_component(kcontrol);
  633. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  634. int value = ucontrol->value.integer.value[0];
  635. dev_dbg(component->dev, "%s: VIsense enable current %d, new %d\n",
  636. __func__, wsa881x->visense_enable, value);
  637. wsa881x->visense_enable = value;
  638. return 0;
  639. }
  640. static int wsa881x_set_boost_level(struct snd_kcontrol *kcontrol,
  641. struct snd_ctl_elem_value *ucontrol)
  642. {
  643. struct snd_soc_component *component =
  644. snd_soc_kcontrol_component(kcontrol);
  645. u8 wsa_boost_level = 0;
  646. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  647. __func__, ucontrol->value.integer.value[0]);
  648. wsa_boost_level = ucontrol->value.integer.value[0];
  649. snd_soc_component_update_bits(component, WSA881X_BOOST_PRESET_OUT1,
  650. 0xff, wsa_boost_level);
  651. return 0;
  652. }
  653. static int wsa881x_get_boost_level(struct snd_kcontrol *kcontrol,
  654. struct snd_ctl_elem_value *ucontrol)
  655. {
  656. struct snd_soc_component *component =
  657. snd_soc_kcontrol_component(kcontrol);
  658. u8 wsa_boost_level = 0;
  659. wsa_boost_level = snd_soc_component_read32(component,
  660. WSA881X_BOOST_PRESET_OUT1);
  661. ucontrol->value.integer.value[0] = wsa_boost_level;
  662. dev_dbg(component->dev, "%s: boost level = 0x%x\n", __func__,
  663. wsa_boost_level);
  664. return 0;
  665. }
  666. static const struct snd_kcontrol_new wsa881x_snd_controls[] = {
  667. SOC_SINGLE_EXT("COMP Switch", SND_SOC_NOPM, 0, 1, 0,
  668. wsa881x_get_compander, wsa881x_set_compander),
  669. SOC_SINGLE_EXT("BOOST Switch", SND_SOC_NOPM, 0, 1, 0,
  670. wsa881x_get_boost, wsa881x_set_boost),
  671. SOC_SINGLE_EXT("VISENSE Switch", SND_SOC_NOPM, 0, 1, 0,
  672. wsa881x_get_visense, wsa881x_set_visense),
  673. SOC_SINGLE_EXT("Boost Level", SND_SOC_NOPM, 0, 0xff, 0,
  674. wsa881x_get_boost_level, wsa881x_set_boost_level),
  675. };
  676. static const struct snd_kcontrol_new swr_dac_port[] = {
  677. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  678. };
  679. static int wsa881x_set_port(struct snd_soc_component *component, int port_idx,
  680. u8 *port_id, u8 *num_ch, u8 *ch_mask, u32 *ch_rate,
  681. u8 *port_type)
  682. {
  683. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  684. *port_id = wsa881x->port[port_idx].port_id;
  685. *num_ch = wsa881x->port[port_idx].num_ch;
  686. *ch_mask = wsa881x->port[port_idx].ch_mask;
  687. *ch_rate = wsa881x->port[port_idx].ch_rate;
  688. *port_type = wsa881x->port[port_idx].port_type;
  689. return 0;
  690. }
  691. static int wsa881x_enable_swr_dac_port(struct snd_soc_dapm_widget *w,
  692. struct snd_kcontrol *kcontrol, int event)
  693. {
  694. struct snd_soc_component *component =
  695. snd_soc_dapm_to_component(w->dapm);
  696. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  697. u8 port_id[WSA881X_MAX_SWR_PORTS];
  698. u8 num_ch[WSA881X_MAX_SWR_PORTS];
  699. u8 ch_mask[WSA881X_MAX_SWR_PORTS];
  700. u32 ch_rate[WSA881X_MAX_SWR_PORTS];
  701. u8 port_type[WSA881X_MAX_SWR_PORTS];
  702. u8 num_port = 0;
  703. dev_dbg(component->dev, "%s: event %d name %s\n", __func__,
  704. event, w->name);
  705. if (wsa881x == NULL)
  706. return -EINVAL;
  707. switch (event) {
  708. case SND_SOC_DAPM_PRE_PMU:
  709. wsa881x_set_port(component, SWR_DAC_PORT,
  710. &port_id[num_port], &num_ch[num_port],
  711. &ch_mask[num_port], &ch_rate[num_port],
  712. &port_type[num_port]);
  713. ++num_port;
  714. if (wsa881x->comp_enable) {
  715. wsa881x_set_port(component, SWR_COMP_PORT,
  716. &port_id[num_port], &num_ch[num_port],
  717. &ch_mask[num_port], &ch_rate[num_port],
  718. &port_type[num_port]);
  719. ++num_port;
  720. }
  721. if (wsa881x->boost_enable) {
  722. wsa881x_set_port(component, SWR_BOOST_PORT,
  723. &port_id[num_port], &num_ch[num_port],
  724. &ch_mask[num_port], &ch_rate[num_port],
  725. &port_type[num_port]);
  726. ++num_port;
  727. }
  728. if (wsa881x->visense_enable) {
  729. wsa881x_set_port(component, SWR_VISENSE_PORT,
  730. &port_id[num_port], &num_ch[num_port],
  731. &ch_mask[num_port], &ch_rate[num_port],
  732. &port_type[num_port]);
  733. ++num_port;
  734. }
  735. swr_connect_port(wsa881x->swr_slave, &port_id[0], num_port,
  736. &ch_mask[0], &ch_rate[0], &num_ch[0],
  737. &port_type[0]);
  738. break;
  739. case SND_SOC_DAPM_POST_PMU:
  740. break;
  741. case SND_SOC_DAPM_PRE_PMD:
  742. break;
  743. case SND_SOC_DAPM_POST_PMD:
  744. wsa881x_set_port(component, SWR_DAC_PORT,
  745. &port_id[num_port], &num_ch[num_port],
  746. &ch_mask[num_port], &ch_rate[num_port],
  747. &port_type[num_port]);
  748. ++num_port;
  749. if (wsa881x->comp_enable) {
  750. wsa881x_set_port(component, SWR_COMP_PORT,
  751. &port_id[num_port], &num_ch[num_port],
  752. &ch_mask[num_port], &ch_rate[num_port],
  753. &port_type[num_port]);
  754. ++num_port;
  755. }
  756. if (wsa881x->boost_enable) {
  757. wsa881x_set_port(component, SWR_BOOST_PORT,
  758. &port_id[num_port], &num_ch[num_port],
  759. &ch_mask[num_port], &ch_rate[num_port],
  760. &port_type[num_port]);
  761. ++num_port;
  762. }
  763. if (wsa881x->visense_enable) {
  764. wsa881x_set_port(component, SWR_VISENSE_PORT,
  765. &port_id[num_port], &num_ch[num_port],
  766. &ch_mask[num_port], &ch_rate[num_port],
  767. &port_type[num_port]);
  768. ++num_port;
  769. }
  770. swr_disconnect_port(wsa881x->swr_slave, &port_id[0], num_port,
  771. &ch_mask[0], &port_type[0]);
  772. break;
  773. default:
  774. break;
  775. }
  776. return 0;
  777. }
  778. static int wsa881x_rdac_event(struct snd_soc_dapm_widget *w,
  779. struct snd_kcontrol *kcontrol, int event)
  780. {
  781. struct snd_soc_component *component =
  782. snd_soc_dapm_to_component(w->dapm);
  783. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  784. dev_dbg(component->dev, "%s: %s %d boost %d visense %d\n", __func__,
  785. w->name, event, wsa881x->boost_enable,
  786. wsa881x->visense_enable);
  787. switch (event) {
  788. case SND_SOC_DAPM_PRE_PMU:
  789. mutex_lock(&wsa881x->temp_lock);
  790. wsa881x_resource_acquire(component, ENABLE);
  791. mutex_unlock(&wsa881x->temp_lock);
  792. wsa881x_boost_ctrl(component, ENABLE);
  793. break;
  794. case SND_SOC_DAPM_POST_PMD:
  795. swr_slvdev_datapath_control(wsa881x->swr_slave,
  796. wsa881x->swr_slave->dev_num,
  797. false);
  798. wsa881x_boost_ctrl(component, DISABLE);
  799. mutex_lock(&wsa881x->temp_lock);
  800. wsa881x_resource_acquire(component, DISABLE);
  801. mutex_unlock(&wsa881x->temp_lock);
  802. break;
  803. }
  804. return 0;
  805. }
  806. static int wsa881x_ramp_pa_gain(struct snd_soc_component *component,
  807. int min_gain, int max_gain, int udelay)
  808. {
  809. int val;
  810. for (val = min_gain; max_gain <= val; val--) {
  811. snd_soc_component_update_bits(component, WSA881X_SPKR_DRV_GAIN,
  812. 0xF0, val << 4);
  813. /*
  814. * 1ms delay is needed for every step change in gain as per
  815. * HW requirement.
  816. */
  817. usleep_range(udelay, udelay+10);
  818. }
  819. return 0;
  820. }
  821. static void wsa881x_ocp_ctl_work(struct work_struct *work)
  822. {
  823. struct wsa881x_priv *wsa881x;
  824. struct delayed_work *dwork;
  825. struct snd_soc_component *component;
  826. int temp_val;
  827. dwork = to_delayed_work(work);
  828. wsa881x = container_of(dwork, struct wsa881x_priv, ocp_ctl_work);
  829. component = wsa881x->component;
  830. wsa881x_get_temp(wsa881x->tz_pdata.tz_dev, &temp_val);
  831. dev_dbg(component->dev, " temp = %d\n", temp_val);
  832. if (temp_val <= WSA881X_OCP_CTL_TEMP_CELSIUS)
  833. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  834. 0xC0, 0x00);
  835. else
  836. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  837. 0xC0, 0xC0);
  838. schedule_delayed_work(&wsa881x->ocp_ctl_work,
  839. msecs_to_jiffies(wsa881x_ocp_poll_timer_sec * 1000));
  840. }
  841. static int wsa881x_spkr_pa_event(struct snd_soc_dapm_widget *w,
  842. struct snd_kcontrol *kcontrol, int event)
  843. {
  844. struct snd_soc_component *component =
  845. snd_soc_dapm_to_component(w->dapm);
  846. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  847. int min_gain, max_gain;
  848. dev_dbg(component->dev, "%s: %s %d\n", __func__, w->name, event);
  849. switch (event) {
  850. case SND_SOC_DAPM_PRE_PMU:
  851. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  852. 0xC0, 0x80);
  853. regmap_multi_reg_write(wsa881x->regmap,
  854. wsa881x_pre_pmu_pa_2_0,
  855. ARRAY_SIZE(wsa881x_pre_pmu_pa_2_0));
  856. swr_slvdev_datapath_control(wsa881x->swr_slave,
  857. wsa881x->swr_slave->dev_num,
  858. true);
  859. /* Set register mode if compander is not enabled */
  860. if (!wsa881x->comp_enable)
  861. snd_soc_component_update_bits(component,
  862. WSA881X_SPKR_DRV_GAIN,
  863. 0x08, 0x08);
  864. else
  865. snd_soc_component_update_bits(component,
  866. WSA881X_SPKR_DRV_GAIN,
  867. 0x08, 0x00);
  868. break;
  869. case SND_SOC_DAPM_POST_PMU:
  870. if (!wsa881x->comp_enable) {
  871. max_gain = wsa881x->pa_gain;
  872. /*
  873. * Gain has to set incrementally in 4 steps
  874. * as per HW sequence
  875. */
  876. if (max_gain > G_4P5DB)
  877. min_gain = G_0DB;
  878. else
  879. min_gain = max_gain + 3;
  880. /*
  881. * 1ms delay is needed before change in gain
  882. * as per HW requirement.
  883. */
  884. usleep_range(1000, 1010);
  885. wsa881x_ramp_pa_gain(component, min_gain, max_gain,
  886. 1000);
  887. }
  888. if (wsa881x->visense_enable) {
  889. wsa881x_visense_txfe_ctrl(component, ENABLE,
  890. 0x00, 0x03, 0x01);
  891. snd_soc_component_update_bits(component,
  892. WSA881X_ADC_EN_SEL_IBAIS,
  893. 0x07, 0x01);
  894. wsa881x_visense_adc_ctrl(component, ENABLE);
  895. }
  896. schedule_delayed_work(&wsa881x->ocp_ctl_work,
  897. msecs_to_jiffies(WSA881X_OCP_CTL_TIMER_SEC * 1000));
  898. /* Force remove group */
  899. swr_remove_from_group(wsa881x->swr_slave,
  900. wsa881x->swr_slave->dev_num);
  901. break;
  902. case SND_SOC_DAPM_POST_PMD:
  903. if (wsa881x->visense_enable) {
  904. wsa881x_visense_adc_ctrl(component, DISABLE);
  905. wsa881x_visense_txfe_ctrl(component, DISABLE,
  906. 0x00, 0x01, 0x01);
  907. }
  908. cancel_delayed_work_sync(&wsa881x->ocp_ctl_work);
  909. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  910. 0xC0, 0xC0);
  911. break;
  912. }
  913. return 0;
  914. }
  915. static const struct snd_soc_dapm_widget wsa881x_dapm_widgets[] = {
  916. SND_SOC_DAPM_INPUT("IN"),
  917. SND_SOC_DAPM_MIXER_E("SWR DAC_Port", SND_SOC_NOPM, 0, 0, swr_dac_port,
  918. ARRAY_SIZE(swr_dac_port), wsa881x_enable_swr_dac_port,
  919. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  920. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  921. SND_SOC_DAPM_DAC_E("RDAC", NULL, WSA881X_SPKR_DAC_CTL, 7, 0,
  922. wsa881x_rdac_event,
  923. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  924. SND_SOC_DAPM_PGA_E("SPKR PGA", WSA881X_SPKR_DRV_EN, 7, 0, NULL, 0,
  925. wsa881x_spkr_pa_event, SND_SOC_DAPM_PRE_PMU |
  926. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
  927. SND_SOC_DAPM_OUTPUT("SPKR"),
  928. };
  929. static const struct snd_soc_dapm_route wsa881x_audio_map[] = {
  930. {"SWR DAC_Port", "Switch", "IN"},
  931. {"RDAC", NULL, "SWR DAC_Port"},
  932. {"SPKR PGA", NULL, "RDAC"},
  933. {"SPKR", NULL, "SPKR PGA"},
  934. };
  935. int wsa881x_set_channel_map(struct snd_soc_component *component, u8 *port,
  936. u8 num_port, unsigned int *ch_mask,
  937. unsigned int *ch_rate, u8 *port_type)
  938. {
  939. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  940. int i;
  941. if (!port || !ch_mask || !ch_rate ||
  942. (num_port > WSA881X_MAX_SWR_PORTS)) {
  943. dev_err(component->dev,
  944. "%s: Invalid port=%pK, ch_mask=%pK, ch_rate=%pK\n",
  945. __func__, port, ch_mask, ch_rate);
  946. return -EINVAL;
  947. }
  948. for (i = 0; i < num_port; i++) {
  949. wsa881x->port[i].port_id = port[i];
  950. wsa881x->port[i].ch_mask = ch_mask[i];
  951. wsa881x->port[i].ch_rate = ch_rate[i];
  952. wsa881x->port[i].num_ch = __sw_hweight8(ch_mask[i]);
  953. if (port_type)
  954. wsa881x->port[i].port_type = port_type[i];
  955. }
  956. return 0;
  957. }
  958. EXPORT_SYMBOL(wsa881x_set_channel_map);
  959. static void wsa881x_init(struct snd_soc_component *component)
  960. {
  961. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  962. wsa881x->version =
  963. snd_soc_component_read32(component, WSA881X_CHIP_ID1);
  964. wsa881x_regmap_defaults(wsa881x->regmap, wsa881x->version);
  965. /* Enable software reset output from soundwire slave */
  966. snd_soc_component_update_bits(component, WSA881X_SWR_RESET_EN,
  967. 0x07, 0x07);
  968. /* Bring out of analog reset */
  969. snd_soc_component_update_bits(component, WSA881X_CDC_RST_CTL,
  970. 0x02, 0x02);
  971. /* Bring out of digital reset */
  972. snd_soc_component_update_bits(component, WSA881X_CDC_RST_CTL,
  973. 0x01, 0x01);
  974. snd_soc_component_update_bits(component, WSA881X_CLOCK_CONFIG,
  975. 0x10, 0x10);
  976. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  977. 0x02, 0x02);
  978. snd_soc_component_update_bits(component, WSA881X_SPKR_MISC_CTL1,
  979. 0xC0, 0x80);
  980. snd_soc_component_update_bits(component, WSA881X_SPKR_MISC_CTL1,
  981. 0x06, 0x06);
  982. snd_soc_component_update_bits(component, WSA881X_SPKR_BIAS_INT,
  983. 0xFF, 0x00);
  984. snd_soc_component_update_bits(component, WSA881X_SPKR_PA_INT,
  985. 0xF0, 0x40);
  986. snd_soc_component_update_bits(component, WSA881X_SPKR_PA_INT,
  987. 0x0E, 0x0E);
  988. snd_soc_component_update_bits(component, WSA881X_BOOST_LOOP_STABILITY,
  989. 0x03, 0x03);
  990. snd_soc_component_update_bits(component, WSA881X_BOOST_MISC2_CTL,
  991. 0xFF, 0x14);
  992. snd_soc_component_update_bits(component, WSA881X_BOOST_START_CTL,
  993. 0x80, 0x80);
  994. snd_soc_component_update_bits(component, WSA881X_BOOST_START_CTL,
  995. 0x03, 0x00);
  996. snd_soc_component_update_bits(component,
  997. WSA881X_BOOST_SLOPE_COMP_ISENSE_FB,
  998. 0x0C, 0x04);
  999. snd_soc_component_update_bits(component,
  1000. WSA881X_BOOST_SLOPE_COMP_ISENSE_FB,
  1001. 0x03, 0x00);
  1002. if (snd_soc_component_read32(component, WSA881X_OTP_REG_0))
  1003. snd_soc_component_update_bits(component,
  1004. WSA881X_BOOST_PRESET_OUT1,
  1005. 0xF0, 0x70);
  1006. snd_soc_component_update_bits(component, WSA881X_BOOST_PRESET_OUT2,
  1007. 0xF0, 0x30);
  1008. snd_soc_component_update_bits(component, WSA881X_SPKR_DRV_EN,
  1009. 0x08, 0x08);
  1010. snd_soc_component_update_bits(component, WSA881X_BOOST_CURRENT_LIMIT,
  1011. 0x0F, 0x08);
  1012. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  1013. 0x30, 0x30);
  1014. snd_soc_component_update_bits(component, WSA881X_SPKR_OCP_CTL,
  1015. 0x0C, 0x00);
  1016. snd_soc_component_update_bits(component, WSA881X_OTP_REG_28,
  1017. 0x3F, 0x3A);
  1018. snd_soc_component_update_bits(component, WSA881X_BONGO_RESRV_REG1,
  1019. 0xFF, 0xB2);
  1020. snd_soc_component_update_bits(component, WSA881X_BONGO_RESRV_REG2,
  1021. 0xFF, 0x05);
  1022. }
  1023. static int32_t wsa881x_resource_acquire(struct snd_soc_component *component,
  1024. bool enable)
  1025. {
  1026. wsa881x_clk_ctrl(component, enable);
  1027. wsa881x_bandgap_ctrl(component, enable);
  1028. return 0;
  1029. }
  1030. static int32_t wsa881x_temp_reg_read(struct snd_soc_component *component,
  1031. struct wsa_temp_register *wsa_temp_reg)
  1032. {
  1033. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  1034. struct swr_device *dev;
  1035. u8 retry = WSA881X_NUM_RETRY;
  1036. u8 devnum = 0;
  1037. if (!wsa881x) {
  1038. dev_err(component->dev, "%s: wsa881x is NULL\n", __func__);
  1039. return -EINVAL;
  1040. }
  1041. dev = wsa881x->swr_slave;
  1042. if (dev && (wsa881x->state == WSA881X_DEV_DOWN)) {
  1043. while (swr_get_logical_dev_num(dev, dev->addr, &devnum) &&
  1044. retry--) {
  1045. /* Retry after 1 msec delay */
  1046. usleep_range(1000, 1100);
  1047. }
  1048. if (retry == 0) {
  1049. dev_err(component->dev,
  1050. "%s get devnum %d for dev addr %lx failed\n",
  1051. __func__, devnum, dev->addr);
  1052. return -EINVAL;
  1053. }
  1054. }
  1055. wsa881x_regcache_sync(wsa881x);
  1056. mutex_lock(&wsa881x->temp_lock);
  1057. wsa881x_resource_acquire(component, ENABLE);
  1058. snd_soc_component_update_bits(component, WSA881X_TADC_VALUE_CTL,
  1059. 0x01, 0x00);
  1060. wsa_temp_reg->dmeas_msb = snd_soc_component_read32(
  1061. component, WSA881X_TEMP_MSB);
  1062. wsa_temp_reg->dmeas_lsb = snd_soc_component_read32(
  1063. component, WSA881X_TEMP_LSB);
  1064. snd_soc_component_update_bits(component, WSA881X_TADC_VALUE_CTL,
  1065. 0x01, 0x01);
  1066. wsa_temp_reg->d1_msb = snd_soc_component_read32(
  1067. component, WSA881X_OTP_REG_1);
  1068. wsa_temp_reg->d1_lsb = snd_soc_component_read32(
  1069. component, WSA881X_OTP_REG_2);
  1070. wsa_temp_reg->d2_msb = snd_soc_component_read32(
  1071. component, WSA881X_OTP_REG_3);
  1072. wsa_temp_reg->d2_lsb = snd_soc_component_read32(
  1073. component, WSA881X_OTP_REG_4);
  1074. wsa881x_resource_acquire(component, DISABLE);
  1075. mutex_unlock(&wsa881x->temp_lock);
  1076. return 0;
  1077. }
  1078. static int wsa881x_probe(struct snd_soc_component *component)
  1079. {
  1080. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  1081. struct swr_device *dev;
  1082. if (!wsa881x)
  1083. return -EINVAL;
  1084. snd_soc_component_init_regmap(component, wsa881x->regmap);
  1085. dev = wsa881x->swr_slave;
  1086. wsa881x->component = component;
  1087. mutex_init(&wsa881x->bg_lock);
  1088. wsa881x_init(component);
  1089. snprintf(wsa881x->tz_pdata.name, sizeof(wsa881x->tz_pdata.name),
  1090. "%s.%x", "wsatz", (u8)dev->addr);
  1091. wsa881x->bg_cnt = 0;
  1092. wsa881x->clk_cnt = 0;
  1093. wsa881x->tz_pdata.component = component;
  1094. wsa881x->tz_pdata.wsa_temp_reg_read = wsa881x_temp_reg_read;
  1095. wsa881x_init_thermal(&wsa881x->tz_pdata);
  1096. snd_soc_add_component_controls(component, wsa_snd_controls,
  1097. ARRAY_SIZE(wsa_snd_controls));
  1098. INIT_DELAYED_WORK(&wsa881x->ocp_ctl_work, wsa881x_ocp_ctl_work);
  1099. return 0;
  1100. }
  1101. static void wsa881x_remove(struct snd_soc_component *component)
  1102. {
  1103. struct wsa881x_priv *wsa881x = snd_soc_component_get_drvdata(component);
  1104. if (wsa881x->tz_pdata.tz_dev)
  1105. wsa881x_deinit_thermal(wsa881x->tz_pdata.tz_dev);
  1106. mutex_destroy(&wsa881x->bg_lock);
  1107. return;
  1108. }
  1109. static const struct snd_soc_component_driver soc_codec_dev_wsa881x = {
  1110. .name = DRV_NAME,
  1111. .probe = wsa881x_probe,
  1112. .remove = wsa881x_remove,
  1113. .controls = wsa881x_snd_controls,
  1114. .num_controls = ARRAY_SIZE(wsa881x_snd_controls),
  1115. .dapm_widgets = wsa881x_dapm_widgets,
  1116. .num_dapm_widgets = ARRAY_SIZE(wsa881x_dapm_widgets),
  1117. .dapm_routes = wsa881x_audio_map,
  1118. .num_dapm_routes = ARRAY_SIZE(wsa881x_audio_map),
  1119. };
  1120. static int wsa881x_gpio_ctrl(struct wsa881x_priv *wsa881x, bool enable)
  1121. {
  1122. int ret = 0;
  1123. if (wsa881x->pd_gpio < 0) {
  1124. dev_err(wsa881x->dev, "%s: gpio is not valid %d\n",
  1125. __func__, wsa881x->pd_gpio);
  1126. return -EINVAL;
  1127. }
  1128. if (wsa881x->wsa_rst_np) {
  1129. if (enable)
  1130. ret = msm_cdc_pinctrl_select_active_state(
  1131. wsa881x->wsa_rst_np);
  1132. else
  1133. ret = msm_cdc_pinctrl_select_sleep_state(
  1134. wsa881x->wsa_rst_np);
  1135. if (ret != 0)
  1136. dev_err(wsa881x->dev,
  1137. "%s: Failed to turn state %d; ret=%d\n",
  1138. __func__, enable, ret);
  1139. } else {
  1140. if (gpio_is_valid(wsa881x->pd_gpio))
  1141. gpio_direction_output(wsa881x->pd_gpio, enable);
  1142. }
  1143. return ret;
  1144. }
  1145. static int wsa881x_gpio_init(struct swr_device *pdev)
  1146. {
  1147. int ret = 0;
  1148. struct wsa881x_priv *wsa881x;
  1149. wsa881x = swr_get_dev_data(pdev);
  1150. if (!wsa881x) {
  1151. dev_err(&pdev->dev, "%s: wsa881x is NULL\n", __func__);
  1152. return -EINVAL;
  1153. }
  1154. dev_dbg(&pdev->dev, "%s: gpio %d request with name %s\n",
  1155. __func__, wsa881x->pd_gpio, dev_name(&pdev->dev));
  1156. ret = gpio_request(wsa881x->pd_gpio, dev_name(&pdev->dev));
  1157. if (ret) {
  1158. if (ret == -EBUSY) {
  1159. /* GPIO was already requested */
  1160. dev_dbg(&pdev->dev,
  1161. "%s: gpio %d is already set to high\n",
  1162. __func__, wsa881x->pd_gpio);
  1163. ret = 0;
  1164. } else {
  1165. dev_err(&pdev->dev, "%s: Failed to request gpio %d, err: %d\n",
  1166. __func__, wsa881x->pd_gpio, ret);
  1167. }
  1168. }
  1169. return ret;
  1170. }
  1171. static int wsa881x_swr_probe(struct swr_device *pdev)
  1172. {
  1173. int ret = 0;
  1174. struct wsa881x_priv *wsa881x;
  1175. u8 devnum = 0;
  1176. bool pin_state_current = false;
  1177. wsa881x = devm_kzalloc(&pdev->dev, sizeof(struct wsa881x_priv),
  1178. GFP_KERNEL);
  1179. if (!wsa881x)
  1180. return -ENOMEM;
  1181. wsa881x->wsa_rst_np = of_parse_phandle(pdev->dev.of_node,
  1182. "qcom,spkr-sd-n-node", 0);
  1183. if (!wsa881x->wsa_rst_np) {
  1184. dev_dbg(&pdev->dev, "%s: Not using pinctrl, fallback to gpio\n",
  1185. __func__);
  1186. wsa881x->pd_gpio = of_get_named_gpio(pdev->dev.of_node,
  1187. "qcom,spkr-sd-n-gpio", 0);
  1188. if (wsa881x->pd_gpio < 0) {
  1189. dev_err(&pdev->dev, "%s: %s property is not found %d\n",
  1190. __func__, "qcom,spkr-sd-n-gpio",
  1191. wsa881x->pd_gpio);
  1192. goto err;
  1193. }
  1194. dev_dbg(&pdev->dev, "%s: reset gpio %d\n", __func__,
  1195. wsa881x->pd_gpio);
  1196. }
  1197. swr_set_dev_data(pdev, wsa881x);
  1198. wsa881x->swr_slave = pdev;
  1199. if (!wsa881x->wsa_rst_np) {
  1200. ret = wsa881x_gpio_init(pdev);
  1201. if (ret)
  1202. goto err;
  1203. }
  1204. if (wsa881x->wsa_rst_np)
  1205. pin_state_current = msm_cdc_pinctrl_get_state(
  1206. wsa881x->wsa_rst_np);
  1207. wsa881x_gpio_ctrl(wsa881x, true);
  1208. wsa881x->state = WSA881X_DEV_UP;
  1209. if (!debugfs_wsa881x_dent) {
  1210. dbgwsa881x = wsa881x;
  1211. debugfs_wsa881x_dent = debugfs_create_dir(
  1212. "wsa881x_swr_slave", 0);
  1213. if (!IS_ERR(debugfs_wsa881x_dent)) {
  1214. debugfs_peek = debugfs_create_file("swrslave_peek",
  1215. S_IFREG | 0444, debugfs_wsa881x_dent,
  1216. (void *) "swrslave_peek",
  1217. &codec_debug_ops);
  1218. debugfs_poke = debugfs_create_file("swrslave_poke",
  1219. S_IFREG | 0444, debugfs_wsa881x_dent,
  1220. (void *) "swrslave_poke",
  1221. &codec_debug_ops);
  1222. debugfs_reg_dump = debugfs_create_file(
  1223. "swrslave_reg_dump",
  1224. S_IFREG | 0444,
  1225. debugfs_wsa881x_dent,
  1226. (void *) "swrslave_reg_dump",
  1227. &codec_debug_ops);
  1228. }
  1229. }
  1230. /*
  1231. * Add 5msec delay to provide sufficient time for
  1232. * soundwire auto enumeration of slave devices as
  1233. * as per HW requirement.
  1234. */
  1235. usleep_range(5000, 5010);
  1236. ret = swr_get_logical_dev_num(pdev, pdev->addr, &devnum);
  1237. if (ret) {
  1238. dev_dbg(&pdev->dev,
  1239. "%s get devnum %d for dev addr %lx failed\n",
  1240. __func__, devnum, pdev->addr);
  1241. goto dev_err;
  1242. }
  1243. pdev->dev_num = devnum;
  1244. wsa881x->regmap = devm_regmap_init_swr(pdev,
  1245. &wsa881x_regmap_config);
  1246. if (IS_ERR(wsa881x->regmap)) {
  1247. ret = PTR_ERR(wsa881x->regmap);
  1248. dev_err(&pdev->dev, "%s: regmap_init failed %d\n",
  1249. __func__, ret);
  1250. goto dev_err;
  1251. }
  1252. ret = snd_soc_register_component(&pdev->dev, &soc_codec_dev_wsa881x,
  1253. NULL, 0);
  1254. if (ret) {
  1255. dev_err(&pdev->dev, "%s: Codec registration failed\n",
  1256. __func__);
  1257. goto dev_err;
  1258. }
  1259. mutex_init(&wsa881x->res_lock);
  1260. mutex_init(&wsa881x->temp_lock);
  1261. return 0;
  1262. dev_err:
  1263. if (pin_state_current == false)
  1264. wsa881x_gpio_ctrl(wsa881x, false);
  1265. swr_remove_device(pdev);
  1266. err:
  1267. return ret;
  1268. }
  1269. static int wsa881x_swr_remove(struct swr_device *pdev)
  1270. {
  1271. struct wsa881x_priv *wsa881x;
  1272. wsa881x = swr_get_dev_data(pdev);
  1273. if (!wsa881x) {
  1274. dev_err(&pdev->dev, "%s: wsa881x is NULL\n", __func__);
  1275. return -EINVAL;
  1276. }
  1277. debugfs_remove_recursive(debugfs_wsa881x_dent);
  1278. debugfs_wsa881x_dent = NULL;
  1279. mutex_destroy(&wsa881x->res_lock);
  1280. mutex_destroy(&wsa881x->temp_lock);
  1281. snd_soc_unregister_component(&pdev->dev);
  1282. if (wsa881x->pd_gpio)
  1283. gpio_free(wsa881x->pd_gpio);
  1284. swr_set_dev_data(pdev, NULL);
  1285. return 0;
  1286. }
  1287. static int wsa881x_swr_up(struct swr_device *pdev)
  1288. {
  1289. int ret;
  1290. struct wsa881x_priv *wsa881x;
  1291. wsa881x = swr_get_dev_data(pdev);
  1292. if (!wsa881x) {
  1293. dev_err(&pdev->dev, "%s: wsa881x is NULL\n", __func__);
  1294. return -EINVAL;
  1295. }
  1296. ret = wsa881x_gpio_ctrl(wsa881x, true);
  1297. if (ret)
  1298. dev_err(&pdev->dev, "%s: Failed to enable gpio\n", __func__);
  1299. else
  1300. wsa881x->state = WSA881X_DEV_UP;
  1301. return ret;
  1302. }
  1303. static int wsa881x_swr_down(struct swr_device *pdev)
  1304. {
  1305. struct wsa881x_priv *wsa881x;
  1306. int ret;
  1307. wsa881x = swr_get_dev_data(pdev);
  1308. if (!wsa881x) {
  1309. dev_err(&pdev->dev, "%s: wsa881x is NULL\n", __func__);
  1310. return -EINVAL;
  1311. }
  1312. if (delayed_work_pending(&wsa881x->ocp_ctl_work))
  1313. cancel_delayed_work_sync(&wsa881x->ocp_ctl_work);
  1314. ret = wsa881x_gpio_ctrl(wsa881x, false);
  1315. if (ret)
  1316. dev_err(&pdev->dev, "%s: Failed to disable gpio\n", __func__);
  1317. else
  1318. wsa881x->state = WSA881X_DEV_DOWN;
  1319. return ret;
  1320. }
  1321. static int wsa881x_swr_reset(struct swr_device *pdev)
  1322. {
  1323. struct wsa881x_priv *wsa881x;
  1324. u8 retry = WSA881X_NUM_RETRY;
  1325. u8 devnum = 0;
  1326. wsa881x = swr_get_dev_data(pdev);
  1327. if (!wsa881x) {
  1328. dev_err(&pdev->dev, "%s: wsa881x is NULL\n", __func__);
  1329. return -EINVAL;
  1330. }
  1331. if (wsa881x->state == WSA881X_DEV_READY) {
  1332. dev_dbg(&pdev->dev, "%s: device already active\n", __func__);
  1333. return 0;
  1334. }
  1335. wsa881x->bg_cnt = 0;
  1336. wsa881x->clk_cnt = 0;
  1337. while (swr_get_logical_dev_num(pdev, pdev->addr, &devnum) && retry--) {
  1338. /* Retry after 1 msec delay */
  1339. usleep_range(1000, 1100);
  1340. }
  1341. pdev->dev_num = devnum;
  1342. wsa881x_regcache_sync(wsa881x);
  1343. return 0;
  1344. }
  1345. #ifdef CONFIG_PM_SLEEP
  1346. static int wsa881x_swr_suspend(struct device *dev)
  1347. {
  1348. dev_dbg(dev, "%s: system suspend\n", __func__);
  1349. return 0;
  1350. }
  1351. static int wsa881x_swr_resume(struct device *dev)
  1352. {
  1353. struct wsa881x_priv *wsa881x = swr_get_dev_data(to_swr_device(dev));
  1354. if (!wsa881x) {
  1355. dev_err(dev, "%s: wsa881x private data is NULL\n", __func__);
  1356. return -EINVAL;
  1357. }
  1358. dev_dbg(dev, "%s: system resume\n", __func__);
  1359. return 0;
  1360. }
  1361. #endif /* CONFIG_PM_SLEEP */
  1362. static const struct dev_pm_ops wsa881x_swr_pm_ops = {
  1363. SET_SYSTEM_SLEEP_PM_OPS(wsa881x_swr_suspend, wsa881x_swr_resume)
  1364. };
  1365. static const struct swr_device_id wsa881x_swr_id[] = {
  1366. {"wsa881x", 0},
  1367. {}
  1368. };
  1369. static const struct of_device_id wsa881x_swr_dt_match[] = {
  1370. {
  1371. .compatible = "qcom,wsa881x",
  1372. },
  1373. {}
  1374. };
  1375. static struct swr_driver wsa881x_codec_driver = {
  1376. .driver = {
  1377. .name = "wsa881x",
  1378. .owner = THIS_MODULE,
  1379. .pm = &wsa881x_swr_pm_ops,
  1380. .of_match_table = wsa881x_swr_dt_match,
  1381. },
  1382. .probe = wsa881x_swr_probe,
  1383. .remove = wsa881x_swr_remove,
  1384. .id_table = wsa881x_swr_id,
  1385. .device_up = wsa881x_swr_up,
  1386. .device_down = wsa881x_swr_down,
  1387. .reset_device = wsa881x_swr_reset,
  1388. };
  1389. static int __init wsa881x_codec_init(void)
  1390. {
  1391. return swr_driver_register(&wsa881x_codec_driver);
  1392. }
  1393. static void __exit wsa881x_codec_exit(void)
  1394. {
  1395. swr_driver_unregister(&wsa881x_codec_driver);
  1396. }
  1397. module_init(wsa881x_codec_init);
  1398. module_exit(wsa881x_codec_exit);
  1399. MODULE_DESCRIPTION("WSA881x Codec driver");
  1400. MODULE_LICENSE("GPL v2");