apm_32.c 69 KB

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