wsa881x-temp-sensor.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /* Copyright (c) 2015, 2017-2018 The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/bitops.h>
  13. #include <linux/kernel.h>
  14. #include <linux/suspend.h>
  15. #include <linux/errno.h>
  16. #include <linux/delay.h>
  17. #include <linux/thermal.h>
  18. #include <sound/soc.h>
  19. #include "wsa881x-temp-sensor.h"
  20. #define T1_TEMP -10
  21. #define T2_TEMP 150
  22. #define LOW_TEMP_THRESHOLD 5
  23. #define HIGH_TEMP_THRESHOLD 45
  24. #define TEMP_INVALID 0xFFFF
  25. #define WSA881X_TEMP_RETRY 3
  26. /*
  27. * wsa881x_get_temp - get wsa temperature
  28. * @thermal: thermal zone device
  29. * @temp: temperature value
  30. *
  31. * Get the temperature of wsa881x.
  32. *
  33. * Return: 0 on success or negative error code on failure.
  34. */
  35. int wsa881x_get_temp(struct thermal_zone_device *thermal,
  36. int *temp)
  37. {
  38. struct wsa881x_tz_priv *pdata;
  39. struct snd_soc_codec *codec;
  40. struct wsa_temp_register reg;
  41. int dmeas, d1, d2;
  42. int ret = 0;
  43. int temp_val;
  44. int t1 = T1_TEMP;
  45. int t2 = T2_TEMP;
  46. u8 retry = WSA881X_TEMP_RETRY;
  47. if (!thermal)
  48. return -EINVAL;
  49. if (thermal->devdata) {
  50. pdata = thermal->devdata;
  51. if (pdata->codec) {
  52. codec = pdata->codec;
  53. } else {
  54. pr_err("%s: codec is NULL\n", __func__);
  55. return -EINVAL;
  56. }
  57. } else {
  58. pr_err("%s: pdata is NULL\n", __func__);
  59. return -EINVAL;
  60. }
  61. if (atomic_cmpxchg(&pdata->is_suspend_spk, 1, 0)) {
  62. /*
  63. * get_temp query happens as part of POST_PM_SUSPEND
  64. * from thermal core. To avoid calls to slimbus
  65. * as part of this thermal query, return default temp
  66. * and reset the suspend flag.
  67. */
  68. if (!pdata->t0_init) {
  69. if (temp)
  70. *temp = pdata->curr_temp;
  71. return 0;
  72. }
  73. }
  74. temp_retry:
  75. if (pdata->wsa_temp_reg_read) {
  76. ret = pdata->wsa_temp_reg_read(codec, &reg);
  77. if (ret) {
  78. pr_err("%s: temp read failed: %d, current temp: %d\n",
  79. __func__, ret, pdata->curr_temp);
  80. if (temp)
  81. *temp = pdata->curr_temp;
  82. return 0;
  83. }
  84. } else {
  85. pr_err("%s: wsa_temp_reg_read is NULL\n", __func__);
  86. return -EINVAL;
  87. }
  88. /*
  89. * Temperature register values are expected to be in the
  90. * following range.
  91. * d1_msb = 68 - 92 and d1_lsb = 0, 64, 128, 192
  92. * d2_msb = 185 -218 and d2_lsb = 0, 64, 128, 192
  93. */
  94. if ((reg.d1_msb < 68 || reg.d1_msb > 92) ||
  95. (!(reg.d1_lsb == 0 || reg.d1_lsb == 64 || reg.d1_lsb == 128 ||
  96. reg.d1_lsb == 192)) ||
  97. (reg.d2_msb < 185 || reg.d2_msb > 218) ||
  98. (!(reg.d2_lsb == 0 || reg.d2_lsb == 64 || reg.d2_lsb == 128 ||
  99. reg.d2_lsb == 192))) {
  100. printk_ratelimited("%s: Temperature registers[%d %d %d %d] are out of range\n",
  101. __func__, reg.d1_msb, reg.d1_lsb, reg.d2_msb,
  102. reg.d2_lsb);
  103. }
  104. dmeas = ((reg.dmeas_msb << 0x8) | reg.dmeas_lsb) >> 0x6;
  105. d1 = ((reg.d1_msb << 0x8) | reg.d1_lsb) >> 0x6;
  106. d2 = ((reg.d2_msb << 0x8) | reg.d2_lsb) >> 0x6;
  107. if (d1 == d2)
  108. temp_val = TEMP_INVALID;
  109. else
  110. temp_val = t1 + (((dmeas - d1) * (t2 - t1))/(d2 - d1));
  111. if (temp_val <= LOW_TEMP_THRESHOLD ||
  112. temp_val >= HIGH_TEMP_THRESHOLD) {
  113. printk_ratelimited("%s: T0: %d is out of range[%d, %d]\n",
  114. __func__, temp_val, LOW_TEMP_THRESHOLD,
  115. HIGH_TEMP_THRESHOLD);
  116. if (retry--) {
  117. msleep(20);
  118. goto temp_retry;
  119. }
  120. }
  121. pdata->curr_temp = temp_val;
  122. if (temp)
  123. *temp = temp_val;
  124. pr_debug("%s: t0 measured: %d dmeas = %d, d1 = %d, d2 = %d\n",
  125. __func__, temp_val, dmeas, d1, d2);
  126. return ret;
  127. }
  128. EXPORT_SYMBOL(wsa881x_get_temp);
  129. static struct thermal_zone_device_ops wsa881x_thermal_ops = {
  130. .get_temp = wsa881x_get_temp,
  131. };
  132. static int wsa881x_pm_notify(struct notifier_block *nb,
  133. unsigned long mode, void *_unused)
  134. {
  135. struct wsa881x_tz_priv *pdata =
  136. container_of(nb, struct wsa881x_tz_priv, pm_nb);
  137. switch (mode) {
  138. case PM_SUSPEND_PREPARE:
  139. atomic_set(&pdata->is_suspend_spk, 1);
  140. break;
  141. default:
  142. break;
  143. }
  144. return 0;
  145. }
  146. int wsa881x_init_thermal(struct wsa881x_tz_priv *tz_pdata)
  147. {
  148. struct thermal_zone_device *tz_dev;
  149. if (tz_pdata == NULL) {
  150. pr_err("%s: thermal pdata is NULL\n", __func__);
  151. return -EINVAL;
  152. }
  153. /* Register with the thermal zone */
  154. tz_dev = thermal_zone_device_register(tz_pdata->name,
  155. 0, 0, tz_pdata,
  156. &wsa881x_thermal_ops, NULL, 0, 0);
  157. if (IS_ERR(tz_dev)) {
  158. pr_err("%s: thermal device register failed.\n", __func__);
  159. return -EINVAL;
  160. }
  161. tz_pdata->tz_dev = tz_dev;
  162. tz_pdata->pm_nb.notifier_call = wsa881x_pm_notify;
  163. register_pm_notifier(&tz_pdata->pm_nb);
  164. atomic_set(&tz_pdata->is_suspend_spk, 0);
  165. return 0;
  166. }
  167. EXPORT_SYMBOL(wsa881x_init_thermal);
  168. void wsa881x_deinit_thermal(struct thermal_zone_device *tz_dev)
  169. {
  170. struct wsa881x_tz_priv *pdata;
  171. if (tz_dev && tz_dev->devdata) {
  172. pdata = tz_dev->devdata;
  173. if (pdata)
  174. unregister_pm_notifier(&pdata->pm_nb);
  175. }
  176. if (tz_dev)
  177. thermal_zone_device_unregister(tz_dev);
  178. }
  179. EXPORT_SYMBOL(wsa881x_deinit_thermal);