wcd-clsh.c 17 KB

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