xref: /titanic_41/usr/src/uts/common/sys/dktp/gda.h (revision 342440ec94087b8c751c580ab9ed6c693d31d418)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*342440ecSPrasad Singamsetty  * Common Development and Distribution License (the "License").
6*342440ecSPrasad Singamsetty  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21*342440ecSPrasad Singamsetty 
227c478bd9Sstevel@tonic-gate /*
23*342440ecSPrasad Singamsetty  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifndef _SYS_DKTP_GDA_H
287c478bd9Sstevel@tonic-gate #define	_SYS_DKTP_GDA_H
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
317c478bd9Sstevel@tonic-gate extern "C" {
327c478bd9Sstevel@tonic-gate #endif
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #define	GDA_RTYCNT	3
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #define	GDA_BP_PKT(bp)	((struct cmpkt *)(bp)->av_back)
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #ifdef  _KERNEL
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate extern void 	gda_inqfill(char *p, int l, char *s);
417c478bd9Sstevel@tonic-gate /*PRINTFLIKE4*/
427c478bd9Sstevel@tonic-gate extern void	gda_log(dev_info_t *, char *, uint_t, const char *, ...)
437c478bd9Sstevel@tonic-gate 	__KPRINTFLIKE(4);
447c478bd9Sstevel@tonic-gate extern void	gda_errmsg(struct scsi_device *, struct cmpkt *, char *,
45*342440ecSPrasad Singamsetty 			int, daddr_t, daddr_t, char **, char **);
467c478bd9Sstevel@tonic-gate extern struct 	cmpkt *gda_pktprep(opaque_t objp, struct cmpkt *in_pktp,
477c478bd9Sstevel@tonic-gate 			opaque_t dmatoken, int (*func)(caddr_t), caddr_t arg);
487c478bd9Sstevel@tonic-gate extern void	gda_free(opaque_t objp, struct cmpkt *pktp, struct buf *bp);
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate #endif  /* _KERNEL */
517c478bd9Sstevel@tonic-gate 
527c478bd9Sstevel@tonic-gate #define	GDA_GETGEOM_HEAD(X) (((X) >> 16) & 0xff)
537c478bd9Sstevel@tonic-gate #define	GDA_GETGEOM_SEC(X)  ((X) & 0xff)
547c478bd9Sstevel@tonic-gate #define	GDA_SETGEOM(hd, sec) (((hd) << 16) | (sec))
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate #define	GDA_KMFLAG(callback) (((callback) == DDI_DMA_SLEEP) ? \
577c478bd9Sstevel@tonic-gate 				KM_SLEEP: KM_NOSLEEP)
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate #define	GDA_ALL			0
607c478bd9Sstevel@tonic-gate #define	GDA_UNKNOWN		1
617c478bd9Sstevel@tonic-gate #define	GDA_INFORMATIONAL	2
627c478bd9Sstevel@tonic-gate #define	GDA_RECOVERED		3
637c478bd9Sstevel@tonic-gate #define	GDA_RETRYABLE		4
647c478bd9Sstevel@tonic-gate #define	GDA_FATAL		5
657c478bd9Sstevel@tonic-gate 
667c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
677c478bd9Sstevel@tonic-gate }
687c478bd9Sstevel@tonic-gate #endif
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate #endif	/* _SYS_DKTP_GDA_H */
71