i2o.h 37 KB

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