Lines Matching +full:bat +full:- +full:present
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* -*- linux-c -*-
4 * Copyright 1994-2001 Stephen Rothwell (sfr@canb.auug.org.au)
16 * (Thanks to Ulrich Windl <Ulrich.Windl@rz.uni-regensburg.de>)
40 * 0.9: only call bios if bios is present, Linux 1.3.72
43 * 1.1: support user-space standby and suspend, power off after system
46 * is only incorrect by 30-60mS (vs. 1S previously) (Gabor J. Toth
48 * screen-blanking and gpm (Stephen Rothwell); Linux 1.99.4
63 * <echter@informatik.uni-rostock.de>
109 * <Walter.Hofmann@physik.stud.uni-erlangen.de>).
120 * Remove smp-power-off. SMP users must now specify
121 * "apm=power-off" on the kernel command line. Suggested
130 * Fix the Thinkpad (again) :-( (CONFIG_APM_IGNORE_MULTIPLE_SUSPENDS
139 * <tmh@magenta-logic.com> and <zlatko@iskon.hr>) modified by sfr.
145 * Changed to use the sysrq-register hack for registering the
156 * calling it - instead idle. (Alan Cox <alan@lxorguk.ukuu.org.uk>)
180 * Intel Order Number 241704-001. Microsoft Part Number 781-110-X01.
234 #include <asm/nospec-branch.h>
251 * [no-]allow[-_]ints allow interrupts during BIOS calls
252 * [no-]broken[-_]psr BIOS has a broken GetPowerStatus call
253 * [no-]realmode[-_]power[-_]off switch to real mode before
255 * [no-]debug log some debugging messages
256 * [no-]power[-_]off power off on shutdown
257 * [no-]smp Use apm even on an SMP box
258 * bounce[-_]interval=<n> number of ticks to ignore suspend
260 * idle[-_]threshold=<n> System idle percentage above which to
263 * idle[-_]period=<n> Period (in 1/100s of a second) over
278 * ?: AcerNote-950: oops on reading /proc/apm - workaround is a WIP
302 * Define to re-initialize the interrupt 0 timer to 100 Hz after a suspend.
330 * The per-file APM data
403 static int apm_disabled = -1;
430 (unsigned long)__va(0x400UL), PAGE_SIZE - 0x400 - 1);
483 { APM_NOT_PRESENT, "No APM present" }
488 * apm_error - display an APM error
519 * for the rest of the kernel. And it will be very obvious! :-) Doing
576 /* Error: -ENOMEM, or bits 8-15 of eax */
581 * __apm_bios_call - Make an APM BIOS 32bit call
589 * code is returned in AH (bits 8-15 of eax) and this function
590 * returns non-zero.
614 apm_bios_call_asm(call->func, call->ebx, call->ecx, in __apm_bios_call()
615 &call->eax, &call->ebx, &call->ecx, &call->edx, in __apm_bios_call()
616 &call->esi); in __apm_bios_call()
624 return call->eax & 0xff; in __apm_bios_call()
642 /* work_on_cpu can fail with -ENOMEM */ in on_cpu0()
644 call->err = ret; in on_cpu0()
646 call->err = (call->eax >> 8) & 0xff; in on_cpu0()
652 * apm_bios_call - Make an APM BIOS 32bit call (on CPU 0)
663 * __apm_bios_call_simple - Make an APM BIOS 32bit call (on CPU 0)
668 * (bits 8-15 of eax) and this function returns non-zero (it can
669 * also return -ENOMEM). This is used for simpler BIOS operations.
695 error = apm_bios_call_simple_asm(call->func, call->ebx, call->ecx, in __apm_bios_call_simple()
696 &call->eax); in __apm_bios_call_simple()
707 * apm_bios_call_simple - make a simple APM BIOS 32bit call
716 * and this function returns non-zero. This is used for simpler
737 * apm_driver_version - APM driver version
742 * probably present.
764 * apm_get_event - get an APM event from the BIOS
771 * poll until no more messages are present. However, this causes
798 * set_power_state - set the power management state
822 * set_system_power_state - set system wide power state
834 * apm_do_idle - perform power saving
837 * of the OS) idle. It returns -1 in the event that the BIOS refuses
867 return -1; in apm_do_idle()
874 * apm_do_busy - inform the BIOS the CPU is busy
893 * power management - we probably want
900 * apm_cpu_idle - cpu idling for APM capable Linux
916 unsigned int jiffies_since_last_check = jiffies - last_jiffies; in apm_cpu_idle()
926 idle_percentage = nsecs_to_jiffies(stime - last_stime); in apm_cpu_idle()
953 bucket--; in apm_cpu_idle()
966 jiffies_since_last_check = jiffies - last_jiffies; in apm_cpu_idle()
978 * apm_power_off - ask the BIOS to power off
1001 * apm_enable_power_management - enable BIOS APM power management
1026 * apm_get_power_status - get current power state
1028 * @bat: battery info
1033 * source. The bat value returned give an estimate as a percentage
1039 static int apm_get_power_status(u_short *status, u_short *bat, u_short *life) in apm_get_power_status() argument
1055 *bat = call.ecx; in apm_get_power_status()
1066 u_short *bat, u_short *life, u_short *nbat)
1079 return apm_get_power_status(status, bat, life);
1086 *bat = ecx;
1094 * apm_engage_power_management - enable PM on a device
1125 * apm_console_blank - blank the display
1173 return as->event_head == as->event_tail; in queue_empty()
1178 if (++as->event_tail >= APM_MAX_EVENTS) in get_queued_event()
1179 as->event_tail = 0; in get_queued_event()
1180 return as->events[as->event_tail]; in get_queued_event()
1190 for (as = user_list; as != NULL; as = as->next) { in queue_event()
1191 if ((as == sender) || (!as->reader)) in queue_event()
1193 if (++as->event_head >= APM_MAX_EVENTS) in queue_event()
1194 as->event_head = 0; in queue_event()
1196 if (as->event_head == as->event_tail) { in queue_event()
1201 if (++as->event_tail >= APM_MAX_EVENTS) in queue_event()
1202 as->event_tail = 0; in queue_event()
1204 as->events[as->event_head] = event; in queue_event()
1205 if (!as->suser || !as->writer) in queue_event()
1210 as->suspends_pending++; in queue_event()
1216 as->standbys_pending++; in queue_event()
1268 err = (err == APM_SUCCESS) ? 0 : -EIO; in suspend()
1278 for (as = user_list; as != NULL; as = as->next) { in suspend()
1279 as->suspend_wait = 0; in suspend()
1280 as->suspend_result = err; in suspend()
1337 apm_event_name[event - 1]); in check_events()
1423 (pending_count-- <= 0)) { in apm_event_handler()
1462 if (as == NULL || as->magic != APM_BIOS_MAGIC) { in check_apm_user()
1475 as = fp->private_data; in do_read()
1477 return -EIO; in do_read()
1479 return -EINVAL; in do_read()
1480 if ((queue_empty(as)) && (fp->f_flags & O_NONBLOCK)) in do_read()
1481 return -EAGAIN; in do_read()
1489 return -EFAULT; in do_read()
1494 as->suspends_read++; in do_read()
1499 as->standbys_read++; in do_read()
1503 i -= sizeof(event); in do_read()
1506 return count - i; in do_read()
1508 return -ERESTARTSYS; in do_read()
1516 as = fp->private_data; in do_poll()
1530 as = filp->private_data; in do_ioctl()
1532 return -EIO; in do_ioctl()
1533 if (!as->suser || !as->writer) in do_ioctl()
1534 return -EPERM; in do_ioctl()
1538 if (as->standbys_read > 0) { in do_ioctl()
1539 as->standbys_read--; in do_ioctl()
1540 as->standbys_pending--; in do_ioctl()
1541 standbys_pending--; in do_ioctl()
1550 if (as->suspends_read > 0) { in do_ioctl()
1551 as->suspends_read--; in do_ioctl()
1552 as->suspends_pending--; in do_ioctl()
1553 suspends_pending--; in do_ioctl()
1560 as->suspend_wait = 1; in do_ioctl()
1563 as->suspend_wait == 0); in do_ioctl()
1564 ret = as->suspend_result; in do_ioctl()
1568 return -ENOTTY; in do_ioctl()
1577 as = filp->private_data; in do_release()
1580 filp->private_data = NULL; in do_release()
1581 if (as->standbys_pending > 0) { in do_release()
1582 standbys_pending -= as->standbys_pending; in do_release()
1586 if (as->suspends_pending > 0) { in do_release()
1587 suspends_pending -= as->suspends_pending; in do_release()
1593 user_list = as->next; in do_release()
1598 (as1 != NULL) && (as1->next != as); in do_release()
1599 as1 = as1->next) in do_release()
1604 as1->next = as->next; in do_release()
1617 return -ENOMEM; in do_open()
1619 as->magic = APM_BIOS_MAGIC; in do_open()
1620 as->event_tail = as->event_head = 0; in do_open()
1621 as->suspends_pending = as->standbys_pending = 0; in do_open()
1622 as->suspends_read = as->standbys_read = 0; in do_open()
1624 * XXX - this is a tiny bit broken, when we consider BSD in do_open()
1628 * privileged operation -- cevans in do_open()
1630 as->suser = capable(CAP_SYS_ADMIN); in do_open()
1631 as->writer = (filp->f_mode & FMODE_WRITE) == FMODE_WRITE; in do_open()
1632 as->reader = (filp->f_mode & FMODE_READ) == FMODE_READ; in do_open()
1634 as->next = user_list; in do_open()
1637 filp->private_data = as; in do_open()
1651 int percentage = -1; in proc_apm_show()
1652 int time_units = -1; in proc_apm_show()
1682 0x00: Off-line in proc_apm_show()
1683 0x01: On-line in proc_apm_show()
1691 0x04: Selected battery not present (BIOS >= 1.2 only) in proc_apm_show()
1701 0-100: valid in proc_apm_show()
1702 -1: Unknown in proc_apm_show()
1705 -1: Unknown in proc_apm_show()
1732 /* 2002/08/01 - WT in apm()
1734 * on SMP systems in case of "apm=power-off" mode. Seen on ASUS A7M266D. in apm()
1773 return -1; in apm()
1783 return -1; in apm()
1871 if ((strncmp(str, "bounce-interval=", 16) == 0) || in apm_setup()
1874 if ((strncmp(str, "idle-threshold=", 15) == 0) || in apm_setup()
1877 if ((strncmp(str, "idle-period=", 12) == 0) || in apm_setup()
1880 invert = (strncmp(str, "no-", 3) == 0) || in apm_setup()
1886 if ((strncmp(str, "power-off", 9) == 0) || in apm_setup()
1893 if ((strncmp(str, "allow-ints", 10) == 0) || in apm_setup()
1896 if ((strncmp(str, "broken-psr", 10) == 0) || in apm_setup()
1899 if ((strncmp(str, "realmode-power-off", 18) == 0) || in apm_setup()
1932 printk("%s\n", d->ident); in print_if_true()
1943 "workaround hopefully not needed.\n", d->ident); in broken_ps2_resume()
1953 "Using realmode poweroff only.\n", d->ident); in set_realmode_power_off()
1964 "Enabling interrupts during APM calls.\n", d->ident); in set_apm_ints()
1975 "Disabling APM.\n", d->ident); in apm_is_horked()
1985 "Disabling APM.\n", d->ident); in apm_is_horked_d850md()
1998 "Disabling APM idle calls.\n", d->ident); in apm_likes_to_melt()
2007 * [ Write BIOS Code ]<------
2009 * < Does it Compile >----N--
2011 * < Does it Boot Win98 >-N--
2041 KERN_WARNING "IBM T23 - BIOS 1.03b+ and controller firmware 1.02+ may be needed for Linux APM.",
2082 DMI_MATCH(DMI_PRODUCT_NAME, "XPS-Z"),
2099 apm_is_horked, "ABIT KX7-333[R]",
2101 DMI_MATCH(DMI_BOARD_NAME, "VT8367-8233A (KX7-333[R])"), },
2109 apm_is_horked, "Fujitsu-Siemens",
2124 apm_is_horked, "Dell XPS-Z",
2127 DMI_MATCH(DMI_PRODUCT_NAME, "XPS-Z"), },
2130 apm_is_horked, "Sharp PC-PJ/AX",
2132 DMI_MATCH(DMI_PRODUCT_NAME, "PC-PJ/AX"),
2153 { /* Handle problems with APM on Sony Vaio PCG-N505X(DE) */
2159 { /* Handle problems with APM on Sony Vaio PCG-N505VX */
2165 { /* Handle problems with APM on Sony Vaio PCG-XG29 */
2171 { /* Handle problems with APM on Sony Vaio PCG-Z600NE */
2177 { /* Handle problems with APM on Sony Vaio PCG-Z600NE */
2183 { /* Handle problems with APM on Sony Vaio PCG-Z600LEK(DE) */
2189 { /* Handle problems with APM on Sony Vaio PCG-Z505LS */
2195 { /* Handle problems with APM on Sony Vaio PCG-Z505LS */
2201 { /* Handle problems with APM on Sony Vaio PCG-Z505LS (with updated BIOS) */
2207 { /* Handle problems with APM on Sony Vaio PCG-F104K */
2214 { /* Handle problems with APM on Sony Vaio PCG-C1VN/C1VE */
2220 { /* Handle problems with APM on Sony Vaio PCG-C1VE */
2226 { /* Handle problems with APM on Sony Vaio PCG-C1VE */
2268 return -ENODEV; in apm_init()
2278 return -ENODEV; in apm_init()
2288 if (apm_disabled != -1) in apm_init()
2317 return -ENODEV; in apm_init()
2320 pr_notice("disabled - APM is not SMP safe.\n"); in apm_init()
2322 return -ENODEV; in apm_init()
2327 return -ENODEV; in apm_init()
2359 pr_err("disabled - Unable to start kernel thread\n"); in apm_init()
2369 "apm: disabled - APM is not SMP safe (power off active).\n"); in apm_init()