4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
25 #ifndef _STMF_DEFINES_H
26 #define _STMF_DEFINES_H
48 #define BIT_16 0x10000
49 #define BIT_17 0x20000
50 #define BIT_18 0x40000
51 #define BIT_19 0x80000
52 #define BIT_20 0x100000
53 #define BIT_21 0x200000
54 #define BIT_22 0x400000
55 #define BIT_23 0x800000
56 #define BIT_24 0x1000000
57 #define BIT_25 0x2000000
58 #define BIT_26 0x4000000
59 #define BIT_27 0x8000000
60 #define BIT_28 0x10000000
61 #define BIT_29 0x20000000
62 #define BIT_30 0x40000000
63 #define BIT_31 0x80000000
66 * stmf status definitions
68 typedef uint64_t stmf_status_t
;
69 #define STMF_SUCCESS ((uint64_t)0)
70 #define STMF_FAILURE ((uint64_t)0x1000000000000000)
71 #define STMF_TARGET_FAILURE ((uint64_t)0x2000000000000000)
72 #define STMF_LU_FAILURE ((uint64_t)0x3000000000000000)
73 #define STMF_FSC(x) (((uint64_t)(x)) << 32)
74 #define STMF_GET_FSC(x) ((((uint64_t)(x)) >> 32) & 0xFFFFFF)
75 #define STMF_RETRY_BIT ((uint64_t)0x0080000000000000)
76 #define STMF_BUSY (STMF_FAILURE | STMF_RETRY_BIT | STMF_FSC(0))
77 #define STMF_NOT_FOUND (STMF_FAILURE | STMF_FSC(1))
78 #define STMF_INVALID_ARG (STMF_FAILURE | STMF_FSC(2))
79 #define STMF_LUN_TAKEN (STMF_FAILURE | STMF_FSC(3))
80 #define STMF_ABORTED (STMF_FAILURE | STMF_FSC(5))
81 #define STMF_ABORT_SUCCESS (STMF_FAILURE | STMF_FSC(6))
82 #define STMF_ALLOC_FAILURE (STMF_FAILURE | STMF_FSC(7))
83 #define STMF_ALREADY (STMF_FAILURE | STMF_FSC(8))
84 #define STMF_TIMEOUT (STMF_FAILURE | STMF_FSC(9))
85 #define STMF_NOT_SUPPORTED (STMF_FAILURE | STMF_FSC(10))
87 #define GET_BYTE_OFFSET(ptr, off) (((uint8_t *)(ptr)) + (off))
88 #define GET_STRUCT_SIZE(s) ((sizeof (s) + 7) & 0xfffffff8)
89 #define READ_SCSI16(addr, type) ((((type)(((uint8_t *)(addr))[0])) \
91 ((type)(((uint8_t *)(addr))[1])))
92 #define READ_SCSI21(addr, type) ((((type)(((uint8_t *)(addr))[0] & \
94 | (READ_SCSI16(addr+1, type)))
95 #define READ_SCSI32(addr, type) (((READ_SCSI16(addr, type)) << 16) |\
96 (READ_SCSI16((addr+2), type)))
97 #define READ_SCSI64(addr, type) (((READ_SCSI32(addr, type)) << 32) |\
98 (READ_SCSI32((addr+4), type)))
99 #define PTR2INT(p, t) ((t)((ulong_t)(p)))
100 #define INT2PTR(i, t) ((t)((ulong_t)(i)))
103 * CDB definitions that don't exist in commands.h
105 #define SCMD_SYNCHRONIZE_CACHE_G4 0x91
108 * Common key, asc, ascq for stmf_scsilib_send_status
110 #define STMF_SAA_WRITE_ERROR 0x030C00
111 #define STMF_SAA_READ_ERROR 0x031100
112 #define STMF_SAA_INVALID_OPCODE 0x052000
113 #define STMF_SAA_INVALID_LU 0x052009
114 #define STMF_SAA_LBA_OUT_OF_RANGE 0x052100
115 #define STMF_SAA_INVALID_FIELD_IN_CDB 0x052400
116 #define STMF_SAA_INVALID_FIELD_IN_CMD_IU 0x050E03
117 #define STMF_SAA_REPORT_LUN_DATA_HAS_CHANGED 0x063F0E
118 #define STMF_SAA_OPERATION_IN_PROGRESS 0x050016
119 #define STMF_SAA_POR 0x062900
120 #define STMF_SAA_CAPACITY_DATA_HAS_CHANGED 0x062A09
122 struct stmf_lu_provider
;
124 struct stmf_port_provider
;
125 struct stmf_local_port
;
126 struct stmf_scsi_session
;
128 struct scsi_devid_desc
;
129 struct stmf_data_buf
;
131 struct scsi_devid_desc
;
137 #endif /* _STMF_DEFINES_H */