megaraid_sas.h 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327
  1. /*
  2. *
  3. * Linux MegaRAID driver for SAS based RAID controllers
  4. *
  5. * Copyright (c) 2003-2005 LSI Corporation.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. *
  12. * FILE : megaraid_sas.h
  13. */
  14. #ifndef LSI_MEGARAID_SAS_H
  15. #define LSI_MEGARAID_SAS_H
  16. /*
  17. * MegaRAID SAS Driver meta data
  18. */
  19. #define MEGASAS_VERSION "00.00.04.12-rc1"
  20. #define MEGASAS_RELDATE "Sep. 17, 2009"
  21. #define MEGASAS_EXT_VERSION "Thu Sep. 17 11:41:51 PST 2009"
  22. /*
  23. * Device IDs
  24. */
  25. #define PCI_DEVICE_ID_LSI_SAS1078R 0x0060
  26. #define PCI_DEVICE_ID_LSI_SAS1078DE 0x007C
  27. #define PCI_DEVICE_ID_LSI_VERDE_ZCR 0x0413
  28. #define PCI_DEVICE_ID_LSI_SAS1078GEN2 0x0078
  29. #define PCI_DEVICE_ID_LSI_SAS0079GEN2 0x0079
  30. #define PCI_DEVICE_ID_LSI_SAS0073SKINNY 0x0073
  31. #define PCI_DEVICE_ID_LSI_SAS0071SKINNY 0x0071
  32. /*
  33. * =====================================
  34. * MegaRAID SAS MFI firmware definitions
  35. * =====================================
  36. */
  37. /*
  38. * MFI stands for MegaRAID SAS FW Interface. This is just a moniker for
  39. * protocol between the software and firmware. Commands are issued using
  40. * "message frames"
  41. */
  42. /*
  43. * FW posts its state in upper 4 bits of outbound_msg_0 register
  44. */
  45. #define MFI_STATE_MASK 0xF0000000
  46. #define MFI_STATE_UNDEFINED 0x00000000
  47. #define MFI_STATE_BB_INIT 0x10000000
  48. #define MFI_STATE_FW_INIT 0x40000000
  49. #define MFI_STATE_WAIT_HANDSHAKE 0x60000000
  50. #define MFI_STATE_FW_INIT_2 0x70000000
  51. #define MFI_STATE_DEVICE_SCAN 0x80000000
  52. #define MFI_STATE_BOOT_MESSAGE_PENDING 0x90000000
  53. #define MFI_STATE_FLUSH_CACHE 0xA0000000
  54. #define MFI_STATE_READY 0xB0000000
  55. #define MFI_STATE_OPERATIONAL 0xC0000000
  56. #define MFI_STATE_FAULT 0xF0000000
  57. #define MEGAMFI_FRAME_SIZE 64
  58. /*
  59. * During FW init, clear pending cmds & reset state using inbound_msg_0
  60. *
  61. * ABORT : Abort all pending cmds
  62. * READY : Move from OPERATIONAL to READY state; discard queue info
  63. * MFIMODE : Discard (possible) low MFA posted in 64-bit mode (??)
  64. * CLR_HANDSHAKE: FW is waiting for HANDSHAKE from BIOS or Driver
  65. * HOTPLUG : Resume from Hotplug
  66. * MFI_STOP_ADP : Send signal to FW to stop processing
  67. */
  68. #define MFI_INIT_ABORT 0x00000001
  69. #define MFI_INIT_READY 0x00000002
  70. #define MFI_INIT_MFIMODE 0x00000004
  71. #define MFI_INIT_CLEAR_HANDSHAKE 0x00000008
  72. #define MFI_INIT_HOTPLUG 0x00000010
  73. #define MFI_STOP_ADP 0x00000020
  74. #define MFI_RESET_FLAGS MFI_INIT_READY| \
  75. MFI_INIT_MFIMODE| \
  76. MFI_INIT_ABORT
  77. /*
  78. * MFI frame flags
  79. */
  80. #define MFI_FRAME_POST_IN_REPLY_QUEUE 0x0000
  81. #define MFI_FRAME_DONT_POST_IN_REPLY_QUEUE 0x0001
  82. #define MFI_FRAME_SGL32 0x0000
  83. #define MFI_FRAME_SGL64 0x0002
  84. #define MFI_FRAME_SENSE32 0x0000
  85. #define MFI_FRAME_SENSE64 0x0004
  86. #define MFI_FRAME_DIR_NONE 0x0000
  87. #define MFI_FRAME_DIR_WRITE 0x0008
  88. #define MFI_FRAME_DIR_READ 0x0010
  89. #define MFI_FRAME_DIR_BOTH 0x0018
  90. #define MFI_FRAME_IEEE 0x0020
  91. /*
  92. * Definition for cmd_status
  93. */
  94. #define MFI_CMD_STATUS_POLL_MODE 0xFF
  95. /*
  96. * MFI command opcodes
  97. */
  98. #define MFI_CMD_INIT 0x00
  99. #define MFI_CMD_LD_READ 0x01
  100. #define MFI_CMD_LD_WRITE 0x02
  101. #define MFI_CMD_LD_SCSI_IO 0x03
  102. #define MFI_CMD_PD_SCSI_IO 0x04
  103. #define MFI_CMD_DCMD 0x05
  104. #define MFI_CMD_ABORT 0x06
  105. #define MFI_CMD_SMP 0x07
  106. #define MFI_CMD_STP 0x08
  107. #define MR_DCMD_CTRL_GET_INFO 0x01010000
  108. #define MR_DCMD_CTRL_CACHE_FLUSH 0x01101000
  109. #define MR_FLUSH_CTRL_CACHE 0x01
  110. #define MR_FLUSH_DISK_CACHE 0x02
  111. #define MR_DCMD_CTRL_SHUTDOWN 0x01050000
  112. #define MR_DCMD_HIBERNATE_SHUTDOWN 0x01060000
  113. #define MR_ENABLE_DRIVE_SPINDOWN 0x01
  114. #define MR_DCMD_CTRL_EVENT_GET_INFO 0x01040100
  115. #define MR_DCMD_CTRL_EVENT_GET 0x01040300
  116. #define MR_DCMD_CTRL_EVENT_WAIT 0x01040500
  117. #define MR_DCMD_LD_GET_PROPERTIES 0x03030000
  118. #define MR_DCMD_CLUSTER 0x08000000
  119. #define MR_DCMD_CLUSTER_RESET_ALL 0x08010100
  120. #define MR_DCMD_CLUSTER_RESET_LD 0x08010200
  121. #define MR_DCMD_PD_LIST_QUERY 0x02010100
  122. /*
  123. * MFI command completion codes
  124. */
  125. enum MFI_STAT {
  126. MFI_STAT_OK = 0x00,
  127. MFI_STAT_INVALID_CMD = 0x01,
  128. MFI_STAT_INVALID_DCMD = 0x02,
  129. MFI_STAT_INVALID_PARAMETER = 0x03,
  130. MFI_STAT_INVALID_SEQUENCE_NUMBER = 0x04,
  131. MFI_STAT_ABORT_NOT_POSSIBLE = 0x05,
  132. MFI_STAT_APP_HOST_CODE_NOT_FOUND = 0x06,
  133. MFI_STAT_APP_IN_USE = 0x07,
  134. MFI_STAT_APP_NOT_INITIALIZED = 0x08,
  135. MFI_STAT_ARRAY_INDEX_INVALID = 0x09,
  136. MFI_STAT_ARRAY_ROW_NOT_EMPTY = 0x0a,
  137. MFI_STAT_CONFIG_RESOURCE_CONFLICT = 0x0b,
  138. MFI_STAT_DEVICE_NOT_FOUND = 0x0c,
  139. MFI_STAT_DRIVE_TOO_SMALL = 0x0d,
  140. MFI_STAT_FLASH_ALLOC_FAIL = 0x0e,
  141. MFI_STAT_FLASH_BUSY = 0x0f,
  142. MFI_STAT_FLASH_ERROR = 0x10,
  143. MFI_STAT_FLASH_IMAGE_BAD = 0x11,
  144. MFI_STAT_FLASH_IMAGE_INCOMPLETE = 0x12,
  145. MFI_STAT_FLASH_NOT_OPEN = 0x13,
  146. MFI_STAT_FLASH_NOT_STARTED = 0x14,
  147. MFI_STAT_FLUSH_FAILED = 0x15,
  148. MFI_STAT_HOST_CODE_NOT_FOUNT = 0x16,
  149. MFI_STAT_LD_CC_IN_PROGRESS = 0x17,
  150. MFI_STAT_LD_INIT_IN_PROGRESS = 0x18,
  151. MFI_STAT_LD_LBA_OUT_OF_RANGE = 0x19,
  152. MFI_STAT_LD_MAX_CONFIGURED = 0x1a,
  153. MFI_STAT_LD_NOT_OPTIMAL = 0x1b,
  154. MFI_STAT_LD_RBLD_IN_PROGRESS = 0x1c,
  155. MFI_STAT_LD_RECON_IN_PROGRESS = 0x1d,
  156. MFI_STAT_LD_WRONG_RAID_LEVEL = 0x1e,
  157. MFI_STAT_MAX_SPARES_EXCEEDED = 0x1f,
  158. MFI_STAT_MEMORY_NOT_AVAILABLE = 0x20,
  159. MFI_STAT_MFC_HW_ERROR = 0x21,
  160. MFI_STAT_NO_HW_PRESENT = 0x22,
  161. MFI_STAT_NOT_FOUND = 0x23,
  162. MFI_STAT_NOT_IN_ENCL = 0x24,
  163. MFI_STAT_PD_CLEAR_IN_PROGRESS = 0x25,
  164. MFI_STAT_PD_TYPE_WRONG = 0x26,
  165. MFI_STAT_PR_DISABLED = 0x27,
  166. MFI_STAT_ROW_INDEX_INVALID = 0x28,
  167. MFI_STAT_SAS_CONFIG_INVALID_ACTION = 0x29,
  168. MFI_STAT_SAS_CONFIG_INVALID_DATA = 0x2a,
  169. MFI_STAT_SAS_CONFIG_INVALID_PAGE = 0x2b,
  170. MFI_STAT_SAS_CONFIG_INVALID_TYPE = 0x2c,
  171. MFI_STAT_SCSI_DONE_WITH_ERROR = 0x2d,
  172. MFI_STAT_SCSI_IO_FAILED = 0x2e,
  173. MFI_STAT_SCSI_RESERVATION_CONFLICT = 0x2f,
  174. MFI_STAT_SHUTDOWN_FAILED = 0x30,
  175. MFI_STAT_TIME_NOT_SET = 0x31,
  176. MFI_STAT_WRONG_STATE = 0x32,
  177. MFI_STAT_LD_OFFLINE = 0x33,
  178. MFI_STAT_PEER_NOTIFICATION_REJECTED = 0x34,
  179. MFI_STAT_PEER_NOTIFICATION_FAILED = 0x35,
  180. MFI_STAT_RESERVATION_IN_PROGRESS = 0x36,
  181. MFI_STAT_I2C_ERRORS_DETECTED = 0x37,
  182. MFI_STAT_PCI_ERRORS_DETECTED = 0x38,
  183. MFI_STAT_INVALID_STATUS = 0xFF
  184. };
  185. /*
  186. * Number of mailbox bytes in DCMD message frame
  187. */
  188. #define MFI_MBOX_SIZE 12
  189. enum MR_EVT_CLASS {
  190. MR_EVT_CLASS_DEBUG = -2,
  191. MR_EVT_CLASS_PROGRESS = -1,
  192. MR_EVT_CLASS_INFO = 0,
  193. MR_EVT_CLASS_WARNING = 1,
  194. MR_EVT_CLASS_CRITICAL = 2,
  195. MR_EVT_CLASS_FATAL = 3,
  196. MR_EVT_CLASS_DEAD = 4,
  197. };
  198. enum MR_EVT_LOCALE {
  199. MR_EVT_LOCALE_LD = 0x0001,
  200. MR_EVT_LOCALE_PD = 0x0002,
  201. MR_EVT_LOCALE_ENCL = 0x0004,
  202. MR_EVT_LOCALE_BBU = 0x0008,
  203. MR_EVT_LOCALE_SAS = 0x0010,
  204. MR_EVT_LOCALE_CTRL = 0x0020,
  205. MR_EVT_LOCALE_CONFIG = 0x0040,
  206. MR_EVT_LOCALE_CLUSTER = 0x0080,
  207. MR_EVT_LOCALE_ALL = 0xffff,
  208. };
  209. enum MR_EVT_ARGS {
  210. MR_EVT_ARGS_NONE,
  211. MR_EVT_ARGS_CDB_SENSE,
  212. MR_EVT_ARGS_LD,
  213. MR_EVT_ARGS_LD_COUNT,
  214. MR_EVT_ARGS_LD_LBA,
  215. MR_EVT_ARGS_LD_OWNER,
  216. MR_EVT_ARGS_LD_LBA_PD_LBA,
  217. MR_EVT_ARGS_LD_PROG,
  218. MR_EVT_ARGS_LD_STATE,
  219. MR_EVT_ARGS_LD_STRIP,
  220. MR_EVT_ARGS_PD,
  221. MR_EVT_ARGS_PD_ERR,
  222. MR_EVT_ARGS_PD_LBA,
  223. MR_EVT_ARGS_PD_LBA_LD,
  224. MR_EVT_ARGS_PD_PROG,
  225. MR_EVT_ARGS_PD_STATE,
  226. MR_EVT_ARGS_PCI,
  227. MR_EVT_ARGS_RATE,
  228. MR_EVT_ARGS_STR,
  229. MR_EVT_ARGS_TIME,
  230. MR_EVT_ARGS_ECC,
  231. MR_EVT_ARGS_LD_PROP,
  232. MR_EVT_ARGS_PD_SPARE,
  233. MR_EVT_ARGS_PD_INDEX,
  234. MR_EVT_ARGS_DIAG_PASS,
  235. MR_EVT_ARGS_DIAG_FAIL,
  236. MR_EVT_ARGS_PD_LBA_LBA,
  237. MR_EVT_ARGS_PORT_PHY,
  238. MR_EVT_ARGS_PD_MISSING,
  239. MR_EVT_ARGS_PD_ADDRESS,
  240. MR_EVT_ARGS_BITMAP,
  241. MR_EVT_ARGS_CONNECTOR,
  242. MR_EVT_ARGS_PD_PD,
  243. MR_EVT_ARGS_PD_FRU,
  244. MR_EVT_ARGS_PD_PATHINFO,
  245. MR_EVT_ARGS_PD_POWER_STATE,
  246. MR_EVT_ARGS_GENERIC,
  247. };
  248. /*
  249. * define constants for device list query options
  250. */
  251. enum MR_PD_QUERY_TYPE {
  252. MR_PD_QUERY_TYPE_ALL = 0,
  253. MR_PD_QUERY_TYPE_STATE = 1,
  254. MR_PD_QUERY_TYPE_POWER_STATE = 2,
  255. MR_PD_QUERY_TYPE_MEDIA_TYPE = 3,
  256. MR_PD_QUERY_TYPE_SPEED = 4,
  257. MR_PD_QUERY_TYPE_EXPOSED_TO_HOST = 5,
  258. };
  259. #define MR_EVT_CFG_CLEARED 0x0004
  260. #define MR_EVT_LD_STATE_CHANGE 0x0051
  261. #define MR_EVT_PD_INSERTED 0x005b
  262. #define MR_EVT_PD_REMOVED 0x0070
  263. #define MR_EVT_LD_CREATED 0x008a
  264. #define MR_EVT_LD_DELETED 0x008b
  265. #define MR_EVT_FOREIGN_CFG_IMPORTED 0x00db
  266. #define MR_EVT_LD_OFFLINE 0x00fc
  267. #define MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED 0x0152
  268. #define MAX_LOGICAL_DRIVES 64
  269. enum MR_PD_STATE {
  270. MR_PD_STATE_UNCONFIGURED_GOOD = 0x00,
  271. MR_PD_STATE_UNCONFIGURED_BAD = 0x01,
  272. MR_PD_STATE_HOT_SPARE = 0x02,
  273. MR_PD_STATE_OFFLINE = 0x10,
  274. MR_PD_STATE_FAILED = 0x11,
  275. MR_PD_STATE_REBUILD = 0x14,
  276. MR_PD_STATE_ONLINE = 0x18,
  277. MR_PD_STATE_COPYBACK = 0x20,
  278. MR_PD_STATE_SYSTEM = 0x40,
  279. };
  280. /*
  281. * defines the physical drive address structure
  282. */
  283. struct MR_PD_ADDRESS {
  284. u16 deviceId;
  285. u16 enclDeviceId;
  286. union {
  287. struct {
  288. u8 enclIndex;
  289. u8 slotNumber;
  290. } mrPdAddress;
  291. struct {
  292. u8 enclPosition;
  293. u8 enclConnectorIndex;
  294. } mrEnclAddress;
  295. };
  296. u8 scsiDevType;
  297. union {
  298. u8 connectedPortBitmap;
  299. u8 connectedPortNumbers;
  300. };
  301. u64 sasAddr[2];
  302. } __packed;
  303. /*
  304. * defines the physical drive list structure
  305. */
  306. struct MR_PD_LIST {
  307. u32 size;
  308. u32 count;
  309. struct MR_PD_ADDRESS addr[1];
  310. } __packed;
  311. struct megasas_pd_list {
  312. u16 tid;
  313. u8 driveType;
  314. u8 driveState;
  315. } __packed;
  316. /*
  317. * SAS controller properties
  318. */
  319. struct megasas_ctrl_prop {
  320. u16 seq_num;
  321. u16 pred_fail_poll_interval;
  322. u16 intr_throttle_count;
  323. u16 intr_throttle_timeouts;
  324. u8 rebuild_rate;
  325. u8 patrol_read_rate;
  326. u8 bgi_rate;
  327. u8 cc_rate;
  328. u8 recon_rate;
  329. u8 cache_flush_interval;
  330. u8 spinup_drv_count;
  331. u8 spinup_delay;
  332. u8 cluster_enable;
  333. u8 coercion_mode;
  334. u8 alarm_enable;
  335. u8 disable_auto_rebuild;
  336. u8 disable_battery_warn;
  337. u8 ecc_bucket_size;
  338. u16 ecc_bucket_leak_rate;
  339. u8 restore_hotspare_on_insertion;
  340. u8 expose_encl_devices;
  341. u8 reserved[38];
  342. } __packed;
  343. /*
  344. * SAS controller information
  345. */
  346. struct megasas_ctrl_info {
  347. /*
  348. * PCI device information
  349. */
  350. struct {
  351. u16 vendor_id;
  352. u16 device_id;
  353. u16 sub_vendor_id;
  354. u16 sub_device_id;
  355. u8 reserved[24];
  356. } __attribute__ ((packed)) pci;
  357. /*
  358. * Host interface information
  359. */
  360. struct {
  361. u8 PCIX:1;
  362. u8 PCIE:1;
  363. u8 iSCSI:1;
  364. u8 SAS_3G:1;
  365. u8 reserved_0:4;
  366. u8 reserved_1[6];
  367. u8 port_count;
  368. u64 port_addr[8];
  369. } __attribute__ ((packed)) host_interface;
  370. /*
  371. * Device (backend) interface information
  372. */
  373. struct {
  374. u8 SPI:1;
  375. u8 SAS_3G:1;
  376. u8 SATA_1_5G:1;
  377. u8 SATA_3G:1;
  378. u8 reserved_0:4;
  379. u8 reserved_1[6];
  380. u8 port_count;
  381. u64 port_addr[8];
  382. } __attribute__ ((packed)) device_interface;
  383. /*
  384. * List of components residing in flash. All str are null terminated
  385. */
  386. u32 image_check_word;
  387. u32 image_component_count;
  388. struct {
  389. char name[8];
  390. char version[32];
  391. char build_date[16];
  392. char built_time[16];
  393. } __attribute__ ((packed)) image_component[8];
  394. /*
  395. * List of flash components that have been flashed on the card, but
  396. * are not in use, pending reset of the adapter. This list will be
  397. * empty if a flash operation has not occurred. All stings are null
  398. * terminated
  399. */
  400. u32 pending_image_component_count;
  401. struct {
  402. char name[8];
  403. char version[32];
  404. char build_date[16];
  405. char build_time[16];
  406. } __attribute__ ((packed)) pending_image_component[8];
  407. u8 max_arms;
  408. u8 max_spans;
  409. u8 max_arrays;
  410. u8 max_lds;
  411. char product_name[80];
  412. char serial_no[32];
  413. /*
  414. * Other physical/controller/operation information. Indicates the
  415. * presence of the hardware
  416. */
  417. struct {
  418. u32 bbu:1;
  419. u32 alarm:1;
  420. u32 nvram:1;
  421. u32 uart:1;
  422. u32 reserved:28;
  423. } __attribute__ ((packed)) hw_present;
  424. u32 current_fw_time;
  425. /*
  426. * Maximum data transfer sizes
  427. */
  428. u16 max_concurrent_cmds;
  429. u16 max_sge_count;
  430. u32 max_request_size;
  431. /*
  432. * Logical and physical device counts
  433. */
  434. u16 ld_present_count;
  435. u16 ld_degraded_count;
  436. u16 ld_offline_count;
  437. u16 pd_present_count;
  438. u16 pd_disk_present_count;
  439. u16 pd_disk_pred_failure_count;
  440. u16 pd_disk_failed_count;
  441. /*
  442. * Memory size information
  443. */
  444. u16 nvram_size;
  445. u16 memory_size;
  446. u16 flash_size;
  447. /*
  448. * Error counters
  449. */
  450. u16 mem_correctable_error_count;
  451. u16 mem_uncorrectable_error_count;
  452. /*
  453. * Cluster information
  454. */
  455. u8 cluster_permitted;
  456. u8 cluster_active;
  457. /*
  458. * Additional max data transfer sizes
  459. */
  460. u16 max_strips_per_io;
  461. /*
  462. * Controller capabilities structures
  463. */
  464. struct {
  465. u32 raid_level_0:1;
  466. u32 raid_level_1:1;
  467. u32 raid_level_5:1;
  468. u32 raid_level_1E:1;
  469. u32 raid_level_6:1;
  470. u32 reserved:27;
  471. } __attribute__ ((packed)) raid_levels;
  472. struct {
  473. u32 rbld_rate:1;
  474. u32 cc_rate:1;
  475. u32 bgi_rate:1;
  476. u32 recon_rate:1;
  477. u32 patrol_rate:1;
  478. u32 alarm_control:1;
  479. u32 cluster_supported:1;
  480. u32 bbu:1;
  481. u32 spanning_allowed:1;
  482. u32 dedicated_hotspares:1;
  483. u32 revertible_hotspares:1;
  484. u32 foreign_config_import:1;
  485. u32 self_diagnostic:1;
  486. u32 mixed_redundancy_arr:1;
  487. u32 global_hot_spares:1;
  488. u32 reserved:17;
  489. } __attribute__ ((packed)) adapter_operations;
  490. struct {
  491. u32 read_policy:1;
  492. u32 write_policy:1;
  493. u32 io_policy:1;
  494. u32 access_policy:1;
  495. u32 disk_cache_policy:1;
  496. u32 reserved:27;
  497. } __attribute__ ((packed)) ld_operations;
  498. struct {
  499. u8 min;
  500. u8 max;
  501. u8 reserved[2];
  502. } __attribute__ ((packed)) stripe_sz_ops;
  503. struct {
  504. u32 force_online:1;
  505. u32 force_offline:1;
  506. u32 force_rebuild:1;
  507. u32 reserved:29;
  508. } __attribute__ ((packed)) pd_operations;
  509. struct {
  510. u32 ctrl_supports_sas:1;
  511. u32 ctrl_supports_sata:1;
  512. u32 allow_mix_in_encl:1;
  513. u32 allow_mix_in_ld:1;
  514. u32 allow_sata_in_cluster:1;
  515. u32 reserved:27;
  516. } __attribute__ ((packed)) pd_mix_support;
  517. /*
  518. * Define ECC single-bit-error bucket information
  519. */
  520. u8 ecc_bucket_count;
  521. u8 reserved_2[11];
  522. /*
  523. * Include the controller properties (changeable items)
  524. */
  525. struct megasas_ctrl_prop properties;
  526. /*
  527. * Define FW pkg version (set in envt v'bles on OEM basis)
  528. */
  529. char package_version[0x60];
  530. u8 pad[0x800 - 0x6a0];
  531. } __packed;
  532. /*
  533. * ===============================
  534. * MegaRAID SAS driver definitions
  535. * ===============================
  536. */
  537. #define MEGASAS_MAX_PD_CHANNELS 2
  538. #define MEGASAS_MAX_LD_CHANNELS 2
  539. #define MEGASAS_MAX_CHANNELS (MEGASAS_MAX_PD_CHANNELS + \
  540. MEGASAS_MAX_LD_CHANNELS)
  541. #define MEGASAS_MAX_DEV_PER_CHANNEL 128
  542. #define MEGASAS_DEFAULT_INIT_ID -1
  543. #define MEGASAS_MAX_LUN 8
  544. #define MEGASAS_MAX_LD 64
  545. #define MEGASAS_MAX_PD (MEGASAS_MAX_PD_CHANNELS * \
  546. MEGASAS_MAX_DEV_PER_CHANNEL)
  547. #define MEGASAS_DBG_LVL 1
  548. #define MEGASAS_FW_BUSY 1
  549. /* Frame Type */
  550. #define IO_FRAME 0
  551. #define PTHRU_FRAME 1
  552. /*
  553. * When SCSI mid-layer calls driver's reset routine, driver waits for
  554. * MEGASAS_RESET_WAIT_TIME seconds for all outstanding IO to complete. Note
  555. * that the driver cannot _actually_ abort or reset pending commands. While
  556. * it is waiting for the commands to complete, it prints a diagnostic message
  557. * every MEGASAS_RESET_NOTICE_INTERVAL seconds
  558. */
  559. #define MEGASAS_RESET_WAIT_TIME 180
  560. #define MEGASAS_INTERNAL_CMD_WAIT_TIME 180
  561. #define MEGASAS_RESET_NOTICE_INTERVAL 5
  562. #define MEGASAS_IOCTL_CMD 0
  563. #define MEGASAS_DEFAULT_CMD_TIMEOUT 90
  564. /*
  565. * FW reports the maximum of number of commands that it can accept (maximum
  566. * commands that can be outstanding) at any time. The driver must report a
  567. * lower number to the mid layer because it can issue a few internal commands
  568. * itself (E.g, AEN, abort cmd, IOCTLs etc). The number of commands it needs
  569. * is shown below
  570. */
  571. #define MEGASAS_INT_CMDS 32
  572. #define MEGASAS_SKINNY_INT_CMDS 5
  573. /*
  574. * FW can accept both 32 and 64 bit SGLs. We want to allocate 32/64 bit
  575. * SGLs based on the size of dma_addr_t
  576. */
  577. #define IS_DMA64 (sizeof(dma_addr_t) == 8)
  578. #define MFI_OB_INTR_STATUS_MASK 0x00000002
  579. #define MFI_POLL_TIMEOUT_SECS 60
  580. #define MEGASAS_COMPLETION_TIMER_INTERVAL (HZ/10)
  581. #define MFI_REPLY_1078_MESSAGE_INTERRUPT 0x80000000
  582. #define MFI_REPLY_GEN2_MESSAGE_INTERRUPT 0x00000001
  583. #define MFI_GEN2_ENABLE_INTERRUPT_MASK (0x00000001 | 0x00000004)
  584. #define MFI_REPLY_SKINNY_MESSAGE_INTERRUPT 0x40000000
  585. #define MFI_SKINNY_ENABLE_INTERRUPT_MASK (0x00000001)
  586. /*
  587. * register set for both 1068 and 1078 controllers
  588. * structure extended for 1078 registers
  589. */
  590. struct megasas_register_set {
  591. u32 reserved_0[4]; /*0000h*/
  592. u32 inbound_msg_0; /*0010h*/
  593. u32 inbound_msg_1; /*0014h*/
  594. u32 outbound_msg_0; /*0018h*/
  595. u32 outbound_msg_1; /*001Ch*/
  596. u32 inbound_doorbell; /*0020h*/
  597. u32 inbound_intr_status; /*0024h*/
  598. u32 inbound_intr_mask; /*0028h*/
  599. u32 outbound_doorbell; /*002Ch*/
  600. u32 outbound_intr_status; /*0030h*/
  601. u32 outbound_intr_mask; /*0034h*/
  602. u32 reserved_1[2]; /*0038h*/
  603. u32 inbound_queue_port; /*0040h*/
  604. u32 outbound_queue_port; /*0044h*/
  605. u32 reserved_2[22]; /*0048h*/
  606. u32 outbound_doorbell_clear; /*00A0h*/
  607. u32 reserved_3[3]; /*00A4h*/
  608. u32 outbound_scratch_pad ; /*00B0h*/
  609. u32 reserved_4[3]; /*00B4h*/
  610. u32 inbound_low_queue_port ; /*00C0h*/
  611. u32 inbound_high_queue_port ; /*00C4h*/
  612. u32 reserved_5; /*00C8h*/
  613. u32 index_registers[820]; /*00CCh*/
  614. } __attribute__ ((packed));
  615. struct megasas_sge32 {
  616. u32 phys_addr;
  617. u32 length;
  618. } __attribute__ ((packed));
  619. struct megasas_sge64 {
  620. u64 phys_addr;
  621. u32 length;
  622. } __attribute__ ((packed));
  623. struct megasas_sge_skinny {
  624. u64 phys_addr;
  625. u32 length;
  626. u32 flag;
  627. } __packed;
  628. union megasas_sgl {
  629. struct megasas_sge32 sge32[1];
  630. struct megasas_sge64 sge64[1];
  631. struct megasas_sge_skinny sge_skinny[1];
  632. } __attribute__ ((packed));
  633. struct megasas_header {
  634. u8 cmd; /*00h */
  635. u8 sense_len; /*01h */
  636. u8 cmd_status; /*02h */
  637. u8 scsi_status; /*03h */
  638. u8 target_id; /*04h */
  639. u8 lun; /*05h */
  640. u8 cdb_len; /*06h */
  641. u8 sge_count; /*07h */
  642. u32 context; /*08h */
  643. u32 pad_0; /*0Ch */
  644. u16 flags; /*10h */
  645. u16 timeout; /*12h */
  646. u32 data_xferlen; /*14h */
  647. } __attribute__ ((packed));
  648. union megasas_sgl_frame {
  649. struct megasas_sge32 sge32[8];
  650. struct megasas_sge64 sge64[5];
  651. } __attribute__ ((packed));
  652. struct megasas_init_frame {
  653. u8 cmd; /*00h */
  654. u8 reserved_0; /*01h */
  655. u8 cmd_status; /*02h */
  656. u8 reserved_1; /*03h */
  657. u32 reserved_2; /*04h */
  658. u32 context; /*08h */
  659. u32 pad_0; /*0Ch */
  660. u16 flags; /*10h */
  661. u16 reserved_3; /*12h */
  662. u32 data_xfer_len; /*14h */
  663. u32 queue_info_new_phys_addr_lo; /*18h */
  664. u32 queue_info_new_phys_addr_hi; /*1Ch */
  665. u32 queue_info_old_phys_addr_lo; /*20h */
  666. u32 queue_info_old_phys_addr_hi; /*24h */
  667. u32 reserved_4[6]; /*28h */
  668. } __attribute__ ((packed));
  669. struct megasas_init_queue_info {
  670. u32 init_flags; /*00h */
  671. u32 reply_queue_entries; /*04h */
  672. u32 reply_queue_start_phys_addr_lo; /*08h */
  673. u32 reply_queue_start_phys_addr_hi; /*0Ch */
  674. u32 producer_index_phys_addr_lo; /*10h */
  675. u32 producer_index_phys_addr_hi; /*14h */
  676. u32 consumer_index_phys_addr_lo; /*18h */
  677. u32 consumer_index_phys_addr_hi; /*1Ch */
  678. } __attribute__ ((packed));
  679. struct megasas_io_frame {
  680. u8 cmd; /*00h */
  681. u8 sense_len; /*01h */
  682. u8 cmd_status; /*02h */
  683. u8 scsi_status; /*03h */
  684. u8 target_id; /*04h */
  685. u8 access_byte; /*05h */
  686. u8 reserved_0; /*06h */
  687. u8 sge_count; /*07h */
  688. u32 context; /*08h */
  689. u32 pad_0; /*0Ch */
  690. u16 flags; /*10h */
  691. u16 timeout; /*12h */
  692. u32 lba_count; /*14h */
  693. u32 sense_buf_phys_addr_lo; /*18h */
  694. u32 sense_buf_phys_addr_hi; /*1Ch */
  695. u32 start_lba_lo; /*20h */
  696. u32 start_lba_hi; /*24h */
  697. union megasas_sgl sgl; /*28h */
  698. } __attribute__ ((packed));
  699. struct megasas_pthru_frame {
  700. u8 cmd; /*00h */
  701. u8 sense_len; /*01h */
  702. u8 cmd_status; /*02h */
  703. u8 scsi_status; /*03h */
  704. u8 target_id; /*04h */
  705. u8 lun; /*05h */
  706. u8 cdb_len; /*06h */
  707. u8 sge_count; /*07h */
  708. u32 context; /*08h */
  709. u32 pad_0; /*0Ch */
  710. u16 flags; /*10h */
  711. u16 timeout; /*12h */
  712. u32 data_xfer_len; /*14h */
  713. u32 sense_buf_phys_addr_lo; /*18h */
  714. u32 sense_buf_phys_addr_hi; /*1Ch */
  715. u8 cdb[16]; /*20h */
  716. union megasas_sgl sgl; /*30h */
  717. } __attribute__ ((packed));
  718. struct megasas_dcmd_frame {
  719. u8 cmd; /*00h */
  720. u8 reserved_0; /*01h */
  721. u8 cmd_status; /*02h */
  722. u8 reserved_1[4]; /*03h */
  723. u8 sge_count; /*07h */
  724. u32 context; /*08h */
  725. u32 pad_0; /*0Ch */
  726. u16 flags; /*10h */
  727. u16 timeout; /*12h */
  728. u32 data_xfer_len; /*14h */
  729. u32 opcode; /*18h */
  730. union { /*1Ch */
  731. u8 b[12];
  732. u16 s[6];
  733. u32 w[3];
  734. } mbox;
  735. union megasas_sgl sgl; /*28h */
  736. } __attribute__ ((packed));
  737. struct megasas_abort_frame {
  738. u8 cmd; /*00h */
  739. u8 reserved_0; /*01h */
  740. u8 cmd_status; /*02h */
  741. u8 reserved_1; /*03h */
  742. u32 reserved_2; /*04h */
  743. u32 context; /*08h */
  744. u32 pad_0; /*0Ch */
  745. u16 flags; /*10h */
  746. u16 reserved_3; /*12h */
  747. u32 reserved_4; /*14h */
  748. u32 abort_context; /*18h */
  749. u32 pad_1; /*1Ch */
  750. u32 abort_mfi_phys_addr_lo; /*20h */
  751. u32 abort_mfi_phys_addr_hi; /*24h */
  752. u32 reserved_5[6]; /*28h */
  753. } __attribute__ ((packed));
  754. struct megasas_smp_frame {
  755. u8 cmd; /*00h */
  756. u8 reserved_1; /*01h */
  757. u8 cmd_status; /*02h */
  758. u8 connection_status; /*03h */
  759. u8 reserved_2[3]; /*04h */
  760. u8 sge_count; /*07h */
  761. u32 context; /*08h */
  762. u32 pad_0; /*0Ch */
  763. u16 flags; /*10h */
  764. u16 timeout; /*12h */
  765. u32 data_xfer_len; /*14h */
  766. u64 sas_addr; /*18h */
  767. union {
  768. struct megasas_sge32 sge32[2]; /* [0]: resp [1]: req */
  769. struct megasas_sge64 sge64[2]; /* [0]: resp [1]: req */
  770. } sgl;
  771. } __attribute__ ((packed));
  772. struct megasas_stp_frame {
  773. u8 cmd; /*00h */
  774. u8 reserved_1; /*01h */
  775. u8 cmd_status; /*02h */
  776. u8 reserved_2; /*03h */
  777. u8 target_id; /*04h */
  778. u8 reserved_3[2]; /*05h */
  779. u8 sge_count; /*07h */
  780. u32 context; /*08h */
  781. u32 pad_0; /*0Ch */
  782. u16 flags; /*10h */
  783. u16 timeout; /*12h */
  784. u32 data_xfer_len; /*14h */
  785. u16 fis[10]; /*18h */
  786. u32 stp_flags;
  787. union {
  788. struct megasas_sge32 sge32[2]; /* [0]: resp [1]: data */
  789. struct megasas_sge64 sge64[2]; /* [0]: resp [1]: data */
  790. } sgl;
  791. } __attribute__ ((packed));
  792. union megasas_frame {
  793. struct megasas_header hdr;
  794. struct megasas_init_frame init;
  795. struct megasas_io_frame io;
  796. struct megasas_pthru_frame pthru;
  797. struct megasas_dcmd_frame dcmd;
  798. struct megasas_abort_frame abort;
  799. struct megasas_smp_frame smp;
  800. struct megasas_stp_frame stp;
  801. u8 raw_bytes[64];
  802. };
  803. struct megasas_cmd;
  804. union megasas_evt_class_locale {
  805. struct {
  806. u16 locale;
  807. u8 reserved;
  808. s8 class;
  809. } __attribute__ ((packed)) members;
  810. u32 word;
  811. } __attribute__ ((packed));
  812. struct megasas_evt_log_info {
  813. u32 newest_seq_num;
  814. u32 oldest_seq_num;
  815. u32 clear_seq_num;
  816. u32 shutdown_seq_num;
  817. u32 boot_seq_num;
  818. } __attribute__ ((packed));
  819. struct megasas_progress {
  820. u16 progress;
  821. u16 elapsed_seconds;
  822. } __attribute__ ((packed));
  823. struct megasas_evtarg_ld {
  824. u16 target_id;
  825. u8 ld_index;
  826. u8 reserved;
  827. } __attribute__ ((packed));
  828. struct megasas_evtarg_pd {
  829. u16 device_id;
  830. u8 encl_index;
  831. u8 slot_number;
  832. } __attribute__ ((packed));
  833. struct megasas_evt_detail {
  834. u32 seq_num;
  835. u32 time_stamp;
  836. u32 code;
  837. union megasas_evt_class_locale cl;
  838. u8 arg_type;
  839. u8 reserved1[15];
  840. union {
  841. struct {
  842. struct megasas_evtarg_pd pd;
  843. u8 cdb_length;
  844. u8 sense_length;
  845. u8 reserved[2];
  846. u8 cdb[16];
  847. u8 sense[64];
  848. } __attribute__ ((packed)) cdbSense;
  849. struct megasas_evtarg_ld ld;
  850. struct {
  851. struct megasas_evtarg_ld ld;
  852. u64 count;
  853. } __attribute__ ((packed)) ld_count;
  854. struct {
  855. u64 lba;
  856. struct megasas_evtarg_ld ld;
  857. } __attribute__ ((packed)) ld_lba;
  858. struct {
  859. struct megasas_evtarg_ld ld;
  860. u32 prevOwner;
  861. u32 newOwner;
  862. } __attribute__ ((packed)) ld_owner;
  863. struct {
  864. u64 ld_lba;
  865. u64 pd_lba;
  866. struct megasas_evtarg_ld ld;
  867. struct megasas_evtarg_pd pd;
  868. } __attribute__ ((packed)) ld_lba_pd_lba;
  869. struct {
  870. struct megasas_evtarg_ld ld;
  871. struct megasas_progress prog;
  872. } __attribute__ ((packed)) ld_prog;
  873. struct {
  874. struct megasas_evtarg_ld ld;
  875. u32 prev_state;
  876. u32 new_state;
  877. } __attribute__ ((packed)) ld_state;
  878. struct {
  879. u64 strip;
  880. struct megasas_evtarg_ld ld;
  881. } __attribute__ ((packed)) ld_strip;
  882. struct megasas_evtarg_pd pd;
  883. struct {
  884. struct megasas_evtarg_pd pd;
  885. u32 err;
  886. } __attribute__ ((packed)) pd_err;
  887. struct {
  888. u64 lba;
  889. struct megasas_evtarg_pd pd;
  890. } __attribute__ ((packed)) pd_lba;
  891. struct {
  892. u64 lba;
  893. struct megasas_evtarg_pd pd;
  894. struct megasas_evtarg_ld ld;
  895. } __attribute__ ((packed)) pd_lba_ld;
  896. struct {
  897. struct megasas_evtarg_pd pd;
  898. struct megasas_progress prog;
  899. } __attribute__ ((packed)) pd_prog;
  900. struct {
  901. struct megasas_evtarg_pd pd;
  902. u32 prevState;
  903. u32 newState;
  904. } __attribute__ ((packed)) pd_state;
  905. struct {
  906. u16 vendorId;
  907. u16 deviceId;
  908. u16 subVendorId;
  909. u16 subDeviceId;
  910. } __attribute__ ((packed)) pci;
  911. u32 rate;
  912. char str[96];
  913. struct {
  914. u32 rtc;
  915. u32 elapsedSeconds;
  916. } __attribute__ ((packed)) time;
  917. struct {
  918. u32 ecar;
  919. u32 elog;
  920. char str[64];
  921. } __attribute__ ((packed)) ecc;
  922. u8 b[96];
  923. u16 s[48];
  924. u32 w[24];
  925. u64 d[12];
  926. } args;
  927. char description[128];
  928. } __attribute__ ((packed));
  929. struct megasas_aen_event {
  930. struct work_struct hotplug_work;
  931. struct megasas_instance *instance;
  932. };
  933. struct megasas_instance {
  934. u32 *producer;
  935. dma_addr_t producer_h;
  936. u32 *consumer;
  937. dma_addr_t consumer_h;
  938. u32 *reply_queue;
  939. dma_addr_t reply_queue_h;
  940. unsigned long base_addr;
  941. struct megasas_register_set __iomem *reg_set;
  942. struct megasas_pd_list pd_list[MEGASAS_MAX_PD];
  943. s8 init_id;
  944. u16 max_num_sge;
  945. u16 max_fw_cmds;
  946. u32 max_sectors_per_req;
  947. struct megasas_aen_event *ev;
  948. struct megasas_cmd **cmd_list;
  949. struct list_head cmd_pool;
  950. spinlock_t cmd_pool_lock;
  951. /* used to synch producer, consumer ptrs in dpc */
  952. spinlock_t completion_lock;
  953. /* used to sync fire the cmd to fw */
  954. spinlock_t fire_lock;
  955. struct dma_pool *frame_dma_pool;
  956. struct dma_pool *sense_dma_pool;
  957. struct megasas_evt_detail *evt_detail;
  958. dma_addr_t evt_detail_h;
  959. struct megasas_cmd *aen_cmd;
  960. struct mutex aen_mutex;
  961. struct semaphore ioctl_sem;
  962. struct Scsi_Host *host;
  963. wait_queue_head_t int_cmd_wait_q;
  964. wait_queue_head_t abort_cmd_wait_q;
  965. struct pci_dev *pdev;
  966. u32 unique_id;
  967. atomic_t fw_outstanding;
  968. u32 hw_crit_error;
  969. struct megasas_instance_template *instancet;
  970. struct tasklet_struct isr_tasklet;
  971. u8 flag;
  972. u8 unload;
  973. u8 flag_ieee;
  974. unsigned long last_time;
  975. struct timer_list io_completion_timer;
  976. };
  977. struct megasas_instance_template {
  978. void (*fire_cmd)(struct megasas_instance *, dma_addr_t, \
  979. u32, struct megasas_register_set __iomem *);
  980. void (*enable_intr)(struct megasas_register_set __iomem *) ;
  981. void (*disable_intr)(struct megasas_register_set __iomem *);
  982. int (*clear_intr)(struct megasas_register_set __iomem *);
  983. u32 (*read_fw_status_reg)(struct megasas_register_set __iomem *);
  984. };
  985. #define MEGASAS_IS_LOGICAL(scp) \
  986. (scp->device->channel < MEGASAS_MAX_PD_CHANNELS) ? 0 : 1
  987. #define MEGASAS_DEV_INDEX(inst, scp) \
  988. ((scp->device->channel % 2) * MEGASAS_MAX_DEV_PER_CHANNEL) + \
  989. scp->device->id
  990. struct megasas_cmd {
  991. union megasas_frame *frame;
  992. dma_addr_t frame_phys_addr;
  993. u8 *sense;
  994. dma_addr_t sense_phys_addr;
  995. u32 index;
  996. u8 sync_cmd;
  997. u8 cmd_status;
  998. u16 abort_aen;
  999. struct list_head list;
  1000. struct scsi_cmnd *scmd;
  1001. struct megasas_instance *instance;
  1002. u32 frame_count;
  1003. };
  1004. #define MAX_MGMT_ADAPTERS 1024
  1005. #define MAX_IOCTL_SGE 16
  1006. struct megasas_iocpacket {
  1007. u16 host_no;
  1008. u16 __pad1;
  1009. u32 sgl_off;
  1010. u32 sge_count;
  1011. u32 sense_off;
  1012. u32 sense_len;
  1013. union {
  1014. u8 raw[128];
  1015. struct megasas_header hdr;
  1016. } frame;
  1017. struct iovec sgl[MAX_IOCTL_SGE];
  1018. } __attribute__ ((packed));
  1019. struct megasas_aen {
  1020. u16 host_no;
  1021. u16 __pad1;
  1022. u32 seq_num;
  1023. u32 class_locale_word;
  1024. } __attribute__ ((packed));
  1025. #ifdef CONFIG_COMPAT
  1026. struct compat_megasas_iocpacket {
  1027. u16 host_no;
  1028. u16 __pad1;
  1029. u32 sgl_off;
  1030. u32 sge_count;
  1031. u32 sense_off;
  1032. u32 sense_len;
  1033. union {
  1034. u8 raw[128];
  1035. struct megasas_header hdr;
  1036. } frame;
  1037. struct compat_iovec sgl[MAX_IOCTL_SGE];
  1038. } __attribute__ ((packed));
  1039. #define MEGASAS_IOC_FIRMWARE32 _IOWR('M', 1, struct compat_megasas_iocpacket)
  1040. #endif
  1041. #define MEGASAS_IOC_FIRMWARE _IOWR('M', 1, struct megasas_iocpacket)
  1042. #define MEGASAS_IOC_GET_AEN _IOW('M', 3, struct megasas_aen)
  1043. struct megasas_mgmt_info {
  1044. u16 count;
  1045. struct megasas_instance *instance[MAX_MGMT_ADAPTERS];
  1046. int max_index;
  1047. };
  1048. #endif /*LSI_MEGARAID_SAS_H */