dpti_i2o.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. #ifndef _SCSI_I2O_H
  2. #define _SCSI_I2O_H
  3. /* I2O kernel space accessible structures/APIs
  4. *
  5. * (c) Copyright 1999, 2000 Red Hat Software
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. *
  12. *************************************************************************
  13. *
  14. * This header file defined the I2O APIs/structures for use by
  15. * the I2O kernel modules.
  16. *
  17. */
  18. #ifdef __KERNEL__ /* This file to be included by kernel only */
  19. #include <linux/i2o-dev.h>
  20. #include <linux/notifier.h>
  21. #include <linux/atomic.h>
  22. /*
  23. * Tunable parameters first
  24. */
  25. /* How many different OSM's are we allowing */
  26. #define MAX_I2O_MODULES 64
  27. #define I2O_EVT_CAPABILITY_OTHER 0x01
  28. #define I2O_EVT_CAPABILITY_CHANGED 0x02
  29. #define I2O_EVT_SENSOR_STATE_CHANGED 0x01
  30. //#ifdef __KERNEL__ /* ioctl stuff only thing exported to users */
  31. #define I2O_MAX_MANAGERS 4
  32. /*
  33. * I2O Interface Objects
  34. */
  35. #include <linux/wait.h>
  36. typedef wait_queue_head_t adpt_wait_queue_head_t;
  37. #define ADPT_DECLARE_WAIT_QUEUE_HEAD(wait) DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wait)
  38. typedef wait_queue_t adpt_wait_queue_t;
  39. /*
  40. * message structures
  41. */
  42. struct i2o_message
  43. {
  44. u8 version_offset;
  45. u8 flags;
  46. u16 size;
  47. u32 target_tid:12;
  48. u32 init_tid:12;
  49. u32 function:8;
  50. u32 initiator_context;
  51. /* List follows */
  52. };
  53. struct adpt_device;
  54. struct _adpt_hba;
  55. struct i2o_device
  56. {
  57. struct i2o_device *next; /* Chain */
  58. struct i2o_device *prev;
  59. char dev_name[8]; /* linux /dev name if available */
  60. i2o_lct_entry lct_data;/* Device LCT information */
  61. u32 flags;
  62. struct proc_dir_entry* proc_entry; /* /proc dir */
  63. struct adpt_device *owner;
  64. struct _adpt_hba *controller; /* Controlling IOP */
  65. };
  66. /*
  67. * Each I2O controller has one of these objects
  68. */
  69. struct i2o_controller
  70. {
  71. char name[16];
  72. int unit;
  73. int type;
  74. int enabled;
  75. struct notifier_block *event_notifer; /* Events */
  76. atomic_t users;
  77. struct i2o_device *devices; /* I2O device chain */
  78. struct i2o_controller *next; /* Controller chain */
  79. };
  80. /*
  81. * I2O System table entry
  82. */
  83. struct i2o_sys_tbl_entry
  84. {
  85. u16 org_id;
  86. u16 reserved1;
  87. u32 iop_id:12;
  88. u32 reserved2:20;
  89. u16 seg_num:12;
  90. u16 i2o_version:4;
  91. u8 iop_state;
  92. u8 msg_type;
  93. u16 frame_size;
  94. u16 reserved3;
  95. u32 last_changed;
  96. u32 iop_capabilities;
  97. u32 inbound_low;
  98. u32 inbound_high;
  99. };
  100. struct i2o_sys_tbl
  101. {
  102. u8 num_entries;
  103. u8 version;
  104. u16 reserved1;
  105. u32 change_ind;
  106. u32 reserved2;
  107. u32 reserved3;
  108. struct i2o_sys_tbl_entry iops[0];
  109. };
  110. /*
  111. * I2O classes / subclasses
  112. */
  113. /* Class ID and Code Assignments
  114. * (LCT.ClassID.Version field)
  115. */
  116. #define I2O_CLASS_VERSION_10 0x00
  117. #define I2O_CLASS_VERSION_11 0x01
  118. /* Class code names
  119. * (from v1.5 Table 6-1 Class Code Assignments.)
  120. */
  121. #define I2O_CLASS_EXECUTIVE 0x000
  122. #define I2O_CLASS_DDM 0x001
  123. #define I2O_CLASS_RANDOM_BLOCK_STORAGE 0x010
  124. #define I2O_CLASS_SEQUENTIAL_STORAGE 0x011
  125. #define I2O_CLASS_LAN 0x020
  126. #define I2O_CLASS_WAN 0x030
  127. #define I2O_CLASS_FIBRE_CHANNEL_PORT 0x040
  128. #define I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL 0x041
  129. #define I2O_CLASS_SCSI_PERIPHERAL 0x051
  130. #define I2O_CLASS_ATE_PORT 0x060
  131. #define I2O_CLASS_ATE_PERIPHERAL 0x061
  132. #define I2O_CLASS_FLOPPY_CONTROLLER 0x070
  133. #define I2O_CLASS_FLOPPY_DEVICE 0x071
  134. #define I2O_CLASS_BUS_ADAPTER_PORT 0x080
  135. #define I2O_CLASS_PEER_TRANSPORT_AGENT 0x090
  136. #define I2O_CLASS_PEER_TRANSPORT 0x091
  137. /* Rest of 0x092 - 0x09f reserved for peer-to-peer classes
  138. */
  139. #define I2O_CLASS_MATCH_ANYCLASS 0xffffffff
  140. /* Subclasses
  141. */
  142. #define I2O_SUBCLASS_i960 0x001
  143. #define I2O_SUBCLASS_HDM 0x020
  144. #define I2O_SUBCLASS_ISM 0x021
  145. /* Operation functions */
  146. #define I2O_PARAMS_FIELD_GET 0x0001
  147. #define I2O_PARAMS_LIST_GET 0x0002
  148. #define I2O_PARAMS_MORE_GET 0x0003
  149. #define I2O_PARAMS_SIZE_GET 0x0004
  150. #define I2O_PARAMS_TABLE_GET 0x0005
  151. #define I2O_PARAMS_FIELD_SET 0x0006
  152. #define I2O_PARAMS_LIST_SET 0x0007
  153. #define I2O_PARAMS_ROW_ADD 0x0008
  154. #define I2O_PARAMS_ROW_DELETE 0x0009
  155. #define I2O_PARAMS_TABLE_CLEAR 0x000A
  156. /*
  157. * I2O serial number conventions / formats
  158. * (circa v1.5)
  159. */
  160. #define I2O_SNFORMAT_UNKNOWN 0
  161. #define I2O_SNFORMAT_BINARY 1
  162. #define I2O_SNFORMAT_ASCII 2
  163. #define I2O_SNFORMAT_UNICODE 3
  164. #define I2O_SNFORMAT_LAN48_MAC 4
  165. #define I2O_SNFORMAT_WAN 5
  166. /* Plus new in v2.0 (Yellowstone pdf doc)
  167. */
  168. #define I2O_SNFORMAT_LAN64_MAC 6
  169. #define I2O_SNFORMAT_DDM 7
  170. #define I2O_SNFORMAT_IEEE_REG64 8
  171. #define I2O_SNFORMAT_IEEE_REG128 9
  172. #define I2O_SNFORMAT_UNKNOWN2 0xff
  173. /* Transaction Reply Lists (TRL) Control Word structure */
  174. #define TRL_SINGLE_FIXED_LENGTH 0x00
  175. #define TRL_SINGLE_VARIABLE_LENGTH 0x40
  176. #define TRL_MULTIPLE_FIXED_LENGTH 0x80
  177. /*
  178. * Messaging API values
  179. */
  180. #define I2O_CMD_ADAPTER_ASSIGN 0xB3
  181. #define I2O_CMD_ADAPTER_READ 0xB2
  182. #define I2O_CMD_ADAPTER_RELEASE 0xB5
  183. #define I2O_CMD_BIOS_INFO_SET 0xA5
  184. #define I2O_CMD_BOOT_DEVICE_SET 0xA7
  185. #define I2O_CMD_CONFIG_VALIDATE 0xBB
  186. #define I2O_CMD_CONN_SETUP 0xCA
  187. #define I2O_CMD_DDM_DESTROY 0xB1
  188. #define I2O_CMD_DDM_ENABLE 0xD5
  189. #define I2O_CMD_DDM_QUIESCE 0xC7
  190. #define I2O_CMD_DDM_RESET 0xD9
  191. #define I2O_CMD_DDM_SUSPEND 0xAF
  192. #define I2O_CMD_DEVICE_ASSIGN 0xB7
  193. #define I2O_CMD_DEVICE_RELEASE 0xB9
  194. #define I2O_CMD_HRT_GET 0xA8
  195. #define I2O_CMD_ADAPTER_CLEAR 0xBE
  196. #define I2O_CMD_ADAPTER_CONNECT 0xC9
  197. #define I2O_CMD_ADAPTER_RESET 0xBD
  198. #define I2O_CMD_LCT_NOTIFY 0xA2
  199. #define I2O_CMD_OUTBOUND_INIT 0xA1
  200. #define I2O_CMD_PATH_ENABLE 0xD3
  201. #define I2O_CMD_PATH_QUIESCE 0xC5
  202. #define I2O_CMD_PATH_RESET 0xD7
  203. #define I2O_CMD_STATIC_MF_CREATE 0xDD
  204. #define I2O_CMD_STATIC_MF_RELEASE 0xDF
  205. #define I2O_CMD_STATUS_GET 0xA0
  206. #define I2O_CMD_SW_DOWNLOAD 0xA9
  207. #define I2O_CMD_SW_UPLOAD 0xAB
  208. #define I2O_CMD_SW_REMOVE 0xAD
  209. #define I2O_CMD_SYS_ENABLE 0xD1
  210. #define I2O_CMD_SYS_MODIFY 0xC1
  211. #define I2O_CMD_SYS_QUIESCE 0xC3
  212. #define I2O_CMD_SYS_TAB_SET 0xA3
  213. #define I2O_CMD_UTIL_NOP 0x00
  214. #define I2O_CMD_UTIL_ABORT 0x01
  215. #define I2O_CMD_UTIL_CLAIM 0x09
  216. #define I2O_CMD_UTIL_RELEASE 0x0B
  217. #define I2O_CMD_UTIL_PARAMS_GET 0x06
  218. #define I2O_CMD_UTIL_PARAMS_SET 0x05
  219. #define I2O_CMD_UTIL_EVT_REGISTER 0x13
  220. #define I2O_CMD_UTIL_EVT_ACK 0x14
  221. #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10
  222. #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D
  223. #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F
  224. #define I2O_CMD_UTIL_LOCK 0x17
  225. #define I2O_CMD_UTIL_LOCK_RELEASE 0x19
  226. #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15
  227. #define I2O_CMD_SCSI_EXEC 0x81
  228. #define I2O_CMD_SCSI_ABORT 0x83
  229. #define I2O_CMD_SCSI_BUSRESET 0x27
  230. #define I2O_CMD_BLOCK_READ 0x30
  231. #define I2O_CMD_BLOCK_WRITE 0x31
  232. #define I2O_CMD_BLOCK_CFLUSH 0x37
  233. #define I2O_CMD_BLOCK_MLOCK 0x49
  234. #define I2O_CMD_BLOCK_MUNLOCK 0x4B
  235. #define I2O_CMD_BLOCK_MMOUNT 0x41
  236. #define I2O_CMD_BLOCK_MEJECT 0x43
  237. #define I2O_PRIVATE_MSG 0xFF
  238. /*
  239. * Init Outbound Q status
  240. */
  241. #define I2O_CMD_OUTBOUND_INIT_IN_PROGRESS 0x01
  242. #define I2O_CMD_OUTBOUND_INIT_REJECTED 0x02
  243. #define I2O_CMD_OUTBOUND_INIT_FAILED 0x03
  244. #define I2O_CMD_OUTBOUND_INIT_COMPLETE 0x04
  245. /*
  246. * I2O Get Status State values
  247. */
  248. #define ADAPTER_STATE_INITIALIZING 0x01
  249. #define ADAPTER_STATE_RESET 0x02
  250. #define ADAPTER_STATE_HOLD 0x04
  251. #define ADAPTER_STATE_READY 0x05
  252. #define ADAPTER_STATE_OPERATIONAL 0x08
  253. #define ADAPTER_STATE_FAILED 0x10
  254. #define ADAPTER_STATE_FAULTED 0x11
  255. /* I2O API function return values */
  256. #define I2O_RTN_NO_ERROR 0
  257. #define I2O_RTN_NOT_INIT 1
  258. #define I2O_RTN_FREE_Q_EMPTY 2
  259. #define I2O_RTN_TCB_ERROR 3
  260. #define I2O_RTN_TRANSACTION_ERROR 4
  261. #define I2O_RTN_ADAPTER_ALREADY_INIT 5
  262. #define I2O_RTN_MALLOC_ERROR 6
  263. #define I2O_RTN_ADPTR_NOT_REGISTERED 7
  264. #define I2O_RTN_MSG_REPLY_TIMEOUT 8
  265. #define I2O_RTN_NO_STATUS 9
  266. #define I2O_RTN_NO_FIRM_VER 10
  267. #define I2O_RTN_NO_LINK_SPEED 11
  268. /* Reply message status defines for all messages */
  269. #define I2O_REPLY_STATUS_SUCCESS 0x00
  270. #define I2O_REPLY_STATUS_ABORT_DIRTY 0x01
  271. #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER 0x02
  272. #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03
  273. #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04
  274. #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05
  275. #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06
  276. #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08
  277. #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09
  278. #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A
  279. #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B
  280. #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80
  281. /* Status codes and Error Information for Parameter functions */
  282. #define I2O_PARAMS_STATUS_SUCCESS 0x00
  283. #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01
  284. #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE 0x02
  285. #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03
  286. #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04
  287. #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05
  288. #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06
  289. #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07
  290. #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08
  291. #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09
  292. #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A
  293. #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B
  294. #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C
  295. #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D
  296. #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E
  297. #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F
  298. #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10
  299. /* DetailedStatusCode defines for Executive, DDM, Util and Transaction error
  300. * messages: Table 3-2 Detailed Status Codes.*/
  301. #define I2O_DSC_SUCCESS 0x0000
  302. #define I2O_DSC_BAD_KEY 0x0002
  303. #define I2O_DSC_TCL_ERROR 0x0003
  304. #define I2O_DSC_REPLY_BUFFER_FULL 0x0004
  305. #define I2O_DSC_NO_SUCH_PAGE 0x0005
  306. #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT 0x0006
  307. #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD 0x0007
  308. #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE 0x0009
  309. #define I2O_DSC_UNSUPPORTED_FUNCTION 0x000A
  310. #define I2O_DSC_DEVICE_LOCKED 0x000B
  311. #define I2O_DSC_DEVICE_RESET 0x000C
  312. #define I2O_DSC_INAPPROPRIATE_FUNCTION 0x000D
  313. #define I2O_DSC_INVALID_INITIATOR_ADDRESS 0x000E
  314. #define I2O_DSC_INVALID_MESSAGE_FLAGS 0x000F
  315. #define I2O_DSC_INVALID_OFFSET 0x0010
  316. #define I2O_DSC_INVALID_PARAMETER 0x0011
  317. #define I2O_DSC_INVALID_REQUEST 0x0012
  318. #define I2O_DSC_INVALID_TARGET_ADDRESS 0x0013
  319. #define I2O_DSC_MESSAGE_TOO_LARGE 0x0014
  320. #define I2O_DSC_MESSAGE_TOO_SMALL 0x0015
  321. #define I2O_DSC_MISSING_PARAMETER 0x0016
  322. #define I2O_DSC_TIMEOUT 0x0017
  323. #define I2O_DSC_UNKNOWN_ERROR 0x0018
  324. #define I2O_DSC_UNKNOWN_FUNCTION 0x0019
  325. #define I2O_DSC_UNSUPPORTED_VERSION 0x001A
  326. #define I2O_DSC_DEVICE_BUSY 0x001B
  327. #define I2O_DSC_DEVICE_NOT_AVAILABLE 0x001C
  328. /* Device Claim Types */
  329. #define I2O_CLAIM_PRIMARY 0x01000000
  330. #define I2O_CLAIM_MANAGEMENT 0x02000000
  331. #define I2O_CLAIM_AUTHORIZED 0x03000000
  332. #define I2O_CLAIM_SECONDARY 0x04000000
  333. /* Message header defines for VersionOffset */
  334. #define I2OVER15 0x0001
  335. #define I2OVER20 0x0002
  336. /* Default is 1.5, FIXME: Need support for both 1.5 and 2.0 */
  337. #define I2OVERSION I2OVER15
  338. #define SGL_OFFSET_0 I2OVERSION
  339. #define SGL_OFFSET_4 (0x0040 | I2OVERSION)
  340. #define SGL_OFFSET_5 (0x0050 | I2OVERSION)
  341. #define SGL_OFFSET_6 (0x0060 | I2OVERSION)
  342. #define SGL_OFFSET_7 (0x0070 | I2OVERSION)
  343. #define SGL_OFFSET_8 (0x0080 | I2OVERSION)
  344. #define SGL_OFFSET_9 (0x0090 | I2OVERSION)
  345. #define SGL_OFFSET_10 (0x00A0 | I2OVERSION)
  346. #define SGL_OFFSET_12 (0x00C0 | I2OVERSION)
  347. #define TRL_OFFSET_5 (0x0050 | I2OVERSION)
  348. #define TRL_OFFSET_6 (0x0060 | I2OVERSION)
  349. /* msg header defines for MsgFlags */
  350. #define MSG_STATIC 0x0100
  351. #define MSG_64BIT_CNTXT 0x0200
  352. #define MSG_MULTI_TRANS 0x1000
  353. #define MSG_FAIL 0x2000
  354. #define MSG_LAST 0x4000
  355. #define MSG_REPLY 0x8000
  356. /* minimum size msg */
  357. #define THREE_WORD_MSG_SIZE 0x00030000
  358. #define FOUR_WORD_MSG_SIZE 0x00040000
  359. #define FIVE_WORD_MSG_SIZE 0x00050000
  360. #define SIX_WORD_MSG_SIZE 0x00060000
  361. #define SEVEN_WORD_MSG_SIZE 0x00070000
  362. #define EIGHT_WORD_MSG_SIZE 0x00080000
  363. #define NINE_WORD_MSG_SIZE 0x00090000
  364. #define TEN_WORD_MSG_SIZE 0x000A0000
  365. #define I2O_MESSAGE_SIZE(x) ((x)<<16)
  366. /* Special TID Assignments */
  367. #define ADAPTER_TID 0
  368. #define HOST_TID 1
  369. #define MSG_FRAME_SIZE 128
  370. #define NMBR_MSG_FRAMES 128
  371. #define MSG_POOL_SIZE 16384
  372. #define I2O_POST_WAIT_OK 0
  373. #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT
  374. #endif /* __KERNEL__ */
  375. #endif /* _SCSI_I2O_H */