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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Module Name: tz_osl.c
  4.  *   $Revision: 25 $
  5.  *
  6.  *****************************************************************************/
  7. /*
  8.  *  Copyright (C) 2000, 2001 Andrew Grover
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #include <linux/kernel.h>
  25. #include <linux/module.h>
  26. #include <linux/init.h>
  27. #include <linux/types.h>
  28. #include <linux/proc_fs.h>
  29. #include <acpi.h>
  30. #include "tz.h"
  31. MODULE_AUTHOR("Andrew Grover");
  32. MODULE_DESCRIPTION("ACPI Component Architecture (CA) - Thermal Zone Driver");
  33. MODULE_LICENSE("GPL");
  34. int TZP = 0;
  35. MODULE_PARM(TZP, "i");
  36. MODULE_PARM_DESC(TZP, "Thermal zone polling frequency, in 1/10 seconds.n");
  37. #define TZ_PROC_ROOT "thermal"
  38. #define TZ_PROC_STATUS "status"
  39. #define TZ_PROC_INFO "info"
  40. extern struct proc_dir_entry *bm_proc_root;
  41. static struct proc_dir_entry *tz_proc_root = NULL;
  42. /****************************************************************************
  43.  *
  44.  * FUNCTION: tz_osl_proc_read_info
  45.  *
  46.  ****************************************************************************/
  47. static int
  48. tz_osl_proc_read_info (
  49. char *page,
  50. char **start,
  51. off_t off,
  52. int  count,
  53. int  *eof,
  54. void *context)
  55. {
  56. acpi_status status = AE_OK;
  57. char name[5];
  58. acpi_buffer buffer = {sizeof(name), &name};
  59. TZ_CONTEXT *tz = NULL;
  60. TZ_THRESHOLDS *thresholds = NULL;
  61. char *p = page;
  62. int  len = 0;
  63. u32 i,j;
  64. u32 t = 0;
  65. if (!context || (off != 0))
  66. goto end;
  67. tz = (TZ_CONTEXT*)context;
  68. thresholds = &(tz->policy.thresholds);
  69. p += sprintf(p, "critical (S5): trip=%dn", thresholds->critical.temperature);
  70. if (thresholds->hot.is_valid)
  71. p += sprintf(p, "critical (S4): trip=%dn", thresholds->hot.temperature);
  72. if (thresholds->passive.is_valid) {
  73. p += sprintf(p, "passive:       trip=%d tc1=%d tc2=%d tsp=%d devices=", thresholds->passive.temperature, thresholds->passive.tc1, thresholds->passive.tc2, thresholds->passive.tsp);
  74. for (j=0; j<thresholds->passive.devices.count; j++)
  75. p += sprintf(p, "%08x%c", thresholds->passive.devices.handles[j], (j==thresholds->passive.devices.count-1)?'n':',');
  76. }
  77. for (i=0; i<TZ_MAX_ACTIVE_THRESHOLDS; i++) {
  78. if (!(thresholds->active[i].is_valid))
  79. break;
  80. p += sprintf(p, "active[%d]:     trip=%d devices=", i, thresholds->active[i].temperature);
  81. for (j=0; j<thresholds->active[i].devices.count; j++)
  82. p += sprintf(p, "%08x%c", thresholds->active[i].devices.handles[j], (j==thresholds->passive.devices.count-1)?'n':',');
  83. }
  84. p += sprintf(p, "cooling mode:  ");
  85. switch (tz->policy.cooling_mode) {
  86. case TZ_COOLING_MODE_ACTIVE:
  87. p += sprintf(p, "active (noisy)n");
  88. break;
  89. case TZ_COOLING_MODE_PASSIVE:
  90. p += sprintf(p, "passive (quiet)n");
  91. break;
  92. default:
  93. p += sprintf(p, "unknownn");
  94. break;
  95. }
  96. p += sprintf(p, "polling:       ");
  97. switch (tz->policy.polling_freq) {
  98. case 0:
  99. p += sprintf(p, "disabledn");
  100. break;
  101. default:
  102. p += sprintf(p, "%d dSn", tz->policy.polling_freq);
  103. break;
  104. }
  105. end:
  106. len = (p - page);
  107. if (len <= off+count) *eof = 1;
  108. *start = page + off;
  109. len -= off;
  110. if (len>count) len = count;
  111. if (len<0) len = 0;
  112. return len;
  113. }
  114. /****************************************************************************
  115.  *
  116.  * FUNCTION: tz_osl_proc_write_info
  117.  *
  118.  ****************************************************************************/
  119. static int tz_osl_proc_write_info (
  120.         struct file *file, 
  121.         const char *buffer, 
  122.         unsigned long count, 
  123.         void *data)
  124. {
  125. TZ_CONTEXT *tz = NULL;
  126. u32 state = 0;
  127. u32 size = 0;
  128. if (!buffer || (count==0) || !data) {
  129. goto end;
  130. }
  131. tz = (TZ_CONTEXT*)data;
  132. size = strlen(buffer);
  133. if (size < 4)
  134. goto end;
  135. /* Cooling preference: "scp=0" (active) or "scp=1" (passive) */
  136. if (0 == strncmp(buffer, "scp=", 4)) {
  137. tz_set_cooling_preference(tz, (buffer[4] - '0'));
  138. }
  139. /* Polling frequency: "tzp=X" (poll every X [0-9] seconds) */
  140. else if (0 == strncmp(buffer, "tzp=", 4)) {
  141. tz->policy.polling_freq = (buffer[4] - '0') * 10;
  142. tz_policy_check(tz);
  143. }
  144. end:
  145.         return count;
  146. }
  147. /****************************************************************************
  148.  *
  149.  * FUNCTION: tz_osl_proc_read_status
  150.  *
  151.  ****************************************************************************/
  152. static int
  153. tz_osl_proc_read_status (
  154. char *page,
  155. char **start,
  156. off_t off,
  157. int  count,
  158. int  *eof,
  159. void *context)
  160. {
  161. TZ_CONTEXT *tz = NULL;
  162. char *p = page;
  163. int  len = 0;
  164. if (!context || (off != 0)) {
  165. goto end;
  166. }
  167. tz = (TZ_CONTEXT*)context;
  168. /* Temperature */
  169. tz_get_temperature(tz);
  170. p += sprintf(p, "temperature:   %d dKn", tz->policy.temperature);
  171. p += sprintf(p, "state:         ");
  172. if (tz->policy.state == 0)
  173. p += sprintf(p, "okn");
  174. else if (tz->policy.state & TZ_STATE_CRITICAL)
  175. p += sprintf(p, "criticaln");
  176. else if (tz->policy.state & TZ_STATE_HOT)
  177. p += sprintf(p, "hotn");
  178. else {
  179. if (tz->policy.state & TZ_STATE_ACTIVE)
  180. p += sprintf(p, "active[%d] ", tz->policy.state & 0x07);
  181. if (tz->policy.state & TZ_STATE_PASSIVE)
  182. p += sprintf(p, "passive ");
  183. p += sprintf(p, "n");
  184. }
  185. end:
  186. len = (p - page);
  187. if (len <= off+count) *eof = 1;
  188. *start = page + off;
  189. len -= off;
  190. if (len>count) len = count;
  191. if (len<0) len = 0;
  192. return(len);
  193. }
  194. /****************************************************************************
  195.  *
  196.  * FUNCTION: tz_osl_add_device
  197.  *
  198.  ****************************************************************************/
  199. acpi_status
  200. tz_osl_add_device(
  201. TZ_CONTEXT *tz)
  202. {
  203. struct proc_dir_entry *proc_entry = NULL;
  204. struct proc_dir_entry *proc_child_entry = NULL;
  205. if (!tz) {
  206. return(AE_BAD_PARAMETER);
  207. }
  208. printk("ACPI: Thermal Zone foundn");
  209. proc_entry = proc_mkdir(tz->uid, tz_proc_root);
  210. if (!proc_entry) 
  211. return(AE_ERROR);
  212. proc_child_entry = create_proc_read_entry(TZ_PROC_STATUS, S_IFREG | S_IRUGO, proc_entry, tz_osl_proc_read_status, (void*)tz);
  213. if (!proc_child_entry) 
  214. return(AE_ERROR);
  215. proc_child_entry = create_proc_entry(TZ_PROC_INFO, S_IFREG | 0644, proc_entry);
  216. if (!proc_child_entry)
  217. return(AE_ERROR);
  218. proc_child_entry->read_proc = tz_osl_proc_read_info;
  219. proc_child_entry->write_proc = tz_osl_proc_write_info;
  220. proc_child_entry->data = (void*)tz;
  221. return(AE_OK);
  222. }
  223. /****************************************************************************
  224.  *
  225.  * FUNCTION: tz_osl_remove_device
  226.  *
  227.  ****************************************************************************/
  228. acpi_status
  229. tz_osl_remove_device (
  230. TZ_CONTEXT *tz)
  231. {
  232. char proc_entry[64];
  233. if (!tz) {
  234. return(AE_BAD_PARAMETER);
  235. }
  236. sprintf(proc_entry, "%s/%s", tz->uid, TZ_PROC_INFO);
  237. remove_proc_entry(proc_entry, tz_proc_root);
  238. sprintf(proc_entry, "%s/%s", tz->uid, TZ_PROC_STATUS);
  239. remove_proc_entry(proc_entry, tz_proc_root);
  240. sprintf(proc_entry, "%s", tz->uid);
  241. remove_proc_entry(proc_entry, tz_proc_root);
  242. return(AE_OK);
  243. }
  244. /****************************************************************************
  245.  *
  246.  * FUNCTION: tz_osl_generate_event
  247.  *
  248.  ****************************************************************************/
  249. acpi_status
  250. tz_osl_generate_event (
  251. u32 event,
  252. TZ_CONTEXT *tz)
  253. {
  254. acpi_status status = AE_OK;
  255. if (!tz) {
  256. return(AE_BAD_PARAMETER);
  257. }
  258. switch (event) {
  259. case TZ_NOTIFY_TEMPERATURE_CHANGE:
  260. status = bm_osl_generate_event(tz->device_handle,
  261. TZ_PROC_ROOT, tz->uid, event,
  262. tz->policy.temperature);
  263. break;
  264. case TZ_NOTIFY_THRESHOLD_CHANGE:
  265. case TZ_NOTIFY_DEVICE_LISTS_CHANGE:
  266. status = bm_osl_generate_event(tz->device_handle,
  267. TZ_PROC_ROOT, tz->uid, event, 0);
  268. break;
  269. default:
  270. return(AE_BAD_PARAMETER);
  271. break;
  272. }
  273. return(status);
  274. }
  275. /****************************************************************************
  276.  *
  277.  * FUNCTION: tz_osl_init
  278.  *
  279.  ****************************************************************************/
  280. static int __init
  281. tz_osl_init (void)
  282. {
  283. acpi_status status = AE_OK;
  284. /* abort if no busmgr */
  285. if (!bm_proc_root)
  286. return -ENODEV;
  287. tz_proc_root = proc_mkdir(TZ_PROC_ROOT, bm_proc_root);
  288. if (!tz_proc_root) {
  289. status = AE_ERROR;
  290. }
  291. else {
  292. status = tz_initialize();
  293. if (ACPI_FAILURE(status)) {
  294. remove_proc_entry(TZ_PROC_ROOT, bm_proc_root);
  295. }
  296. }
  297. return (ACPI_SUCCESS(status)) ? 0 : -ENODEV;
  298. }
  299. /****************************************************************************
  300.  *
  301.  * FUNCTION: tz_osl_cleanup
  302.  *
  303.  ****************************************************************************/
  304. static void __exit
  305. tz_osl_cleanup (void)
  306. {
  307. tz_terminate();
  308. if (tz_proc_root) {
  309. remove_proc_entry(TZ_PROC_ROOT, bm_proc_root);
  310. }
  311. return;
  312. }
  313. module_init(tz_osl_init);
  314. module_exit(tz_osl_cleanup);