mpt3sas_base.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139
  1. /*
  2. * This is the Fusion MPT base driver providing common API layer interface
  3. * for access to MPT (Message Passing Technology) firmware.
  4. *
  5. * This code is based on drivers/scsi/mpt3sas/mpt3sas_base.h
  6. * Copyright (C) 2012 LSI Corporation
  7. * (mailto:DL-MPTFusionLinux@lsi.com)
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * NO WARRANTY
  20. * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
  21. * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
  22. * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
  23. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
  24. * solely responsible for determining the appropriateness of using and
  25. * distributing the Program and assumes all risks associated with its
  26. * exercise of rights under this Agreement, including but not limited to
  27. * the risks and costs of program errors, damage to or loss of data,
  28. * programs or equipment, and unavailability or interruption of operations.
  29. * DISCLAIMER OF LIABILITY
  30. * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
  31. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32. * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
  33. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  34. * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  35. * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
  36. * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
  37. * You should have received a copy of the GNU General Public License
  38. * along with this program; if not, write to the Free Software
  39. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  40. * USA.
  41. */
  42. #ifndef MPT3SAS_BASE_H_INCLUDED
  43. #define MPT3SAS_BASE_H_INCLUDED
  44. #include "mpi/mpi2_type.h"
  45. #include "mpi/mpi2.h"
  46. #include "mpi/mpi2_ioc.h"
  47. #include "mpi/mpi2_cnfg.h"
  48. #include "mpi/mpi2_init.h"
  49. #include "mpi/mpi2_raid.h"
  50. #include "mpi/mpi2_tool.h"
  51. #include "mpi/mpi2_sas.h"
  52. #include <scsi/scsi.h>
  53. #include <scsi/scsi_cmnd.h>
  54. #include <scsi/scsi_device.h>
  55. #include <scsi/scsi_host.h>
  56. #include <scsi/scsi_tcq.h>
  57. #include <scsi/scsi_transport_sas.h>
  58. #include <scsi/scsi_dbg.h>
  59. #include <scsi/scsi_eh.h>
  60. #include "mpt3sas_debug.h"
  61. #include "mpt3sas_trigger_diag.h"
  62. /* driver versioning info */
  63. #define MPT3SAS_DRIVER_NAME "mpt3sas"
  64. #define MPT3SAS_AUTHOR "LSI Corporation <DL-MPTFusionLinux@lsi.com>"
  65. #define MPT3SAS_DESCRIPTION "LSI MPT Fusion SAS 3.0 Device Driver"
  66. #define MPT3SAS_DRIVER_VERSION "01.100.01.00"
  67. #define MPT3SAS_MAJOR_VERSION 1
  68. #define MPT3SAS_MINOR_VERSION 100
  69. #define MPT3SAS_BUILD_VERSION 1
  70. #define MPT3SAS_RELEASE_VERSION 00
  71. /*
  72. * Set MPT3SAS_SG_DEPTH value based on user input.
  73. */
  74. #define MPT3SAS_MAX_PHYS_SEGMENTS SCSI_MAX_SG_SEGMENTS
  75. #define MPT3SAS_MIN_PHYS_SEGMENTS 16
  76. #ifdef CONFIG_SCSI_MPT3SAS_MAX_SGE
  77. #define MPT3SAS_SG_DEPTH CONFIG_SCSI_MPT3SAS_MAX_SGE
  78. #else
  79. #define MPT3SAS_SG_DEPTH MPT3SAS_MAX_PHYS_SEGMENTS
  80. #endif
  81. /*
  82. * Generic Defines
  83. */
  84. #define MPT3SAS_SATA_QUEUE_DEPTH 32
  85. #define MPT3SAS_SAS_QUEUE_DEPTH 254
  86. #define MPT3SAS_RAID_QUEUE_DEPTH 128
  87. #define MPT_NAME_LENGTH 32 /* generic length of strings */
  88. #define MPT_STRING_LENGTH 64
  89. #define MPT_MAX_CALLBACKS 32
  90. #define CAN_SLEEP 1
  91. #define NO_SLEEP 0
  92. #define INTERNAL_CMDS_COUNT 10 /* reserved cmds */
  93. #define MPI3_HIM_MASK 0xFFFFFFFF /* mask every bit*/
  94. #define MPT3SAS_INVALID_DEVICE_HANDLE 0xFFFF
  95. /*
  96. * reset phases
  97. */
  98. #define MPT3_IOC_PRE_RESET 1 /* prior to host reset */
  99. #define MPT3_IOC_AFTER_RESET 2 /* just after host reset */
  100. #define MPT3_IOC_DONE_RESET 3 /* links re-initialized */
  101. /*
  102. * logging format
  103. */
  104. #define MPT3SAS_FMT "%s: "
  105. /*
  106. * per target private data
  107. */
  108. #define MPT_TARGET_FLAGS_RAID_COMPONENT 0x01
  109. #define MPT_TARGET_FLAGS_VOLUME 0x02
  110. #define MPT_TARGET_FLAGS_DELETED 0x04
  111. #define MPT_TARGET_FASTPATH_IO 0x08
  112. /*
  113. * status bits for ioc->diag_buffer_status
  114. */
  115. #define MPT3_DIAG_BUFFER_IS_REGISTERED (0x01)
  116. #define MPT3_DIAG_BUFFER_IS_RELEASED (0x02)
  117. #define MPT3_DIAG_BUFFER_IS_DIAG_RESET (0x04)
  118. /* OEM Identifiers */
  119. #define MFG10_OEM_ID_INVALID (0x00000000)
  120. #define MFG10_OEM_ID_DELL (0x00000001)
  121. #define MFG10_OEM_ID_FSC (0x00000002)
  122. #define MFG10_OEM_ID_SUN (0x00000003)
  123. #define MFG10_OEM_ID_IBM (0x00000004)
  124. /* GENERIC Flags 0*/
  125. #define MFG10_GF0_OCE_DISABLED (0x00000001)
  126. #define MFG10_GF0_R1E_DRIVE_COUNT (0x00000002)
  127. #define MFG10_GF0_R10_DISPLAY (0x00000004)
  128. #define MFG10_GF0_SSD_DATA_SCRUB_DISABLE (0x00000008)
  129. #define MFG10_GF0_SINGLE_DRIVE_R0 (0x00000010)
  130. /* OEM Specific Flags will come from OEM specific header files */
  131. struct Mpi2ManufacturingPage10_t {
  132. MPI2_CONFIG_PAGE_HEADER Header; /* 00h */
  133. U8 OEMIdentifier; /* 04h */
  134. U8 Reserved1; /* 05h */
  135. U16 Reserved2; /* 08h */
  136. U32 Reserved3; /* 0Ch */
  137. U32 GenericFlags0; /* 10h */
  138. U32 GenericFlags1; /* 14h */
  139. U32 Reserved4; /* 18h */
  140. U32 OEMSpecificFlags0; /* 1Ch */
  141. U32 OEMSpecificFlags1; /* 20h */
  142. U32 Reserved5[18]; /* 24h - 60h*/
  143. };
  144. /* Miscellaneous options */
  145. struct Mpi2ManufacturingPage11_t {
  146. MPI2_CONFIG_PAGE_HEADER Header; /* 00h */
  147. __le32 Reserved1; /* 04h */
  148. u8 Reserved2; /* 08h */
  149. u8 EEDPTagMode; /* 09h */
  150. u8 Reserved3; /* 0Ah */
  151. u8 Reserved4; /* 0Bh */
  152. __le32 Reserved5[23]; /* 0Ch-60h*/
  153. };
  154. /**
  155. * struct MPT3SAS_TARGET - starget private hostdata
  156. * @starget: starget object
  157. * @sas_address: target sas address
  158. * @handle: device handle
  159. * @num_luns: number luns
  160. * @flags: MPT_TARGET_FLAGS_XXX flags
  161. * @deleted: target flaged for deletion
  162. * @tm_busy: target is busy with TM request.
  163. */
  164. struct MPT3SAS_TARGET {
  165. struct scsi_target *starget;
  166. u64 sas_address;
  167. u16 handle;
  168. int num_luns;
  169. u32 flags;
  170. u8 deleted;
  171. u8 tm_busy;
  172. };
  173. /*
  174. * per device private data
  175. */
  176. #define MPT_DEVICE_FLAGS_INIT 0x01
  177. #define MPT_DEVICE_TLR_ON 0x02
  178. /**
  179. * struct MPT3SAS_DEVICE - sdev private hostdata
  180. * @sas_target: starget private hostdata
  181. * @lun: lun number
  182. * @flags: MPT_DEVICE_XXX flags
  183. * @configured_lun: lun is configured
  184. * @block: device is in SDEV_BLOCK state
  185. * @tlr_snoop_check: flag used in determining whether to disable TLR
  186. * @eedp_enable: eedp support enable bit
  187. * @eedp_type: 0(type_1), 1(type_2), 2(type_3)
  188. * @eedp_block_length: block size
  189. */
  190. struct MPT3SAS_DEVICE {
  191. struct MPT3SAS_TARGET *sas_target;
  192. unsigned int lun;
  193. u32 flags;
  194. u8 configured_lun;
  195. u8 block;
  196. u8 tlr_snoop_check;
  197. };
  198. #define MPT3_CMD_NOT_USED 0x8000 /* free */
  199. #define MPT3_CMD_COMPLETE 0x0001 /* completed */
  200. #define MPT3_CMD_PENDING 0x0002 /* pending */
  201. #define MPT3_CMD_REPLY_VALID 0x0004 /* reply is valid */
  202. #define MPT3_CMD_RESET 0x0008 /* host reset dropped the command */
  203. /**
  204. * struct _internal_cmd - internal commands struct
  205. * @mutex: mutex
  206. * @done: completion
  207. * @reply: reply message pointer
  208. * @sense: sense data
  209. * @status: MPT3_CMD_XXX status
  210. * @smid: system message id
  211. */
  212. struct _internal_cmd {
  213. struct mutex mutex;
  214. struct completion done;
  215. void *reply;
  216. void *sense;
  217. u16 status;
  218. u16 smid;
  219. };
  220. /**
  221. * struct _sas_device - attached device information
  222. * @list: sas device list
  223. * @starget: starget object
  224. * @sas_address: device sas address
  225. * @device_name: retrieved from the SAS IDENTIFY frame.
  226. * @handle: device handle
  227. * @sas_address_parent: sas address of parent expander or sas host
  228. * @enclosure_handle: enclosure handle
  229. * @enclosure_logical_id: enclosure logical identifier
  230. * @volume_handle: volume handle (valid when hidden raid member)
  231. * @volume_wwid: volume unique identifier
  232. * @device_info: bitfield provides detailed info about the device
  233. * @id: target id
  234. * @channel: target channel
  235. * @slot: number number
  236. * @phy: phy identifier provided in sas device page 0
  237. * @fast_path: fast path feature enable bit
  238. * @responding: used in _scsih_sas_device_mark_responding
  239. */
  240. struct _sas_device {
  241. struct list_head list;
  242. struct scsi_target *starget;
  243. u64 sas_address;
  244. u64 device_name;
  245. u16 handle;
  246. u64 sas_address_parent;
  247. u16 enclosure_handle;
  248. u64 enclosure_logical_id;
  249. u16 volume_handle;
  250. u64 volume_wwid;
  251. u32 device_info;
  252. int id;
  253. int channel;
  254. u16 slot;
  255. u8 phy;
  256. u8 responding;
  257. u8 fast_path;
  258. };
  259. /**
  260. * struct _raid_device - raid volume link list
  261. * @list: sas device list
  262. * @starget: starget object
  263. * @sdev: scsi device struct (volumes are single lun)
  264. * @wwid: unique identifier for the volume
  265. * @handle: device handle
  266. * @id: target id
  267. * @channel: target channel
  268. * @volume_type: the raid level
  269. * @device_info: bitfield provides detailed info about the hidden components
  270. * @num_pds: number of hidden raid components
  271. * @responding: used in _scsih_raid_device_mark_responding
  272. * @percent_complete: resync percent complete
  273. */
  274. #define MPT_MAX_WARPDRIVE_PDS 8
  275. struct _raid_device {
  276. struct list_head list;
  277. struct scsi_target *starget;
  278. struct scsi_device *sdev;
  279. u64 wwid;
  280. u16 handle;
  281. int id;
  282. int channel;
  283. u8 volume_type;
  284. u8 num_pds;
  285. u8 responding;
  286. u8 percent_complete;
  287. u32 device_info;
  288. };
  289. /**
  290. * struct _boot_device - boot device info
  291. * @is_raid: flag to indicate whether this is volume
  292. * @device: holds pointer for either struct _sas_device or
  293. * struct _raid_device
  294. */
  295. struct _boot_device {
  296. u8 is_raid;
  297. void *device;
  298. };
  299. /**
  300. * struct _sas_port - wide/narrow sas port information
  301. * @port_list: list of ports belonging to expander
  302. * @num_phys: number of phys belonging to this port
  303. * @remote_identify: attached device identification
  304. * @rphy: sas transport rphy object
  305. * @port: sas transport wide/narrow port object
  306. * @phy_list: _sas_phy list objects belonging to this port
  307. */
  308. struct _sas_port {
  309. struct list_head port_list;
  310. u8 num_phys;
  311. struct sas_identify remote_identify;
  312. struct sas_rphy *rphy;
  313. struct sas_port *port;
  314. struct list_head phy_list;
  315. };
  316. /**
  317. * struct _sas_phy - phy information
  318. * @port_siblings: list of phys belonging to a port
  319. * @identify: phy identification
  320. * @remote_identify: attached device identification
  321. * @phy: sas transport phy object
  322. * @phy_id: unique phy id
  323. * @handle: device handle for this phy
  324. * @attached_handle: device handle for attached device
  325. * @phy_belongs_to_port: port has been created for this phy
  326. */
  327. struct _sas_phy {
  328. struct list_head port_siblings;
  329. struct sas_identify identify;
  330. struct sas_identify remote_identify;
  331. struct sas_phy *phy;
  332. u8 phy_id;
  333. u16 handle;
  334. u16 attached_handle;
  335. u8 phy_belongs_to_port;
  336. };
  337. /**
  338. * struct _sas_node - sas_host/expander information
  339. * @list: list of expanders
  340. * @parent_dev: parent device class
  341. * @num_phys: number phys belonging to this sas_host/expander
  342. * @sas_address: sas address of this sas_host/expander
  343. * @handle: handle for this sas_host/expander
  344. * @sas_address_parent: sas address of parent expander or sas host
  345. * @enclosure_handle: handle for this a member of an enclosure
  346. * @device_info: bitwise defining capabilities of this sas_host/expander
  347. * @responding: used in _scsih_expander_device_mark_responding
  348. * @phy: a list of phys that make up this sas_host/expander
  349. * @sas_port_list: list of ports attached to this sas_host/expander
  350. */
  351. struct _sas_node {
  352. struct list_head list;
  353. struct device *parent_dev;
  354. u8 num_phys;
  355. u64 sas_address;
  356. u16 handle;
  357. u64 sas_address_parent;
  358. u16 enclosure_handle;
  359. u64 enclosure_logical_id;
  360. u8 responding;
  361. struct _sas_phy *phy;
  362. struct list_head sas_port_list;
  363. };
  364. /**
  365. * enum reset_type - reset state
  366. * @FORCE_BIG_HAMMER: issue diagnostic reset
  367. * @SOFT_RESET: issue message_unit_reset, if fails to to big hammer
  368. */
  369. enum reset_type {
  370. FORCE_BIG_HAMMER,
  371. SOFT_RESET,
  372. };
  373. /**
  374. * struct chain_tracker - firmware chain tracker
  375. * @chain_buffer: chain buffer
  376. * @chain_buffer_dma: physical address
  377. * @tracker_list: list of free request (ioc->free_chain_list)
  378. */
  379. struct chain_tracker {
  380. void *chain_buffer;
  381. dma_addr_t chain_buffer_dma;
  382. struct list_head tracker_list;
  383. };
  384. /**
  385. * struct scsiio_tracker - scsi mf request tracker
  386. * @smid: system message id
  387. * @scmd: scsi request pointer
  388. * @cb_idx: callback index
  389. * @tracker_list: list of free request (ioc->free_list)
  390. */
  391. struct scsiio_tracker {
  392. u16 smid;
  393. struct scsi_cmnd *scmd;
  394. u8 cb_idx;
  395. struct list_head chain_list;
  396. struct list_head tracker_list;
  397. };
  398. /**
  399. * struct request_tracker - firmware request tracker
  400. * @smid: system message id
  401. * @cb_idx: callback index
  402. * @tracker_list: list of free request (ioc->free_list)
  403. */
  404. struct request_tracker {
  405. u16 smid;
  406. u8 cb_idx;
  407. struct list_head tracker_list;
  408. };
  409. /**
  410. * struct _tr_list - target reset list
  411. * @handle: device handle
  412. * @state: state machine
  413. */
  414. struct _tr_list {
  415. struct list_head list;
  416. u16 handle;
  417. u16 state;
  418. };
  419. /**
  420. * struct adapter_reply_queue - the reply queue struct
  421. * @ioc: per adapter object
  422. * @msix_index: msix index into vector table
  423. * @vector: irq vector
  424. * @reply_post_host_index: head index in the pool where FW completes IO
  425. * @reply_post_free: reply post base virt address
  426. * @name: the name registered to request_irq()
  427. * @busy: isr is actively processing replies on another cpu
  428. * @list: this list
  429. */
  430. struct adapter_reply_queue {
  431. struct MPT3SAS_ADAPTER *ioc;
  432. u8 msix_index;
  433. unsigned int vector;
  434. u32 reply_post_host_index;
  435. Mpi2ReplyDescriptorsUnion_t *reply_post_free;
  436. char name[MPT_NAME_LENGTH];
  437. atomic_t busy;
  438. struct list_head list;
  439. };
  440. typedef void (*MPT_ADD_SGE)(void *paddr, u32 flags_length, dma_addr_t dma_addr);
  441. /* SAS3.0 support */
  442. typedef int (*MPT_BUILD_SG_SCMD)(struct MPT3SAS_ADAPTER *ioc,
  443. struct scsi_cmnd *scmd, u16 smid);
  444. typedef void (*MPT_BUILD_SG)(struct MPT3SAS_ADAPTER *ioc, void *psge,
  445. dma_addr_t data_out_dma, size_t data_out_sz,
  446. dma_addr_t data_in_dma, size_t data_in_sz);
  447. typedef void (*MPT_BUILD_ZERO_LEN_SGE)(struct MPT3SAS_ADAPTER *ioc,
  448. void *paddr);
  449. /* IOC Facts and Port Facts converted from little endian to cpu */
  450. union mpi3_version_union {
  451. MPI2_VERSION_STRUCT Struct;
  452. u32 Word;
  453. };
  454. struct mpt3sas_facts {
  455. u16 MsgVersion;
  456. u16 HeaderVersion;
  457. u8 IOCNumber;
  458. u8 VP_ID;
  459. u8 VF_ID;
  460. u16 IOCExceptions;
  461. u16 IOCStatus;
  462. u32 IOCLogInfo;
  463. u8 MaxChainDepth;
  464. u8 WhoInit;
  465. u8 NumberOfPorts;
  466. u8 MaxMSIxVectors;
  467. u16 RequestCredit;
  468. u16 ProductID;
  469. u32 IOCCapabilities;
  470. union mpi3_version_union FWVersion;
  471. u16 IOCRequestFrameSize;
  472. u16 Reserved3;
  473. u16 MaxInitiators;
  474. u16 MaxTargets;
  475. u16 MaxSasExpanders;
  476. u16 MaxEnclosures;
  477. u16 ProtocolFlags;
  478. u16 HighPriorityCredit;
  479. u16 MaxReplyDescriptorPostQueueDepth;
  480. u8 ReplyFrameSize;
  481. u8 MaxVolumes;
  482. u16 MaxDevHandle;
  483. u16 MaxPersistentEntries;
  484. u16 MinDevHandle;
  485. };
  486. struct mpt3sas_port_facts {
  487. u8 PortNumber;
  488. u8 VP_ID;
  489. u8 VF_ID;
  490. u8 PortType;
  491. u16 MaxPostedCmdBuffers;
  492. };
  493. /**
  494. * enum mutex_type - task management mutex type
  495. * @TM_MUTEX_OFF: mutex is not required becuase calling function is acquiring it
  496. * @TM_MUTEX_ON: mutex is required
  497. */
  498. enum mutex_type {
  499. TM_MUTEX_OFF = 0,
  500. TM_MUTEX_ON = 1,
  501. };
  502. typedef void (*MPT3SAS_FLUSH_RUNNING_CMDS)(struct MPT3SAS_ADAPTER *ioc);
  503. /**
  504. * struct MPT3SAS_ADAPTER - per adapter struct
  505. * @list: ioc_list
  506. * @shost: shost object
  507. * @id: unique adapter id
  508. * @cpu_count: number online cpus
  509. * @name: generic ioc string
  510. * @tmp_string: tmp string used for logging
  511. * @pdev: pci pdev object
  512. * @pio_chip: physical io register space
  513. * @chip: memory mapped register space
  514. * @chip_phys: physical addrss prior to mapping
  515. * @logging_level: see mpt3sas_debug.h
  516. * @fwfault_debug: debuging FW timeouts
  517. * @ir_firmware: IR firmware present
  518. * @bars: bitmask of BAR's that must be configured
  519. * @mask_interrupts: ignore interrupt
  520. * @fault_reset_work_q_name: fw fault work queue
  521. * @fault_reset_work_q: ""
  522. * @fault_reset_work: ""
  523. * @firmware_event_name: fw event work queue
  524. * @firmware_event_thread: ""
  525. * @fw_event_lock:
  526. * @fw_event_list: list of fw events
  527. * @aen_event_read_flag: event log was read
  528. * @broadcast_aen_busy: broadcast aen waiting to be serviced
  529. * @shost_recovery: host reset in progress
  530. * @ioc_reset_in_progress_lock:
  531. * @ioc_link_reset_in_progress: phy/hard reset in progress
  532. * @ignore_loginfos: ignore loginfos during task management
  533. * @remove_host: flag for when driver unloads, to avoid sending dev resets
  534. * @pci_error_recovery: flag to prevent ioc access until slot reset completes
  535. * @wait_for_discovery_to_complete: flag set at driver load time when
  536. * waiting on reporting devices
  537. * @is_driver_loading: flag set at driver load time
  538. * @port_enable_failed: flag set when port enable has failed
  539. * @start_scan: flag set from scan_start callback, cleared from _mpt3sas_fw_work
  540. * @start_scan_failed: means port enable failed, return's the ioc_status
  541. * @msix_enable: flag indicating msix is enabled
  542. * @msix_vector_count: number msix vectors
  543. * @cpu_msix_table: table for mapping cpus to msix index
  544. * @cpu_msix_table_sz: table size
  545. * @schedule_dead_ioc_flush_running_cmds: callback to flush pending commands
  546. * @scsi_io_cb_idx: shost generated commands
  547. * @tm_cb_idx: task management commands
  548. * @scsih_cb_idx: scsih internal commands
  549. * @transport_cb_idx: transport internal commands
  550. * @ctl_cb_idx: clt internal commands
  551. * @base_cb_idx: base internal commands
  552. * @config_cb_idx: base internal commands
  553. * @tm_tr_cb_idx : device removal target reset handshake
  554. * @tm_tr_volume_cb_idx : volume removal target reset
  555. * @base_cmds:
  556. * @transport_cmds:
  557. * @scsih_cmds:
  558. * @tm_cmds:
  559. * @ctl_cmds:
  560. * @config_cmds:
  561. * @base_add_sg_single: handler for either 32/64 bit sgl's
  562. * @event_type: bits indicating which events to log
  563. * @event_context: unique id for each logged event
  564. * @event_log: event log pointer
  565. * @event_masks: events that are masked
  566. * @facts: static facts data
  567. * @pfacts: static port facts data
  568. * @manu_pg0: static manufacturing page 0
  569. * @manu_pg10: static manufacturing page 10
  570. * @manu_pg11: static manufacturing page 11
  571. * @bios_pg2: static bios page 2
  572. * @bios_pg3: static bios page 3
  573. * @ioc_pg8: static ioc page 8
  574. * @iounit_pg0: static iounit page 0
  575. * @iounit_pg1: static iounit page 1
  576. * @sas_hba: sas host object
  577. * @sas_expander_list: expander object list
  578. * @sas_node_lock:
  579. * @sas_device_list: sas device object list
  580. * @sas_device_init_list: sas device object list (used only at init time)
  581. * @sas_device_lock:
  582. * @io_missing_delay: time for IO completed by fw when PDR enabled
  583. * @device_missing_delay: time for device missing by fw when PDR enabled
  584. * @sas_id : used for setting volume target IDs
  585. * @blocking_handles: bitmask used to identify which devices need blocking
  586. * @pd_handles : bitmask for PD handles
  587. * @pd_handles_sz : size of pd_handle bitmask
  588. * @config_page_sz: config page size
  589. * @config_page: reserve memory for config page payload
  590. * @config_page_dma:
  591. * @hba_queue_depth: hba request queue depth
  592. * @sge_size: sg element size for either 32/64 bit
  593. * @scsiio_depth: SCSI_IO queue depth
  594. * @request_sz: per request frame size
  595. * @request: pool of request frames
  596. * @request_dma:
  597. * @request_dma_sz:
  598. * @scsi_lookup: firmware request tracker list
  599. * @scsi_lookup_lock:
  600. * @free_list: free list of request
  601. * @pending_io_count:
  602. * @reset_wq:
  603. * @chain: pool of chains
  604. * @chain_dma:
  605. * @max_sges_in_main_message: number sg elements in main message
  606. * @max_sges_in_chain_message: number sg elements per chain
  607. * @chains_needed_per_io: max chains per io
  608. * @chain_depth: total chains allocated
  609. * @hi_priority_smid:
  610. * @hi_priority:
  611. * @hi_priority_dma:
  612. * @hi_priority_depth:
  613. * @hpr_lookup:
  614. * @hpr_free_list:
  615. * @internal_smid:
  616. * @internal:
  617. * @internal_dma:
  618. * @internal_depth:
  619. * @internal_lookup:
  620. * @internal_free_list:
  621. * @sense: pool of sense
  622. * @sense_dma:
  623. * @sense_dma_pool:
  624. * @reply_depth: hba reply queue depth:
  625. * @reply_sz: per reply frame size:
  626. * @reply: pool of replys:
  627. * @reply_dma:
  628. * @reply_dma_pool:
  629. * @reply_free_queue_depth: reply free depth
  630. * @reply_free: pool for reply free queue (32 bit addr)
  631. * @reply_free_dma:
  632. * @reply_free_dma_pool:
  633. * @reply_free_host_index: tail index in pool to insert free replys
  634. * @reply_post_queue_depth: reply post queue depth
  635. * @reply_post_free: pool for reply post (64bit descriptor)
  636. * @reply_post_free_dma:
  637. * @reply_queue_count: number of reply queue's
  638. * @reply_queue_list: link list contaning the reply queue info
  639. * @reply_post_host_index: head index in the pool where FW completes IO
  640. * @delayed_tr_list: target reset link list
  641. * @delayed_tr_volume_list: volume target reset link list
  642. */
  643. struct MPT3SAS_ADAPTER {
  644. struct list_head list;
  645. struct Scsi_Host *shost;
  646. u8 id;
  647. int cpu_count;
  648. char name[MPT_NAME_LENGTH];
  649. char tmp_string[MPT_STRING_LENGTH];
  650. struct pci_dev *pdev;
  651. Mpi2SystemInterfaceRegs_t __iomem *chip;
  652. resource_size_t chip_phys;
  653. int logging_level;
  654. int fwfault_debug;
  655. u8 ir_firmware;
  656. int bars;
  657. u8 mask_interrupts;
  658. /* fw fault handler */
  659. char fault_reset_work_q_name[20];
  660. struct workqueue_struct *fault_reset_work_q;
  661. struct delayed_work fault_reset_work;
  662. /* fw event handler */
  663. char firmware_event_name[20];
  664. struct workqueue_struct *firmware_event_thread;
  665. spinlock_t fw_event_lock;
  666. struct list_head fw_event_list;
  667. /* misc flags */
  668. int aen_event_read_flag;
  669. u8 broadcast_aen_busy;
  670. u16 broadcast_aen_pending;
  671. u8 shost_recovery;
  672. struct mutex reset_in_progress_mutex;
  673. spinlock_t ioc_reset_in_progress_lock;
  674. u8 ioc_link_reset_in_progress;
  675. u8 ioc_reset_in_progress_status;
  676. u8 ignore_loginfos;
  677. u8 remove_host;
  678. u8 pci_error_recovery;
  679. u8 wait_for_discovery_to_complete;
  680. u8 is_driver_loading;
  681. u8 port_enable_failed;
  682. u8 start_scan;
  683. u16 start_scan_failed;
  684. u8 msix_enable;
  685. u16 msix_vector_count;
  686. u8 *cpu_msix_table;
  687. u16 cpu_msix_table_sz;
  688. u32 ioc_reset_count;
  689. MPT3SAS_FLUSH_RUNNING_CMDS schedule_dead_ioc_flush_running_cmds;
  690. /* internal commands, callback index */
  691. u8 scsi_io_cb_idx;
  692. u8 tm_cb_idx;
  693. u8 transport_cb_idx;
  694. u8 scsih_cb_idx;
  695. u8 ctl_cb_idx;
  696. u8 base_cb_idx;
  697. u8 port_enable_cb_idx;
  698. u8 config_cb_idx;
  699. u8 tm_tr_cb_idx;
  700. u8 tm_tr_volume_cb_idx;
  701. u8 tm_sas_control_cb_idx;
  702. struct _internal_cmd base_cmds;
  703. struct _internal_cmd port_enable_cmds;
  704. struct _internal_cmd transport_cmds;
  705. struct _internal_cmd scsih_cmds;
  706. struct _internal_cmd tm_cmds;
  707. struct _internal_cmd ctl_cmds;
  708. struct _internal_cmd config_cmds;
  709. MPT_ADD_SGE base_add_sg_single;
  710. /* function ptr for either IEEE or MPI sg elements */
  711. MPT_BUILD_SG_SCMD build_sg_scmd;
  712. MPT_BUILD_SG build_sg;
  713. MPT_BUILD_ZERO_LEN_SGE build_zero_len_sge;
  714. u8 mpi25;
  715. u16 sge_size_ieee;
  716. /* function ptr for MPI sg elements only */
  717. MPT_BUILD_SG build_sg_mpi;
  718. MPT_BUILD_ZERO_LEN_SGE build_zero_len_sge_mpi;
  719. /* event log */
  720. u32 event_type[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS];
  721. u32 event_context;
  722. void *event_log;
  723. u32 event_masks[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS];
  724. /* static config pages */
  725. struct mpt3sas_facts facts;
  726. struct mpt3sas_port_facts *pfacts;
  727. Mpi2ManufacturingPage0_t manu_pg0;
  728. struct Mpi2ManufacturingPage10_t manu_pg10;
  729. struct Mpi2ManufacturingPage11_t manu_pg11;
  730. Mpi2BiosPage2_t bios_pg2;
  731. Mpi2BiosPage3_t bios_pg3;
  732. Mpi2IOCPage8_t ioc_pg8;
  733. Mpi2IOUnitPage0_t iounit_pg0;
  734. Mpi2IOUnitPage1_t iounit_pg1;
  735. struct _boot_device req_boot_device;
  736. struct _boot_device req_alt_boot_device;
  737. struct _boot_device current_boot_device;
  738. /* sas hba, expander, and device list */
  739. struct _sas_node sas_hba;
  740. struct list_head sas_expander_list;
  741. spinlock_t sas_node_lock;
  742. struct list_head sas_device_list;
  743. struct list_head sas_device_init_list;
  744. spinlock_t sas_device_lock;
  745. struct list_head raid_device_list;
  746. spinlock_t raid_device_lock;
  747. u8 io_missing_delay;
  748. u16 device_missing_delay;
  749. int sas_id;
  750. void *blocking_handles;
  751. void *pd_handles;
  752. u16 pd_handles_sz;
  753. /* config page */
  754. u16 config_page_sz;
  755. void *config_page;
  756. dma_addr_t config_page_dma;
  757. /* scsiio request */
  758. u16 hba_queue_depth;
  759. u16 sge_size;
  760. u16 scsiio_depth;
  761. u16 request_sz;
  762. u8 *request;
  763. dma_addr_t request_dma;
  764. u32 request_dma_sz;
  765. struct scsiio_tracker *scsi_lookup;
  766. ulong scsi_lookup_pages;
  767. spinlock_t scsi_lookup_lock;
  768. struct list_head free_list;
  769. int pending_io_count;
  770. wait_queue_head_t reset_wq;
  771. /* chain */
  772. struct chain_tracker *chain_lookup;
  773. struct list_head free_chain_list;
  774. struct dma_pool *chain_dma_pool;
  775. ulong chain_pages;
  776. u16 max_sges_in_main_message;
  777. u16 max_sges_in_chain_message;
  778. u16 chains_needed_per_io;
  779. u32 chain_depth;
  780. /* hi-priority queue */
  781. u16 hi_priority_smid;
  782. u8 *hi_priority;
  783. dma_addr_t hi_priority_dma;
  784. u16 hi_priority_depth;
  785. struct request_tracker *hpr_lookup;
  786. struct list_head hpr_free_list;
  787. /* internal queue */
  788. u16 internal_smid;
  789. u8 *internal;
  790. dma_addr_t internal_dma;
  791. u16 internal_depth;
  792. struct request_tracker *internal_lookup;
  793. struct list_head internal_free_list;
  794. /* sense */
  795. u8 *sense;
  796. dma_addr_t sense_dma;
  797. struct dma_pool *sense_dma_pool;
  798. /* reply */
  799. u16 reply_sz;
  800. u8 *reply;
  801. dma_addr_t reply_dma;
  802. u32 reply_dma_max_address;
  803. u32 reply_dma_min_address;
  804. struct dma_pool *reply_dma_pool;
  805. /* reply free queue */
  806. u16 reply_free_queue_depth;
  807. __le32 *reply_free;
  808. dma_addr_t reply_free_dma;
  809. struct dma_pool *reply_free_dma_pool;
  810. u32 reply_free_host_index;
  811. /* reply post queue */
  812. u16 reply_post_queue_depth;
  813. Mpi2ReplyDescriptorsUnion_t *reply_post_free;
  814. dma_addr_t reply_post_free_dma;
  815. struct dma_pool *reply_post_free_dma_pool;
  816. u8 reply_queue_count;
  817. struct list_head reply_queue_list;
  818. struct list_head delayed_tr_list;
  819. struct list_head delayed_tr_volume_list;
  820. /* diag buffer support */
  821. u8 *diag_buffer[MPI2_DIAG_BUF_TYPE_COUNT];
  822. u32 diag_buffer_sz[MPI2_DIAG_BUF_TYPE_COUNT];
  823. dma_addr_t diag_buffer_dma[MPI2_DIAG_BUF_TYPE_COUNT];
  824. u8 diag_buffer_status[MPI2_DIAG_BUF_TYPE_COUNT];
  825. u32 unique_id[MPI2_DIAG_BUF_TYPE_COUNT];
  826. u32 product_specific[MPI2_DIAG_BUF_TYPE_COUNT][23];
  827. u32 diagnostic_flags[MPI2_DIAG_BUF_TYPE_COUNT];
  828. u32 ring_buffer_offset;
  829. u32 ring_buffer_sz;
  830. spinlock_t diag_trigger_lock;
  831. u8 diag_trigger_active;
  832. struct SL_WH_MASTER_TRIGGER_T diag_trigger_master;
  833. struct SL_WH_EVENT_TRIGGERS_T diag_trigger_event;
  834. struct SL_WH_SCSI_TRIGGERS_T diag_trigger_scsi;
  835. struct SL_WH_MPI_TRIGGERS_T diag_trigger_mpi;
  836. };
  837. typedef u8 (*MPT_CALLBACK)(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
  838. u32 reply);
  839. /* base shared API */
  840. extern struct list_head mpt3sas_ioc_list;
  841. void mpt3sas_base_start_watchdog(struct MPT3SAS_ADAPTER *ioc);
  842. void mpt3sas_base_stop_watchdog(struct MPT3SAS_ADAPTER *ioc);
  843. int mpt3sas_base_attach(struct MPT3SAS_ADAPTER *ioc);
  844. void mpt3sas_base_detach(struct MPT3SAS_ADAPTER *ioc);
  845. int mpt3sas_base_map_resources(struct MPT3SAS_ADAPTER *ioc);
  846. void mpt3sas_base_free_resources(struct MPT3SAS_ADAPTER *ioc);
  847. int mpt3sas_base_hard_reset_handler(struct MPT3SAS_ADAPTER *ioc, int sleep_flag,
  848. enum reset_type type);
  849. void *mpt3sas_base_get_msg_frame(struct MPT3SAS_ADAPTER *ioc, u16 smid);
  850. void *mpt3sas_base_get_sense_buffer(struct MPT3SAS_ADAPTER *ioc, u16 smid);
  851. __le32 mpt3sas_base_get_sense_buffer_dma(struct MPT3SAS_ADAPTER *ioc,
  852. u16 smid);
  853. void mpt3sas_base_flush_reply_queues(struct MPT3SAS_ADAPTER *ioc);
  854. /* hi-priority queue */
  855. u16 mpt3sas_base_get_smid_hpr(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx);
  856. u16 mpt3sas_base_get_smid_scsiio(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx,
  857. struct scsi_cmnd *scmd);
  858. u16 mpt3sas_base_get_smid(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx);
  859. void mpt3sas_base_free_smid(struct MPT3SAS_ADAPTER *ioc, u16 smid);
  860. void mpt3sas_base_put_smid_scsi_io(struct MPT3SAS_ADAPTER *ioc, u16 smid,
  861. u16 handle);
  862. void mpt3sas_base_put_smid_fast_path(struct MPT3SAS_ADAPTER *ioc, u16 smid,
  863. u16 handle);
  864. void mpt3sas_base_put_smid_hi_priority(struct MPT3SAS_ADAPTER *ioc, u16 smid);
  865. void mpt3sas_base_put_smid_default(struct MPT3SAS_ADAPTER *ioc, u16 smid);
  866. void mpt3sas_base_initialize_callback_handler(void);
  867. u8 mpt3sas_base_register_callback_handler(MPT_CALLBACK cb_func);
  868. void mpt3sas_base_release_callback_handler(u8 cb_idx);
  869. u8 mpt3sas_base_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
  870. u32 reply);
  871. u8 mpt3sas_port_enable_done(struct MPT3SAS_ADAPTER *ioc, u16 smid,
  872. u8 msix_index, u32 reply);
  873. void *mpt3sas_base_get_reply_virt_addr(struct MPT3SAS_ADAPTER *ioc,
  874. u32 phys_addr);
  875. u32 mpt3sas_base_get_iocstate(struct MPT3SAS_ADAPTER *ioc, int cooked);
  876. void mpt3sas_base_fault_info(struct MPT3SAS_ADAPTER *ioc , u16 fault_code);
  877. int mpt3sas_base_sas_iounit_control(struct MPT3SAS_ADAPTER *ioc,
  878. Mpi2SasIoUnitControlReply_t *mpi_reply,
  879. Mpi2SasIoUnitControlRequest_t *mpi_request);
  880. int mpt3sas_base_scsi_enclosure_processor(struct MPT3SAS_ADAPTER *ioc,
  881. Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request);
  882. void mpt3sas_base_validate_event_type(struct MPT3SAS_ADAPTER *ioc,
  883. u32 *event_type);
  884. void mpt3sas_halt_firmware(struct MPT3SAS_ADAPTER *ioc);
  885. void mpt3sas_base_update_missing_delay(struct MPT3SAS_ADAPTER *ioc,
  886. u16 device_missing_delay, u8 io_missing_delay);
  887. int mpt3sas_port_enable(struct MPT3SAS_ADAPTER *ioc);
  888. /* scsih shared API */
  889. u8 mpt3sas_scsih_event_callback(struct MPT3SAS_ADAPTER *ioc, u8 msix_index,
  890. u32 reply);
  891. void mpt3sas_scsih_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase);
  892. int mpt3sas_scsih_issue_tm(struct MPT3SAS_ADAPTER *ioc, u16 handle,
  893. uint channel, uint id, uint lun, u8 type, u16 smid_task,
  894. ulong timeout, unsigned long serial_number, enum mutex_type m_type);
  895. void mpt3sas_scsih_set_tm_flag(struct MPT3SAS_ADAPTER *ioc, u16 handle);
  896. void mpt3sas_scsih_clear_tm_flag(struct MPT3SAS_ADAPTER *ioc, u16 handle);
  897. void mpt3sas_expander_remove(struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
  898. void mpt3sas_device_remove_by_sas_address(struct MPT3SAS_ADAPTER *ioc,
  899. u64 sas_address);
  900. struct _sas_node *mpt3sas_scsih_expander_find_by_handle(
  901. struct MPT3SAS_ADAPTER *ioc, u16 handle);
  902. struct _sas_node *mpt3sas_scsih_expander_find_by_sas_address(
  903. struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
  904. struct _sas_device *mpt3sas_scsih_sas_device_find_by_sas_address(
  905. struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
  906. void mpt3sas_port_enable_complete(struct MPT3SAS_ADAPTER *ioc);
  907. /* config shared API */
  908. u8 mpt3sas_config_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
  909. u32 reply);
  910. int mpt3sas_config_get_number_hba_phys(struct MPT3SAS_ADAPTER *ioc,
  911. u8 *num_phys);
  912. int mpt3sas_config_get_manufacturing_pg0(struct MPT3SAS_ADAPTER *ioc,
  913. Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage0_t *config_page);
  914. int mpt3sas_config_get_manufacturing_pg7(struct MPT3SAS_ADAPTER *ioc,
  915. Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage7_t *config_page,
  916. u16 sz);
  917. int mpt3sas_config_get_manufacturing_pg10(struct MPT3SAS_ADAPTER *ioc,
  918. Mpi2ConfigReply_t *mpi_reply,
  919. struct Mpi2ManufacturingPage10_t *config_page);
  920. int mpt3sas_config_get_manufacturing_pg11(struct MPT3SAS_ADAPTER *ioc,
  921. Mpi2ConfigReply_t *mpi_reply,
  922. struct Mpi2ManufacturingPage11_t *config_page);
  923. int mpt3sas_config_set_manufacturing_pg11(struct MPT3SAS_ADAPTER *ioc,
  924. Mpi2ConfigReply_t *mpi_reply,
  925. struct Mpi2ManufacturingPage11_t *config_page);
  926. int mpt3sas_config_get_bios_pg2(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  927. *mpi_reply, Mpi2BiosPage2_t *config_page);
  928. int mpt3sas_config_get_bios_pg3(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  929. *mpi_reply, Mpi2BiosPage3_t *config_page);
  930. int mpt3sas_config_get_iounit_pg0(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  931. *mpi_reply, Mpi2IOUnitPage0_t *config_page);
  932. int mpt3sas_config_get_sas_device_pg0(struct MPT3SAS_ADAPTER *ioc,
  933. Mpi2ConfigReply_t *mpi_reply, Mpi2SasDevicePage0_t *config_page,
  934. u32 form, u32 handle);
  935. int mpt3sas_config_get_sas_device_pg1(struct MPT3SAS_ADAPTER *ioc,
  936. Mpi2ConfigReply_t *mpi_reply, Mpi2SasDevicePage1_t *config_page,
  937. u32 form, u32 handle);
  938. int mpt3sas_config_get_sas_iounit_pg0(struct MPT3SAS_ADAPTER *ioc,
  939. Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage0_t *config_page,
  940. u16 sz);
  941. int mpt3sas_config_get_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  942. *mpi_reply, Mpi2IOUnitPage1_t *config_page);
  943. int mpt3sas_config_set_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  944. *mpi_reply, Mpi2IOUnitPage1_t *config_page);
  945. int mpt3sas_config_get_sas_iounit_pg1(struct MPT3SAS_ADAPTER *ioc,
  946. Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page,
  947. u16 sz);
  948. int mpt3sas_config_set_sas_iounit_pg1(struct MPT3SAS_ADAPTER *ioc,
  949. Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page,
  950. u16 sz);
  951. int mpt3sas_config_get_ioc_pg8(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  952. *mpi_reply, Mpi2IOCPage8_t *config_page);
  953. int mpt3sas_config_get_expander_pg0(struct MPT3SAS_ADAPTER *ioc,
  954. Mpi2ConfigReply_t *mpi_reply, Mpi2ExpanderPage0_t *config_page,
  955. u32 form, u32 handle);
  956. int mpt3sas_config_get_expander_pg1(struct MPT3SAS_ADAPTER *ioc,
  957. Mpi2ConfigReply_t *mpi_reply, Mpi2ExpanderPage1_t *config_page,
  958. u32 phy_number, u16 handle);
  959. int mpt3sas_config_get_enclosure_pg0(struct MPT3SAS_ADAPTER *ioc,
  960. Mpi2ConfigReply_t *mpi_reply, Mpi2SasEnclosurePage0_t *config_page,
  961. u32 form, u32 handle);
  962. int mpt3sas_config_get_phy_pg0(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  963. *mpi_reply, Mpi2SasPhyPage0_t *config_page, u32 phy_number);
  964. int mpt3sas_config_get_phy_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
  965. *mpi_reply, Mpi2SasPhyPage1_t *config_page, u32 phy_number);
  966. int mpt3sas_config_get_raid_volume_pg1(struct MPT3SAS_ADAPTER *ioc,
  967. Mpi2ConfigReply_t *mpi_reply, Mpi2RaidVolPage1_t *config_page, u32 form,
  968. u32 handle);
  969. int mpt3sas_config_get_number_pds(struct MPT3SAS_ADAPTER *ioc, u16 handle,
  970. u8 *num_pds);
  971. int mpt3sas_config_get_raid_volume_pg0(struct MPT3SAS_ADAPTER *ioc,
  972. Mpi2ConfigReply_t *mpi_reply, Mpi2RaidVolPage0_t *config_page, u32 form,
  973. u32 handle, u16 sz);
  974. int mpt3sas_config_get_phys_disk_pg0(struct MPT3SAS_ADAPTER *ioc,
  975. Mpi2ConfigReply_t *mpi_reply, Mpi2RaidPhysDiskPage0_t *config_page,
  976. u32 form, u32 form_specific);
  977. int mpt3sas_config_get_volume_handle(struct MPT3SAS_ADAPTER *ioc, u16 pd_handle,
  978. u16 *volume_handle);
  979. int mpt3sas_config_get_volume_wwid(struct MPT3SAS_ADAPTER *ioc,
  980. u16 volume_handle, u64 *wwid);
  981. /* ctl shared API */
  982. extern struct device_attribute *mpt3sas_host_attrs[];
  983. extern struct device_attribute *mpt3sas_dev_attrs[];
  984. void mpt3sas_ctl_init(void);
  985. void mpt3sas_ctl_exit(void);
  986. u8 mpt3sas_ctl_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
  987. u32 reply);
  988. void mpt3sas_ctl_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase);
  989. u8 mpt3sas_ctl_event_callback(struct MPT3SAS_ADAPTER *ioc,
  990. u8 msix_index, u32 reply);
  991. void mpt3sas_ctl_add_to_event_log(struct MPT3SAS_ADAPTER *ioc,
  992. Mpi2EventNotificationReply_t *mpi_reply);
  993. void mpt3sas_enable_diag_buffer(struct MPT3SAS_ADAPTER *ioc,
  994. u8 bits_to_regsiter);
  995. int mpt3sas_send_diag_release(struct MPT3SAS_ADAPTER *ioc, u8 buffer_type,
  996. u8 *issue_reset);
  997. /* transport shared API */
  998. u8 mpt3sas_transport_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
  999. u32 reply);
  1000. struct _sas_port *mpt3sas_transport_port_add(struct MPT3SAS_ADAPTER *ioc,
  1001. u16 handle, u64 sas_address);
  1002. void mpt3sas_transport_port_remove(struct MPT3SAS_ADAPTER *ioc, u64 sas_address,
  1003. u64 sas_address_parent);
  1004. int mpt3sas_transport_add_host_phy(struct MPT3SAS_ADAPTER *ioc, struct _sas_phy
  1005. *mpt3sas_phy, Mpi2SasPhyPage0_t phy_pg0, struct device *parent_dev);
  1006. int mpt3sas_transport_add_expander_phy(struct MPT3SAS_ADAPTER *ioc,
  1007. struct _sas_phy *mpt3sas_phy, Mpi2ExpanderPage1_t expander_pg1,
  1008. struct device *parent_dev);
  1009. void mpt3sas_transport_update_links(struct MPT3SAS_ADAPTER *ioc,
  1010. u64 sas_address, u16 handle, u8 phy_number, u8 link_rate);
  1011. extern struct sas_function_template mpt3sas_transport_functions;
  1012. extern struct scsi_transport_template *mpt3sas_transport_template;
  1013. extern int scsi_internal_device_block(struct scsi_device *sdev);
  1014. extern int scsi_internal_device_unblock(struct scsi_device *sdev,
  1015. enum scsi_device_state new_state);
  1016. /* trigger data externs */
  1017. void mpt3sas_send_trigger_data_event(struct MPT3SAS_ADAPTER *ioc,
  1018. struct SL_WH_TRIGGERS_EVENT_DATA_T *event_data);
  1019. void mpt3sas_process_trigger_data(struct MPT3SAS_ADAPTER *ioc,
  1020. struct SL_WH_TRIGGERS_EVENT_DATA_T *event_data);
  1021. void mpt3sas_trigger_master(struct MPT3SAS_ADAPTER *ioc,
  1022. u32 tigger_bitmask);
  1023. void mpt3sas_trigger_event(struct MPT3SAS_ADAPTER *ioc, u16 event,
  1024. u16 log_entry_qualifier);
  1025. void mpt3sas_trigger_scsi(struct MPT3SAS_ADAPTER *ioc, u8 sense_key,
  1026. u8 asc, u8 ascq);
  1027. void mpt3sas_trigger_mpi(struct MPT3SAS_ADAPTER *ioc, u16 ioc_status,
  1028. u32 loginfo);
  1029. #endif /* MPT3SAS_BASE_H_INCLUDED */