24 #define I2O_MAX_DRIVERS 8
26 #include <linux/pci.h>
29 #include <linux/string.h>
30 #include <linux/slab.h>
40 #define I2O_QUEUE_EMPTY 0xffffffff
53 #define CACHE_PREFETCH 1
58 #define CACHE_SMARTFETCH 2
63 #define CACHE_WRITETHROUGH 17
69 #define CACHE_WRITEBACK 18
74 #define CACHE_SMARTBACK 19
80 #define CACHE_SMARTTHROUGH 20
86 #define BLKI2OGRSTRAT _IOR('2', 1, int)
87 #define BLKI2OGWSTRAT _IOR('2', 2, int)
88 #define BLKI2OSRSTRAT _IOW('2', 3, int)
89 #define BLKI2OSWSTRAT _IOW('2', 4, int)
98 #define I2O_CMD_ADAPTER_ASSIGN 0xB3
99 #define I2O_CMD_ADAPTER_READ 0xB2
100 #define I2O_CMD_ADAPTER_RELEASE 0xB5
101 #define I2O_CMD_BIOS_INFO_SET 0xA5
102 #define I2O_CMD_BOOT_DEVICE_SET 0xA7
103 #define I2O_CMD_CONFIG_VALIDATE 0xBB
104 #define I2O_CMD_CONN_SETUP 0xCA
105 #define I2O_CMD_DDM_DESTROY 0xB1
106 #define I2O_CMD_DDM_ENABLE 0xD5
107 #define I2O_CMD_DDM_QUIESCE 0xC7
108 #define I2O_CMD_DDM_RESET 0xD9
109 #define I2O_CMD_DDM_SUSPEND 0xAF
110 #define I2O_CMD_DEVICE_ASSIGN 0xB7
111 #define I2O_CMD_DEVICE_RELEASE 0xB9
112 #define I2O_CMD_HRT_GET 0xA8
113 #define I2O_CMD_ADAPTER_CLEAR 0xBE
114 #define I2O_CMD_ADAPTER_CONNECT 0xC9
115 #define I2O_CMD_ADAPTER_RESET 0xBD
116 #define I2O_CMD_LCT_NOTIFY 0xA2
117 #define I2O_CMD_OUTBOUND_INIT 0xA1
118 #define I2O_CMD_PATH_ENABLE 0xD3
119 #define I2O_CMD_PATH_QUIESCE 0xC5
120 #define I2O_CMD_PATH_RESET 0xD7
121 #define I2O_CMD_STATIC_MF_CREATE 0xDD
122 #define I2O_CMD_STATIC_MF_RELEASE 0xDF
123 #define I2O_CMD_STATUS_GET 0xA0
124 #define I2O_CMD_SW_DOWNLOAD 0xA9
125 #define I2O_CMD_SW_UPLOAD 0xAB
126 #define I2O_CMD_SW_REMOVE 0xAD
127 #define I2O_CMD_SYS_ENABLE 0xD1
128 #define I2O_CMD_SYS_MODIFY 0xC1
129 #define I2O_CMD_SYS_QUIESCE 0xC3
130 #define I2O_CMD_SYS_TAB_SET 0xA3
135 #define I2O_CMD_UTIL_NOP 0x00
136 #define I2O_CMD_UTIL_ABORT 0x01
137 #define I2O_CMD_UTIL_CLAIM 0x09
138 #define I2O_CMD_UTIL_RELEASE 0x0B
139 #define I2O_CMD_UTIL_PARAMS_GET 0x06
140 #define I2O_CMD_UTIL_PARAMS_SET 0x05
141 #define I2O_CMD_UTIL_EVT_REGISTER 0x13
142 #define I2O_CMD_UTIL_EVT_ACK 0x14
143 #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10
144 #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D
145 #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F
146 #define I2O_CMD_UTIL_LOCK 0x17
147 #define I2O_CMD_UTIL_LOCK_RELEASE 0x19
148 #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15
153 #define I2O_CMD_SCSI_EXEC 0x81
154 #define I2O_CMD_SCSI_ABORT 0x83
155 #define I2O_CMD_SCSI_BUSRESET 0x27
160 #define I2O_CMD_BUS_ADAPTER_RESET 0x85
161 #define I2O_CMD_BUS_RESET 0x87
162 #define I2O_CMD_BUS_SCAN 0x89
163 #define I2O_CMD_BUS_QUIESCE 0x8b
168 #define I2O_CMD_BLOCK_READ 0x30
169 #define I2O_CMD_BLOCK_WRITE 0x31
170 #define I2O_CMD_BLOCK_CFLUSH 0x37
171 #define I2O_CMD_BLOCK_MLOCK 0x49
172 #define I2O_CMD_BLOCK_MUNLOCK 0x4B
173 #define I2O_CMD_BLOCK_MMOUNT 0x41
174 #define I2O_CMD_BLOCK_MEJECT 0x43
175 #define I2O_CMD_BLOCK_POWER 0x70
177 #define I2O_CMD_PRIVATE 0xFF
181 #define I2O_CMD_IN_PROGRESS 0x01
182 #define I2O_CMD_REJECTED 0x02
183 #define I2O_CMD_FAILED 0x03
184 #define I2O_CMD_COMPLETED 0x04
188 #define I2O_RTN_NO_ERROR 0
189 #define I2O_RTN_NOT_INIT 1
190 #define I2O_RTN_FREE_Q_EMPTY 2
191 #define I2O_RTN_TCB_ERROR 3
192 #define I2O_RTN_TRANSACTION_ERROR 4
193 #define I2O_RTN_ADAPTER_ALREADY_INIT 5
194 #define I2O_RTN_MALLOC_ERROR 6
195 #define I2O_RTN_ADPTR_NOT_REGISTERED 7
196 #define I2O_RTN_MSG_REPLY_TIMEOUT 8
197 #define I2O_RTN_NO_STATUS 9
198 #define I2O_RTN_NO_FIRM_VER 10
199 #define I2O_RTN_NO_LINK_SPEED 11
203 #define I2O_REPLY_STATUS_SUCCESS 0x00
204 #define I2O_REPLY_STATUS_ABORT_DIRTY 0x01
205 #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER 0x02
206 #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03
207 #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04
208 #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05
209 #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06
210 #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08
211 #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09
212 #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A
213 #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B
214 #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80
218 #define I2O_PARAMS_STATUS_SUCCESS 0x00
219 #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01
220 #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE 0x02
221 #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03
222 #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04
223 #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05
224 #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06
225 #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07
226 #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08
227 #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09
228 #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A
229 #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B
230 #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C
231 #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D
232 #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E
233 #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F
234 #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10
239 #define I2O_DSC_SUCCESS 0x0000
240 #define I2O_DSC_BAD_KEY 0x0002
241 #define I2O_DSC_TCL_ERROR 0x0003
242 #define I2O_DSC_REPLY_BUFFER_FULL 0x0004
243 #define I2O_DSC_NO_SUCH_PAGE 0x0005
244 #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT 0x0006
245 #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD 0x0007
246 #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE 0x0009
247 #define I2O_DSC_UNSUPPORTED_FUNCTION 0x000A
248 #define I2O_DSC_DEVICE_LOCKED 0x000B
249 #define I2O_DSC_DEVICE_RESET 0x000C
250 #define I2O_DSC_INAPPROPRIATE_FUNCTION 0x000D
251 #define I2O_DSC_INVALID_INITIATOR_ADDRESS 0x000E
252 #define I2O_DSC_INVALID_MESSAGE_FLAGS 0x000F
253 #define I2O_DSC_INVALID_OFFSET 0x0010
254 #define I2O_DSC_INVALID_PARAMETER 0x0011
255 #define I2O_DSC_INVALID_REQUEST 0x0012
256 #define I2O_DSC_INVALID_TARGET_ADDRESS 0x0013
257 #define I2O_DSC_MESSAGE_TOO_LARGE 0x0014
258 #define I2O_DSC_MESSAGE_TOO_SMALL 0x0015
259 #define I2O_DSC_MISSING_PARAMETER 0x0016
260 #define I2O_DSC_TIMEOUT 0x0017
261 #define I2O_DSC_UNKNOWN_ERROR 0x0018
262 #define I2O_DSC_UNKNOWN_FUNCTION 0x0019
263 #define I2O_DSC_UNSUPPORTED_VERSION 0x001A
264 #define I2O_DSC_DEVICE_BUSY 0x001B
265 #define I2O_DSC_DEVICE_NOT_AVAILABLE 0x001C
270 #define I2O_BSA_DSC_SUCCESS 0x0000
271 #define I2O_BSA_DSC_MEDIA_ERROR 0x0001
272 #define I2O_BSA_DSC_ACCESS_ERROR 0x0002
273 #define I2O_BSA_DSC_DEVICE_FAILURE 0x0003
274 #define I2O_BSA_DSC_DEVICE_NOT_READY 0x0004
275 #define I2O_BSA_DSC_MEDIA_NOT_PRESENT 0x0005
276 #define I2O_BSA_DSC_MEDIA_LOCKED 0x0006
277 #define I2O_BSA_DSC_MEDIA_FAILURE 0x0007
278 #define I2O_BSA_DSC_PROTOCOL_FAILURE 0x0008
279 #define I2O_BSA_DSC_BUS_FAILURE 0x0009
280 #define I2O_BSA_DSC_ACCESS_VIOLATION 0x000A
281 #define I2O_BSA_DSC_WRITE_PROTECTED 0x000B
282 #define I2O_BSA_DSC_DEVICE_RESET 0x000C
283 #define I2O_BSA_DSC_VOLUME_CHANGED 0x000D
284 #define I2O_BSA_DSC_TIMEOUT 0x000E
288 #define I2O_FSC_TRANSPORT_SERVICE_SUSPENDED 0x81
289 #define I2O_FSC_TRANSPORT_SERVICE_TERMINATED 0x82
290 #define I2O_FSC_TRANSPORT_CONGESTION 0x83
291 #define I2O_FSC_TRANSPORT_FAILURE 0x84
292 #define I2O_FSC_TRANSPORT_STATE_ERROR 0x85
293 #define I2O_FSC_TRANSPORT_TIME_OUT 0x86
294 #define I2O_FSC_TRANSPORT_ROUTING_FAILURE 0x87
295 #define I2O_FSC_TRANSPORT_INVALID_VERSION 0x88
296 #define I2O_FSC_TRANSPORT_INVALID_OFFSET 0x89
297 #define I2O_FSC_TRANSPORT_INVALID_MSG_FLAGS 0x8A
298 #define I2O_FSC_TRANSPORT_FRAME_TOO_SMALL 0x8B
299 #define I2O_FSC_TRANSPORT_FRAME_TOO_LARGE 0x8C
300 #define I2O_FSC_TRANSPORT_INVALID_TARGET_ID 0x8D
301 #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_ID 0x8E
302 #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_CONTEXT 0x8F
303 #define I2O_FSC_TRANSPORT_UNKNOWN_FAILURE 0xFF
306 #define I2O_CLAIM_PRIMARY 0x01000000
307 #define I2O_CLAIM_MANAGEMENT 0x02000000
308 #define I2O_CLAIM_AUTHORIZED 0x03000000
309 #define I2O_CLAIM_SECONDARY 0x04000000
312 #define I2OVER15 0x0001
313 #define I2OVER20 0x0002
316 #define I2OVERSION I2OVER15
318 #define SGL_OFFSET_0 I2OVERSION
319 #define SGL_OFFSET_4 (0x0040 | I2OVERSION)
320 #define SGL_OFFSET_5 (0x0050 | I2OVERSION)
321 #define SGL_OFFSET_6 (0x0060 | I2OVERSION)
322 #define SGL_OFFSET_7 (0x0070 | I2OVERSION)
323 #define SGL_OFFSET_8 (0x0080 | I2OVERSION)
324 #define SGL_OFFSET_9 (0x0090 | I2OVERSION)
325 #define SGL_OFFSET_10 (0x00A0 | I2OVERSION)
326 #define SGL_OFFSET_11 (0x00B0 | I2OVERSION)
327 #define SGL_OFFSET_12 (0x00C0 | I2OVERSION)
328 #define SGL_OFFSET(x) (((x)<<4) | I2OVERSION)
331 #define TRL_SINGLE_FIXED_LENGTH 0x00
332 #define TRL_SINGLE_VARIABLE_LENGTH 0x40
333 #define TRL_MULTIPLE_FIXED_LENGTH 0x80
336 #define MSG_STATIC 0x0100
337 #define MSG_64BIT_CNTXT 0x0200
338 #define MSG_MULTI_TRANS 0x1000
339 #define MSG_FAIL 0x2000
340 #define MSG_FINAL 0x4000
341 #define MSG_REPLY 0x8000
344 #define THREE_WORD_MSG_SIZE 0x00030000
345 #define FOUR_WORD_MSG_SIZE 0x00040000
346 #define FIVE_WORD_MSG_SIZE 0x00050000
347 #define SIX_WORD_MSG_SIZE 0x00060000
348 #define SEVEN_WORD_MSG_SIZE 0x00070000
349 #define EIGHT_WORD_MSG_SIZE 0x00080000
350 #define NINE_WORD_MSG_SIZE 0x00090000
351 #define TEN_WORD_MSG_SIZE 0x000A0000
352 #define ELEVEN_WORD_MSG_SIZE 0x000B0000
353 #define I2O_MESSAGE_SIZE(x) ((x)<<16)
356 #define ADAPTER_TID 0
360 #define I2O_MAX_OUTBOUND_MSG_FRAMES 128
361 #define I2O_OUTBOUND_MSG_FRAME_SIZE 128
364 #define I2O_MSG_INPOOL_MIN 32
365 #define I2O_INBOUND_MSG_FRAME_SIZE 128
367 #define I2O_POST_WAIT_OK 0
368 #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT
370 #define I2O_CONTEXT_LIST_MIN_LENGTH 15
371 #define I2O_CONTEXT_LIST_USED 0x01
372 #define I2O_CONTEXT_LIST_DELETED 0x02
375 #define I2O_TIMEOUT_INIT_OUTBOUND_QUEUE 15
376 #define I2O_TIMEOUT_MESSAGE_GET 5
377 #define I2O_TIMEOUT_RESET 30
378 #define I2O_TIMEOUT_STATUS_GET 5
379 #define I2O_TIMEOUT_LCT_GET 360
380 #define I2O_TIMEOUT_SCSI_SCB_ABORT 240
383 #define I2O_HRT_GET_TRIES 3
384 #define I2O_LCT_GET_TRIES 3
387 #define I2O_MAX_SECTORS 1024
388 #define I2O_MAX_SECTORS_LIMITED 128
389 #define I2O_MAX_PHYS_SEGMENTS BLK_MAX_SEGMENTS
566 #if BITS_PER_LONG == 64
616 unsigned long,
struct i2o_dma *);
627 #if BITS_PER_LONG == 64
633 static inline u32 i2o_ptr_low(
void *
ptr)
638 static inline u32 i2o_ptr_high(
void *ptr)
640 return (
u32) ((
u64) ptr >> 32);
645 return (
u32) (
u64) dma_addr;
650 return (
u32) ((
u64) dma_addr >> 32);
673 static inline u32 i2o_ptr_low(
void *ptr)
678 static inline u32 i2o_ptr_high(
void *ptr)
708 size_t size,
int min_nr);
721 static inline void i2o_driver_notify_controller_add(
struct i2o_driver *drv,
735 static inline void i2o_driver_notify_controller_remove(
struct i2o_driver *drv,
749 static inline void i2o_driver_notify_device_add(
struct i2o_driver *drv,
763 static inline void i2o_driver_notify_device_remove(
struct i2o_driver *drv,
783 #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver)
784 #define to_i2o_device(dev) container_of(dev, struct i2o_device, device)
785 #define to_i2o_controller(dev) container_of(dev, struct i2o_controller, device)
801 BUG_ON(m < c->out_queue.phys
852 return ERR_PTR(-
EBUSY);
892 unsigned long timeout)
914 msg = i2o_msg_in_to_virt(c, mfa);
934 i2o_msg_nop_mfa(c, mmsg->
mfa);
957 #define i2o_raw_writel(val, mem) __raw_writel(cpu_to_le32(val), mem)
964 #define osm_printk(level, format, arg...) \
965 printk(level "%s: " format, OSM_NAME , ## arg)
968 #define osm_debug(format, arg...) \
969 osm_printk(KERN_DEBUG, format , ## arg)
971 #define osm_debug(format, arg...) \
975 #define osm_err(format, arg...) \
976 osm_printk(KERN_ERR, format , ## arg)
977 #define osm_info(format, arg...) \
978 osm_printk(KERN_INFO, format , ## arg)
979 #define osm_warn(format, arg...) \
980 osm_printk(KERN_WARNING, format , ## arg)