wsa881x-temp-sensor.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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: temperature register read failed: %d\n",
  79. __func__, ret);
  80. return ret;
  81. }
  82. } else {
  83. pr_err("%s: wsa_temp_reg_read is NULL\n", __func__);
  84. return -EINVAL;
  85. }
  86. /*
  87. * Temperature register values are expected to be in the
  88. * following range.
  89. * d1_msb = 68 - 92 and d1_lsb = 0, 64, 128, 192
  90. * d2_msb = 185 -218 and d2_lsb = 0, 64, 128, 192
  91. */
  92. if ((reg.d1_msb < 68 || reg.d1_msb > 92) ||
  93. (!(reg.d1_lsb == 0 || reg.d1_lsb == 64 || reg.d1_lsb == 128 ||
  94. reg.d1_lsb == 192)) ||
  95. (reg.d2_msb < 185 || reg.d2_msb > 218) ||
  96. (!(reg.d2_lsb == 0 || reg.d2_lsb == 64 || reg.d2_lsb == 128 ||
  97. reg.d2_lsb == 192))) {
  98. printk_ratelimited("%s: Temperature registers[%d %d %d %d] are out of range\n",
  99. __func__, reg.d1_msb, reg.d1_lsb, reg.d2_msb,
  100. reg.d2_lsb);
  101. }
  102. dmeas = ((reg.dmeas_msb << 0x8) | reg.dmeas_lsb) >> 0x6;
  103. d1 = ((reg.d1_msb << 0x8) | reg.d1_lsb) >> 0x6;
  104. d2 = ((reg.d2_msb << 0x8) | reg.d2_lsb) >> 0x6;
  105. if (d1 == d2)
  106. temp_val = TEMP_INVALID;
  107. else
  108. temp_val = t1 + (((dmeas - d1) * (t2 - t1))/(d2 - d1));
  109. if (temp_val <= LOW_TEMP_THRESHOLD ||
  110. temp_val >= HIGH_TEMP_THRESHOLD) {
  111. printk_ratelimited("%s: T0: %d is out of range[%d, %d]\n",
  112. __func__, temp_val, LOW_TEMP_THRESHOLD,
  113. HIGH_TEMP_THRESHOLD);
  114. if (retry--) {
  115. msleep(20);
  116. goto temp_retry;
  117. }
  118. }
  119. pdata->curr_temp = temp_val;
  120. if (temp)
  121. *temp = temp_val;
  122. pr_debug("%s: t0 measured: %d dmeas = %d, d1 = %d, d2 = %d\n",
  123. __func__, temp_val, dmeas, d1, d2);
  124. return ret;
  125. }
  126. EXPORT_SYMBOL(wsa881x_get_temp);
  127. static struct thermal_zone_device_ops wsa881x_thermal_ops = {
  128. .get_temp = wsa881x_get_temp,
  129. };
  130. static int wsa881x_pm_notify(struct notifier_block *nb,
  131. unsigned long mode, void *_unused)
  132. {
  133. struct wsa881x_tz_priv *pdata =
  134. container_of(nb, struct wsa881x_tz_priv, pm_nb);
  135. switch (mode) {
  136. case PM_SUSPEND_PREPARE:
  137. atomic_set(&pdata->is_suspend_spk, 1);
  138. break;
  139. default:
  140. break;
  141. }
  142. return 0;
  143. }
  144. int wsa881x_init_thermal(struct wsa881x_tz_priv *tz_pdata)
  145. {
  146. struct thermal_zone_device *tz_dev;
  147. if (tz_pdata == NULL) {
  148. pr_err("%s: thermal pdata is NULL\n", __func__);
  149. return -EINVAL;
  150. }
  151. /* Register with the thermal zone */
  152. tz_dev = thermal_zone_device_register(tz_pdata->name,
  153. 0, 0, tz_pdata,
  154. &wsa881x_thermal_ops, NULL, 0, 0);
  155. if (IS_ERR(tz_dev)) {
  156. pr_err("%s: thermal device register failed.\n", __func__);
  157. return -EINVAL;
  158. }
  159. tz_pdata->tz_dev = tz_dev;
  160. tz_pdata->pm_nb.notifier_call = wsa881x_pm_notify;
  161. register_pm_notifier(&tz_pdata->pm_nb);
  162. atomic_set(&tz_pdata->is_suspend_spk, 0);
  163. return 0;
  164. }
  165. EXPORT_SYMBOL(wsa881x_init_thermal);
  166. void wsa881x_deinit_thermal(struct thermal_zone_device *tz_dev)
  167. {
  168. struct wsa881x_tz_priv *pdata;
  169. if (tz_dev && tz_dev->devdata) {
  170. pdata = tz_dev->devdata;
  171. if (pdata)
  172. unregister_pm_notifier(&pdata->pm_nb);
  173. }
  174. if (tz_dev)
  175. thermal_zone_device_unregister(tz_dev);
  176. }
  177. EXPORT_SYMBOL(wsa881x_deinit_thermal);