wcd-clsh.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  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/slab.h>
  7. #include <sound/soc.h>
  8. #include <linux/kernel.h>
  9. #include <linux/delay.h>
  10. #include <asoc/wcd9xxx_registers.h>
  11. #include <asoc/wcd-clsh.h>
  12. #define WCD_USLEEP_RANGE 50
  13. static void (*clsh_state_fp[NUM_CLSH_STATES])(struct snd_soc_component *,
  14. struct wcd_clsh_cdc_info *,
  15. u8 req_state, bool en, int mode);
  16. static const char *mode_to_str(int mode)
  17. {
  18. switch (mode) {
  19. case CLS_H_NORMAL:
  20. return WCD_CLSH_STRINGIFY(CLS_H_NORMAL);
  21. case CLS_H_HIFI:
  22. return WCD_CLSH_STRINGIFY(CLS_H_HIFI);
  23. case CLS_H_LOHIFI:
  24. return WCD_CLSH_STRINGIFY(CLS_H_LOHIFI);
  25. case CLS_H_LP:
  26. return WCD_CLSH_STRINGIFY(CLS_H_LP);
  27. case CLS_H_ULP:
  28. return WCD_CLSH_STRINGIFY(CLS_H_ULP);
  29. case CLS_AB:
  30. return WCD_CLSH_STRINGIFY(CLS_AB);
  31. case CLS_AB_HIFI:
  32. return WCD_CLSH_STRINGIFY(CLS_AB_HIFI);
  33. case CLS_AB_LP:
  34. return WCD_CLSH_STRINGIFY(CLS_AB_LP);
  35. case CLS_AB_LOHIFI:
  36. return WCD_CLSH_STRINGIFY(CLS_AB_LOHIFI);
  37. default:
  38. return WCD_CLSH_STRINGIFY(CLS_H_INVALID);
  39. };
  40. }
  41. static const char *state_to_str(u8 state, char *buf, size_t buflen)
  42. {
  43. int i;
  44. int cnt = 0;
  45. /*
  46. * This array of strings should match with enum wcd_clsh_state_bit.
  47. */
  48. static const char *const states[] = {
  49. "STATE_EAR",
  50. "STATE_HPH_L",
  51. "STATE_HPH_R",
  52. "STATE_AUX",
  53. };
  54. if (state == WCD_CLSH_STATE_IDLE) {
  55. snprintf(buf, buflen, "[STATE_IDLE]");
  56. goto done;
  57. }
  58. buf[0] = '\0';
  59. for (i = 0; i < ARRAY_SIZE(states); i++) {
  60. if (!(state & (1 << i)))
  61. continue;
  62. cnt = snprintf(buf, buflen - cnt - 1, "%s%s%s", buf,
  63. buf[0] == '\0' ? "[" : "|",
  64. states[i]);
  65. }
  66. if (cnt > 0)
  67. strlcat(buf + cnt, "]", buflen);
  68. done:
  69. if (buf[0] == '\0')
  70. snprintf(buf, buflen, "[STATE_UNKNOWN]");
  71. return buf;
  72. }
  73. static inline int wcd_clsh_get_int_mode(struct wcd_clsh_cdc_info *clsh_d,
  74. int clsh_state)
  75. {
  76. int mode;
  77. if ((clsh_state != WCD_CLSH_STATE_EAR) &&
  78. (clsh_state != WCD_CLSH_STATE_HPHL) &&
  79. (clsh_state != WCD_CLSH_STATE_HPHR) &&
  80. (clsh_state != WCD_CLSH_STATE_AUX))
  81. mode = CLS_NONE;
  82. else
  83. mode = clsh_d->interpolator_modes[ffs(clsh_state)];
  84. return mode;
  85. }
  86. static inline void wcd_clsh_set_int_mode(struct wcd_clsh_cdc_info *clsh_d,
  87. int clsh_state, int mode)
  88. {
  89. if ((clsh_state != WCD_CLSH_STATE_EAR) &&
  90. (clsh_state != WCD_CLSH_STATE_HPHL) &&
  91. (clsh_state != WCD_CLSH_STATE_HPHR) &&
  92. (clsh_state != WCD_CLSH_STATE_AUX))
  93. return;
  94. clsh_d->interpolator_modes[ffs(clsh_state)] = mode;
  95. }
  96. static inline void wcd_clsh_set_buck_mode(struct snd_soc_component *component,
  97. int mode)
  98. {
  99. if (mode == CLS_H_HIFI || mode == CLS_H_LOHIFI ||
  100. mode == CLS_AB_HIFI || mode == CLS_AB_LOHIFI)
  101. snd_soc_component_update_bits(component,
  102. WCD9XXX_ANA_RX_SUPPLIES,
  103. 0x08, 0x08); /* set to HIFI */
  104. else
  105. snd_soc_component_update_bits(component,
  106. WCD9XXX_ANA_RX_SUPPLIES,
  107. 0x08, 0x00); /* set to default */
  108. }
  109. static inline void wcd_clsh_set_flyback_mode(
  110. struct snd_soc_component *component,
  111. int mode)
  112. {
  113. if (mode == CLS_H_HIFI || mode == CLS_H_LOHIFI ||
  114. mode == CLS_AB_HIFI || mode == CLS_AB_LOHIFI) {
  115. snd_soc_component_update_bits(component,
  116. WCD9XXX_ANA_RX_SUPPLIES,
  117. 0x04, 0x04);
  118. snd_soc_component_update_bits(component,
  119. WCD9XXX_FLYBACK_VNEG_CTRL_4,
  120. 0xF0, 0x80);
  121. } else {
  122. snd_soc_component_update_bits(component,
  123. WCD9XXX_ANA_RX_SUPPLIES,
  124. 0x04, 0x00); /* set to Default */
  125. snd_soc_component_update_bits(component,
  126. WCD9XXX_FLYBACK_VNEG_CTRL_4,
  127. 0xF0, 0x70);
  128. }
  129. }
  130. static inline void wcd_clsh_force_iq_ctl(struct snd_soc_component *component,
  131. int mode, bool enable)
  132. {
  133. if (enable) {
  134. snd_soc_component_update_bits(component,
  135. WCD9XXX_FLYBACK_VNEGDAC_CTRL_2,
  136. 0xE0, 0xA0);
  137. /* 100usec delay is needed as per HW requirement */
  138. usleep_range(100, 110);
  139. snd_soc_component_update_bits(component,
  140. WCD9XXX_CLASSH_MODE_3,
  141. 0x02, 0x02);
  142. snd_soc_component_update_bits(component,
  143. WCD9XXX_CLASSH_MODE_2,
  144. 0xFF, 0x1C);
  145. if (mode == CLS_H_LOHIFI || mode == CLS_AB_LOHIFI) {
  146. snd_soc_component_update_bits(component,
  147. WCD9XXX_HPH_NEW_INT_PA_MISC2,
  148. 0x20, 0x20);
  149. snd_soc_component_update_bits(component,
  150. WCD9XXX_RX_BIAS_HPH_LOWPOWER,
  151. 0xF0, 0xC0);
  152. snd_soc_component_update_bits(component,
  153. WCD9XXX_HPH_PA_CTL1,
  154. 0x0E, 0x02);
  155. }
  156. } else {
  157. snd_soc_component_update_bits(component,
  158. WCD9XXX_HPH_NEW_INT_PA_MISC2,
  159. 0x20, 0x00);
  160. snd_soc_component_update_bits(component,
  161. WCD9XXX_RX_BIAS_HPH_LOWPOWER,
  162. 0xF0, 0x80);
  163. snd_soc_component_update_bits(component,
  164. WCD9XXX_HPH_PA_CTL1,
  165. 0x0E, 0x06);
  166. }
  167. }
  168. static void wcd_clsh_buck_ctrl(struct snd_soc_component *component,
  169. struct wcd_clsh_cdc_info *clsh_d,
  170. int mode,
  171. bool enable)
  172. {
  173. /* enable/disable buck */
  174. if ((enable && (++clsh_d->buck_users == 1)) ||
  175. (!enable && (--clsh_d->buck_users == 0))) {
  176. snd_soc_component_update_bits(component,
  177. WCD9XXX_ANA_RX_SUPPLIES,
  178. (1 << 7), (enable << 7));
  179. /*
  180. * 500us sleep is required after buck enable/disable
  181. * as per HW requirement
  182. */
  183. usleep_range(500, 510);
  184. if (mode == CLS_H_LOHIFI || mode == CLS_H_ULP ||
  185. mode == CLS_H_HIFI || mode == CLS_H_LP)
  186. snd_soc_component_update_bits(component,
  187. WCD9XXX_CLASSH_MODE_3,
  188. 0x02, 0x00);
  189. snd_soc_component_update_bits(component,
  190. WCD9XXX_CLASSH_MODE_2,
  191. 0xFF, 0x3A);
  192. /* 500usec delay is needed as per HW requirement */
  193. usleep_range(500, 500 + WCD_USLEEP_RANGE);
  194. }
  195. dev_dbg(component->dev, "%s: buck_users %d, enable %d, mode: %s\n",
  196. __func__, clsh_d->buck_users, enable, mode_to_str(mode));
  197. }
  198. static void wcd_clsh_flyback_ctrl(struct snd_soc_component *component,
  199. struct wcd_clsh_cdc_info *clsh_d,
  200. int mode,
  201. bool enable)
  202. {
  203. /* enable/disable flyback */
  204. if ((enable && (++clsh_d->flyback_users == 1)) ||
  205. (!enable && (--clsh_d->flyback_users == 0))) {
  206. snd_soc_component_update_bits(component,
  207. WCD9XXX_FLYBACK_VNEG_CTRL_1,
  208. 0xE0, 0xE0);
  209. snd_soc_component_update_bits(component,
  210. WCD9XXX_ANA_RX_SUPPLIES,
  211. (1 << 6), (enable << 6));
  212. /*
  213. * 100us sleep is required after flyback enable/disable
  214. * as per HW requirement
  215. */
  216. usleep_range(100, 110);
  217. snd_soc_component_update_bits(component,
  218. WCD9XXX_FLYBACK_VNEGDAC_CTRL_2,
  219. 0xE0, 0xE0);
  220. /* 500usec delay is needed as per HW requirement */
  221. usleep_range(500, 500 + WCD_USLEEP_RANGE);
  222. }
  223. dev_dbg(component->dev, "%s: flyback_users %d, enable %d, mode: %s\n",
  224. __func__, clsh_d->flyback_users, enable, mode_to_str(mode));
  225. }
  226. static void wcd_clsh_set_hph_mode(struct snd_soc_component *component,
  227. int mode)
  228. {
  229. u8 val = 0;
  230. switch (mode) {
  231. case CLS_H_NORMAL:
  232. val = 0x00;
  233. break;
  234. case CLS_AB:
  235. case CLS_H_ULP:
  236. val = 0x0C;
  237. break;
  238. case CLS_AB_HIFI:
  239. case CLS_H_HIFI:
  240. val = 0x08;
  241. break;
  242. case CLS_H_LP:
  243. case CLS_H_LOHIFI:
  244. case CLS_AB_LP:
  245. case CLS_AB_LOHIFI:
  246. val = 0x04;
  247. break;
  248. default:
  249. dev_err(component->dev, "%s:Invalid mode %d\n", __func__, mode);
  250. return;
  251. };
  252. snd_soc_component_update_bits(component, WCD9XXX_ANA_HPH, 0x0C, val);
  253. }
  254. static void wcd_clsh_set_flyback_current(struct snd_soc_component *component,
  255. int mode)
  256. {
  257. snd_soc_component_update_bits(component, WCD9XXX_RX_BIAS_FLYB_BUFF,
  258. 0x0F, 0x0A);
  259. snd_soc_component_update_bits(component, WCD9XXX_RX_BIAS_FLYB_BUFF,
  260. 0xF0, 0xA0);
  261. /* Sleep needed to avoid click and pop as per HW requirement */
  262. usleep_range(100, 110);
  263. }
  264. static void wcd_clsh_set_buck_regulator_mode(
  265. struct snd_soc_component *component,
  266. int mode)
  267. {
  268. snd_soc_component_update_bits(component, WCD9XXX_ANA_RX_SUPPLIES,
  269. 0x02, 0x00);
  270. }
  271. static void wcd_clsh_state_ear_aux(struct snd_soc_component *component,
  272. struct wcd_clsh_cdc_info *clsh_d,
  273. u8 req_state, bool is_enable, int mode)
  274. {
  275. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  276. mode_to_str(mode), is_enable ? "enable" : "disable");
  277. }
  278. static void wcd_clsh_state_hph_aux(struct snd_soc_component *component,
  279. struct wcd_clsh_cdc_info *clsh_d,
  280. u8 req_state, bool is_enable, int mode)
  281. {
  282. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  283. mode_to_str(mode), is_enable ? "enable" : "disable");
  284. }
  285. static void wcd_clsh_state_hph_ear(struct snd_soc_component *component,
  286. struct wcd_clsh_cdc_info *clsh_d,
  287. u8 req_state, bool is_enable, int mode)
  288. {
  289. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  290. mode_to_str(mode), is_enable ? "enable" : "disable");
  291. }
  292. static void wcd_clsh_state_hph_st(struct snd_soc_component *component,
  293. struct wcd_clsh_cdc_info *clsh_d,
  294. u8 req_state, bool is_enable, int mode)
  295. {
  296. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  297. mode_to_str(mode), is_enable ? "enable" : "disable");
  298. }
  299. static void wcd_clsh_state_hph_r(struct snd_soc_component *component,
  300. struct wcd_clsh_cdc_info *clsh_d,
  301. u8 req_state, bool is_enable, int mode)
  302. {
  303. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  304. mode_to_str(mode), is_enable ? "enable" : "disable");
  305. if (mode == CLS_H_NORMAL) {
  306. dev_dbg(component->dev, "%s: Normal mode not applicable for hph_r\n",
  307. __func__);
  308. return;
  309. }
  310. if (is_enable) {
  311. wcd_clsh_set_buck_regulator_mode(component, mode);
  312. wcd_clsh_set_flyback_mode(component, mode);
  313. wcd_clsh_force_iq_ctl(component, mode, true);
  314. wcd_clsh_flyback_ctrl(component, clsh_d, mode, true);
  315. wcd_clsh_set_flyback_current(component, mode);
  316. wcd_clsh_set_buck_mode(component, mode);
  317. wcd_clsh_buck_ctrl(component, clsh_d, mode, true);
  318. wcd_clsh_set_hph_mode(component, mode);
  319. } else {
  320. wcd_clsh_set_hph_mode(component, CLS_H_NORMAL);
  321. /* buck and flyback set to default mode and disable */
  322. wcd_clsh_flyback_ctrl(component, clsh_d, CLS_H_NORMAL, false);
  323. wcd_clsh_buck_ctrl(component, clsh_d, CLS_H_NORMAL, false);
  324. wcd_clsh_force_iq_ctl(component, CLS_H_NORMAL, false);
  325. wcd_clsh_set_flyback_mode(component, CLS_H_NORMAL);
  326. wcd_clsh_set_buck_mode(component, CLS_H_NORMAL);
  327. }
  328. }
  329. static void wcd_clsh_state_hph_l(struct snd_soc_component *component,
  330. struct wcd_clsh_cdc_info *clsh_d,
  331. u8 req_state, bool is_enable, int mode)
  332. {
  333. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  334. mode_to_str(mode), is_enable ? "enable" : "disable");
  335. if (mode == CLS_H_NORMAL) {
  336. dev_dbg(component->dev, "%s: Normal mode not applicable for hph_l\n",
  337. __func__);
  338. return;
  339. }
  340. if (is_enable) {
  341. wcd_clsh_set_buck_regulator_mode(component, mode);
  342. wcd_clsh_set_flyback_mode(component, mode);
  343. wcd_clsh_force_iq_ctl(component, mode, true);
  344. wcd_clsh_flyback_ctrl(component, clsh_d, mode, true);
  345. wcd_clsh_set_flyback_current(component, mode);
  346. wcd_clsh_set_buck_mode(component, mode);
  347. wcd_clsh_buck_ctrl(component, clsh_d, mode, true);
  348. wcd_clsh_set_hph_mode(component, mode);
  349. } else {
  350. wcd_clsh_set_hph_mode(component, CLS_H_NORMAL);
  351. /* set buck and flyback to Default Mode */
  352. wcd_clsh_flyback_ctrl(component, clsh_d, CLS_H_NORMAL, false);
  353. wcd_clsh_buck_ctrl(component, clsh_d, CLS_H_NORMAL, false);
  354. wcd_clsh_force_iq_ctl(component, CLS_H_NORMAL, false);
  355. wcd_clsh_set_flyback_mode(component, CLS_H_NORMAL);
  356. wcd_clsh_set_buck_mode(component, CLS_H_NORMAL);
  357. }
  358. }
  359. static void wcd_clsh_state_aux(struct snd_soc_component *component,
  360. struct wcd_clsh_cdc_info *clsh_d,
  361. u8 req_state, bool is_enable, int mode)
  362. {
  363. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  364. mode_to_str(mode), is_enable ? "enable" : "disable");
  365. if (is_enable) {
  366. wcd_clsh_set_buck_mode(component, mode);
  367. wcd_clsh_set_flyback_mode(component, mode);
  368. wcd_clsh_flyback_ctrl(component, clsh_d, mode, true);
  369. wcd_clsh_set_flyback_current(component, mode);
  370. wcd_clsh_buck_ctrl(component, clsh_d, mode, true);
  371. } else {
  372. wcd_clsh_buck_ctrl(component, clsh_d, mode, false);
  373. wcd_clsh_flyback_ctrl(component, clsh_d, mode, false);
  374. wcd_clsh_set_flyback_mode(component, CLS_H_NORMAL);
  375. wcd_clsh_set_buck_mode(component, CLS_H_NORMAL);
  376. }
  377. }
  378. static void wcd_clsh_state_ear(struct snd_soc_component *component,
  379. struct wcd_clsh_cdc_info *clsh_d,
  380. u8 req_state, bool is_enable, int mode)
  381. {
  382. dev_dbg(component->dev, "%s: mode: %s, %s\n", __func__,
  383. mode_to_str(mode),
  384. is_enable ? "enable" : "disable");
  385. if (is_enable) {
  386. wcd_clsh_set_buck_regulator_mode(component, mode);
  387. wcd_clsh_set_flyback_mode(component, mode);
  388. wcd_clsh_force_iq_ctl(component, mode, true);
  389. wcd_clsh_flyback_ctrl(component, clsh_d, mode, true);
  390. wcd_clsh_set_flyback_current(component, mode);
  391. wcd_clsh_set_buck_mode(component, mode);
  392. wcd_clsh_buck_ctrl(component, clsh_d, mode, true);
  393. wcd_clsh_set_hph_mode(component, mode);
  394. } else {
  395. wcd_clsh_set_hph_mode(component, CLS_H_NORMAL);
  396. /* set buck and flyback to Default Mode */
  397. wcd_clsh_flyback_ctrl(component, clsh_d, CLS_H_NORMAL, false);
  398. wcd_clsh_buck_ctrl(component, clsh_d, CLS_H_NORMAL, false);
  399. wcd_clsh_force_iq_ctl(component, CLS_H_NORMAL, false);
  400. wcd_clsh_set_flyback_mode(component, CLS_H_NORMAL);
  401. wcd_clsh_set_buck_mode(component, CLS_H_NORMAL);
  402. }
  403. }
  404. static void wcd_clsh_state_err(struct snd_soc_component *component,
  405. struct wcd_clsh_cdc_info *clsh_d,
  406. u8 req_state, bool is_enable, int mode)
  407. {
  408. char msg[128];
  409. dev_err(component->dev,
  410. "%s Wrong request for class H state machine requested to %s %s\n",
  411. __func__, is_enable ? "enable" : "disable",
  412. state_to_str(req_state, msg, sizeof(msg)));
  413. }
  414. /*
  415. * Function: wcd_clsh_is_state_valid
  416. * Params: state
  417. * Description:
  418. * Provides information on valid states of Class H configuration
  419. */
  420. static bool wcd_clsh_is_state_valid(u8 state)
  421. {
  422. switch (state) {
  423. case WCD_CLSH_STATE_IDLE:
  424. case WCD_CLSH_STATE_EAR:
  425. case WCD_CLSH_STATE_HPHL:
  426. case WCD_CLSH_STATE_HPHR:
  427. case WCD_CLSH_STATE_HPH_ST:
  428. case WCD_CLSH_STATE_AUX:
  429. case WCD_CLSH_STATE_HPHL_AUX:
  430. case WCD_CLSH_STATE_HPHR_AUX:
  431. case WCD_CLSH_STATE_HPH_ST_AUX:
  432. case WCD_CLSH_STATE_EAR_AUX:
  433. return true;
  434. default:
  435. return false;
  436. };
  437. }
  438. /*
  439. * Function: wcd_cls_h_fsm
  440. * Params: component, cdc_clsh_d, req_state, req_type, clsh_event
  441. * Description:
  442. * This function handles PRE DAC and POST DAC conditions of different devices
  443. * and updates class H configuration of different combination of devices
  444. * based on validity of their states. cdc_clsh_d will contain current
  445. * class h state information
  446. */
  447. void wcd_cls_h_fsm(struct snd_soc_component *component,
  448. struct wcd_clsh_cdc_info *cdc_clsh_d,
  449. u8 clsh_event, u8 req_state,
  450. int int_mode)
  451. {
  452. u8 old_state, new_state;
  453. char msg0[128], msg1[128];
  454. switch (clsh_event) {
  455. case WCD_CLSH_EVENT_PRE_DAC:
  456. old_state = cdc_clsh_d->state;
  457. new_state = old_state | req_state;
  458. if (!wcd_clsh_is_state_valid(new_state)) {
  459. dev_err(component->dev,
  460. "%s: Class-H not a valid new state: %s\n",
  461. __func__,
  462. state_to_str(new_state, msg0, sizeof(msg0)));
  463. return;
  464. }
  465. if (new_state == old_state) {
  466. dev_err(component->dev,
  467. "%s: Class-H already in requested state: %s\n",
  468. __func__,
  469. state_to_str(new_state, msg0, sizeof(msg0)));
  470. return;
  471. }
  472. cdc_clsh_d->state = new_state;
  473. wcd_clsh_set_int_mode(cdc_clsh_d, req_state, int_mode);
  474. (*clsh_state_fp[new_state]) (component, cdc_clsh_d, req_state,
  475. CLSH_REQ_ENABLE, int_mode);
  476. dev_dbg(component->dev,
  477. "%s: ClassH state transition from %s to %s\n",
  478. __func__, state_to_str(old_state, msg0, sizeof(msg0)),
  479. state_to_str(cdc_clsh_d->state, msg1, sizeof(msg1)));
  480. break;
  481. case WCD_CLSH_EVENT_POST_PA:
  482. old_state = cdc_clsh_d->state;
  483. new_state = old_state & (~req_state);
  484. if (new_state < NUM_CLSH_STATES) {
  485. if (!wcd_clsh_is_state_valid(old_state)) {
  486. dev_err(component->dev,
  487. "%s:Invalid old state:%s\n",
  488. __func__,
  489. state_to_str(old_state, msg0,
  490. sizeof(msg0)));
  491. return;
  492. }
  493. if (new_state == old_state) {
  494. dev_err(component->dev,
  495. "%s: Class-H already in requested state: %s\n",
  496. __func__,
  497. state_to_str(new_state, msg0,
  498. sizeof(msg0)));
  499. return;
  500. }
  501. (*clsh_state_fp[old_state]) (component, cdc_clsh_d,
  502. req_state, CLSH_REQ_DISABLE,
  503. int_mode);
  504. cdc_clsh_d->state = new_state;
  505. wcd_clsh_set_int_mode(cdc_clsh_d, req_state, CLS_NONE);
  506. dev_dbg(component->dev, "%s: ClassH state transition from %s to %s\n",
  507. __func__, state_to_str(old_state, msg0,
  508. sizeof(msg0)),
  509. state_to_str(cdc_clsh_d->state, msg1,
  510. sizeof(msg1)));
  511. }
  512. break;
  513. };
  514. }
  515. EXPORT_SYMBOL(wcd_cls_h_fsm);
  516. /*
  517. * wcd_cls_h_init: Called to init clsh info
  518. *
  519. * @clsh: pointer for clsh state information.
  520. */
  521. void wcd_cls_h_init(struct wcd_clsh_cdc_info *clsh)
  522. {
  523. int i;
  524. clsh->state = WCD_CLSH_STATE_IDLE;
  525. for (i = 0; i < NUM_CLSH_STATES; i++)
  526. clsh_state_fp[i] = wcd_clsh_state_err;
  527. clsh_state_fp[WCD_CLSH_STATE_EAR] = wcd_clsh_state_ear;
  528. clsh_state_fp[WCD_CLSH_STATE_HPHL] = wcd_clsh_state_hph_l;
  529. clsh_state_fp[WCD_CLSH_STATE_HPHR] = wcd_clsh_state_hph_r;
  530. clsh_state_fp[WCD_CLSH_STATE_HPH_ST] = wcd_clsh_state_hph_st;
  531. clsh_state_fp[WCD_CLSH_STATE_AUX] = wcd_clsh_state_aux;
  532. clsh_state_fp[WCD_CLSH_STATE_HPHL_AUX] = wcd_clsh_state_hph_aux;
  533. clsh_state_fp[WCD_CLSH_STATE_HPHR_AUX] = wcd_clsh_state_hph_aux;
  534. clsh_state_fp[WCD_CLSH_STATE_HPH_ST_AUX] =
  535. wcd_clsh_state_hph_aux;
  536. clsh_state_fp[WCD_CLSH_STATE_EAR_AUX] = wcd_clsh_state_ear_aux;
  537. clsh_state_fp[WCD_CLSH_STATE_HPHL_EAR] = wcd_clsh_state_hph_ear;
  538. clsh_state_fp[WCD_CLSH_STATE_HPHR_EAR] = wcd_clsh_state_hph_ear;
  539. clsh_state_fp[WCD_CLSH_STATE_HPH_ST_EAR] = wcd_clsh_state_hph_ear;
  540. /* Set interpolaotr modes to NONE */
  541. wcd_clsh_set_int_mode(clsh, WCD_CLSH_STATE_EAR, CLS_NONE);
  542. wcd_clsh_set_int_mode(clsh, WCD_CLSH_STATE_HPHL, CLS_NONE);
  543. wcd_clsh_set_int_mode(clsh, WCD_CLSH_STATE_HPHR, CLS_NONE);
  544. wcd_clsh_set_int_mode(clsh, WCD_CLSH_STATE_AUX, CLS_NONE);
  545. clsh->flyback_users = 0;
  546. clsh->buck_users = 0;
  547. }
  548. EXPORT_SYMBOL(wcd_cls_h_init);
  549. MODULE_DESCRIPTION("WCD Class-H Driver");
  550. MODULE_LICENSE("GPL v2");