The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/bios/apm.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * APM (Advanced Power Management) BIOS Device Driver
    3  *
    4  * Copyright (c) 1994 UKAI, Fumitoshi.
    5  * Copyright (c) 1994-1995 by HOSOKAWA, Tatsumi <hosokawa@jp.FreeBSD.org>
    6  * Copyright (c) 1996 Nate Williams <nate@FreeBSD.org>
    7  * Copyright (c) 1997 Poul-Henning Kamp <phk@FreeBSD.org>
    8  *
    9  * This software may be used, modified, copied, and distributed, in
   10  * both source and binary form provided that the above copyright and
   11  * these terms are retained. Under no circumstances is the author
   12  * responsible for the proper functioning of this software, nor does
   13  * the author assume any responsibility for damages incurred with its
   14  * use.
   15  *
   16  * Sep, 1994    Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
   17  *
   18  * $FreeBSD: releng/6.3/sys/i386/bios/apm.h 139790 2005-01-06 22:18:23Z imp $
   19  */
   20 
   21 #define APM_NEVENTS 16
   22 #define APM_NPMEV   13
   23 #define APM_UNKNOWN     0xff
   24 
   25 /* static data */
   26 struct apm_softc {
   27 #ifdef PC98
   28         bus_space_tag_t         sc_iot;
   29         bus_space_handle_t      sc_ioh;
   30         struct resource         *sc_res;
   31 #endif
   32         int     initialized, active, bios_busy;
   33         int     always_halt_cpu, slow_idle_cpu;
   34         int     disabled, disengaged;
   35         int     suspending;
   36         int     standby_countdown, suspend_countdown;
   37         u_int   minorversion, majorversion;
   38         u_int   intversion, connectmode;
   39         u_int   standbys, suspends;
   40         struct bios_args bios;
   41         struct apmhook sc_suspend;
   42         struct apmhook sc_resume;
   43         struct selinfo sc_rsel;
   44         int     sc_flags;
   45         int     event_count;
   46         int     event_ptr;
   47         struct  apm_event_info event_list[APM_NEVENTS];
   48         u_char  event_filter[APM_NPMEV];
   49 };
   50 

Cache object: 78591545bb08d5af66be521c0165741d


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.