Home | History | Annotate | Line # | Download | only in apm
apmbios.h revision 1.4.58.1
      1  1.4.58.1      yamt /*	$NetBSD: apmbios.h,v 1.4.58.1 2008/05/16 02:23:53 yamt Exp $	*/
      2       1.1  takemura /*-
      3       1.1  takemura  * Copyright (c) 1995 The NetBSD Foundation, Inc.
      4       1.1  takemura  * All rights reserved.
      5       1.1  takemura  *
      6       1.1  takemura  * This code is derived from software contributed to The NetBSD Foundation
      7       1.1  takemura  * by John Kohl.
      8       1.1  takemura  *
      9       1.1  takemura  * Redistribution and use in source and binary forms, with or without
     10       1.1  takemura  * modification, are permitted provided that the following conditions
     11       1.1  takemura  * are met:
     12       1.1  takemura  * 1. Redistributions of source code must retain the above copyright
     13       1.1  takemura  *    notice, this list of conditions and the following disclaimer.
     14       1.1  takemura  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1  takemura  *    notice, this list of conditions and the following disclaimer in the
     16       1.1  takemura  *    documentation and/or other materials provided with the distribution.
     17       1.1  takemura  *
     18       1.1  takemura  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     19       1.1  takemura  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     20       1.1  takemura  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     21       1.1  takemura  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     22       1.1  takemura  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     23       1.1  takemura  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     24       1.1  takemura  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     25       1.1  takemura  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     26       1.1  takemura  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     27       1.1  takemura  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     28       1.1  takemura  * POSSIBILITY OF SUCH DAMAGE.
     29       1.1  takemura  */
     30       1.4  christos #ifndef _DEV_APM_APMBIOS_H_
     31       1.4  christos #define _DEV_APM_APMBIOS_H_
     32       1.1  takemura 
     33       1.1  takemura /* Advanced Power Management (v1.0 and v1.1 specification)
     34       1.1  takemura  * functions/defines/etc.
     35       1.1  takemura  */
     36       1.1  takemura #define APM_BIOS_FNCODE	(0x53)
     37       1.1  takemura #define APM_SYSTEM_BIOS	(0x15)
     38       1.1  takemura #define APM_BIOS_FN(x)	((APM_BIOS_FNCODE<<8)|(x))
     39       1.1  takemura 
     40       1.1  takemura /*
     41       1.1  takemura  * APM info bits from BIOS
     42       1.1  takemura  */
     43       1.1  takemura #define APM_16BIT_SUPPORT	0x01
     44       1.1  takemura #define APM_32BIT_SUPPORT	0x02
     45       1.1  takemura #define APM_CPUIDLE_SLOW	0x04
     46       1.1  takemura #define APM_DISABLED		0x08
     47       1.1  takemura #define APM_DISENGAGED		0x10
     48       1.1  takemura 
     49       1.1  takemura #define APM_ERR_LIMIT		10
     50       1.1  takemura 
     51       1.1  takemura #define	APM_ERR_CODE(regs)	(((regs)->AX & 0xff00) >> 8)
     52       1.1  takemura #define	APM_ERR_PM_DISABLED	0x01
     53       1.1  takemura #define	APM_ERR_REALALREADY	0x02
     54       1.1  takemura #define	APM_ERR_NOTCONN		0x03
     55       1.1  takemura #define	APM_ERR_16ALREADY	0x05
     56       1.1  takemura #define	APM_ERR_16NOTSUPP	0x06
     57       1.1  takemura #define	APM_ERR_32ALREADY	0x07
     58       1.1  takemura #define	APM_ERR_32NOTSUPP	0x08
     59       1.1  takemura #define	APM_ERR_UNRECOG_DEV	0x09
     60       1.1  takemura #define	APM_ERR_ERANGE		0x0A
     61       1.1  takemura #define	APM_ERR_NOTENGAGED	0x0B
     62       1.1  takemura #define	APM_ERR_EOPNOTSUPP	0x0C
     63       1.1  takemura #define	APM_ERR_RTIMER_DISABLED	0x0D
     64       1.1  takemura #define APM_ERR_UNABLE		0x60
     65       1.1  takemura #define APM_ERR_NOEVENTS	0x80
     66       1.1  takemura #define	APM_ERR_NOT_PRESENT	0x86
     67       1.1  takemura 
     68       1.1  takemura #define APM_DEV_APM_BIOS	0x0000
     69       1.1  takemura #define APM_DEV_ALLDEVS		0x0001
     70       1.1  takemura /* device classes are high byte; device IDs go in low byte */
     71       1.1  takemura #define		APM_DEV_DISPLAY(x)	(0x0100|((x)&0xff))
     72       1.1  takemura #define		APM_DEV_DISK(x)		(0x0200|((x)&0xff))
     73       1.1  takemura #define		APM_DEV_PARALLEL(x)	(0x0300|((x)&0xff))
     74       1.1  takemura #define		APM_DEV_SERIAL(x)	(0x0400|((x)&0xff))
     75       1.1  takemura #define		APM_DEV_NETWORK(x)	(0x0500|((x)&0xff))
     76       1.1  takemura #define		APM_DEV_PCMCIA(x)	(0x0600|((x)&0xff))
     77       1.1  takemura #define		APM_DEV_BATTERY(x)	(0x8000|((x)&0xff))	/* V1.2 */
     78       1.1  takemura #define		APM_DEV_ALLUNITS	0xff
     79       1.1  takemura 
     80       1.1  takemura #define	APM_INSTALLATION_CHECK	0x00	/* int15 only */
     81       1.1  takemura #define		APM_INSTALL_SIGNATURE	0x504d	/* %bh = 'P', %bl = 'M' */
     82       1.1  takemura #define	APM_REALMODE_CONNECT	0x01	/* int15 only */
     83       1.1  takemura #define	APM_16BIT_CONNECT	0x02	/* int15 only */
     84       1.1  takemura #define	APM_32BIT_CONNECT	0x03	/* int15 only */
     85       1.1  takemura #define APM_DISCONNECT		0x04	/* %bx = APM_DEV_APM_BIOS */
     86       1.1  takemura #define APM_CPU_IDLE		0x05
     87       1.1  takemura #define APM_CPU_BUSY		0x06
     88       1.1  takemura #define APM_SET_PWR_STATE	0x07
     89       1.1  takemura #define		APM_SYS_READY	0x0000	/* %cx */
     90       1.1  takemura #define		APM_SYS_STANDBY	0x0001
     91       1.1  takemura #define		APM_SYS_SUSPEND	0x0002
     92       1.1  takemura #define		APM_SYS_OFF	0x0003
     93       1.1  takemura #define		APM_LASTREQ_INPROG	0x0004
     94       1.1  takemura #define		APM_LASTREQ_REJECTED	0x0005
     95       1.1  takemura 
     96       1.1  takemura /* system standby is device ID (%bx) 0x0001, APM_SYS_STANDBY */
     97       1.1  takemura /* system suspend is device ID (%bx) 0x0001, APM_SYS_SUSPEND */
     98       1.1  takemura 
     99       1.1  takemura #define APM_PWR_MGT_ENABLE	0x08
    100       1.1  takemura #define		APM_MGT_ALL	0xffff	/* %bx */
    101       1.1  takemura #define		APM_MGT_DISABLE	0x0	/* %cx */
    102       1.1  takemura #define		APM_MGT_ENABLE	0x1
    103       1.1  takemura 
    104       1.1  takemura #define APM_SYSTEM_DEFAULTS	0x09
    105       1.1  takemura #define		APM_DEFAULTS_ALL	0xffff	/* %bx */
    106       1.1  takemura #define		APM_DEFAULTS_ALL_V12	0x0001	/* %bx */
    107       1.1  takemura 
    108       1.1  takemura #define APM_POWER_STATUS	0x0a
    109       1.1  takemura #define		APM_AC_OFF		0x00
    110       1.1  takemura #define		APM_AC_ON		0x01
    111       1.1  takemura #define		APM_AC_BACKUP		0x02
    112       1.1  takemura #define		APM_AC_UNKNOWN		0xff
    113       1.1  takemura /* the first set of battery constants is 1.0 style values;
    114       1.1  takemura    the second set is 1.1 style bit definitions */
    115       1.1  takemura #define		APM_BATT_HIGH		0x00
    116       1.1  takemura #define		APM_BATT_LOW		0x01
    117       1.1  takemura #define		APM_BATT_CRITICAL	0x02
    118       1.1  takemura #define		APM_BATT_CHARGING	0x03
    119       1.1  takemura #define		APM_BATT_ABSENT		0x04 /* Software only--not in spec! */
    120       1.1  takemura #define		APM_BATT_UNKNOWN	0xff
    121       1.1  takemura 
    122       1.1  takemura #define		APM_BATT_FLAG_HIGH	0x01
    123       1.1  takemura #define		APM_BATT_FLAG_LOW	0x02
    124       1.1  takemura #define		APM_BATT_FLAG_CRITICAL	0x04
    125       1.1  takemura #define		APM_BATT_FLAG_CHARGING	0x08
    126       1.1  takemura #define		APM_BATT_FLAG_NOBATTERY	0x10
    127       1.1  takemura #define		APM_BATT_FLAG_NO_SYSTEM_BATTERY	0x80
    128       1.1  takemura #define		APM_BATT_FLAG_UNKNOWN	0xff
    129       1.1  takemura 
    130       1.1  takemura #define		APM_BATT_LIFE_UNKNOWN	0xff
    131       1.1  takemura #define		APM_BATT_STATE(regp) ((regp)->BX & 0xff)
    132       1.1  takemura #define		APM_BATT_FLAGS(regp) (((regp)->CX & 0xff00) >> 8)
    133       1.1  takemura #define		APM_AC_STATE(regp) (((regp)->BX & 0xff00) >> 8)
    134       1.1  takemura #define		APM_BATT_LIFE(regp) ((regp)->CX & 0xff) /* in % */
    135       1.1  takemura /* BATT_REMAINING returns minutes remaining */
    136       1.1  takemura #define		APM_BATT_REMAINING(regp) (((regp)->DX & 0x8000) ? \
    137       1.1  takemura 					  ((regp)->DX & 0x7fff) : \
    138       1.1  takemura 					  ((regp)->DX & 0x7fff)/60)
    139       1.1  takemura #define		APM_BATT_REM_VALID(regp) (((regp)->DX & 0xffff) != 0xffff)
    140       1.1  takemura #define		APM_BATTERY_COUNT(regp) ((regp)->SI)
    141       1.1  takemura 
    142       1.1  takemura #define	APM_GET_PM_EVENT	0x0b
    143       1.1  takemura #define		APM_STANDBY_REQ		0x0001 /* %bx on return */
    144       1.1  takemura #define		APM_SUSPEND_REQ		0x0002
    145       1.1  takemura #define		APM_NORMAL_RESUME	0x0003
    146       1.1  takemura #define		APM_CRIT_RESUME		0x0004 /* suspend/resume happened
    147       1.1  takemura 						  without us */
    148       1.1  takemura      /* If set, the pccard sockets were powered off in the
    149       1.1  takemura 	suspend/standby state (V1.2 only) */
    150       1.1  takemura #define		APM_PCCARD_POWEREDOFF(regp) ((regp)->CX & 0x0001)
    151       1.1  takemura 
    152       1.1  takemura #define		APM_BATTERY_LOW		0x0005
    153       1.1  takemura #define		APM_POWER_CHANGE	0x0006
    154       1.1  takemura #define		APM_UPDATE_TIME		0x0007
    155       1.1  takemura #define		APM_CRIT_SUSPEND_REQ	0x0008
    156       1.1  takemura #define		APM_USER_STANDBY_REQ	0x0009
    157       1.1  takemura #define		APM_USER_SUSPEND_REQ	0x000A
    158       1.1  takemura #define		APM_SYS_STANDBY_RESUME	0x000B
    159       1.1  takemura #define		APM_CAP_CHANGE		0x000C	/* V1.2 */
    160       1.1  takemura 
    161       1.1  takemura #define	APM_GET_POWER_STATE	0x0c
    162       1.1  takemura      /* device to query in %bx */
    163       1.1  takemura      /* returns power states in %cx */
    164       1.1  takemura #define	APM_DEVICE_MGMT_ENABLE	0x0d
    165       1.1  takemura      /* device to enable/disable in %bx */
    166       1.1  takemura 
    167       1.1  takemura #define	APM_DRIVER_VERSION	0x0e
    168       1.1  takemura /* %bx should be DEV value (APM_DEV_APM_BIOS)
    169       1.1  takemura    %ch = driver major vno
    170       1.1  takemura    %cl = driver minor vno
    171       1.1  takemura    return: %ah = conn major; %al = conn minor
    172       1.1  takemura    */
    173       1.1  takemura #define		APM_CONN_MINOR(regp) ((regp)->AX & 0xff)
    174       1.1  takemura #define		APM_CONN_MAJOR(regp) (((regp)->AX & 0xff00) >> 8)
    175       1.1  takemura 
    176       1.1  takemura #define APM_PWR_MGT_ENGAGE	0x0F
    177       1.1  takemura      /* device in %bx */
    178       1.1  takemura #define		APM_MGT_DISENGAGE	0x0	/* %cx */
    179       1.1  takemura #define		APM_MGT_ENGAGE		0x1
    180       1.1  takemura 
    181       1.1  takemura #define APM_GET_CAPABILITIES	0x10
    182       1.1  takemura      /* device in %bx (APM_DEV_APM_BIOS) */
    183       1.1  takemura      /* %bl: number of batteries */
    184       1.1  takemura #define		APM_NBATTERIES(regp) ((regp)->BX & 0xff)
    185       1.1  takemura      /* %cx capabilities */
    186       1.1  takemura #define		APM_GLOBAL_STANDBY	0x0001
    187       1.1  takemura #define		APM_GLOBAL_SUSPEND	0x0002
    188       1.1  takemura #define		APM_RTIMER_STANDBY	0x0004 /* resume timer wakes standby */
    189       1.1  takemura #define		APM_RTIMER_SUSPEND	0x0008 /* resume timer wakes suspend */
    190       1.1  takemura #define		APM_IRRING_SUSPEND	0x0010 /* internal ring wakes suspend */
    191       1.1  takemura #define		APM_IRRING_STANDBY	0x0020 /* internal ring wakes standby */
    192       1.1  takemura #define		APM_PCRING_SUSPEND	0x0040 /* pccard ring wakes suspend */
    193       1.1  takemura #define		APM_PCRING_STANDBY	0x0080 /* pccard ring wakes standby */
    194       1.1  takemura 
    195       1.1  takemura #define	APM_RESUME_TIMER_CTL	0x11	/* get/set/disable resume timer */
    196       1.1  takemura      /* device in %bx (APM_DEV_APM_BIOS) */
    197       1.1  takemura      /* function code in %cl */
    198       1.1  takemura #define		APM_RTIMER_DISABLE	0x00
    199       1.1  takemura #define		APM_RTIMER_GET		0x01
    200       1.1  takemura #define		APM_RTIMER_SET		0x02
    201       1.1  takemura      /* if %cl = set, or %cl = get, then: */
    202       1.1  takemura      /* %ch: seconds */
    203       1.1  takemura      /* %dh: hours */
    204       1.1  takemura      /* %dl: minutes */
    205       1.1  takemura      /* %sih: month (bcd), %sil: day (bcd) */
    206       1.1  takemura      /* %di: year (bcd, 4 digits) */
    207       1.1  takemura #define APM_RESUME_RING_CTL		0x12
    208       1.1  takemura      /* device in %bx (APM_DEV_APM_BIOS) */
    209       1.1  takemura      /* %cx: function code */
    210       1.1  takemura #define		APM_RRING_DISABLE	0x0000
    211       1.1  takemura #define		APM_RRING_ENABLE	0x0001
    212       1.1  takemura #define		APM_RRING_GET		0x0002
    213       1.1  takemura      /* returns state in %cx */
    214       1.1  takemura #define		APM_RRING_DISABLED	0x0000
    215       1.1  takemura #define		APM_RRING_ENABLED	0x0001
    216       1.1  takemura 
    217       1.1  takemura #define APM_TIMER_REQS_CTL	0x13
    218       1.1  takemura      /* device in %bx (APM_DEV_APM_BIOS) */
    219       1.1  takemura      /* %cx: function code */
    220       1.1  takemura #define		APM_TIMER_REQS_DISABLE	0x0000
    221       1.1  takemura #define		APM_TIMER_REQS_ENABLE	0x0001
    222       1.1  takemura #define		APM_TIMER_REQS_GET	0x0002
    223       1.1  takemura      /* returns state in %cx */
    224       1.1  takemura #define		APM_TIMER_REQS_DISABLED	0x0000
    225       1.2       wiz #define		APM_TIMER_REQS_ENABLED	0x0001
    226       1.1  takemura 
    227       1.1  takemura #define APM_OEM			0x80
    228       1.1  takemura 
    229       1.1  takemura /*
    230       1.1  takemura  * APM info word from the real-mode handler is adjusted to put
    231       1.1  takemura  * major/minor version in low half and support bits in upper half.
    232       1.1  takemura  */
    233       1.1  takemura #define	APM_MAJOR_VERS(info) (((info)&0xff00)>>8)
    234       1.1  takemura #define	APM_MINOR_VERS(info) ((info)&0xff)
    235       1.1  takemura 
    236       1.1  takemura #define APM_16BIT_SUPPORTED	(APM_16BIT_SUPPORT << 16)
    237       1.1  takemura #define APM_32BIT_SUPPORTED	(APM_32BIT_SUPPORT << 16)
    238       1.1  takemura #define APM_IDLE_SLOWS		(APM_CPUIDLE_SLOW << 16)
    239       1.1  takemura #define APM_BIOS_PM_DISABLED	(APM_DISABLED << 16)
    240       1.1  takemura #define APM_BIOS_PM_DISENGAGED	(APM_DISENGAGED << 16)
    241       1.1  takemura 
    242       1.4  christos #define	APMDEBUG_INFO		0x01
    243       1.4  christos #define	APMDEBUG_APMCALLS	0x02
    244       1.4  christos #define	APMDEBUG_EVENTS		0x04
    245       1.4  christos #define	APMDEBUG_PROBE		0x10
    246       1.4  christos #define	APMDEBUG_ATTACH		0x40
    247       1.4  christos #define	APMDEBUG_DEVICE		0x20
    248       1.4  christos #define	APMDEBUG_ANOM		0x40
    249       1.4  christos 
    250       1.4  christos #endif /* _DEV_APM_APMBIOS_H_ */
    251