apm_32.c 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. /* -*- linux-c -*-
  2. * APM BIOS driver for Linux
  3. * Copyright 1994-2001 Stephen Rothwell (sfr@canb.auug.org.au)
  4. *
  5. * Initial development of this driver was funded by NEC Australia P/L
  6. * and NEC Corporation
  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. * October 1995, Rik Faith (faith@cs.unc.edu):
  19. * Minor enhancements and updates (to the patch set) for 1.3.x
  20. * Documentation
  21. * January 1996, Rik Faith (faith@cs.unc.edu):
  22. * Make /proc/apm easy to format (bump driver version)
  23. * March 1996, Rik Faith (faith@cs.unc.edu):
  24. * Prohibit APM BIOS calls unless apm_enabled.
  25. * (Thanks to Ulrich Windl <Ulrich.Windl@rz.uni-regensburg.de>)
  26. * April 1996, Stephen Rothwell (sfr@canb.auug.org.au)
  27. * Version 1.0 and 1.1
  28. * May 1996, Version 1.2
  29. * Feb 1998, Version 1.3
  30. * Feb 1998, Version 1.4
  31. * Aug 1998, Version 1.5
  32. * Sep 1998, Version 1.6
  33. * Nov 1998, Version 1.7
  34. * Jan 1999, Version 1.8
  35. * Jan 1999, Version 1.9
  36. * Oct 1999, Version 1.10
  37. * Nov 1999, Version 1.11
  38. * Jan 2000, Version 1.12
  39. * Feb 2000, Version 1.13
  40. * Nov 2000, Version 1.14
  41. * Oct 2001, Version 1.15
  42. * Jan 2002, Version 1.16
  43. * Oct 2002, Version 1.16ac
  44. *
  45. * History:
  46. * 0.6b: first version in official kernel, Linux 1.3.46
  47. * 0.7: changed /proc/apm format, Linux 1.3.58
  48. * 0.8: fixed gcc 2.7.[12] compilation problems, Linux 1.3.59
  49. * 0.9: only call bios if bios is present, Linux 1.3.72
  50. * 1.0: use fixed device number, consolidate /proc/apm into this file,
  51. * Linux 1.3.85
  52. * 1.1: support user-space standby and suspend, power off after system
  53. * halted, Linux 1.3.98
  54. * 1.2: When resetting RTC after resume, take care so that the time
  55. * is only incorrect by 30-60mS (vs. 1S previously) (Gabor J. Toth
  56. * <jtoth@princeton.edu>); improve interaction between
  57. * screen-blanking and gpm (Stephen Rothwell); Linux 1.99.4
  58. * 1.2a:Simple change to stop mysterious bug reports with SMP also added
  59. * levels to the printk calls. APM is not defined for SMP machines.
  60. * The new replacment for it is, but Linux doesn't yet support this.
  61. * Alan Cox Linux 2.1.55
  62. * 1.3: Set up a valid data descriptor 0x40 for buggy BIOS's
  63. * 1.4: Upgraded to support APM 1.2. Integrated ThinkPad suspend patch by
  64. * Dean Gaudet <dgaudet@arctic.org>.
  65. * C. Scott Ananian <cananian@alumni.princeton.edu> Linux 2.1.87
  66. * 1.5: Fix segment register reloading (in case of bad segments saved
  67. * across BIOS call).
  68. * Stephen Rothwell
  69. * 1.6: Cope with complier/assembler differences.
  70. * Only try to turn off the first display device.
  71. * Fix OOPS at power off with no APM BIOS by Jan Echternach
  72. * <echter@informatik.uni-rostock.de>
  73. * Stephen Rothwell
  74. * 1.7: Modify driver's cached copy of the disabled/disengaged flags
  75. * to reflect current state of APM BIOS.
  76. * Chris Rankin <rankinc@bellsouth.net>
  77. * Reset interrupt 0 timer to 100Hz after suspend
  78. * Chad Miller <cmiller@surfsouth.com>
  79. * Add CONFIG_APM_IGNORE_SUSPEND_BOUNCE
  80. * Richard Gooch <rgooch@atnf.csiro.au>
  81. * Allow boot time disabling of APM
  82. * Make boot messages far less verbose by default
  83. * Make asm safer
  84. * Stephen Rothwell
  85. * 1.8: Add CONFIG_APM_RTC_IS_GMT
  86. * Richard Gooch <rgooch@atnf.csiro.au>
  87. * change APM_NOINTS to CONFIG_APM_ALLOW_INTS
  88. * remove dependency on CONFIG_PROC_FS
  89. * Stephen Rothwell
  90. * 1.9: Fix small typo. <laslo@wodip.opole.pl>
  91. * Try to cope with BIOS's that need to have all display
  92. * devices blanked and not just the first one.
  93. * Ross Paterson <ross@soi.city.ac.uk>
  94. * Fix segment limit setting it has always been wrong as
  95. * the segments needed to have byte granularity.
  96. * Mark a few things __init.
  97. * Add hack to allow power off of SMP systems by popular request.
  98. * Use CONFIG_SMP instead of __SMP__
  99. * Ignore BOUNCES for three seconds.
  100. * Stephen Rothwell
  101. * 1.10: Fix for Thinkpad return code.
  102. * Merge 2.2 and 2.3 drivers.
  103. * Remove APM dependencies in arch/i386/kernel/process.c
  104. * Remove APM dependencies in drivers/char/sysrq.c
  105. * Reset time across standby.
  106. * Allow more inititialisation on SMP.
  107. * Remove CONFIG_APM_POWER_OFF and make it boot time
  108. * configurable (default on).
  109. * Make debug only a boot time parameter (remove APM_DEBUG).
  110. * Try to blank all devices on any error.
  111. * 1.11: Remove APM dependencies in drivers/char/console.c
  112. * Check nr_running to detect if we are idle (from
  113. * Borislav Deianov <borislav@lix.polytechnique.fr>)
  114. * Fix for bioses that don't zero the top part of the
  115. * entrypoint offset (Mario Sitta <sitta@al.unipmn.it>)
  116. * (reported by Panos Katsaloulis <teras@writeme.com>).
  117. * Real mode power off patch (Walter Hofmann
  118. * <Walter.Hofmann@physik.stud.uni-erlangen.de>).
  119. * 1.12: Remove CONFIG_SMP as the compiler will optimize
  120. * the code away anyway (smp_num_cpus == 1 in UP)
  121. * noted by Artur Skawina <skawina@geocities.com>.
  122. * Make power off under SMP work again.
  123. * Fix thinko with initial engaging of BIOS.
  124. * Make sure power off only happens on CPU 0
  125. * (Paul "Rusty" Russell <rusty@rustcorp.com.au>).
  126. * Do error notification to user mode if BIOS calls fail.
  127. * Move entrypoint offset fix to ...boot/setup.S
  128. * where it belongs (Cosmos <gis88564@cis.nctu.edu.tw>).
  129. * Remove smp-power-off. SMP users must now specify
  130. * "apm=power-off" on the kernel command line. Suggested
  131. * by Jim Avera <jima@hal.com>, modified by Alan Cox
  132. * <alan@lxorguk.ukuu.org.uk>.
  133. * Register the /proc/apm entry even on SMP so that
  134. * scripts that check for it before doing power off
  135. * work (Jim Avera <jima@hal.com>).
  136. * 1.13: Changes for new pm_ interfaces (Andy Henroid
  137. * <andy_henroid@yahoo.com>).
  138. * Modularize the code.
  139. * Fix the Thinkpad (again) :-( (CONFIG_APM_IGNORE_MULTIPLE_SUSPENDS
  140. * is now the way life works).
  141. * Fix thinko in suspend() (wrong return).
  142. * Notify drivers on critical suspend.
  143. * Make kapmd absorb more idle time (Pavel Machek <pavel@suse.cz>
  144. * modified by sfr).
  145. * Disable interrupts while we are suspended (Andy Henroid
  146. * <andy_henroid@yahoo.com> fixed by sfr).
  147. * Make power off work on SMP again (Tony Hoyle
  148. * <tmh@magenta-logic.com> and <zlatko@iskon.hr>) modified by sfr.
  149. * Remove CONFIG_APM_SUSPEND_BOUNCE. The bounce ignore
  150. * interval is now configurable.
  151. * 1.14: Make connection version persist across module unload/load.
  152. * Enable and engage power management earlier.
  153. * Disengage power management on module unload.
  154. * Changed to use the sysrq-register hack for registering the
  155. * power off function called by magic sysrq based upon discussions
  156. * in irc://irc.openprojects.net/#kernelnewbies
  157. * (Crutcher Dunnavant <crutcher+kernel@datastacks.com>).
  158. * Make CONFIG_APM_REAL_MODE_POWER_OFF run time configurable.
  159. * (Arjan van de Ven <arjanv@redhat.com>) modified by sfr.
  160. * Work around byte swap bug in one of the Vaio's BIOS's
  161. * (Marc Boucher <marc@mbsi.ca>).
  162. * Exposed the disable flag to dmi so that we can handle known
  163. * broken APM (Alan Cox <alan@redhat.com>).
  164. * 1.14ac: If the BIOS says "I slowed the CPU down" then don't spin
  165. * calling it - instead idle. (Alan Cox <alan@redhat.com>)
  166. * If an APM idle fails log it and idle sensibly
  167. * 1.15: Don't queue events to clients who open the device O_WRONLY.
  168. * Don't expect replies from clients who open the device O_RDONLY.
  169. * (Idea from Thomas Hood)
  170. * Minor waitqueue cleanups. (John Fremlin <chief@bandits.org>)
  171. * 1.16: Fix idle calling. (Andreas Steinmetz <ast@domdv.de> et al.)
  172. * Notify listeners of standby or suspend events before notifying
  173. * drivers. Return EBUSY to ioctl() if suspend is rejected.
  174. * (Russell King <rmk@arm.linux.org.uk> and Thomas Hood)
  175. * Ignore first resume after we generate our own resume event
  176. * after a suspend (Thomas Hood)
  177. * Daemonize now gets rid of our controlling terminal (sfr).
  178. * CONFIG_APM_CPU_IDLE now just affects the default value of
  179. * idle_threshold (sfr).
  180. * Change name of kernel apm daemon (as it no longer idles) (sfr).
  181. * 1.16ac: Fix up SMP support somewhat. You can now force SMP on and we
  182. * make _all_ APM calls on the CPU#0. Fix unsafe sign bug.
  183. * TODO: determine if its "boot CPU" or "CPU0" we want to lock to.
  184. *
  185. * APM 1.1 Reference:
  186. *
  187. * Intel Corporation, Microsoft Corporation. Advanced Power Management
  188. * (APM) BIOS Interface Specification, Revision 1.1, September 1993.
  189. * Intel Order Number 241704-001. Microsoft Part Number 781-110-X01.
  190. *
  191. * [This document is available free from Intel by calling 800.628.8686 (fax
  192. * 916.356.6100) or 800.548.4725; or via anonymous ftp from
  193. * ftp://ftp.intel.com/pub/IAL/software_specs/apmv11.doc. It is also
  194. * available from Microsoft by calling 206.882.8080.]
  195. *
  196. * APM 1.2 Reference:
  197. * Intel Corporation, Microsoft Corporation. Advanced Power Management
  198. * (APM) BIOS Interface Specification, Revision 1.2, February 1996.
  199. *
  200. * [This document is available from Microsoft at:
  201. * http://www.microsoft.com/whdc/archive/amp_12.mspx]
  202. */
  203. #include <linux/module.h>
  204. #include <linux/poll.h>
  205. #include <linux/types.h>
  206. #include <linux/stddef.h>
  207. #include <linux/timer.h>
  208. #include <linux/fcntl.h>
  209. #include <linux/slab.h>
  210. #include <linux/stat.h>
  211. #include <linux/proc_fs.h>
  212. #include <linux/seq_file.h>
  213. #include <linux/miscdevice.h>
  214. #include <linux/apm_bios.h>
  215. #include <linux/init.h>
  216. #include <linux/time.h>
  217. #include <linux/sched.h>
  218. #include <linux/pm.h>
  219. #include <linux/pm_legacy.h>
  220. #include <linux/capability.h>
  221. #include <linux/device.h>
  222. #include <linux/kernel.h>
  223. #include <linux/freezer.h>
  224. #include <linux/smp.h>
  225. #include <linux/dmi.h>
  226. #include <linux/suspend.h>
  227. #include <linux/kthread.h>
  228. #include <asm/system.h>
  229. #include <asm/uaccess.h>
  230. #include <asm/desc.h>
  231. #include <asm/i8253.h>
  232. #include <asm/paravirt.h>
  233. #include <asm/reboot.h>
  234. #include "io_ports.h"
  235. #if defined(CONFIG_APM_DISPLAY_BLANK) && defined(CONFIG_VT)
  236. extern int (*console_blank_hook)(int);
  237. #endif
  238. /*
  239. * The apm_bios device is one of the misc char devices.
  240. * This is its minor number.
  241. */
  242. #define APM_MINOR_DEV 134
  243. /*
  244. * See Documentation/Config.help for the configuration options.
  245. *
  246. * Various options can be changed at boot time as follows:
  247. * (We allow underscores for compatibility with the modules code)
  248. * apm=on/off enable/disable APM
  249. * [no-]allow[-_]ints allow interrupts during BIOS calls
  250. * [no-]broken[-_]psr BIOS has a broken GetPowerStatus call
  251. * [no-]realmode[-_]power[-_]off switch to real mode before
  252. * powering off
  253. * [no-]debug log some debugging messages
  254. * [no-]power[-_]off power off on shutdown
  255. * [no-]smp Use apm even on an SMP box
  256. * bounce[-_]interval=<n> number of ticks to ignore suspend
  257. * bounces
  258. * idle[-_]threshold=<n> System idle percentage above which to
  259. * make APM BIOS idle calls. Set it to
  260. * 100 to disable.
  261. * idle[-_]period=<n> Period (in 1/100s of a second) over
  262. * which the idle percentage is
  263. * calculated.
  264. */
  265. /* KNOWN PROBLEM MACHINES:
  266. *
  267. * U: TI 4000M TravelMate: BIOS is *NOT* APM compliant
  268. * [Confirmed by TI representative]
  269. * ?: ACER 486DX4/75: uses dseg 0040, in violation of APM specification
  270. * [Confirmed by BIOS disassembly]
  271. * [This may work now ...]
  272. * P: Toshiba 1950S: battery life information only gets updated after resume
  273. * P: Midwest Micro Soundbook Elite DX2/66 monochrome: screen blanking
  274. * broken in BIOS [Reported by Garst R. Reese <reese@isn.net>]
  275. * ?: AcerNote-950: oops on reading /proc/apm - workaround is a WIP
  276. * Neale Banks <neale@lowendale.com.au> December 2000
  277. *
  278. * Legend: U = unusable with APM patches
  279. * P = partially usable with APM patches
  280. */
  281. /*
  282. * Define as 1 to make the driver always call the APM BIOS busy
  283. * routine even if the clock was not reported as slowed by the
  284. * idle routine. Otherwise, define as 0.
  285. */
  286. #define ALWAYS_CALL_BUSY 1
  287. /*
  288. * Define to make the APM BIOS calls zero all data segment registers (so
  289. * that an incorrect BIOS implementation will cause a kernel panic if it
  290. * tries to write to arbitrary memory).
  291. */
  292. #define APM_ZERO_SEGS
  293. #include "apm.h"
  294. /*
  295. * Define to re-initialize the interrupt 0 timer to 100 Hz after a suspend.
  296. * This patched by Chad Miller <cmiller@surfsouth.com>, original code by
  297. * David Chen <chen@ctpa04.mit.edu>
  298. */
  299. #undef INIT_TIMER_AFTER_SUSPEND
  300. #ifdef INIT_TIMER_AFTER_SUSPEND
  301. #include <linux/timex.h>
  302. #include <asm/io.h>
  303. #include <linux/delay.h>
  304. #endif
  305. /*
  306. * Need to poll the APM BIOS every second
  307. */
  308. #define APM_CHECK_TIMEOUT (HZ)
  309. /*
  310. * Ignore suspend events for this amount of time after a resume
  311. */
  312. #define DEFAULT_BOUNCE_INTERVAL (3 * HZ)
  313. /*
  314. * Maximum number of events stored
  315. */
  316. #define APM_MAX_EVENTS 20
  317. /*
  318. * The per-file APM data
  319. */
  320. struct apm_user {
  321. int magic;
  322. struct apm_user * next;
  323. unsigned int suser: 1;
  324. unsigned int writer: 1;
  325. unsigned int reader: 1;
  326. unsigned int suspend_wait: 1;
  327. int suspend_result;
  328. int suspends_pending;
  329. int standbys_pending;
  330. int suspends_read;
  331. int standbys_read;
  332. int event_head;
  333. int event_tail;
  334. apm_event_t events[APM_MAX_EVENTS];
  335. };
  336. /*
  337. * The magic number in apm_user
  338. */
  339. #define APM_BIOS_MAGIC 0x4101
  340. /*
  341. * idle percentage above which bios idle calls are done
  342. */
  343. #ifdef CONFIG_APM_CPU_IDLE
  344. #define DEFAULT_IDLE_THRESHOLD 95
  345. #else
  346. #define DEFAULT_IDLE_THRESHOLD 100
  347. #endif
  348. #define DEFAULT_IDLE_PERIOD (100 / 3)
  349. /*
  350. * Local variables
  351. */
  352. static struct {
  353. unsigned long offset;
  354. unsigned short segment;
  355. } apm_bios_entry;
  356. static int clock_slowed;
  357. static int idle_threshold __read_mostly = DEFAULT_IDLE_THRESHOLD;
  358. static int idle_period __read_mostly = DEFAULT_IDLE_PERIOD;
  359. static int set_pm_idle;
  360. static int suspends_pending;
  361. static int standbys_pending;
  362. static int ignore_sys_suspend;
  363. static int ignore_normal_resume;
  364. static int bounce_interval __read_mostly = DEFAULT_BOUNCE_INTERVAL;
  365. static int debug __read_mostly;
  366. static int smp __read_mostly;
  367. static int apm_disabled = -1;
  368. #ifdef CONFIG_SMP
  369. static int power_off;
  370. #else
  371. static int power_off = 1;
  372. #endif
  373. #ifdef CONFIG_APM_REAL_MODE_POWER_OFF
  374. static int realmode_power_off = 1;
  375. #else
  376. static int realmode_power_off;
  377. #endif
  378. #ifdef CONFIG_APM_ALLOW_INTS
  379. static int allow_ints = 1;
  380. #else
  381. static int allow_ints;
  382. #endif
  383. static int broken_psr;
  384. static DECLARE_WAIT_QUEUE_HEAD(apm_waitqueue);
  385. static DECLARE_WAIT_QUEUE_HEAD(apm_suspend_waitqueue);
  386. static struct apm_user * user_list;
  387. static DEFINE_SPINLOCK(user_list_lock);
  388. static const struct desc_struct bad_bios_desc = { 0, 0x00409200 };
  389. static const char driver_version[] = "1.16ac"; /* no spaces */
  390. static struct task_struct *kapmd_task;
  391. /*
  392. * APM event names taken from the APM 1.2 specification. These are
  393. * the message codes that the BIOS uses to tell us about events
  394. */
  395. static const char * const apm_event_name[] = {
  396. "system standby",
  397. "system suspend",
  398. "normal resume",
  399. "critical resume",
  400. "low battery",
  401. "power status change",
  402. "update time",
  403. "critical suspend",
  404. "user standby",
  405. "user suspend",
  406. "system standby resume",
  407. "capabilities change"
  408. };
  409. #define NR_APM_EVENT_NAME ARRAY_SIZE(apm_event_name)
  410. typedef struct lookup_t {
  411. int key;
  412. char * msg;
  413. } lookup_t;
  414. /*
  415. * The BIOS returns a set of standard error codes in AX when the
  416. * carry flag is set.
  417. */
  418. static const lookup_t error_table[] = {
  419. /* N/A { APM_SUCCESS, "Operation succeeded" }, */
  420. { APM_DISABLED, "Power management disabled" },
  421. { APM_CONNECTED, "Real mode interface already connected" },
  422. { APM_NOT_CONNECTED, "Interface not connected" },
  423. { APM_16_CONNECTED, "16 bit interface already connected" },
  424. /* N/A { APM_16_UNSUPPORTED, "16 bit interface not supported" }, */
  425. { APM_32_CONNECTED, "32 bit interface already connected" },
  426. { APM_32_UNSUPPORTED, "32 bit interface not supported" },
  427. { APM_BAD_DEVICE, "Unrecognized device ID" },
  428. { APM_BAD_PARAM, "Parameter out of range" },
  429. { APM_NOT_ENGAGED, "Interface not engaged" },
  430. { APM_BAD_FUNCTION, "Function not supported" },
  431. { APM_RESUME_DISABLED, "Resume timer disabled" },
  432. { APM_BAD_STATE, "Unable to enter requested state" },
  433. /* N/A { APM_NO_EVENTS, "No events pending" }, */
  434. { APM_NO_ERROR, "BIOS did not set a return code" },
  435. { APM_NOT_PRESENT, "No APM present" }
  436. };
  437. #define ERROR_COUNT ARRAY_SIZE(error_table)
  438. /**
  439. * apm_error - display an APM error
  440. * @str: information string
  441. * @err: APM BIOS return code
  442. *
  443. * Write a meaningful log entry to the kernel log in the event of
  444. * an APM error.
  445. */
  446. static void apm_error(char *str, int err)
  447. {
  448. int i;
  449. for (i = 0; i < ERROR_COUNT; i++)
  450. if (error_table[i].key == err) break;
  451. if (i < ERROR_COUNT)
  452. printk(KERN_NOTICE "apm: %s: %s\n", str, error_table[i].msg);
  453. else
  454. printk(KERN_NOTICE "apm: %s: unknown error code %#2.2x\n",
  455. str, err);
  456. }
  457. /*
  458. * Lock APM functionality to physical CPU 0
  459. */
  460. #ifdef CONFIG_SMP
  461. static cpumask_t apm_save_cpus(void)
  462. {
  463. cpumask_t x = current->cpus_allowed;
  464. /* Some bioses don't like being called from CPU != 0 */
  465. set_cpus_allowed(current, cpumask_of_cpu(0));
  466. BUG_ON(smp_processor_id() != 0);
  467. return x;
  468. }
  469. static inline void apm_restore_cpus(cpumask_t mask)
  470. {
  471. set_cpus_allowed(current, mask);
  472. }
  473. #else
  474. /*
  475. * No CPU lockdown needed on a uniprocessor
  476. */
  477. #define apm_save_cpus() (current->cpus_allowed)
  478. #define apm_restore_cpus(x) (void)(x)
  479. #endif
  480. /*
  481. * These are the actual BIOS calls. Depending on APM_ZERO_SEGS and
  482. * apm_info.allow_ints, we are being really paranoid here! Not only
  483. * are interrupts disabled, but all the segment registers (except SS)
  484. * are saved and zeroed this means that if the BIOS tries to reference
  485. * any data without explicitly loading the segment registers, the kernel
  486. * will fault immediately rather than have some unforeseen circumstances
  487. * for the rest of the kernel. And it will be very obvious! :-) Doing
  488. * this depends on CS referring to the same physical memory as DS so that
  489. * DS can be zeroed before the call. Unfortunately, we can't do anything
  490. * about the stack segment/pointer. Also, we tell the compiler that
  491. * everything could change.
  492. *
  493. * Also, we KNOW that for the non error case of apm_bios_call, there
  494. * is no useful data returned in the low order 8 bits of eax.
  495. */
  496. static inline unsigned long __apm_irq_save(void)
  497. {
  498. unsigned long flags;
  499. local_save_flags(flags);
  500. if (apm_info.allow_ints) {
  501. if (irqs_disabled_flags(flags))
  502. local_irq_enable();
  503. } else
  504. local_irq_disable();
  505. return flags;
  506. }
  507. #define apm_irq_save(flags) \
  508. do { flags = __apm_irq_save(); } while (0)
  509. static inline void apm_irq_restore(unsigned long flags)
  510. {
  511. if (irqs_disabled_flags(flags))
  512. local_irq_disable();
  513. else if (irqs_disabled())
  514. local_irq_enable();
  515. }
  516. #ifdef APM_ZERO_SEGS
  517. # define APM_DECL_SEGS \
  518. unsigned int saved_fs; unsigned int saved_gs;
  519. # define APM_DO_SAVE_SEGS \
  520. savesegment(fs, saved_fs); savesegment(gs, saved_gs)
  521. # define APM_DO_RESTORE_SEGS \
  522. loadsegment(fs, saved_fs); loadsegment(gs, saved_gs)
  523. #else
  524. # define APM_DECL_SEGS
  525. # define APM_DO_SAVE_SEGS
  526. # define APM_DO_RESTORE_SEGS
  527. #endif
  528. /**
  529. * apm_bios_call - Make an APM BIOS 32bit call
  530. * @func: APM function to execute
  531. * @ebx_in: EBX register for call entry
  532. * @ecx_in: ECX register for call entry
  533. * @eax: EAX register return
  534. * @ebx: EBX register return
  535. * @ecx: ECX register return
  536. * @edx: EDX register return
  537. * @esi: ESI register return
  538. *
  539. * Make an APM call using the 32bit protected mode interface. The
  540. * caller is responsible for knowing if APM BIOS is configured and
  541. * enabled. This call can disable interrupts for a long period of
  542. * time on some laptops. The return value is in AH and the carry
  543. * flag is loaded into AL. If there is an error, then the error
  544. * code is returned in AH (bits 8-15 of eax) and this function
  545. * returns non-zero.
  546. */
  547. static u8 apm_bios_call(u32 func, u32 ebx_in, u32 ecx_in,
  548. u32 *eax, u32 *ebx, u32 *ecx, u32 *edx, u32 *esi)
  549. {
  550. APM_DECL_SEGS
  551. unsigned long flags;
  552. cpumask_t cpus;
  553. int cpu;
  554. struct desc_struct save_desc_40;
  555. struct desc_struct *gdt;
  556. cpus = apm_save_cpus();
  557. cpu = get_cpu();
  558. gdt = get_cpu_gdt_table(cpu);
  559. save_desc_40 = gdt[0x40 / 8];
  560. gdt[0x40 / 8] = bad_bios_desc;
  561. apm_irq_save(flags);
  562. APM_DO_SAVE_SEGS;
  563. apm_bios_call_asm(func, ebx_in, ecx_in, eax, ebx, ecx, edx, esi);
  564. APM_DO_RESTORE_SEGS;
  565. apm_irq_restore(flags);
  566. gdt[0x40 / 8] = save_desc_40;
  567. put_cpu();
  568. apm_restore_cpus(cpus);
  569. return *eax & 0xff;
  570. }
  571. /**
  572. * apm_bios_call_simple - make a simple APM BIOS 32bit call
  573. * @func: APM function to invoke
  574. * @ebx_in: EBX register value for BIOS call
  575. * @ecx_in: ECX register value for BIOS call
  576. * @eax: EAX register on return from the BIOS call
  577. *
  578. * Make a BIOS call that returns one value only, or just status.
  579. * If there is an error, then the error code is returned in AH
  580. * (bits 8-15 of eax) and this function returns non-zero. This is
  581. * used for simpler BIOS operations. This call may hold interrupts
  582. * off for a long time on some laptops.
  583. */
  584. static u8 apm_bios_call_simple(u32 func, u32 ebx_in, u32 ecx_in, u32 *eax)
  585. {
  586. u8 error;
  587. APM_DECL_SEGS
  588. unsigned long flags;
  589. cpumask_t cpus;
  590. int cpu;
  591. struct desc_struct save_desc_40;
  592. struct desc_struct *gdt;
  593. cpus = apm_save_cpus();
  594. cpu = get_cpu();
  595. gdt = get_cpu_gdt_table(cpu);
  596. save_desc_40 = gdt[0x40 / 8];
  597. gdt[0x40 / 8] = bad_bios_desc;
  598. apm_irq_save(flags);
  599. APM_DO_SAVE_SEGS;
  600. error = apm_bios_call_simple_asm(func, ebx_in, ecx_in, eax);
  601. APM_DO_RESTORE_SEGS;
  602. apm_irq_restore(flags);
  603. gdt[0x40 / 8] = save_desc_40;
  604. put_cpu();
  605. apm_restore_cpus(cpus);
  606. return error;
  607. }
  608. /**
  609. * apm_driver_version - APM driver version
  610. * @val: loaded with the APM version on return
  611. *
  612. * Retrieve the APM version supported by the BIOS. This is only
  613. * supported for APM 1.1 or higher. An error indicates APM 1.0 is
  614. * probably present.
  615. *
  616. * On entry val should point to a value indicating the APM driver
  617. * version with the high byte being the major and the low byte the
  618. * minor number both in BCD
  619. *
  620. * On return it will hold the BIOS revision supported in the
  621. * same format.
  622. */
  623. static int apm_driver_version(u_short *val)
  624. {
  625. u32 eax;
  626. if (apm_bios_call_simple(APM_FUNC_VERSION, 0, *val, &eax))
  627. return (eax >> 8) & 0xff;
  628. *val = eax;
  629. return APM_SUCCESS;
  630. }
  631. /**
  632. * apm_get_event - get an APM event from the BIOS
  633. * @event: pointer to the event
  634. * @info: point to the event information
  635. *
  636. * The APM BIOS provides a polled information for event
  637. * reporting. The BIOS expects to be polled at least every second
  638. * when events are pending. When a message is found the caller should
  639. * poll until no more messages are present. However, this causes
  640. * problems on some laptops where a suspend event notification is
  641. * not cleared until it is acknowledged.
  642. *
  643. * Additional information is returned in the info pointer, providing
  644. * that APM 1.2 is in use. If no messges are pending the value 0x80
  645. * is returned (No power management events pending).
  646. */
  647. static int apm_get_event(apm_event_t *event, apm_eventinfo_t *info)
  648. {
  649. u32 eax;
  650. u32 ebx;
  651. u32 ecx;
  652. u32 dummy;
  653. if (apm_bios_call(APM_FUNC_GET_EVENT, 0, 0, &eax, &ebx, &ecx,
  654. &dummy, &dummy))
  655. return (eax >> 8) & 0xff;
  656. *event = ebx;
  657. if (apm_info.connection_version < 0x0102)
  658. *info = ~0; /* indicate info not valid */
  659. else
  660. *info = ecx;
  661. return APM_SUCCESS;
  662. }
  663. /**
  664. * set_power_state - set the power management state
  665. * @what: which items to transition
  666. * @state: state to transition to
  667. *
  668. * Request an APM change of state for one or more system devices. The
  669. * processor state must be transitioned last of all. what holds the
  670. * class of device in the upper byte and the device number (0xFF for
  671. * all) for the object to be transitioned.
  672. *
  673. * The state holds the state to transition to, which may in fact
  674. * be an acceptance of a BIOS requested state change.
  675. */
  676. static int set_power_state(u_short what, u_short state)
  677. {
  678. u32 eax;
  679. if (apm_bios_call_simple(APM_FUNC_SET_STATE, what, state, &eax))
  680. return (eax >> 8) & 0xff;
  681. return APM_SUCCESS;
  682. }
  683. /**
  684. * set_system_power_state - set system wide power state
  685. * @state: which state to enter
  686. *
  687. * Transition the entire system into a new APM power state.
  688. */
  689. static int set_system_power_state(u_short state)
  690. {
  691. return set_power_state(APM_DEVICE_ALL, state);
  692. }
  693. /**
  694. * apm_do_idle - perform power saving
  695. *
  696. * This function notifies the BIOS that the processor is (in the view
  697. * of the OS) idle. It returns -1 in the event that the BIOS refuses
  698. * to handle the idle request. On a success the function returns 1
  699. * if the BIOS did clock slowing or 0 otherwise.
  700. */
  701. static int apm_do_idle(void)
  702. {
  703. u32 eax;
  704. u8 ret = 0;
  705. int idled = 0;
  706. int polling;
  707. polling = !!(current_thread_info()->status & TS_POLLING);
  708. if (polling) {
  709. current_thread_info()->status &= ~TS_POLLING;
  710. /*
  711. * TS_POLLING-cleared state must be visible before we
  712. * test NEED_RESCHED:
  713. */
  714. smp_mb();
  715. }
  716. if (!need_resched()) {
  717. idled = 1;
  718. ret = apm_bios_call_simple(APM_FUNC_IDLE, 0, 0, &eax);
  719. }
  720. if (polling)
  721. current_thread_info()->status |= TS_POLLING;
  722. if (!idled)
  723. return 0;
  724. if (ret) {
  725. static unsigned long t;
  726. /* This always fails on some SMP boards running UP kernels.
  727. * Only report the failure the first 5 times.
  728. */
  729. if (++t < 5)
  730. {
  731. printk(KERN_DEBUG "apm_do_idle failed (%d)\n",
  732. (eax >> 8) & 0xff);
  733. t = jiffies;
  734. }
  735. return -1;
  736. }
  737. clock_slowed = (apm_info.bios.flags & APM_IDLE_SLOWS_CLOCK) != 0;
  738. return clock_slowed;
  739. }
  740. /**
  741. * apm_do_busy - inform the BIOS the CPU is busy
  742. *
  743. * Request that the BIOS brings the CPU back to full performance.
  744. */
  745. static void apm_do_busy(void)
  746. {
  747. u32 dummy;
  748. if (clock_slowed || ALWAYS_CALL_BUSY) {
  749. (void) apm_bios_call_simple(APM_FUNC_BUSY, 0, 0, &dummy);
  750. clock_slowed = 0;
  751. }
  752. }
  753. /*
  754. * If no process has really been interested in
  755. * the CPU for some time, we want to call BIOS
  756. * power management - we probably want
  757. * to conserve power.
  758. */
  759. #define IDLE_CALC_LIMIT (HZ * 100)
  760. #define IDLE_LEAKY_MAX 16
  761. static void (*original_pm_idle)(void) __read_mostly;
  762. /**
  763. * apm_cpu_idle - cpu idling for APM capable Linux
  764. *
  765. * This is the idling function the kernel executes when APM is available. It
  766. * tries to do BIOS powermanagement based on the average system idle time.
  767. * Furthermore it calls the system default idle routine.
  768. */
  769. static void apm_cpu_idle(void)
  770. {
  771. static int use_apm_idle; /* = 0 */
  772. static unsigned int last_jiffies; /* = 0 */
  773. static unsigned int last_stime; /* = 0 */
  774. int apm_idle_done = 0;
  775. unsigned int jiffies_since_last_check = jiffies - last_jiffies;
  776. unsigned int bucket;
  777. recalc:
  778. if (jiffies_since_last_check > IDLE_CALC_LIMIT) {
  779. use_apm_idle = 0;
  780. last_jiffies = jiffies;
  781. last_stime = current->stime;
  782. } else if (jiffies_since_last_check > idle_period) {
  783. unsigned int idle_percentage;
  784. idle_percentage = current->stime - last_stime;
  785. idle_percentage *= 100;
  786. idle_percentage /= jiffies_since_last_check;
  787. use_apm_idle = (idle_percentage > idle_threshold);
  788. if (apm_info.forbid_idle)
  789. use_apm_idle = 0;
  790. last_jiffies = jiffies;
  791. last_stime = current->stime;
  792. }
  793. bucket = IDLE_LEAKY_MAX;
  794. while (!need_resched()) {
  795. if (use_apm_idle) {
  796. unsigned int t;
  797. t = jiffies;
  798. switch (apm_do_idle()) {
  799. case 0: apm_idle_done = 1;
  800. if (t != jiffies) {
  801. if (bucket) {
  802. bucket = IDLE_LEAKY_MAX;
  803. continue;
  804. }
  805. } else if (bucket) {
  806. bucket--;
  807. continue;
  808. }
  809. break;
  810. case 1: apm_idle_done = 1;
  811. break;
  812. default: /* BIOS refused */
  813. break;
  814. }
  815. }
  816. if (original_pm_idle)
  817. original_pm_idle();
  818. else
  819. default_idle();
  820. jiffies_since_last_check = jiffies - last_jiffies;
  821. if (jiffies_since_last_check > idle_period)
  822. goto recalc;
  823. }
  824. if (apm_idle_done)
  825. apm_do_busy();
  826. }
  827. /**
  828. * apm_power_off - ask the BIOS to power off
  829. *
  830. * Handle the power off sequence. This is the one piece of code we
  831. * will execute even on SMP machines. In order to deal with BIOS
  832. * bugs we support real mode APM BIOS power off calls. We also make
  833. * the SMP call on CPU0 as some systems will only honour this call
  834. * on their first cpu.
  835. */
  836. static void apm_power_off(void)
  837. {
  838. unsigned char po_bios_call[] = {
  839. 0xb8, 0x00, 0x10, /* movw $0x1000,ax */
  840. 0x8e, 0xd0, /* movw ax,ss */
  841. 0xbc, 0x00, 0xf0, /* movw $0xf000,sp */
  842. 0xb8, 0x07, 0x53, /* movw $0x5307,ax */
  843. 0xbb, 0x01, 0x00, /* movw $0x0001,bx */
  844. 0xb9, 0x03, 0x00, /* movw $0x0003,cx */
  845. 0xcd, 0x15 /* int $0x15 */
  846. };
  847. /* Some bioses don't like being called from CPU != 0 */
  848. if (apm_info.realmode_power_off)
  849. {
  850. (void)apm_save_cpus();
  851. machine_real_restart(po_bios_call, sizeof(po_bios_call));
  852. }
  853. else
  854. (void) set_system_power_state(APM_STATE_OFF);
  855. }
  856. #ifdef CONFIG_APM_DO_ENABLE
  857. /**
  858. * apm_enable_power_management - enable BIOS APM power management
  859. * @enable: enable yes/no
  860. *
  861. * Enable or disable the APM BIOS power services.
  862. */
  863. static int apm_enable_power_management(int enable)
  864. {
  865. u32 eax;
  866. if ((enable == 0) && (apm_info.bios.flags & APM_BIOS_DISENGAGED))
  867. return APM_NOT_ENGAGED;
  868. if (apm_bios_call_simple(APM_FUNC_ENABLE_PM, APM_DEVICE_BALL,
  869. enable, &eax))
  870. return (eax >> 8) & 0xff;
  871. if (enable)
  872. apm_info.bios.flags &= ~APM_BIOS_DISABLED;
  873. else
  874. apm_info.bios.flags |= APM_BIOS_DISABLED;
  875. return APM_SUCCESS;
  876. }
  877. #endif
  878. /**
  879. * apm_get_power_status - get current power state
  880. * @status: returned status
  881. * @bat: battery info
  882. * @life: estimated life
  883. *
  884. * Obtain the current power status from the APM BIOS. We return a
  885. * status which gives the rough battery status, and current power
  886. * source. The bat value returned give an estimate as a percentage
  887. * of life and a status value for the battery. The estimated life
  888. * if reported is a lifetime in secodnds/minutes at current powwer
  889. * consumption.
  890. */
  891. static int apm_get_power_status(u_short *status, u_short *bat, u_short *life)
  892. {
  893. u32 eax;
  894. u32 ebx;
  895. u32 ecx;
  896. u32 edx;
  897. u32 dummy;
  898. if (apm_info.get_power_status_broken)
  899. return APM_32_UNSUPPORTED;
  900. if (apm_bios_call(APM_FUNC_GET_STATUS, APM_DEVICE_ALL, 0,
  901. &eax, &ebx, &ecx, &edx, &dummy))
  902. return (eax >> 8) & 0xff;
  903. *status = ebx;
  904. *bat = ecx;
  905. if (apm_info.get_power_status_swabinminutes) {
  906. *life = swab16((u16)edx);
  907. *life |= 0x8000;
  908. } else
  909. *life = edx;
  910. return APM_SUCCESS;
  911. }
  912. #if 0
  913. static int apm_get_battery_status(u_short which, u_short *status,
  914. u_short *bat, u_short *life, u_short *nbat)
  915. {
  916. u32 eax;
  917. u32 ebx;
  918. u32 ecx;
  919. u32 edx;
  920. u32 esi;
  921. if (apm_info.connection_version < 0x0102) {
  922. /* pretend we only have one battery. */
  923. if (which != 1)
  924. return APM_BAD_DEVICE;
  925. *nbat = 1;
  926. return apm_get_power_status(status, bat, life);
  927. }
  928. if (apm_bios_call(APM_FUNC_GET_STATUS, (0x8000 | (which)), 0, &eax,
  929. &ebx, &ecx, &edx, &esi))
  930. return (eax >> 8) & 0xff;
  931. *status = ebx;
  932. *bat = ecx;
  933. *life = edx;
  934. *nbat = esi;
  935. return APM_SUCCESS;
  936. }
  937. #endif
  938. /**
  939. * apm_engage_power_management - enable PM on a device
  940. * @device: identity of device
  941. * @enable: on/off
  942. *
  943. * Activate or deactive power management on either a specific device
  944. * or the entire system (%APM_DEVICE_ALL).
  945. */
  946. static int apm_engage_power_management(u_short device, int enable)
  947. {
  948. u32 eax;
  949. if ((enable == 0) && (device == APM_DEVICE_ALL)
  950. && (apm_info.bios.flags & APM_BIOS_DISABLED))
  951. return APM_DISABLED;
  952. if (apm_bios_call_simple(APM_FUNC_ENGAGE_PM, device, enable, &eax))
  953. return (eax >> 8) & 0xff;
  954. if (device == APM_DEVICE_ALL) {
  955. if (enable)
  956. apm_info.bios.flags &= ~APM_BIOS_DISENGAGED;
  957. else
  958. apm_info.bios.flags |= APM_BIOS_DISENGAGED;
  959. }
  960. return APM_SUCCESS;
  961. }
  962. #if defined(CONFIG_APM_DISPLAY_BLANK) && defined(CONFIG_VT)
  963. /**
  964. * apm_console_blank - blank the display
  965. * @blank: on/off
  966. *
  967. * Attempt to blank the console, firstly by blanking just video device
  968. * zero, and if that fails (some BIOSes don't support it) then it blanks
  969. * all video devices. Typically the BIOS will do laptop backlight and
  970. * monitor powerdown for us.
  971. */
  972. static int apm_console_blank(int blank)
  973. {
  974. int error = APM_NOT_ENGAGED; /* silence gcc */
  975. int i;
  976. u_short state;
  977. static const u_short dev[3] = { 0x100, 0x1FF, 0x101 };
  978. state = blank ? APM_STATE_STANDBY : APM_STATE_READY;
  979. for (i = 0; i < ARRAY_SIZE(dev); i++) {
  980. error = set_power_state(dev[i], state);
  981. if ((error == APM_SUCCESS) || (error == APM_NO_ERROR))
  982. return 1;
  983. if (error == APM_NOT_ENGAGED)
  984. break;
  985. }
  986. if (error == APM_NOT_ENGAGED) {
  987. static int tried;
  988. int eng_error;
  989. if (tried++ == 0) {
  990. eng_error = apm_engage_power_management(APM_DEVICE_ALL, 1);
  991. if (eng_error) {
  992. apm_error("set display", error);
  993. apm_error("engage interface", eng_error);
  994. return 0;
  995. } else
  996. return apm_console_blank(blank);
  997. }
  998. }
  999. apm_error("set display", error);
  1000. return 0;
  1001. }
  1002. #endif
  1003. static int queue_empty(struct apm_user *as)
  1004. {
  1005. return as->event_head == as->event_tail;
  1006. }
  1007. static apm_event_t get_queued_event(struct apm_user *as)
  1008. {
  1009. if (++as->event_tail >= APM_MAX_EVENTS)
  1010. as->event_tail = 0;
  1011. return as->events[as->event_tail];
  1012. }
  1013. static void queue_event(apm_event_t event, struct apm_user *sender)
  1014. {
  1015. struct apm_user * as;
  1016. spin_lock(&user_list_lock);
  1017. if (user_list == NULL)
  1018. goto out;
  1019. for (as = user_list; as != NULL; as = as->next) {
  1020. if ((as == sender) || (!as->reader))
  1021. continue;
  1022. if (++as->event_head >= APM_MAX_EVENTS)
  1023. as->event_head = 0;
  1024. if (as->event_head == as->event_tail) {
  1025. static int notified;
  1026. if (notified++ == 0)
  1027. printk(KERN_ERR "apm: an event queue overflowed\n");
  1028. if (++as->event_tail >= APM_MAX_EVENTS)
  1029. as->event_tail = 0;
  1030. }
  1031. as->events[as->event_head] = event;
  1032. if ((!as->suser) || (!as->writer))
  1033. continue;
  1034. switch (event) {
  1035. case APM_SYS_SUSPEND:
  1036. case APM_USER_SUSPEND:
  1037. as->suspends_pending++;
  1038. suspends_pending++;
  1039. break;
  1040. case APM_SYS_STANDBY:
  1041. case APM_USER_STANDBY:
  1042. as->standbys_pending++;
  1043. standbys_pending++;
  1044. break;
  1045. }
  1046. }
  1047. wake_up_interruptible(&apm_waitqueue);
  1048. out:
  1049. spin_unlock(&user_list_lock);
  1050. }
  1051. static void reinit_timer(void)
  1052. {
  1053. #ifdef INIT_TIMER_AFTER_SUSPEND
  1054. unsigned long flags;
  1055. spin_lock_irqsave(&i8253_lock, flags);
  1056. /* set the clock to HZ */
  1057. outb_p(0x34, PIT_MODE); /* binary, mode 2, LSB/MSB, ch 0 */
  1058. udelay(10);
  1059. outb_p(LATCH & 0xff, PIT_CH0); /* LSB */
  1060. udelay(10);
  1061. outb(LATCH >> 8, PIT_CH0); /* MSB */
  1062. udelay(10);
  1063. spin_unlock_irqrestore(&i8253_lock, flags);
  1064. #endif
  1065. }
  1066. static int suspend(int vetoable)
  1067. {
  1068. int err;
  1069. struct apm_user *as;
  1070. if (pm_send_all(PM_SUSPEND, (void *)3)) {
  1071. /* Vetoed */
  1072. if (vetoable) {
  1073. if (apm_info.connection_version > 0x100)
  1074. set_system_power_state(APM_STATE_REJECT);
  1075. err = -EBUSY;
  1076. ignore_sys_suspend = 0;
  1077. printk(KERN_WARNING "apm: suspend was vetoed.\n");
  1078. goto out;
  1079. }
  1080. printk(KERN_CRIT "apm: suspend was vetoed, but suspending anyway.\n");
  1081. }
  1082. device_suspend(PMSG_SUSPEND);
  1083. local_irq_disable();
  1084. device_power_down(PMSG_SUSPEND);
  1085. local_irq_enable();
  1086. save_processor_state();
  1087. err = set_system_power_state(APM_STATE_SUSPEND);
  1088. ignore_normal_resume = 1;
  1089. restore_processor_state();
  1090. local_irq_disable();
  1091. reinit_timer();
  1092. if (err == APM_NO_ERROR)
  1093. err = APM_SUCCESS;
  1094. if (err != APM_SUCCESS)
  1095. apm_error("suspend", err);
  1096. err = (err == APM_SUCCESS) ? 0 : -EIO;
  1097. device_power_up();
  1098. local_irq_enable();
  1099. device_resume();
  1100. pm_send_all(PM_RESUME, (void *)0);
  1101. queue_event(APM_NORMAL_RESUME, NULL);
  1102. out:
  1103. spin_lock(&user_list_lock);
  1104. for (as = user_list; as != NULL; as = as->next) {
  1105. as->suspend_wait = 0;
  1106. as->suspend_result = err;
  1107. }
  1108. spin_unlock(&user_list_lock);
  1109. wake_up_interruptible(&apm_suspend_waitqueue);
  1110. return err;
  1111. }
  1112. static void standby(void)
  1113. {
  1114. int err;
  1115. local_irq_disable();
  1116. device_power_down(PMSG_SUSPEND);
  1117. local_irq_enable();
  1118. err = set_system_power_state(APM_STATE_STANDBY);
  1119. if ((err != APM_SUCCESS) && (err != APM_NO_ERROR))
  1120. apm_error("standby", err);
  1121. local_irq_disable();
  1122. device_power_up();
  1123. local_irq_enable();
  1124. }
  1125. static apm_event_t get_event(void)
  1126. {
  1127. int error;
  1128. apm_event_t event = APM_NO_EVENTS; /* silence gcc */
  1129. apm_eventinfo_t info;
  1130. static int notified;
  1131. /* we don't use the eventinfo */
  1132. error = apm_get_event(&event, &info);
  1133. if (error == APM_SUCCESS)
  1134. return event;
  1135. if ((error != APM_NO_EVENTS) && (notified++ == 0))
  1136. apm_error("get_event", error);
  1137. return 0;
  1138. }
  1139. static void check_events(void)
  1140. {
  1141. apm_event_t event;
  1142. static unsigned long last_resume;
  1143. static int ignore_bounce;
  1144. while ((event = get_event()) != 0) {
  1145. if (debug) {
  1146. if (event <= NR_APM_EVENT_NAME)
  1147. printk(KERN_DEBUG "apm: received %s notify\n",
  1148. apm_event_name[event - 1]);
  1149. else
  1150. printk(KERN_DEBUG "apm: received unknown "
  1151. "event 0x%02x\n", event);
  1152. }
  1153. if (ignore_bounce
  1154. && ((jiffies - last_resume) > bounce_interval))
  1155. ignore_bounce = 0;
  1156. switch (event) {
  1157. case APM_SYS_STANDBY:
  1158. case APM_USER_STANDBY:
  1159. queue_event(event, NULL);
  1160. if (standbys_pending <= 0)
  1161. standby();
  1162. break;
  1163. case APM_USER_SUSPEND:
  1164. #ifdef CONFIG_APM_IGNORE_USER_SUSPEND
  1165. if (apm_info.connection_version > 0x100)
  1166. set_system_power_state(APM_STATE_REJECT);
  1167. break;
  1168. #endif
  1169. case APM_SYS_SUSPEND:
  1170. if (ignore_bounce) {
  1171. if (apm_info.connection_version > 0x100)
  1172. set_system_power_state(APM_STATE_REJECT);
  1173. break;
  1174. }
  1175. /*
  1176. * If we are already processing a SUSPEND,
  1177. * then further SUSPEND events from the BIOS
  1178. * will be ignored. We also return here to
  1179. * cope with the fact that the Thinkpads keep
  1180. * sending a SUSPEND event until something else
  1181. * happens!
  1182. */
  1183. if (ignore_sys_suspend)
  1184. return;
  1185. ignore_sys_suspend = 1;
  1186. queue_event(event, NULL);
  1187. if (suspends_pending <= 0)
  1188. (void) suspend(1);
  1189. break;
  1190. case APM_NORMAL_RESUME:
  1191. case APM_CRITICAL_RESUME:
  1192. case APM_STANDBY_RESUME:
  1193. ignore_sys_suspend = 0;
  1194. last_resume = jiffies;
  1195. ignore_bounce = 1;
  1196. if ((event != APM_NORMAL_RESUME)
  1197. || (ignore_normal_resume == 0)) {
  1198. device_resume();
  1199. pm_send_all(PM_RESUME, (void *)0);
  1200. queue_event(event, NULL);
  1201. }
  1202. ignore_normal_resume = 0;
  1203. break;
  1204. case APM_CAPABILITY_CHANGE:
  1205. case APM_LOW_BATTERY:
  1206. case APM_POWER_STATUS_CHANGE:
  1207. queue_event(event, NULL);
  1208. /* If needed, notify drivers here */
  1209. break;
  1210. case APM_UPDATE_TIME:
  1211. break;
  1212. case APM_CRITICAL_SUSPEND:
  1213. /*
  1214. * We are not allowed to reject a critical suspend.
  1215. */
  1216. (void) suspend(0);
  1217. break;
  1218. }
  1219. }
  1220. }
  1221. static void apm_event_handler(void)
  1222. {
  1223. static int pending_count = 4;
  1224. int err;
  1225. if ((standbys_pending > 0) || (suspends_pending > 0)) {
  1226. if ((apm_info.connection_version > 0x100) &&
  1227. (pending_count-- <= 0)) {
  1228. pending_count = 4;
  1229. if (debug)
  1230. printk(KERN_DEBUG "apm: setting state busy\n");
  1231. err = set_system_power_state(APM_STATE_BUSY);
  1232. if (err)
  1233. apm_error("busy", err);
  1234. }
  1235. } else
  1236. pending_count = 4;
  1237. check_events();
  1238. }
  1239. /*
  1240. * This is the APM thread main loop.
  1241. */
  1242. static void apm_mainloop(void)
  1243. {
  1244. DECLARE_WAITQUEUE(wait, current);
  1245. add_wait_queue(&apm_waitqueue, &wait);
  1246. set_current_state(TASK_INTERRUPTIBLE);
  1247. for (;;) {
  1248. schedule_timeout(APM_CHECK_TIMEOUT);
  1249. if (kthread_should_stop())
  1250. break;
  1251. /*
  1252. * Ok, check all events, check for idle (and mark us sleeping
  1253. * so as not to count towards the load average)..
  1254. */
  1255. set_current_state(TASK_INTERRUPTIBLE);
  1256. apm_event_handler();
  1257. }
  1258. remove_wait_queue(&apm_waitqueue, &wait);
  1259. }
  1260. static int check_apm_user(struct apm_user *as, const char *func)
  1261. {
  1262. if ((as == NULL) || (as->magic != APM_BIOS_MAGIC)) {
  1263. printk(KERN_ERR "apm: %s passed bad filp\n", func);
  1264. return 1;
  1265. }
  1266. return 0;
  1267. }
  1268. static ssize_t do_read(struct file *fp, char __user *buf, size_t count, loff_t *ppos)
  1269. {
  1270. struct apm_user * as;
  1271. int i;
  1272. apm_event_t event;
  1273. as = fp->private_data;
  1274. if (check_apm_user(as, "read"))
  1275. return -EIO;
  1276. if ((int)count < sizeof(apm_event_t))
  1277. return -EINVAL;
  1278. if ((queue_empty(as)) && (fp->f_flags & O_NONBLOCK))
  1279. return -EAGAIN;
  1280. wait_event_interruptible(apm_waitqueue, !queue_empty(as));
  1281. i = count;
  1282. while ((i >= sizeof(event)) && !queue_empty(as)) {
  1283. event = get_queued_event(as);
  1284. if (copy_to_user(buf, &event, sizeof(event))) {
  1285. if (i < count)
  1286. break;
  1287. return -EFAULT;
  1288. }
  1289. switch (event) {
  1290. case APM_SYS_SUSPEND:
  1291. case APM_USER_SUSPEND:
  1292. as->suspends_read++;
  1293. break;
  1294. case APM_SYS_STANDBY:
  1295. case APM_USER_STANDBY:
  1296. as->standbys_read++;
  1297. break;
  1298. }
  1299. buf += sizeof(event);
  1300. i -= sizeof(event);
  1301. }
  1302. if (i < count)
  1303. return count - i;
  1304. if (signal_pending(current))
  1305. return -ERESTARTSYS;
  1306. return 0;
  1307. }
  1308. static unsigned int do_poll(struct file *fp, poll_table * wait)
  1309. {
  1310. struct apm_user * as;
  1311. as = fp->private_data;
  1312. if (check_apm_user(as, "poll"))
  1313. return 0;
  1314. poll_wait(fp, &apm_waitqueue, wait);
  1315. if (!queue_empty(as))
  1316. return POLLIN | POLLRDNORM;
  1317. return 0;
  1318. }
  1319. static int do_ioctl(struct inode * inode, struct file *filp,
  1320. u_int cmd, u_long arg)
  1321. {
  1322. struct apm_user * as;
  1323. as = filp->private_data;
  1324. if (check_apm_user(as, "ioctl"))
  1325. return -EIO;
  1326. if ((!as->suser) || (!as->writer))
  1327. return -EPERM;
  1328. switch (cmd) {
  1329. case APM_IOC_STANDBY:
  1330. if (as->standbys_read > 0) {
  1331. as->standbys_read--;
  1332. as->standbys_pending--;
  1333. standbys_pending--;
  1334. } else
  1335. queue_event(APM_USER_STANDBY, as);
  1336. if (standbys_pending <= 0)
  1337. standby();
  1338. break;
  1339. case APM_IOC_SUSPEND:
  1340. if (as->suspends_read > 0) {
  1341. as->suspends_read--;
  1342. as->suspends_pending--;
  1343. suspends_pending--;
  1344. } else
  1345. queue_event(APM_USER_SUSPEND, as);
  1346. if (suspends_pending <= 0) {
  1347. return suspend(1);
  1348. } else {
  1349. as->suspend_wait = 1;
  1350. wait_event_interruptible(apm_suspend_waitqueue,
  1351. as->suspend_wait == 0);
  1352. return as->suspend_result;
  1353. }
  1354. break;
  1355. default:
  1356. return -EINVAL;
  1357. }
  1358. return 0;
  1359. }
  1360. static int do_release(struct inode * inode, struct file * filp)
  1361. {
  1362. struct apm_user * as;
  1363. as = filp->private_data;
  1364. if (check_apm_user(as, "release"))
  1365. return 0;
  1366. filp->private_data = NULL;
  1367. if (as->standbys_pending > 0) {
  1368. standbys_pending -= as->standbys_pending;
  1369. if (standbys_pending <= 0)
  1370. standby();
  1371. }
  1372. if (as->suspends_pending > 0) {
  1373. suspends_pending -= as->suspends_pending;
  1374. if (suspends_pending <= 0)
  1375. (void) suspend(1);
  1376. }
  1377. spin_lock(&user_list_lock);
  1378. if (user_list == as)
  1379. user_list = as->next;
  1380. else {
  1381. struct apm_user * as1;
  1382. for (as1 = user_list;
  1383. (as1 != NULL) && (as1->next != as);
  1384. as1 = as1->next)
  1385. ;
  1386. if (as1 == NULL)
  1387. printk(KERN_ERR "apm: filp not in user list\n");
  1388. else
  1389. as1->next = as->next;
  1390. }
  1391. spin_unlock(&user_list_lock);
  1392. kfree(as);
  1393. return 0;
  1394. }
  1395. static int do_open(struct inode * inode, struct file * filp)
  1396. {
  1397. struct apm_user * as;
  1398. as = kmalloc(sizeof(*as), GFP_KERNEL);
  1399. if (as == NULL) {
  1400. printk(KERN_ERR "apm: cannot allocate struct of size %d bytes\n",
  1401. sizeof(*as));
  1402. return -ENOMEM;
  1403. }
  1404. as->magic = APM_BIOS_MAGIC;
  1405. as->event_tail = as->event_head = 0;
  1406. as->suspends_pending = as->standbys_pending = 0;
  1407. as->suspends_read = as->standbys_read = 0;
  1408. /*
  1409. * XXX - this is a tiny bit broken, when we consider BSD
  1410. * process accounting. If the device is opened by root, we
  1411. * instantly flag that we used superuser privs. Who knows,
  1412. * we might close the device immediately without doing a
  1413. * privileged operation -- cevans
  1414. */
  1415. as->suser = capable(CAP_SYS_ADMIN);
  1416. as->writer = (filp->f_mode & FMODE_WRITE) == FMODE_WRITE;
  1417. as->reader = (filp->f_mode & FMODE_READ) == FMODE_READ;
  1418. spin_lock(&user_list_lock);
  1419. as->next = user_list;
  1420. user_list = as;
  1421. spin_unlock(&user_list_lock);
  1422. filp->private_data = as;
  1423. return 0;
  1424. }
  1425. static int proc_apm_show(struct seq_file *m, void *v)
  1426. {
  1427. unsigned short bx;
  1428. unsigned short cx;
  1429. unsigned short dx;
  1430. int error;
  1431. unsigned short ac_line_status = 0xff;
  1432. unsigned short battery_status = 0xff;
  1433. unsigned short battery_flag = 0xff;
  1434. int percentage = -1;
  1435. int time_units = -1;
  1436. char *units = "?";
  1437. if ((num_online_cpus() == 1) &&
  1438. !(error = apm_get_power_status(&bx, &cx, &dx))) {
  1439. ac_line_status = (bx >> 8) & 0xff;
  1440. battery_status = bx & 0xff;
  1441. if ((cx & 0xff) != 0xff)
  1442. percentage = cx & 0xff;
  1443. if (apm_info.connection_version > 0x100) {
  1444. battery_flag = (cx >> 8) & 0xff;
  1445. if (dx != 0xffff) {
  1446. units = (dx & 0x8000) ? "min" : "sec";
  1447. time_units = dx & 0x7fff;
  1448. }
  1449. }
  1450. }
  1451. /* Arguments, with symbols from linux/apm_bios.h. Information is
  1452. from the Get Power Status (0x0a) call unless otherwise noted.
  1453. 0) Linux driver version (this will change if format changes)
  1454. 1) APM BIOS Version. Usually 1.0, 1.1 or 1.2.
  1455. 2) APM flags from APM Installation Check (0x00):
  1456. bit 0: APM_16_BIT_SUPPORT
  1457. bit 1: APM_32_BIT_SUPPORT
  1458. bit 2: APM_IDLE_SLOWS_CLOCK
  1459. bit 3: APM_BIOS_DISABLED
  1460. bit 4: APM_BIOS_DISENGAGED
  1461. 3) AC line status
  1462. 0x00: Off-line
  1463. 0x01: On-line
  1464. 0x02: On backup power (BIOS >= 1.1 only)
  1465. 0xff: Unknown
  1466. 4) Battery status
  1467. 0x00: High
  1468. 0x01: Low
  1469. 0x02: Critical
  1470. 0x03: Charging
  1471. 0x04: Selected battery not present (BIOS >= 1.2 only)
  1472. 0xff: Unknown
  1473. 5) Battery flag
  1474. bit 0: High
  1475. bit 1: Low
  1476. bit 2: Critical
  1477. bit 3: Charging
  1478. bit 7: No system battery
  1479. 0xff: Unknown
  1480. 6) Remaining battery life (percentage of charge):
  1481. 0-100: valid
  1482. -1: Unknown
  1483. 7) Remaining battery life (time units):
  1484. Number of remaining minutes or seconds
  1485. -1: Unknown
  1486. 8) min = minutes; sec = seconds */
  1487. seq_printf(m, "%s %d.%d 0x%02x 0x%02x 0x%02x 0x%02x %d%% %d %s\n",
  1488. driver_version,
  1489. (apm_info.bios.version >> 8) & 0xff,
  1490. apm_info.bios.version & 0xff,
  1491. apm_info.bios.flags,
  1492. ac_line_status,
  1493. battery_status,
  1494. battery_flag,
  1495. percentage,
  1496. time_units,
  1497. units);
  1498. return 0;
  1499. }
  1500. static int proc_apm_open(struct inode *inode, struct file *file)
  1501. {
  1502. return single_open(file, proc_apm_show, NULL);
  1503. }
  1504. static const struct file_operations apm_file_ops = {
  1505. .owner = THIS_MODULE,
  1506. .open = proc_apm_open,
  1507. .read = seq_read,
  1508. .llseek = seq_lseek,
  1509. .release = single_release,
  1510. };
  1511. static int apm(void *unused)
  1512. {
  1513. unsigned short bx;
  1514. unsigned short cx;
  1515. unsigned short dx;
  1516. int error;
  1517. char * power_stat;
  1518. char * bat_stat;
  1519. #ifdef CONFIG_SMP
  1520. /* 2002/08/01 - WT
  1521. * This is to avoid random crashes at boot time during initialization
  1522. * on SMP systems in case of "apm=power-off" mode. Seen on ASUS A7M266D.
  1523. * Some bioses don't like being called from CPU != 0.
  1524. * Method suggested by Ingo Molnar.
  1525. */
  1526. set_cpus_allowed(current, cpumask_of_cpu(0));
  1527. BUG_ON(smp_processor_id() != 0);
  1528. #endif
  1529. if (apm_info.connection_version == 0) {
  1530. apm_info.connection_version = apm_info.bios.version;
  1531. if (apm_info.connection_version > 0x100) {
  1532. /*
  1533. * We only support BIOSs up to version 1.2
  1534. */
  1535. if (apm_info.connection_version > 0x0102)
  1536. apm_info.connection_version = 0x0102;
  1537. error = apm_driver_version(&apm_info.connection_version);
  1538. if (error != APM_SUCCESS) {
  1539. apm_error("driver version", error);
  1540. /* Fall back to an APM 1.0 connection. */
  1541. apm_info.connection_version = 0x100;
  1542. }
  1543. }
  1544. }
  1545. if (debug)
  1546. printk(KERN_INFO "apm: Connection version %d.%d\n",
  1547. (apm_info.connection_version >> 8) & 0xff,
  1548. apm_info.connection_version & 0xff);
  1549. #ifdef CONFIG_APM_DO_ENABLE
  1550. if (apm_info.bios.flags & APM_BIOS_DISABLED) {
  1551. /*
  1552. * This call causes my NEC UltraLite Versa 33/C to hang if it
  1553. * is booted with PM disabled but not in the docking station.
  1554. * Unfortunate ...
  1555. */
  1556. error = apm_enable_power_management(1);
  1557. if (error) {
  1558. apm_error("enable power management", error);
  1559. return -1;
  1560. }
  1561. }
  1562. #endif
  1563. if ((apm_info.bios.flags & APM_BIOS_DISENGAGED)
  1564. && (apm_info.connection_version > 0x0100)) {
  1565. error = apm_engage_power_management(APM_DEVICE_ALL, 1);
  1566. if (error) {
  1567. apm_error("engage power management", error);
  1568. return -1;
  1569. }
  1570. }
  1571. if (debug && (num_online_cpus() == 1 || smp )) {
  1572. error = apm_get_power_status(&bx, &cx, &dx);
  1573. if (error)
  1574. printk(KERN_INFO "apm: power status not available\n");
  1575. else {
  1576. switch ((bx >> 8) & 0xff) {
  1577. case 0: power_stat = "off line"; break;
  1578. case 1: power_stat = "on line"; break;
  1579. case 2: power_stat = "on backup power"; break;
  1580. default: power_stat = "unknown"; break;
  1581. }
  1582. switch (bx & 0xff) {
  1583. case 0: bat_stat = "high"; break;
  1584. case 1: bat_stat = "low"; break;
  1585. case 2: bat_stat = "critical"; break;
  1586. case 3: bat_stat = "charging"; break;
  1587. default: bat_stat = "unknown"; break;
  1588. }
  1589. printk(KERN_INFO
  1590. "apm: AC %s, battery status %s, battery life ",
  1591. power_stat, bat_stat);
  1592. if ((cx & 0xff) == 0xff)
  1593. printk("unknown\n");
  1594. else
  1595. printk("%d%%\n", cx & 0xff);
  1596. if (apm_info.connection_version > 0x100) {
  1597. printk(KERN_INFO
  1598. "apm: battery flag 0x%02x, battery life ",
  1599. (cx >> 8) & 0xff);
  1600. if (dx == 0xffff)
  1601. printk("unknown\n");
  1602. else
  1603. printk("%d %s\n", dx & 0x7fff,
  1604. (dx & 0x8000) ?
  1605. "minutes" : "seconds");
  1606. }
  1607. }
  1608. }
  1609. /* Install our power off handler.. */
  1610. if (power_off)
  1611. pm_power_off = apm_power_off;
  1612. if (num_online_cpus() == 1 || smp) {
  1613. #if defined(CONFIG_APM_DISPLAY_BLANK) && defined(CONFIG_VT)
  1614. console_blank_hook = apm_console_blank;
  1615. #endif
  1616. apm_mainloop();
  1617. #if defined(CONFIG_APM_DISPLAY_BLANK) && defined(CONFIG_VT)
  1618. console_blank_hook = NULL;
  1619. #endif
  1620. }
  1621. return 0;
  1622. }
  1623. #ifndef MODULE
  1624. static int __init apm_setup(char *str)
  1625. {
  1626. int invert;
  1627. while ((str != NULL) && (*str != '\0')) {
  1628. if (strncmp(str, "off", 3) == 0)
  1629. apm_disabled = 1;
  1630. if (strncmp(str, "on", 2) == 0)
  1631. apm_disabled = 0;
  1632. if ((strncmp(str, "bounce-interval=", 16) == 0) ||
  1633. (strncmp(str, "bounce_interval=", 16) == 0))
  1634. bounce_interval = simple_strtol(str + 16, NULL, 0);
  1635. if ((strncmp(str, "idle-threshold=", 15) == 0) ||
  1636. (strncmp(str, "idle_threshold=", 15) == 0))
  1637. idle_threshold = simple_strtol(str + 15, NULL, 0);
  1638. if ((strncmp(str, "idle-period=", 12) == 0) ||
  1639. (strncmp(str, "idle_period=", 12) == 0))
  1640. idle_period = simple_strtol(str + 12, NULL, 0);
  1641. invert = (strncmp(str, "no-", 3) == 0) ||
  1642. (strncmp(str, "no_", 3) == 0);
  1643. if (invert)
  1644. str += 3;
  1645. if (strncmp(str, "debug", 5) == 0)
  1646. debug = !invert;
  1647. if ((strncmp(str, "power-off", 9) == 0) ||
  1648. (strncmp(str, "power_off", 9) == 0))
  1649. power_off = !invert;
  1650. if (strncmp(str, "smp", 3) == 0)
  1651. {
  1652. smp = !invert;
  1653. idle_threshold = 100;
  1654. }
  1655. if ((strncmp(str, "allow-ints", 10) == 0) ||
  1656. (strncmp(str, "allow_ints", 10) == 0))
  1657. apm_info.allow_ints = !invert;
  1658. if ((strncmp(str, "broken-psr", 10) == 0) ||
  1659. (strncmp(str, "broken_psr", 10) == 0))
  1660. apm_info.get_power_status_broken = !invert;
  1661. if ((strncmp(str, "realmode-power-off", 18) == 0) ||
  1662. (strncmp(str, "realmode_power_off", 18) == 0))
  1663. apm_info.realmode_power_off = !invert;
  1664. str = strchr(str, ',');
  1665. if (str != NULL)
  1666. str += strspn(str, ", \t");
  1667. }
  1668. return 1;
  1669. }
  1670. __setup("apm=", apm_setup);
  1671. #endif
  1672. static const struct file_operations apm_bios_fops = {
  1673. .owner = THIS_MODULE,
  1674. .read = do_read,
  1675. .poll = do_poll,
  1676. .ioctl = do_ioctl,
  1677. .open = do_open,
  1678. .release = do_release,
  1679. };
  1680. static struct miscdevice apm_device = {
  1681. APM_MINOR_DEV,
  1682. "apm_bios",
  1683. &apm_bios_fops
  1684. };
  1685. /* Simple "print if true" callback */
  1686. static int __init print_if_true(const struct dmi_system_id *d)
  1687. {
  1688. printk("%s\n", d->ident);
  1689. return 0;
  1690. }
  1691. /*
  1692. * Some Bioses enable the PS/2 mouse (touchpad) at resume, even if it was
  1693. * disabled before the suspend. Linux used to get terribly confused by that.
  1694. */
  1695. static int __init broken_ps2_resume(const struct dmi_system_id *d)
  1696. {
  1697. printk(KERN_INFO "%s machine detected. Mousepad Resume Bug workaround hopefully not needed.\n", d->ident);
  1698. return 0;
  1699. }
  1700. /* Some bioses have a broken protected mode poweroff and need to use realmode */
  1701. static int __init set_realmode_power_off(const struct dmi_system_id *d)
  1702. {
  1703. if (apm_info.realmode_power_off == 0) {
  1704. apm_info.realmode_power_off = 1;
  1705. printk(KERN_INFO "%s bios detected. Using realmode poweroff only.\n", d->ident);
  1706. }
  1707. return 0;
  1708. }
  1709. /* Some laptops require interrupts to be enabled during APM calls */
  1710. static int __init set_apm_ints(const struct dmi_system_id *d)
  1711. {
  1712. if (apm_info.allow_ints == 0) {
  1713. apm_info.allow_ints = 1;
  1714. printk(KERN_INFO "%s machine detected. Enabling interrupts during APM calls.\n", d->ident);
  1715. }
  1716. return 0;
  1717. }
  1718. /* Some APM bioses corrupt memory or just plain do not work */
  1719. static int __init apm_is_horked(const struct dmi_system_id *d)
  1720. {
  1721. if (apm_info.disabled == 0) {
  1722. apm_info.disabled = 1;
  1723. printk(KERN_INFO "%s machine detected. Disabling APM.\n", d->ident);
  1724. }
  1725. return 0;
  1726. }
  1727. static int __init apm_is_horked_d850md(const struct dmi_system_id *d)
  1728. {
  1729. if (apm_info.disabled == 0) {
  1730. apm_info.disabled = 1;
  1731. printk(KERN_INFO "%s machine detected. Disabling APM.\n", d->ident);
  1732. printk(KERN_INFO "This bug is fixed in bios P15 which is available for \n");
  1733. printk(KERN_INFO "download from support.intel.com \n");
  1734. }
  1735. return 0;
  1736. }
  1737. /* Some APM bioses hang on APM idle calls */
  1738. static int __init apm_likes_to_melt(const struct dmi_system_id *d)
  1739. {
  1740. if (apm_info.forbid_idle == 0) {
  1741. apm_info.forbid_idle = 1;
  1742. printk(KERN_INFO "%s machine detected. Disabling APM idle calls.\n", d->ident);
  1743. }
  1744. return 0;
  1745. }
  1746. /*
  1747. * Check for clue free BIOS implementations who use
  1748. * the following QA technique
  1749. *
  1750. * [ Write BIOS Code ]<------
  1751. * | ^
  1752. * < Does it Compile >----N--
  1753. * |Y ^
  1754. * < Does it Boot Win98 >-N--
  1755. * |Y
  1756. * [Ship It]
  1757. *
  1758. * Phoenix A04 08/24/2000 is known bad (Dell Inspiron 5000e)
  1759. * Phoenix A07 09/29/2000 is known good (Dell Inspiron 5000)
  1760. */
  1761. static int __init broken_apm_power(const struct dmi_system_id *d)
  1762. {
  1763. apm_info.get_power_status_broken = 1;
  1764. printk(KERN_WARNING "BIOS strings suggest APM bugs, disabling power status reporting.\n");
  1765. return 0;
  1766. }
  1767. /*
  1768. * This bios swaps the APM minute reporting bytes over (Many sony laptops
  1769. * have this problem).
  1770. */
  1771. static int __init swab_apm_power_in_minutes(const struct dmi_system_id *d)
  1772. {
  1773. apm_info.get_power_status_swabinminutes = 1;
  1774. printk(KERN_WARNING "BIOS strings suggest APM reports battery life in minutes and wrong byte order.\n");
  1775. return 0;
  1776. }
  1777. static struct dmi_system_id __initdata apm_dmi_table[] = {
  1778. {
  1779. print_if_true,
  1780. KERN_WARNING "IBM T23 - BIOS 1.03b+ and controller firmware 1.02+ may be needed for Linux APM.",
  1781. { DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
  1782. DMI_MATCH(DMI_BIOS_VERSION, "1AET38WW (1.01b)"), },
  1783. },
  1784. { /* Handle problems with APM on the C600 */
  1785. broken_ps2_resume, "Dell Latitude C600",
  1786. { DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
  1787. DMI_MATCH(DMI_PRODUCT_NAME, "Latitude C600"), },
  1788. },
  1789. { /* Allow interrupts during suspend on Dell Latitude laptops*/
  1790. set_apm_ints, "Dell Latitude",
  1791. { DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
  1792. DMI_MATCH(DMI_PRODUCT_NAME, "Latitude C510"), }
  1793. },
  1794. { /* APM crashes */
  1795. apm_is_horked, "Dell Inspiron 2500",
  1796. { DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
  1797. DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 2500"),
  1798. DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
  1799. DMI_MATCH(DMI_BIOS_VERSION,"A11"), },
  1800. },
  1801. { /* Allow interrupts during suspend on Dell Inspiron laptops*/
  1802. set_apm_ints, "Dell Inspiron", {
  1803. DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
  1804. DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 4000"), },
  1805. },
  1806. { /* Handle problems with APM on Inspiron 5000e */
  1807. broken_apm_power, "Dell Inspiron 5000e",
  1808. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1809. DMI_MATCH(DMI_BIOS_VERSION, "A04"),
  1810. DMI_MATCH(DMI_BIOS_DATE, "08/24/2000"), },
  1811. },
  1812. { /* Handle problems with APM on Inspiron 2500 */
  1813. broken_apm_power, "Dell Inspiron 2500",
  1814. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1815. DMI_MATCH(DMI_BIOS_VERSION, "A12"),
  1816. DMI_MATCH(DMI_BIOS_DATE, "02/04/2002"), },
  1817. },
  1818. { /* APM crashes */
  1819. apm_is_horked, "Dell Dimension 4100",
  1820. { DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
  1821. DMI_MATCH(DMI_PRODUCT_NAME, "XPS-Z"),
  1822. DMI_MATCH(DMI_BIOS_VENDOR,"Intel Corp."),
  1823. DMI_MATCH(DMI_BIOS_VERSION,"A11"), },
  1824. },
  1825. { /* Allow interrupts during suspend on Compaq Laptops*/
  1826. set_apm_ints, "Compaq 12XL125",
  1827. { DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
  1828. DMI_MATCH(DMI_PRODUCT_NAME, "Compaq PC"),
  1829. DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1830. DMI_MATCH(DMI_BIOS_VERSION,"4.06"), },
  1831. },
  1832. { /* Allow interrupts during APM or the clock goes slow */
  1833. set_apm_ints, "ASUSTeK",
  1834. { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
  1835. DMI_MATCH(DMI_PRODUCT_NAME, "L8400K series Notebook PC"), },
  1836. },
  1837. { /* APM blows on shutdown */
  1838. apm_is_horked, "ABIT KX7-333[R]",
  1839. { DMI_MATCH(DMI_BOARD_VENDOR, "ABIT"),
  1840. DMI_MATCH(DMI_BOARD_NAME, "VT8367-8233A (KX7-333[R])"), },
  1841. },
  1842. { /* APM crashes */
  1843. apm_is_horked, "Trigem Delhi3",
  1844. { DMI_MATCH(DMI_SYS_VENDOR, "TriGem Computer, Inc"),
  1845. DMI_MATCH(DMI_PRODUCT_NAME, "Delhi3"), },
  1846. },
  1847. { /* APM crashes */
  1848. apm_is_horked, "Fujitsu-Siemens",
  1849. { DMI_MATCH(DMI_BIOS_VENDOR, "hoenix/FUJITSU SIEMENS"),
  1850. DMI_MATCH(DMI_BIOS_VERSION, "Version1.01"), },
  1851. },
  1852. { /* APM crashes */
  1853. apm_is_horked_d850md, "Intel D850MD",
  1854. { DMI_MATCH(DMI_BIOS_VENDOR, "Intel Corp."),
  1855. DMI_MATCH(DMI_BIOS_VERSION, "MV85010A.86A.0016.P07.0201251536"), },
  1856. },
  1857. { /* APM crashes */
  1858. apm_is_horked, "Intel D810EMO",
  1859. { DMI_MATCH(DMI_BIOS_VENDOR, "Intel Corp."),
  1860. DMI_MATCH(DMI_BIOS_VERSION, "MO81010A.86A.0008.P04.0004170800"), },
  1861. },
  1862. { /* APM crashes */
  1863. apm_is_horked, "Dell XPS-Z",
  1864. { DMI_MATCH(DMI_BIOS_VENDOR, "Intel Corp."),
  1865. DMI_MATCH(DMI_BIOS_VERSION, "A11"),
  1866. DMI_MATCH(DMI_PRODUCT_NAME, "XPS-Z"), },
  1867. },
  1868. { /* APM crashes */
  1869. apm_is_horked, "Sharp PC-PJ/AX",
  1870. { DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
  1871. DMI_MATCH(DMI_PRODUCT_NAME, "PC-PJ/AX"),
  1872. DMI_MATCH(DMI_BIOS_VENDOR,"SystemSoft"),
  1873. DMI_MATCH(DMI_BIOS_VERSION,"Version R2.08"), },
  1874. },
  1875. { /* APM crashes */
  1876. apm_is_horked, "Dell Inspiron 2500",
  1877. { DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
  1878. DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 2500"),
  1879. DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
  1880. DMI_MATCH(DMI_BIOS_VERSION,"A11"), },
  1881. },
  1882. { /* APM idle hangs */
  1883. apm_likes_to_melt, "Jabil AMD",
  1884. { DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."),
  1885. DMI_MATCH(DMI_BIOS_VERSION, "0AASNP06"), },
  1886. },
  1887. { /* APM idle hangs */
  1888. apm_likes_to_melt, "AMI Bios",
  1889. { DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."),
  1890. DMI_MATCH(DMI_BIOS_VERSION, "0AASNP05"), },
  1891. },
  1892. { /* Handle problems with APM on Sony Vaio PCG-N505X(DE) */
  1893. swab_apm_power_in_minutes, "Sony VAIO",
  1894. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1895. DMI_MATCH(DMI_BIOS_VERSION, "R0206H"),
  1896. DMI_MATCH(DMI_BIOS_DATE, "08/23/99"), },
  1897. },
  1898. { /* Handle problems with APM on Sony Vaio PCG-N505VX */
  1899. swab_apm_power_in_minutes, "Sony VAIO",
  1900. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1901. DMI_MATCH(DMI_BIOS_VERSION, "W2K06H0"),
  1902. DMI_MATCH(DMI_BIOS_DATE, "02/03/00"), },
  1903. },
  1904. { /* Handle problems with APM on Sony Vaio PCG-XG29 */
  1905. swab_apm_power_in_minutes, "Sony VAIO",
  1906. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1907. DMI_MATCH(DMI_BIOS_VERSION, "R0117A0"),
  1908. DMI_MATCH(DMI_BIOS_DATE, "04/25/00"), },
  1909. },
  1910. { /* Handle problems with APM on Sony Vaio PCG-Z600NE */
  1911. swab_apm_power_in_minutes, "Sony VAIO",
  1912. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1913. DMI_MATCH(DMI_BIOS_VERSION, "R0121Z1"),
  1914. DMI_MATCH(DMI_BIOS_DATE, "05/11/00"), },
  1915. },
  1916. { /* Handle problems with APM on Sony Vaio PCG-Z600NE */
  1917. swab_apm_power_in_minutes, "Sony VAIO",
  1918. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1919. DMI_MATCH(DMI_BIOS_VERSION, "WME01Z1"),
  1920. DMI_MATCH(DMI_BIOS_DATE, "08/11/00"), },
  1921. },
  1922. { /* Handle problems with APM on Sony Vaio PCG-Z600LEK(DE) */
  1923. swab_apm_power_in_minutes, "Sony VAIO",
  1924. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1925. DMI_MATCH(DMI_BIOS_VERSION, "R0206Z3"),
  1926. DMI_MATCH(DMI_BIOS_DATE, "12/25/00"), },
  1927. },
  1928. { /* Handle problems with APM on Sony Vaio PCG-Z505LS */
  1929. swab_apm_power_in_minutes, "Sony VAIO",
  1930. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1931. DMI_MATCH(DMI_BIOS_VERSION, "R0203D0"),
  1932. DMI_MATCH(DMI_BIOS_DATE, "05/12/00"), },
  1933. },
  1934. { /* Handle problems with APM on Sony Vaio PCG-Z505LS */
  1935. swab_apm_power_in_minutes, "Sony VAIO",
  1936. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1937. DMI_MATCH(DMI_BIOS_VERSION, "R0203Z3"),
  1938. DMI_MATCH(DMI_BIOS_DATE, "08/25/00"), },
  1939. },
  1940. { /* Handle problems with APM on Sony Vaio PCG-Z505LS (with updated BIOS) */
  1941. swab_apm_power_in_minutes, "Sony VAIO",
  1942. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1943. DMI_MATCH(DMI_BIOS_VERSION, "R0209Z3"),
  1944. DMI_MATCH(DMI_BIOS_DATE, "05/12/01"), },
  1945. },
  1946. { /* Handle problems with APM on Sony Vaio PCG-F104K */
  1947. swab_apm_power_in_minutes, "Sony VAIO",
  1948. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1949. DMI_MATCH(DMI_BIOS_VERSION, "R0204K2"),
  1950. DMI_MATCH(DMI_BIOS_DATE, "08/28/00"), },
  1951. },
  1952. { /* Handle problems with APM on Sony Vaio PCG-C1VN/C1VE */
  1953. swab_apm_power_in_minutes, "Sony VAIO",
  1954. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1955. DMI_MATCH(DMI_BIOS_VERSION, "R0208P1"),
  1956. DMI_MATCH(DMI_BIOS_DATE, "11/09/00"), },
  1957. },
  1958. { /* Handle problems with APM on Sony Vaio PCG-C1VE */
  1959. swab_apm_power_in_minutes, "Sony VAIO",
  1960. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1961. DMI_MATCH(DMI_BIOS_VERSION, "R0204P1"),
  1962. DMI_MATCH(DMI_BIOS_DATE, "09/12/00"), },
  1963. },
  1964. { /* Handle problems with APM on Sony Vaio PCG-C1VE */
  1965. swab_apm_power_in_minutes, "Sony VAIO",
  1966. { DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
  1967. DMI_MATCH(DMI_BIOS_VERSION, "WXPO1Z3"),
  1968. DMI_MATCH(DMI_BIOS_DATE, "10/26/01"), },
  1969. },
  1970. { /* broken PM poweroff bios */
  1971. set_realmode_power_off, "Award Software v4.60 PGMA",
  1972. { DMI_MATCH(DMI_BIOS_VENDOR, "Award Software International, Inc."),
  1973. DMI_MATCH(DMI_BIOS_VERSION, "4.60 PGMA"),
  1974. DMI_MATCH(DMI_BIOS_DATE, "134526184"), },
  1975. },
  1976. /* Generic per vendor APM settings */
  1977. { /* Allow interrupts during suspend on IBM laptops */
  1978. set_apm_ints, "IBM",
  1979. { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), },
  1980. },
  1981. { }
  1982. };
  1983. /*
  1984. * Just start the APM thread. We do NOT want to do APM BIOS
  1985. * calls from anything but the APM thread, if for no other reason
  1986. * than the fact that we don't trust the APM BIOS. This way,
  1987. * most common APM BIOS problems that lead to protection errors
  1988. * etc will have at least some level of being contained...
  1989. *
  1990. * In short, if something bad happens, at least we have a choice
  1991. * of just killing the apm thread..
  1992. */
  1993. static int __init apm_init(void)
  1994. {
  1995. struct proc_dir_entry *apm_proc;
  1996. struct desc_struct *gdt;
  1997. int err;
  1998. dmi_check_system(apm_dmi_table);
  1999. if (apm_info.bios.version == 0 || paravirt_enabled()) {
  2000. printk(KERN_INFO "apm: BIOS not found.\n");
  2001. return -ENODEV;
  2002. }
  2003. printk(KERN_INFO
  2004. "apm: BIOS version %d.%d Flags 0x%02x (Driver version %s)\n",
  2005. ((apm_info.bios.version >> 8) & 0xff),
  2006. (apm_info.bios.version & 0xff),
  2007. apm_info.bios.flags,
  2008. driver_version);
  2009. if ((apm_info.bios.flags & APM_32_BIT_SUPPORT) == 0) {
  2010. printk(KERN_INFO "apm: no 32 bit BIOS support\n");
  2011. return -ENODEV;
  2012. }
  2013. if (allow_ints)
  2014. apm_info.allow_ints = 1;
  2015. if (broken_psr)
  2016. apm_info.get_power_status_broken = 1;
  2017. if (realmode_power_off)
  2018. apm_info.realmode_power_off = 1;
  2019. /* User can override, but default is to trust DMI */
  2020. if (apm_disabled != -1)
  2021. apm_info.disabled = apm_disabled;
  2022. /*
  2023. * Fix for the Compaq Contura 3/25c which reports BIOS version 0.1
  2024. * but is reportedly a 1.0 BIOS.
  2025. */
  2026. if (apm_info.bios.version == 0x001)
  2027. apm_info.bios.version = 0x100;
  2028. /* BIOS < 1.2 doesn't set cseg_16_len */
  2029. if (apm_info.bios.version < 0x102)
  2030. apm_info.bios.cseg_16_len = 0; /* 64k */
  2031. if (debug) {
  2032. printk(KERN_INFO "apm: entry %x:%x cseg16 %x dseg %x",
  2033. apm_info.bios.cseg, apm_info.bios.offset,
  2034. apm_info.bios.cseg_16, apm_info.bios.dseg);
  2035. if (apm_info.bios.version > 0x100)
  2036. printk(" cseg len %x, dseg len %x",
  2037. apm_info.bios.cseg_len,
  2038. apm_info.bios.dseg_len);
  2039. if (apm_info.bios.version > 0x101)
  2040. printk(" cseg16 len %x", apm_info.bios.cseg_16_len);
  2041. printk("\n");
  2042. }
  2043. if (apm_info.disabled) {
  2044. printk(KERN_NOTICE "apm: disabled on user request.\n");
  2045. return -ENODEV;
  2046. }
  2047. if ((num_online_cpus() > 1) && !power_off && !smp) {
  2048. printk(KERN_NOTICE "apm: disabled - APM is not SMP safe.\n");
  2049. apm_info.disabled = 1;
  2050. return -ENODEV;
  2051. }
  2052. if (PM_IS_ACTIVE()) {
  2053. printk(KERN_NOTICE "apm: overridden by ACPI.\n");
  2054. apm_info.disabled = 1;
  2055. return -ENODEV;
  2056. }
  2057. #ifdef CONFIG_PM_LEGACY
  2058. pm_active = 1;
  2059. #endif
  2060. /*
  2061. * Set up a segment that references the real mode segment 0x40
  2062. * that extends up to the end of page zero (that we have reserved).
  2063. * This is for buggy BIOS's that refer to (real mode) segment 0x40
  2064. * even though they are called in protected mode.
  2065. */
  2066. set_base(bad_bios_desc, __va((unsigned long)0x40 << 4));
  2067. _set_limit((char *)&bad_bios_desc, 4095 - (0x40 << 4));
  2068. /*
  2069. * Set up the long jump entry point to the APM BIOS, which is called
  2070. * from inline assembly.
  2071. */
  2072. apm_bios_entry.offset = apm_info.bios.offset;
  2073. apm_bios_entry.segment = APM_CS;
  2074. /*
  2075. * The APM 1.1 BIOS is supposed to provide limit information that it
  2076. * recognizes. Many machines do this correctly, but many others do
  2077. * not restrict themselves to their claimed limit. When this happens,
  2078. * they will cause a segmentation violation in the kernel at boot time.
  2079. * Most BIOS's, however, will respect a 64k limit, so we use that.
  2080. *
  2081. * Note we only set APM segments on CPU zero, since we pin the APM
  2082. * code to that CPU.
  2083. */
  2084. gdt = get_cpu_gdt_table(0);
  2085. set_base(gdt[APM_CS >> 3],
  2086. __va((unsigned long)apm_info.bios.cseg << 4));
  2087. set_base(gdt[APM_CS_16 >> 3],
  2088. __va((unsigned long)apm_info.bios.cseg_16 << 4));
  2089. set_base(gdt[APM_DS >> 3],
  2090. __va((unsigned long)apm_info.bios.dseg << 4));
  2091. apm_proc = create_proc_entry("apm", 0, NULL);
  2092. if (apm_proc)
  2093. apm_proc->proc_fops = &apm_file_ops;
  2094. kapmd_task = kthread_create(apm, NULL, "kapmd");
  2095. if (IS_ERR(kapmd_task)) {
  2096. printk(KERN_ERR "apm: disabled - Unable to start kernel "
  2097. "thread.\n");
  2098. err = PTR_ERR(kapmd_task);
  2099. kapmd_task = NULL;
  2100. remove_proc_entry("apm", NULL);
  2101. return err;
  2102. }
  2103. wake_up_process(kapmd_task);
  2104. if (num_online_cpus() > 1 && !smp ) {
  2105. printk(KERN_NOTICE
  2106. "apm: disabled - APM is not SMP safe (power off active).\n");
  2107. return 0;
  2108. }
  2109. /*
  2110. * Note we don't actually care if the misc_device cannot be registered.
  2111. * this driver can do its job without it, even if userspace can't
  2112. * control it. just log the error
  2113. */
  2114. if (misc_register(&apm_device))
  2115. printk(KERN_WARNING "apm: Could not register misc device.\n");
  2116. if (HZ != 100)
  2117. idle_period = (idle_period * HZ) / 100;
  2118. if (idle_threshold < 100) {
  2119. original_pm_idle = pm_idle;
  2120. pm_idle = apm_cpu_idle;
  2121. set_pm_idle = 1;
  2122. }
  2123. return 0;
  2124. }
  2125. static void __exit apm_exit(void)
  2126. {
  2127. int error;
  2128. if (set_pm_idle) {
  2129. pm_idle = original_pm_idle;
  2130. /*
  2131. * We are about to unload the current idle thread pm callback
  2132. * (pm_idle), Wait for all processors to update cached/local
  2133. * copies of pm_idle before proceeding.
  2134. */
  2135. cpu_idle_wait();
  2136. }
  2137. if (((apm_info.bios.flags & APM_BIOS_DISENGAGED) == 0)
  2138. && (apm_info.connection_version > 0x0100)) {
  2139. error = apm_engage_power_management(APM_DEVICE_ALL, 0);
  2140. if (error)
  2141. apm_error("disengage power management", error);
  2142. }
  2143. misc_deregister(&apm_device);
  2144. remove_proc_entry("apm", NULL);
  2145. if (power_off)
  2146. pm_power_off = NULL;
  2147. if (kapmd_task) {
  2148. kthread_stop(kapmd_task);
  2149. kapmd_task = NULL;
  2150. }
  2151. #ifdef CONFIG_PM_LEGACY
  2152. pm_active = 0;
  2153. #endif
  2154. }
  2155. module_init(apm_init);
  2156. module_exit(apm_exit);
  2157. MODULE_AUTHOR("Stephen Rothwell");
  2158. MODULE_DESCRIPTION("Advanced Power Management");
  2159. MODULE_LICENSE("GPL");
  2160. module_param(debug, bool, 0644);
  2161. MODULE_PARM_DESC(debug, "Enable debug mode");
  2162. module_param(power_off, bool, 0444);
  2163. MODULE_PARM_DESC(power_off, "Enable power off");
  2164. module_param(bounce_interval, int, 0444);
  2165. MODULE_PARM_DESC(bounce_interval,
  2166. "Set the number of ticks to ignore suspend bounces");
  2167. module_param(allow_ints, bool, 0444);
  2168. MODULE_PARM_DESC(allow_ints, "Allow interrupts during BIOS calls");
  2169. module_param(broken_psr, bool, 0444);
  2170. MODULE_PARM_DESC(broken_psr, "BIOS has a broken GetPowerStatus call");
  2171. module_param(realmode_power_off, bool, 0444);
  2172. MODULE_PARM_DESC(realmode_power_off,
  2173. "Switch to real mode before powering off");
  2174. module_param(idle_threshold, int, 0444);
  2175. MODULE_PARM_DESC(idle_threshold,
  2176. "System idle percentage above which to make APM BIOS idle calls");
  2177. module_param(idle_period, int, 0444);
  2178. MODULE_PARM_DESC(idle_period,
  2179. "Period (in sec/100) over which to caculate the idle percentage");
  2180. module_param(smp, bool, 0444);
  2181. MODULE_PARM_DESC(smp,
  2182. "Set this to enable APM use on an SMP platform. Use with caution on older systems");
  2183. MODULE_ALIAS_MISCDEV(APM_MINOR_DEV);