power.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/parisc/kernel/power.c
  3.  * HP PARISC soft power switch support driver
  4.  *
  5.  * Copyright (c) 2001-2002 Helge Deller <deller@gmx.de>
  6.  * All rights reserved.
  7.  *
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions, and the following disclaimer,
  14.  *    without modification.
  15.  * 2. The name of the author may not be used to endorse or promote products
  16.  *    derived from this software without specific prior written permission.
  17.  *
  18.  * Alternatively, this software may be distributed under the terms of the
  19.  * GNU General Public License ("GPL").
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  25.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  *
  31.  *
  32.  * 
  33.  *  HINT:
  34.  *  Support of the soft power switch button may be enabled or disabled at
  35.  *  runtime through the "/proc/sys/kernel/power" procfs entry.
  36.  */ 
  37. #include <linux/config.h>
  38. #include <linux/module.h>
  39. #include <linux/init.h>
  40. #include <linux/kernel.h>
  41. #include <linux/string.h>
  42. #include <linux/notifier.h>
  43. #include <linux/reboot.h>
  44. #include <linux/sched.h>
  45. #include <linux/interrupt.h>
  46. #include <linux/proc_fs.h>
  47. #include <linux/ctype.h>
  48. #include <asm/gsc.h>
  49. #include <asm/pdc.h>
  50. #include <asm/irq.h>
  51. #include <asm/io.h>
  52. #include <asm/led.h>
  53. #include <asm/led.h>
  54. #include <asm/uaccess.h>
  55. #ifdef DEBUG
  56. # define DPRINTK(x) printk x
  57. #else
  58. # define DPRINTK(x) do { } while (0)
  59. #endif
  60. /* filename in /proc which can be used to enable/disable the power switch */
  61. #define SYSCTL_FILENAME "sys/kernel/power"
  62. #define DIAG_CODE(code) (0x14000000 + ((code)<<5))
  63. /* this will go to processor.h or any other place... */
  64. /* taken from PCXL ERS page 82 */
  65. #define MFCPU_X(rDiagReg, t_ch, t_th, code) 
  66. (DIAG_CODE(code) + ((rDiagReg)<<21) + ((t_ch)<<16) + ((t_th)<<0) )
  67. #define MTCPU(dr, gr) MFCPU_X(dr, gr,  0, 0x12)       /* move value of gr to dr[dr] */
  68. #define MFCPU_C(dr, gr) MFCPU_X(dr, gr,  0, 0x30) /* for dr0 and dr8 only ! */
  69. #define MFCPU_T(dr, gr) MFCPU_X(dr,  0, gr, 0xa0) /* all dr except dr0 and dr8 */
  70. #define __getDIAG(dr) ( { 
  71.         register unsigned long __res asm("r28");
  72.  __asm__ __volatile__ (
  73. ".word %1n nopn" : "=&r" (__res) : "i" (MFCPU_T(dr,28)) 
  74. );
  75. __res;
  76. } )
  77. static void deferred_poweroff(void *dummy)
  78. {
  79. extern int cad_pid; /* from kernel/sys.c */
  80. if (kill_proc(cad_pid, SIGINT, 1)) {
  81. /* just in case killing init process failed */
  82. machine_power_off();
  83. }
  84. }
  85. /*
  86.  * This function gets called from interrupt context.
  87.  * As it's called within an interrupt, it wouldn't sync if we don't
  88.  * use schedule_task().
  89.  */
  90. static void poweroff(void)
  91. {
  92. static int powering_off;
  93. static struct tq_struct poweroff_tq = {
  94. routine: deferred_poweroff,
  95. };
  96. if (powering_off)
  97. return;
  98. powering_off++;
  99. schedule_task(&poweroff_tq);
  100. }
  101. /* local time-counter for shutdown */
  102. static int shutdown_timer;
  103. /* check, give feedback and start shutdown after one second */
  104. static void process_shutdown(void)
  105. {
  106. if (shutdown_timer == 0)
  107. DPRINTK((KERN_INFO "Shutdown requested...n"));
  108. shutdown_timer++;
  109. /* wait until the button was pressed for 1 second */
  110. if (shutdown_timer == HZ) {
  111. static char msg[] = "Shutting down...";
  112. DPRINTK((KERN_INFO "%sn", msg));
  113. #ifdef CONFIG_CHASSIS_LCD_LED
  114. lcd_print(msg);
  115. #endif
  116. poweroff();
  117. }
  118. }
  119. /* main power switch tasklet struct (scheduled from time.c) */
  120. DECLARE_TASKLET_DISABLED(power_tasklet, NULL, 0);
  121. /* soft power switch enabled/disabled */
  122. #ifdef CONFIG_PROC_FS
  123. static int pwrsw_enabled = 1;
  124. #else
  125. #define pwrsw_enabled (1)
  126. #endif
  127. /*
  128.  * On gecko style machines (e.g. 712/xx and 715/xx) 
  129.  * the power switch status is stored in Bit 0 ("the highest bit")
  130.  * of CPU diagnose register 25.
  131.  * 
  132.  */
  133. static void gecko_tasklet_func(unsigned long unused)
  134. {
  135. if (!pwrsw_enabled)
  136. return;
  137. if (__getDIAG(25) & 0x80000000) {
  138. /* power switch button not pressed or released again */
  139. /* Warning: Some machines do never reset this DIAG flag! */
  140. shutdown_timer = 0;
  141. } else {
  142. process_shutdown();
  143. }
  144. }
  145. /*
  146.  * Check the power switch status which is read from the
  147.  * real I/O location at soft_power_reg.
  148.  * Bit 31 ("the lowest bit) is the status of the power switch.
  149.  */
  150. static void polling_tasklet_func(unsigned long soft_power_reg)
  151. {
  152.         unsigned long current_status;
  153. if (!pwrsw_enabled)
  154. return;
  155. current_status = gsc_readl(soft_power_reg);
  156. if (current_status & 0x1) {
  157. /* power switch button not pressed */
  158. shutdown_timer = 0;
  159. } else {
  160. process_shutdown();
  161. }
  162. }
  163. /*
  164.  * powerfail interruption handler (irq IRQ_FROM_REGION(CPU_IRQ_REGION)+2) 
  165.  */
  166. #if 0
  167. static void powerfail_interrupt(int code, void *x, struct pt_regs *regs)
  168. {
  169. printk(KERN_CRIT "POWERFAIL INTERRUPTION !n");
  170. poweroff();
  171. }
  172. #endif
  173. /* 
  174.  * /proc filesystem support 
  175.  */
  176. #ifdef CONFIG_SYSCTL
  177. static int power_proc_read(char *page, char **start, off_t off, int count, 
  178. int *eof, void *data)
  179. {
  180. char *out = page;
  181. int len;
  182. out += sprintf(out, "Software power switch support: ");
  183. out += sprintf(out, pwrsw_enabled ? "enabled (1)" : "disabled (0)" );
  184. out += sprintf(out, "n");
  185. len = out - page - off;
  186. if (len < count) {
  187. *eof = 1;
  188. if (len <= 0) return 0;
  189. } else {
  190. len = count;
  191. }
  192. *start = page + off;
  193. return len;
  194. }
  195. static int power_proc_write(struct file *file, const char *buf, 
  196. unsigned long count, void *data)
  197. {
  198. char *cur, lbuf[count];
  199. if (!capable(CAP_SYS_ADMIN))
  200. return -EACCES;
  201. memset(lbuf, 0, count);
  202. copy_from_user(lbuf, buf, count);
  203. cur = lbuf;
  204. /* skip initial spaces */
  205. while (*cur && isspace(*cur))
  206. cur++;
  207. switch (*cur) {
  208. case '0': pwrsw_enabled = 0;
  209. break;
  210. case '1': pwrsw_enabled = 1;
  211. break;
  212. default: printk(KERN_CRIT "/proc/" SYSCTL_FILENAME 
  213. ": Parse error: only '0' or '1' allowed!n");
  214. return -EINVAL;
  215. } /* switch() */
  216. return count;
  217. }
  218. static struct proc_dir_entry *ent;
  219. static void __init power_create_procfs(void)
  220. {
  221. if (!power_tasklet.func)
  222. return;
  223. ent = create_proc_entry(SYSCTL_FILENAME, S_IFREG|S_IRUGO|S_IWUSR, 0);
  224. if (!ent) return;
  225. ent->nlink = 1;
  226. ent->read_proc = power_proc_read;
  227. ent->write_proc = power_proc_write;
  228. ent->owner = THIS_MODULE;
  229. }
  230. static void __exit power_remove_procfs(void)
  231. {
  232. remove_proc_entry(SYSCTL_FILENAME, NULL);
  233. }
  234. #else
  235. #define power_create_procfs() do { } while (0)
  236. #define power_remove_procfs() do { } while (0)
  237. #endif /* CONFIG_SYSCTL */
  238. /* parisc_panic_event() is called by the panic handler.
  239.  * As soon as a panic occurs, our tasklets above will not be
  240.  * executed any longer. This function then re-enables the 
  241.  * soft-power switch and allows the user to switch off the system
  242.  */
  243. static int parisc_panic_event(struct notifier_block *this,
  244. unsigned long event, void *ptr)
  245. {
  246. /* re-enable the soft-power switch */
  247. pdc_soft_power_button(0);
  248. return NOTIFY_DONE;
  249. }
  250. static struct notifier_block parisc_panic_block = {
  251. notifier_call: parisc_panic_event,
  252. priority: INT_MAX,
  253. };
  254. static int __init power_init(void)
  255. {
  256. unsigned long ret;
  257. unsigned long soft_power_reg = 0;
  258. #if 0
  259. request_irq( IRQ_FROM_REGION(CPU_IRQ_REGION)+2, &powerfail_interrupt,
  260. 0, "powerfail", NULL);
  261. #endif
  262. /* enable the soft power switch if possible */
  263. ret = pdc_soft_power_info(&soft_power_reg);
  264. if (ret == PDC_OK)
  265. ret = pdc_soft_power_button(1);
  266. if (ret != PDC_OK)
  267. soft_power_reg = -1UL;
  268. switch (soft_power_reg) {
  269. case 0: printk(KERN_INFO "Gecko-style soft power switch enabled.n");
  270. power_tasklet.func = gecko_tasklet_func;
  271. break;
  272. case -1UL: printk(KERN_INFO "Soft power switch support not available.n");
  273. return -ENODEV;
  274. default: printk(KERN_INFO "Soft power switch enabled, polling @ 0x%08lx.n",
  275. soft_power_reg);
  276. power_tasklet.data = soft_power_reg;
  277. power_tasklet.func = polling_tasklet_func;
  278. }
  279. /* Register a call for panic conditions. */
  280. notifier_chain_register(&panic_notifier_list, &parisc_panic_block);
  281. power_create_procfs();
  282. tasklet_enable(&power_tasklet);
  283. return 0;
  284. }
  285. static void __exit power_exit(void)
  286. {
  287. if (!power_tasklet.func)
  288. return;
  289. tasklet_disable(&power_tasklet);
  290. notifier_chain_unregister(&panic_notifier_list, &parisc_panic_block);
  291. power_remove_procfs();
  292. power_tasklet.func = NULL;
  293. pdc_soft_power_button(0);
  294. }
  295. module_init(power_init);
  296. module_exit(power_exit);
  297. MODULE_AUTHOR("Helge Deller");
  298. MODULE_DESCRIPTION("Soft power switch driver");
  299. MODULE_LICENSE("Dual BSD/GPL");
  300. EXPORT_NO_SYMBOLS;