i2o.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. /*
  2. * I2O kernel space accessible structures/APIs
  3. *
  4. * (c) Copyright 1999, 2000 Red Hat Software
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. *
  11. *************************************************************************
  12. *
  13. * This header file defined the I2O APIs/structures for use by
  14. * the I2O kernel modules.
  15. *
  16. */
  17. #ifndef _I2O_H
  18. #define _I2O_H
  19. #include <linux/i2o-dev.h>
  20. /* How many different OSM's are we allowing */
  21. #define I2O_MAX_DRIVERS 8
  22. #include <linux/pci.h>
  23. #include <linux/bug.h>
  24. #include <linux/dma-mapping.h>
  25. #include <linux/string.h>
  26. #include <linux/slab.h>
  27. #include <linux/workqueue.h> /* work_struct */
  28. #include <linux/mempool.h>
  29. #include <linux/mutex.h>
  30. #include <linux/scatterlist.h>
  31. #include <linux/semaphore.h> /* Needed for MUTEX init macros */
  32. #include <asm/io.h>
  33. /* message queue empty */
  34. #define I2O_QUEUE_EMPTY 0xffffffff
  35. /*
  36. * Cache strategies
  37. */
  38. /* The NULL strategy leaves everything up to the controller. This tends to be a
  39. * pessimal but functional choice.
  40. */
  41. #define CACHE_NULL 0
  42. /* Prefetch data when reading. We continually attempt to load the next 32 sectors
  43. * into the controller cache.
  44. */
  45. #define CACHE_PREFETCH 1
  46. /* Prefetch data when reading. We sometimes attempt to load the next 32 sectors
  47. * into the controller cache. When an I/O is less <= 8K we assume its probably
  48. * not sequential and don't prefetch (default)
  49. */
  50. #define CACHE_SMARTFETCH 2
  51. /* Data is written to the cache and then out on to the disk. The I/O must be
  52. * physically on the medium before the write is acknowledged (default without
  53. * NVRAM)
  54. */
  55. #define CACHE_WRITETHROUGH 17
  56. /* Data is written to the cache and then out on to the disk. The controller
  57. * is permitted to write back the cache any way it wants. (default if battery
  58. * backed NVRAM is present). It can be useful to set this for swap regardless of
  59. * battery state.
  60. */
  61. #define CACHE_WRITEBACK 18
  62. /* Optimise for under powered controllers, especially on RAID1 and RAID0. We
  63. * write large I/O's directly to disk bypassing the cache to avoid the extra
  64. * memory copy hits. Small writes are writeback cached
  65. */
  66. #define CACHE_SMARTBACK 19
  67. /* Optimise for under powered controllers, especially on RAID1 and RAID0. We
  68. * write large I/O's directly to disk bypassing the cache to avoid the extra
  69. * memory copy hits. Small writes are writethrough cached. Suitable for devices
  70. * lacking battery backup
  71. */
  72. #define CACHE_SMARTTHROUGH 20
  73. /*
  74. * Ioctl structures
  75. */
  76. #define BLKI2OGRSTRAT _IOR('2', 1, int)
  77. #define BLKI2OGWSTRAT _IOR('2', 2, int)
  78. #define BLKI2OSRSTRAT _IOW('2', 3, int)
  79. #define BLKI2OSWSTRAT _IOW('2', 4, int)
  80. /*
  81. * I2O Function codes
  82. */
  83. /*
  84. * Executive Class
  85. */
  86. #define I2O_CMD_ADAPTER_ASSIGN 0xB3
  87. #define I2O_CMD_ADAPTER_READ 0xB2
  88. #define I2O_CMD_ADAPTER_RELEASE 0xB5
  89. #define I2O_CMD_BIOS_INFO_SET 0xA5
  90. #define I2O_CMD_BOOT_DEVICE_SET 0xA7
  91. #define I2O_CMD_CONFIG_VALIDATE 0xBB
  92. #define I2O_CMD_CONN_SETUP 0xCA
  93. #define I2O_CMD_DDM_DESTROY 0xB1
  94. #define I2O_CMD_DDM_ENABLE 0xD5
  95. #define I2O_CMD_DDM_QUIESCE 0xC7
  96. #define I2O_CMD_DDM_RESET 0xD9
  97. #define I2O_CMD_DDM_SUSPEND 0xAF
  98. #define I2O_CMD_DEVICE_ASSIGN 0xB7
  99. #define I2O_CMD_DEVICE_RELEASE 0xB9
  100. #define I2O_CMD_HRT_GET 0xA8
  101. #define I2O_CMD_ADAPTER_CLEAR 0xBE
  102. #define I2O_CMD_ADAPTER_CONNECT 0xC9
  103. #define I2O_CMD_ADAPTER_RESET 0xBD
  104. #define I2O_CMD_LCT_NOTIFY 0xA2
  105. #define I2O_CMD_OUTBOUND_INIT 0xA1
  106. #define I2O_CMD_PATH_ENABLE 0xD3
  107. #define I2O_CMD_PATH_QUIESCE 0xC5
  108. #define I2O_CMD_PATH_RESET 0xD7
  109. #define I2O_CMD_STATIC_MF_CREATE 0xDD
  110. #define I2O_CMD_STATIC_MF_RELEASE 0xDF
  111. #define I2O_CMD_STATUS_GET 0xA0
  112. #define I2O_CMD_SW_DOWNLOAD 0xA9
  113. #define I2O_CMD_SW_UPLOAD 0xAB
  114. #define I2O_CMD_SW_REMOVE 0xAD
  115. #define I2O_CMD_SYS_ENABLE 0xD1
  116. #define I2O_CMD_SYS_MODIFY 0xC1
  117. #define I2O_CMD_SYS_QUIESCE 0xC3
  118. #define I2O_CMD_SYS_TAB_SET 0xA3
  119. /*
  120. * Utility Class
  121. */
  122. #define I2O_CMD_UTIL_NOP 0x00
  123. #define I2O_CMD_UTIL_ABORT 0x01
  124. #define I2O_CMD_UTIL_CLAIM 0x09
  125. #define I2O_CMD_UTIL_RELEASE 0x0B
  126. #define I2O_CMD_UTIL_PARAMS_GET 0x06
  127. #define I2O_CMD_UTIL_PARAMS_SET 0x05
  128. #define I2O_CMD_UTIL_EVT_REGISTER 0x13
  129. #define I2O_CMD_UTIL_EVT_ACK 0x14
  130. #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10
  131. #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D
  132. #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F
  133. #define I2O_CMD_UTIL_LOCK 0x17
  134. #define I2O_CMD_UTIL_LOCK_RELEASE 0x19
  135. #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15
  136. /*
  137. * SCSI Host Bus Adapter Class
  138. */
  139. #define I2O_CMD_SCSI_EXEC 0x81
  140. #define I2O_CMD_SCSI_ABORT 0x83
  141. #define I2O_CMD_SCSI_BUSRESET 0x27
  142. /*
  143. * Bus Adapter Class
  144. */
  145. #define I2O_CMD_BUS_ADAPTER_RESET 0x85
  146. #define I2O_CMD_BUS_RESET 0x87
  147. #define I2O_CMD_BUS_SCAN 0x89
  148. #define I2O_CMD_BUS_QUIESCE 0x8b
  149. /*
  150. * Random Block Storage Class
  151. */
  152. #define I2O_CMD_BLOCK_READ 0x30
  153. #define I2O_CMD_BLOCK_WRITE 0x31
  154. #define I2O_CMD_BLOCK_CFLUSH 0x37
  155. #define I2O_CMD_BLOCK_MLOCK 0x49
  156. #define I2O_CMD_BLOCK_MUNLOCK 0x4B
  157. #define I2O_CMD_BLOCK_MMOUNT 0x41
  158. #define I2O_CMD_BLOCK_MEJECT 0x43
  159. #define I2O_CMD_BLOCK_POWER 0x70
  160. #define I2O_CMD_PRIVATE 0xFF
  161. /* Command status values */
  162. #define I2O_CMD_IN_PROGRESS 0x01
  163. #define I2O_CMD_REJECTED 0x02
  164. #define I2O_CMD_FAILED 0x03
  165. #define I2O_CMD_COMPLETED 0x04
  166. /* I2O API function return values */
  167. #define I2O_RTN_NO_ERROR 0
  168. #define I2O_RTN_NOT_INIT 1
  169. #define I2O_RTN_FREE_Q_EMPTY 2
  170. #define I2O_RTN_TCB_ERROR 3
  171. #define I2O_RTN_TRANSACTION_ERROR 4
  172. #define I2O_RTN_ADAPTER_ALREADY_INIT 5
  173. #define I2O_RTN_MALLOC_ERROR 6
  174. #define I2O_RTN_ADPTR_NOT_REGISTERED 7
  175. #define I2O_RTN_MSG_REPLY_TIMEOUT 8
  176. #define I2O_RTN_NO_STATUS 9
  177. #define I2O_RTN_NO_FIRM_VER 10
  178. #define I2O_RTN_NO_LINK_SPEED 11
  179. /* Reply message status defines for all messages */
  180. #define I2O_REPLY_STATUS_SUCCESS 0x00
  181. #define I2O_REPLY_STATUS_ABORT_DIRTY 0x01
  182. #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER 0x02
  183. #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03
  184. #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04
  185. #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05
  186. #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06
  187. #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08
  188. #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09
  189. #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A
  190. #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B
  191. #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80
  192. /* Status codes and Error Information for Parameter functions */
  193. #define I2O_PARAMS_STATUS_SUCCESS 0x00
  194. #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01
  195. #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE 0x02
  196. #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03
  197. #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04
  198. #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05
  199. #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06
  200. #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07
  201. #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08
  202. #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09
  203. #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A
  204. #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B
  205. #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C
  206. #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D
  207. #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E
  208. #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F
  209. #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10
  210. /* DetailedStatusCode defines for Executive, DDM, Util and Transaction error
  211. * messages: Table 3-2 Detailed Status Codes.*/
  212. #define I2O_DSC_SUCCESS 0x0000
  213. #define I2O_DSC_BAD_KEY 0x0002
  214. #define I2O_DSC_TCL_ERROR 0x0003
  215. #define I2O_DSC_REPLY_BUFFER_FULL 0x0004
  216. #define I2O_DSC_NO_SUCH_PAGE 0x0005
  217. #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT 0x0006
  218. #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD 0x0007
  219. #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE 0x0009
  220. #define I2O_DSC_UNSUPPORTED_FUNCTION 0x000A
  221. #define I2O_DSC_DEVICE_LOCKED 0x000B
  222. #define I2O_DSC_DEVICE_RESET 0x000C
  223. #define I2O_DSC_INAPPROPRIATE_FUNCTION 0x000D
  224. #define I2O_DSC_INVALID_INITIATOR_ADDRESS 0x000E
  225. #define I2O_DSC_INVALID_MESSAGE_FLAGS 0x000F
  226. #define I2O_DSC_INVALID_OFFSET 0x0010
  227. #define I2O_DSC_INVALID_PARAMETER 0x0011
  228. #define I2O_DSC_INVALID_REQUEST 0x0012
  229. #define I2O_DSC_INVALID_TARGET_ADDRESS 0x0013
  230. #define I2O_DSC_MESSAGE_TOO_LARGE 0x0014
  231. #define I2O_DSC_MESSAGE_TOO_SMALL 0x0015
  232. #define I2O_DSC_MISSING_PARAMETER 0x0016
  233. #define I2O_DSC_TIMEOUT 0x0017
  234. #define I2O_DSC_UNKNOWN_ERROR 0x0018
  235. #define I2O_DSC_UNKNOWN_FUNCTION 0x0019
  236. #define I2O_DSC_UNSUPPORTED_VERSION 0x001A
  237. #define I2O_DSC_DEVICE_BUSY 0x001B
  238. #define I2O_DSC_DEVICE_NOT_AVAILABLE 0x001C
  239. /* DetailedStatusCode defines for Block Storage Operation: Table 6-7 Detailed
  240. Status Codes.*/
  241. #define I2O_BSA_DSC_SUCCESS 0x0000
  242. #define I2O_BSA_DSC_MEDIA_ERROR 0x0001
  243. #define I2O_BSA_DSC_ACCESS_ERROR 0x0002
  244. #define I2O_BSA_DSC_DEVICE_FAILURE 0x0003
  245. #define I2O_BSA_DSC_DEVICE_NOT_READY 0x0004
  246. #define I2O_BSA_DSC_MEDIA_NOT_PRESENT 0x0005
  247. #define I2O_BSA_DSC_MEDIA_LOCKED 0x0006
  248. #define I2O_BSA_DSC_MEDIA_FAILURE 0x0007
  249. #define I2O_BSA_DSC_PROTOCOL_FAILURE 0x0008
  250. #define I2O_BSA_DSC_BUS_FAILURE 0x0009
  251. #define I2O_BSA_DSC_ACCESS_VIOLATION 0x000A
  252. #define I2O_BSA_DSC_WRITE_PROTECTED 0x000B
  253. #define I2O_BSA_DSC_DEVICE_RESET 0x000C
  254. #define I2O_BSA_DSC_VOLUME_CHANGED 0x000D
  255. #define I2O_BSA_DSC_TIMEOUT 0x000E
  256. /* FailureStatusCodes, Table 3-3 Message Failure Codes */
  257. #define I2O_FSC_TRANSPORT_SERVICE_SUSPENDED 0x81
  258. #define I2O_FSC_TRANSPORT_SERVICE_TERMINATED 0x82
  259. #define I2O_FSC_TRANSPORT_CONGESTION 0x83
  260. #define I2O_FSC_TRANSPORT_FAILURE 0x84
  261. #define I2O_FSC_TRANSPORT_STATE_ERROR 0x85
  262. #define I2O_FSC_TRANSPORT_TIME_OUT 0x86
  263. #define I2O_FSC_TRANSPORT_ROUTING_FAILURE 0x87
  264. #define I2O_FSC_TRANSPORT_INVALID_VERSION 0x88
  265. #define I2O_FSC_TRANSPORT_INVALID_OFFSET 0x89
  266. #define I2O_FSC_TRANSPORT_INVALID_MSG_FLAGS 0x8A
  267. #define I2O_FSC_TRANSPORT_FRAME_TOO_SMALL 0x8B
  268. #define I2O_FSC_TRANSPORT_FRAME_TOO_LARGE 0x8C
  269. #define I2O_FSC_TRANSPORT_INVALID_TARGET_ID 0x8D
  270. #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_ID 0x8E
  271. #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_CONTEXT 0x8F
  272. #define I2O_FSC_TRANSPORT_UNKNOWN_FAILURE 0xFF
  273. /* Device Claim Types */
  274. #define I2O_CLAIM_PRIMARY 0x01000000
  275. #define I2O_CLAIM_MANAGEMENT 0x02000000
  276. #define I2O_CLAIM_AUTHORIZED 0x03000000
  277. #define I2O_CLAIM_SECONDARY 0x04000000
  278. /* Message header defines for VersionOffset */
  279. #define I2OVER15 0x0001
  280. #define I2OVER20 0x0002
  281. /* Default is 1.5 */
  282. #define I2OVERSION I2OVER15
  283. #define SGL_OFFSET_0 I2OVERSION
  284. #define SGL_OFFSET_4 (0x0040 | I2OVERSION)
  285. #define SGL_OFFSET_5 (0x0050 | I2OVERSION)
  286. #define SGL_OFFSET_6 (0x0060 | I2OVERSION)
  287. #define SGL_OFFSET_7 (0x0070 | I2OVERSION)
  288. #define SGL_OFFSET_8 (0x0080 | I2OVERSION)
  289. #define SGL_OFFSET_9 (0x0090 | I2OVERSION)
  290. #define SGL_OFFSET_10 (0x00A0 | I2OVERSION)
  291. #define SGL_OFFSET_11 (0x00B0 | I2OVERSION)
  292. #define SGL_OFFSET_12 (0x00C0 | I2OVERSION)
  293. #define SGL_OFFSET(x) (((x)<<4) | I2OVERSION)
  294. /* Transaction Reply Lists (TRL) Control Word structure */
  295. #define TRL_SINGLE_FIXED_LENGTH 0x00
  296. #define TRL_SINGLE_VARIABLE_LENGTH 0x40
  297. #define TRL_MULTIPLE_FIXED_LENGTH 0x80
  298. /* msg header defines for MsgFlags */
  299. #define MSG_STATIC 0x0100
  300. #define MSG_64BIT_CNTXT 0x0200
  301. #define MSG_MULTI_TRANS 0x1000
  302. #define MSG_FAIL 0x2000
  303. #define MSG_FINAL 0x4000
  304. #define MSG_REPLY 0x8000
  305. /* minimum size msg */
  306. #define THREE_WORD_MSG_SIZE 0x00030000
  307. #define FOUR_WORD_MSG_SIZE 0x00040000
  308. #define FIVE_WORD_MSG_SIZE 0x00050000
  309. #define SIX_WORD_MSG_SIZE 0x00060000
  310. #define SEVEN_WORD_MSG_SIZE 0x00070000
  311. #define EIGHT_WORD_MSG_SIZE 0x00080000
  312. #define NINE_WORD_MSG_SIZE 0x00090000
  313. #define TEN_WORD_MSG_SIZE 0x000A0000
  314. #define ELEVEN_WORD_MSG_SIZE 0x000B0000
  315. #define I2O_MESSAGE_SIZE(x) ((x)<<16)
  316. /* special TID assignments */
  317. #define ADAPTER_TID 0
  318. #define HOST_TID 1
  319. /* outbound queue defines */
  320. #define I2O_MAX_OUTBOUND_MSG_FRAMES 128
  321. #define I2O_OUTBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */
  322. /* inbound queue definitions */
  323. #define I2O_MSG_INPOOL_MIN 32
  324. #define I2O_INBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */
  325. #define I2O_POST_WAIT_OK 0
  326. #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT
  327. #define I2O_CONTEXT_LIST_MIN_LENGTH 15
  328. #define I2O_CONTEXT_LIST_USED 0x01
  329. #define I2O_CONTEXT_LIST_DELETED 0x02
  330. /* timeouts */
  331. #define I2O_TIMEOUT_INIT_OUTBOUND_QUEUE 15
  332. #define I2O_TIMEOUT_MESSAGE_GET 5
  333. #define I2O_TIMEOUT_RESET 30
  334. #define I2O_TIMEOUT_STATUS_GET 5
  335. #define I2O_TIMEOUT_LCT_GET 360
  336. #define I2O_TIMEOUT_SCSI_SCB_ABORT 240
  337. /* retries */
  338. #define I2O_HRT_GET_TRIES 3
  339. #define I2O_LCT_GET_TRIES 3
  340. /* defines for max_sectors and max_phys_segments */
  341. #define I2O_MAX_SECTORS 1024
  342. #define I2O_MAX_SECTORS_LIMITED 128
  343. #define I2O_MAX_PHYS_SEGMENTS BLK_MAX_SEGMENTS
  344. /*
  345. * Message structures
  346. */
  347. struct i2o_message {
  348. union {
  349. struct {
  350. u8 version_offset;
  351. u8 flags;
  352. u16 size;
  353. u32 target_tid:12;
  354. u32 init_tid:12;
  355. u32 function:8;
  356. u32 icntxt; /* initiator context */
  357. u32 tcntxt; /* transaction context */
  358. } s;
  359. u32 head[4];
  360. } u;
  361. /* List follows */
  362. u32 body[0];
  363. };
  364. /* MFA and I2O message used by mempool */
  365. struct i2o_msg_mfa {
  366. u32 mfa; /* MFA returned by the controller */
  367. struct i2o_message msg; /* I2O message */
  368. };
  369. /*
  370. * Each I2O device entity has one of these. There is one per device.
  371. */
  372. struct i2o_device {
  373. i2o_lct_entry lct_data; /* Device LCT information */
  374. struct i2o_controller *iop; /* Controlling IOP */
  375. struct list_head list; /* node in IOP devices list */
  376. struct device device;
  377. struct mutex lock; /* device lock */
  378. };
  379. /*
  380. * Event structure provided to the event handling function
  381. */
  382. struct i2o_event {
  383. struct work_struct work;
  384. struct i2o_device *i2o_dev; /* I2O device pointer from which the
  385. event reply was initiated */
  386. u16 size; /* Size of data in 32-bit words */
  387. u32 tcntxt; /* Transaction context used at
  388. registration */
  389. u32 event_indicator; /* Event indicator from reply */
  390. u32 data[0]; /* Event data from reply */
  391. };
  392. /*
  393. * I2O classes which could be handled by the OSM
  394. */
  395. struct i2o_class_id {
  396. u16 class_id:12;
  397. };
  398. /*
  399. * I2O driver structure for OSMs
  400. */
  401. struct i2o_driver {
  402. char *name; /* OSM name */
  403. int context; /* Low 8 bits of the transaction info */
  404. struct i2o_class_id *classes; /* I2O classes that this OSM handles */
  405. /* Message reply handler */
  406. int (*reply) (struct i2o_controller *, u32, struct i2o_message *);
  407. /* Event handler */
  408. work_func_t event;
  409. struct workqueue_struct *event_queue; /* Event queue */
  410. struct device_driver driver;
  411. /* notification of changes */
  412. void (*notify_controller_add) (struct i2o_controller *);
  413. void (*notify_controller_remove) (struct i2o_controller *);
  414. void (*notify_device_add) (struct i2o_device *);
  415. void (*notify_device_remove) (struct i2o_device *);
  416. struct semaphore lock;
  417. };
  418. /*
  419. * Contains DMA mapped address information
  420. */
  421. struct i2o_dma {
  422. void *virt;
  423. dma_addr_t phys;
  424. size_t len;
  425. };
  426. /*
  427. * Contains slab cache and mempool information
  428. */
  429. struct i2o_pool {
  430. char *name;
  431. struct kmem_cache *slab;
  432. mempool_t *mempool;
  433. };
  434. /*
  435. * Contains IO mapped address information
  436. */
  437. struct i2o_io {
  438. void __iomem *virt;
  439. unsigned long phys;
  440. unsigned long len;
  441. };
  442. /*
  443. * Context queue entry, used for 32-bit context on 64-bit systems
  444. */
  445. struct i2o_context_list_element {
  446. struct list_head list;
  447. u32 context;
  448. void *ptr;
  449. unsigned long timestamp;
  450. };
  451. /*
  452. * Each I2O controller has one of these objects
  453. */
  454. struct i2o_controller {
  455. char name[16];
  456. int unit;
  457. int type;
  458. struct pci_dev *pdev; /* PCI device */
  459. unsigned int promise:1; /* Promise controller */
  460. unsigned int adaptec:1; /* DPT / Adaptec controller */
  461. unsigned int raptor:1; /* split bar */
  462. unsigned int no_quiesce:1; /* dont quiesce before reset */
  463. unsigned int short_req:1; /* use small block sizes */
  464. unsigned int limit_sectors:1; /* limit number of sectors / request */
  465. unsigned int pae_support:1; /* controller has 64-bit SGL support */
  466. struct list_head devices; /* list of I2O devices */
  467. struct list_head list; /* Controller list */
  468. void __iomem *in_port; /* Inbout port address */
  469. void __iomem *out_port; /* Outbound port address */
  470. void __iomem *irq_status; /* Interrupt status register address */
  471. void __iomem *irq_mask; /* Interrupt mask register address */
  472. struct i2o_dma status; /* IOP status block */
  473. struct i2o_dma hrt; /* HW Resource Table */
  474. i2o_lct *lct; /* Logical Config Table */
  475. struct i2o_dma dlct; /* Temp LCT */
  476. struct mutex lct_lock; /* Lock for LCT updates */
  477. struct i2o_dma status_block; /* IOP status block */
  478. struct i2o_io base; /* controller messaging unit */
  479. struct i2o_io in_queue; /* inbound message queue Host->IOP */
  480. struct i2o_dma out_queue; /* outbound message queue IOP->Host */
  481. struct i2o_pool in_msg; /* mempool for inbound messages */
  482. unsigned int battery:1; /* Has a battery backup */
  483. unsigned int io_alloc:1; /* An I/O resource was allocated */
  484. unsigned int mem_alloc:1; /* A memory resource was allocated */
  485. struct resource io_resource; /* I/O resource allocated to the IOP */
  486. struct resource mem_resource; /* Mem resource allocated to the IOP */
  487. struct device device;
  488. struct i2o_device *exec; /* Executive */
  489. #if BITS_PER_LONG == 64
  490. spinlock_t context_list_lock; /* lock for context_list */
  491. atomic_t context_list_counter; /* needed for unique contexts */
  492. struct list_head context_list; /* list of context id's
  493. and pointers */
  494. #endif
  495. spinlock_t lock; /* lock for controller
  496. configuration */
  497. void *driver_data[I2O_MAX_DRIVERS]; /* storage for drivers */
  498. };
  499. /*
  500. * I2O System table entry
  501. *
  502. * The system table contains information about all the IOPs in the
  503. * system. It is sent to all IOPs so that they can create peer2peer
  504. * connections between them.
  505. */
  506. struct i2o_sys_tbl_entry {
  507. u16 org_id;
  508. u16 reserved1;
  509. u32 iop_id:12;
  510. u32 reserved2:20;
  511. u16 seg_num:12;
  512. u16 i2o_version:4;
  513. u8 iop_state;
  514. u8 msg_type;
  515. u16 frame_size;
  516. u16 reserved3;
  517. u32 last_changed;
  518. u32 iop_capabilities;
  519. u32 inbound_low;
  520. u32 inbound_high;
  521. };
  522. struct i2o_sys_tbl {
  523. u8 num_entries;
  524. u8 version;
  525. u16 reserved1;
  526. u32 change_ind;
  527. u32 reserved2;
  528. u32 reserved3;
  529. struct i2o_sys_tbl_entry iops[0];
  530. };
  531. extern struct list_head i2o_controllers;
  532. /* Message functions */
  533. extern struct i2o_message *i2o_msg_get_wait(struct i2o_controller *, int);
  534. extern int i2o_msg_post_wait_mem(struct i2o_controller *, struct i2o_message *,
  535. unsigned long, struct i2o_dma *);
  536. /* IOP functions */
  537. extern int i2o_status_get(struct i2o_controller *);
  538. extern int i2o_event_register(struct i2o_device *, struct i2o_driver *, int,
  539. u32);
  540. extern struct i2o_device *i2o_iop_find_device(struct i2o_controller *, u16);
  541. extern struct i2o_controller *i2o_find_iop(int);
  542. /* Functions needed for handling 64-bit pointers in 32-bit context */
  543. #if BITS_PER_LONG == 64
  544. extern u32 i2o_cntxt_list_add(struct i2o_controller *, void *);
  545. extern void *i2o_cntxt_list_get(struct i2o_controller *, u32);
  546. extern u32 i2o_cntxt_list_remove(struct i2o_controller *, void *);
  547. extern u32 i2o_cntxt_list_get_ptr(struct i2o_controller *, void *);
  548. static inline u32 i2o_ptr_low(void *ptr)
  549. {
  550. return (u32) (u64) ptr;
  551. };
  552. static inline u32 i2o_ptr_high(void *ptr)
  553. {
  554. return (u32) ((u64) ptr >> 32);
  555. };
  556. static inline u32 i2o_dma_low(dma_addr_t dma_addr)
  557. {
  558. return (u32) (u64) dma_addr;
  559. };
  560. static inline u32 i2o_dma_high(dma_addr_t dma_addr)
  561. {
  562. return (u32) ((u64) dma_addr >> 32);
  563. };
  564. #else
  565. static inline u32 i2o_cntxt_list_add(struct i2o_controller *c, void *ptr)
  566. {
  567. return (u32) ptr;
  568. };
  569. static inline void *i2o_cntxt_list_get(struct i2o_controller *c, u32 context)
  570. {
  571. return (void *)context;
  572. };
  573. static inline u32 i2o_cntxt_list_remove(struct i2o_controller *c, void *ptr)
  574. {
  575. return (u32) ptr;
  576. };
  577. static inline u32 i2o_cntxt_list_get_ptr(struct i2o_controller *c, void *ptr)
  578. {
  579. return (u32) ptr;
  580. };
  581. static inline u32 i2o_ptr_low(void *ptr)
  582. {
  583. return (u32) ptr;
  584. };
  585. static inline u32 i2o_ptr_high(void *ptr)
  586. {
  587. return 0;
  588. };
  589. static inline u32 i2o_dma_low(dma_addr_t dma_addr)
  590. {
  591. return (u32) dma_addr;
  592. };
  593. static inline u32 i2o_dma_high(dma_addr_t dma_addr)
  594. {
  595. return 0;
  596. };
  597. #endif
  598. extern u16 i2o_sg_tablesize(struct i2o_controller *c, u16 body_size);
  599. extern dma_addr_t i2o_dma_map_single(struct i2o_controller *c, void *ptr,
  600. size_t size,
  601. enum dma_data_direction direction,
  602. u32 ** sg_ptr);
  603. extern int i2o_dma_map_sg(struct i2o_controller *c,
  604. struct scatterlist *sg, int sg_count,
  605. enum dma_data_direction direction,
  606. u32 ** sg_ptr);
  607. extern int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr, size_t len);
  608. extern void i2o_dma_free(struct device *dev, struct i2o_dma *addr);
  609. extern int i2o_dma_realloc(struct device *dev, struct i2o_dma *addr,
  610. size_t len);
  611. extern int i2o_pool_alloc(struct i2o_pool *pool, const char *name,
  612. size_t size, int min_nr);
  613. extern void i2o_pool_free(struct i2o_pool *pool);
  614. /* I2O driver (OSM) functions */
  615. extern int i2o_driver_register(struct i2o_driver *);
  616. extern void i2o_driver_unregister(struct i2o_driver *);
  617. /**
  618. * i2o_driver_notify_controller_add - Send notification of added controller
  619. * @drv: I2O driver
  620. * @c: I2O controller
  621. *
  622. * Send notification of added controller to a single registered driver.
  623. */
  624. static inline void i2o_driver_notify_controller_add(struct i2o_driver *drv,
  625. struct i2o_controller *c)
  626. {
  627. if (drv->notify_controller_add)
  628. drv->notify_controller_add(c);
  629. };
  630. /**
  631. * i2o_driver_notify_controller_remove - Send notification of removed controller
  632. * @drv: I2O driver
  633. * @c: I2O controller
  634. *
  635. * Send notification of removed controller to a single registered driver.
  636. */
  637. static inline void i2o_driver_notify_controller_remove(struct i2o_driver *drv,
  638. struct i2o_controller *c)
  639. {
  640. if (drv->notify_controller_remove)
  641. drv->notify_controller_remove(c);
  642. };
  643. /**
  644. * i2o_driver_notify_device_add - Send notification of added device
  645. * @drv: I2O driver
  646. * @i2o_dev: the added i2o_device
  647. *
  648. * Send notification of added device to a single registered driver.
  649. */
  650. static inline void i2o_driver_notify_device_add(struct i2o_driver *drv,
  651. struct i2o_device *i2o_dev)
  652. {
  653. if (drv->notify_device_add)
  654. drv->notify_device_add(i2o_dev);
  655. };
  656. /**
  657. * i2o_driver_notify_device_remove - Send notification of removed device
  658. * @drv: I2O driver
  659. * @i2o_dev: the added i2o_device
  660. *
  661. * Send notification of removed device to a single registered driver.
  662. */
  663. static inline void i2o_driver_notify_device_remove(struct i2o_driver *drv,
  664. struct i2o_device *i2o_dev)
  665. {
  666. if (drv->notify_device_remove)
  667. drv->notify_device_remove(i2o_dev);
  668. };
  669. extern void i2o_driver_notify_controller_add_all(struct i2o_controller *);
  670. extern void i2o_driver_notify_controller_remove_all(struct i2o_controller *);
  671. extern void i2o_driver_notify_device_add_all(struct i2o_device *);
  672. extern void i2o_driver_notify_device_remove_all(struct i2o_device *);
  673. /* I2O device functions */
  674. extern int i2o_device_claim(struct i2o_device *);
  675. extern int i2o_device_claim_release(struct i2o_device *);
  676. /* Exec OSM functions */
  677. extern int i2o_exec_lct_get(struct i2o_controller *);
  678. /* device / driver / kobject conversion functions */
  679. #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver)
  680. #define to_i2o_device(dev) container_of(dev, struct i2o_device, device)
  681. #define to_i2o_controller(dev) container_of(dev, struct i2o_controller, device)
  682. /**
  683. * i2o_out_to_virt - Turn an I2O message to a virtual address
  684. * @c: controller
  685. * @m: message engine value
  686. *
  687. * Turn a receive message from an I2O controller bus address into
  688. * a Linux virtual address. The shared page frame is a linear block
  689. * so we simply have to shift the offset. This function does not
  690. * work for sender side messages as they are ioremap objects
  691. * provided by the I2O controller.
  692. */
  693. static inline struct i2o_message *i2o_msg_out_to_virt(struct i2o_controller *c,
  694. u32 m)
  695. {
  696. BUG_ON(m < c->out_queue.phys
  697. || m >= c->out_queue.phys + c->out_queue.len);
  698. return c->out_queue.virt + (m - c->out_queue.phys);
  699. };
  700. /**
  701. * i2o_msg_in_to_virt - Turn an I2O message to a virtual address
  702. * @c: controller
  703. * @m: message engine value
  704. *
  705. * Turn a send message from an I2O controller bus address into
  706. * a Linux virtual address. The shared page frame is a linear block
  707. * so we simply have to shift the offset. This function does not
  708. * work for receive side messages as they are kmalloc objects
  709. * in a different pool.
  710. */
  711. static inline struct i2o_message __iomem *i2o_msg_in_to_virt(struct
  712. i2o_controller *c,
  713. u32 m)
  714. {
  715. return c->in_queue.virt + m;
  716. };
  717. /**
  718. * i2o_msg_get - obtain an I2O message from the IOP
  719. * @c: I2O controller
  720. *
  721. * This function tries to get a message frame. If no message frame is
  722. * available do not wait until one is available (see also i2o_msg_get_wait).
  723. * The returned pointer to the message frame is not in I/O memory, it is
  724. * allocated from a mempool. But because a MFA is allocated from the
  725. * controller too it is guaranteed that i2o_msg_post() will never fail.
  726. *
  727. * On a success a pointer to the message frame is returned. If the message
  728. * queue is empty -EBUSY is returned and if no memory is available -ENOMEM
  729. * is returned.
  730. */
  731. static inline struct i2o_message *i2o_msg_get(struct i2o_controller *c)
  732. {
  733. struct i2o_msg_mfa *mmsg = mempool_alloc(c->in_msg.mempool, GFP_ATOMIC);
  734. if (!mmsg)
  735. return ERR_PTR(-ENOMEM);
  736. mmsg->mfa = readl(c->in_port);
  737. if (unlikely(mmsg->mfa >= c->in_queue.len)) {
  738. u32 mfa = mmsg->mfa;
  739. mempool_free(mmsg, c->in_msg.mempool);
  740. if (mfa == I2O_QUEUE_EMPTY)
  741. return ERR_PTR(-EBUSY);
  742. return ERR_PTR(-EFAULT);
  743. }
  744. return &mmsg->msg;
  745. };
  746. /**
  747. * i2o_msg_post - Post I2O message to I2O controller
  748. * @c: I2O controller to which the message should be send
  749. * @msg: message returned by i2o_msg_get()
  750. *
  751. * Post the message to the I2O controller and return immediately.
  752. */
  753. static inline void i2o_msg_post(struct i2o_controller *c,
  754. struct i2o_message *msg)
  755. {
  756. struct i2o_msg_mfa *mmsg;
  757. mmsg = container_of(msg, struct i2o_msg_mfa, msg);
  758. memcpy_toio(i2o_msg_in_to_virt(c, mmsg->mfa), msg,
  759. (le32_to_cpu(msg->u.head[0]) >> 16) << 2);
  760. writel(mmsg->mfa, c->in_port);
  761. mempool_free(mmsg, c->in_msg.mempool);
  762. };
  763. /**
  764. * i2o_msg_post_wait - Post and wait a message and wait until return
  765. * @c: controller
  766. * @msg: message to post
  767. * @timeout: time in seconds to wait
  768. *
  769. * This API allows an OSM to post a message and then be told whether or
  770. * not the system received a successful reply. If the message times out
  771. * then the value '-ETIMEDOUT' is returned.
  772. *
  773. * Returns 0 on success or negative error code on failure.
  774. */
  775. static inline int i2o_msg_post_wait(struct i2o_controller *c,
  776. struct i2o_message *msg,
  777. unsigned long timeout)
  778. {
  779. return i2o_msg_post_wait_mem(c, msg, timeout, NULL);
  780. };
  781. /**
  782. * i2o_msg_nop_mfa - Returns a fetched MFA back to the controller
  783. * @c: I2O controller from which the MFA was fetched
  784. * @mfa: MFA which should be returned
  785. *
  786. * This function must be used for preserved messages, because i2o_msg_nop()
  787. * also returns the allocated memory back to the msg_pool mempool.
  788. */
  789. static inline void i2o_msg_nop_mfa(struct i2o_controller *c, u32 mfa)
  790. {
  791. struct i2o_message __iomem *msg;
  792. u32 nop[3] = {
  793. THREE_WORD_MSG_SIZE | SGL_OFFSET_0,
  794. I2O_CMD_UTIL_NOP << 24 | HOST_TID << 12 | ADAPTER_TID,
  795. 0x00000000
  796. };
  797. msg = i2o_msg_in_to_virt(c, mfa);
  798. memcpy_toio(msg, nop, sizeof(nop));
  799. writel(mfa, c->in_port);
  800. };
  801. /**
  802. * i2o_msg_nop - Returns a message which is not used
  803. * @c: I2O controller from which the message was created
  804. * @msg: message which should be returned
  805. *
  806. * If you fetch a message via i2o_msg_get, and can't use it, you must
  807. * return the message with this function. Otherwise the MFA is lost as well
  808. * as the allocated memory from the mempool.
  809. */
  810. static inline void i2o_msg_nop(struct i2o_controller *c,
  811. struct i2o_message *msg)
  812. {
  813. struct i2o_msg_mfa *mmsg;
  814. mmsg = container_of(msg, struct i2o_msg_mfa, msg);
  815. i2o_msg_nop_mfa(c, mmsg->mfa);
  816. mempool_free(mmsg, c->in_msg.mempool);
  817. };
  818. /**
  819. * i2o_flush_reply - Flush reply from I2O controller
  820. * @c: I2O controller
  821. * @m: the message identifier
  822. *
  823. * The I2O controller must be informed that the reply message is not needed
  824. * anymore. If you forget to flush the reply, the message frame can't be
  825. * used by the controller anymore and is therefore lost.
  826. */
  827. static inline void i2o_flush_reply(struct i2o_controller *c, u32 m)
  828. {
  829. writel(m, c->out_port);
  830. };
  831. /*
  832. * Endian handling wrapped into the macro - keeps the core code
  833. * cleaner.
  834. */
  835. #define i2o_raw_writel(val, mem) __raw_writel(cpu_to_le32(val), mem)
  836. extern int i2o_parm_field_get(struct i2o_device *, int, int, void *, int);
  837. extern int i2o_parm_table_get(struct i2o_device *, int, int, int, void *, int,
  838. void *, int);
  839. /* debugging and troubleshooting/diagnostic helpers. */
  840. #define osm_printk(level, format, arg...) \
  841. printk(level "%s: " format, OSM_NAME , ## arg)
  842. #ifdef DEBUG
  843. #define osm_debug(format, arg...) \
  844. osm_printk(KERN_DEBUG, format , ## arg)
  845. #else
  846. #define osm_debug(format, arg...) \
  847. do { } while (0)
  848. #endif
  849. #define osm_err(format, arg...) \
  850. osm_printk(KERN_ERR, format , ## arg)
  851. #define osm_info(format, arg...) \
  852. osm_printk(KERN_INFO, format , ## arg)
  853. #define osm_warn(format, arg...) \
  854. osm_printk(KERN_WARNING, format , ## arg)
  855. /* debugging functions */
  856. extern void i2o_report_status(const char *, const char *, struct i2o_message *);
  857. extern void i2o_dump_message(struct i2o_message *);
  858. extern void i2o_dump_hrt(struct i2o_controller *c);
  859. extern void i2o_debug_state(struct i2o_controller *c);
  860. #endif /* _I2O_H */