#ifndef _SYS_BOFI_IMPL_H
#define _SYS_BOFI_IMPL_H
#ifdef __cplusplus
extern "C" {
#endif
struct bofi_errent {
struct bofi_errent *next;
struct bofi_errent *cnext;
struct bofi_errent *cprev;
struct bofi_errdef errdef;
struct bofi_errstate errstate;
caddr_t name;
struct acc_log_elem *logbase;
uint_t state;
kcondvar_t cv;
ddi_softintr_t softintr_id;
};
#define BOFI_DEV_ACTIVE 1
#define BOFI_NEW_MESSAGE 2
#define BOFI_MESSAGE_WAIT 4
#define BOFI_DEBUG 8
#define BOFI_NLINKS 8192
struct bofi_link {
struct bofi_link *link;
struct bofi_errent *errentp;
};
struct bofi_shadow {
union {
#ifdef __sparc
struct dvma_ops dvma_ops;
#endif
ddi_acc_impl_t acc;
struct {
uint_t (*int_handler)(caddr_t, caddr_t);
caddr_t int_handler_arg1;
caddr_t int_handler_arg2;
} intr;
} save;
struct bofi_shadow *next;
struct bofi_shadow *prev;
struct bofi_shadow *hnext;
struct bofi_shadow *hprev;
struct bofi_shadow *dnext;
struct bofi_shadow *dprev;
struct bofi_link *link;
uint_t type;
union {
ddi_dma_handle_t dma_handle;
ddi_acc_handle_t acc_handle;
} hdl;
uint32_t bofi_inum;
dev_info_t *dip;
char name[NAMESIZE];
int instance;
int rnumber;
offset_t offset;
offset_t len;
caddr_t addr;
caddr_t mapaddr;
caddr_t origaddr;
caddr_t allocaddr;
uint_t flags;
int map_flags;
page_t *map_pp;
page_t **map_pplist;
struct bofi_shadow **hparrayp;
int hilevel;
ddi_umem_cookie_t umem_cookie;
};
#define BOFI_ACC_HDL 1
#define BOFI_DMA_HDL 2
#define BOFI_INT_HDL 3
#define BOFI_NULL 4
#ifdef __cplusplus
}
#endif
#endif