temp.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * temp.c Thermal management for cpu's with Thermal Assist Units
  3.  *
  4.  * Written by Troy Benjegerdes <hozer@drgw.net>
  5.  *
  6.  * TODO:
  7.  * dynamic power management to limit peak CPU temp (using ICTC)
  8.  * calibration???
  9.  * 
  10.  * Silly, crazy ideas: use cpu load (from scheduler) and ICTC to extend battery
  11.  * life in portables, and add a 'performance/watt' metric somewhere in /proc
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/errno.h>
  15. #include <linux/sched.h>
  16. #include <linux/kernel.h>
  17. #include <linux/param.h>
  18. #include <linux/string.h>
  19. #include <linux/mm.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/init.h>
  22. #include <asm/segment.h>
  23. #include <asm/io.h>
  24. #include <asm/processor.h>
  25. #include <asm/nvram.h>
  26. #include <asm/cache.h>
  27. #include <asm/8xx_immap.h>
  28. #include <asm/machdep.h>
  29. static struct tau_temp
  30. {
  31. int interrupts;
  32. unsigned char low;
  33. unsigned char high;
  34. unsigned char grew;
  35. } tau[NR_CPUS];
  36. struct timer_list tau_timer;
  37. #undef DEBUG
  38. /* TODO: put these in a /proc interface, with some sanity checks, and maybe
  39.  * dynamic adjustment to minimize # of interrupts */
  40. /* configurable values for step size and how much to expand the window when
  41.  * we get an interrupt. These are based on the limit that was out of range */
  42. #define step_size 2 /* step size when temp goes out of range */
  43. #define window_expand 1 /* expand the window by this much */
  44. /* configurable values for shrinking the window */
  45. #define shrink_timer 2*HZ /* period between shrinking the window */
  46. #define min_window 2 /* minimum window size, degrees C */
  47. void set_thresholds(unsigned long cpu)
  48. {
  49. #ifdef CONFIG_TAU_INT
  50. /*
  51.  * setup THRM1,
  52.  * threshold, valid bit, enable interrupts, interrupt when below threshold
  53.  */
  54. mtspr(SPRN_THRM1, THRM1_THRES(tau[cpu].low) | THRM1_V | THRM1_TIE | THRM1_TID);
  55. /* setup THRM2,
  56.  * threshold, valid bit, enable interrupts, interrupt when above threshhold
  57.  */
  58. mtspr (SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V | THRM1_TIE);
  59. #else
  60. /* same thing but don't enable interrupts */
  61. mtspr(SPRN_THRM1, THRM1_THRES(tau[cpu].low) | THRM1_V | THRM1_TID);
  62. mtspr(SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V);
  63. #endif
  64. }
  65. void TAUupdate(int cpu)
  66. {
  67. unsigned thrm;
  68. #ifdef DEBUG
  69. printk("TAUupdate ");
  70. #endif
  71. /* if both thresholds are crossed, the step_sizes cancel out
  72.  * and the window winds up getting expanded twice. */
  73. if((thrm = mfspr(SPRN_THRM1)) & THRM1_TIV){ /* is valid? */
  74. if(thrm & THRM1_TIN){ /* crossed low threshold */
  75. if (tau[cpu].low >= step_size){
  76. tau[cpu].low -= step_size;
  77. tau[cpu].high -= (step_size - window_expand);
  78. }
  79. tau[cpu].grew = 1;
  80. #ifdef DEBUG
  81. printk("low threshold crossed ");
  82. #endif
  83. }
  84. }
  85. if((thrm = mfspr(SPRN_THRM2)) & THRM1_TIV){ /* is valid? */
  86. if(thrm & THRM1_TIN){ /* crossed high threshold */
  87. if (tau[cpu].high <= 127-step_size){
  88. tau[cpu].low += (step_size - window_expand);
  89. tau[cpu].high += step_size;
  90. }
  91. tau[cpu].grew = 1;
  92. #ifdef DEBUG
  93. printk("high threshold crossed ");
  94. #endif
  95. }
  96. }
  97. #ifdef DEBUG
  98. printk("grew = %dn", tau[cpu].grew);
  99. #endif
  100. #ifndef CONFIG_TAU_INT /* tau_timeout will do this if not using interrupts */
  101. set_thresholds(cpu);
  102. #endif
  103. }
  104. #ifdef CONFIG_TAU_INT
  105. /*
  106.  * TAU interrupts - called when we have a thermal assist unit interrupt
  107.  * with interrupts disabled
  108.  */
  109. void TAUException(struct pt_regs * regs)
  110. {
  111. unsigned long cpu = smp_processor_id();
  112. hardirq_enter(cpu);
  113. tau[cpu].interrupts++;
  114. TAUupdate(cpu);
  115. hardirq_exit(cpu);
  116. return;
  117. }
  118. #endif /* CONFIG_TAU_INT */
  119. static void tau_timeout(void * info)
  120. {
  121. unsigned long cpu = smp_processor_id();
  122. unsigned long flags;
  123. int size;
  124. int shrink;
  125.  
  126. /* disabling interrupts *should* be okay */
  127. save_flags(flags); cli();
  128. #ifndef CONFIG_TAU_INT
  129. TAUupdate(cpu);
  130. #endif
  131. size = tau[cpu].high - tau[cpu].low;
  132. if (size > min_window && ! tau[cpu].grew) {
  133. /* do an exponential shrink of half the amount currently over size */
  134. shrink = (2 + size - min_window) / 4;
  135. if (shrink) {
  136. tau[cpu].low += shrink;
  137. tau[cpu].high -= shrink;
  138. } else { /* size must have been min_window + 1 */
  139. tau[cpu].low += 1;
  140. #if 1 /* debug */
  141. if ((tau[cpu].high - tau[cpu].low) != min_window){
  142. printk(KERN_ERR "temp.c: line %d, logic errorn", __LINE__);
  143. }
  144. #endif
  145. }
  146. }
  147. tau[cpu].grew = 0;
  148. set_thresholds(cpu);
  149. /*
  150.  * Do the enable every time, since otherwise a bunch of (relatively)
  151.  * complex sleep code needs to be added. One mtspr every time
  152.  * tau_timeout is called is probably not a big deal.
  153.  * 
  154.  * Enable thermal sensor and set up sample interval timer
  155.  * need 20 us to do the compare.. until a nice 'cpu_speed' function
  156.  * call is implemented, just assume a 500 mhz clock. It doesn't really
  157.  * matter if we take too long for a compare since it's all interrupt 
  158.  * driven anyway. 
  159.  *
  160.  * use a extra long time.. (60 us @ 500 mhz)
  161.  */
  162. mtspr(SPRN_THRM3, THRM3_SITV(500*60) | THRM3_E);
  163. restore_flags(flags);
  164. }
  165. static void tau_timeout_smp(unsigned long unused)
  166. {
  167. /* schedule ourselves to be run again */
  168. mod_timer(&tau_timer, jiffies + shrink_timer) ;
  169. #ifdef CONFIG_SMP
  170. smp_call_function(tau_timeout, NULL, 1, 0);
  171. #endif
  172. tau_timeout(NULL);
  173. }
  174. /*
  175.  * setup the TAU
  176.  * 
  177.  * Set things up to use THRM1 as a temperature lower bound, and THRM2 as an upper bound.
  178.  * Start off at zero
  179.  */
  180. int tau_initialized = 0;
  181. void __init TAU_init_smp(void * info)
  182. {
  183. unsigned long cpu = smp_processor_id();
  184. /* set these to a reasonable value and let the timer shrink the
  185.  * window */
  186. tau[cpu].low = 5;
  187. tau[cpu].high = 120;
  188. set_thresholds(cpu);
  189. }
  190. int __init TAU_init(void)
  191. {
  192. /* We assume in SMP that if one CPU has TAU support, they
  193.  * all have it --BenH
  194.  */
  195. if (!(cur_cpu_spec[0]->cpu_features & CPU_FTR_TAU)) {
  196. printk("Thermal assist unit not availablen");
  197. tau_initialized = 0;
  198. return 1;
  199. }
  200. /* first, set up the window shrinking timer */
  201. init_timer(&tau_timer);
  202. tau_timer.function = tau_timeout_smp;
  203. tau_timer.expires = jiffies + shrink_timer;
  204. add_timer(&tau_timer);
  205. #ifdef CONFIG_SMP
  206. smp_call_function(TAU_init_smp, NULL, 1, 0);
  207. #endif
  208. TAU_init_smp(NULL);
  209. printk("Thermal assist unit ");
  210. #ifdef CONFIG_TAU_INT
  211. printk("using interrupts, ");
  212. #else
  213. printk("using timers, ");
  214. #endif
  215. printk("shrink_timer: %d jiffiesn", shrink_timer); 
  216. tau_initialized = 1;
  217. return 0;
  218. }
  219. __initcall(TAU_init);
  220. /*
  221.  * return current temp
  222.  */
  223. u32 cpu_temp_both(unsigned long cpu)
  224. {
  225. return ((tau[cpu].high << 16) | tau[cpu].low);
  226. }
  227. int cpu_temp(unsigned long cpu)
  228. {
  229. return ((tau[cpu].high + tau[cpu].low) / 2);
  230. }
  231. int tau_interrupts(unsigned long cpu)
  232. {
  233. return (tau[cpu].interrupts);
  234. }