1*25cf1a30Sjl139090 /* 2*25cf1a30Sjl139090 * CDDL HEADER START 3*25cf1a30Sjl139090 * 4*25cf1a30Sjl139090 * The contents of this file are subject to the terms of the 5*25cf1a30Sjl139090 * Common Development and Distribution License (the "License"). 6*25cf1a30Sjl139090 * You may not use this file except in compliance with the License. 7*25cf1a30Sjl139090 * 8*25cf1a30Sjl139090 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*25cf1a30Sjl139090 * or http://www.opensolaris.org/os/licensing. 10*25cf1a30Sjl139090 * See the License for the specific language governing permissions 11*25cf1a30Sjl139090 * and limitations under the License. 12*25cf1a30Sjl139090 * 13*25cf1a30Sjl139090 * When distributing Covered Code, include this CDDL HEADER in each 14*25cf1a30Sjl139090 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*25cf1a30Sjl139090 * If applicable, add the following below this CDDL HEADER, with the 16*25cf1a30Sjl139090 * fields enclosed by brackets "[]" replaced with your own identifying 17*25cf1a30Sjl139090 * information: Portions Copyright [yyyy] [name of copyright owner] 18*25cf1a30Sjl139090 * 19*25cf1a30Sjl139090 * CDDL HEADER END 20*25cf1a30Sjl139090 */ 21*25cf1a30Sjl139090 /* 22*25cf1a30Sjl139090 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23*25cf1a30Sjl139090 * Use is subject to license terms. 24*25cf1a30Sjl139090 */ 25*25cf1a30Sjl139090 26*25cf1a30Sjl139090 #ifndef _DDM2S_H 27*25cf1a30Sjl139090 #define _DDM2S_H 28*25cf1a30Sjl139090 29*25cf1a30Sjl139090 #pragma ident "%Z%%M% %I% %E% SMI" 30*25cf1a30Sjl139090 31*25cf1a30Sjl139090 32*25cf1a30Sjl139090 #ifdef __cplusplus 33*25cf1a30Sjl139090 extern "C" { 34*25cf1a30Sjl139090 #endif 35*25cf1a30Sjl139090 36*25cf1a30Sjl139090 #define DM2S_MAX_SG 20 /* Max. scatter-gather elements */ 37*25cf1a30Sjl139090 #define DM2S_MAX_RETRIES 3 /* Max. number of retries */ 38*25cf1a30Sjl139090 39*25cf1a30Sjl139090 /* 40*25cf1a30Sjl139090 * Instance structure. 41*25cf1a30Sjl139090 */ 42*25cf1a30Sjl139090 typedef struct dm2s { 43*25cf1a30Sjl139090 dev_info_t *ms_dip; /* Devinfo pointer */ 44*25cf1a30Sjl139090 major_t ms_major; /* Major number */ 45*25cf1a30Sjl139090 uint32_t ms_ppa; /* Device instance */ 46*25cf1a30Sjl139090 mkey_t ms_key; /* Mailbox key */ 47*25cf1a30Sjl139090 target_id_t ms_target; /* Target-id */ 48*25cf1a30Sjl139090 49*25cf1a30Sjl139090 ddi_iblock_cookie_t ms_ibcookie; /* Interrupt block cookie */ 50*25cf1a30Sjl139090 kmutex_t ms_lock; /* Lock to protect this structure */ 51*25cf1a30Sjl139090 kcondvar_t ms_wait; /* Cond. var to signal events */ 52*25cf1a30Sjl139090 53*25cf1a30Sjl139090 uint32_t ms_mtu; /* MTU supported */ 54*25cf1a30Sjl139090 queue_t *ms_rq; /* Read side queue */ 55*25cf1a30Sjl139090 queue_t *ms_wq; /* Write side queuee */ 56*25cf1a30Sjl139090 uint32_t ms_state; /* State of the device */ 57*25cf1a30Sjl139090 58*25cf1a30Sjl139090 uint32_t ms_retries; /* Number of retries */ 59*25cf1a30Sjl139090 timeout_id_t ms_rq_timeoutid; /* Timeout id for read queue */ 60*25cf1a30Sjl139090 timeout_id_t ms_wq_timeoutid; /* Timeout id for write queue */ 61*25cf1a30Sjl139090 bufcall_id_t ms_rbufcid; /* Buffcall-id for the read */ 62*25cf1a30Sjl139090 63*25cf1a30Sjl139090 uint64_t ms_obytes; /* Number of output bytes */ 64*25cf1a30Sjl139090 uint64_t ms_ibytes; /* Number of input bytes */ 65*25cf1a30Sjl139090 66*25cf1a30Sjl139090 uint32_t ms_clean; /* Cleanup flags */ 67*25cf1a30Sjl139090 mscat_gath_t ms_sg_rcv; /* Scatter-gather for receive */ 68*25cf1a30Sjl139090 mscat_gath_t ms_sg_tx[DM2S_MAX_SG]; /* scatter-gather for Tx */ 69*25cf1a30Sjl139090 } dm2s_t; 70*25cf1a30Sjl139090 71*25cf1a30Sjl139090 /* ms_state flags */ 72*25cf1a30Sjl139090 #define DM2S_MB_INITED 0x00000001 /* Mailbox initialized */ 73*25cf1a30Sjl139090 #define DM2S_MB_CONN 0x00000002 /* Mailbox in connected state */ 74*25cf1a30Sjl139090 #define DM2S_MB_DISC 0x00000004 /* Mailbox is disconnected */ 75*25cf1a30Sjl139090 #define DM2S_OPENED 0x00000008 /* Device opened */ 76*25cf1a30Sjl139090 77*25cf1a30Sjl139090 #define DM2S_MBOX_READY(x) ((x)->ms_state & DM2S_MB_CONN) 78*25cf1a30Sjl139090 79*25cf1a30Sjl139090 /* ms_clean flags */ 80*25cf1a30Sjl139090 #define DM2S_CLEAN_LOCK 0x00000001 81*25cf1a30Sjl139090 #define DM2S_CLEAN_CV 0x00000002 82*25cf1a30Sjl139090 #define DM2S_CLEAN_NODE 0x00000004 83*25cf1a30Sjl139090 84*25cf1a30Sjl139090 #ifdef DEBUG 85*25cf1a30Sjl139090 /* 86*25cf1a30Sjl139090 * Debug levels 87*25cf1a30Sjl139090 */ 88*25cf1a30Sjl139090 #define DBG_DRV 0x01 /* driver related traces */ 89*25cf1a30Sjl139090 #define DBG_MBOX 0x02 /* Mailbox traces */ 90*25cf1a30Sjl139090 #define DBG_MESG 0x04 /* Mailbox Message traces */ 91*25cf1a30Sjl139090 #define DBG_WARN 0x10 /* warning type traces */ 92*25cf1a30Sjl139090 93*25cf1a30Sjl139090 static void dm2s_dump_bytes(char *str, uint32_t total_len, 94*25cf1a30Sjl139090 uint32_t num_sg, mscat_gath_t *sgp); 95*25cf1a30Sjl139090 96*25cf1a30Sjl139090 #define DPRINTF(f, x) if (f & dm2s_debug) printf x 97*25cf1a30Sjl139090 #define DMPBYTES(s, l, n, sg) dm2s_dump_bytes(s, l, n, sg) 98*25cf1a30Sjl139090 99*25cf1a30Sjl139090 #else /* DEBUG */ 100*25cf1a30Sjl139090 101*25cf1a30Sjl139090 #define DPRINTF(f, x) 102*25cf1a30Sjl139090 #define DMPBYTES(s, l, n, sg) 103*25cf1a30Sjl139090 104*25cf1a30Sjl139090 #endif /* DEBUG */ 105*25cf1a30Sjl139090 106*25cf1a30Sjl139090 #ifdef __cplusplus 107*25cf1a30Sjl139090 } 108*25cf1a30Sjl139090 #endif 109*25cf1a30Sjl139090 110*25cf1a30Sjl139090 #endif /* _DDM2S_H */ 111