intel_soc_dts_iosf.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. /*
  2. * intel_soc_dts_iosf.c
  3. * Copyright (c) 2015, Intel Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. */
  15. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  16. #include <linux/module.h>
  17. #include <linux/slab.h>
  18. #include <linux/interrupt.h>
  19. #include <asm/iosf_mbi.h>
  20. #include "intel_soc_dts_iosf.h"
  21. #define SOC_DTS_OFFSET_ENABLE 0xB0
  22. #define SOC_DTS_OFFSET_TEMP 0xB1
  23. #define SOC_DTS_OFFSET_PTPS 0xB2
  24. #define SOC_DTS_OFFSET_PTTS 0xB3
  25. #define SOC_DTS_OFFSET_PTTSS 0xB4
  26. #define SOC_DTS_OFFSET_PTMC 0x80
  27. #define SOC_DTS_TE_AUX0 0xB5
  28. #define SOC_DTS_TE_AUX1 0xB6
  29. #define SOC_DTS_AUX0_ENABLE_BIT BIT(0)
  30. #define SOC_DTS_AUX1_ENABLE_BIT BIT(1)
  31. #define SOC_DTS_CPU_MODULE0_ENABLE_BIT BIT(16)
  32. #define SOC_DTS_CPU_MODULE1_ENABLE_BIT BIT(17)
  33. #define SOC_DTS_TE_SCI_ENABLE BIT(9)
  34. #define SOC_DTS_TE_SMI_ENABLE BIT(10)
  35. #define SOC_DTS_TE_MSI_ENABLE BIT(11)
  36. #define SOC_DTS_TE_APICA_ENABLE BIT(14)
  37. #define SOC_DTS_PTMC_APIC_DEASSERT_BIT BIT(4)
  38. /* DTS encoding for TJ MAX temperature */
  39. #define SOC_DTS_TJMAX_ENCODING 0x7F
  40. /* Only 2 out of 4 is allowed for OSPM */
  41. #define SOC_MAX_DTS_TRIPS 2
  42. /* Mask for two trips in status bits */
  43. #define SOC_DTS_TRIP_MASK 0x03
  44. /* DTS0 and DTS 1 */
  45. #define SOC_MAX_DTS_SENSORS 2
  46. static int get_tj_max(u32 *tj_max)
  47. {
  48. u32 eax, edx;
  49. u32 val;
  50. int err;
  51. err = rdmsr_safe(MSR_IA32_TEMPERATURE_TARGET, &eax, &edx);
  52. if (err)
  53. goto err_ret;
  54. else {
  55. val = (eax >> 16) & 0xff;
  56. if (val)
  57. *tj_max = val * 1000;
  58. else {
  59. err = -EINVAL;
  60. goto err_ret;
  61. }
  62. }
  63. return 0;
  64. err_ret:
  65. *tj_max = 0;
  66. return err;
  67. }
  68. static int sys_get_trip_temp(struct thermal_zone_device *tzd, int trip,
  69. int *temp)
  70. {
  71. int status;
  72. u32 out;
  73. struct intel_soc_dts_sensor_entry *dts;
  74. struct intel_soc_dts_sensors *sensors;
  75. dts = tzd->devdata;
  76. sensors = dts->sensors;
  77. mutex_lock(&sensors->dts_update_lock);
  78. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  79. SOC_DTS_OFFSET_PTPS, &out);
  80. mutex_unlock(&sensors->dts_update_lock);
  81. if (status)
  82. return status;
  83. out = (out >> (trip * 8)) & SOC_DTS_TJMAX_ENCODING;
  84. if (!out)
  85. *temp = 0;
  86. else
  87. *temp = sensors->tj_max - out * 1000;
  88. return 0;
  89. }
  90. static int update_trip_temp(struct intel_soc_dts_sensor_entry *dts,
  91. int thres_index, int temp,
  92. enum thermal_trip_type trip_type)
  93. {
  94. int status;
  95. u32 temp_out;
  96. u32 out;
  97. u32 store_ptps;
  98. u32 store_ptmc;
  99. u32 store_te_out;
  100. u32 te_out;
  101. u32 int_enable_bit = SOC_DTS_TE_APICA_ENABLE;
  102. struct intel_soc_dts_sensors *sensors = dts->sensors;
  103. if (sensors->intr_type == INTEL_SOC_DTS_INTERRUPT_MSI)
  104. int_enable_bit |= SOC_DTS_TE_MSI_ENABLE;
  105. temp_out = (sensors->tj_max - temp) / 1000;
  106. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  107. SOC_DTS_OFFSET_PTPS, &store_ptps);
  108. if (status)
  109. return status;
  110. out = (store_ptps & ~(0xFF << (thres_index * 8)));
  111. out |= (temp_out & 0xFF) << (thres_index * 8);
  112. status = iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  113. SOC_DTS_OFFSET_PTPS, out);
  114. if (status)
  115. return status;
  116. pr_debug("update_trip_temp PTPS = %x\n", out);
  117. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  118. SOC_DTS_OFFSET_PTMC, &out);
  119. if (status)
  120. goto err_restore_ptps;
  121. store_ptmc = out;
  122. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  123. SOC_DTS_TE_AUX0 + thres_index,
  124. &te_out);
  125. if (status)
  126. goto err_restore_ptmc;
  127. store_te_out = te_out;
  128. /* Enable for CPU module 0 and module 1 */
  129. out |= (SOC_DTS_CPU_MODULE0_ENABLE_BIT |
  130. SOC_DTS_CPU_MODULE1_ENABLE_BIT);
  131. if (temp) {
  132. if (thres_index)
  133. out |= SOC_DTS_AUX1_ENABLE_BIT;
  134. else
  135. out |= SOC_DTS_AUX0_ENABLE_BIT;
  136. te_out |= int_enable_bit;
  137. } else {
  138. if (thres_index)
  139. out &= ~SOC_DTS_AUX1_ENABLE_BIT;
  140. else
  141. out &= ~SOC_DTS_AUX0_ENABLE_BIT;
  142. te_out &= ~int_enable_bit;
  143. }
  144. status = iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  145. SOC_DTS_OFFSET_PTMC, out);
  146. if (status)
  147. goto err_restore_te_out;
  148. status = iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  149. SOC_DTS_TE_AUX0 + thres_index,
  150. te_out);
  151. if (status)
  152. goto err_restore_te_out;
  153. dts->trip_types[thres_index] = trip_type;
  154. return 0;
  155. err_restore_te_out:
  156. iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  157. SOC_DTS_OFFSET_PTMC, store_te_out);
  158. err_restore_ptmc:
  159. iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  160. SOC_DTS_OFFSET_PTMC, store_ptmc);
  161. err_restore_ptps:
  162. iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  163. SOC_DTS_OFFSET_PTPS, store_ptps);
  164. /* Nothing we can do if restore fails */
  165. return status;
  166. }
  167. static int sys_set_trip_temp(struct thermal_zone_device *tzd, int trip,
  168. int temp)
  169. {
  170. struct intel_soc_dts_sensor_entry *dts = tzd->devdata;
  171. struct intel_soc_dts_sensors *sensors = dts->sensors;
  172. int status;
  173. if (temp > sensors->tj_max)
  174. return -EINVAL;
  175. mutex_lock(&sensors->dts_update_lock);
  176. status = update_trip_temp(tzd->devdata, trip, temp,
  177. dts->trip_types[trip]);
  178. mutex_unlock(&sensors->dts_update_lock);
  179. return status;
  180. }
  181. static int sys_get_trip_type(struct thermal_zone_device *tzd,
  182. int trip, enum thermal_trip_type *type)
  183. {
  184. struct intel_soc_dts_sensor_entry *dts;
  185. dts = tzd->devdata;
  186. *type = dts->trip_types[trip];
  187. return 0;
  188. }
  189. static int sys_get_curr_temp(struct thermal_zone_device *tzd,
  190. int *temp)
  191. {
  192. int status;
  193. u32 out;
  194. struct intel_soc_dts_sensor_entry *dts;
  195. struct intel_soc_dts_sensors *sensors;
  196. dts = tzd->devdata;
  197. sensors = dts->sensors;
  198. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  199. SOC_DTS_OFFSET_TEMP, &out);
  200. if (status)
  201. return status;
  202. out = (out & dts->temp_mask) >> dts->temp_shift;
  203. out -= SOC_DTS_TJMAX_ENCODING;
  204. *temp = sensors->tj_max - out * 1000;
  205. return 0;
  206. }
  207. static struct thermal_zone_device_ops tzone_ops = {
  208. .get_temp = sys_get_curr_temp,
  209. .get_trip_temp = sys_get_trip_temp,
  210. .get_trip_type = sys_get_trip_type,
  211. .set_trip_temp = sys_set_trip_temp,
  212. };
  213. static int soc_dts_enable(int id)
  214. {
  215. u32 out;
  216. int ret;
  217. ret = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  218. SOC_DTS_OFFSET_ENABLE, &out);
  219. if (ret)
  220. return ret;
  221. if (!(out & BIT(id))) {
  222. out |= BIT(id);
  223. ret = iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  224. SOC_DTS_OFFSET_ENABLE, out);
  225. if (ret)
  226. return ret;
  227. }
  228. return ret;
  229. }
  230. static void remove_dts_thermal_zone(struct intel_soc_dts_sensor_entry *dts)
  231. {
  232. if (dts) {
  233. iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  234. SOC_DTS_OFFSET_ENABLE, dts->store_status);
  235. thermal_zone_device_unregister(dts->tzone);
  236. }
  237. }
  238. static int add_dts_thermal_zone(int id, struct intel_soc_dts_sensor_entry *dts,
  239. bool notification_support, int trip_cnt,
  240. int read_only_trip_cnt)
  241. {
  242. char name[10];
  243. int trip_count = 0;
  244. int trip_mask = 0;
  245. u32 store_ptps;
  246. int ret;
  247. int i;
  248. /* Store status to restor on exit */
  249. ret = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  250. SOC_DTS_OFFSET_ENABLE,
  251. &dts->store_status);
  252. if (ret)
  253. goto err_ret;
  254. dts->id = id;
  255. dts->temp_mask = 0x00FF << (id * 8);
  256. dts->temp_shift = id * 8;
  257. if (notification_support) {
  258. trip_count = min(SOC_MAX_DTS_TRIPS, trip_cnt);
  259. trip_mask = BIT(trip_count - read_only_trip_cnt) - 1;
  260. }
  261. /* Check if the writable trip we provide is not used by BIOS */
  262. ret = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  263. SOC_DTS_OFFSET_PTPS, &store_ptps);
  264. if (ret)
  265. trip_mask = 0;
  266. else {
  267. for (i = 0; i < trip_count; ++i) {
  268. if (trip_mask & BIT(i))
  269. if (store_ptps & (0xff << (i * 8)))
  270. trip_mask &= ~BIT(i);
  271. }
  272. }
  273. dts->trip_mask = trip_mask;
  274. dts->trip_count = trip_count;
  275. snprintf(name, sizeof(name), "soc_dts%d", id);
  276. dts->tzone = thermal_zone_device_register(name,
  277. trip_count,
  278. trip_mask,
  279. dts, &tzone_ops,
  280. NULL, 0, 0);
  281. if (IS_ERR(dts->tzone)) {
  282. ret = PTR_ERR(dts->tzone);
  283. goto err_ret;
  284. }
  285. ret = soc_dts_enable(id);
  286. if (ret)
  287. goto err_enable;
  288. return 0;
  289. err_enable:
  290. thermal_zone_device_unregister(dts->tzone);
  291. err_ret:
  292. return ret;
  293. }
  294. int intel_soc_dts_iosf_add_read_only_critical_trip(
  295. struct intel_soc_dts_sensors *sensors, int critical_offset)
  296. {
  297. int i, j;
  298. for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
  299. for (j = 0; j < sensors->soc_dts[i].trip_count; ++j) {
  300. if (!(sensors->soc_dts[i].trip_mask & BIT(j))) {
  301. return update_trip_temp(&sensors->soc_dts[i], j,
  302. sensors->tj_max - critical_offset,
  303. THERMAL_TRIP_CRITICAL);
  304. }
  305. }
  306. }
  307. return -EINVAL;
  308. }
  309. EXPORT_SYMBOL_GPL(intel_soc_dts_iosf_add_read_only_critical_trip);
  310. void intel_soc_dts_iosf_interrupt_handler(struct intel_soc_dts_sensors *sensors)
  311. {
  312. u32 sticky_out;
  313. int status;
  314. u32 ptmc_out;
  315. unsigned long flags;
  316. spin_lock_irqsave(&sensors->intr_notify_lock, flags);
  317. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  318. SOC_DTS_OFFSET_PTMC, &ptmc_out);
  319. ptmc_out |= SOC_DTS_PTMC_APIC_DEASSERT_BIT;
  320. status = iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  321. SOC_DTS_OFFSET_PTMC, ptmc_out);
  322. status = iosf_mbi_read(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_READ,
  323. SOC_DTS_OFFSET_PTTSS, &sticky_out);
  324. pr_debug("status %d PTTSS %x\n", status, sticky_out);
  325. if (sticky_out & SOC_DTS_TRIP_MASK) {
  326. int i;
  327. /* reset sticky bit */
  328. status = iosf_mbi_write(BT_MBI_UNIT_PMC, BT_MBI_BUNIT_WRITE,
  329. SOC_DTS_OFFSET_PTTSS, sticky_out);
  330. spin_unlock_irqrestore(&sensors->intr_notify_lock, flags);
  331. for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
  332. pr_debug("TZD update for zone %d\n", i);
  333. thermal_zone_device_update(sensors->soc_dts[i].tzone);
  334. }
  335. } else
  336. spin_unlock_irqrestore(&sensors->intr_notify_lock, flags);
  337. }
  338. EXPORT_SYMBOL_GPL(intel_soc_dts_iosf_interrupt_handler);
  339. struct intel_soc_dts_sensors *intel_soc_dts_iosf_init(
  340. enum intel_soc_dts_interrupt_type intr_type, int trip_count,
  341. int read_only_trip_count)
  342. {
  343. struct intel_soc_dts_sensors *sensors;
  344. bool notification;
  345. u32 tj_max;
  346. int ret;
  347. int i;
  348. if (!iosf_mbi_available())
  349. return ERR_PTR(-ENODEV);
  350. if (!trip_count || read_only_trip_count > trip_count)
  351. return ERR_PTR(-EINVAL);
  352. if (get_tj_max(&tj_max))
  353. return ERR_PTR(-EINVAL);
  354. sensors = kzalloc(sizeof(*sensors), GFP_KERNEL);
  355. if (!sensors)
  356. return ERR_PTR(-ENOMEM);
  357. spin_lock_init(&sensors->intr_notify_lock);
  358. mutex_init(&sensors->dts_update_lock);
  359. sensors->intr_type = intr_type;
  360. sensors->tj_max = tj_max;
  361. if (intr_type == INTEL_SOC_DTS_INTERRUPT_NONE)
  362. notification = false;
  363. else
  364. notification = true;
  365. for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
  366. sensors->soc_dts[i].sensors = sensors;
  367. ret = add_dts_thermal_zone(i, &sensors->soc_dts[i],
  368. notification, trip_count,
  369. read_only_trip_count);
  370. if (ret)
  371. goto err_free;
  372. }
  373. for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
  374. ret = update_trip_temp(&sensors->soc_dts[i], 0, 0,
  375. THERMAL_TRIP_PASSIVE);
  376. if (ret)
  377. goto err_remove_zone;
  378. ret = update_trip_temp(&sensors->soc_dts[i], 1, 0,
  379. THERMAL_TRIP_PASSIVE);
  380. if (ret)
  381. goto err_remove_zone;
  382. }
  383. return sensors;
  384. err_remove_zone:
  385. for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i)
  386. remove_dts_thermal_zone(&sensors->soc_dts[i]);
  387. err_free:
  388. kfree(sensors);
  389. return ERR_PTR(ret);
  390. }
  391. EXPORT_SYMBOL_GPL(intel_soc_dts_iosf_init);
  392. void intel_soc_dts_iosf_exit(struct intel_soc_dts_sensors *sensors)
  393. {
  394. int i;
  395. for (i = 0; i < SOC_MAX_DTS_SENSORS; ++i) {
  396. update_trip_temp(&sensors->soc_dts[i], 0, 0, 0);
  397. update_trip_temp(&sensors->soc_dts[i], 1, 0, 0);
  398. remove_dts_thermal_zone(&sensors->soc_dts[i]);
  399. }
  400. kfree(sensors);
  401. }
  402. EXPORT_SYMBOL_GPL(intel_soc_dts_iosf_exit);
  403. MODULE_LICENSE("GPL v2");