2 * Copyright (c) 2009-2010 Intel Corporation
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 * The full GNU General Public License is included in this distribution in
18 * the file called "COPYING".
25 * Some Intel Ibex Peak based platforms support so-called "intelligent
26 * power sharing", which allows the CPU and GPU to cooperate to maximize
27 * performance within a given TDP (thermal design point). This driver
28 * performs the coordination between the CPU and GPU, monitors thermal and
29 * power statistics in the platform, and initializes power monitoring
30 * hardware. It also provides a few tunables to control behavior. Its
31 * primary purpose is to safely allow CPU and GPU turbo modes to be enabled
32 * by tracking power and thermal budget; secondarily it can boost turbo
33 * performance by allocating more power or thermal budget to the CPU or GPU
34 * based on available headroom and activity.
36 * The basic algorithm is driven by a 5s moving average of temperature. If
37 * thermal headroom is available, the CPU and/or GPU power clamps may be
38 * adjusted upwards. If we hit the thermal ceiling or a thermal trigger,
39 * we scale back the clamp. Aside from trigger events (when we're critically
40 * close or over our TDP) we don't adjust the clamps more than once every
43 * The thermal device (device 31, function 6) has a set of registers that
44 * are updated by the ME firmware. The ME should also take the clamp values
45 * written to those registers and write them to the CPU, but we currently
46 * bypass that functionality and write the CPU MSR directly.
52 * - handle CPU hotplug
53 * - provide turbo enable/disable api
56 * - CDI 403777, 403778 - Auburndale EDS vol 1 & 2
57 * - CDI 401376 - Ibex Peak EDS
58 * - ref 26037, 26641 - IPS BIOS spec
59 * - ref 26489 - Nehalem BIOS writer's guide
60 * - ref 26921 - Ibex Peak BIOS Specification
63 #include <linux/debugfs.h>
64 #include <linux/delay.h>
65 #include <linux/interrupt.h>
66 #include <linux/kernel.h>
67 #include <linux/kthread.h>
68 #include <linux/module.h>
69 #include <linux/pci.h>
70 #include <linux/sched.h>
71 #include <linux/sched/loadavg.h>
72 #include <linux/seq_file.h>
73 #include <linux/string.h>
74 #include <linux/tick.h>
75 #include <linux/timer.h>
76 #include <linux/dmi.h>
77 #include <drm/i915_drm.h>
79 #include <asm/processor.h>
80 #include "intel_ips.h"
82 #include <linux/io-64-nonatomic-lo-hi.h>
84 #define PCI_DEVICE_ID_INTEL_THERMAL_SENSOR 0x3b32
87 * Package level MSRs for monitor/control
89 #define PLATFORM_INFO 0xce
90 #define PLATFORM_TDP (1<<29)
91 #define PLATFORM_RATIO (1<<28)
93 #define IA32_MISC_ENABLE 0x1a0
94 #define IA32_MISC_TURBO_EN (1ULL<<38)
96 #define TURBO_POWER_CURRENT_LIMIT 0x1ac
97 #define TURBO_TDC_OVR_EN (1UL<<31)
98 #define TURBO_TDC_MASK (0x000000007fff0000UL)
99 #define TURBO_TDC_SHIFT (16)
100 #define TURBO_TDP_OVR_EN (1UL<<15)
101 #define TURBO_TDP_MASK (0x0000000000003fffUL)
104 * Core/thread MSRs for monitoring
106 #define IA32_PERF_CTL 0x199
107 #define IA32_PERF_TURBO_DIS (1ULL<<32)
110 * Thermal PCI device regs
112 #define THM_CFG_TBAR 0x10
113 #define THM_CFG_TBAR_HI 0x14
115 #define THM_TSIU 0x00
119 #define THM_TSTR 0x03
120 #define THM_TSTTP 0x04
121 #define THM_TSCO 0x08
122 #define THM_TSES 0x0c
123 #define THM_TSGPEN 0x0d
124 #define TSGPEN_HOT_LOHI (1<<1)
125 #define TSGPEN_CRIT_LOHI (1<<2)
126 #define THM_TSPC 0x0e
127 #define THM_PPEC 0x10
130 #define PTA_SLOPE_MASK (0xff00)
131 #define PTA_SLOPE_SHIFT 8
132 #define PTA_OFFSET_MASK (0x00ff)
133 #define THM_MGTA 0x16
134 #define MGTA_SLOPE_MASK (0xff00)
135 #define MGTA_SLOPE_SHIFT 8
136 #define MGTA_OFFSET_MASK (0x00ff)
138 #define TRC_CORE2_EN (1<<15)
139 #define TRC_THM_EN (1<<12)
140 #define TRC_C6_WAR (1<<8)
141 #define TRC_CORE1_EN (1<<7)
142 #define TRC_CORE_PWR (1<<6)
143 #define TRC_PCH_EN (1<<5)
144 #define TRC_MCH_EN (1<<4)
145 #define TRC_DIMM4 (1<<3)
146 #define TRC_DIMM3 (1<<2)
147 #define TRC_DIMM2 (1<<1)
148 #define TRC_DIMM1 (1<<0)
151 #define TEN_UPDATE_EN 1
153 #define PSC_NTG (1<<0) /* No GFX turbo support */
154 #define PSC_NTPC (1<<1) /* No CPU turbo support */
155 #define PSC_PP_DEF (0<<2) /* Perf policy up to driver */
156 #define PSP_PP_PC (1<<2) /* BIOS prefers CPU perf */
157 #define PSP_PP_BAL (2<<2) /* BIOS wants balanced perf */
158 #define PSP_PP_GFX (3<<2) /* BIOS prefers GFX perf */
159 #define PSP_PBRT (1<<4) /* BIOS run time support */
160 #define THM_CTV1 0x30
161 #define CTV_TEMP_ERROR (1<<15)
162 #define CTV_TEMP_MASK 0x3f
164 #define THM_CTV2 0x32
165 #define THM_CEC 0x34 /* undocumented power accumulator in joules */
167 #define THM_HTS 0x50 /* 32 bits */
168 #define HTS_PCPL_MASK (0x7fe00000)
169 #define HTS_PCPL_SHIFT 21
170 #define HTS_GPL_MASK (0x001ff000)
171 #define HTS_GPL_SHIFT 12
172 #define HTS_PP_MASK (0x00000c00)
173 #define HTS_PP_SHIFT 10
175 #define HTS_PP_PROC 1
178 #define HTS_PCTD_DIS (1<<9)
179 #define HTS_GTD_DIS (1<<8)
180 #define HTS_PTL_MASK (0x000000fe)
181 #define HTS_PTL_SHIFT 1
182 #define HTS_NVV (1<<0)
183 #define THM_HTSHI 0x54 /* 16 bits */
184 #define HTS2_PPL_MASK (0x03ff)
185 #define HTS2_PRST_MASK (0x3c00)
186 #define HTS2_PRST_SHIFT 10
187 #define HTS2_PRST_UNLOADED 0
188 #define HTS2_PRST_RUNNING 1
189 #define HTS2_PRST_TDISOP 2 /* turbo disabled due to power */
190 #define HTS2_PRST_TDISHT 3 /* turbo disabled due to high temp */
191 #define HTS2_PRST_TDISUSR 4 /* user disabled turbo */
192 #define HTS2_PRST_TDISPLAT 5 /* platform disabled turbo */
193 #define HTS2_PRST_TDISPM 6 /* power management disabled turbo */
194 #define HTS2_PRST_TDISERR 7 /* some kind of error disabled turbo */
196 #define THM_MGTV 0x58
197 #define TV_MASK 0x000000000000ff00
200 #define PTV_MASK 0x00ff
201 #define THM_MMGPC 0x64
202 #define THM_MPPC 0x66
203 #define THM_MPCPC 0x68
204 #define THM_TSPIEN 0x82
205 #define TSPIEN_AUX_LOHI (1<<0)
206 #define TSPIEN_HOT_LOHI (1<<1)
207 #define TSPIEN_CRIT_LOHI (1<<2)
208 #define TSPIEN_AUX2_LOHI (1<<3)
209 #define THM_TSLOCK 0x83
213 #define STS_PCPL_MASK (0x7fe00000)
214 #define STS_PCPL_SHIFT 21
215 #define STS_GPL_MASK (0x001ff000)
216 #define STS_GPL_SHIFT 12
217 #define STS_PP_MASK (0x00000c00)
218 #define STS_PP_SHIFT 10
220 #define STS_PP_PROC 1
223 #define STS_PCTD_DIS (1<<9)
224 #define STS_GTD_DIS (1<<8)
225 #define STS_PTL_MASK (0x000000fe)
226 #define STS_PTL_SHIFT 1
227 #define STS_NVV (1<<0)
229 #define SEC_ACK (1<<0)
232 #define STS_PPL_MASK (0x0003ff00)
233 #define STS_PPL_SHIFT 16
237 #define ITV_ME_SEQNO_MASK 0x00ff0000 /* ME should update every ~200ms */
238 #define ITV_ME_SEQNO_SHIFT (16)
239 #define ITV_MCH_TEMP_MASK 0x0000ff00
240 #define ITV_MCH_TEMP_SHIFT (8)
241 #define ITV_PCH_TEMP_MASK 0x000000ff
243 #define thm_readb(off) readb(ips->regmap + (off))
244 #define thm_readw(off) readw(ips->regmap + (off))
245 #define thm_readl(off) readl(ips->regmap + (off))
246 #define thm_readq(off) readq(ips->regmap + (off))
248 #define thm_writeb(off, val) writeb((val), ips->regmap + (off))
249 #define thm_writew(off, val) writew((val), ips->regmap + (off))
250 #define thm_writel(off, val) writel((val), ips->regmap + (off))
252 static const int IPS_ADJUST_PERIOD = 5000; /* ms */
253 static bool late_i915_load = false;
255 /* For initial average collection */
256 static const int IPS_SAMPLE_PERIOD = 200; /* ms */
257 static const int IPS_SAMPLE_WINDOW = 5000; /* 5s moving window of samples */
258 #define IPS_SAMPLE_COUNT (IPS_SAMPLE_WINDOW / IPS_SAMPLE_PERIOD)
261 struct ips_mcp_limits {
263 int cpu_model; /* includes extended model... */
264 int mcp_power_limit; /* mW units */
265 int core_power_limit;
267 int core_temp_limit; /* degrees C */
271 /* Max temps are -10 degrees C to avoid PROCHOT# */
273 static struct ips_mcp_limits ips_sv_limits = {
274 .mcp_power_limit = 35000,
275 .core_power_limit = 29000,
276 .mch_power_limit = 20000,
277 .core_temp_limit = 95,
281 static struct ips_mcp_limits ips_lv_limits = {
282 .mcp_power_limit = 25000,
283 .core_power_limit = 21000,
284 .mch_power_limit = 13000,
285 .core_temp_limit = 95,
289 static struct ips_mcp_limits ips_ulv_limits = {
290 .mcp_power_limit = 18000,
291 .core_power_limit = 14000,
292 .mch_power_limit = 11000,
293 .core_temp_limit = 95,
300 struct task_struct *monitor;
301 struct task_struct *adjust;
302 struct dentry *debug_root;
304 /* Average CPU core temps (all averages in .01 degrees C for precision) */
309 /* Average for the CPU (both cores?) */
311 /* Average power consumption (in mW) */
320 /* Maximums & prefs, protected by turbo status lock */
321 spinlock_t turbo_status_lock;
324 u16 core_power_limit;
326 bool cpu_turbo_enabled;
328 bool gpu_turbo_enabled;
331 bool poll_turbo_status;
333 bool turbo_toggle_allowed;
334 struct ips_mcp_limits *limits;
336 /* Optional MCH interfaces for if i915 is in use */
337 unsigned long (*read_mch_val)(void);
338 bool (*gpu_raise)(void);
339 bool (*gpu_lower)(void);
340 bool (*gpu_busy)(void);
341 bool (*gpu_turbo_disable)(void);
343 /* For restoration at unload */
344 u64 orig_turbo_limit;
345 u64 orig_turbo_ratios;
349 ips_gpu_turbo_enabled(struct ips_driver *ips);
352 * ips_cpu_busy - is CPU busy?
353 * @ips: IPS driver struct
355 * Check CPU for load to see whether we should increase its thermal budget.
358 * True if the CPU could use more power, false otherwise.
360 static bool ips_cpu_busy(struct ips_driver *ips)
362 if ((avenrun[0] >> FSHIFT) > 1)
369 * ips_cpu_raise - raise CPU power clamp
370 * @ips: IPS driver struct
372 * Raise the CPU power clamp by %IPS_CPU_STEP, in accordance with TDP for
375 * We do this by adjusting the TURBO_POWER_CURRENT_LIMIT MSR upwards (as
376 * long as we haven't hit the TDP limit for the SKU).
378 static void ips_cpu_raise(struct ips_driver *ips)
381 u16 cur_tdp_limit, new_tdp_limit;
383 if (!ips->cpu_turbo_enabled)
386 rdmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
388 cur_tdp_limit = turbo_override & TURBO_TDP_MASK;
389 new_tdp_limit = cur_tdp_limit + 8; /* 1W increase */
391 /* Clamp to SKU TDP limit */
392 if (((new_tdp_limit * 10) / 8) > ips->core_power_limit)
393 new_tdp_limit = cur_tdp_limit;
395 thm_writew(THM_MPCPC, (new_tdp_limit * 10) / 8);
397 turbo_override |= TURBO_TDC_OVR_EN | TURBO_TDP_OVR_EN;
398 wrmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
400 turbo_override &= ~TURBO_TDP_MASK;
401 turbo_override |= new_tdp_limit;
403 wrmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
407 * ips_cpu_lower - lower CPU power clamp
408 * @ips: IPS driver struct
410 * Lower CPU power clamp b %IPS_CPU_STEP if possible.
412 * We do this by adjusting the TURBO_POWER_CURRENT_LIMIT MSR down, going
413 * as low as the platform limits will allow (though we could go lower there
414 * wouldn't be much point).
416 static void ips_cpu_lower(struct ips_driver *ips)
419 u16 cur_limit, new_limit;
421 rdmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
423 cur_limit = turbo_override & TURBO_TDP_MASK;
424 new_limit = cur_limit - 8; /* 1W decrease */
426 /* Clamp to SKU TDP limit */
427 if (new_limit < (ips->orig_turbo_limit & TURBO_TDP_MASK))
428 new_limit = ips->orig_turbo_limit & TURBO_TDP_MASK;
430 thm_writew(THM_MPCPC, (new_limit * 10) / 8);
432 turbo_override |= TURBO_TDC_OVR_EN | TURBO_TDP_OVR_EN;
433 wrmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
435 turbo_override &= ~TURBO_TDP_MASK;
436 turbo_override |= new_limit;
438 wrmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
442 * do_enable_cpu_turbo - internal turbo enable function
445 * Internal function for actually updating MSRs. When we enable/disable
446 * turbo, we need to do it on each CPU; this function is the one called
447 * by on_each_cpu() when needed.
449 static void do_enable_cpu_turbo(void *data)
453 rdmsrl(IA32_PERF_CTL, perf_ctl);
454 if (perf_ctl & IA32_PERF_TURBO_DIS) {
455 perf_ctl &= ~IA32_PERF_TURBO_DIS;
456 wrmsrl(IA32_PERF_CTL, perf_ctl);
461 * ips_enable_cpu_turbo - enable turbo mode on all CPUs
462 * @ips: IPS driver struct
464 * Enable turbo mode by clearing the disable bit in IA32_PERF_CTL on
465 * all logical threads.
467 static void ips_enable_cpu_turbo(struct ips_driver *ips)
469 /* Already on, no need to mess with MSRs */
470 if (ips->__cpu_turbo_on)
473 if (ips->turbo_toggle_allowed)
474 on_each_cpu(do_enable_cpu_turbo, ips, 1);
476 ips->__cpu_turbo_on = true;
480 * do_disable_cpu_turbo - internal turbo disable function
483 * Internal function for actually updating MSRs. When we enable/disable
484 * turbo, we need to do it on each CPU; this function is the one called
485 * by on_each_cpu() when needed.
487 static void do_disable_cpu_turbo(void *data)
491 rdmsrl(IA32_PERF_CTL, perf_ctl);
492 if (!(perf_ctl & IA32_PERF_TURBO_DIS)) {
493 perf_ctl |= IA32_PERF_TURBO_DIS;
494 wrmsrl(IA32_PERF_CTL, perf_ctl);
499 * ips_disable_cpu_turbo - disable turbo mode on all CPUs
500 * @ips: IPS driver struct
502 * Disable turbo mode by setting the disable bit in IA32_PERF_CTL on
503 * all logical threads.
505 static void ips_disable_cpu_turbo(struct ips_driver *ips)
507 /* Already off, leave it */
508 if (!ips->__cpu_turbo_on)
511 if (ips->turbo_toggle_allowed)
512 on_each_cpu(do_disable_cpu_turbo, ips, 1);
514 ips->__cpu_turbo_on = false;
518 * ips_gpu_busy - is GPU busy?
519 * @ips: IPS driver struct
521 * Check GPU for load to see whether we should increase its thermal budget.
522 * We need to call into the i915 driver in this case.
525 * True if the GPU could use more power, false otherwise.
527 static bool ips_gpu_busy(struct ips_driver *ips)
529 if (!ips_gpu_turbo_enabled(ips))
532 return ips->gpu_busy();
536 * ips_gpu_raise - raise GPU power clamp
537 * @ips: IPS driver struct
539 * Raise the GPU frequency/power if possible. We need to call into the
540 * i915 driver in this case.
542 static void ips_gpu_raise(struct ips_driver *ips)
544 if (!ips_gpu_turbo_enabled(ips))
547 if (!ips->gpu_raise())
548 ips->gpu_turbo_enabled = false;
554 * ips_gpu_lower - lower GPU power clamp
555 * @ips: IPS driver struct
557 * Lower GPU frequency/power if possible. Need to call i915.
559 static void ips_gpu_lower(struct ips_driver *ips)
561 if (!ips_gpu_turbo_enabled(ips))
564 if (!ips->gpu_lower())
565 ips->gpu_turbo_enabled = false;
571 * ips_enable_gpu_turbo - notify the gfx driver turbo is available
572 * @ips: IPS driver struct
574 * Call into the graphics driver indicating that it can safely use
577 static void ips_enable_gpu_turbo(struct ips_driver *ips)
579 if (ips->__gpu_turbo_on)
581 ips->__gpu_turbo_on = true;
585 * ips_disable_gpu_turbo - notify the gfx driver to disable turbo mode
586 * @ips: IPS driver struct
588 * Request that the graphics driver disable turbo mode.
590 static void ips_disable_gpu_turbo(struct ips_driver *ips)
592 /* Avoid calling i915 if turbo is already disabled */
593 if (!ips->__gpu_turbo_on)
596 if (!ips->gpu_turbo_disable())
597 dev_err(&ips->dev->dev, "failed to disable graphics turbo\n");
599 ips->__gpu_turbo_on = false;
603 * mcp_exceeded - check whether we're outside our thermal & power limits
604 * @ips: IPS driver struct
606 * Check whether the MCP is over its thermal or power budget.
608 static bool mcp_exceeded(struct ips_driver *ips)
615 spin_lock_irqsave(&ips->turbo_status_lock, flags);
617 temp_limit = ips->mcp_temp_limit * 100;
618 if (ips->mcp_avg_temp > temp_limit)
621 avg_power = ips->cpu_avg_power + ips->mch_avg_power;
622 if (avg_power > ips->mcp_power_limit)
625 spin_unlock_irqrestore(&ips->turbo_status_lock, flags);
631 * cpu_exceeded - check whether a CPU core is outside its limits
632 * @ips: IPS driver struct
633 * @cpu: CPU number to check
635 * Check a given CPU's average temp or power is over its limit.
637 static bool cpu_exceeded(struct ips_driver *ips, int cpu)
643 spin_lock_irqsave(&ips->turbo_status_lock, flags);
644 avg = cpu ? ips->ctv2_avg_temp : ips->ctv1_avg_temp;
645 if (avg > (ips->limits->core_temp_limit * 100))
647 if (ips->cpu_avg_power > ips->core_power_limit * 100)
649 spin_unlock_irqrestore(&ips->turbo_status_lock, flags);
652 dev_info(&ips->dev->dev,
653 "CPU power or thermal limit exceeded\n");
659 * mch_exceeded - check whether the GPU is over budget
660 * @ips: IPS driver struct
662 * Check the MCH temp & power against their maximums.
664 static bool mch_exceeded(struct ips_driver *ips)
669 spin_lock_irqsave(&ips->turbo_status_lock, flags);
670 if (ips->mch_avg_temp > (ips->limits->mch_temp_limit * 100))
672 if (ips->mch_avg_power > ips->mch_power_limit)
674 spin_unlock_irqrestore(&ips->turbo_status_lock, flags);
680 * verify_limits - verify BIOS provided limits
681 * @ips: IPS structure
683 * BIOS can optionally provide non-default limits for power and temp. Check
684 * them here and use the defaults if the BIOS values are not provided or
685 * are otherwise unusable.
687 static void verify_limits(struct ips_driver *ips)
689 if (ips->mcp_power_limit < ips->limits->mcp_power_limit ||
690 ips->mcp_power_limit > 35000)
691 ips->mcp_power_limit = ips->limits->mcp_power_limit;
693 if (ips->mcp_temp_limit < ips->limits->core_temp_limit ||
694 ips->mcp_temp_limit < ips->limits->mch_temp_limit ||
695 ips->mcp_temp_limit > 150)
696 ips->mcp_temp_limit = min(ips->limits->core_temp_limit,
697 ips->limits->mch_temp_limit);
701 * update_turbo_limits - get various limits & settings from regs
702 * @ips: IPS driver struct
704 * Update the IPS power & temp limits, along with turbo enable flags,
705 * based on latest register contents.
707 * Used at init time and for runtime BIOS support, which requires polling
708 * the regs for updates (as a result of AC->DC transition for example).
711 * Caller must hold turbo_status_lock (outside of init)
713 static void update_turbo_limits(struct ips_driver *ips)
715 u32 hts = thm_readl(THM_HTS);
717 ips->cpu_turbo_enabled = !(hts & HTS_PCTD_DIS);
719 * Disable turbo for now, until we can figure out why the power figures
722 ips->cpu_turbo_enabled = false;
725 ips->gpu_turbo_enabled = !(hts & HTS_GTD_DIS);
727 ips->core_power_limit = thm_readw(THM_MPCPC);
728 ips->mch_power_limit = thm_readw(THM_MMGPC);
729 ips->mcp_temp_limit = thm_readw(THM_PTL);
730 ips->mcp_power_limit = thm_readw(THM_MPPC);
733 /* Ignore BIOS CPU vs GPU pref */
737 * ips_adjust - adjust power clamp based on thermal state
738 * @data: ips driver structure
740 * Wake up every 5s or so and check whether we should adjust the power clamp.
741 * Check CPU and GPU load to determine which needs adjustment. There are
742 * several things to consider here:
743 * - do we need to adjust up or down?
748 * - is CPU or GPU preferred? (CPU is default)
750 * So, given the above, we do the following:
751 * - up (TDP available)
752 * - CPU not busy, GPU not busy - nothing
753 * - CPU busy, GPU not busy - adjust CPU up
754 * - CPU not busy, GPU busy - adjust GPU up
755 * - CPU busy, GPU busy - adjust preferred unit up, taking headroom from
756 * non-preferred unit if necessary
757 * - down (at TDP limit)
758 * - adjust both CPU and GPU down if possible
760 cpu+ gpu+ cpu+gpu- cpu-gpu+ cpu-gpu-
761 cpu < gpu < cpu+gpu+ cpu+ gpu+ nothing
762 cpu < gpu >= cpu+gpu-(mcp<) cpu+gpu-(mcp<) gpu- gpu-
763 cpu >= gpu < cpu-gpu+(mcp<) cpu- cpu-gpu+(mcp<) cpu-
764 cpu >= gpu >= cpu-gpu- cpu-gpu- cpu-gpu- cpu-gpu-
767 static int ips_adjust(void *data)
769 struct ips_driver *ips = data;
772 dev_dbg(&ips->dev->dev, "starting ips-adjust thread\n");
775 * Adjust CPU and GPU clamps every 5s if needed. Doing it more
776 * often isn't recommended due to ME interaction.
779 bool cpu_busy = ips_cpu_busy(ips);
780 bool gpu_busy = ips_gpu_busy(ips);
782 spin_lock_irqsave(&ips->turbo_status_lock, flags);
783 if (ips->poll_turbo_status)
784 update_turbo_limits(ips);
785 spin_unlock_irqrestore(&ips->turbo_status_lock, flags);
787 /* Update turbo status if necessary */
788 if (ips->cpu_turbo_enabled)
789 ips_enable_cpu_turbo(ips);
791 ips_disable_cpu_turbo(ips);
793 if (ips->gpu_turbo_enabled)
794 ips_enable_gpu_turbo(ips);
796 ips_disable_gpu_turbo(ips);
798 /* We're outside our comfort zone, crank them down */
799 if (mcp_exceeded(ips)) {
805 if (!cpu_exceeded(ips, 0) && cpu_busy)
810 if (!mch_exceeded(ips) && gpu_busy)
816 schedule_timeout_interruptible(msecs_to_jiffies(IPS_ADJUST_PERIOD));
817 } while (!kthread_should_stop());
819 dev_dbg(&ips->dev->dev, "ips-adjust thread stopped\n");
825 * Helpers for reading out temp/power values and calculating their
826 * averages for the decision making and monitoring functions.
829 static u16 calc_avg_temp(struct ips_driver *ips, u16 *array)
835 for (i = 0; i < IPS_SAMPLE_COUNT; i++)
836 total += (u64)(array[i] * 100);
838 do_div(total, IPS_SAMPLE_COUNT);
845 static u16 read_mgtv(struct ips_driver *ips)
851 val = thm_readq(THM_MGTV);
852 val = (val & TV_MASK) >> TV_SHIFT;
854 slope = offset = thm_readw(THM_MGTA);
855 slope = (slope & MGTA_SLOPE_MASK) >> MGTA_SLOPE_SHIFT;
856 offset = offset & MGTA_OFFSET_MASK;
858 ret = ((val * slope + 0x40) >> 7) + offset;
860 return 0; /* MCH temp reporting buggy */
863 static u16 read_ptv(struct ips_driver *ips)
865 u16 val, slope, offset;
867 slope = (ips->pta_val & PTA_SLOPE_MASK) >> PTA_SLOPE_SHIFT;
868 offset = ips->pta_val & PTA_OFFSET_MASK;
870 val = thm_readw(THM_PTV) & PTV_MASK;
875 static u16 read_ctv(struct ips_driver *ips, int cpu)
877 int reg = cpu ? THM_CTV2 : THM_CTV1;
880 val = thm_readw(reg);
881 if (!(val & CTV_TEMP_ERROR))
882 val = (val) >> 6; /* discard fractional component */
889 static u32 get_cpu_power(struct ips_driver *ips, u32 *last, int period)
895 * CEC is in joules/65535. Take difference over time to
898 val = thm_readl(THM_CEC);
900 /* period is in ms and we want mW */
901 ret = (((val - *last) * 1000) / period);
902 ret = (ret * 1000) / 65535;
908 static const u16 temp_decay_factor = 2;
909 static u16 update_average_temp(u16 avg, u16 val)
913 /* Multiply by 100 for extra precision */
914 ret = (val * 100 / temp_decay_factor) +
915 (((temp_decay_factor - 1) * avg) / temp_decay_factor);
919 static const u16 power_decay_factor = 2;
920 static u16 update_average_power(u32 avg, u32 val)
924 ret = (val / power_decay_factor) +
925 (((power_decay_factor - 1) * avg) / power_decay_factor);
930 static u32 calc_avg_power(struct ips_driver *ips, u32 *array)
936 for (i = 0; i < IPS_SAMPLE_COUNT; i++)
939 do_div(total, IPS_SAMPLE_COUNT);
945 static void monitor_timeout(unsigned long arg)
947 wake_up_process((struct task_struct *)arg);
951 * ips_monitor - temp/power monitoring thread
952 * @data: ips driver structure
954 * This is the main function for the IPS driver. It monitors power and
955 * tempurature in the MCP and adjusts CPU and GPU power clams accordingly.
957 * We keep a 5s moving average of power consumption and tempurature. Using
958 * that data, along with CPU vs GPU preference, we adjust the power clamps
961 static int ips_monitor(void *data)
963 struct ips_driver *ips = data;
964 struct timer_list timer;
965 unsigned long seqno_timestamp, expire, last_msecs, last_sample_period;
967 u32 *cpu_samples, *mchp_samples, old_cpu_power;
968 u16 *mcp_samples, *ctv1_samples, *ctv2_samples, *mch_samples;
969 u8 cur_seqno, last_seqno;
971 mcp_samples = kzalloc(sizeof(u16) * IPS_SAMPLE_COUNT, GFP_KERNEL);
972 ctv1_samples = kzalloc(sizeof(u16) * IPS_SAMPLE_COUNT, GFP_KERNEL);
973 ctv2_samples = kzalloc(sizeof(u16) * IPS_SAMPLE_COUNT, GFP_KERNEL);
974 mch_samples = kzalloc(sizeof(u16) * IPS_SAMPLE_COUNT, GFP_KERNEL);
975 cpu_samples = kzalloc(sizeof(u32) * IPS_SAMPLE_COUNT, GFP_KERNEL);
976 mchp_samples = kzalloc(sizeof(u32) * IPS_SAMPLE_COUNT, GFP_KERNEL);
977 if (!mcp_samples || !ctv1_samples || !ctv2_samples || !mch_samples ||
978 !cpu_samples || !mchp_samples) {
979 dev_err(&ips->dev->dev,
980 "failed to allocate sample array, ips disabled\n");
990 last_seqno = (thm_readl(THM_ITV) & ITV_ME_SEQNO_MASK) >>
992 seqno_timestamp = get_jiffies_64();
994 old_cpu_power = thm_readl(THM_CEC);
995 schedule_timeout_interruptible(msecs_to_jiffies(IPS_SAMPLE_PERIOD));
997 /* Collect an initial average */
998 for (i = 0; i < IPS_SAMPLE_COUNT; i++) {
1002 mcp_samples[i] = read_ptv(ips);
1004 val = read_ctv(ips, 0);
1005 ctv1_samples[i] = val;
1007 val = read_ctv(ips, 1);
1008 ctv2_samples[i] = val;
1010 val = read_mgtv(ips);
1011 mch_samples[i] = val;
1013 cpu_power = get_cpu_power(ips, &old_cpu_power,
1015 cpu_samples[i] = cpu_power;
1017 if (ips->read_mch_val) {
1018 mchp = ips->read_mch_val();
1019 mchp_samples[i] = mchp;
1022 schedule_timeout_interruptible(msecs_to_jiffies(IPS_SAMPLE_PERIOD));
1023 if (kthread_should_stop())
1027 ips->mcp_avg_temp = calc_avg_temp(ips, mcp_samples);
1028 ips->ctv1_avg_temp = calc_avg_temp(ips, ctv1_samples);
1029 ips->ctv2_avg_temp = calc_avg_temp(ips, ctv2_samples);
1030 ips->mch_avg_temp = calc_avg_temp(ips, mch_samples);
1031 ips->cpu_avg_power = calc_avg_power(ips, cpu_samples);
1032 ips->mch_avg_power = calc_avg_power(ips, mchp_samples);
1034 kfree(ctv1_samples);
1035 kfree(ctv2_samples);
1038 kfree(mchp_samples);
1040 /* Start the adjustment thread now that we have data */
1041 wake_up_process(ips->adjust);
1044 * Ok, now we have an initial avg. From here on out, we track the
1045 * running avg using a decaying average calculation. This allows
1046 * us to reduce the sample frequency if the CPU and GPU are idle.
1048 old_cpu_power = thm_readl(THM_CEC);
1049 schedule_timeout_interruptible(msecs_to_jiffies(IPS_SAMPLE_PERIOD));
1050 last_sample_period = IPS_SAMPLE_PERIOD;
1052 setup_deferrable_timer_on_stack(&timer, monitor_timeout,
1053 (unsigned long)current);
1055 u32 cpu_val, mch_val;
1059 val = read_ptv(ips);
1060 ips->mcp_avg_temp = update_average_temp(ips->mcp_avg_temp, val);
1063 val = read_ctv(ips, 0);
1064 ips->ctv1_avg_temp =
1065 update_average_temp(ips->ctv1_avg_temp, val);
1067 cpu_val = get_cpu_power(ips, &old_cpu_power,
1068 last_sample_period);
1069 ips->cpu_avg_power =
1070 update_average_power(ips->cpu_avg_power, cpu_val);
1072 if (ips->second_cpu) {
1074 val = read_ctv(ips, 1);
1075 ips->ctv2_avg_temp =
1076 update_average_temp(ips->ctv2_avg_temp, val);
1080 val = read_mgtv(ips);
1081 ips->mch_avg_temp = update_average_temp(ips->mch_avg_temp, val);
1083 if (ips->read_mch_val) {
1084 mch_val = ips->read_mch_val();
1085 ips->mch_avg_power =
1086 update_average_power(ips->mch_avg_power,
1091 * Make sure ME is updating thermal regs.
1093 * If it's been more than a second since the last update,
1094 * the ME is probably hung.
1096 cur_seqno = (thm_readl(THM_ITV) & ITV_ME_SEQNO_MASK) >>
1098 if (cur_seqno == last_seqno &&
1099 time_after(jiffies, seqno_timestamp + HZ)) {
1100 dev_warn(&ips->dev->dev, "ME failed to update for more than 1s, likely hung\n");
1102 seqno_timestamp = get_jiffies_64();
1103 last_seqno = cur_seqno;
1106 last_msecs = jiffies_to_msecs(jiffies);
1107 expire = jiffies + msecs_to_jiffies(IPS_SAMPLE_PERIOD);
1109 __set_current_state(TASK_INTERRUPTIBLE);
1110 mod_timer(&timer, expire);
1113 /* Calculate actual sample period for power averaging */
1114 last_sample_period = jiffies_to_msecs(jiffies) - last_msecs;
1115 if (!last_sample_period)
1116 last_sample_period = 1;
1117 } while (!kthread_should_stop());
1119 del_timer_sync(&timer);
1120 destroy_timer_on_stack(&timer);
1122 dev_dbg(&ips->dev->dev, "ips-monitor thread stopped\n");
1128 #define THM_DUMPW(reg) \
1130 u16 val = thm_readw(reg); \
1131 dev_dbg(&ips->dev->dev, #reg ": 0x%04x\n", val); \
1133 #define THM_DUMPL(reg) \
1135 u32 val = thm_readl(reg); \
1136 dev_dbg(&ips->dev->dev, #reg ": 0x%08x\n", val); \
1138 #define THM_DUMPQ(reg) \
1140 u64 val = thm_readq(reg); \
1141 dev_dbg(&ips->dev->dev, #reg ": 0x%016x\n", val); \
1144 static void dump_thermal_info(struct ips_driver *ips)
1148 ptl = thm_readw(THM_PTL);
1149 dev_dbg(&ips->dev->dev, "Processor temp limit: %d\n", ptl);
1153 THM_DUMPW(THM_CTV1);
1156 THM_DUMPQ(THM_MGTV);
1161 * ips_irq_handler - handle temperature triggers and other IPS events
1165 * Handle temperature limit trigger events, generally by lowering the clamps.
1166 * If we're at a critical limit, we clamp back to the lowest possible value
1167 * to prevent emergency shutdown.
1169 static irqreturn_t ips_irq_handler(int irq, void *arg)
1171 struct ips_driver *ips = arg;
1172 u8 tses = thm_readb(THM_TSES);
1173 u8 tes = thm_readb(THM_TES);
1178 dev_info(&ips->dev->dev, "TSES: 0x%02x\n", tses);
1179 dev_info(&ips->dev->dev, "TES: 0x%02x\n", tes);
1181 /* STS update from EC? */
1185 sts = thm_readl(THM_STS);
1186 tc1 = thm_readl(THM_TC1);
1188 if (sts & STS_NVV) {
1189 spin_lock(&ips->turbo_status_lock);
1190 ips->core_power_limit = (sts & STS_PCPL_MASK) >>
1192 ips->mch_power_limit = (sts & STS_GPL_MASK) >>
1194 /* ignore EC CPU vs GPU pref */
1195 ips->cpu_turbo_enabled = !(sts & STS_PCTD_DIS);
1197 * Disable turbo for now, until we can figure
1198 * out why the power figures are wrong
1200 ips->cpu_turbo_enabled = false;
1202 ips->gpu_turbo_enabled = !(sts & STS_GTD_DIS);
1203 ips->mcp_temp_limit = (sts & STS_PTL_MASK) >>
1205 ips->mcp_power_limit = (tc1 & STS_PPL_MASK) >>
1208 spin_unlock(&ips->turbo_status_lock);
1210 thm_writeb(THM_SEC, SEC_ACK);
1212 thm_writeb(THM_TES, tes);
1217 dev_warn(&ips->dev->dev,
1218 "thermal trip occurred, tses: 0x%04x\n", tses);
1219 thm_writeb(THM_TSES, tses);
1225 #ifndef CONFIG_DEBUG_FS
1226 static void ips_debugfs_init(struct ips_driver *ips) { return; }
1227 static void ips_debugfs_cleanup(struct ips_driver *ips) { return; }
1230 /* Expose current state and limits in debugfs if possible */
1232 struct ips_debugfs_node {
1233 struct ips_driver *ips;
1235 int (*show)(struct seq_file *m, void *data);
1238 static int show_cpu_temp(struct seq_file *m, void *data)
1240 struct ips_driver *ips = m->private;
1242 seq_printf(m, "%d.%02d\n", ips->ctv1_avg_temp / 100,
1243 ips->ctv1_avg_temp % 100);
1248 static int show_cpu_power(struct seq_file *m, void *data)
1250 struct ips_driver *ips = m->private;
1252 seq_printf(m, "%dmW\n", ips->cpu_avg_power);
1257 static int show_cpu_clamp(struct seq_file *m, void *data)
1262 rdmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
1264 tdp = (int)(turbo_override & TURBO_TDP_MASK);
1265 tdc = (int)((turbo_override & TURBO_TDC_MASK) >> TURBO_TDC_SHIFT);
1267 /* Convert to .1W/A units */
1272 seq_printf(m, "%d.%dW %d.%dA\n", tdp / 10, tdp % 10,
1273 tdc / 10, tdc % 10);
1278 static int show_mch_temp(struct seq_file *m, void *data)
1280 struct ips_driver *ips = m->private;
1282 seq_printf(m, "%d.%02d\n", ips->mch_avg_temp / 100,
1283 ips->mch_avg_temp % 100);
1288 static int show_mch_power(struct seq_file *m, void *data)
1290 struct ips_driver *ips = m->private;
1292 seq_printf(m, "%dmW\n", ips->mch_avg_power);
1297 static struct ips_debugfs_node ips_debug_files[] = {
1298 { NULL, "cpu_temp", show_cpu_temp },
1299 { NULL, "cpu_power", show_cpu_power },
1300 { NULL, "cpu_clamp", show_cpu_clamp },
1301 { NULL, "mch_temp", show_mch_temp },
1302 { NULL, "mch_power", show_mch_power },
1305 static int ips_debugfs_open(struct inode *inode, struct file *file)
1307 struct ips_debugfs_node *node = inode->i_private;
1309 return single_open(file, node->show, node->ips);
1312 static const struct file_operations ips_debugfs_ops = {
1313 .owner = THIS_MODULE,
1314 .open = ips_debugfs_open,
1316 .llseek = seq_lseek,
1317 .release = single_release,
1320 static void ips_debugfs_cleanup(struct ips_driver *ips)
1322 if (ips->debug_root)
1323 debugfs_remove_recursive(ips->debug_root);
1327 static void ips_debugfs_init(struct ips_driver *ips)
1331 ips->debug_root = debugfs_create_dir("ips", NULL);
1332 if (!ips->debug_root) {
1333 dev_err(&ips->dev->dev,
1334 "failed to create debugfs entries: %ld\n",
1335 PTR_ERR(ips->debug_root));
1339 for (i = 0; i < ARRAY_SIZE(ips_debug_files); i++) {
1341 struct ips_debugfs_node *node = &ips_debug_files[i];
1344 ent = debugfs_create_file(node->name, S_IFREG | S_IRUGO,
1345 ips->debug_root, node,
1348 dev_err(&ips->dev->dev,
1349 "failed to create debug file: %ld\n",
1358 ips_debugfs_cleanup(ips);
1361 #endif /* CONFIG_DEBUG_FS */
1364 * ips_detect_cpu - detect whether CPU supports IPS
1366 * Walk our list and see if we're on a supported CPU. If we find one,
1367 * return the limits for it.
1369 static struct ips_mcp_limits *ips_detect_cpu(struct ips_driver *ips)
1371 u64 turbo_power, misc_en;
1372 struct ips_mcp_limits *limits = NULL;
1375 if (!(boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 37)) {
1376 dev_info(&ips->dev->dev, "Non-IPS CPU detected.\n");
1380 rdmsrl(IA32_MISC_ENABLE, misc_en);
1382 * If the turbo enable bit isn't set, we shouldn't try to enable/disable
1383 * turbo manually or we'll get an illegal MSR access, even though
1384 * turbo will still be available.
1386 if (misc_en & IA32_MISC_TURBO_EN)
1387 ips->turbo_toggle_allowed = true;
1389 ips->turbo_toggle_allowed = false;
1391 if (strstr(boot_cpu_data.x86_model_id, "CPU M"))
1392 limits = &ips_sv_limits;
1393 else if (strstr(boot_cpu_data.x86_model_id, "CPU L"))
1394 limits = &ips_lv_limits;
1395 else if (strstr(boot_cpu_data.x86_model_id, "CPU U"))
1396 limits = &ips_ulv_limits;
1398 dev_info(&ips->dev->dev, "No CPUID match found.\n");
1402 rdmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_power);
1403 tdp = turbo_power & TURBO_TDP_MASK;
1405 /* Sanity check TDP against CPU */
1406 if (limits->core_power_limit != (tdp / 8) * 1000) {
1407 dev_info(&ips->dev->dev, "CPU TDP doesn't match expected value (found %d, expected %d)\n",
1408 tdp / 8, limits->core_power_limit / 1000);
1409 limits->core_power_limit = (tdp / 8) * 1000;
1417 * ips_get_i915_syms - try to get GPU control methods from i915 driver
1420 * The i915 driver exports several interfaces to allow the IPS driver to
1421 * monitor and control graphics turbo mode. If we can find them, we can
1422 * enable graphics turbo, otherwise we must disable it to avoid exceeding
1423 * thermal and power limits in the MCP.
1425 static bool ips_get_i915_syms(struct ips_driver *ips)
1427 ips->read_mch_val = symbol_get(i915_read_mch_val);
1428 if (!ips->read_mch_val)
1430 ips->gpu_raise = symbol_get(i915_gpu_raise);
1431 if (!ips->gpu_raise)
1433 ips->gpu_lower = symbol_get(i915_gpu_lower);
1434 if (!ips->gpu_lower)
1436 ips->gpu_busy = symbol_get(i915_gpu_busy);
1439 ips->gpu_turbo_disable = symbol_get(i915_gpu_turbo_disable);
1440 if (!ips->gpu_turbo_disable)
1446 symbol_put(i915_gpu_busy);
1448 symbol_put(i915_gpu_lower);
1450 symbol_put(i915_gpu_raise);
1452 symbol_put(i915_read_mch_val);
1458 ips_gpu_turbo_enabled(struct ips_driver *ips)
1460 if (!ips->gpu_busy && late_i915_load) {
1461 if (ips_get_i915_syms(ips)) {
1462 dev_info(&ips->dev->dev,
1463 "i915 driver attached, reenabling gpu turbo\n");
1464 ips->gpu_turbo_enabled = !(thm_readl(THM_HTS) & HTS_GTD_DIS);
1468 return ips->gpu_turbo_enabled;
1472 ips_link_to_i915_driver(void)
1474 /* We can't cleanly get at the various ips_driver structs from
1475 * this caller (the i915 driver), so just set a flag saying
1476 * that it's time to try getting the symbols again.
1478 late_i915_load = true;
1480 EXPORT_SYMBOL_GPL(ips_link_to_i915_driver);
1482 static const struct pci_device_id ips_id_table[] = {
1483 { PCI_DEVICE(PCI_VENDOR_ID_INTEL,
1484 PCI_DEVICE_ID_INTEL_THERMAL_SENSOR), },
1488 MODULE_DEVICE_TABLE(pci, ips_id_table);
1490 static int ips_blacklist_callback(const struct dmi_system_id *id)
1492 pr_info("Blacklisted intel_ips for %s\n", id->ident);
1496 static const struct dmi_system_id ips_blacklist[] = {
1498 .callback = ips_blacklist_callback,
1499 .ident = "HP ProBook",
1501 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1502 DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook"),
1505 { } /* terminating entry */
1508 static int ips_probe(struct pci_dev *dev, const struct pci_device_id *id)
1511 struct ips_driver *ips;
1514 u16 htshi, trc, trc_required_mask;
1517 if (dmi_check_system(ips_blacklist))
1520 ips = kzalloc(sizeof(struct ips_driver), GFP_KERNEL);
1524 pci_set_drvdata(dev, ips);
1527 ips->limits = ips_detect_cpu(ips);
1529 dev_info(&dev->dev, "IPS not supported on this CPU\n");
1534 spin_lock_init(&ips->turbo_status_lock);
1536 ret = pci_enable_device(dev);
1538 dev_err(&dev->dev, "can't enable PCI device, aborting\n");
1542 if (!pci_resource_start(dev, 0)) {
1543 dev_err(&dev->dev, "TBAR not assigned, aborting\n");
1548 ret = pci_request_regions(dev, "ips thermal sensor");
1550 dev_err(&dev->dev, "thermal resource busy, aborting\n");
1555 ips->regmap = ioremap(pci_resource_start(dev, 0),
1556 pci_resource_len(dev, 0));
1558 dev_err(&dev->dev, "failed to map thermal regs, aborting\n");
1563 tse = thm_readb(THM_TSE);
1564 if (tse != TSE_EN) {
1565 dev_err(&dev->dev, "thermal device not enabled (0x%02x), aborting\n", tse);
1570 trc = thm_readw(THM_TRC);
1571 trc_required_mask = TRC_CORE1_EN | TRC_CORE_PWR | TRC_MCH_EN;
1572 if ((trc & trc_required_mask) != trc_required_mask) {
1573 dev_err(&dev->dev, "thermal reporting for required devices not enabled, aborting\n");
1578 if (trc & TRC_CORE2_EN)
1579 ips->second_cpu = true;
1581 update_turbo_limits(ips);
1582 dev_dbg(&dev->dev, "max cpu power clamp: %dW\n",
1583 ips->mcp_power_limit / 10);
1584 dev_dbg(&dev->dev, "max core power clamp: %dW\n",
1585 ips->core_power_limit / 10);
1586 /* BIOS may update limits at runtime */
1587 if (thm_readl(THM_PSC) & PSP_PBRT)
1588 ips->poll_turbo_status = true;
1590 if (!ips_get_i915_syms(ips)) {
1591 dev_info(&dev->dev, "failed to get i915 symbols, graphics turbo disabled until i915 loads\n");
1592 ips->gpu_turbo_enabled = false;
1594 dev_dbg(&dev->dev, "graphics turbo enabled\n");
1595 ips->gpu_turbo_enabled = true;
1599 * Check PLATFORM_INFO MSR to make sure this chip is
1602 rdmsrl(PLATFORM_INFO, platform_info);
1603 if (!(platform_info & PLATFORM_TDP)) {
1604 dev_err(&dev->dev, "platform indicates TDP override unavailable, aborting\n");
1610 * IRQ handler for ME interaction
1611 * Note: don't use MSI here as the PCH has bugs.
1613 pci_disable_msi(dev);
1614 ret = request_irq(dev->irq, ips_irq_handler, IRQF_SHARED, "ips",
1617 dev_err(&dev->dev, "request irq failed, aborting\n");
1621 /* Enable aux, hot & critical interrupts */
1622 thm_writeb(THM_TSPIEN, TSPIEN_AUX2_LOHI | TSPIEN_CRIT_LOHI |
1623 TSPIEN_HOT_LOHI | TSPIEN_AUX_LOHI);
1624 thm_writeb(THM_TEN, TEN_UPDATE_EN);
1626 /* Collect adjustment values */
1627 ips->cta_val = thm_readw(THM_CTA);
1628 ips->pta_val = thm_readw(THM_PTA);
1629 ips->mgta_val = thm_readw(THM_MGTA);
1631 /* Save turbo limits & ratios */
1632 rdmsrl(TURBO_POWER_CURRENT_LIMIT, ips->orig_turbo_limit);
1634 ips_disable_cpu_turbo(ips);
1635 ips->cpu_turbo_enabled = false;
1637 /* Create thermal adjust thread */
1638 ips->adjust = kthread_create(ips_adjust, ips, "ips-adjust");
1639 if (IS_ERR(ips->adjust)) {
1641 "failed to create thermal adjust thread, aborting\n");
1643 goto error_free_irq;
1648 * Set up the work queue and monitor thread. The monitor thread
1649 * will wake up ips_adjust thread.
1651 ips->monitor = kthread_run(ips_monitor, ips, "ips-monitor");
1652 if (IS_ERR(ips->monitor)) {
1654 "failed to create thermal monitor thread, aborting\n");
1656 goto error_thread_cleanup;
1659 hts = (ips->core_power_limit << HTS_PCPL_SHIFT) |
1660 (ips->mcp_temp_limit << HTS_PTL_SHIFT) | HTS_NVV;
1661 htshi = HTS2_PRST_RUNNING << HTS2_PRST_SHIFT;
1663 thm_writew(THM_HTSHI, htshi);
1664 thm_writel(THM_HTS, hts);
1666 ips_debugfs_init(ips);
1668 dev_info(&dev->dev, "IPS driver initialized, MCP temp limit %d\n",
1669 ips->mcp_temp_limit);
1672 error_thread_cleanup:
1673 kthread_stop(ips->adjust);
1675 free_irq(ips->dev->irq, ips);
1677 iounmap(ips->regmap);
1679 pci_release_regions(dev);
1685 static void ips_remove(struct pci_dev *dev)
1687 struct ips_driver *ips = pci_get_drvdata(dev);
1693 ips_debugfs_cleanup(ips);
1695 /* Release i915 driver */
1696 if (ips->read_mch_val)
1697 symbol_put(i915_read_mch_val);
1699 symbol_put(i915_gpu_raise);
1701 symbol_put(i915_gpu_lower);
1703 symbol_put(i915_gpu_busy);
1704 if (ips->gpu_turbo_disable)
1705 symbol_put(i915_gpu_turbo_disable);
1707 rdmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
1708 turbo_override &= ~(TURBO_TDC_OVR_EN | TURBO_TDP_OVR_EN);
1709 wrmsrl(TURBO_POWER_CURRENT_LIMIT, turbo_override);
1710 wrmsrl(TURBO_POWER_CURRENT_LIMIT, ips->orig_turbo_limit);
1712 free_irq(ips->dev->irq, ips);
1714 kthread_stop(ips->adjust);
1716 kthread_stop(ips->monitor);
1717 iounmap(ips->regmap);
1718 pci_release_regions(dev);
1720 dev_dbg(&dev->dev, "IPS driver removed\n");
1723 static void ips_shutdown(struct pci_dev *dev)
1727 static struct pci_driver ips_pci_driver = {
1728 .name = "intel ips",
1729 .id_table = ips_id_table,
1731 .remove = ips_remove,
1732 .shutdown = ips_shutdown,
1735 module_pci_driver(ips_pci_driver);
1737 MODULE_LICENSE("GPL");
1739 MODULE_DESCRIPTION("Intelligent Power Sharing Driver");