i2o.h 37 KB

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