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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* APM emulation layer for PowerMac
  2.  * 
  3.  * Copyright 2001 Benjamin Herrenschmidt (benh@kernel.crashing.org)
  4.  *
  5.  * Lots of code inherited from apm.c, see appropriate notice in
  6.  *  arch/i386/kernel/apm.c
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify it
  9.  * under the terms of the GNU General Public License as published by the
  10.  * Free Software Foundation; either version 2, or (at your option) any
  11.  * later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful, but
  14.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  * General Public License for more details.
  17.  *
  18.  *
  19.  */
  20. #include <linux/config.h>
  21. #include <linux/module.h>
  22. #include <linux/poll.h>
  23. #include <linux/types.h>
  24. #include <linux/stddef.h>
  25. #include <linux/timer.h>
  26. #include <linux/fcntl.h>
  27. #include <linux/slab.h>
  28. #include <linux/stat.h>
  29. #include <linux/proc_fs.h>
  30. #include <linux/miscdevice.h>
  31. #include <linux/apm_bios.h>
  32. #include <linux/init.h>
  33. #include <linux/sched.h>
  34. #include <linux/pm.h>
  35. #include <linux/kernel.h>
  36. #include <linux/smp_lock.h>
  37. #include <linux/adb.h>
  38. #include <linux/pmu.h>
  39. #include <asm/system.h>
  40. #include <asm/uaccess.h>
  41. #include <asm/machdep.h>
  42. #undef DEBUG
  43. #ifdef DEBUG
  44. #define DBG(args...) printk(KERN_DEBUG args)
  45. //#define DBG(args...) xmon_printf(args)
  46. #else
  47. #define DBG(args...) do { } while (0)
  48. #endif
  49. /*
  50.  * The apm_bios device is one of the misc char devices.
  51.  * This is its minor number.
  52.  */
  53. #define APM_MINOR_DEV 134
  54. /*
  55.  * Maximum number of events stored
  56.  */
  57. #define APM_MAX_EVENTS 20
  58. #define FAKE_APM_BIOS_VERSION 0x0101
  59. #define APM_USER_NOTIFY_TIMEOUT (5*HZ)
  60. /*
  61.  * The per-file APM data
  62.  */
  63. struct apm_user {
  64. int magic;
  65. struct apm_user * next;
  66. int suser: 1;
  67. int suspend_waiting: 1;
  68. int suspends_pending;
  69. int suspends_read;
  70. int event_head;
  71. int event_tail;
  72. apm_event_t events[APM_MAX_EVENTS];
  73. };
  74. /*
  75.  * The magic number in apm_user
  76.  */
  77. #define APM_BIOS_MAGIC 0x4101
  78. /*
  79.  * Local variables
  80.  */
  81. static int suspends_pending;
  82. static DECLARE_WAIT_QUEUE_HEAD(apm_waitqueue);
  83. static DECLARE_WAIT_QUEUE_HEAD(apm_suspend_waitqueue);
  84. static struct apm_user * user_list;
  85. static int apm_notify_sleep(struct pmu_sleep_notifier *self, int when);
  86. static struct pmu_sleep_notifier apm_sleep_notifier = {
  87. apm_notify_sleep,
  88. SLEEP_LEVEL_USERLAND,
  89. };
  90. static char driver_version[] = "0.5"; /* no spaces */
  91. #ifdef DEBUG
  92. static char * apm_event_name[] = {
  93. "system standby",
  94. "system suspend",
  95. "normal resume",
  96. "critical resume",
  97. "low battery",
  98. "power status change",
  99. "update time",
  100. "critical suspend",
  101. "user standby",
  102. "user suspend",
  103. "system standby resume",
  104. "capabilities change"
  105. };
  106. #define NR_APM_EVENT_NAME
  107. (sizeof(apm_event_name) / sizeof(apm_event_name[0]))
  108. #endif
  109. static int queue_empty(struct apm_user *as)
  110. {
  111. return as->event_head == as->event_tail;
  112. }
  113. static apm_event_t get_queued_event(struct apm_user *as)
  114. {
  115. as->event_tail = (as->event_tail + 1) % APM_MAX_EVENTS;
  116. return as->events[as->event_tail];
  117. }
  118. static void queue_event(apm_event_t event, struct apm_user *sender)
  119. {
  120. struct apm_user * as;
  121. DBG("apm_emu: queue_event(%s)n", apm_event_name[event-1]);
  122. if (user_list == NULL)
  123. return;
  124. for (as = user_list; as != NULL; as = as->next) {
  125. if (as == sender)
  126. continue;
  127. as->event_head = (as->event_head + 1) % APM_MAX_EVENTS;
  128. if (as->event_head == as->event_tail) {
  129. static int notified;
  130. if (notified++ == 0)
  131.     printk(KERN_ERR "apm_emu: an event queue overflowedn");
  132. as->event_tail = (as->event_tail + 1) % APM_MAX_EVENTS;
  133. }
  134. as->events[as->event_head] = event;
  135. if (!as->suser)
  136. continue;
  137. switch (event) {
  138. case APM_SYS_SUSPEND:
  139. case APM_USER_SUSPEND:
  140. as->suspends_pending++;
  141. suspends_pending++;
  142. break;
  143. case APM_NORMAL_RESUME:
  144. as->suspend_waiting = 0;
  145. break;
  146. }
  147. }
  148. wake_up_interruptible(&apm_waitqueue);
  149. }
  150. static int check_apm_user(struct apm_user *as, const char *func)
  151. {
  152. if ((as == NULL) || (as->magic != APM_BIOS_MAGIC)) {
  153. printk(KERN_ERR "apm_emu: %s passed bad filpn", func);
  154. return 1;
  155. }
  156. return 0;
  157. }
  158. static ssize_t do_read(struct file *fp, char *buf, size_t count, loff_t *ppos)
  159. {
  160. struct apm_user * as;
  161. int i;
  162. apm_event_t event;
  163. DECLARE_WAITQUEUE(wait, current);
  164. as = fp->private_data;
  165. if (check_apm_user(as, "read"))
  166. return -EIO;
  167. if (count < sizeof(apm_event_t))
  168. return -EINVAL;
  169. if (queue_empty(as)) {
  170. if (fp->f_flags & O_NONBLOCK)
  171. return -EAGAIN;
  172. add_wait_queue(&apm_waitqueue, &wait);
  173. repeat:
  174. set_current_state(TASK_INTERRUPTIBLE);
  175. if (queue_empty(as) && !signal_pending(current)) {
  176. schedule();
  177. goto repeat;
  178. }
  179. set_current_state(TASK_RUNNING);
  180. remove_wait_queue(&apm_waitqueue, &wait);
  181. }
  182. i = count;
  183. while ((i >= sizeof(event)) && !queue_empty(as)) {
  184. event = get_queued_event(as);
  185. DBG("apm_emu: do_read, returning: %sn", apm_event_name[event-1]);
  186. if (copy_to_user(buf, &event, sizeof(event))) {
  187. if (i < count)
  188. break;
  189. return -EFAULT;
  190. }
  191. switch (event) {
  192. case APM_SYS_SUSPEND:
  193. case APM_USER_SUSPEND:
  194. as->suspends_read++;
  195. break;
  196. }
  197. buf += sizeof(event);
  198. i -= sizeof(event);
  199. }
  200. if (i < count)
  201. return count - i;
  202. if (signal_pending(current))
  203. return -ERESTARTSYS;
  204. return 0;
  205. }
  206. static unsigned int do_poll(struct file *fp, poll_table * wait)
  207. {
  208. struct apm_user * as;
  209. as = fp->private_data;
  210. if (check_apm_user(as, "poll"))
  211. return 0;
  212. poll_wait(fp, &apm_waitqueue, wait);
  213. if (!queue_empty(as))
  214. return POLLIN | POLLRDNORM;
  215. return 0;
  216. }
  217. static int do_ioctl(struct inode * inode, struct file *filp,
  218.     u_int cmd, u_long arg)
  219. {
  220. struct apm_user * as;
  221. DECLARE_WAITQUEUE(wait, current);
  222. as = filp->private_data;
  223. if (check_apm_user(as, "ioctl"))
  224. return -EIO;
  225. if (!as->suser)
  226. return -EPERM;
  227. switch (cmd) {
  228. case APM_IOC_SUSPEND:
  229. /* If a suspend message was sent to userland, we
  230.  * consider this as a confirmation message
  231.  */
  232. if (as->suspends_read > 0) {
  233. as->suspends_read--;
  234. as->suspends_pending--;
  235. suspends_pending--;
  236. } else {
  237. // Route to PMU suspend ?
  238. break;
  239. }
  240. as->suspend_waiting = 1;
  241. add_wait_queue(&apm_waitqueue, &wait);
  242. DBG("apm_emu: ioctl waking up sleep waiter !n");
  243. wake_up(&apm_suspend_waitqueue);
  244. mb();
  245. while(as->suspend_waiting && !signal_pending(current)) {
  246. set_current_state(TASK_INTERRUPTIBLE);
  247. schedule();
  248. }
  249. set_current_state(TASK_RUNNING);
  250. remove_wait_queue(&apm_waitqueue, &wait);
  251. break;
  252. default:
  253. return -EINVAL;
  254. }
  255. return 0;
  256. }
  257. static int do_release(struct inode * inode, struct file * filp)
  258. {
  259. struct apm_user * as;
  260. as = filp->private_data;
  261. if (check_apm_user(as, "release"))
  262. return 0;
  263. filp->private_data = NULL;
  264. lock_kernel();
  265. if (as->suspends_pending > 0) {
  266. suspends_pending -= as->suspends_pending;
  267. if (suspends_pending <= 0)
  268. wake_up(&apm_suspend_waitqueue);
  269. }
  270. if (user_list == as)
  271. user_list = as->next;
  272. else {
  273. struct apm_user * as1;
  274. for (as1 = user_list;
  275.      (as1 != NULL) && (as1->next != as);
  276.      as1 = as1->next)
  277. ;
  278. if (as1 == NULL)
  279. printk(KERN_ERR "apm: filp not in user listn");
  280. else
  281. as1->next = as->next;
  282. }
  283. unlock_kernel();
  284. kfree(as);
  285. return 0;
  286. }
  287. static int do_open(struct inode * inode, struct file * filp)
  288. {
  289. struct apm_user * as;
  290. as = (struct apm_user *)kmalloc(sizeof(*as), GFP_KERNEL);
  291. if (as == NULL) {
  292. printk(KERN_ERR "apm: cannot allocate struct of size %d bytesn",
  293.        sizeof(*as));
  294. return -ENOMEM;
  295. }
  296. as->magic = APM_BIOS_MAGIC;
  297. as->event_tail = as->event_head = 0;
  298. as->suspends_pending = 0;
  299. as->suspends_read = 0;
  300. /*
  301.  * XXX - this is a tiny bit broken, when we consider BSD
  302.          * process accounting. If the device is opened by root, we
  303.  * instantly flag that we used superuser privs. Who knows,
  304.  * we might close the device immediately without doing a
  305.  * privileged operation -- cevans
  306.  */
  307. as->suser = capable(CAP_SYS_ADMIN);
  308. as->next = user_list;
  309. user_list = as;
  310. filp->private_data = as;
  311. DBG("apm_emu: opened by %s, suser: %dn", current->comm, (int)as->suser);
  312. return 0;
  313. }
  314. /* Wait for all clients to ack the suspend request. APM API
  315.  * doesn't provide a way to NAK, but this could be added
  316.  * here.
  317.  */
  318. static int wait_all_suspend(void)
  319. {
  320. DECLARE_WAITQUEUE(wait, current);
  321. add_wait_queue(&apm_suspend_waitqueue, &wait);
  322. DBG("apm_emu: wait_all_suspend(), suspends_pending: %dn", suspends_pending);
  323. while(suspends_pending > 0) {
  324. set_current_state(TASK_UNINTERRUPTIBLE);
  325. schedule();
  326. }
  327. set_current_state(TASK_RUNNING);
  328. remove_wait_queue(&apm_suspend_waitqueue, &wait);
  329. DBG("apm_emu: wait_all_suspend() - complete !n");
  330. return 1;
  331. }
  332. static int apm_notify_sleep(struct pmu_sleep_notifier *self, int when)
  333. {
  334. switch(when) {
  335. case PBOOK_SLEEP_REQUEST:
  336. queue_event(APM_SYS_SUSPEND, NULL);
  337. if (!wait_all_suspend())
  338. return PBOOK_SLEEP_REFUSE;
  339. break;
  340. case PBOOK_SLEEP_REJECT:
  341. case PBOOK_WAKE:
  342. queue_event(APM_NORMAL_RESUME, NULL);
  343. break;
  344. }
  345. return PBOOK_SLEEP_OK;
  346. }
  347. #define APM_CRITICAL 10
  348. #define APM_LOW 30
  349. static int apm_emu_get_info(char *buf, char **start, off_t fpos, int length)
  350. {
  351. /* Arguments, with symbols from linux/apm_bios.h.  Information is
  352.    from the Get Power Status (0x0a) call unless otherwise noted.
  353.    0) Linux driver version (this will change if format changes)
  354.    1) APM BIOS Version.  Usually 1.0, 1.1 or 1.2.
  355.    2) APM flags from APM Installation Check (0x00):
  356.       bit 0: APM_16_BIT_SUPPORT
  357.       bit 1: APM_32_BIT_SUPPORT
  358.       bit 2: APM_IDLE_SLOWS_CLOCK
  359.       bit 3: APM_BIOS_DISABLED
  360.       bit 4: APM_BIOS_DISENGAGED
  361.    3) AC line status
  362.       0x00: Off-line
  363.       0x01: On-line
  364.       0x02: On backup power (BIOS >= 1.1 only)
  365.       0xff: Unknown
  366.    4) Battery status
  367.       0x00: High
  368.       0x01: Low
  369.       0x02: Critical
  370.       0x03: Charging
  371.       0x04: Selected battery not present (BIOS >= 1.2 only)
  372.       0xff: Unknown
  373.    5) Battery flag
  374.       bit 0: High
  375.       bit 1: Low
  376.       bit 2: Critical
  377.       bit 3: Charging
  378.       bit 7: No system battery
  379.       0xff: Unknown
  380.    6) Remaining battery life (percentage of charge):
  381.       0-100: valid
  382.       -1: Unknown
  383.    7) Remaining battery life (time units):
  384.       Number of remaining minutes or seconds
  385.       -1: Unknown
  386.    8) min = minutes; sec = seconds */
  387. unsigned short  ac_line_status = 0xff;
  388. unsigned short  battery_status = 0xff;
  389. unsigned short  battery_flag   = 0xff;
  390. int percentage     = -1;
  391. int             time_units     = -1;
  392. int real_count     = 0;
  393. int i;
  394. char * p = buf;
  395. ac_line_status = ((pmu_power_flags & PMU_PWR_AC_PRESENT) != 0);
  396. for (i=0; i<pmu_battery_count; i++) {
  397. if (percentage < 0)
  398. percentage = 0;
  399. if (time_units < 0)
  400. time_units = 0;
  401. if (pmu_batteries[i].flags & PMU_BATT_PRESENT) {
  402. percentage += (pmu_batteries[i].charge * 100) /
  403. pmu_batteries[i].max_charge;
  404. /* hrm... should we provide the remaining charge
  405.  * time when AC is plugged ? If yes, just remove
  406.  * that test --BenH
  407.  */
  408. if (!ac_line_status)
  409. time_units += pmu_batteries[i].time_remaining / 60;
  410. real_count++;
  411. if (!(pmu_batteries[i].flags & PMU_BATT_CHARGING))
  412. battery_flag &= ~0x08;
  413. }
  414. }
  415. if (real_count) {
  416. percentage /= real_count;
  417. if (battery_flag & 0x08) {
  418. battery_status = 0x03;
  419. battery_flag = 0x08;
  420. } else if (percentage <= APM_CRITICAL) {
  421. battery_status = 0x02;
  422. battery_flag = 0x04;
  423. } else if (percentage <= APM_LOW) {
  424. battery_status = 0x01;
  425. battery_flag = 0x02;
  426. } else {
  427. battery_status = 0x00;
  428. battery_flag = 0x01;
  429. }
  430. }
  431. p += sprintf(p, "%s %d.%d 0x%02x 0x%02x 0x%02x 0x%02x %d%% %d %sn",
  432.      driver_version,
  433.      (FAKE_APM_BIOS_VERSION >> 8) & 0xff,
  434.      FAKE_APM_BIOS_VERSION & 0xff,
  435.      0,
  436.      ac_line_status,
  437.      battery_status,
  438.      battery_flag,
  439.      percentage,
  440.      time_units,
  441.      "min");
  442. return p - buf;
  443. }
  444. static struct file_operations apm_bios_fops = {
  445. owner: THIS_MODULE,
  446. read: do_read,
  447. poll: do_poll,
  448. ioctl: do_ioctl,
  449. open: do_open,
  450. release: do_release,
  451. };
  452. static struct miscdevice apm_device = {
  453. APM_MINOR_DEV,
  454. "apm_bios",
  455. &apm_bios_fops
  456. };
  457. static int __init apm_emu_init(void)
  458. {
  459. struct proc_dir_entry *apm_proc;
  460. if (sys_ctrler != SYS_CTRLER_PMU) {
  461. printk(KERN_INFO "apm_emu: Requires a machine with a PMU.n");
  462. return -ENODEV;
  463. }
  464. apm_proc = create_proc_info_entry("apm", 0, NULL, apm_emu_get_info);
  465. if (apm_proc)
  466. SET_MODULE_OWNER(apm_proc);
  467. misc_register(&apm_device);
  468. pmu_register_sleep_notifier(&apm_sleep_notifier);
  469. printk(KERN_INFO "apm_emu: APM Emulation %s initialized.n", driver_version);
  470. return 0;
  471. }
  472. static void __exit apm_emu_exit(void)
  473. {
  474. pmu_unregister_sleep_notifier(&apm_sleep_notifier);
  475. misc_deregister(&apm_device);
  476. remove_proc_entry("apm", NULL);
  477. printk(KERN_INFO "apm_emu: APM Emulation removed.n");
  478. }
  479. module_init(apm_emu_init);
  480. module_exit(apm_emu_exit);
  481. MODULE_AUTHOR("Benjamin Herrenschmidt");
  482. MODULE_DESCRIPTION("APM emulation layer for PowerMac");
  483. MODULE_LICENSE("GPL");
  484. EXPORT_NO_SYMBOLS;