Lines Matching +full:use +full:- +full:broken +full:- +full:interrupts
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>)
41 * 1.0: use fixed device number, consolidate /proc/apm into this file,
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>
89 * Use CONFIG_SMP instead of __SMP__
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
136 * Disable interrupts while we are suspended (Andy Henroid
139 * <tmh@magenta-logic.com> and <zlatko@iskon.hr>) modified by sfr.
145 * Changed to use the sysrq-register hack for registering the
154 * broken APM (Alan Cox <alan@lxorguk.ukuu.org.uk>).
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>
245 * [no-]allow[-_]ints allow interrupts during BIOS calls
246 * [no-]broken[-_]psr BIOS has a broken GetPowerStatus call
247 * [no-]realmode[-_]power[-_]off switch to real mode before
249 * [no-]debug log some debugging messages
250 * [no-]power[-_]off power off on shutdown
251 * [no-]smp Use apm even on an SMP box
252 * bounce[-_]interval=<n> number of ticks to ignore suspend
254 * idle[-_]threshold=<n> System idle percentage above which to
257 * idle[-_]period=<n> Period (in 1/100s of a second) over
271 * broken in BIOS [Reported by Garst R. Reese <reese@isn.net>]
272 * ?: AcerNote-950: oops on reading /proc/apm - workaround is a WIP
296 * Define to re-initialize the interrupt 0 timer to 100 Hz after a suspend.
324 * The per-file APM data
397 static int apm_disabled = -1;
424 (unsigned long)__va(0x400UL), PAGE_SIZE - 0x400 - 1);
482 * apm_error - display an APM error
509 * are interrupts disabled, but all the segment registers (except SS)
513 * for the rest of the kernel. And it will be very obvious! :-) Doing
570 /* Error: -ENOMEM, or bits 8-15 of eax */
575 * __apm_bios_call - Make an APM BIOS 32bit call
580 * enabled. This call can disable interrupts for a long period of
583 * code is returned in AH (bits 8-15 of eax) and this function
584 * returns non-zero.
608 apm_bios_call_asm(call->func, call->ebx, call->ecx, in __apm_bios_call()
609 &call->eax, &call->ebx, &call->ecx, &call->edx, in __apm_bios_call()
610 &call->esi); in __apm_bios_call()
618 return call->eax & 0xff; in __apm_bios_call()
636 /* work_on_cpu can fail with -ENOMEM */ in on_cpu0()
638 call->err = ret; in on_cpu0()
640 call->err = (call->eax >> 8) & 0xff; in on_cpu0()
646 * apm_bios_call - Make an APM BIOS 32bit call (on CPU 0)
657 * __apm_bios_call_simple - Make an APM BIOS 32bit call (on CPU 0)
662 * (bits 8-15 of eax) and this function returns non-zero (it can
663 * also return -ENOMEM). This is used for simpler BIOS operations.
664 * This call may hold interrupts off for a long time on some laptops.
689 error = apm_bios_call_simple_asm(call->func, call->ebx, call->ecx, in __apm_bios_call_simple()
690 &call->eax); in __apm_bios_call_simple()
701 * apm_bios_call_simple - make a simple APM BIOS 32bit call
710 * and this function returns non-zero. This is used for simpler
711 * BIOS operations. This call may hold interrupts off for a long
731 * apm_driver_version - APM driver version
758 * apm_get_event - get an APM event from the BIOS
770 * that APM 1.2 is in use. If no messages are pending the value 0x80
792 * set_power_state - set the power management state
816 * set_system_power_state - set system wide power state
828 * apm_do_idle - perform power saving
831 * of the OS) idle. It returns -1 in the event that the BIOS refuses
861 return -1; in apm_do_idle()
868 * apm_do_busy - inform the BIOS the CPU is busy
887 * power management - we probably want
894 * apm_cpu_idle - cpu idling for APM capable Linux
910 unsigned int jiffies_since_last_check = jiffies - last_jiffies; in apm_cpu_idle()
920 idle_percentage = nsecs_to_jiffies(stime - last_stime); in apm_cpu_idle()
947 bucket--; in apm_cpu_idle()
960 jiffies_since_last_check = jiffies - last_jiffies; in apm_cpu_idle()
972 * apm_power_off - ask the BIOS to power off
995 * apm_enable_power_management - enable BIOS APM power management
1020 * apm_get_power_status - get current power state
1059 * apm_engage_power_management - enable PM on a device
1090 * apm_console_blank - blank the display
1138 return as->event_head == as->event_tail; in queue_empty()
1143 if (++as->event_tail >= APM_MAX_EVENTS) in get_queued_event()
1144 as->event_tail = 0; in get_queued_event()
1145 return as->events[as->event_tail]; in get_queued_event()
1155 for (as = user_list; as != NULL; as = as->next) { in queue_event()
1156 if ((as == sender) || (!as->reader)) in queue_event()
1158 if (++as->event_head >= APM_MAX_EVENTS) in queue_event()
1159 as->event_head = 0; in queue_event()
1161 if (as->event_head == as->event_tail) { in queue_event()
1166 if (++as->event_tail >= APM_MAX_EVENTS) in queue_event()
1167 as->event_tail = 0; in queue_event()
1169 as->events[as->event_head] = event; in queue_event()
1170 if (!as->suser || !as->writer) in queue_event()
1175 as->suspends_pending++; in queue_event()
1181 as->standbys_pending++; in queue_event()
1233 err = (err == APM_SUCCESS) ? 0 : -EIO; in suspend()
1243 for (as = user_list; as != NULL; as = as->next) { in suspend()
1244 as->suspend_wait = 0; in suspend()
1245 as->suspend_result = err; in suspend()
1281 /* we don't use the eventinfo */ in get_event()
1302 apm_event_name[event - 1]); in check_events()
1388 (pending_count-- <= 0)) { in apm_event_handler()
1427 if (as == NULL || as->magic != APM_BIOS_MAGIC) { in check_apm_user()
1440 as = fp->private_data; in do_read()
1442 return -EIO; in do_read()
1444 return -EINVAL; in do_read()
1445 if ((queue_empty(as)) && (fp->f_flags & O_NONBLOCK)) in do_read()
1446 return -EAGAIN; in do_read()
1454 return -EFAULT; in do_read()
1459 as->suspends_read++; in do_read()
1464 as->standbys_read++; in do_read()
1468 i -= sizeof(event); in do_read()
1471 return count - i; in do_read()
1473 return -ERESTARTSYS; in do_read()
1481 as = fp->private_data; in do_poll()
1495 as = filp->private_data; in do_ioctl()
1497 return -EIO; in do_ioctl()
1498 if (!as->suser || !as->writer) in do_ioctl()
1499 return -EPERM; in do_ioctl()
1503 if (as->standbys_read > 0) { in do_ioctl()
1504 as->standbys_read--; in do_ioctl()
1505 as->standbys_pending--; in do_ioctl()
1506 standbys_pending--; in do_ioctl()
1515 if (as->suspends_read > 0) { in do_ioctl()
1516 as->suspends_read--; in do_ioctl()
1517 as->suspends_pending--; in do_ioctl()
1518 suspends_pending--; in do_ioctl()
1525 as->suspend_wait = 1; in do_ioctl()
1528 as->suspend_wait == 0); in do_ioctl()
1529 ret = as->suspend_result; in do_ioctl()
1533 return -ENOTTY; in do_ioctl()
1542 as = filp->private_data; in do_release()
1545 filp->private_data = NULL; in do_release()
1546 if (as->standbys_pending > 0) { in do_release()
1547 standbys_pending -= as->standbys_pending; in do_release()
1551 if (as->suspends_pending > 0) { in do_release()
1552 suspends_pending -= as->suspends_pending; in do_release()
1558 user_list = as->next; in do_release()
1563 (as1 != NULL) && (as1->next != as); in do_release()
1564 as1 = as1->next) in do_release()
1569 as1->next = as->next; in do_release()
1582 return -ENOMEM; in do_open()
1584 as->magic = APM_BIOS_MAGIC; in do_open()
1585 as->event_tail = as->event_head = 0; in do_open()
1586 as->suspends_pending = as->standbys_pending = 0; in do_open()
1587 as->suspends_read = as->standbys_read = 0; in do_open()
1589 * XXX - this is a tiny bit broken, when we consider BSD in do_open()
1593 * privileged operation -- cevans in do_open()
1595 as->suser = capable(CAP_SYS_ADMIN); in do_open()
1596 as->writer = (filp->f_mode & FMODE_WRITE) == FMODE_WRITE; in do_open()
1597 as->reader = (filp->f_mode & FMODE_READ) == FMODE_READ; in do_open()
1599 as->next = user_list; in do_open()
1602 filp->private_data = as; in do_open()
1616 int percentage = -1; in proc_apm_show()
1617 int time_units = -1; in proc_apm_show()
1647 0x00: Off-line in proc_apm_show()
1648 0x01: On-line in proc_apm_show()
1666 0-100: valid in proc_apm_show()
1667 -1: Unknown in proc_apm_show()
1670 -1: Unknown in proc_apm_show()
1697 /* 2002/08/01 - WT in apm()
1699 * on SMP systems in case of "apm=power-off" mode. Seen on ASUS A7M266D. in apm()
1738 return -1; in apm()
1748 return -1; in apm()
1836 if ((strncmp(str, "bounce-interval=", 16) == 0) || in apm_setup()
1839 if ((strncmp(str, "idle-threshold=", 15) == 0) || in apm_setup()
1842 if ((strncmp(str, "idle-period=", 12) == 0) || in apm_setup()
1845 invert = (strncmp(str, "no-", 3) == 0) || in apm_setup()
1851 if ((strncmp(str, "power-off", 9) == 0) || in apm_setup()
1858 if ((strncmp(str, "allow-ints", 10) == 0) || in apm_setup()
1861 if ((strncmp(str, "broken-psr", 10) == 0) || in apm_setup()
1864 if ((strncmp(str, "realmode-power-off", 18) == 0) || in apm_setup()
1897 printk("%s\n", d->ident); in print_if_true()
1908 "workaround hopefully not needed.\n", d->ident); in broken_ps2_resume()
1912 /* Some bioses have a broken protected mode poweroff and need to use realmode */
1918 "Using realmode poweroff only.\n", d->ident); in set_realmode_power_off()
1923 /* Some laptops require interrupts to be enabled during APM calls */
1929 "Enabling interrupts during APM calls.\n", d->ident); in set_apm_ints()
1940 "Disabling APM.\n", d->ident); in apm_is_horked()
1950 "Disabling APM.\n", d->ident); in apm_is_horked_d850md()
1963 "Disabling APM idle calls.\n", d->ident); in apm_likes_to_melt()
1969 * Check for clue free BIOS implementations who use
1972 * [ Write BIOS Code ]<------
1974 * < Does it Compile >----N--
1976 * < Does it Boot Win98 >-N--
2006 KERN_WARNING "IBM T23 - BIOS 1.03b+ and controller firmware 1.02+ may be needed for Linux APM.",
2015 { /* Allow interrupts during suspend on Dell Latitude laptops*/
2027 { /* Allow interrupts during suspend on Dell Inspiron laptops*/
2047 DMI_MATCH(DMI_PRODUCT_NAME, "XPS-Z"),
2051 { /* Allow interrupts during suspend on Compaq Laptops*/
2058 { /* Allow interrupts during APM or the clock goes slow */
2064 apm_is_horked, "ABIT KX7-333[R]",
2066 DMI_MATCH(DMI_BOARD_NAME, "VT8367-8233A (KX7-333[R])"), },
2074 apm_is_horked, "Fujitsu-Siemens",
2089 apm_is_horked, "Dell XPS-Z",
2092 DMI_MATCH(DMI_PRODUCT_NAME, "XPS-Z"), },
2095 apm_is_horked, "Sharp PC-PJ/AX",
2097 DMI_MATCH(DMI_PRODUCT_NAME, "PC-PJ/AX"),
2118 { /* Handle problems with APM on Sony Vaio PCG-N505X(DE) */
2124 { /* Handle problems with APM on Sony Vaio PCG-N505VX */
2130 { /* Handle problems with APM on Sony Vaio PCG-XG29 */
2136 { /* Handle problems with APM on Sony Vaio PCG-Z600NE */
2142 { /* Handle problems with APM on Sony Vaio PCG-Z600NE */
2148 { /* Handle problems with APM on Sony Vaio PCG-Z600LEK(DE) */
2154 { /* Handle problems with APM on Sony Vaio PCG-Z505LS */
2160 { /* Handle problems with APM on Sony Vaio PCG-Z505LS */
2166 { /* Handle problems with APM on Sony Vaio PCG-Z505LS (with updated BIOS) */
2172 { /* Handle problems with APM on Sony Vaio PCG-F104K */
2179 { /* Handle problems with APM on Sony Vaio PCG-C1VN/C1VE */
2185 { /* Handle problems with APM on Sony Vaio PCG-C1VE */
2191 { /* Handle problems with APM on Sony Vaio PCG-C1VE */
2197 { /* broken PM poweroff bios */
2206 { /* Allow interrupts during suspend on IBM laptops */
2233 return -ENODEV; in apm_init()
2243 return -ENODEV; in apm_init()
2253 if (apm_disabled != -1) in apm_init()
2282 return -ENODEV; in apm_init()
2285 pr_notice("disabled - APM is not SMP safe.\n"); in apm_init()
2287 return -ENODEV; in apm_init()
2292 return -ENODEV; in apm_init()
2307 * Most BIOS's, however, will respect a 64k limit, so we use that. in apm_init()
2324 pr_err("disabled - Unable to start kernel thread\n"); in apm_init()
2334 "apm: disabled - APM is not SMP safe (power off active).\n"); in apm_init()
2395 MODULE_PARM_DESC(allow_ints, "Allow interrupts during BIOS calls");
2397 MODULE_PARM_DESC(broken_psr, "BIOS has a broken GetPowerStatus call");
2409 "Set this to enable APM use on an SMP platform. Use with caution on older systems");