biosdisk.h revision 721df51d9894f54624a698c711ccbb724188f338
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYS_BIOSDISK_H
#define _SYS_BIOSDISK_H
#ifdef __cplusplus
extern "C" {
#endif
typedef union device_path {
struct { /* ATA or ATAPI or SATA */
unsigned char chan; /* 0 or 1 */
unsigned char lun; /* for ATAPI only */
} ata;
struct {
unsigned short target;
} scsi;
struct {
} usb;
struct {
} s1394;
struct {
} fibre;
struct {
} i2o;
struct {
} raid;
typedef union interface_path {
struct {
unsigned short baseport;
} isa;
struct { /* PCI or PCIX */
unsigned char bus;
unsigned char device;
unsigned char function;
unsigned char channel;
} pci;
char pad[8];
/*
* Structure for Int 13 function 48 (EDD 3.0)
*
* from T13/1484D Revision 2
*/
#pragma pack(1)
typedef struct int13_fn48_result {
unsigned short buflen;
unsigned short flags;
unsigned short bps;
unsigned short magic; /* BEDD if Path info there */
unsigned char pathinfo_len;
unsigned char res1;
unsigned short res2;
char interface_type[8];
unsigned char res3;
unsigned char checksum; /* offset 73 */
} fn48_t;
typedef struct int13_fn4b_result {
/*
* Bits 0-5: Sector count
* 6-7: High 2 bits of the 9-bit cylinder count
*/
} fn4b_t;
#pragma pack()
typedef struct biosdev_data {
/*
* Definitions for boot_mtype in fn4b_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 /* _SYS_BIOSDISK_H */