#ifndef _SYS_BIOSDISK_H
#define _SYS_BIOSDISK_H
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef union device_path {
struct {
unsigned char chan;
unsigned char lun;
} ata;
struct {
unsigned short target;
uint32_t lun_lo;
uint32_t lun_hi;
} scsi;
struct {
uint64_t usb_serial_id;
} usb;
struct {
uint64_t eui;
} s1394;
struct {
uint64_t wwid;
uint64_t lun;
} fibre;
struct {
uint64_t id_tag;
} i2o;
struct {
uint32_t raid_array_num;
} raid;
unsigned char pad[16];
} device_path_t;
typedef union interface_path {
struct {
unsigned short baseport;
} isa;
struct {
unsigned char bus;
unsigned char device;
unsigned char function;
unsigned char channel;
} pci;
char pad[8];
} interface_path_t;
#pragma pack(1)
typedef struct int13_fn48_result {
unsigned short buflen;
unsigned short flags;
uint32_t ncyl;
uint32_t nhead;
uint32_t spt;
uint32_t nsect_lo;
uint32_t nsect_hi;
unsigned short bps;
uint32_t dpte;
unsigned short magic;
unsigned char pathinfo_len;
unsigned char res1;
unsigned short res2;
char bustype[4];
char interface_type[8];
interface_path_t interfacepath;
device_path_t devicepath;
unsigned char res3;
unsigned char checksum;
} fn48_t;
typedef struct int13_fn4b_result {
uint8_t pkt_size;
uint8_t boot_mtype;
uint8_t drivenum;
uint8_t ctlr_idx;
uint32_t lba;
uint16_t dev_spec;
uint16_t buf_seg;
uint16_t load_seg;
uint16_t sect_cnt;
uint8_t cyl_0_7;
uint8_t sec_0_5_and_cyl_8_9;
uint8_t head_cnt;
} fn4b_t;
#pragma pack()
typedef struct biosdev_data {
uchar_t first_block_valid;
uchar_t first_block[512];
uchar_t edd_valid;
fn48_t fn48_dev_params;
} biosdev_data_t;
#define BOOT_MTYPE_MASK 0xF
#define BOOT_MTYPE(x) ((x) & BOOT_MTYPE_MASK)
#define BOOT_MTYPE_NO_EMUL 0
#define BOOT_MTYPE_1_2M_FLOPPY 1
#define BOOT_MTYPE_1_44M_FLOPPY 2
#define BOOT_MTYPE_2_88M_FLOPPY 3
#define BOOT_MTYPE_HARD_DISK 4
#define BOOT_MTYPE_INTF_MASK 0xC0
#define BOOT_MTYPE_INTF_ATAPI 0x40
#define BOOT_MTYPE_INTF_SCSI 0x80
#define BOOT_MTYPE_IS_ATAPI(x) \
(((x) & BOOT_MTYPE_INTF_MASK) == BOOT_MTYPE_INTF_ATAPI)
#define BOOT_MTYPE_IS_SCSI(x) \
(((x) & BOOT_MTYPE_INTF_MASK) == BOOT_MTYPE_INTF_SCSI)
#ifdef __cplusplus
}
#endif
#endif