#ifndef _MACHINE_APMVAR_H_
#define _MACHINE_APMVAR_H_
#include <sys/ioccom.h>
#define APM_VERSION 0x0102
#define APM_16BIT_SUPPORTED 0x00010000
#define APM_32BIT_SUPPORTED 0x00020000
#define APM_IDLE_SLOWS 0x00040000
#define APM_BIOS_PM_DISABLED 0x00080000
#define APM_BIOS_PM_DISENGAGED 0x00100000
#define APM_MAJOR(f) (((f) >> 8) & 0xff)
#define APM_MINOR(f) ((f) & 0xff)
#define APM_VERMASK 0x0000ffff
#define APM_NOCLI 0x00010000
#define APM_BEBATT 0x00020000
#define APM_ERR_CODE(regs) (((regs)->ax & 0xff00) >> 8)
#define APM_ERR_PM_DISABLED 0x01
#define APM_ERR_REALALREADY 0x02
#define APM_ERR_NOTCONN 0x03
#define APM_ERR_16ALREADY 0x05
#define APM_ERR_16NOTSUPP 0x06
#define APM_ERR_32ALREADY 0x07
#define APM_ERR_32NOTSUPP 0x08
#define APM_ERR_UNRECOG_DEV 0x09
#define APM_ERR_ERANGE 0x0A
#define APM_ERR_NOTENGAGED 0x0B
#define APM_ERR_EOPNOSUPP 0x0C
#define APM_ERR_RTIMER_DISABLED 0x0D
#define APM_ERR_UNABLE 0x60
#define APM_ERR_NOEVENTS 0x80
#define APM_ERR_NOT_PRESENT 0x86
#define APM_DEV_APM_BIOS 0x0000
#define APM_DEV_ALLDEVS 0x0001
#define APM_DEV_DISPLAY(x) (0x0100|((x)&0xff))
#define APM_DEV_DISK(x) (0x0200|((x)&0xff))
#define APM_DEV_PARALLEL(x) (0x0300|((x)&0xff))
#define APM_DEV_SERIAL(x) (0x0400|((x)&0xff))
#define APM_DEV_NETWORK(x) (0x0500|((x)&0xff))
#define APM_DEV_PCMCIA(x) (0x0600|((x)&0xff))
#define APM_DEV_BATTERIES(x) (0x8000|((x)&0xff))
#define APM_DEV_ALLUNITS 0xff
#define APM_INSTCHECK 0x5300
#define APM_16BIT_SUPPORT 0x01
#define APM_32BIT_SUPPORT 0x02
#define APM_CPUIDLE_SLOW 0x04
#define APM_DISABLED 0x08
#define APM_DISENGAGED 0x10
#define APM_REAL_CONNECT 0x5301
#define APM_PROT16_CONNECT 0x5302
#define APM_PROT32_CONNECT 0x5303
#define APM_DISCONNECT 0x5304
#define APM_CPU_IDLE 0x5305
#define APM_CPU_BUSY 0x5306
#define APM_SET_PWR_STATE 0x5307
#define APM_SYS_READY 0x0000
#define APM_SYS_STANDBY 0x0001
#define APM_SYS_SUSPEND 0x0002
#define APM_SYS_OFF 0x0003
#define APM_LASTREQ_INPROG 0x0004
#define APM_LASTREQ_REJECTED 0x0005
#define APM_PWR_MGT_ENABLE 0x5308
#define APM_MGT_ALL 0xffff
#define APM_MGT_DISABLE 0x0
#define APM_MGT_ENABLE 0x1
#define APM_SYSTEM_DEFAULTS 0x5309
#define APM_DEFAULTS_ALL 0xffff
#define APM_POWER_STATUS 0x530a
#define APM_AC_OFF 0x00
#define APM_AC_ON 0x01
#define APM_AC_BACKUP 0x02
#define APM_AC_UNKNOWN 0xff
#define APM_BATT_HIGH 0x00
#define APM_BATT_LOW 0x01
#define APM_BATT_CRITICAL 0x02
#define APM_BATT_CHARGING 0x03
#define APM_BATT_UNKNOWN 0xff
#define APM_BATT_FLAG_HIGH 0x01
#define APM_BATT_FLAG_LOW 0x02
#define APM_BATT_FLAG_CRITICAL 0x04
#define APM_BATT_FLAG_CHARGING 0x08
#define APM_BATT_FLAG_NOBATTERY 0x10
#define APM_BATT_FLAG_NOSYSBATT 0x80
#define APM_BATT_LIFE_UNKNOWN 0xff
#define BATT_STATE(regp) ((regp)->bx & 0xff)
#define BATT_FLAGS(regp) (((regp)->cx & 0xff00) >> 8)
#define AC_STATE(regp) (((regp)->bx & 0xff00) >> 8)
#define BATT_LIFE(regp) ((regp)->cx & 0xff)
#define BATT_REMAINING(regp) (((regp)->dx & 0x8000) ? \
((regp)->dx & 0x7fff) : \
((regp)->dx & 0x7fff)/60)
#define BATT_REM_VALID(regp) (((regp)->dx & 0xffff) != 0xffff)
#define BATT_COUNT(regp) ((regp)->si)
#define APM_GET_PM_EVENT 0x530b
#define APM_NOEVENT 0x0000
#define APM_STANDBY_REQ 0x0001
#define APM_SUSPEND_REQ 0x0002
#define APM_NORMAL_RESUME 0x0003
#define APM_CRIT_RESUME 0x0004
#define APM_BATTERY_LOW 0x0005
#define APM_POWER_CHANGE 0x0006
#define APM_UPDATE_TIME 0x0007
#define APM_CRIT_SUSPEND_REQ 0x0008
#define APM_USER_STANDBY_REQ 0x0009
#define APM_USER_SUSPEND_REQ 0x000A
#define APM_SYS_STANDBY_RESUME 0x000B
#define APM_CAPABILITY_CHANGE 0x000C
#define APM_USER_HIBERNATE_REQ 0x000D
#define APM_EVENT_MASK 0xffff
#define APM_EVENT_COMPOSE(t,i) ((((i) & 0x7fff) << 16)|((t) & APM_EVENT_MASK))
#define APM_EVENT_TYPE(e) ((e) & APM_EVENT_MASK)
#define APM_EVENT_INDEX(e) ((e) >> 16)
#define APM_GET_POWER_STATE 0x530c
#define APM_DEVICE_MGMT_ENABLE 0x530d
#define APM_DRIVER_VERSION 0x530e
#define APM_CONN_MINOR(regp) ((regp)->ax & 0xff)
#define APM_CONN_MAJOR(regp) (((regp)->ax & 0xff00) >> 8)
#define APM_PWR_MGT_ENGAGE 0x530F
#define APM_MGT_DISENGAGE 0x0
#define APM_MGT_ENGAGE 0x1
#define APM_GET_CAPABILITIES 0x5310
#define APM_NBATTERIES(regp) ((regp)->bx)
#define APM_GLOBAL_STANDBY 0x0001
#define APM_GLOBAL_SUSPEND 0x0002
#define APM_RTIMER_STANDBY 0x0004
#define APM_RTIMER_SUSPEND 0x0008
#define APM_IRRING_STANDBY 0x0010
#define APM_IRRING_SUSPEND 0x0020
#define APM_PCCARD_STANDBY 0x0040
#define APM_PCCARD_SUSPEND 0x0080
#define APM_RESUME_TIMER 0x5311
#define APM_RT_DISABLE 0x0
#define APM_RT_GET 0x1
#define APM_RT_SET 0x2
#define APM_RESUME_ON_RING 0x5312
#define APM_ROR_DISABLE 0x0
#define APM_ROR_ENABLE 0x1
#define APM_ROR_STATUS 0x2
#define APM_INACTIVITY_TIMER 0x5313
#define APM_IT_DISABLE 0x0
#define APM_IT_ENABLE 0x1
#define APM_IT_STATUS 0x2
#define APM_OEM 0x5380
#define APM_OEM_INSTCHECK 0x7f
#define APM_BATTERY_ABSENT 4
struct apm_power_info {
u_char battery_state;
u_char ac_state;
u_char battery_life;
u_char spare1;
u_int minutes_left;
u_int spare2[6];
};
struct apm_ctl {
u_int dev;
u_int mode;
};
#define APM_IOC_REJECT _IOW('A', 0, struct apm_event_info)
#define APM_IOC_STANDBY _IO('A', 1)
#define APM_IOC_SUSPEND _IO('A', 2)
#define APM_IOC_GETPOWER _IOR('A', 3, struct apm_power_info)
#define APM_IOC_DEV_CTL _IOW('A', 5, struct apm_ctl)
#define APM_IOC_PRN_CTL _IOW('A', 6, int )
#define APM_PRINT_ON 0
#define APM_PRINT_OFF 1
#define APM_PRINT_PCT 2
#define APM_IOC_STANDBY_REQ _IO('A', 7)
#define APM_IOC_SUSPEND_REQ _IO('A', 8)
#define APM_IOC_HIBERNATE _IO('A', 9)
#ifdef _KERNEL
extern void apm_cpu_busy(void);
extern void apm_cpu_idle(void);
extern void apminit(void);
int apm_set_powstate(u_int devid, u_int powstate);
#endif
#endif