PageRenderTime 95ms CodeModel.GetById 30ms RepoModel.GetById 1ms app.codeStats 1ms

/linux-2.6.21.x/drivers/scsi/ipr.c

https://bitbucket.org/altlc/wive-rtnl-ralink-rt305x-routers-firmware-amod
C | 7617 lines | 4767 code | 1002 blank | 1848 comment | 609 complexity | 01c35d6800260896eda7cec5504a6dec MD5 | raw file
Possible License(s): CC-BY-SA-3.0, BSD-3-Clause, MPL-2.0-no-copyleft-exception, GPL-2.0, GPL-3.0, LGPL-3.0, 0BSD, AGPL-1.0, LGPL-2.1, LGPL-2.0
  1. /*
  2. * ipr.c -- driver for IBM Power Linux RAID adapters
  3. *
  4. * Written By: Brian King <brking@us.ibm.com>, IBM Corporation
  5. *
  6. * Copyright (C) 2003, 2004 IBM Corporation
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. /*
  24. * Notes:
  25. *
  26. * This driver is used to control the following SCSI adapters:
  27. *
  28. * IBM iSeries: 5702, 5703, 2780, 5709, 570A, 570B
  29. *
  30. * IBM pSeries: PCI-X Dual Channel Ultra 320 SCSI RAID Adapter
  31. * PCI-X Dual Channel Ultra 320 SCSI Adapter
  32. * PCI-X Dual Channel Ultra 320 SCSI RAID Enablement Card
  33. * Embedded SCSI adapter on p615 and p655 systems
  34. *
  35. * Supported Hardware Features:
  36. * - Ultra 320 SCSI controller
  37. * - PCI-X host interface
  38. * - Embedded PowerPC RISC Processor and Hardware XOR DMA Engine
  39. * - Non-Volatile Write Cache
  40. * - Supports attachment of non-RAID disks, tape, and optical devices
  41. * - RAID Levels 0, 5, 10
  42. * - Hot spare
  43. * - Background Parity Checking
  44. * - Background Data Scrubbing
  45. * - Ability to increase the capacity of an existing RAID 5 disk array
  46. * by adding disks
  47. *
  48. * Driver Features:
  49. * - Tagged command queuing
  50. * - Adapter microcode download
  51. * - PCI hot plug
  52. * - SCSI device hot plug
  53. *
  54. */
  55. #include <linux/fs.h>
  56. #include <linux/init.h>
  57. #include <linux/types.h>
  58. #include <linux/errno.h>
  59. #include <linux/kernel.h>
  60. #include <linux/ioport.h>
  61. #include <linux/delay.h>
  62. #include <linux/pci.h>
  63. #include <linux/wait.h>
  64. #include <linux/spinlock.h>
  65. #include <linux/sched.h>
  66. #include <linux/interrupt.h>
  67. #include <linux/blkdev.h>
  68. #include <linux/firmware.h>
  69. #include <linux/module.h>
  70. #include <linux/moduleparam.h>
  71. #include <linux/libata.h>
  72. #include <asm/io.h>
  73. #include <asm/irq.h>
  74. #include <asm/processor.h>
  75. #include <scsi/scsi.h>
  76. #include <scsi/scsi_host.h>
  77. #include <scsi/scsi_tcq.h>
  78. #include <scsi/scsi_eh.h>
  79. #include <scsi/scsi_cmnd.h>
  80. #include "ipr.h"
  81. /*
  82. * Global Data
  83. */
  84. static struct list_head ipr_ioa_head = LIST_HEAD_INIT(ipr_ioa_head);
  85. static unsigned int ipr_log_level = IPR_DEFAULT_LOG_LEVEL;
  86. static unsigned int ipr_max_speed = 1;
  87. static int ipr_testmode = 0;
  88. static unsigned int ipr_fastfail = 0;
  89. static unsigned int ipr_transop_timeout = IPR_OPERATIONAL_TIMEOUT;
  90. static unsigned int ipr_enable_cache = 1;
  91. static unsigned int ipr_debug = 0;
  92. static int ipr_auto_create = 1;
  93. static DEFINE_SPINLOCK(ipr_driver_lock);
  94. /* This table describes the differences between DMA controller chips */
  95. static const struct ipr_chip_cfg_t ipr_chip_cfg[] = {
  96. { /* Gemstone, Citrine, Obsidian, and Obsidian-E */
  97. .mailbox = 0x0042C,
  98. .cache_line_size = 0x20,
  99. {
  100. .set_interrupt_mask_reg = 0x0022C,
  101. .clr_interrupt_mask_reg = 0x00230,
  102. .sense_interrupt_mask_reg = 0x0022C,
  103. .clr_interrupt_reg = 0x00228,
  104. .sense_interrupt_reg = 0x00224,
  105. .ioarrin_reg = 0x00404,
  106. .sense_uproc_interrupt_reg = 0x00214,
  107. .set_uproc_interrupt_reg = 0x00214,
  108. .clr_uproc_interrupt_reg = 0x00218
  109. }
  110. },
  111. { /* Snipe and Scamp */
  112. .mailbox = 0x0052C,
  113. .cache_line_size = 0x20,
  114. {
  115. .set_interrupt_mask_reg = 0x00288,
  116. .clr_interrupt_mask_reg = 0x0028C,
  117. .sense_interrupt_mask_reg = 0x00288,
  118. .clr_interrupt_reg = 0x00284,
  119. .sense_interrupt_reg = 0x00280,
  120. .ioarrin_reg = 0x00504,
  121. .sense_uproc_interrupt_reg = 0x00290,
  122. .set_uproc_interrupt_reg = 0x00290,
  123. .clr_uproc_interrupt_reg = 0x00294
  124. }
  125. },
  126. };
  127. static const struct ipr_chip_t ipr_chip[] = {
  128. { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE, &ipr_chip_cfg[0] },
  129. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE, &ipr_chip_cfg[0] },
  130. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN, &ipr_chip_cfg[0] },
  131. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, &ipr_chip_cfg[0] },
  132. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E, &ipr_chip_cfg[0] },
  133. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE, &ipr_chip_cfg[1] },
  134. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP, &ipr_chip_cfg[1] }
  135. };
  136. static int ipr_max_bus_speeds [] = {
  137. IPR_80MBs_SCSI_RATE, IPR_U160_SCSI_RATE, IPR_U320_SCSI_RATE
  138. };
  139. MODULE_AUTHOR("Brian King <brking@us.ibm.com>");
  140. MODULE_DESCRIPTION("IBM Power RAID SCSI Adapter Driver");
  141. module_param_named(max_speed, ipr_max_speed, uint, 0);
  142. MODULE_PARM_DESC(max_speed, "Maximum bus speed (0-2). Default: 1=U160. Speeds: 0=80 MB/s, 1=U160, 2=U320");
  143. module_param_named(log_level, ipr_log_level, uint, 0);
  144. MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver");
  145. module_param_named(testmode, ipr_testmode, int, 0);
  146. MODULE_PARM_DESC(testmode, "DANGEROUS!!! Allows unsupported configurations");
  147. module_param_named(fastfail, ipr_fastfail, int, 0);
  148. MODULE_PARM_DESC(fastfail, "Reduce timeouts and retries");
  149. module_param_named(transop_timeout, ipr_transop_timeout, int, 0);
  150. MODULE_PARM_DESC(transop_timeout, "Time in seconds to wait for adapter to come operational (default: 300)");
  151. module_param_named(enable_cache, ipr_enable_cache, int, 0);
  152. MODULE_PARM_DESC(enable_cache, "Enable adapter's non-volatile write cache (default: 1)");
  153. module_param_named(debug, ipr_debug, int, 0);
  154. MODULE_PARM_DESC(debug, "Enable device driver debugging logging. Set to 1 to enable. (default: 0)");
  155. module_param_named(auto_create, ipr_auto_create, int, 0);
  156. MODULE_PARM_DESC(auto_create, "Auto-create single device RAID 0 arrays when initialized (default: 1)");
  157. MODULE_LICENSE("GPL");
  158. MODULE_VERSION(IPR_DRIVER_VERSION);
  159. /* A constant array of IOASCs/URCs/Error Messages */
  160. static const
  161. struct ipr_error_table_t ipr_error_table[] = {
  162. {0x00000000, 1, 1,
  163. "8155: An unknown error was received"},
  164. {0x00330000, 0, 0,
  165. "Soft underlength error"},
  166. {0x005A0000, 0, 0,
  167. "Command to be cancelled not found"},
  168. {0x00808000, 0, 0,
  169. "Qualified success"},
  170. {0x01080000, 1, 1,
  171. "FFFE: Soft device bus error recovered by the IOA"},
  172. {0x01088100, 0, 1,
  173. "4101: Soft device bus fabric error"},
  174. {0x01170600, 0, 1,
  175. "FFF9: Device sector reassign successful"},
  176. {0x01170900, 0, 1,
  177. "FFF7: Media error recovered by device rewrite procedures"},
  178. {0x01180200, 0, 1,
  179. "7001: IOA sector reassignment successful"},
  180. {0x01180500, 0, 1,
  181. "FFF9: Soft media error. Sector reassignment recommended"},
  182. {0x01180600, 0, 1,
  183. "FFF7: Media error recovered by IOA rewrite procedures"},
  184. {0x01418000, 0, 1,
  185. "FF3D: Soft PCI bus error recovered by the IOA"},
  186. {0x01440000, 1, 1,
  187. "FFF6: Device hardware error recovered by the IOA"},
  188. {0x01448100, 0, 1,
  189. "FFF6: Device hardware error recovered by the device"},
  190. {0x01448200, 1, 1,
  191. "FF3D: Soft IOA error recovered by the IOA"},
  192. {0x01448300, 0, 1,
  193. "FFFA: Undefined device response recovered by the IOA"},
  194. {0x014A0000, 1, 1,
  195. "FFF6: Device bus error, message or command phase"},
  196. {0x014A8000, 0, 1,
  197. "FFFE: Task Management Function failed"},
  198. {0x015D0000, 0, 1,
  199. "FFF6: Failure prediction threshold exceeded"},
  200. {0x015D9200, 0, 1,
  201. "8009: Impending cache battery pack failure"},
  202. {0x02040400, 0, 0,
  203. "34FF: Disk device format in progress"},
  204. {0x023F0000, 0, 0,
  205. "Synchronization required"},
  206. {0x024E0000, 0, 0,
  207. "No ready, IOA shutdown"},
  208. {0x025A0000, 0, 0,
  209. "Not ready, IOA has been shutdown"},
  210. {0x02670100, 0, 1,
  211. "3020: Storage subsystem configuration error"},
  212. {0x03110B00, 0, 0,
  213. "FFF5: Medium error, data unreadable, recommend reassign"},
  214. {0x03110C00, 0, 0,
  215. "7000: Medium error, data unreadable, do not reassign"},
  216. {0x03310000, 0, 1,
  217. "FFF3: Disk media format bad"},
  218. {0x04050000, 0, 1,
  219. "3002: Addressed device failed to respond to selection"},
  220. {0x04080000, 1, 1,
  221. "3100: Device bus error"},
  222. {0x04080100, 0, 1,
  223. "3109: IOA timed out a device command"},
  224. {0x04088000, 0, 0,
  225. "3120: SCSI bus is not operational"},
  226. {0x04088100, 0, 1,
  227. "4100: Hard device bus fabric error"},
  228. {0x04118000, 0, 1,
  229. "9000: IOA reserved area data check"},
  230. {0x04118100, 0, 1,
  231. "9001: IOA reserved area invalid data pattern"},
  232. {0x04118200, 0, 1,
  233. "9002: IOA reserved area LRC error"},
  234. {0x04320000, 0, 1,
  235. "102E: Out of alternate sectors for disk storage"},
  236. {0x04330000, 1, 1,
  237. "FFF4: Data transfer underlength error"},
  238. {0x04338000, 1, 1,
  239. "FFF4: Data transfer overlength error"},
  240. {0x043E0100, 0, 1,
  241. "3400: Logical unit failure"},
  242. {0x04408500, 0, 1,
  243. "FFF4: Device microcode is corrupt"},
  244. {0x04418000, 1, 1,
  245. "8150: PCI bus error"},
  246. {0x04430000, 1, 0,
  247. "Unsupported device bus message received"},
  248. {0x04440000, 1, 1,
  249. "FFF4: Disk device problem"},
  250. {0x04448200, 1, 1,
  251. "8150: Permanent IOA failure"},
  252. {0x04448300, 0, 1,
  253. "3010: Disk device returned wrong response to IOA"},
  254. {0x04448400, 0, 1,
  255. "8151: IOA microcode error"},
  256. {0x04448500, 0, 0,
  257. "Device bus status error"},
  258. {0x04448600, 0, 1,
  259. "8157: IOA error requiring IOA reset to recover"},
  260. {0x04448700, 0, 0,
  261. "ATA device status error"},
  262. {0x04490000, 0, 0,
  263. "Message reject received from the device"},
  264. {0x04449200, 0, 1,
  265. "8008: A permanent cache battery pack failure occurred"},
  266. {0x0444A000, 0, 1,
  267. "9090: Disk unit has been modified after the last known status"},
  268. {0x0444A200, 0, 1,
  269. "9081: IOA detected device error"},
  270. {0x0444A300, 0, 1,
  271. "9082: IOA detected device error"},
  272. {0x044A0000, 1, 1,
  273. "3110: Device bus error, message or command phase"},
  274. {0x044A8000, 1, 1,
  275. "3110: SAS Command / Task Management Function failed"},
  276. {0x04670400, 0, 1,
  277. "9091: Incorrect hardware configuration change has been detected"},
  278. {0x04678000, 0, 1,
  279. "9073: Invalid multi-adapter configuration"},
  280. {0x04678100, 0, 1,
  281. "4010: Incorrect connection between cascaded expanders"},
  282. {0x04678200, 0, 1,
  283. "4020: Connections exceed IOA design limits"},
  284. {0x04678300, 0, 1,
  285. "4030: Incorrect multipath connection"},
  286. {0x04679000, 0, 1,
  287. "4110: Unsupported enclosure function"},
  288. {0x046E0000, 0, 1,
  289. "FFF4: Command to logical unit failed"},
  290. {0x05240000, 1, 0,
  291. "Illegal request, invalid request type or request packet"},
  292. {0x05250000, 0, 0,
  293. "Illegal request, invalid resource handle"},
  294. {0x05258000, 0, 0,
  295. "Illegal request, commands not allowed to this device"},
  296. {0x05258100, 0, 0,
  297. "Illegal request, command not allowed to a secondary adapter"},
  298. {0x05260000, 0, 0,
  299. "Illegal request, invalid field in parameter list"},
  300. {0x05260100, 0, 0,
  301. "Illegal request, parameter not supported"},
  302. {0x05260200, 0, 0,
  303. "Illegal request, parameter value invalid"},
  304. {0x052C0000, 0, 0,
  305. "Illegal request, command sequence error"},
  306. {0x052C8000, 1, 0,
  307. "Illegal request, dual adapter support not enabled"},
  308. {0x06040500, 0, 1,
  309. "9031: Array protection temporarily suspended, protection resuming"},
  310. {0x06040600, 0, 1,
  311. "9040: Array protection temporarily suspended, protection resuming"},
  312. {0x06288000, 0, 1,
  313. "3140: Device bus not ready to ready transition"},
  314. {0x06290000, 0, 1,
  315. "FFFB: SCSI bus was reset"},
  316. {0x06290500, 0, 0,
  317. "FFFE: SCSI bus transition to single ended"},
  318. {0x06290600, 0, 0,
  319. "FFFE: SCSI bus transition to LVD"},
  320. {0x06298000, 0, 1,
  321. "FFFB: SCSI bus was reset by another initiator"},
  322. {0x063F0300, 0, 1,
  323. "3029: A device replacement has occurred"},
  324. {0x064C8000, 0, 1,
  325. "9051: IOA cache data exists for a missing or failed device"},
  326. {0x064C8100, 0, 1,
  327. "9055: Auxiliary cache IOA contains cache data needed by the primary IOA"},
  328. {0x06670100, 0, 1,
  329. "9025: Disk unit is not supported at its physical location"},
  330. {0x06670600, 0, 1,
  331. "3020: IOA detected a SCSI bus configuration error"},
  332. {0x06678000, 0, 1,
  333. "3150: SCSI bus configuration error"},
  334. {0x06678100, 0, 1,
  335. "9074: Asymmetric advanced function disk configuration"},
  336. {0x06678300, 0, 1,
  337. "4040: Incomplete multipath connection between IOA and enclosure"},
  338. {0x06678400, 0, 1,
  339. "4041: Incomplete multipath connection between enclosure and device"},
  340. {0x06678500, 0, 1,
  341. "9075: Incomplete multipath connection between IOA and remote IOA"},
  342. {0x06678600, 0, 1,
  343. "9076: Configuration error, missing remote IOA"},
  344. {0x06679100, 0, 1,
  345. "4050: Enclosure does not support a required multipath function"},
  346. {0x06690200, 0, 1,
  347. "9041: Array protection temporarily suspended"},
  348. {0x06698200, 0, 1,
  349. "9042: Corrupt array parity detected on specified device"},
  350. {0x066B0200, 0, 1,
  351. "9030: Array no longer protected due to missing or failed disk unit"},
  352. {0x066B8000, 0, 1,
  353. "9071: Link operational transition"},
  354. {0x066B8100, 0, 1,
  355. "9072: Link not operational transition"},
  356. {0x066B8200, 0, 1,
  357. "9032: Array exposed but still protected"},
  358. {0x066B9100, 0, 1,
  359. "4061: Multipath redundancy level got better"},
  360. {0x066B9200, 0, 1,
  361. "4060: Multipath redundancy level got worse"},
  362. {0x07270000, 0, 0,
  363. "Failure due to other device"},
  364. {0x07278000, 0, 1,
  365. "9008: IOA does not support functions expected by devices"},
  366. {0x07278100, 0, 1,
  367. "9010: Cache data associated with attached devices cannot be found"},
  368. {0x07278200, 0, 1,
  369. "9011: Cache data belongs to devices other than those attached"},
  370. {0x07278400, 0, 1,
  371. "9020: Array missing 2 or more devices with only 1 device present"},
  372. {0x07278500, 0, 1,
  373. "9021: Array missing 2 or more devices with 2 or more devices present"},
  374. {0x07278600, 0, 1,
  375. "9022: Exposed array is missing a required device"},
  376. {0x07278700, 0, 1,
  377. "9023: Array member(s) not at required physical locations"},
  378. {0x07278800, 0, 1,
  379. "9024: Array not functional due to present hardware configuration"},
  380. {0x07278900, 0, 1,
  381. "9026: Array not functional due to present hardware configuration"},
  382. {0x07278A00, 0, 1,
  383. "9027: Array is missing a device and parity is out of sync"},
  384. {0x07278B00, 0, 1,
  385. "9028: Maximum number of arrays already exist"},
  386. {0x07278C00, 0, 1,
  387. "9050: Required cache data cannot be located for a disk unit"},
  388. {0x07278D00, 0, 1,
  389. "9052: Cache data exists for a device that has been modified"},
  390. {0x07278F00, 0, 1,
  391. "9054: IOA resources not available due to previous problems"},
  392. {0x07279100, 0, 1,
  393. "9092: Disk unit requires initialization before use"},
  394. {0x07279200, 0, 1,
  395. "9029: Incorrect hardware configuration change has been detected"},
  396. {0x07279600, 0, 1,
  397. "9060: One or more disk pairs are missing from an array"},
  398. {0x07279700, 0, 1,
  399. "9061: One or more disks are missing from an array"},
  400. {0x07279800, 0, 1,
  401. "9062: One or more disks are missing from an array"},
  402. {0x07279900, 0, 1,
  403. "9063: Maximum number of functional arrays has been exceeded"},
  404. {0x0B260000, 0, 0,
  405. "Aborted command, invalid descriptor"},
  406. {0x0B5A0000, 0, 0,
  407. "Command terminated by host"}
  408. };
  409. static const struct ipr_ses_table_entry ipr_ses_table[] = {
  410. { "2104-DL1 ", "XXXXXXXXXXXXXXXX", 80 },
  411. { "2104-TL1 ", "XXXXXXXXXXXXXXXX", 80 },
  412. { "HSBP07M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 7 slot */
  413. { "HSBP05M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 5 slot */
  414. { "HSBP05M S U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Bowtie */
  415. { "HSBP06E ASU2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* MartinFenning */
  416. { "2104-DU3 ", "XXXXXXXXXXXXXXXX", 160 },
  417. { "2104-TU3 ", "XXXXXXXXXXXXXXXX", 160 },
  418. { "HSBP04C RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
  419. { "HSBP06E RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
  420. { "St V1S2 ", "XXXXXXXXXXXXXXXX", 160 },
  421. { "HSBPD4M PU3SCSI", "XXXXXXX*XXXXXXXX", 160 },
  422. { "VSBPD1H U3SCSI", "XXXXXXX*XXXXXXXX", 160 }
  423. };
  424. /*
  425. * Function Prototypes
  426. */
  427. static int ipr_reset_alert(struct ipr_cmnd *);
  428. static void ipr_process_ccn(struct ipr_cmnd *);
  429. static void ipr_process_error(struct ipr_cmnd *);
  430. static void ipr_reset_ioa_job(struct ipr_cmnd *);
  431. static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *,
  432. enum ipr_shutdown_type);
  433. #ifdef CONFIG_SCSI_IPR_TRACE
  434. /**
  435. * ipr_trc_hook - Add a trace entry to the driver trace
  436. * @ipr_cmd: ipr command struct
  437. * @type: trace type
  438. * @add_data: additional data
  439. *
  440. * Return value:
  441. * none
  442. **/
  443. static void ipr_trc_hook(struct ipr_cmnd *ipr_cmd,
  444. u8 type, u32 add_data)
  445. {
  446. struct ipr_trace_entry *trace_entry;
  447. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  448. trace_entry = &ioa_cfg->trace[ioa_cfg->trace_index++];
  449. trace_entry->time = jiffies;
  450. trace_entry->op_code = ipr_cmd->ioarcb.cmd_pkt.cdb[0];
  451. trace_entry->type = type;
  452. trace_entry->ata_op_code = ipr_cmd->ioarcb.add_data.u.regs.command;
  453. trace_entry->cmd_index = ipr_cmd->cmd_index & 0xff;
  454. trace_entry->res_handle = ipr_cmd->ioarcb.res_handle;
  455. trace_entry->u.add_data = add_data;
  456. }
  457. #else
  458. #define ipr_trc_hook(ipr_cmd, type, add_data) do { } while(0)
  459. #endif
  460. /**
  461. * ipr_reinit_ipr_cmnd - Re-initialize an IPR Cmnd block for reuse
  462. * @ipr_cmd: ipr command struct
  463. *
  464. * Return value:
  465. * none
  466. **/
  467. static void ipr_reinit_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
  468. {
  469. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  470. struct ipr_ioasa *ioasa = &ipr_cmd->ioasa;
  471. memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
  472. ioarcb->write_data_transfer_length = 0;
  473. ioarcb->read_data_transfer_length = 0;
  474. ioarcb->write_ioadl_len = 0;
  475. ioarcb->read_ioadl_len = 0;
  476. ioasa->ioasc = 0;
  477. ioasa->residual_data_len = 0;
  478. ioasa->u.gata.status = 0;
  479. ipr_cmd->scsi_cmd = NULL;
  480. ipr_cmd->qc = NULL;
  481. ipr_cmd->sense_buffer[0] = 0;
  482. ipr_cmd->dma_use_sg = 0;
  483. }
  484. /**
  485. * ipr_init_ipr_cmnd - Initialize an IPR Cmnd block
  486. * @ipr_cmd: ipr command struct
  487. *
  488. * Return value:
  489. * none
  490. **/
  491. static void ipr_init_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
  492. {
  493. ipr_reinit_ipr_cmnd(ipr_cmd);
  494. ipr_cmd->u.scratch = 0;
  495. ipr_cmd->sibling = NULL;
  496. init_timer(&ipr_cmd->timer);
  497. }
  498. /**
  499. * ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block
  500. * @ioa_cfg: ioa config struct
  501. *
  502. * Return value:
  503. * pointer to ipr command struct
  504. **/
  505. static
  506. struct ipr_cmnd *ipr_get_free_ipr_cmnd(struct ipr_ioa_cfg *ioa_cfg)
  507. {
  508. struct ipr_cmnd *ipr_cmd;
  509. ipr_cmd = list_entry(ioa_cfg->free_q.next, struct ipr_cmnd, queue);
  510. list_del(&ipr_cmd->queue);
  511. ipr_init_ipr_cmnd(ipr_cmd);
  512. return ipr_cmd;
  513. }
  514. /**
  515. * ipr_unmap_sglist - Unmap scatterlist if mapped
  516. * @ioa_cfg: ioa config struct
  517. * @ipr_cmd: ipr command struct
  518. *
  519. * Return value:
  520. * nothing
  521. **/
  522. static void ipr_unmap_sglist(struct ipr_ioa_cfg *ioa_cfg,
  523. struct ipr_cmnd *ipr_cmd)
  524. {
  525. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  526. if (ipr_cmd->dma_use_sg) {
  527. if (scsi_cmd->use_sg > 0) {
  528. pci_unmap_sg(ioa_cfg->pdev, scsi_cmd->request_buffer,
  529. scsi_cmd->use_sg,
  530. scsi_cmd->sc_data_direction);
  531. } else {
  532. pci_unmap_single(ioa_cfg->pdev, ipr_cmd->dma_handle,
  533. scsi_cmd->request_bufflen,
  534. scsi_cmd->sc_data_direction);
  535. }
  536. }
  537. }
  538. /**
  539. * ipr_mask_and_clear_interrupts - Mask all and clear specified interrupts
  540. * @ioa_cfg: ioa config struct
  541. * @clr_ints: interrupts to clear
  542. *
  543. * This function masks all interrupts on the adapter, then clears the
  544. * interrupts specified in the mask
  545. *
  546. * Return value:
  547. * none
  548. **/
  549. static void ipr_mask_and_clear_interrupts(struct ipr_ioa_cfg *ioa_cfg,
  550. u32 clr_ints)
  551. {
  552. volatile u32 int_reg;
  553. /* Stop new interrupts */
  554. ioa_cfg->allow_interrupts = 0;
  555. /* Set interrupt mask to stop all new interrupts */
  556. writel(~0, ioa_cfg->regs.set_interrupt_mask_reg);
  557. /* Clear any pending interrupts */
  558. writel(clr_ints, ioa_cfg->regs.clr_interrupt_reg);
  559. int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
  560. }
  561. /**
  562. * ipr_save_pcix_cmd_reg - Save PCI-X command register
  563. * @ioa_cfg: ioa config struct
  564. *
  565. * Return value:
  566. * 0 on success / -EIO on failure
  567. **/
  568. static int ipr_save_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
  569. {
  570. int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
  571. if (pcix_cmd_reg == 0)
  572. return 0;
  573. if (pci_read_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
  574. &ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
  575. dev_err(&ioa_cfg->pdev->dev, "Failed to save PCI-X command register\n");
  576. return -EIO;
  577. }
  578. ioa_cfg->saved_pcix_cmd_reg |= PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO;
  579. return 0;
  580. }
  581. /**
  582. * ipr_set_pcix_cmd_reg - Setup PCI-X command register
  583. * @ioa_cfg: ioa config struct
  584. *
  585. * Return value:
  586. * 0 on success / -EIO on failure
  587. **/
  588. static int ipr_set_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
  589. {
  590. int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
  591. if (pcix_cmd_reg) {
  592. if (pci_write_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
  593. ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
  594. dev_err(&ioa_cfg->pdev->dev, "Failed to setup PCI-X command register\n");
  595. return -EIO;
  596. }
  597. }
  598. return 0;
  599. }
  600. /**
  601. * ipr_sata_eh_done - done function for aborted SATA commands
  602. * @ipr_cmd: ipr command struct
  603. *
  604. * This function is invoked for ops generated to SATA
  605. * devices which are being aborted.
  606. *
  607. * Return value:
  608. * none
  609. **/
  610. static void ipr_sata_eh_done(struct ipr_cmnd *ipr_cmd)
  611. {
  612. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  613. struct ata_queued_cmd *qc = ipr_cmd->qc;
  614. struct ipr_sata_port *sata_port = qc->ap->private_data;
  615. qc->err_mask |= AC_ERR_OTHER;
  616. sata_port->ioasa.status |= ATA_BUSY;
  617. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  618. ata_qc_complete(qc);
  619. }
  620. /**
  621. * ipr_scsi_eh_done - mid-layer done function for aborted ops
  622. * @ipr_cmd: ipr command struct
  623. *
  624. * This function is invoked by the interrupt handler for
  625. * ops generated by the SCSI mid-layer which are being aborted.
  626. *
  627. * Return value:
  628. * none
  629. **/
  630. static void ipr_scsi_eh_done(struct ipr_cmnd *ipr_cmd)
  631. {
  632. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  633. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  634. scsi_cmd->result |= (DID_ERROR << 16);
  635. ipr_unmap_sglist(ioa_cfg, ipr_cmd);
  636. scsi_cmd->scsi_done(scsi_cmd);
  637. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  638. }
  639. /**
  640. * ipr_fail_all_ops - Fails all outstanding ops.
  641. * @ioa_cfg: ioa config struct
  642. *
  643. * This function fails all outstanding ops.
  644. *
  645. * Return value:
  646. * none
  647. **/
  648. static void ipr_fail_all_ops(struct ipr_ioa_cfg *ioa_cfg)
  649. {
  650. struct ipr_cmnd *ipr_cmd, *temp;
  651. ENTER;
  652. list_for_each_entry_safe(ipr_cmd, temp, &ioa_cfg->pending_q, queue) {
  653. list_del(&ipr_cmd->queue);
  654. ipr_cmd->ioasa.ioasc = cpu_to_be32(IPR_IOASC_IOA_WAS_RESET);
  655. ipr_cmd->ioasa.ilid = cpu_to_be32(IPR_DRIVER_ILID);
  656. if (ipr_cmd->scsi_cmd)
  657. ipr_cmd->done = ipr_scsi_eh_done;
  658. else if (ipr_cmd->qc)
  659. ipr_cmd->done = ipr_sata_eh_done;
  660. ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, IPR_IOASC_IOA_WAS_RESET);
  661. del_timer(&ipr_cmd->timer);
  662. ipr_cmd->done(ipr_cmd);
  663. }
  664. LEAVE;
  665. }
  666. /**
  667. * ipr_do_req - Send driver initiated requests.
  668. * @ipr_cmd: ipr command struct
  669. * @done: done function
  670. * @timeout_func: timeout function
  671. * @timeout: timeout value
  672. *
  673. * This function sends the specified command to the adapter with the
  674. * timeout given. The done function is invoked on command completion.
  675. *
  676. * Return value:
  677. * none
  678. **/
  679. static void ipr_do_req(struct ipr_cmnd *ipr_cmd,
  680. void (*done) (struct ipr_cmnd *),
  681. void (*timeout_func) (struct ipr_cmnd *), u32 timeout)
  682. {
  683. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  684. list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
  685. ipr_cmd->done = done;
  686. ipr_cmd->timer.data = (unsigned long) ipr_cmd;
  687. ipr_cmd->timer.expires = jiffies + timeout;
  688. ipr_cmd->timer.function = (void (*)(unsigned long))timeout_func;
  689. add_timer(&ipr_cmd->timer);
  690. ipr_trc_hook(ipr_cmd, IPR_TRACE_START, 0);
  691. mb();
  692. writel(be32_to_cpu(ipr_cmd->ioarcb.ioarcb_host_pci_addr),
  693. ioa_cfg->regs.ioarrin_reg);
  694. }
  695. /**
  696. * ipr_internal_cmd_done - Op done function for an internally generated op.
  697. * @ipr_cmd: ipr command struct
  698. *
  699. * This function is the op done function for an internally generated,
  700. * blocking op. It simply wakes the sleeping thread.
  701. *
  702. * Return value:
  703. * none
  704. **/
  705. static void ipr_internal_cmd_done(struct ipr_cmnd *ipr_cmd)
  706. {
  707. if (ipr_cmd->sibling)
  708. ipr_cmd->sibling = NULL;
  709. else
  710. complete(&ipr_cmd->completion);
  711. }
  712. /**
  713. * ipr_send_blocking_cmd - Send command and sleep on its completion.
  714. * @ipr_cmd: ipr command struct
  715. * @timeout_func: function to invoke if command times out
  716. * @timeout: timeout
  717. *
  718. * Return value:
  719. * none
  720. **/
  721. static void ipr_send_blocking_cmd(struct ipr_cmnd *ipr_cmd,
  722. void (*timeout_func) (struct ipr_cmnd *ipr_cmd),
  723. u32 timeout)
  724. {
  725. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  726. init_completion(&ipr_cmd->completion);
  727. ipr_do_req(ipr_cmd, ipr_internal_cmd_done, timeout_func, timeout);
  728. spin_unlock_irq(ioa_cfg->host->host_lock);
  729. wait_for_completion(&ipr_cmd->completion);
  730. spin_lock_irq(ioa_cfg->host->host_lock);
  731. }
  732. /**
  733. * ipr_send_hcam - Send an HCAM to the adapter.
  734. * @ioa_cfg: ioa config struct
  735. * @type: HCAM type
  736. * @hostrcb: hostrcb struct
  737. *
  738. * This function will send a Host Controlled Async command to the adapter.
  739. * If HCAMs are currently not allowed to be issued to the adapter, it will
  740. * place the hostrcb on the free queue.
  741. *
  742. * Return value:
  743. * none
  744. **/
  745. static void ipr_send_hcam(struct ipr_ioa_cfg *ioa_cfg, u8 type,
  746. struct ipr_hostrcb *hostrcb)
  747. {
  748. struct ipr_cmnd *ipr_cmd;
  749. struct ipr_ioarcb *ioarcb;
  750. if (ioa_cfg->allow_cmds) {
  751. ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  752. list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
  753. list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_pending_q);
  754. ipr_cmd->u.hostrcb = hostrcb;
  755. ioarcb = &ipr_cmd->ioarcb;
  756. ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  757. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_HCAM;
  758. ioarcb->cmd_pkt.cdb[0] = IPR_HOST_CONTROLLED_ASYNC;
  759. ioarcb->cmd_pkt.cdb[1] = type;
  760. ioarcb->cmd_pkt.cdb[7] = (sizeof(hostrcb->hcam) >> 8) & 0xff;
  761. ioarcb->cmd_pkt.cdb[8] = sizeof(hostrcb->hcam) & 0xff;
  762. ioarcb->read_data_transfer_length = cpu_to_be32(sizeof(hostrcb->hcam));
  763. ioarcb->read_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  764. ipr_cmd->ioadl[0].flags_and_data_len =
  765. cpu_to_be32(IPR_IOADL_FLAGS_READ_LAST | sizeof(hostrcb->hcam));
  766. ipr_cmd->ioadl[0].address = cpu_to_be32(hostrcb->hostrcb_dma);
  767. if (type == IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE)
  768. ipr_cmd->done = ipr_process_ccn;
  769. else
  770. ipr_cmd->done = ipr_process_error;
  771. ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_IOA_RES_ADDR);
  772. mb();
  773. writel(be32_to_cpu(ipr_cmd->ioarcb.ioarcb_host_pci_addr),
  774. ioa_cfg->regs.ioarrin_reg);
  775. } else {
  776. list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
  777. }
  778. }
  779. /**
  780. * ipr_init_res_entry - Initialize a resource entry struct.
  781. * @res: resource entry struct
  782. *
  783. * Return value:
  784. * none
  785. **/
  786. static void ipr_init_res_entry(struct ipr_resource_entry *res)
  787. {
  788. res->needs_sync_complete = 0;
  789. res->in_erp = 0;
  790. res->add_to_ml = 0;
  791. res->del_from_ml = 0;
  792. res->resetting_device = 0;
  793. res->sdev = NULL;
  794. res->sata_port = NULL;
  795. }
  796. /**
  797. * ipr_handle_config_change - Handle a config change from the adapter
  798. * @ioa_cfg: ioa config struct
  799. * @hostrcb: hostrcb
  800. *
  801. * Return value:
  802. * none
  803. **/
  804. static void ipr_handle_config_change(struct ipr_ioa_cfg *ioa_cfg,
  805. struct ipr_hostrcb *hostrcb)
  806. {
  807. struct ipr_resource_entry *res = NULL;
  808. struct ipr_config_table_entry *cfgte;
  809. u32 is_ndn = 1;
  810. cfgte = &hostrcb->hcam.u.ccn.cfgte;
  811. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  812. if (!memcmp(&res->cfgte.res_addr, &cfgte->res_addr,
  813. sizeof(cfgte->res_addr))) {
  814. is_ndn = 0;
  815. break;
  816. }
  817. }
  818. if (is_ndn) {
  819. if (list_empty(&ioa_cfg->free_res_q)) {
  820. ipr_send_hcam(ioa_cfg,
  821. IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE,
  822. hostrcb);
  823. return;
  824. }
  825. res = list_entry(ioa_cfg->free_res_q.next,
  826. struct ipr_resource_entry, queue);
  827. list_del(&res->queue);
  828. ipr_init_res_entry(res);
  829. list_add_tail(&res->queue, &ioa_cfg->used_res_q);
  830. }
  831. memcpy(&res->cfgte, cfgte, sizeof(struct ipr_config_table_entry));
  832. if (hostrcb->hcam.notify_type == IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY) {
  833. if (res->sdev) {
  834. res->del_from_ml = 1;
  835. res->cfgte.res_handle = IPR_INVALID_RES_HANDLE;
  836. if (ioa_cfg->allow_ml_add_del)
  837. schedule_work(&ioa_cfg->work_q);
  838. } else
  839. list_move_tail(&res->queue, &ioa_cfg->free_res_q);
  840. } else if (!res->sdev) {
  841. res->add_to_ml = 1;
  842. if (ioa_cfg->allow_ml_add_del)
  843. schedule_work(&ioa_cfg->work_q);
  844. }
  845. ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
  846. }
  847. /**
  848. * ipr_process_ccn - Op done function for a CCN.
  849. * @ipr_cmd: ipr command struct
  850. *
  851. * This function is the op done function for a configuration
  852. * change notification host controlled async from the adapter.
  853. *
  854. * Return value:
  855. * none
  856. **/
  857. static void ipr_process_ccn(struct ipr_cmnd *ipr_cmd)
  858. {
  859. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  860. struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
  861. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  862. list_del(&hostrcb->queue);
  863. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  864. if (ioasc) {
  865. if (ioasc != IPR_IOASC_IOA_WAS_RESET)
  866. dev_err(&ioa_cfg->pdev->dev,
  867. "Host RCB failed with IOASC: 0x%08X\n", ioasc);
  868. ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
  869. } else {
  870. ipr_handle_config_change(ioa_cfg, hostrcb);
  871. }
  872. }
  873. /**
  874. * ipr_log_vpd - Log the passed VPD to the error log.
  875. * @vpd: vendor/product id/sn struct
  876. *
  877. * Return value:
  878. * none
  879. **/
  880. static void ipr_log_vpd(struct ipr_vpd *vpd)
  881. {
  882. char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN
  883. + IPR_SERIAL_NUM_LEN];
  884. memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
  885. memcpy(buffer + IPR_VENDOR_ID_LEN, vpd->vpids.product_id,
  886. IPR_PROD_ID_LEN);
  887. buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN] = '\0';
  888. ipr_err("Vendor/Product ID: %s\n", buffer);
  889. memcpy(buffer, vpd->sn, IPR_SERIAL_NUM_LEN);
  890. buffer[IPR_SERIAL_NUM_LEN] = '\0';
  891. ipr_err(" Serial Number: %s\n", buffer);
  892. }
  893. /**
  894. * ipr_log_ext_vpd - Log the passed extended VPD to the error log.
  895. * @vpd: vendor/product id/sn/wwn struct
  896. *
  897. * Return value:
  898. * none
  899. **/
  900. static void ipr_log_ext_vpd(struct ipr_ext_vpd *vpd)
  901. {
  902. ipr_log_vpd(&vpd->vpd);
  903. ipr_err(" WWN: %08X%08X\n", be32_to_cpu(vpd->wwid[0]),
  904. be32_to_cpu(vpd->wwid[1]));
  905. }
  906. /**
  907. * ipr_log_enhanced_cache_error - Log a cache error.
  908. * @ioa_cfg: ioa config struct
  909. * @hostrcb: hostrcb struct
  910. *
  911. * Return value:
  912. * none
  913. **/
  914. static void ipr_log_enhanced_cache_error(struct ipr_ioa_cfg *ioa_cfg,
  915. struct ipr_hostrcb *hostrcb)
  916. {
  917. struct ipr_hostrcb_type_12_error *error =
  918. &hostrcb->hcam.u.error.u.type_12_error;
  919. ipr_err("-----Current Configuration-----\n");
  920. ipr_err("Cache Directory Card Information:\n");
  921. ipr_log_ext_vpd(&error->ioa_vpd);
  922. ipr_err("Adapter Card Information:\n");
  923. ipr_log_ext_vpd(&error->cfc_vpd);
  924. ipr_err("-----Expected Configuration-----\n");
  925. ipr_err("Cache Directory Card Information:\n");
  926. ipr_log_ext_vpd(&error->ioa_last_attached_to_cfc_vpd);
  927. ipr_err("Adapter Card Information:\n");
  928. ipr_log_ext_vpd(&error->cfc_last_attached_to_ioa_vpd);
  929. ipr_err("Additional IOA Data: %08X %08X %08X\n",
  930. be32_to_cpu(error->ioa_data[0]),
  931. be32_to_cpu(error->ioa_data[1]),
  932. be32_to_cpu(error->ioa_data[2]));
  933. }
  934. /**
  935. * ipr_log_cache_error - Log a cache error.
  936. * @ioa_cfg: ioa config struct
  937. * @hostrcb: hostrcb struct
  938. *
  939. * Return value:
  940. * none
  941. **/
  942. static void ipr_log_cache_error(struct ipr_ioa_cfg *ioa_cfg,
  943. struct ipr_hostrcb *hostrcb)
  944. {
  945. struct ipr_hostrcb_type_02_error *error =
  946. &hostrcb->hcam.u.error.u.type_02_error;
  947. ipr_err("-----Current Configuration-----\n");
  948. ipr_err("Cache Directory Card Information:\n");
  949. ipr_log_vpd(&error->ioa_vpd);
  950. ipr_err("Adapter Card Information:\n");
  951. ipr_log_vpd(&error->cfc_vpd);
  952. ipr_err("-----Expected Configuration-----\n");
  953. ipr_err("Cache Directory Card Information:\n");
  954. ipr_log_vpd(&error->ioa_last_attached_to_cfc_vpd);
  955. ipr_err("Adapter Card Information:\n");
  956. ipr_log_vpd(&error->cfc_last_attached_to_ioa_vpd);
  957. ipr_err("Additional IOA Data: %08X %08X %08X\n",
  958. be32_to_cpu(error->ioa_data[0]),
  959. be32_to_cpu(error->ioa_data[1]),
  960. be32_to_cpu(error->ioa_data[2]));
  961. }
  962. /**
  963. * ipr_log_enhanced_config_error - Log a configuration error.
  964. * @ioa_cfg: ioa config struct
  965. * @hostrcb: hostrcb struct
  966. *
  967. * Return value:
  968. * none
  969. **/
  970. static void ipr_log_enhanced_config_error(struct ipr_ioa_cfg *ioa_cfg,
  971. struct ipr_hostrcb *hostrcb)
  972. {
  973. int errors_logged, i;
  974. struct ipr_hostrcb_device_data_entry_enhanced *dev_entry;
  975. struct ipr_hostrcb_type_13_error *error;
  976. error = &hostrcb->hcam.u.error.u.type_13_error;
  977. errors_logged = be32_to_cpu(error->errors_logged);
  978. ipr_err("Device Errors Detected/Logged: %d/%d\n",
  979. be32_to_cpu(error->errors_detected), errors_logged);
  980. dev_entry = error->dev;
  981. for (i = 0; i < errors_logged; i++, dev_entry++) {
  982. ipr_err_separator;
  983. ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
  984. ipr_log_ext_vpd(&dev_entry->vpd);
  985. ipr_err("-----New Device Information-----\n");
  986. ipr_log_ext_vpd(&dev_entry->new_vpd);
  987. ipr_err("Cache Directory Card Information:\n");
  988. ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
  989. ipr_err("Adapter Card Information:\n");
  990. ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
  991. }
  992. }
  993. /**
  994. * ipr_log_config_error - Log a configuration error.
  995. * @ioa_cfg: ioa config struct
  996. * @hostrcb: hostrcb struct
  997. *
  998. * Return value:
  999. * none
  1000. **/
  1001. static void ipr_log_config_error(struct ipr_ioa_cfg *ioa_cfg,
  1002. struct ipr_hostrcb *hostrcb)
  1003. {
  1004. int errors_logged, i;
  1005. struct ipr_hostrcb_device_data_entry *dev_entry;
  1006. struct ipr_hostrcb_type_03_error *error;
  1007. error = &hostrcb->hcam.u.error.u.type_03_error;
  1008. errors_logged = be32_to_cpu(error->errors_logged);
  1009. ipr_err("Device Errors Detected/Logged: %d/%d\n",
  1010. be32_to_cpu(error->errors_detected), errors_logged);
  1011. dev_entry = error->dev;
  1012. for (i = 0; i < errors_logged; i++, dev_entry++) {
  1013. ipr_err_separator;
  1014. ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
  1015. ipr_log_vpd(&dev_entry->vpd);
  1016. ipr_err("-----New Device Information-----\n");
  1017. ipr_log_vpd(&dev_entry->new_vpd);
  1018. ipr_err("Cache Directory Card Information:\n");
  1019. ipr_log_vpd(&dev_entry->ioa_last_with_dev_vpd);
  1020. ipr_err("Adapter Card Information:\n");
  1021. ipr_log_vpd(&dev_entry->cfc_last_with_dev_vpd);
  1022. ipr_err("Additional IOA Data: %08X %08X %08X %08X %08X\n",
  1023. be32_to_cpu(dev_entry->ioa_data[0]),
  1024. be32_to_cpu(dev_entry->ioa_data[1]),
  1025. be32_to_cpu(dev_entry->ioa_data[2]),
  1026. be32_to_cpu(dev_entry->ioa_data[3]),
  1027. be32_to_cpu(dev_entry->ioa_data[4]));
  1028. }
  1029. }
  1030. /**
  1031. * ipr_log_enhanced_array_error - Log an array configuration error.
  1032. * @ioa_cfg: ioa config struct
  1033. * @hostrcb: hostrcb struct
  1034. *
  1035. * Return value:
  1036. * none
  1037. **/
  1038. static void ipr_log_enhanced_array_error(struct ipr_ioa_cfg *ioa_cfg,
  1039. struct ipr_hostrcb *hostrcb)
  1040. {
  1041. int i, num_entries;
  1042. struct ipr_hostrcb_type_14_error *error;
  1043. struct ipr_hostrcb_array_data_entry_enhanced *array_entry;
  1044. const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
  1045. error = &hostrcb->hcam.u.error.u.type_14_error;
  1046. ipr_err_separator;
  1047. ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
  1048. error->protection_level,
  1049. ioa_cfg->host->host_no,
  1050. error->last_func_vset_res_addr.bus,
  1051. error->last_func_vset_res_addr.target,
  1052. error->last_func_vset_res_addr.lun);
  1053. ipr_err_separator;
  1054. array_entry = error->array_member;
  1055. num_entries = min_t(u32, be32_to_cpu(error->num_entries),
  1056. sizeof(error->array_member));
  1057. for (i = 0; i < num_entries; i++, array_entry++) {
  1058. if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
  1059. continue;
  1060. if (be32_to_cpu(error->exposed_mode_adn) == i)
  1061. ipr_err("Exposed Array Member %d:\n", i);
  1062. else
  1063. ipr_err("Array Member %d:\n", i);
  1064. ipr_log_ext_vpd(&array_entry->vpd);
  1065. ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
  1066. ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
  1067. "Expected Location");
  1068. ipr_err_separator;
  1069. }
  1070. }
  1071. /**
  1072. * ipr_log_array_error - Log an array configuration error.
  1073. * @ioa_cfg: ioa config struct
  1074. * @hostrcb: hostrcb struct
  1075. *
  1076. * Return value:
  1077. * none
  1078. **/
  1079. static void ipr_log_array_error(struct ipr_ioa_cfg *ioa_cfg,
  1080. struct ipr_hostrcb *hostrcb)
  1081. {
  1082. int i;
  1083. struct ipr_hostrcb_type_04_error *error;
  1084. struct ipr_hostrcb_array_data_entry *array_entry;
  1085. const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
  1086. error = &hostrcb->hcam.u.error.u.type_04_error;
  1087. ipr_err_separator;
  1088. ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
  1089. error->protection_level,
  1090. ioa_cfg->host->host_no,
  1091. error->last_func_vset_res_addr.bus,
  1092. error->last_func_vset_res_addr.target,
  1093. error->last_func_vset_res_addr.lun);
  1094. ipr_err_separator;
  1095. array_entry = error->array_member;
  1096. for (i = 0; i < 18; i++) {
  1097. if (!memcmp(array_entry->vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
  1098. continue;
  1099. if (be32_to_cpu(error->exposed_mode_adn) == i)
  1100. ipr_err("Exposed Array Member %d:\n", i);
  1101. else
  1102. ipr_err("Array Member %d:\n", i);
  1103. ipr_log_vpd(&array_entry->vpd);
  1104. ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
  1105. ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
  1106. "Expected Location");
  1107. ipr_err_separator;
  1108. if (i == 9)
  1109. array_entry = error->array_member2;
  1110. else
  1111. array_entry++;
  1112. }
  1113. }
  1114. /**
  1115. * ipr_log_hex_data - Log additional hex IOA error data.
  1116. * @ioa_cfg: ioa config struct
  1117. * @data: IOA error data
  1118. * @len: data length
  1119. *
  1120. * Return value:
  1121. * none
  1122. **/
  1123. static void ipr_log_hex_data(struct ipr_ioa_cfg *ioa_cfg, u32 *data, int len)
  1124. {
  1125. int i;
  1126. if (len == 0)
  1127. return;
  1128. if (ioa_cfg->log_level <= IPR_DEFAULT_LOG_LEVEL)
  1129. len = min_t(int, len, IPR_DEFAULT_MAX_ERROR_DUMP);
  1130. for (i = 0; i < len / 4; i += 4) {
  1131. ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
  1132. be32_to_cpu(data[i]),
  1133. be32_to_cpu(data[i+1]),
  1134. be32_to_cpu(data[i+2]),
  1135. be32_to_cpu(data[i+3]));
  1136. }
  1137. }
  1138. /**
  1139. * ipr_log_enhanced_dual_ioa_error - Log an enhanced dual adapter error.
  1140. * @ioa_cfg: ioa config struct
  1141. * @hostrcb: hostrcb struct
  1142. *
  1143. * Return value:
  1144. * none
  1145. **/
  1146. static void ipr_log_enhanced_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
  1147. struct ipr_hostrcb *hostrcb)
  1148. {
  1149. struct ipr_hostrcb_type_17_error *error;
  1150. error = &hostrcb->hcam.u.error.u.type_17_error;
  1151. error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
  1152. ipr_err("%s\n", error->failure_reason);
  1153. ipr_err("Remote Adapter VPD:\n");
  1154. ipr_log_ext_vpd(&error->vpd);
  1155. ipr_log_hex_data(ioa_cfg, error->data,
  1156. be32_to_cpu(hostrcb->hcam.length) -
  1157. (offsetof(struct ipr_hostrcb_error, u) +
  1158. offsetof(struct ipr_hostrcb_type_17_error, data)));
  1159. }
  1160. /**
  1161. * ipr_log_dual_ioa_error - Log a dual adapter error.
  1162. * @ioa_cfg: ioa config struct
  1163. * @hostrcb: hostrcb struct
  1164. *
  1165. * Return value:
  1166. * none
  1167. **/
  1168. static void ipr_log_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
  1169. struct ipr_hostrcb *hostrcb)
  1170. {
  1171. struct ipr_hostrcb_type_07_error *error;
  1172. error = &hostrcb->hcam.u.error.u.type_07_error;
  1173. error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
  1174. ipr_err("%s\n", error->failure_reason);
  1175. ipr_err("Remote Adapter VPD:\n");
  1176. ipr_log_vpd(&error->vpd);
  1177. ipr_log_hex_data(ioa_cfg, error->data,
  1178. be32_to_cpu(hostrcb->hcam.length) -
  1179. (offsetof(struct ipr_hostrcb_error, u) +
  1180. offsetof(struct ipr_hostrcb_type_07_error, data)));
  1181. }
  1182. static const struct {
  1183. u8 active;
  1184. char *desc;
  1185. } path_active_desc[] = {
  1186. { IPR_PATH_NO_INFO, "Path" },
  1187. { IPR_PATH_ACTIVE, "Active path" },
  1188. { IPR_PATH_NOT_ACTIVE, "Inactive path" }
  1189. };
  1190. static const struct {
  1191. u8 state;
  1192. char *desc;
  1193. } path_state_desc[] = {
  1194. { IPR_PATH_STATE_NO_INFO, "has no path state information available" },
  1195. { IPR_PATH_HEALTHY, "is healthy" },
  1196. { IPR_PATH_DEGRADED, "is degraded" },
  1197. { IPR_PATH_FAILED, "is failed" }
  1198. };
  1199. /**
  1200. * ipr_log_fabric_path - Log a fabric path error
  1201. * @hostrcb: hostrcb struct
  1202. * @fabric: fabric descriptor
  1203. *
  1204. * Return value:
  1205. * none
  1206. **/
  1207. static void ipr_log_fabric_path(struct ipr_hostrcb *hostrcb,
  1208. struct ipr_hostrcb_fabric_desc *fabric)
  1209. {
  1210. int i, j;
  1211. u8 path_state = fabric->path_state;
  1212. u8 active = path_state & IPR_PATH_ACTIVE_MASK;
  1213. u8 state = path_state & IPR_PATH_STATE_MASK;
  1214. for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
  1215. if (path_active_desc[i].active != active)
  1216. continue;
  1217. for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
  1218. if (path_state_desc[j].state != state)
  1219. continue;
  1220. if (fabric->cascaded_expander == 0xff && fabric->phy == 0xff) {
  1221. ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d\n",
  1222. path_active_desc[i].desc, path_state_desc[j].desc,
  1223. fabric->ioa_port);
  1224. } else if (fabric->cascaded_expander == 0xff) {
  1225. ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Phy=%d\n",
  1226. path_active_desc[i].desc, path_state_desc[j].desc,
  1227. fabric->ioa_port, fabric->phy);
  1228. } else if (fabric->phy == 0xff) {
  1229. ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d\n",
  1230. path_active_desc[i].desc, path_state_desc[j].desc,
  1231. fabric->ioa_port, fabric->cascaded_expander);
  1232. } else {
  1233. ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d, Phy=%d\n",
  1234. path_active_desc[i].desc, path_state_desc[j].desc,
  1235. fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
  1236. }
  1237. return;
  1238. }
  1239. }
  1240. ipr_err("Path state=%02X IOA Port=%d Cascade=%d Phy=%d\n", path_state,
  1241. fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
  1242. }
  1243. static const struct {
  1244. u8 type;
  1245. char *desc;
  1246. } path_type_desc[] = {
  1247. { IPR_PATH_CFG_IOA_PORT, "IOA port" },
  1248. { IPR_PATH_CFG_EXP_PORT, "Expander port" },
  1249. { IPR_PATH_CFG_DEVICE_PORT, "Device port" },
  1250. { IPR_PATH_CFG_DEVICE_LUN, "Device LUN" }
  1251. };
  1252. static const struct {
  1253. u8 status;
  1254. char *desc;
  1255. } path_status_desc[] = {
  1256. { IPR_PATH_CFG_NO_PROB, "Functional" },
  1257. { IPR_PATH_CFG_DEGRADED, "Degraded" },
  1258. { IPR_PATH_CFG_FAILED, "Failed" },
  1259. { IPR_PATH_CFG_SUSPECT, "Suspect" },
  1260. { IPR_PATH_NOT_DETECTED, "Missing" },
  1261. { IPR_PATH_INCORRECT_CONN, "Incorrectly connected" }
  1262. };
  1263. static const char *link_rate[] = {
  1264. "unknown",
  1265. "disabled",
  1266. "phy reset problem",
  1267. "spinup hold",
  1268. "port selector",
  1269. "unknown",
  1270. "unknown",
  1271. "unknown",
  1272. "1.5Gbps",
  1273. "3.0Gbps",
  1274. "unknown",
  1275. "unknown",
  1276. "unknown",
  1277. "unknown",
  1278. "unknown",
  1279. "unknown"
  1280. };
  1281. /**
  1282. * ipr_log_path_elem - Log a fabric path element.
  1283. * @hostrcb: hostrcb struct
  1284. * @cfg: fabric path element struct
  1285. *
  1286. * Return value:
  1287. * none
  1288. **/
  1289. static void ipr_log_path_elem(struct ipr_hostrcb *hostrcb,
  1290. struct ipr_hostrcb_config_element *cfg)
  1291. {
  1292. int i, j;
  1293. u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
  1294. u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
  1295. if (type == IPR_PATH_CFG_NOT_EXIST)
  1296. return;
  1297. for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
  1298. if (path_type_desc[i].type != type)
  1299. continue;
  1300. for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
  1301. if (path_status_desc[j].status != status)
  1302. continue;
  1303. if (type == IPR_PATH_CFG_IOA_PORT) {
  1304. ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, WWN=%08X%08X\n",
  1305. path_status_desc[j].desc, path_type_desc[i].desc,
  1306. cfg->phy, link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
  1307. be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
  1308. } else {
  1309. if (cfg->cascaded_expander == 0xff && cfg->phy == 0xff) {
  1310. ipr_hcam_err(hostrcb, "%s %s: Link rate=%s, WWN=%08X%08X\n",
  1311. path_status_desc[j].desc, path_type_desc[i].desc,
  1312. link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
  1313. be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
  1314. } else if (cfg->cascaded_expander == 0xff) {
  1315. ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, "
  1316. "WWN=%08X%08X\n", path_status_desc[j].desc,
  1317. path_type_desc[i].desc, cfg->phy,
  1318. link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
  1319. be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
  1320. } else if (cfg->phy == 0xff) {
  1321. ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Link rate=%s, "
  1322. "WWN=%08X%08X\n", path_status_desc[j].desc,
  1323. path_type_desc[i].desc, cfg->cascaded_expander,
  1324. link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
  1325. be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
  1326. } else {
  1327. ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Phy=%d, Link rate=%s "
  1328. "WWN=%08X%08X\n", path_status_desc[j].desc,
  1329. path_type_desc[i].desc, cfg->cascaded_expander, cfg->phy,
  1330. link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
  1331. be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
  1332. }
  1333. }
  1334. return;
  1335. }
  1336. }
  1337. ipr_hcam_err(hostrcb, "Path element=%02X: Cascade=%d Phy=%d Link rate=%s "
  1338. "WWN=%08X%08X\n", cfg->type_status, cfg->cascaded_expander, cfg->phy,
  1339. link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
  1340. be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
  1341. }
  1342. /**
  1343. * ipr_log_fabric_error - Log a fabric error.
  1344. * @ioa_cfg: ioa config struct
  1345. * @hostrcb: hostrcb struct
  1346. *
  1347. * Return value:
  1348. * none
  1349. **/
  1350. static void ipr_log_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
  1351. struct ipr_hostrcb *hostrcb)
  1352. {
  1353. struct ipr_hostrcb_type_20_error *error;
  1354. struct ipr_hostrcb_fabric_desc *fabric;
  1355. struct ipr_hostrcb_config_element *cfg;
  1356. int i, add_len;
  1357. error = &hostrcb->hcam.u.error.u.type_20_error;
  1358. error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
  1359. ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
  1360. add_len = be32_to_cpu(hostrcb->hcam.length) -
  1361. (offsetof(struct ipr_hostrcb_error, u) +
  1362. offsetof(struct ipr_hostrcb_type_20_error, desc));
  1363. for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
  1364. ipr_log_fabric_path(hostrcb, fabric);
  1365. for_each_fabric_cfg(fabric, cfg)
  1366. ipr_log_path_elem(hostrcb, cfg);
  1367. add_len -= be16_to_cpu(fabric->length);
  1368. fabric = (struct ipr_hostrcb_fabric_desc *)
  1369. ((unsigned long)fabric + be16_to_cpu(fabric->length));
  1370. }
  1371. ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
  1372. }
  1373. /**
  1374. * ipr_log_generic_error - Log an adapter error.
  1375. * @ioa_cfg: ioa config struct
  1376. * @hostrcb: hostrcb struct
  1377. *
  1378. * Return value:
  1379. * none
  1380. **/
  1381. static void ipr_log_generic_error(struct ipr_ioa_cfg *ioa_cfg,
  1382. struct ipr_hostrcb *hostrcb)
  1383. {
  1384. ipr_log_hex_data(ioa_cfg, hostrcb->hcam.u.raw.data,
  1385. be32_to_cpu(hostrcb->hcam.length));
  1386. }
  1387. /**
  1388. * ipr_get_error - Find the specfied IOASC in the ipr_error_table.
  1389. * @ioasc: IOASC
  1390. *
  1391. * This function will return the index of into the ipr_error_table
  1392. * for the specified IOASC. If the IOASC is not in the table,
  1393. * 0 will be returned, which points to the entry used for unknown errors.
  1394. *
  1395. * Return value:
  1396. * index into the ipr_error_table
  1397. **/
  1398. static u32 ipr_get_error(u32 ioasc)
  1399. {
  1400. int i;
  1401. for (i = 0; i < ARRAY_SIZE(ipr_error_table); i++)
  1402. if (ipr_error_table[i].ioasc == (ioasc & IPR_IOASC_IOASC_MASK))
  1403. return i;
  1404. return 0;
  1405. }
  1406. /**
  1407. * ipr_handle_log_data - Log an adapter error.
  1408. * @ioa_cfg: ioa config struct
  1409. * @hostrcb: hostrcb struct
  1410. *
  1411. * This function logs an adapter error to the system.
  1412. *
  1413. * Return value:
  1414. * none
  1415. **/
  1416. static void ipr_handle_log_data(struct ipr_ioa_cfg *ioa_cfg,
  1417. struct ipr_hostrcb *hostrcb)
  1418. {
  1419. u32 ioasc;
  1420. int error_index;
  1421. if (hostrcb->hcam.notify_type != IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY)
  1422. return;
  1423. if (hostrcb->hcam.notifications_lost == IPR_HOST_RCB_NOTIFICATIONS_LOST)
  1424. dev_err(&ioa_cfg->pdev->dev, "Error notifications lost\n");
  1425. ioasc = be32_to_cpu(hostrcb->hcam.u.error.failing_dev_ioasc);
  1426. if (ioasc == IPR_IOASC_BUS_WAS_RESET ||
  1427. ioasc == IPR_IOASC_BUS_WAS_RESET_BY_OTHER) {
  1428. /* Tell the midlayer we had a bus reset so it will handle the UA properly */
  1429. scsi_report_bus_reset(ioa_cfg->host,
  1430. hostrcb->hcam.u.error.failing_dev_res_addr.bus);
  1431. }
  1432. error_index = ipr_get_error(ioasc);
  1433. if (!ipr_error_table[error_index].log_hcam)
  1434. return;
  1435. ipr_hcam_err(hostrcb, "%s\n", ipr_error_table[error_index].error);
  1436. /* Set indication we have logged an error */
  1437. ioa_cfg->errors_logged++;
  1438. if (ioa_cfg->log_level < IPR_DEFAULT_LOG_LEVEL)
  1439. return;
  1440. if (be32_to_cpu(hostrcb->hcam.length) > sizeof(hostrcb->hcam.u.raw))
  1441. hostrcb->hcam.length = cpu_to_be32(sizeof(hostrcb->hcam.u.raw));
  1442. switch (hostrcb->hcam.overlay_id) {
  1443. case IPR_HOST_RCB_OVERLAY_ID_2:
  1444. ipr_log_cache_error(ioa_cfg, hostrcb);
  1445. break;
  1446. case IPR_HOST_RCB_OVERLAY_ID_3:
  1447. ipr_log_config_error(ioa_cfg, hostrcb);
  1448. break;
  1449. case IPR_HOST_RCB_OVERLAY_ID_4:
  1450. case IPR_HOST_RCB_OVERLAY_ID_6:
  1451. ipr_log_array_error(ioa_cfg, hostrcb);
  1452. break;
  1453. case IPR_HOST_RCB_OVERLAY_ID_7:
  1454. ipr_log_dual_ioa_error(ioa_cfg, hostrcb);
  1455. break;
  1456. case IPR_HOST_RCB_OVERLAY_ID_12:
  1457. ipr_log_enhanced_cache_error(ioa_cfg, hostrcb);
  1458. break;
  1459. case IPR_HOST_RCB_OVERLAY_ID_13:
  1460. ipr_log_enhanced_config_error(ioa_cfg, hostrcb);
  1461. break;
  1462. case IPR_HOST_RCB_OVERLAY_ID_14:
  1463. case IPR_HOST_RCB_OVERLAY_ID_16:
  1464. ipr_log_enhanced_array_error(ioa_cfg, hostrcb);
  1465. break;
  1466. case IPR_HOST_RCB_OVERLAY_ID_17:
  1467. ipr_log_enhanced_dual_ioa_error(ioa_cfg, hostrcb);
  1468. break;
  1469. case IPR_HOST_RCB_OVERLAY_ID_20:
  1470. ipr_log_fabric_error(ioa_cfg, hostrcb);
  1471. break;
  1472. case IPR_HOST_RCB_OVERLAY_ID_1:
  1473. case IPR_HOST_RCB_OVERLAY_ID_DEFAULT:
  1474. default:
  1475. ipr_log_generic_error(ioa_cfg, hostrcb);
  1476. break;
  1477. }
  1478. }
  1479. /**
  1480. * ipr_process_error - Op done function for an adapter error log.
  1481. * @ipr_cmd: ipr command struct
  1482. *
  1483. * This function is the op done function for an error log host
  1484. * controlled async from the adapter. It will log the error and
  1485. * send the HCAM back to the adapter.
  1486. *
  1487. * Return value:
  1488. * none
  1489. **/
  1490. static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
  1491. {
  1492. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  1493. struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
  1494. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  1495. list_del(&hostrcb->queue);
  1496. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  1497. if (!ioasc) {
  1498. ipr_handle_log_data(ioa_cfg, hostrcb);
  1499. } else if (ioasc != IPR_IOASC_IOA_WAS_RESET) {
  1500. dev_err(&ioa_cfg->pdev->dev,
  1501. "Host RCB failed with IOASC: 0x%08X\n", ioasc);
  1502. }
  1503. ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
  1504. }
  1505. /**
  1506. * ipr_timeout - An internally generated op has timed out.
  1507. * @ipr_cmd: ipr command struct
  1508. *
  1509. * This function blocks host requests and initiates an
  1510. * adapter reset.
  1511. *
  1512. * Return value:
  1513. * none
  1514. **/
  1515. static void ipr_timeout(struct ipr_cmnd *ipr_cmd)
  1516. {
  1517. unsigned long lock_flags = 0;
  1518. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  1519. ENTER;
  1520. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  1521. ioa_cfg->errors_logged++;
  1522. dev_err(&ioa_cfg->pdev->dev,
  1523. "Adapter being reset due to command timeout.\n");
  1524. if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
  1525. ioa_cfg->sdt_state = GET_DUMP;
  1526. if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd)
  1527. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  1528. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1529. LEAVE;
  1530. }
  1531. /**
  1532. * ipr_oper_timeout - Adapter timed out transitioning to operational
  1533. * @ipr_cmd: ipr command struct
  1534. *
  1535. * This function blocks host requests and initiates an
  1536. * adapter reset.
  1537. *
  1538. * Return value:
  1539. * none
  1540. **/
  1541. static void ipr_oper_timeout(struct ipr_cmnd *ipr_cmd)
  1542. {
  1543. unsigned long lock_flags = 0;
  1544. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  1545. ENTER;
  1546. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  1547. ioa_cfg->errors_logged++;
  1548. dev_err(&ioa_cfg->pdev->dev,
  1549. "Adapter timed out transitioning to operational.\n");
  1550. if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
  1551. ioa_cfg->sdt_state = GET_DUMP;
  1552. if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd) {
  1553. if (ipr_fastfail)
  1554. ioa_cfg->reset_retries += IPR_NUM_RESET_RELOAD_RETRIES;
  1555. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  1556. }
  1557. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1558. LEAVE;
  1559. }
  1560. /**
  1561. * ipr_reset_reload - Reset/Reload the IOA
  1562. * @ioa_cfg: ioa config struct
  1563. * @shutdown_type: shutdown type
  1564. *
  1565. * This function resets the adapter and re-initializes it.
  1566. * This function assumes that all new host commands have been stopped.
  1567. * Return value:
  1568. * SUCCESS / FAILED
  1569. **/
  1570. static int ipr_reset_reload(struct ipr_ioa_cfg *ioa_cfg,
  1571. enum ipr_shutdown_type shutdown_type)
  1572. {
  1573. if (!ioa_cfg->in_reset_reload)
  1574. ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
  1575. spin_unlock_irq(ioa_cfg->host->host_lock);
  1576. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  1577. spin_lock_irq(ioa_cfg->host->host_lock);
  1578. /* If we got hit with a host reset while we were already resetting
  1579. the adapter for some reason, and the reset failed. */
  1580. if (ioa_cfg->ioa_is_dead) {
  1581. ipr_trace;
  1582. return FAILED;
  1583. }
  1584. return SUCCESS;
  1585. }
  1586. /**
  1587. * ipr_find_ses_entry - Find matching SES in SES table
  1588. * @res: resource entry struct of SES
  1589. *
  1590. * Return value:
  1591. * pointer to SES table entry / NULL on failure
  1592. **/
  1593. static const struct ipr_ses_table_entry *
  1594. ipr_find_ses_entry(struct ipr_resource_entry *res)
  1595. {
  1596. int i, j, matches;
  1597. const struct ipr_ses_table_entry *ste = ipr_ses_table;
  1598. for (i = 0; i < ARRAY_SIZE(ipr_ses_table); i++, ste++) {
  1599. for (j = 0, matches = 0; j < IPR_PROD_ID_LEN; j++) {
  1600. if (ste->compare_product_id_byte[j] == 'X') {
  1601. if (res->cfgte.std_inq_data.vpids.product_id[j] == ste->product_id[j])
  1602. matches++;
  1603. else
  1604. break;
  1605. } else
  1606. matches++;
  1607. }
  1608. if (matches == IPR_PROD_ID_LEN)
  1609. return ste;
  1610. }
  1611. return NULL;
  1612. }
  1613. /**
  1614. * ipr_get_max_scsi_speed - Determine max SCSI speed for a given bus
  1615. * @ioa_cfg: ioa config struct
  1616. * @bus: SCSI bus
  1617. * @bus_width: bus width
  1618. *
  1619. * Return value:
  1620. * SCSI bus speed in units of 100KHz, 1600 is 160 MHz
  1621. * For a 2-byte wide SCSI bus, the maximum transfer speed is
  1622. * twice the maximum transfer rate (e.g. for a wide enabled bus,
  1623. * max 160MHz = max 320MB/sec).
  1624. **/
  1625. static u32 ipr_get_max_scsi_speed(struct ipr_ioa_cfg *ioa_cfg, u8 bus, u8 bus_width)
  1626. {
  1627. struct ipr_resource_entry *res;
  1628. const struct ipr_ses_table_entry *ste;
  1629. u32 max_xfer_rate = IPR_MAX_SCSI_RATE(bus_width);
  1630. /* Loop through each config table entry in the config table buffer */
  1631. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  1632. if (!(IPR_IS_SES_DEVICE(res->cfgte.std_inq_data)))
  1633. continue;
  1634. if (bus != res->cfgte.res_addr.bus)
  1635. continue;
  1636. if (!(ste = ipr_find_ses_entry(res)))
  1637. continue;
  1638. max_xfer_rate = (ste->max_bus_speed_limit * 10) / (bus_width / 8);
  1639. }
  1640. return max_xfer_rate;
  1641. }
  1642. /**
  1643. * ipr_wait_iodbg_ack - Wait for an IODEBUG ACK from the IOA
  1644. * @ioa_cfg: ioa config struct
  1645. * @max_delay: max delay in micro-seconds to wait
  1646. *
  1647. * Waits for an IODEBUG ACK from the IOA, doing busy looping.
  1648. *
  1649. * Return value:
  1650. * 0 on success / other on failure
  1651. **/
  1652. static int ipr_wait_iodbg_ack(struct ipr_ioa_cfg *ioa_cfg, int max_delay)
  1653. {
  1654. volatile u32 pcii_reg;
  1655. int delay = 1;
  1656. /* Read interrupt reg until IOA signals IO Debug Acknowledge */
  1657. while (delay < max_delay) {
  1658. pcii_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
  1659. if (pcii_reg & IPR_PCII_IO_DEBUG_ACKNOWLEDGE)
  1660. return 0;
  1661. /* udelay cannot be used if delay is more than a few milliseconds */
  1662. if ((delay / 1000) > MAX_UDELAY_MS)
  1663. mdelay(delay / 1000);
  1664. else
  1665. udelay(delay);
  1666. delay += delay;
  1667. }
  1668. return -EIO;
  1669. }
  1670. /**
  1671. * ipr_get_ldump_data_section - Dump IOA memory
  1672. * @ioa_cfg: ioa config struct
  1673. * @start_addr: adapter address to dump
  1674. * @dest: destination kernel buffer
  1675. * @length_in_words: length to dump in 4 byte words
  1676. *
  1677. * Return value:
  1678. * 0 on success / -EIO on failure
  1679. **/
  1680. static int ipr_get_ldump_data_section(struct ipr_ioa_cfg *ioa_cfg,
  1681. u32 start_addr,
  1682. __be32 *dest, u32 length_in_words)
  1683. {
  1684. volatile u32 temp_pcii_reg;
  1685. int i, delay = 0;
  1686. /* Write IOA interrupt reg starting LDUMP state */
  1687. writel((IPR_UPROCI_RESET_ALERT | IPR_UPROCI_IO_DEBUG_ALERT),
  1688. ioa_cfg->regs.set_uproc_interrupt_reg);
  1689. /* Wait for IO debug acknowledge */
  1690. if (ipr_wait_iodbg_ack(ioa_cfg,
  1691. IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC)) {
  1692. dev_err(&ioa_cfg->pdev->dev,
  1693. "IOA dump long data transfer timeout\n");
  1694. return -EIO;
  1695. }
  1696. /* Signal LDUMP interlocked - clear IO debug ack */
  1697. writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
  1698. ioa_cfg->regs.clr_interrupt_reg);
  1699. /* Write Mailbox with starting address */
  1700. writel(start_addr, ioa_cfg->ioa_mailbox);
  1701. /* Signal address valid - clear IOA Reset alert */
  1702. writel(IPR_UPROCI_RESET_ALERT,
  1703. ioa_cfg->regs.clr_uproc_interrupt_reg);
  1704. for (i = 0; i < length_in_words; i++) {
  1705. /* Wait for IO debug acknowledge */
  1706. if (ipr_wait_iodbg_ack(ioa_cfg,
  1707. IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC)) {
  1708. dev_err(&ioa_cfg->pdev->dev,
  1709. "IOA dump short data transfer timeout\n");
  1710. return -EIO;
  1711. }
  1712. /* Read data from mailbox and increment destination pointer */
  1713. *dest = cpu_to_be32(readl(ioa_cfg->ioa_mailbox));
  1714. dest++;
  1715. /* For all but the last word of data, signal data received */
  1716. if (i < (length_in_words - 1)) {
  1717. /* Signal dump data received - Clear IO debug Ack */
  1718. writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
  1719. ioa_cfg->regs.clr_interrupt_reg);
  1720. }
  1721. }
  1722. /* Signal end of block transfer. Set reset alert then clear IO debug ack */
  1723. writel(IPR_UPROCI_RESET_ALERT,
  1724. ioa_cfg->regs.set_uproc_interrupt_reg);
  1725. writel(IPR_UPROCI_IO_DEBUG_ALERT,
  1726. ioa_cfg->regs.clr_uproc_interrupt_reg);
  1727. /* Signal dump data received - Clear IO debug Ack */
  1728. writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
  1729. ioa_cfg->regs.clr_interrupt_reg);
  1730. /* Wait for IOA to signal LDUMP exit - IOA reset alert will be cleared */
  1731. while (delay < IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC) {
  1732. temp_pcii_reg =
  1733. readl(ioa_cfg->regs.sense_uproc_interrupt_reg);
  1734. if (!(temp_pcii_reg & IPR_UPROCI_RESET_ALERT))
  1735. return 0;
  1736. udelay(10);
  1737. delay += 10;
  1738. }
  1739. return 0;
  1740. }
  1741. #ifdef CONFIG_SCSI_IPR_DUMP
  1742. /**
  1743. * ipr_sdt_copy - Copy Smart Dump Table to kernel buffer
  1744. * @ioa_cfg: ioa config struct
  1745. * @pci_address: adapter address
  1746. * @length: length of data to copy
  1747. *
  1748. * Copy data from PCI adapter to kernel buffer.
  1749. * Note: length MUST be a 4 byte multiple
  1750. * Return value:
  1751. * 0 on success / other on failure
  1752. **/
  1753. static int ipr_sdt_copy(struct ipr_ioa_cfg *ioa_cfg,
  1754. unsigned long pci_address, u32 length)
  1755. {
  1756. int bytes_copied = 0;
  1757. int cur_len, rc, rem_len, rem_page_len;
  1758. __be32 *page;
  1759. unsigned long lock_flags = 0;
  1760. struct ipr_ioa_dump *ioa_dump = &ioa_cfg->dump->ioa_dump;
  1761. while (bytes_copied < length &&
  1762. (ioa_dump->hdr.len + bytes_copied) < IPR_MAX_IOA_DUMP_SIZE) {
  1763. if (ioa_dump->page_offset >= PAGE_SIZE ||
  1764. ioa_dump->page_offset == 0) {
  1765. page = (__be32 *)__get_free_page(GFP_ATOMIC);
  1766. if (!page) {
  1767. ipr_trace;
  1768. return bytes_copied;
  1769. }
  1770. ioa_dump->page_offset = 0;
  1771. ioa_dump->ioa_data[ioa_dump->next_page_index] = page;
  1772. ioa_dump->next_page_index++;
  1773. } else
  1774. page = ioa_dump->ioa_data[ioa_dump->next_page_index - 1];
  1775. rem_len = length - bytes_copied;
  1776. rem_page_len = PAGE_SIZE - ioa_dump->page_offset;
  1777. cur_len = min(rem_len, rem_page_len);
  1778. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  1779. if (ioa_cfg->sdt_state == ABORT_DUMP) {
  1780. rc = -EIO;
  1781. } else {
  1782. rc = ipr_get_ldump_data_section(ioa_cfg,
  1783. pci_address + bytes_copied,
  1784. &page[ioa_dump->page_offset / 4],
  1785. (cur_len / sizeof(u32)));
  1786. }
  1787. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1788. if (!rc) {
  1789. ioa_dump->page_offset += cur_len;
  1790. bytes_copied += cur_len;
  1791. } else {
  1792. ipr_trace;
  1793. break;
  1794. }
  1795. schedule();
  1796. }
  1797. return bytes_copied;
  1798. }
  1799. /**
  1800. * ipr_init_dump_entry_hdr - Initialize a dump entry header.
  1801. * @hdr: dump entry header struct
  1802. *
  1803. * Return value:
  1804. * nothing
  1805. **/
  1806. static void ipr_init_dump_entry_hdr(struct ipr_dump_entry_header *hdr)
  1807. {
  1808. hdr->eye_catcher = IPR_DUMP_EYE_CATCHER;
  1809. hdr->num_elems = 1;
  1810. hdr->offset = sizeof(*hdr);
  1811. hdr->status = IPR_DUMP_STATUS_SUCCESS;
  1812. }
  1813. /**
  1814. * ipr_dump_ioa_type_data - Fill in the adapter type in the dump.
  1815. * @ioa_cfg: ioa config struct
  1816. * @driver_dump: driver dump struct
  1817. *
  1818. * Return value:
  1819. * nothing
  1820. **/
  1821. static void ipr_dump_ioa_type_data(struct ipr_ioa_cfg *ioa_cfg,
  1822. struct ipr_driver_dump *driver_dump)
  1823. {
  1824. struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
  1825. ipr_init_dump_entry_hdr(&driver_dump->ioa_type_entry.hdr);
  1826. driver_dump->ioa_type_entry.hdr.len =
  1827. sizeof(struct ipr_dump_ioa_type_entry) -
  1828. sizeof(struct ipr_dump_entry_header);
  1829. driver_dump->ioa_type_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
  1830. driver_dump->ioa_type_entry.hdr.id = IPR_DUMP_DRIVER_TYPE_ID;
  1831. driver_dump->ioa_type_entry.type = ioa_cfg->type;
  1832. driver_dump->ioa_type_entry.fw_version = (ucode_vpd->major_release << 24) |
  1833. (ucode_vpd->card_type << 16) | (ucode_vpd->minor_release[0] << 8) |
  1834. ucode_vpd->minor_release[1];
  1835. driver_dump->hdr.num_entries++;
  1836. }
  1837. /**
  1838. * ipr_dump_version_data - Fill in the driver version in the dump.
  1839. * @ioa_cfg: ioa config struct
  1840. * @driver_dump: driver dump struct
  1841. *
  1842. * Return value:
  1843. * nothing
  1844. **/
  1845. static void ipr_dump_version_data(struct ipr_ioa_cfg *ioa_cfg,
  1846. struct ipr_driver_dump *driver_dump)
  1847. {
  1848. ipr_init_dump_entry_hdr(&driver_dump->version_entry.hdr);
  1849. driver_dump->version_entry.hdr.len =
  1850. sizeof(struct ipr_dump_version_entry) -
  1851. sizeof(struct ipr_dump_entry_header);
  1852. driver_dump->version_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
  1853. driver_dump->version_entry.hdr.id = IPR_DUMP_DRIVER_VERSION_ID;
  1854. strcpy(driver_dump->version_entry.version, IPR_DRIVER_VERSION);
  1855. driver_dump->hdr.num_entries++;
  1856. }
  1857. /**
  1858. * ipr_dump_trace_data - Fill in the IOA trace in the dump.
  1859. * @ioa_cfg: ioa config struct
  1860. * @driver_dump: driver dump struct
  1861. *
  1862. * Return value:
  1863. * nothing
  1864. **/
  1865. static void ipr_dump_trace_data(struct ipr_ioa_cfg *ioa_cfg,
  1866. struct ipr_driver_dump *driver_dump)
  1867. {
  1868. ipr_init_dump_entry_hdr(&driver_dump->trace_entry.hdr);
  1869. driver_dump->trace_entry.hdr.len =
  1870. sizeof(struct ipr_dump_trace_entry) -
  1871. sizeof(struct ipr_dump_entry_header);
  1872. driver_dump->trace_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
  1873. driver_dump->trace_entry.hdr.id = IPR_DUMP_TRACE_ID;
  1874. memcpy(driver_dump->trace_entry.trace, ioa_cfg->trace, IPR_TRACE_SIZE);
  1875. driver_dump->hdr.num_entries++;
  1876. }
  1877. /**
  1878. * ipr_dump_location_data - Fill in the IOA location in the dump.
  1879. * @ioa_cfg: ioa config struct
  1880. * @driver_dump: driver dump struct
  1881. *
  1882. * Return value:
  1883. * nothing
  1884. **/
  1885. static void ipr_dump_location_data(struct ipr_ioa_cfg *ioa_cfg,
  1886. struct ipr_driver_dump *driver_dump)
  1887. {
  1888. ipr_init_dump_entry_hdr(&driver_dump->location_entry.hdr);
  1889. driver_dump->location_entry.hdr.len =
  1890. sizeof(struct ipr_dump_location_entry) -
  1891. sizeof(struct ipr_dump_entry_header);
  1892. driver_dump->location_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
  1893. driver_dump->location_entry.hdr.id = IPR_DUMP_LOCATION_ID;
  1894. strcpy(driver_dump->location_entry.location, ioa_cfg->pdev->dev.bus_id);
  1895. driver_dump->hdr.num_entries++;
  1896. }
  1897. /**
  1898. * ipr_get_ioa_dump - Perform a dump of the driver and adapter.
  1899. * @ioa_cfg: ioa config struct
  1900. * @dump: dump struct
  1901. *
  1902. * Return value:
  1903. * nothing
  1904. **/
  1905. static void ipr_get_ioa_dump(struct ipr_ioa_cfg *ioa_cfg, struct ipr_dump *dump)
  1906. {
  1907. unsigned long start_addr, sdt_word;
  1908. unsigned long lock_flags = 0;
  1909. struct ipr_driver_dump *driver_dump = &dump->driver_dump;
  1910. struct ipr_ioa_dump *ioa_dump = &dump->ioa_dump;
  1911. u32 num_entries, start_off, end_off;
  1912. u32 bytes_to_copy, bytes_copied, rc;
  1913. struct ipr_sdt *sdt;
  1914. int i;
  1915. ENTER;
  1916. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  1917. if (ioa_cfg->sdt_state != GET_DUMP) {
  1918. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1919. return;
  1920. }
  1921. start_addr = readl(ioa_cfg->ioa_mailbox);
  1922. if (!ipr_sdt_is_fmt2(start_addr)) {
  1923. dev_err(&ioa_cfg->pdev->dev,
  1924. "Invalid dump table format: %lx\n", start_addr);
  1925. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1926. return;
  1927. }
  1928. dev_err(&ioa_cfg->pdev->dev, "Dump of IOA initiated\n");
  1929. driver_dump->hdr.eye_catcher = IPR_DUMP_EYE_CATCHER;
  1930. /* Initialize the overall dump header */
  1931. driver_dump->hdr.len = sizeof(struct ipr_driver_dump);
  1932. driver_dump->hdr.num_entries = 1;
  1933. driver_dump->hdr.first_entry_offset = sizeof(struct ipr_dump_header);
  1934. driver_dump->hdr.status = IPR_DUMP_STATUS_SUCCESS;
  1935. driver_dump->hdr.os = IPR_DUMP_OS_LINUX;
  1936. driver_dump->hdr.driver_name = IPR_DUMP_DRIVER_NAME;
  1937. ipr_dump_version_data(ioa_cfg, driver_dump);
  1938. ipr_dump_location_data(ioa_cfg, driver_dump);
  1939. ipr_dump_ioa_type_data(ioa_cfg, driver_dump);
  1940. ipr_dump_trace_data(ioa_cfg, driver_dump);
  1941. /* Update dump_header */
  1942. driver_dump->hdr.len += sizeof(struct ipr_dump_entry_header);
  1943. /* IOA Dump entry */
  1944. ipr_init_dump_entry_hdr(&ioa_dump->hdr);
  1945. ioa_dump->format = IPR_SDT_FMT2;
  1946. ioa_dump->hdr.len = 0;
  1947. ioa_dump->hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
  1948. ioa_dump->hdr.id = IPR_DUMP_IOA_DUMP_ID;
  1949. /* First entries in sdt are actually a list of dump addresses and
  1950. lengths to gather the real dump data. sdt represents the pointer
  1951. to the ioa generated dump table. Dump data will be extracted based
  1952. on entries in this table */
  1953. sdt = &ioa_dump->sdt;
  1954. rc = ipr_get_ldump_data_section(ioa_cfg, start_addr, (__be32 *)sdt,
  1955. sizeof(struct ipr_sdt) / sizeof(__be32));
  1956. /* Smart Dump table is ready to use and the first entry is valid */
  1957. if (rc || (be32_to_cpu(sdt->hdr.state) != IPR_FMT2_SDT_READY_TO_USE)) {
  1958. dev_err(&ioa_cfg->pdev->dev,
  1959. "Dump of IOA failed. Dump table not valid: %d, %X.\n",
  1960. rc, be32_to_cpu(sdt->hdr.state));
  1961. driver_dump->hdr.status = IPR_DUMP_STATUS_FAILED;
  1962. ioa_cfg->sdt_state = DUMP_OBTAINED;
  1963. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1964. return;
  1965. }
  1966. num_entries = be32_to_cpu(sdt->hdr.num_entries_used);
  1967. if (num_entries > IPR_NUM_SDT_ENTRIES)
  1968. num_entries = IPR_NUM_SDT_ENTRIES;
  1969. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  1970. for (i = 0; i < num_entries; i++) {
  1971. if (ioa_dump->hdr.len > IPR_MAX_IOA_DUMP_SIZE) {
  1972. driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
  1973. break;
  1974. }
  1975. if (sdt->entry[i].flags & IPR_SDT_VALID_ENTRY) {
  1976. sdt_word = be32_to_cpu(sdt->entry[i].bar_str_offset);
  1977. start_off = sdt_word & IPR_FMT2_MBX_ADDR_MASK;
  1978. end_off = be32_to_cpu(sdt->entry[i].end_offset);
  1979. if (ipr_sdt_is_fmt2(sdt_word) && sdt_word) {
  1980. bytes_to_copy = end_off - start_off;
  1981. if (bytes_to_copy > IPR_MAX_IOA_DUMP_SIZE) {
  1982. sdt->entry[i].flags &= ~IPR_SDT_VALID_ENTRY;
  1983. continue;
  1984. }
  1985. /* Copy data from adapter to driver buffers */
  1986. bytes_copied = ipr_sdt_copy(ioa_cfg, sdt_word,
  1987. bytes_to_copy);
  1988. ioa_dump->hdr.len += bytes_copied;
  1989. if (bytes_copied != bytes_to_copy) {
  1990. driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
  1991. break;
  1992. }
  1993. }
  1994. }
  1995. }
  1996. dev_err(&ioa_cfg->pdev->dev, "Dump of IOA completed.\n");
  1997. /* Update dump_header */
  1998. driver_dump->hdr.len += ioa_dump->hdr.len;
  1999. wmb();
  2000. ioa_cfg->sdt_state = DUMP_OBTAINED;
  2001. LEAVE;
  2002. }
  2003. #else
  2004. #define ipr_get_ioa_dump(ioa_cfg, dump) do { } while(0)
  2005. #endif
  2006. /**
  2007. * ipr_release_dump - Free adapter dump memory
  2008. * @kref: kref struct
  2009. *
  2010. * Return value:
  2011. * nothing
  2012. **/
  2013. static void ipr_release_dump(struct kref *kref)
  2014. {
  2015. struct ipr_dump *dump = container_of(kref,struct ipr_dump,kref);
  2016. struct ipr_ioa_cfg *ioa_cfg = dump->ioa_cfg;
  2017. unsigned long lock_flags = 0;
  2018. int i;
  2019. ENTER;
  2020. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2021. ioa_cfg->dump = NULL;
  2022. ioa_cfg->sdt_state = INACTIVE;
  2023. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2024. for (i = 0; i < dump->ioa_dump.next_page_index; i++)
  2025. free_page((unsigned long) dump->ioa_dump.ioa_data[i]);
  2026. kfree(dump);
  2027. LEAVE;
  2028. }
  2029. /**
  2030. * ipr_worker_thread - Worker thread
  2031. * @work: ioa config struct
  2032. *
  2033. * Called at task level from a work thread. This function takes care
  2034. * of adding and removing device from the mid-layer as configuration
  2035. * changes are detected by the adapter.
  2036. *
  2037. * Return value:
  2038. * nothing
  2039. **/
  2040. static void ipr_worker_thread(struct work_struct *work)
  2041. {
  2042. unsigned long lock_flags;
  2043. struct ipr_resource_entry *res;
  2044. struct scsi_device *sdev;
  2045. struct ipr_dump *dump;
  2046. struct ipr_ioa_cfg *ioa_cfg =
  2047. container_of(work, struct ipr_ioa_cfg, work_q);
  2048. u8 bus, target, lun;
  2049. int did_work;
  2050. ENTER;
  2051. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2052. if (ioa_cfg->sdt_state == GET_DUMP) {
  2053. dump = ioa_cfg->dump;
  2054. if (!dump) {
  2055. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2056. return;
  2057. }
  2058. kref_get(&dump->kref);
  2059. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2060. ipr_get_ioa_dump(ioa_cfg, dump);
  2061. kref_put(&dump->kref, ipr_release_dump);
  2062. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2063. if (ioa_cfg->sdt_state == DUMP_OBTAINED)
  2064. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  2065. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2066. return;
  2067. }
  2068. restart:
  2069. do {
  2070. did_work = 0;
  2071. if (!ioa_cfg->allow_cmds || !ioa_cfg->allow_ml_add_del) {
  2072. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2073. return;
  2074. }
  2075. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  2076. if (res->del_from_ml && res->sdev) {
  2077. did_work = 1;
  2078. sdev = res->sdev;
  2079. if (!scsi_device_get(sdev)) {
  2080. list_move_tail(&res->queue, &ioa_cfg->free_res_q);
  2081. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2082. scsi_remove_device(sdev);
  2083. scsi_device_put(sdev);
  2084. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2085. }
  2086. break;
  2087. }
  2088. }
  2089. } while(did_work);
  2090. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  2091. if (res->add_to_ml) {
  2092. bus = res->cfgte.res_addr.bus;
  2093. target = res->cfgte.res_addr.target;
  2094. lun = res->cfgte.res_addr.lun;
  2095. res->add_to_ml = 0;
  2096. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2097. scsi_add_device(ioa_cfg->host, bus, target, lun);
  2098. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2099. goto restart;
  2100. }
  2101. }
  2102. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2103. kobject_uevent(&ioa_cfg->host->shost_classdev.kobj, KOBJ_CHANGE);
  2104. LEAVE;
  2105. }
  2106. #ifdef CONFIG_SCSI_IPR_TRACE
  2107. /**
  2108. * ipr_read_trace - Dump the adapter trace
  2109. * @kobj: kobject struct
  2110. * @bin_attr: bin_attribute struct
  2111. * @buf: buffer
  2112. * @off: offset
  2113. * @count: buffer size
  2114. *
  2115. * Return value:
  2116. * number of bytes printed to buffer
  2117. **/
  2118. static ssize_t ipr_read_trace(struct kobject *kobj,
  2119. struct bin_attribute *bin_attr,
  2120. char *buf, loff_t off, size_t count)
  2121. {
  2122. struct class_device *cdev = container_of(kobj,struct class_device,kobj);
  2123. struct Scsi_Host *shost = class_to_shost(cdev);
  2124. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2125. unsigned long lock_flags = 0;
  2126. int size = IPR_TRACE_SIZE;
  2127. char *src = (char *)ioa_cfg->trace;
  2128. if (off > size)
  2129. return 0;
  2130. if (off + count > size) {
  2131. size -= off;
  2132. count = size;
  2133. }
  2134. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2135. memcpy(buf, &src[off], count);
  2136. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2137. return count;
  2138. }
  2139. static struct bin_attribute ipr_trace_attr = {
  2140. .attr = {
  2141. .name = "trace",
  2142. .mode = S_IRUGO,
  2143. },
  2144. .size = 0,
  2145. .read = ipr_read_trace,
  2146. };
  2147. #endif
  2148. static const struct {
  2149. enum ipr_cache_state state;
  2150. char *name;
  2151. } cache_state [] = {
  2152. { CACHE_NONE, "none" },
  2153. { CACHE_DISABLED, "disabled" },
  2154. { CACHE_ENABLED, "enabled" }
  2155. };
  2156. /**
  2157. * ipr_show_write_caching - Show the write caching attribute
  2158. * @class_dev: class device struct
  2159. * @buf: buffer
  2160. *
  2161. * Return value:
  2162. * number of bytes printed to buffer
  2163. **/
  2164. static ssize_t ipr_show_write_caching(struct class_device *class_dev, char *buf)
  2165. {
  2166. struct Scsi_Host *shost = class_to_shost(class_dev);
  2167. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2168. unsigned long lock_flags = 0;
  2169. int i, len = 0;
  2170. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2171. for (i = 0; i < ARRAY_SIZE(cache_state); i++) {
  2172. if (cache_state[i].state == ioa_cfg->cache_state) {
  2173. len = snprintf(buf, PAGE_SIZE, "%s\n", cache_state[i].name);
  2174. break;
  2175. }
  2176. }
  2177. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2178. return len;
  2179. }
  2180. /**
  2181. * ipr_store_write_caching - Enable/disable adapter write cache
  2182. * @class_dev: class_device struct
  2183. * @buf: buffer
  2184. * @count: buffer size
  2185. *
  2186. * This function will enable/disable adapter write cache.
  2187. *
  2188. * Return value:
  2189. * count on success / other on failure
  2190. **/
  2191. static ssize_t ipr_store_write_caching(struct class_device *class_dev,
  2192. const char *buf, size_t count)
  2193. {
  2194. struct Scsi_Host *shost = class_to_shost(class_dev);
  2195. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2196. unsigned long lock_flags = 0;
  2197. enum ipr_cache_state new_state = CACHE_INVALID;
  2198. int i;
  2199. if (!capable(CAP_SYS_ADMIN))
  2200. return -EACCES;
  2201. if (ioa_cfg->cache_state == CACHE_NONE)
  2202. return -EINVAL;
  2203. for (i = 0; i < ARRAY_SIZE(cache_state); i++) {
  2204. if (!strncmp(cache_state[i].name, buf, strlen(cache_state[i].name))) {
  2205. new_state = cache_state[i].state;
  2206. break;
  2207. }
  2208. }
  2209. if (new_state != CACHE_DISABLED && new_state != CACHE_ENABLED)
  2210. return -EINVAL;
  2211. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2212. if (ioa_cfg->cache_state == new_state) {
  2213. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2214. return count;
  2215. }
  2216. ioa_cfg->cache_state = new_state;
  2217. dev_info(&ioa_cfg->pdev->dev, "%s adapter write cache.\n",
  2218. new_state == CACHE_ENABLED ? "Enabling" : "Disabling");
  2219. if (!ioa_cfg->in_reset_reload)
  2220. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
  2221. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2222. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  2223. return count;
  2224. }
  2225. static struct class_device_attribute ipr_ioa_cache_attr = {
  2226. .attr = {
  2227. .name = "write_cache",
  2228. .mode = S_IRUGO | S_IWUSR,
  2229. },
  2230. .show = ipr_show_write_caching,
  2231. .store = ipr_store_write_caching
  2232. };
  2233. /**
  2234. * ipr_show_fw_version - Show the firmware version
  2235. * @class_dev: class device struct
  2236. * @buf: buffer
  2237. *
  2238. * Return value:
  2239. * number of bytes printed to buffer
  2240. **/
  2241. static ssize_t ipr_show_fw_version(struct class_device *class_dev, char *buf)
  2242. {
  2243. struct Scsi_Host *shost = class_to_shost(class_dev);
  2244. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2245. struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
  2246. unsigned long lock_flags = 0;
  2247. int len;
  2248. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2249. len = snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X\n",
  2250. ucode_vpd->major_release, ucode_vpd->card_type,
  2251. ucode_vpd->minor_release[0],
  2252. ucode_vpd->minor_release[1]);
  2253. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2254. return len;
  2255. }
  2256. static struct class_device_attribute ipr_fw_version_attr = {
  2257. .attr = {
  2258. .name = "fw_version",
  2259. .mode = S_IRUGO,
  2260. },
  2261. .show = ipr_show_fw_version,
  2262. };
  2263. /**
  2264. * ipr_show_log_level - Show the adapter's error logging level
  2265. * @class_dev: class device struct
  2266. * @buf: buffer
  2267. *
  2268. * Return value:
  2269. * number of bytes printed to buffer
  2270. **/
  2271. static ssize_t ipr_show_log_level(struct class_device *class_dev, char *buf)
  2272. {
  2273. struct Scsi_Host *shost = class_to_shost(class_dev);
  2274. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2275. unsigned long lock_flags = 0;
  2276. int len;
  2277. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2278. len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->log_level);
  2279. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2280. return len;
  2281. }
  2282. /**
  2283. * ipr_store_log_level - Change the adapter's error logging level
  2284. * @class_dev: class device struct
  2285. * @buf: buffer
  2286. *
  2287. * Return value:
  2288. * number of bytes printed to buffer
  2289. **/
  2290. static ssize_t ipr_store_log_level(struct class_device *class_dev,
  2291. const char *buf, size_t count)
  2292. {
  2293. struct Scsi_Host *shost = class_to_shost(class_dev);
  2294. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2295. unsigned long lock_flags = 0;
  2296. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2297. ioa_cfg->log_level = simple_strtoul(buf, NULL, 10);
  2298. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2299. return strlen(buf);
  2300. }
  2301. static struct class_device_attribute ipr_log_level_attr = {
  2302. .attr = {
  2303. .name = "log_level",
  2304. .mode = S_IRUGO | S_IWUSR,
  2305. },
  2306. .show = ipr_show_log_level,
  2307. .store = ipr_store_log_level
  2308. };
  2309. /**
  2310. * ipr_store_diagnostics - IOA Diagnostics interface
  2311. * @class_dev: class_device struct
  2312. * @buf: buffer
  2313. * @count: buffer size
  2314. *
  2315. * This function will reset the adapter and wait a reasonable
  2316. * amount of time for any errors that the adapter might log.
  2317. *
  2318. * Return value:
  2319. * count on success / other on failure
  2320. **/
  2321. static ssize_t ipr_store_diagnostics(struct class_device *class_dev,
  2322. const char *buf, size_t count)
  2323. {
  2324. struct Scsi_Host *shost = class_to_shost(class_dev);
  2325. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2326. unsigned long lock_flags = 0;
  2327. int rc = count;
  2328. if (!capable(CAP_SYS_ADMIN))
  2329. return -EACCES;
  2330. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  2331. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2332. ioa_cfg->errors_logged = 0;
  2333. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
  2334. if (ioa_cfg->in_reset_reload) {
  2335. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2336. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  2337. /* Wait for a second for any errors to be logged */
  2338. msleep(1000);
  2339. } else {
  2340. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2341. return -EIO;
  2342. }
  2343. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2344. if (ioa_cfg->in_reset_reload || ioa_cfg->errors_logged)
  2345. rc = -EIO;
  2346. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2347. return rc;
  2348. }
  2349. static struct class_device_attribute ipr_diagnostics_attr = {
  2350. .attr = {
  2351. .name = "run_diagnostics",
  2352. .mode = S_IWUSR,
  2353. },
  2354. .store = ipr_store_diagnostics
  2355. };
  2356. /**
  2357. * ipr_show_adapter_state - Show the adapter's state
  2358. * @class_dev: class device struct
  2359. * @buf: buffer
  2360. *
  2361. * Return value:
  2362. * number of bytes printed to buffer
  2363. **/
  2364. static ssize_t ipr_show_adapter_state(struct class_device *class_dev, char *buf)
  2365. {
  2366. struct Scsi_Host *shost = class_to_shost(class_dev);
  2367. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2368. unsigned long lock_flags = 0;
  2369. int len;
  2370. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2371. if (ioa_cfg->ioa_is_dead)
  2372. len = snprintf(buf, PAGE_SIZE, "offline\n");
  2373. else
  2374. len = snprintf(buf, PAGE_SIZE, "online\n");
  2375. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2376. return len;
  2377. }
  2378. /**
  2379. * ipr_store_adapter_state - Change adapter state
  2380. * @class_dev: class_device struct
  2381. * @buf: buffer
  2382. * @count: buffer size
  2383. *
  2384. * This function will change the adapter's state.
  2385. *
  2386. * Return value:
  2387. * count on success / other on failure
  2388. **/
  2389. static ssize_t ipr_store_adapter_state(struct class_device *class_dev,
  2390. const char *buf, size_t count)
  2391. {
  2392. struct Scsi_Host *shost = class_to_shost(class_dev);
  2393. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2394. unsigned long lock_flags;
  2395. int result = count;
  2396. if (!capable(CAP_SYS_ADMIN))
  2397. return -EACCES;
  2398. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2399. if (ioa_cfg->ioa_is_dead && !strncmp(buf, "online", 6)) {
  2400. ioa_cfg->ioa_is_dead = 0;
  2401. ioa_cfg->reset_retries = 0;
  2402. ioa_cfg->in_ioa_bringdown = 0;
  2403. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  2404. }
  2405. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2406. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  2407. return result;
  2408. }
  2409. static struct class_device_attribute ipr_ioa_state_attr = {
  2410. .attr = {
  2411. .name = "state",
  2412. .mode = S_IRUGO | S_IWUSR,
  2413. },
  2414. .show = ipr_show_adapter_state,
  2415. .store = ipr_store_adapter_state
  2416. };
  2417. /**
  2418. * ipr_store_reset_adapter - Reset the adapter
  2419. * @class_dev: class_device struct
  2420. * @buf: buffer
  2421. * @count: buffer size
  2422. *
  2423. * This function will reset the adapter.
  2424. *
  2425. * Return value:
  2426. * count on success / other on failure
  2427. **/
  2428. static ssize_t ipr_store_reset_adapter(struct class_device *class_dev,
  2429. const char *buf, size_t count)
  2430. {
  2431. struct Scsi_Host *shost = class_to_shost(class_dev);
  2432. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2433. unsigned long lock_flags;
  2434. int result = count;
  2435. if (!capable(CAP_SYS_ADMIN))
  2436. return -EACCES;
  2437. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2438. if (!ioa_cfg->in_reset_reload)
  2439. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
  2440. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2441. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  2442. return result;
  2443. }
  2444. static struct class_device_attribute ipr_ioa_reset_attr = {
  2445. .attr = {
  2446. .name = "reset_host",
  2447. .mode = S_IWUSR,
  2448. },
  2449. .store = ipr_store_reset_adapter
  2450. };
  2451. /**
  2452. * ipr_alloc_ucode_buffer - Allocates a microcode download buffer
  2453. * @buf_len: buffer length
  2454. *
  2455. * Allocates a DMA'able buffer in chunks and assembles a scatter/gather
  2456. * list to use for microcode download
  2457. *
  2458. * Return value:
  2459. * pointer to sglist / NULL on failure
  2460. **/
  2461. static struct ipr_sglist *ipr_alloc_ucode_buffer(int buf_len)
  2462. {
  2463. int sg_size, order, bsize_elem, num_elem, i, j;
  2464. struct ipr_sglist *sglist;
  2465. struct scatterlist *scatterlist;
  2466. struct page *page;
  2467. /* Get the minimum size per scatter/gather element */
  2468. sg_size = buf_len / (IPR_MAX_SGLIST - 1);
  2469. /* Get the actual size per element */
  2470. order = get_order(sg_size);
  2471. /* Determine the actual number of bytes per element */
  2472. bsize_elem = PAGE_SIZE * (1 << order);
  2473. /* Determine the actual number of sg entries needed */
  2474. if (buf_len % bsize_elem)
  2475. num_elem = (buf_len / bsize_elem) + 1;
  2476. else
  2477. num_elem = buf_len / bsize_elem;
  2478. /* Allocate a scatter/gather list for the DMA */
  2479. sglist = kzalloc(sizeof(struct ipr_sglist) +
  2480. (sizeof(struct scatterlist) * (num_elem - 1)),
  2481. GFP_KERNEL);
  2482. if (sglist == NULL) {
  2483. ipr_trace;
  2484. return NULL;
  2485. }
  2486. scatterlist = sglist->scatterlist;
  2487. sglist->order = order;
  2488. sglist->num_sg = num_elem;
  2489. /* Allocate a bunch of sg elements */
  2490. for (i = 0; i < num_elem; i++) {
  2491. page = alloc_pages(GFP_KERNEL, order);
  2492. if (!page) {
  2493. ipr_trace;
  2494. /* Free up what we already allocated */
  2495. for (j = i - 1; j >= 0; j--)
  2496. __free_pages(scatterlist[j].page, order);
  2497. kfree(sglist);
  2498. return NULL;
  2499. }
  2500. scatterlist[i].page = page;
  2501. }
  2502. return sglist;
  2503. }
  2504. /**
  2505. * ipr_free_ucode_buffer - Frees a microcode download buffer
  2506. * @p_dnld: scatter/gather list pointer
  2507. *
  2508. * Free a DMA'able ucode download buffer previously allocated with
  2509. * ipr_alloc_ucode_buffer
  2510. *
  2511. * Return value:
  2512. * nothing
  2513. **/
  2514. static void ipr_free_ucode_buffer(struct ipr_sglist *sglist)
  2515. {
  2516. int i;
  2517. for (i = 0; i < sglist->num_sg; i++)
  2518. __free_pages(sglist->scatterlist[i].page, sglist->order);
  2519. kfree(sglist);
  2520. }
  2521. /**
  2522. * ipr_copy_ucode_buffer - Copy user buffer to kernel buffer
  2523. * @sglist: scatter/gather list pointer
  2524. * @buffer: buffer pointer
  2525. * @len: buffer length
  2526. *
  2527. * Copy a microcode image from a user buffer into a buffer allocated by
  2528. * ipr_alloc_ucode_buffer
  2529. *
  2530. * Return value:
  2531. * 0 on success / other on failure
  2532. **/
  2533. static int ipr_copy_ucode_buffer(struct ipr_sglist *sglist,
  2534. u8 *buffer, u32 len)
  2535. {
  2536. int bsize_elem, i, result = 0;
  2537. struct scatterlist *scatterlist;
  2538. void *kaddr;
  2539. /* Determine the actual number of bytes per element */
  2540. bsize_elem = PAGE_SIZE * (1 << sglist->order);
  2541. scatterlist = sglist->scatterlist;
  2542. for (i = 0; i < (len / bsize_elem); i++, buffer += bsize_elem) {
  2543. kaddr = kmap(scatterlist[i].page);
  2544. memcpy(kaddr, buffer, bsize_elem);
  2545. kunmap(scatterlist[i].page);
  2546. scatterlist[i].length = bsize_elem;
  2547. if (result != 0) {
  2548. ipr_trace;
  2549. return result;
  2550. }
  2551. }
  2552. if (len % bsize_elem) {
  2553. kaddr = kmap(scatterlist[i].page);
  2554. memcpy(kaddr, buffer, len % bsize_elem);
  2555. kunmap(scatterlist[i].page);
  2556. scatterlist[i].length = len % bsize_elem;
  2557. }
  2558. sglist->buffer_len = len;
  2559. return result;
  2560. }
  2561. /**
  2562. * ipr_build_ucode_ioadl - Build a microcode download IOADL
  2563. * @ipr_cmd: ipr command struct
  2564. * @sglist: scatter/gather list
  2565. *
  2566. * Builds a microcode download IOA data list (IOADL).
  2567. *
  2568. **/
  2569. static void ipr_build_ucode_ioadl(struct ipr_cmnd *ipr_cmd,
  2570. struct ipr_sglist *sglist)
  2571. {
  2572. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  2573. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  2574. struct scatterlist *scatterlist = sglist->scatterlist;
  2575. int i;
  2576. ipr_cmd->dma_use_sg = sglist->num_dma_sg;
  2577. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
  2578. ioarcb->write_data_transfer_length = cpu_to_be32(sglist->buffer_len);
  2579. ioarcb->write_ioadl_len =
  2580. cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
  2581. for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
  2582. ioadl[i].flags_and_data_len =
  2583. cpu_to_be32(IPR_IOADL_FLAGS_WRITE | sg_dma_len(&scatterlist[i]));
  2584. ioadl[i].address =
  2585. cpu_to_be32(sg_dma_address(&scatterlist[i]));
  2586. }
  2587. ioadl[i-1].flags_and_data_len |=
  2588. cpu_to_be32(IPR_IOADL_FLAGS_LAST);
  2589. }
  2590. /**
  2591. * ipr_update_ioa_ucode - Update IOA's microcode
  2592. * @ioa_cfg: ioa config struct
  2593. * @sglist: scatter/gather list
  2594. *
  2595. * Initiate an adapter reset to update the IOA's microcode
  2596. *
  2597. * Return value:
  2598. * 0 on success / -EIO on failure
  2599. **/
  2600. static int ipr_update_ioa_ucode(struct ipr_ioa_cfg *ioa_cfg,
  2601. struct ipr_sglist *sglist)
  2602. {
  2603. unsigned long lock_flags;
  2604. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2605. if (ioa_cfg->ucode_sglist) {
  2606. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2607. dev_err(&ioa_cfg->pdev->dev,
  2608. "Microcode download already in progress\n");
  2609. return -EIO;
  2610. }
  2611. sglist->num_dma_sg = pci_map_sg(ioa_cfg->pdev, sglist->scatterlist,
  2612. sglist->num_sg, DMA_TO_DEVICE);
  2613. if (!sglist->num_dma_sg) {
  2614. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2615. dev_err(&ioa_cfg->pdev->dev,
  2616. "Failed to map microcode download buffer!\n");
  2617. return -EIO;
  2618. }
  2619. ioa_cfg->ucode_sglist = sglist;
  2620. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
  2621. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2622. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  2623. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2624. ioa_cfg->ucode_sglist = NULL;
  2625. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2626. return 0;
  2627. }
  2628. /**
  2629. * ipr_store_update_fw - Update the firmware on the adapter
  2630. * @class_dev: class_device struct
  2631. * @buf: buffer
  2632. * @count: buffer size
  2633. *
  2634. * This function will update the firmware on the adapter.
  2635. *
  2636. * Return value:
  2637. * count on success / other on failure
  2638. **/
  2639. static ssize_t ipr_store_update_fw(struct class_device *class_dev,
  2640. const char *buf, size_t count)
  2641. {
  2642. struct Scsi_Host *shost = class_to_shost(class_dev);
  2643. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2644. struct ipr_ucode_image_header *image_hdr;
  2645. const struct firmware *fw_entry;
  2646. struct ipr_sglist *sglist;
  2647. char fname[100];
  2648. char *src;
  2649. int len, result, dnld_size;
  2650. if (!capable(CAP_SYS_ADMIN))
  2651. return -EACCES;
  2652. len = snprintf(fname, 99, "%s", buf);
  2653. fname[len-1] = '\0';
  2654. if(request_firmware(&fw_entry, fname, &ioa_cfg->pdev->dev)) {
  2655. dev_err(&ioa_cfg->pdev->dev, "Firmware file %s not found\n", fname);
  2656. return -EIO;
  2657. }
  2658. image_hdr = (struct ipr_ucode_image_header *)fw_entry->data;
  2659. if (be32_to_cpu(image_hdr->header_length) > fw_entry->size ||
  2660. (ioa_cfg->vpd_cbs->page3_data.card_type &&
  2661. ioa_cfg->vpd_cbs->page3_data.card_type != image_hdr->card_type)) {
  2662. dev_err(&ioa_cfg->pdev->dev, "Invalid microcode buffer\n");
  2663. release_firmware(fw_entry);
  2664. return -EINVAL;
  2665. }
  2666. src = (u8 *)image_hdr + be32_to_cpu(image_hdr->header_length);
  2667. dnld_size = fw_entry->size - be32_to_cpu(image_hdr->header_length);
  2668. sglist = ipr_alloc_ucode_buffer(dnld_size);
  2669. if (!sglist) {
  2670. dev_err(&ioa_cfg->pdev->dev, "Microcode buffer allocation failed\n");
  2671. release_firmware(fw_entry);
  2672. return -ENOMEM;
  2673. }
  2674. result = ipr_copy_ucode_buffer(sglist, src, dnld_size);
  2675. if (result) {
  2676. dev_err(&ioa_cfg->pdev->dev,
  2677. "Microcode buffer copy to DMA buffer failed\n");
  2678. goto out;
  2679. }
  2680. result = ipr_update_ioa_ucode(ioa_cfg, sglist);
  2681. if (!result)
  2682. result = count;
  2683. out:
  2684. ipr_free_ucode_buffer(sglist);
  2685. release_firmware(fw_entry);
  2686. return result;
  2687. }
  2688. static struct class_device_attribute ipr_update_fw_attr = {
  2689. .attr = {
  2690. .name = "update_fw",
  2691. .mode = S_IWUSR,
  2692. },
  2693. .store = ipr_store_update_fw
  2694. };
  2695. static struct class_device_attribute *ipr_ioa_attrs[] = {
  2696. &ipr_fw_version_attr,
  2697. &ipr_log_level_attr,
  2698. &ipr_diagnostics_attr,
  2699. &ipr_ioa_state_attr,
  2700. &ipr_ioa_reset_attr,
  2701. &ipr_update_fw_attr,
  2702. &ipr_ioa_cache_attr,
  2703. NULL,
  2704. };
  2705. #ifdef CONFIG_SCSI_IPR_DUMP
  2706. /**
  2707. * ipr_read_dump - Dump the adapter
  2708. * @kobj: kobject struct
  2709. * @bin_attr: bin_attribute struct
  2710. * @buf: buffer
  2711. * @off: offset
  2712. * @count: buffer size
  2713. *
  2714. * Return value:
  2715. * number of bytes printed to buffer
  2716. **/
  2717. static ssize_t ipr_read_dump(struct kobject *kobj,
  2718. struct bin_attribute *bin_attr,
  2719. char *buf, loff_t off, size_t count)
  2720. {
  2721. struct class_device *cdev = container_of(kobj,struct class_device,kobj);
  2722. struct Scsi_Host *shost = class_to_shost(cdev);
  2723. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2724. struct ipr_dump *dump;
  2725. unsigned long lock_flags = 0;
  2726. char *src;
  2727. int len;
  2728. size_t rc = count;
  2729. if (!capable(CAP_SYS_ADMIN))
  2730. return -EACCES;
  2731. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2732. dump = ioa_cfg->dump;
  2733. if (ioa_cfg->sdt_state != DUMP_OBTAINED || !dump) {
  2734. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2735. return 0;
  2736. }
  2737. kref_get(&dump->kref);
  2738. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2739. if (off > dump->driver_dump.hdr.len) {
  2740. kref_put(&dump->kref, ipr_release_dump);
  2741. return 0;
  2742. }
  2743. if (off + count > dump->driver_dump.hdr.len) {
  2744. count = dump->driver_dump.hdr.len - off;
  2745. rc = count;
  2746. }
  2747. if (count && off < sizeof(dump->driver_dump)) {
  2748. if (off + count > sizeof(dump->driver_dump))
  2749. len = sizeof(dump->driver_dump) - off;
  2750. else
  2751. len = count;
  2752. src = (u8 *)&dump->driver_dump + off;
  2753. memcpy(buf, src, len);
  2754. buf += len;
  2755. off += len;
  2756. count -= len;
  2757. }
  2758. off -= sizeof(dump->driver_dump);
  2759. if (count && off < offsetof(struct ipr_ioa_dump, ioa_data)) {
  2760. if (off + count > offsetof(struct ipr_ioa_dump, ioa_data))
  2761. len = offsetof(struct ipr_ioa_dump, ioa_data) - off;
  2762. else
  2763. len = count;
  2764. src = (u8 *)&dump->ioa_dump + off;
  2765. memcpy(buf, src, len);
  2766. buf += len;
  2767. off += len;
  2768. count -= len;
  2769. }
  2770. off -= offsetof(struct ipr_ioa_dump, ioa_data);
  2771. while (count) {
  2772. if ((off & PAGE_MASK) != ((off + count) & PAGE_MASK))
  2773. len = PAGE_ALIGN(off) - off;
  2774. else
  2775. len = count;
  2776. src = (u8 *)dump->ioa_dump.ioa_data[(off & PAGE_MASK) >> PAGE_SHIFT];
  2777. src += off & ~PAGE_MASK;
  2778. memcpy(buf, src, len);
  2779. buf += len;
  2780. off += len;
  2781. count -= len;
  2782. }
  2783. kref_put(&dump->kref, ipr_release_dump);
  2784. return rc;
  2785. }
  2786. /**
  2787. * ipr_alloc_dump - Prepare for adapter dump
  2788. * @ioa_cfg: ioa config struct
  2789. *
  2790. * Return value:
  2791. * 0 on success / other on failure
  2792. **/
  2793. static int ipr_alloc_dump(struct ipr_ioa_cfg *ioa_cfg)
  2794. {
  2795. struct ipr_dump *dump;
  2796. unsigned long lock_flags = 0;
  2797. dump = kzalloc(sizeof(struct ipr_dump), GFP_KERNEL);
  2798. if (!dump) {
  2799. ipr_err("Dump memory allocation failed\n");
  2800. return -ENOMEM;
  2801. }
  2802. kref_init(&dump->kref);
  2803. dump->ioa_cfg = ioa_cfg;
  2804. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2805. if (INACTIVE != ioa_cfg->sdt_state) {
  2806. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2807. kfree(dump);
  2808. return 0;
  2809. }
  2810. ioa_cfg->dump = dump;
  2811. ioa_cfg->sdt_state = WAIT_FOR_DUMP;
  2812. if (ioa_cfg->ioa_is_dead && !ioa_cfg->dump_taken) {
  2813. ioa_cfg->dump_taken = 1;
  2814. schedule_work(&ioa_cfg->work_q);
  2815. }
  2816. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2817. return 0;
  2818. }
  2819. /**
  2820. * ipr_free_dump - Free adapter dump memory
  2821. * @ioa_cfg: ioa config struct
  2822. *
  2823. * Return value:
  2824. * 0 on success / other on failure
  2825. **/
  2826. static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg)
  2827. {
  2828. struct ipr_dump *dump;
  2829. unsigned long lock_flags = 0;
  2830. ENTER;
  2831. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2832. dump = ioa_cfg->dump;
  2833. if (!dump) {
  2834. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2835. return 0;
  2836. }
  2837. ioa_cfg->dump = NULL;
  2838. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2839. kref_put(&dump->kref, ipr_release_dump);
  2840. LEAVE;
  2841. return 0;
  2842. }
  2843. /**
  2844. * ipr_write_dump - Setup dump state of adapter
  2845. * @kobj: kobject struct
  2846. * @bin_attr: bin_attribute struct
  2847. * @buf: buffer
  2848. * @off: offset
  2849. * @count: buffer size
  2850. *
  2851. * Return value:
  2852. * number of bytes printed to buffer
  2853. **/
  2854. static ssize_t ipr_write_dump(struct kobject *kobj,
  2855. struct bin_attribute *bin_attr,
  2856. char *buf, loff_t off, size_t count)
  2857. {
  2858. struct class_device *cdev = container_of(kobj,struct class_device,kobj);
  2859. struct Scsi_Host *shost = class_to_shost(cdev);
  2860. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
  2861. int rc;
  2862. if (!capable(CAP_SYS_ADMIN))
  2863. return -EACCES;
  2864. if (buf[0] == '1')
  2865. rc = ipr_alloc_dump(ioa_cfg);
  2866. else if (buf[0] == '0')
  2867. rc = ipr_free_dump(ioa_cfg);
  2868. else
  2869. return -EINVAL;
  2870. if (rc)
  2871. return rc;
  2872. else
  2873. return count;
  2874. }
  2875. static struct bin_attribute ipr_dump_attr = {
  2876. .attr = {
  2877. .name = "dump",
  2878. .mode = S_IRUSR | S_IWUSR,
  2879. },
  2880. .size = 0,
  2881. .read = ipr_read_dump,
  2882. .write = ipr_write_dump
  2883. };
  2884. #else
  2885. static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg) { return 0; };
  2886. #endif
  2887. /**
  2888. * ipr_change_queue_depth - Change the device's queue depth
  2889. * @sdev: scsi device struct
  2890. * @qdepth: depth to set
  2891. *
  2892. * Return value:
  2893. * actual depth set
  2894. **/
  2895. static int ipr_change_queue_depth(struct scsi_device *sdev, int qdepth)
  2896. {
  2897. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
  2898. struct ipr_resource_entry *res;
  2899. unsigned long lock_flags = 0;
  2900. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2901. res = (struct ipr_resource_entry *)sdev->hostdata;
  2902. if (res && ipr_is_gata(res) && qdepth > IPR_MAX_CMD_PER_ATA_LUN)
  2903. qdepth = IPR_MAX_CMD_PER_ATA_LUN;
  2904. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2905. scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
  2906. return sdev->queue_depth;
  2907. }
  2908. /**
  2909. * ipr_change_queue_type - Change the device's queue type
  2910. * @dsev: scsi device struct
  2911. * @tag_type: type of tags to use
  2912. *
  2913. * Return value:
  2914. * actual queue type set
  2915. **/
  2916. static int ipr_change_queue_type(struct scsi_device *sdev, int tag_type)
  2917. {
  2918. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
  2919. struct ipr_resource_entry *res;
  2920. unsigned long lock_flags = 0;
  2921. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2922. res = (struct ipr_resource_entry *)sdev->hostdata;
  2923. if (res) {
  2924. if (ipr_is_gscsi(res) && sdev->tagged_supported) {
  2925. /*
  2926. * We don't bother quiescing the device here since the
  2927. * adapter firmware does it for us.
  2928. */
  2929. scsi_set_tag_type(sdev, tag_type);
  2930. if (tag_type)
  2931. scsi_activate_tcq(sdev, sdev->queue_depth);
  2932. else
  2933. scsi_deactivate_tcq(sdev, sdev->queue_depth);
  2934. } else
  2935. tag_type = 0;
  2936. } else
  2937. tag_type = 0;
  2938. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2939. return tag_type;
  2940. }
  2941. /**
  2942. * ipr_show_adapter_handle - Show the adapter's resource handle for this device
  2943. * @dev: device struct
  2944. * @buf: buffer
  2945. *
  2946. * Return value:
  2947. * number of bytes printed to buffer
  2948. **/
  2949. static ssize_t ipr_show_adapter_handle(struct device *dev, struct device_attribute *attr, char *buf)
  2950. {
  2951. struct scsi_device *sdev = to_scsi_device(dev);
  2952. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
  2953. struct ipr_resource_entry *res;
  2954. unsigned long lock_flags = 0;
  2955. ssize_t len = -ENXIO;
  2956. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  2957. res = (struct ipr_resource_entry *)sdev->hostdata;
  2958. if (res)
  2959. len = snprintf(buf, PAGE_SIZE, "%08X\n", res->cfgte.res_handle);
  2960. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  2961. return len;
  2962. }
  2963. static struct device_attribute ipr_adapter_handle_attr = {
  2964. .attr = {
  2965. .name = "adapter_handle",
  2966. .mode = S_IRUSR,
  2967. },
  2968. .show = ipr_show_adapter_handle
  2969. };
  2970. static struct device_attribute *ipr_dev_attrs[] = {
  2971. &ipr_adapter_handle_attr,
  2972. NULL,
  2973. };
  2974. /**
  2975. * ipr_biosparam - Return the HSC mapping
  2976. * @sdev: scsi device struct
  2977. * @block_device: block device pointer
  2978. * @capacity: capacity of the device
  2979. * @parm: Array containing returned HSC values.
  2980. *
  2981. * This function generates the HSC parms that fdisk uses.
  2982. * We want to make sure we return something that places partitions
  2983. * on 4k boundaries for best performance with the IOA.
  2984. *
  2985. * Return value:
  2986. * 0 on success
  2987. **/
  2988. static int ipr_biosparam(struct scsi_device *sdev,
  2989. struct block_device *block_device,
  2990. sector_t capacity, int *parm)
  2991. {
  2992. int heads, sectors;
  2993. sector_t cylinders;
  2994. heads = 128;
  2995. sectors = 32;
  2996. cylinders = capacity;
  2997. sector_div(cylinders, (128 * 32));
  2998. /* return result */
  2999. parm[0] = heads;
  3000. parm[1] = sectors;
  3001. parm[2] = cylinders;
  3002. return 0;
  3003. }
  3004. /**
  3005. * ipr_find_starget - Find target based on bus/target.
  3006. * @starget: scsi target struct
  3007. *
  3008. * Return value:
  3009. * resource entry pointer if found / NULL if not found
  3010. **/
  3011. static struct ipr_resource_entry *ipr_find_starget(struct scsi_target *starget)
  3012. {
  3013. struct Scsi_Host *shost = dev_to_shost(&starget->dev);
  3014. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
  3015. struct ipr_resource_entry *res;
  3016. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  3017. if ((res->cfgte.res_addr.bus == starget->channel) &&
  3018. (res->cfgte.res_addr.target == starget->id) &&
  3019. (res->cfgte.res_addr.lun == 0)) {
  3020. return res;
  3021. }
  3022. }
  3023. return NULL;
  3024. }
  3025. static struct ata_port_info sata_port_info;
  3026. /**
  3027. * ipr_target_alloc - Prepare for commands to a SCSI target
  3028. * @starget: scsi target struct
  3029. *
  3030. * If the device is a SATA device, this function allocates an
  3031. * ATA port with libata, else it does nothing.
  3032. *
  3033. * Return value:
  3034. * 0 on success / non-0 on failure
  3035. **/
  3036. static int ipr_target_alloc(struct scsi_target *starget)
  3037. {
  3038. struct Scsi_Host *shost = dev_to_shost(&starget->dev);
  3039. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
  3040. struct ipr_sata_port *sata_port;
  3041. struct ata_port *ap;
  3042. struct ipr_resource_entry *res;
  3043. unsigned long lock_flags;
  3044. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3045. res = ipr_find_starget(starget);
  3046. starget->hostdata = NULL;
  3047. if (res && ipr_is_gata(res)) {
  3048. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3049. sata_port = kzalloc(sizeof(*sata_port), GFP_KERNEL);
  3050. if (!sata_port)
  3051. return -ENOMEM;
  3052. ap = ata_sas_port_alloc(&ioa_cfg->ata_host, &sata_port_info, shost);
  3053. if (ap) {
  3054. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3055. sata_port->ioa_cfg = ioa_cfg;
  3056. sata_port->ap = ap;
  3057. sata_port->res = res;
  3058. res->sata_port = sata_port;
  3059. ap->private_data = sata_port;
  3060. starget->hostdata = sata_port;
  3061. } else {
  3062. kfree(sata_port);
  3063. return -ENOMEM;
  3064. }
  3065. }
  3066. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3067. return 0;
  3068. }
  3069. /**
  3070. * ipr_target_destroy - Destroy a SCSI target
  3071. * @starget: scsi target struct
  3072. *
  3073. * If the device was a SATA device, this function frees the libata
  3074. * ATA port, else it does nothing.
  3075. *
  3076. **/
  3077. static void ipr_target_destroy(struct scsi_target *starget)
  3078. {
  3079. struct ipr_sata_port *sata_port = starget->hostdata;
  3080. if (sata_port) {
  3081. starget->hostdata = NULL;
  3082. ata_sas_port_destroy(sata_port->ap);
  3083. kfree(sata_port);
  3084. }
  3085. }
  3086. /**
  3087. * ipr_find_sdev - Find device based on bus/target/lun.
  3088. * @sdev: scsi device struct
  3089. *
  3090. * Return value:
  3091. * resource entry pointer if found / NULL if not found
  3092. **/
  3093. static struct ipr_resource_entry *ipr_find_sdev(struct scsi_device *sdev)
  3094. {
  3095. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
  3096. struct ipr_resource_entry *res;
  3097. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  3098. if ((res->cfgte.res_addr.bus == sdev->channel) &&
  3099. (res->cfgte.res_addr.target == sdev->id) &&
  3100. (res->cfgte.res_addr.lun == sdev->lun))
  3101. return res;
  3102. }
  3103. return NULL;
  3104. }
  3105. /**
  3106. * ipr_slave_destroy - Unconfigure a SCSI device
  3107. * @sdev: scsi device struct
  3108. *
  3109. * Return value:
  3110. * nothing
  3111. **/
  3112. static void ipr_slave_destroy(struct scsi_device *sdev)
  3113. {
  3114. struct ipr_resource_entry *res;
  3115. struct ipr_ioa_cfg *ioa_cfg;
  3116. unsigned long lock_flags = 0;
  3117. ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
  3118. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3119. res = (struct ipr_resource_entry *) sdev->hostdata;
  3120. if (res) {
  3121. if (res->sata_port)
  3122. ata_port_disable(res->sata_port->ap);
  3123. sdev->hostdata = NULL;
  3124. res->sdev = NULL;
  3125. res->sata_port = NULL;
  3126. }
  3127. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3128. }
  3129. /**
  3130. * ipr_slave_configure - Configure a SCSI device
  3131. * @sdev: scsi device struct
  3132. *
  3133. * This function configures the specified scsi device.
  3134. *
  3135. * Return value:
  3136. * 0 on success
  3137. **/
  3138. static int ipr_slave_configure(struct scsi_device *sdev)
  3139. {
  3140. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
  3141. struct ipr_resource_entry *res;
  3142. unsigned long lock_flags = 0;
  3143. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3144. res = sdev->hostdata;
  3145. if (res) {
  3146. if (ipr_is_af_dasd_device(res))
  3147. sdev->type = TYPE_RAID;
  3148. if (ipr_is_af_dasd_device(res) || ipr_is_ioa_resource(res)) {
  3149. sdev->scsi_level = 4;
  3150. sdev->no_uld_attach = 1;
  3151. }
  3152. if (ipr_is_vset_device(res)) {
  3153. sdev->timeout = IPR_VSET_RW_TIMEOUT;
  3154. blk_queue_max_sectors(sdev->request_queue, IPR_VSET_MAX_SECTORS);
  3155. }
  3156. if (ipr_is_vset_device(res) || ipr_is_scsi_disk(res))
  3157. sdev->allow_restart = 1;
  3158. if (ipr_is_gata(res) && res->sata_port) {
  3159. scsi_adjust_queue_depth(sdev, 0, IPR_MAX_CMD_PER_ATA_LUN);
  3160. ata_sas_slave_configure(sdev, res->sata_port->ap);
  3161. } else {
  3162. scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
  3163. }
  3164. }
  3165. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3166. return 0;
  3167. }
  3168. /**
  3169. * ipr_ata_slave_alloc - Prepare for commands to a SATA device
  3170. * @sdev: scsi device struct
  3171. *
  3172. * This function initializes an ATA port so that future commands
  3173. * sent through queuecommand will work.
  3174. *
  3175. * Return value:
  3176. * 0 on success
  3177. **/
  3178. static int ipr_ata_slave_alloc(struct scsi_device *sdev)
  3179. {
  3180. struct ipr_sata_port *sata_port = NULL;
  3181. int rc = -ENXIO;
  3182. ENTER;
  3183. if (sdev->sdev_target)
  3184. sata_port = sdev->sdev_target->hostdata;
  3185. if (sata_port)
  3186. rc = ata_sas_port_init(sata_port->ap);
  3187. if (rc)
  3188. ipr_slave_destroy(sdev);
  3189. LEAVE;
  3190. return rc;
  3191. }
  3192. /**
  3193. * ipr_slave_alloc - Prepare for commands to a device.
  3194. * @sdev: scsi device struct
  3195. *
  3196. * This function saves a pointer to the resource entry
  3197. * in the scsi device struct if the device exists. We
  3198. * can then use this pointer in ipr_queuecommand when
  3199. * handling new commands.
  3200. *
  3201. * Return value:
  3202. * 0 on success / -ENXIO if device does not exist
  3203. **/
  3204. static int ipr_slave_alloc(struct scsi_device *sdev)
  3205. {
  3206. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
  3207. struct ipr_resource_entry *res;
  3208. unsigned long lock_flags;
  3209. int rc = -ENXIO;
  3210. sdev->hostdata = NULL;
  3211. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3212. res = ipr_find_sdev(sdev);
  3213. if (res) {
  3214. res->sdev = sdev;
  3215. res->add_to_ml = 0;
  3216. res->in_erp = 0;
  3217. sdev->hostdata = res;
  3218. if (!ipr_is_naca_model(res))
  3219. res->needs_sync_complete = 1;
  3220. rc = 0;
  3221. if (ipr_is_gata(res)) {
  3222. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3223. return ipr_ata_slave_alloc(sdev);
  3224. }
  3225. }
  3226. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3227. return rc;
  3228. }
  3229. /**
  3230. * ipr_eh_host_reset - Reset the host adapter
  3231. * @scsi_cmd: scsi command struct
  3232. *
  3233. * Return value:
  3234. * SUCCESS / FAILED
  3235. **/
  3236. static int __ipr_eh_host_reset(struct scsi_cmnd * scsi_cmd)
  3237. {
  3238. struct ipr_ioa_cfg *ioa_cfg;
  3239. int rc;
  3240. ENTER;
  3241. ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
  3242. dev_err(&ioa_cfg->pdev->dev,
  3243. "Adapter being reset as a result of error recovery.\n");
  3244. if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
  3245. ioa_cfg->sdt_state = GET_DUMP;
  3246. rc = ipr_reset_reload(ioa_cfg, IPR_SHUTDOWN_ABBREV);
  3247. LEAVE;
  3248. return rc;
  3249. }
  3250. static int ipr_eh_host_reset(struct scsi_cmnd * cmd)
  3251. {
  3252. int rc;
  3253. spin_lock_irq(cmd->device->host->host_lock);
  3254. rc = __ipr_eh_host_reset(cmd);
  3255. spin_unlock_irq(cmd->device->host->host_lock);
  3256. return rc;
  3257. }
  3258. /**
  3259. * ipr_device_reset - Reset the device
  3260. * @ioa_cfg: ioa config struct
  3261. * @res: resource entry struct
  3262. *
  3263. * This function issues a device reset to the affected device.
  3264. * If the device is a SCSI device, a LUN reset will be sent
  3265. * to the device first. If that does not work, a target reset
  3266. * will be sent. If the device is a SATA device, a PHY reset will
  3267. * be sent.
  3268. *
  3269. * Return value:
  3270. * 0 on success / non-zero on failure
  3271. **/
  3272. static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
  3273. struct ipr_resource_entry *res)
  3274. {
  3275. struct ipr_cmnd *ipr_cmd;
  3276. struct ipr_ioarcb *ioarcb;
  3277. struct ipr_cmd_pkt *cmd_pkt;
  3278. struct ipr_ioarcb_ata_regs *regs;
  3279. u32 ioasc;
  3280. ENTER;
  3281. ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  3282. ioarcb = &ipr_cmd->ioarcb;
  3283. cmd_pkt = &ioarcb->cmd_pkt;
  3284. regs = &ioarcb->add_data.u.regs;
  3285. ioarcb->res_handle = res->cfgte.res_handle;
  3286. cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
  3287. cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
  3288. if (ipr_is_gata(res)) {
  3289. cmd_pkt->cdb[2] = IPR_ATA_PHY_RESET;
  3290. ioarcb->add_cmd_parms_len = cpu_to_be32(sizeof(regs->flags));
  3291. regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
  3292. }
  3293. ipr_send_blocking_cmd(ipr_cmd, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
  3294. ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  3295. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  3296. if (ipr_is_gata(res) && res->sata_port && ioasc != IPR_IOASC_IOA_WAS_RESET)
  3297. memcpy(&res->sata_port->ioasa, &ipr_cmd->ioasa.u.gata,
  3298. sizeof(struct ipr_ioasa_gata));
  3299. LEAVE;
  3300. return (IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0);
  3301. }
  3302. /**
  3303. * ipr_sata_reset - Reset the SATA port
  3304. * @ap: SATA port to reset
  3305. * @classes: class of the attached device
  3306. *
  3307. * This function issues a SATA phy reset to the affected ATA port.
  3308. *
  3309. * Return value:
  3310. * 0 on success / non-zero on failure
  3311. **/
  3312. static int ipr_sata_reset(struct ata_port *ap, unsigned int *classes)
  3313. {
  3314. struct ipr_sata_port *sata_port = ap->private_data;
  3315. struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
  3316. struct ipr_resource_entry *res;
  3317. unsigned long lock_flags = 0;
  3318. int rc = -ENXIO;
  3319. ENTER;
  3320. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3321. while(ioa_cfg->in_reset_reload) {
  3322. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3323. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  3324. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3325. }
  3326. res = sata_port->res;
  3327. if (res) {
  3328. rc = ipr_device_reset(ioa_cfg, res);
  3329. switch(res->cfgte.proto) {
  3330. case IPR_PROTO_SATA:
  3331. case IPR_PROTO_SAS_STP:
  3332. *classes = ATA_DEV_ATA;
  3333. break;
  3334. case IPR_PROTO_SATA_ATAPI:
  3335. case IPR_PROTO_SAS_STP_ATAPI:
  3336. *classes = ATA_DEV_ATAPI;
  3337. break;
  3338. default:
  3339. *classes = ATA_DEV_UNKNOWN;
  3340. break;
  3341. };
  3342. }
  3343. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3344. LEAVE;
  3345. return rc;
  3346. }
  3347. /**
  3348. * ipr_eh_dev_reset - Reset the device
  3349. * @scsi_cmd: scsi command struct
  3350. *
  3351. * This function issues a device reset to the affected device.
  3352. * A LUN reset will be sent to the device first. If that does
  3353. * not work, a target reset will be sent.
  3354. *
  3355. * Return value:
  3356. * SUCCESS / FAILED
  3357. **/
  3358. static int __ipr_eh_dev_reset(struct scsi_cmnd * scsi_cmd)
  3359. {
  3360. struct ipr_cmnd *ipr_cmd;
  3361. struct ipr_ioa_cfg *ioa_cfg;
  3362. struct ipr_resource_entry *res;
  3363. struct ata_port *ap;
  3364. int rc = 0;
  3365. ENTER;
  3366. ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
  3367. res = scsi_cmd->device->hostdata;
  3368. if (!res)
  3369. return FAILED;
  3370. /*
  3371. * If we are currently going through reset/reload, return failed. This will force the
  3372. * mid-layer to call ipr_eh_host_reset, which will then go to sleep and wait for the
  3373. * reset to complete
  3374. */
  3375. if (ioa_cfg->in_reset_reload)
  3376. return FAILED;
  3377. if (ioa_cfg->ioa_is_dead)
  3378. return FAILED;
  3379. list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
  3380. if (ipr_cmd->ioarcb.res_handle == res->cfgte.res_handle) {
  3381. if (ipr_cmd->scsi_cmd)
  3382. ipr_cmd->done = ipr_scsi_eh_done;
  3383. if (ipr_cmd->qc && !(ipr_cmd->qc->flags & ATA_QCFLAG_FAILED)) {
  3384. ipr_cmd->qc->err_mask |= AC_ERR_TIMEOUT;
  3385. ipr_cmd->qc->flags |= ATA_QCFLAG_FAILED;
  3386. }
  3387. }
  3388. }
  3389. res->resetting_device = 1;
  3390. scmd_printk(KERN_ERR, scsi_cmd, "Resetting device\n");
  3391. if (ipr_is_gata(res) && res->sata_port) {
  3392. ap = res->sata_port->ap;
  3393. spin_unlock_irq(scsi_cmd->device->host->host_lock);
  3394. ata_do_eh(ap, NULL, NULL, ipr_sata_reset, NULL);
  3395. spin_lock_irq(scsi_cmd->device->host->host_lock);
  3396. } else
  3397. rc = ipr_device_reset(ioa_cfg, res);
  3398. res->resetting_device = 0;
  3399. LEAVE;
  3400. return (rc ? FAILED : SUCCESS);
  3401. }
  3402. static int ipr_eh_dev_reset(struct scsi_cmnd * cmd)
  3403. {
  3404. int rc;
  3405. spin_lock_irq(cmd->device->host->host_lock);
  3406. rc = __ipr_eh_dev_reset(cmd);
  3407. spin_unlock_irq(cmd->device->host->host_lock);
  3408. return rc;
  3409. }
  3410. /**
  3411. * ipr_bus_reset_done - Op done function for bus reset.
  3412. * @ipr_cmd: ipr command struct
  3413. *
  3414. * This function is the op done function for a bus reset
  3415. *
  3416. * Return value:
  3417. * none
  3418. **/
  3419. static void ipr_bus_reset_done(struct ipr_cmnd *ipr_cmd)
  3420. {
  3421. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  3422. struct ipr_resource_entry *res;
  3423. ENTER;
  3424. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  3425. if (!memcmp(&res->cfgte.res_handle, &ipr_cmd->ioarcb.res_handle,
  3426. sizeof(res->cfgte.res_handle))) {
  3427. scsi_report_bus_reset(ioa_cfg->host, res->cfgte.res_addr.bus);
  3428. break;
  3429. }
  3430. }
  3431. /*
  3432. * If abort has not completed, indicate the reset has, else call the
  3433. * abort's done function to wake the sleeping eh thread
  3434. */
  3435. if (ipr_cmd->sibling->sibling)
  3436. ipr_cmd->sibling->sibling = NULL;
  3437. else
  3438. ipr_cmd->sibling->done(ipr_cmd->sibling);
  3439. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  3440. LEAVE;
  3441. }
  3442. /**
  3443. * ipr_abort_timeout - An abort task has timed out
  3444. * @ipr_cmd: ipr command struct
  3445. *
  3446. * This function handles when an abort task times out. If this
  3447. * happens we issue a bus reset since we have resources tied
  3448. * up that must be freed before returning to the midlayer.
  3449. *
  3450. * Return value:
  3451. * none
  3452. **/
  3453. static void ipr_abort_timeout(struct ipr_cmnd *ipr_cmd)
  3454. {
  3455. struct ipr_cmnd *reset_cmd;
  3456. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  3457. struct ipr_cmd_pkt *cmd_pkt;
  3458. unsigned long lock_flags = 0;
  3459. ENTER;
  3460. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3461. if (ipr_cmd->completion.done || ioa_cfg->in_reset_reload) {
  3462. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3463. return;
  3464. }
  3465. sdev_printk(KERN_ERR, ipr_cmd->u.sdev, "Abort timed out. Resetting bus.\n");
  3466. reset_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  3467. ipr_cmd->sibling = reset_cmd;
  3468. reset_cmd->sibling = ipr_cmd;
  3469. reset_cmd->ioarcb.res_handle = ipr_cmd->ioarcb.res_handle;
  3470. cmd_pkt = &reset_cmd->ioarcb.cmd_pkt;
  3471. cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
  3472. cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
  3473. cmd_pkt->cdb[2] = IPR_RESET_TYPE_SELECT | IPR_BUS_RESET;
  3474. ipr_do_req(reset_cmd, ipr_bus_reset_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
  3475. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3476. LEAVE;
  3477. }
  3478. /**
  3479. * ipr_cancel_op - Cancel specified op
  3480. * @scsi_cmd: scsi command struct
  3481. *
  3482. * This function cancels specified op.
  3483. *
  3484. * Return value:
  3485. * SUCCESS / FAILED
  3486. **/
  3487. static int ipr_cancel_op(struct scsi_cmnd * scsi_cmd)
  3488. {
  3489. struct ipr_cmnd *ipr_cmd;
  3490. struct ipr_ioa_cfg *ioa_cfg;
  3491. struct ipr_resource_entry *res;
  3492. struct ipr_cmd_pkt *cmd_pkt;
  3493. u32 ioasc;
  3494. int op_found = 0;
  3495. ENTER;
  3496. ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
  3497. res = scsi_cmd->device->hostdata;
  3498. /* If we are currently going through reset/reload, return failed.
  3499. * This will force the mid-layer to call ipr_eh_host_reset,
  3500. * which will then go to sleep and wait for the reset to complete
  3501. */
  3502. if (ioa_cfg->in_reset_reload || ioa_cfg->ioa_is_dead)
  3503. return FAILED;
  3504. if (!res || !ipr_is_gscsi(res))
  3505. return FAILED;
  3506. list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
  3507. if (ipr_cmd->scsi_cmd == scsi_cmd) {
  3508. ipr_cmd->done = ipr_scsi_eh_done;
  3509. op_found = 1;
  3510. break;
  3511. }
  3512. }
  3513. if (!op_found)
  3514. return SUCCESS;
  3515. ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  3516. ipr_cmd->ioarcb.res_handle = res->cfgte.res_handle;
  3517. cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
  3518. cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
  3519. cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
  3520. ipr_cmd->u.sdev = scsi_cmd->device;
  3521. scmd_printk(KERN_ERR, scsi_cmd, "Aborting command: %02X\n",
  3522. scsi_cmd->cmnd[0]);
  3523. ipr_send_blocking_cmd(ipr_cmd, ipr_abort_timeout, IPR_CANCEL_ALL_TIMEOUT);
  3524. ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  3525. /*
  3526. * If the abort task timed out and we sent a bus reset, we will get
  3527. * one the following responses to the abort
  3528. */
  3529. if (ioasc == IPR_IOASC_BUS_WAS_RESET || ioasc == IPR_IOASC_SYNC_REQUIRED) {
  3530. ioasc = 0;
  3531. ipr_trace;
  3532. }
  3533. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  3534. if (!ipr_is_naca_model(res))
  3535. res->needs_sync_complete = 1;
  3536. LEAVE;
  3537. return (IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS);
  3538. }
  3539. /**
  3540. * ipr_eh_abort - Abort a single op
  3541. * @scsi_cmd: scsi command struct
  3542. *
  3543. * Return value:
  3544. * SUCCESS / FAILED
  3545. **/
  3546. static int ipr_eh_abort(struct scsi_cmnd * scsi_cmd)
  3547. {
  3548. unsigned long flags;
  3549. int rc;
  3550. ENTER;
  3551. spin_lock_irqsave(scsi_cmd->device->host->host_lock, flags);
  3552. rc = ipr_cancel_op(scsi_cmd);
  3553. spin_unlock_irqrestore(scsi_cmd->device->host->host_lock, flags);
  3554. LEAVE;
  3555. return rc;
  3556. }
  3557. /**
  3558. * ipr_handle_other_interrupt - Handle "other" interrupts
  3559. * @ioa_cfg: ioa config struct
  3560. * @int_reg: interrupt register
  3561. *
  3562. * Return value:
  3563. * IRQ_NONE / IRQ_HANDLED
  3564. **/
  3565. static irqreturn_t ipr_handle_other_interrupt(struct ipr_ioa_cfg *ioa_cfg,
  3566. volatile u32 int_reg)
  3567. {
  3568. irqreturn_t rc = IRQ_HANDLED;
  3569. if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
  3570. /* Mask the interrupt */
  3571. writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.set_interrupt_mask_reg);
  3572. /* Clear the interrupt */
  3573. writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.clr_interrupt_reg);
  3574. int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
  3575. list_del(&ioa_cfg->reset_cmd->queue);
  3576. del_timer(&ioa_cfg->reset_cmd->timer);
  3577. ipr_reset_ioa_job(ioa_cfg->reset_cmd);
  3578. } else {
  3579. if (int_reg & IPR_PCII_IOA_UNIT_CHECKED)
  3580. ioa_cfg->ioa_unit_checked = 1;
  3581. else
  3582. dev_err(&ioa_cfg->pdev->dev,
  3583. "Permanent IOA failure. 0x%08X\n", int_reg);
  3584. if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
  3585. ioa_cfg->sdt_state = GET_DUMP;
  3586. ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
  3587. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  3588. }
  3589. return rc;
  3590. }
  3591. /**
  3592. * ipr_isr - Interrupt service routine
  3593. * @irq: irq number
  3594. * @devp: pointer to ioa config struct
  3595. *
  3596. * Return value:
  3597. * IRQ_NONE / IRQ_HANDLED
  3598. **/
  3599. static irqreturn_t ipr_isr(int irq, void *devp)
  3600. {
  3601. struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)devp;
  3602. unsigned long lock_flags = 0;
  3603. volatile u32 int_reg, int_mask_reg;
  3604. u32 ioasc;
  3605. u16 cmd_index;
  3606. struct ipr_cmnd *ipr_cmd;
  3607. irqreturn_t rc = IRQ_NONE;
  3608. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  3609. /* If interrupts are disabled, ignore the interrupt */
  3610. if (!ioa_cfg->allow_interrupts) {
  3611. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3612. return IRQ_NONE;
  3613. }
  3614. int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
  3615. int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
  3616. /* If an interrupt on the adapter did not occur, ignore it */
  3617. if (unlikely((int_reg & IPR_PCII_OPER_INTERRUPTS) == 0)) {
  3618. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3619. return IRQ_NONE;
  3620. }
  3621. while (1) {
  3622. ipr_cmd = NULL;
  3623. while ((be32_to_cpu(*ioa_cfg->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
  3624. ioa_cfg->toggle_bit) {
  3625. cmd_index = (be32_to_cpu(*ioa_cfg->hrrq_curr) &
  3626. IPR_HRRQ_REQ_RESP_HANDLE_MASK) >> IPR_HRRQ_REQ_RESP_HANDLE_SHIFT;
  3627. if (unlikely(cmd_index >= IPR_NUM_CMD_BLKS)) {
  3628. ioa_cfg->errors_logged++;
  3629. dev_err(&ioa_cfg->pdev->dev, "Invalid response handle from IOA\n");
  3630. if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
  3631. ioa_cfg->sdt_state = GET_DUMP;
  3632. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  3633. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3634. return IRQ_HANDLED;
  3635. }
  3636. ipr_cmd = ioa_cfg->ipr_cmnd_list[cmd_index];
  3637. ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  3638. ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, ioasc);
  3639. list_del(&ipr_cmd->queue);
  3640. del_timer(&ipr_cmd->timer);
  3641. ipr_cmd->done(ipr_cmd);
  3642. rc = IRQ_HANDLED;
  3643. if (ioa_cfg->hrrq_curr < ioa_cfg->hrrq_end) {
  3644. ioa_cfg->hrrq_curr++;
  3645. } else {
  3646. ioa_cfg->hrrq_curr = ioa_cfg->hrrq_start;
  3647. ioa_cfg->toggle_bit ^= 1u;
  3648. }
  3649. }
  3650. if (ipr_cmd != NULL) {
  3651. /* Clear the PCI interrupt */
  3652. writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg);
  3653. int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
  3654. } else
  3655. break;
  3656. }
  3657. if (unlikely(rc == IRQ_NONE))
  3658. rc = ipr_handle_other_interrupt(ioa_cfg, int_reg);
  3659. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  3660. return rc;
  3661. }
  3662. /**
  3663. * ipr_build_ioadl - Build a scatter/gather list and map the buffer
  3664. * @ioa_cfg: ioa config struct
  3665. * @ipr_cmd: ipr command struct
  3666. *
  3667. * Return value:
  3668. * 0 on success / -1 on failure
  3669. **/
  3670. static int ipr_build_ioadl(struct ipr_ioa_cfg *ioa_cfg,
  3671. struct ipr_cmnd *ipr_cmd)
  3672. {
  3673. int i;
  3674. struct scatterlist *sglist;
  3675. u32 length;
  3676. u32 ioadl_flags = 0;
  3677. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  3678. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  3679. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  3680. length = scsi_cmd->request_bufflen;
  3681. if (length == 0)
  3682. return 0;
  3683. if (scsi_cmd->use_sg) {
  3684. ipr_cmd->dma_use_sg = pci_map_sg(ioa_cfg->pdev,
  3685. scsi_cmd->request_buffer,
  3686. scsi_cmd->use_sg,
  3687. scsi_cmd->sc_data_direction);
  3688. if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
  3689. ioadl_flags = IPR_IOADL_FLAGS_WRITE;
  3690. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
  3691. ioarcb->write_data_transfer_length = cpu_to_be32(length);
  3692. ioarcb->write_ioadl_len =
  3693. cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
  3694. } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE) {
  3695. ioadl_flags = IPR_IOADL_FLAGS_READ;
  3696. ioarcb->read_data_transfer_length = cpu_to_be32(length);
  3697. ioarcb->read_ioadl_len =
  3698. cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
  3699. }
  3700. sglist = scsi_cmd->request_buffer;
  3701. for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
  3702. ioadl[i].flags_and_data_len =
  3703. cpu_to_be32(ioadl_flags | sg_dma_len(&sglist[i]));
  3704. ioadl[i].address =
  3705. cpu_to_be32(sg_dma_address(&sglist[i]));
  3706. }
  3707. if (likely(ipr_cmd->dma_use_sg)) {
  3708. ioadl[i-1].flags_and_data_len |=
  3709. cpu_to_be32(IPR_IOADL_FLAGS_LAST);
  3710. return 0;
  3711. } else
  3712. dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
  3713. } else {
  3714. if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
  3715. ioadl_flags = IPR_IOADL_FLAGS_WRITE;
  3716. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
  3717. ioarcb->write_data_transfer_length = cpu_to_be32(length);
  3718. ioarcb->write_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  3719. } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE) {
  3720. ioadl_flags = IPR_IOADL_FLAGS_READ;
  3721. ioarcb->read_data_transfer_length = cpu_to_be32(length);
  3722. ioarcb->read_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  3723. }
  3724. ipr_cmd->dma_handle = pci_map_single(ioa_cfg->pdev,
  3725. scsi_cmd->request_buffer, length,
  3726. scsi_cmd->sc_data_direction);
  3727. if (likely(!pci_dma_mapping_error(ipr_cmd->dma_handle))) {
  3728. ipr_cmd->dma_use_sg = 1;
  3729. ioadl[0].flags_and_data_len =
  3730. cpu_to_be32(ioadl_flags | length | IPR_IOADL_FLAGS_LAST);
  3731. ioadl[0].address = cpu_to_be32(ipr_cmd->dma_handle);
  3732. return 0;
  3733. } else
  3734. dev_err(&ioa_cfg->pdev->dev, "pci_map_single failed!\n");
  3735. }
  3736. return -1;
  3737. }
  3738. /**
  3739. * ipr_get_task_attributes - Translate SPI Q-Tag to task attributes
  3740. * @scsi_cmd: scsi command struct
  3741. *
  3742. * Return value:
  3743. * task attributes
  3744. **/
  3745. static u8 ipr_get_task_attributes(struct scsi_cmnd *scsi_cmd)
  3746. {
  3747. u8 tag[2];
  3748. u8 rc = IPR_FLAGS_LO_UNTAGGED_TASK;
  3749. if (scsi_populate_tag_msg(scsi_cmd, tag)) {
  3750. switch (tag[0]) {
  3751. case MSG_SIMPLE_TAG:
  3752. rc = IPR_FLAGS_LO_SIMPLE_TASK;
  3753. break;
  3754. case MSG_HEAD_TAG:
  3755. rc = IPR_FLAGS_LO_HEAD_OF_Q_TASK;
  3756. break;
  3757. case MSG_ORDERED_TAG:
  3758. rc = IPR_FLAGS_LO_ORDERED_TASK;
  3759. break;
  3760. };
  3761. }
  3762. return rc;
  3763. }
  3764. /**
  3765. * ipr_erp_done - Process completion of ERP for a device
  3766. * @ipr_cmd: ipr command struct
  3767. *
  3768. * This function copies the sense buffer into the scsi_cmd
  3769. * struct and pushes the scsi_done function.
  3770. *
  3771. * Return value:
  3772. * nothing
  3773. **/
  3774. static void ipr_erp_done(struct ipr_cmnd *ipr_cmd)
  3775. {
  3776. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  3777. struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
  3778. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  3779. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  3780. if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
  3781. scsi_cmd->result |= (DID_ERROR << 16);
  3782. scmd_printk(KERN_ERR, scsi_cmd,
  3783. "Request Sense failed with IOASC: 0x%08X\n", ioasc);
  3784. } else {
  3785. memcpy(scsi_cmd->sense_buffer, ipr_cmd->sense_buffer,
  3786. SCSI_SENSE_BUFFERSIZE);
  3787. }
  3788. if (res) {
  3789. if (!ipr_is_naca_model(res))
  3790. res->needs_sync_complete = 1;
  3791. res->in_erp = 0;
  3792. }
  3793. ipr_unmap_sglist(ioa_cfg, ipr_cmd);
  3794. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  3795. scsi_cmd->scsi_done(scsi_cmd);
  3796. }
  3797. /**
  3798. * ipr_reinit_ipr_cmnd_for_erp - Re-initialize a cmnd block to be used for ERP
  3799. * @ipr_cmd: ipr command struct
  3800. *
  3801. * Return value:
  3802. * none
  3803. **/
  3804. static void ipr_reinit_ipr_cmnd_for_erp(struct ipr_cmnd *ipr_cmd)
  3805. {
  3806. struct ipr_ioarcb *ioarcb;
  3807. struct ipr_ioasa *ioasa;
  3808. ioarcb = &ipr_cmd->ioarcb;
  3809. ioasa = &ipr_cmd->ioasa;
  3810. memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
  3811. ioarcb->write_data_transfer_length = 0;
  3812. ioarcb->read_data_transfer_length = 0;
  3813. ioarcb->write_ioadl_len = 0;
  3814. ioarcb->read_ioadl_len = 0;
  3815. ioasa->ioasc = 0;
  3816. ioasa->residual_data_len = 0;
  3817. }
  3818. /**
  3819. * ipr_erp_request_sense - Send request sense to a device
  3820. * @ipr_cmd: ipr command struct
  3821. *
  3822. * This function sends a request sense to a device as a result
  3823. * of a check condition.
  3824. *
  3825. * Return value:
  3826. * nothing
  3827. **/
  3828. static void ipr_erp_request_sense(struct ipr_cmnd *ipr_cmd)
  3829. {
  3830. struct ipr_cmd_pkt *cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
  3831. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  3832. if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
  3833. ipr_erp_done(ipr_cmd);
  3834. return;
  3835. }
  3836. ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
  3837. cmd_pkt->request_type = IPR_RQTYPE_SCSICDB;
  3838. cmd_pkt->cdb[0] = REQUEST_SENSE;
  3839. cmd_pkt->cdb[4] = SCSI_SENSE_BUFFERSIZE;
  3840. cmd_pkt->flags_hi |= IPR_FLAGS_HI_SYNC_OVERRIDE;
  3841. cmd_pkt->flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
  3842. cmd_pkt->timeout = cpu_to_be16(IPR_REQUEST_SENSE_TIMEOUT / HZ);
  3843. ipr_cmd->ioadl[0].flags_and_data_len =
  3844. cpu_to_be32(IPR_IOADL_FLAGS_READ_LAST | SCSI_SENSE_BUFFERSIZE);
  3845. ipr_cmd->ioadl[0].address =
  3846. cpu_to_be32(ipr_cmd->sense_buffer_dma);
  3847. ipr_cmd->ioarcb.read_ioadl_len =
  3848. cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  3849. ipr_cmd->ioarcb.read_data_transfer_length =
  3850. cpu_to_be32(SCSI_SENSE_BUFFERSIZE);
  3851. ipr_do_req(ipr_cmd, ipr_erp_done, ipr_timeout,
  3852. IPR_REQUEST_SENSE_TIMEOUT * 2);
  3853. }
  3854. /**
  3855. * ipr_erp_cancel_all - Send cancel all to a device
  3856. * @ipr_cmd: ipr command struct
  3857. *
  3858. * This function sends a cancel all to a device to clear the
  3859. * queue. If we are running TCQ on the device, QERR is set to 1,
  3860. * which means all outstanding ops have been dropped on the floor.
  3861. * Cancel all will return them to us.
  3862. *
  3863. * Return value:
  3864. * nothing
  3865. **/
  3866. static void ipr_erp_cancel_all(struct ipr_cmnd *ipr_cmd)
  3867. {
  3868. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  3869. struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
  3870. struct ipr_cmd_pkt *cmd_pkt;
  3871. res->in_erp = 1;
  3872. ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
  3873. if (!scsi_get_tag_type(scsi_cmd->device)) {
  3874. ipr_erp_request_sense(ipr_cmd);
  3875. return;
  3876. }
  3877. cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
  3878. cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
  3879. cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
  3880. ipr_do_req(ipr_cmd, ipr_erp_request_sense, ipr_timeout,
  3881. IPR_CANCEL_ALL_TIMEOUT);
  3882. }
  3883. /**
  3884. * ipr_dump_ioasa - Dump contents of IOASA
  3885. * @ioa_cfg: ioa config struct
  3886. * @ipr_cmd: ipr command struct
  3887. * @res: resource entry struct
  3888. *
  3889. * This function is invoked by the interrupt handler when ops
  3890. * fail. It will log the IOASA if appropriate. Only called
  3891. * for GPDD ops.
  3892. *
  3893. * Return value:
  3894. * none
  3895. **/
  3896. static void ipr_dump_ioasa(struct ipr_ioa_cfg *ioa_cfg,
  3897. struct ipr_cmnd *ipr_cmd, struct ipr_resource_entry *res)
  3898. {
  3899. int i;
  3900. u16 data_len;
  3901. u32 ioasc;
  3902. struct ipr_ioasa *ioasa = &ipr_cmd->ioasa;
  3903. __be32 *ioasa_data = (__be32 *)ioasa;
  3904. int error_index;
  3905. ioasc = be32_to_cpu(ioasa->ioasc) & IPR_IOASC_IOASC_MASK;
  3906. if (0 == ioasc)
  3907. return;
  3908. if (ioa_cfg->log_level < IPR_DEFAULT_LOG_LEVEL)
  3909. return;
  3910. error_index = ipr_get_error(ioasc);
  3911. if (ioa_cfg->log_level < IPR_MAX_LOG_LEVEL) {
  3912. /* Don't log an error if the IOA already logged one */
  3913. if (ioasa->ilid != 0)
  3914. return;
  3915. if (ipr_error_table[error_index].log_ioasa == 0)
  3916. return;
  3917. }
  3918. ipr_res_err(ioa_cfg, res, "%s\n", ipr_error_table[error_index].error);
  3919. if (sizeof(struct ipr_ioasa) < be16_to_cpu(ioasa->ret_stat_len))
  3920. data_len = sizeof(struct ipr_ioasa);
  3921. else
  3922. data_len = be16_to_cpu(ioasa->ret_stat_len);
  3923. ipr_err("IOASA Dump:\n");
  3924. for (i = 0; i < data_len / 4; i += 4) {
  3925. ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
  3926. be32_to_cpu(ioasa_data[i]),
  3927. be32_to_cpu(ioasa_data[i+1]),
  3928. be32_to_cpu(ioasa_data[i+2]),
  3929. be32_to_cpu(ioasa_data[i+3]));
  3930. }
  3931. }
  3932. /**
  3933. * ipr_gen_sense - Generate SCSI sense data from an IOASA
  3934. * @ioasa: IOASA
  3935. * @sense_buf: sense data buffer
  3936. *
  3937. * Return value:
  3938. * none
  3939. **/
  3940. static void ipr_gen_sense(struct ipr_cmnd *ipr_cmd)
  3941. {
  3942. u32 failing_lba;
  3943. u8 *sense_buf = ipr_cmd->scsi_cmd->sense_buffer;
  3944. struct ipr_resource_entry *res = ipr_cmd->scsi_cmd->device->hostdata;
  3945. struct ipr_ioasa *ioasa = &ipr_cmd->ioasa;
  3946. u32 ioasc = be32_to_cpu(ioasa->ioasc);
  3947. memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
  3948. if (ioasc >= IPR_FIRST_DRIVER_IOASC)
  3949. return;
  3950. ipr_cmd->scsi_cmd->result = SAM_STAT_CHECK_CONDITION;
  3951. if (ipr_is_vset_device(res) &&
  3952. ioasc == IPR_IOASC_MED_DO_NOT_REALLOC &&
  3953. ioasa->u.vset.failing_lba_hi != 0) {
  3954. sense_buf[0] = 0x72;
  3955. sense_buf[1] = IPR_IOASC_SENSE_KEY(ioasc);
  3956. sense_buf[2] = IPR_IOASC_SENSE_CODE(ioasc);
  3957. sense_buf[3] = IPR_IOASC_SENSE_QUAL(ioasc);
  3958. sense_buf[7] = 12;
  3959. sense_buf[8] = 0;
  3960. sense_buf[9] = 0x0A;
  3961. sense_buf[10] = 0x80;
  3962. failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_hi);
  3963. sense_buf[12] = (failing_lba & 0xff000000) >> 24;
  3964. sense_buf[13] = (failing_lba & 0x00ff0000) >> 16;
  3965. sense_buf[14] = (failing_lba & 0x0000ff00) >> 8;
  3966. sense_buf[15] = failing_lba & 0x000000ff;
  3967. failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
  3968. sense_buf[16] = (failing_lba & 0xff000000) >> 24;
  3969. sense_buf[17] = (failing_lba & 0x00ff0000) >> 16;
  3970. sense_buf[18] = (failing_lba & 0x0000ff00) >> 8;
  3971. sense_buf[19] = failing_lba & 0x000000ff;
  3972. } else {
  3973. sense_buf[0] = 0x70;
  3974. sense_buf[2] = IPR_IOASC_SENSE_KEY(ioasc);
  3975. sense_buf[12] = IPR_IOASC_SENSE_CODE(ioasc);
  3976. sense_buf[13] = IPR_IOASC_SENSE_QUAL(ioasc);
  3977. /* Illegal request */
  3978. if ((IPR_IOASC_SENSE_KEY(ioasc) == 0x05) &&
  3979. (be32_to_cpu(ioasa->ioasc_specific) & IPR_FIELD_POINTER_VALID)) {
  3980. sense_buf[7] = 10; /* additional length */
  3981. /* IOARCB was in error */
  3982. if (IPR_IOASC_SENSE_CODE(ioasc) == 0x24)
  3983. sense_buf[15] = 0xC0;
  3984. else /* Parameter data was invalid */
  3985. sense_buf[15] = 0x80;
  3986. sense_buf[16] =
  3987. ((IPR_FIELD_POINTER_MASK &
  3988. be32_to_cpu(ioasa->ioasc_specific)) >> 8) & 0xff;
  3989. sense_buf[17] =
  3990. (IPR_FIELD_POINTER_MASK &
  3991. be32_to_cpu(ioasa->ioasc_specific)) & 0xff;
  3992. } else {
  3993. if (ioasc == IPR_IOASC_MED_DO_NOT_REALLOC) {
  3994. if (ipr_is_vset_device(res))
  3995. failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
  3996. else
  3997. failing_lba = be32_to_cpu(ioasa->u.dasd.failing_lba);
  3998. sense_buf[0] |= 0x80; /* Or in the Valid bit */
  3999. sense_buf[3] = (failing_lba & 0xff000000) >> 24;
  4000. sense_buf[4] = (failing_lba & 0x00ff0000) >> 16;
  4001. sense_buf[5] = (failing_lba & 0x0000ff00) >> 8;
  4002. sense_buf[6] = failing_lba & 0x000000ff;
  4003. }
  4004. sense_buf[7] = 6; /* additional length */
  4005. }
  4006. }
  4007. }
  4008. /**
  4009. * ipr_get_autosense - Copy autosense data to sense buffer
  4010. * @ipr_cmd: ipr command struct
  4011. *
  4012. * This function copies the autosense buffer to the buffer
  4013. * in the scsi_cmd, if there is autosense available.
  4014. *
  4015. * Return value:
  4016. * 1 if autosense was available / 0 if not
  4017. **/
  4018. static int ipr_get_autosense(struct ipr_cmnd *ipr_cmd)
  4019. {
  4020. struct ipr_ioasa *ioasa = &ipr_cmd->ioasa;
  4021. if ((be32_to_cpu(ioasa->ioasc_specific) & IPR_AUTOSENSE_VALID) == 0)
  4022. return 0;
  4023. memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa->auto_sense.data,
  4024. min_t(u16, be16_to_cpu(ioasa->auto_sense.auto_sense_len),
  4025. SCSI_SENSE_BUFFERSIZE));
  4026. return 1;
  4027. }
  4028. /**
  4029. * ipr_erp_start - Process an error response for a SCSI op
  4030. * @ioa_cfg: ioa config struct
  4031. * @ipr_cmd: ipr command struct
  4032. *
  4033. * This function determines whether or not to initiate ERP
  4034. * on the affected device.
  4035. *
  4036. * Return value:
  4037. * nothing
  4038. **/
  4039. static void ipr_erp_start(struct ipr_ioa_cfg *ioa_cfg,
  4040. struct ipr_cmnd *ipr_cmd)
  4041. {
  4042. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  4043. struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
  4044. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  4045. if (!res) {
  4046. ipr_scsi_eh_done(ipr_cmd);
  4047. return;
  4048. }
  4049. if (ipr_is_gscsi(res))
  4050. ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
  4051. else
  4052. ipr_gen_sense(ipr_cmd);
  4053. switch (ioasc & IPR_IOASC_IOASC_MASK) {
  4054. case IPR_IOASC_ABORTED_CMD_TERM_BY_HOST:
  4055. if (ipr_is_naca_model(res))
  4056. scsi_cmd->result |= (DID_ABORT << 16);
  4057. else
  4058. scsi_cmd->result |= (DID_IMM_RETRY << 16);
  4059. break;
  4060. case IPR_IOASC_IR_RESOURCE_HANDLE:
  4061. case IPR_IOASC_IR_NO_CMDS_TO_2ND_IOA:
  4062. scsi_cmd->result |= (DID_NO_CONNECT << 16);
  4063. break;
  4064. case IPR_IOASC_HW_SEL_TIMEOUT:
  4065. scsi_cmd->result |= (DID_NO_CONNECT << 16);
  4066. if (!ipr_is_naca_model(res))
  4067. res->needs_sync_complete = 1;
  4068. break;
  4069. case IPR_IOASC_SYNC_REQUIRED:
  4070. if (!res->in_erp)
  4071. res->needs_sync_complete = 1;
  4072. scsi_cmd->result |= (DID_IMM_RETRY << 16);
  4073. break;
  4074. case IPR_IOASC_MED_DO_NOT_REALLOC: /* prevent retries */
  4075. case IPR_IOASA_IR_DUAL_IOA_DISABLED:
  4076. scsi_cmd->result |= (DID_PASSTHROUGH << 16);
  4077. break;
  4078. case IPR_IOASC_BUS_WAS_RESET:
  4079. case IPR_IOASC_BUS_WAS_RESET_BY_OTHER:
  4080. /*
  4081. * Report the bus reset and ask for a retry. The device
  4082. * will give CC/UA the next command.
  4083. */
  4084. if (!res->resetting_device)
  4085. scsi_report_bus_reset(ioa_cfg->host, scsi_cmd->device->channel);
  4086. scsi_cmd->result |= (DID_ERROR << 16);
  4087. if (!ipr_is_naca_model(res))
  4088. res->needs_sync_complete = 1;
  4089. break;
  4090. case IPR_IOASC_HW_DEV_BUS_STATUS:
  4091. scsi_cmd->result |= IPR_IOASC_SENSE_STATUS(ioasc);
  4092. if (IPR_IOASC_SENSE_STATUS(ioasc) == SAM_STAT_CHECK_CONDITION) {
  4093. if (!ipr_get_autosense(ipr_cmd)) {
  4094. if (!ipr_is_naca_model(res)) {
  4095. ipr_erp_cancel_all(ipr_cmd);
  4096. return;
  4097. }
  4098. }
  4099. }
  4100. if (!ipr_is_naca_model(res))
  4101. res->needs_sync_complete = 1;
  4102. break;
  4103. case IPR_IOASC_NR_INIT_CMD_REQUIRED:
  4104. break;
  4105. default:
  4106. if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
  4107. scsi_cmd->result |= (DID_ERROR << 16);
  4108. if (!ipr_is_vset_device(res) && !ipr_is_naca_model(res))
  4109. res->needs_sync_complete = 1;
  4110. break;
  4111. }
  4112. ipr_unmap_sglist(ioa_cfg, ipr_cmd);
  4113. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  4114. scsi_cmd->scsi_done(scsi_cmd);
  4115. }
  4116. /**
  4117. * ipr_scsi_done - mid-layer done function
  4118. * @ipr_cmd: ipr command struct
  4119. *
  4120. * This function is invoked by the interrupt handler for
  4121. * ops generated by the SCSI mid-layer
  4122. *
  4123. * Return value:
  4124. * none
  4125. **/
  4126. static void ipr_scsi_done(struct ipr_cmnd *ipr_cmd)
  4127. {
  4128. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4129. struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
  4130. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  4131. scsi_cmd->resid = be32_to_cpu(ipr_cmd->ioasa.residual_data_len);
  4132. if (likely(IPR_IOASC_SENSE_KEY(ioasc) == 0)) {
  4133. ipr_unmap_sglist(ioa_cfg, ipr_cmd);
  4134. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  4135. scsi_cmd->scsi_done(scsi_cmd);
  4136. } else
  4137. ipr_erp_start(ioa_cfg, ipr_cmd);
  4138. }
  4139. /**
  4140. * ipr_queuecommand - Queue a mid-layer request
  4141. * @scsi_cmd: scsi command struct
  4142. * @done: done function
  4143. *
  4144. * This function queues a request generated by the mid-layer.
  4145. *
  4146. * Return value:
  4147. * 0 on success
  4148. * SCSI_MLQUEUE_DEVICE_BUSY if device is busy
  4149. * SCSI_MLQUEUE_HOST_BUSY if host is busy
  4150. **/
  4151. static int ipr_queuecommand(struct scsi_cmnd *scsi_cmd,
  4152. void (*done) (struct scsi_cmnd *))
  4153. {
  4154. struct ipr_ioa_cfg *ioa_cfg;
  4155. struct ipr_resource_entry *res;
  4156. struct ipr_ioarcb *ioarcb;
  4157. struct ipr_cmnd *ipr_cmd;
  4158. int rc = 0;
  4159. scsi_cmd->scsi_done = done;
  4160. ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
  4161. res = scsi_cmd->device->hostdata;
  4162. scsi_cmd->result = (DID_OK << 16);
  4163. /*
  4164. * We are currently blocking all devices due to a host reset
  4165. * We have told the host to stop giving us new requests, but
  4166. * ERP ops don't count. FIXME
  4167. */
  4168. if (unlikely(!ioa_cfg->allow_cmds && !ioa_cfg->ioa_is_dead))
  4169. return SCSI_MLQUEUE_HOST_BUSY;
  4170. /*
  4171. * FIXME - Create scsi_set_host_offline interface
  4172. * and the ioa_is_dead check can be removed
  4173. */
  4174. if (unlikely(ioa_cfg->ioa_is_dead || !res)) {
  4175. memset(scsi_cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
  4176. scsi_cmd->result = (DID_NO_CONNECT << 16);
  4177. scsi_cmd->scsi_done(scsi_cmd);
  4178. return 0;
  4179. }
  4180. if (ipr_is_gata(res) && res->sata_port)
  4181. return ata_sas_queuecmd(scsi_cmd, done, res->sata_port->ap);
  4182. ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  4183. ioarcb = &ipr_cmd->ioarcb;
  4184. list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
  4185. memcpy(ioarcb->cmd_pkt.cdb, scsi_cmd->cmnd, scsi_cmd->cmd_len);
  4186. ipr_cmd->scsi_cmd = scsi_cmd;
  4187. ioarcb->res_handle = res->cfgte.res_handle;
  4188. ipr_cmd->done = ipr_scsi_done;
  4189. ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_PHYS_LOC(res->cfgte.res_addr));
  4190. if (ipr_is_gscsi(res) || ipr_is_vset_device(res)) {
  4191. if (scsi_cmd->underflow == 0)
  4192. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
  4193. if (res->needs_sync_complete) {
  4194. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_SYNC_COMPLETE;
  4195. res->needs_sync_complete = 0;
  4196. }
  4197. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
  4198. ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_DELAY_AFTER_RST;
  4199. ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_ALIGNED_BFR;
  4200. ioarcb->cmd_pkt.flags_lo |= ipr_get_task_attributes(scsi_cmd);
  4201. }
  4202. if (scsi_cmd->cmnd[0] >= 0xC0 &&
  4203. (!ipr_is_gscsi(res) || scsi_cmd->cmnd[0] == IPR_QUERY_RSRC_STATE))
  4204. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
  4205. if (likely(rc == 0))
  4206. rc = ipr_build_ioadl(ioa_cfg, ipr_cmd);
  4207. if (likely(rc == 0)) {
  4208. mb();
  4209. writel(be32_to_cpu(ipr_cmd->ioarcb.ioarcb_host_pci_addr),
  4210. ioa_cfg->regs.ioarrin_reg);
  4211. } else {
  4212. list_move_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  4213. return SCSI_MLQUEUE_HOST_BUSY;
  4214. }
  4215. return 0;
  4216. }
  4217. /**
  4218. * ipr_ioctl - IOCTL handler
  4219. * @sdev: scsi device struct
  4220. * @cmd: IOCTL cmd
  4221. * @arg: IOCTL arg
  4222. *
  4223. * Return value:
  4224. * 0 on success / other on failure
  4225. **/
  4226. static int ipr_ioctl(struct scsi_device *sdev, int cmd, void __user *arg)
  4227. {
  4228. struct ipr_resource_entry *res;
  4229. res = (struct ipr_resource_entry *)sdev->hostdata;
  4230. if (res && ipr_is_gata(res))
  4231. return ata_scsi_ioctl(sdev, cmd, arg);
  4232. return -EINVAL;
  4233. }
  4234. /**
  4235. * ipr_info - Get information about the card/driver
  4236. * @scsi_host: scsi host struct
  4237. *
  4238. * Return value:
  4239. * pointer to buffer with description string
  4240. **/
  4241. static const char * ipr_ioa_info(struct Scsi_Host *host)
  4242. {
  4243. static char buffer[512];
  4244. struct ipr_ioa_cfg *ioa_cfg;
  4245. unsigned long lock_flags = 0;
  4246. ioa_cfg = (struct ipr_ioa_cfg *) host->hostdata;
  4247. spin_lock_irqsave(host->host_lock, lock_flags);
  4248. sprintf(buffer, "IBM %X Storage Adapter", ioa_cfg->type);
  4249. spin_unlock_irqrestore(host->host_lock, lock_flags);
  4250. return buffer;
  4251. }
  4252. static struct scsi_host_template driver_template = {
  4253. .module = THIS_MODULE,
  4254. .name = "IPR",
  4255. .info = ipr_ioa_info,
  4256. .ioctl = ipr_ioctl,
  4257. .queuecommand = ipr_queuecommand,
  4258. .eh_abort_handler = ipr_eh_abort,
  4259. .eh_device_reset_handler = ipr_eh_dev_reset,
  4260. .eh_host_reset_handler = ipr_eh_host_reset,
  4261. .slave_alloc = ipr_slave_alloc,
  4262. .slave_configure = ipr_slave_configure,
  4263. .slave_destroy = ipr_slave_destroy,
  4264. .target_alloc = ipr_target_alloc,
  4265. .target_destroy = ipr_target_destroy,
  4266. .change_queue_depth = ipr_change_queue_depth,
  4267. .change_queue_type = ipr_change_queue_type,
  4268. .bios_param = ipr_biosparam,
  4269. .can_queue = IPR_MAX_COMMANDS,
  4270. .this_id = -1,
  4271. .sg_tablesize = IPR_MAX_SGLIST,
  4272. .max_sectors = IPR_IOA_MAX_SECTORS,
  4273. .cmd_per_lun = IPR_MAX_CMD_PER_LUN,
  4274. .use_clustering = ENABLE_CLUSTERING,
  4275. .shost_attrs = ipr_ioa_attrs,
  4276. .sdev_attrs = ipr_dev_attrs,
  4277. .proc_name = IPR_NAME
  4278. };
  4279. /**
  4280. * ipr_ata_phy_reset - libata phy_reset handler
  4281. * @ap: ata port to reset
  4282. *
  4283. **/
  4284. static void ipr_ata_phy_reset(struct ata_port *ap)
  4285. {
  4286. unsigned long flags;
  4287. struct ipr_sata_port *sata_port = ap->private_data;
  4288. struct ipr_resource_entry *res = sata_port->res;
  4289. struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
  4290. int rc;
  4291. ENTER;
  4292. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  4293. while(ioa_cfg->in_reset_reload) {
  4294. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  4295. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  4296. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  4297. }
  4298. if (!ioa_cfg->allow_cmds)
  4299. goto out_unlock;
  4300. rc = ipr_device_reset(ioa_cfg, res);
  4301. if (rc) {
  4302. ap->ops->port_disable(ap);
  4303. goto out_unlock;
  4304. }
  4305. switch(res->cfgte.proto) {
  4306. case IPR_PROTO_SATA:
  4307. case IPR_PROTO_SAS_STP:
  4308. ap->device[0].class = ATA_DEV_ATA;
  4309. break;
  4310. case IPR_PROTO_SATA_ATAPI:
  4311. case IPR_PROTO_SAS_STP_ATAPI:
  4312. ap->device[0].class = ATA_DEV_ATAPI;
  4313. break;
  4314. default:
  4315. ap->device[0].class = ATA_DEV_UNKNOWN;
  4316. ap->ops->port_disable(ap);
  4317. break;
  4318. };
  4319. out_unlock:
  4320. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  4321. LEAVE;
  4322. }
  4323. /**
  4324. * ipr_ata_post_internal - Cleanup after an internal command
  4325. * @qc: ATA queued command
  4326. *
  4327. * Return value:
  4328. * none
  4329. **/
  4330. static void ipr_ata_post_internal(struct ata_queued_cmd *qc)
  4331. {
  4332. struct ipr_sata_port *sata_port = qc->ap->private_data;
  4333. struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
  4334. struct ipr_cmnd *ipr_cmd;
  4335. unsigned long flags;
  4336. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  4337. while(ioa_cfg->in_reset_reload) {
  4338. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  4339. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  4340. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  4341. }
  4342. list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
  4343. if (ipr_cmd->qc == qc) {
  4344. ipr_device_reset(ioa_cfg, sata_port->res);
  4345. break;
  4346. }
  4347. }
  4348. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  4349. }
  4350. /**
  4351. * ipr_tf_read - Read the current ATA taskfile for the ATA port
  4352. * @ap: ATA port
  4353. * @tf: destination ATA taskfile
  4354. *
  4355. * Return value:
  4356. * none
  4357. **/
  4358. static void ipr_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
  4359. {
  4360. struct ipr_sata_port *sata_port = ap->private_data;
  4361. struct ipr_ioasa_gata *g = &sata_port->ioasa;
  4362. tf->feature = g->error;
  4363. tf->nsect = g->nsect;
  4364. tf->lbal = g->lbal;
  4365. tf->lbam = g->lbam;
  4366. tf->lbah = g->lbah;
  4367. tf->device = g->device;
  4368. tf->command = g->status;
  4369. tf->hob_nsect = g->hob_nsect;
  4370. tf->hob_lbal = g->hob_lbal;
  4371. tf->hob_lbam = g->hob_lbam;
  4372. tf->hob_lbah = g->hob_lbah;
  4373. tf->ctl = g->alt_status;
  4374. }
  4375. /**
  4376. * ipr_copy_sata_tf - Copy a SATA taskfile to an IOA data structure
  4377. * @regs: destination
  4378. * @tf: source ATA taskfile
  4379. *
  4380. * Return value:
  4381. * none
  4382. **/
  4383. static void ipr_copy_sata_tf(struct ipr_ioarcb_ata_regs *regs,
  4384. struct ata_taskfile *tf)
  4385. {
  4386. regs->feature = tf->feature;
  4387. regs->nsect = tf->nsect;
  4388. regs->lbal = tf->lbal;
  4389. regs->lbam = tf->lbam;
  4390. regs->lbah = tf->lbah;
  4391. regs->device = tf->device;
  4392. regs->command = tf->command;
  4393. regs->hob_feature = tf->hob_feature;
  4394. regs->hob_nsect = tf->hob_nsect;
  4395. regs->hob_lbal = tf->hob_lbal;
  4396. regs->hob_lbam = tf->hob_lbam;
  4397. regs->hob_lbah = tf->hob_lbah;
  4398. regs->ctl = tf->ctl;
  4399. }
  4400. /**
  4401. * ipr_sata_done - done function for SATA commands
  4402. * @ipr_cmd: ipr command struct
  4403. *
  4404. * This function is invoked by the interrupt handler for
  4405. * ops generated by the SCSI mid-layer to SATA devices
  4406. *
  4407. * Return value:
  4408. * none
  4409. **/
  4410. static void ipr_sata_done(struct ipr_cmnd *ipr_cmd)
  4411. {
  4412. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4413. struct ata_queued_cmd *qc = ipr_cmd->qc;
  4414. struct ipr_sata_port *sata_port = qc->ap->private_data;
  4415. struct ipr_resource_entry *res = sata_port->res;
  4416. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  4417. memcpy(&sata_port->ioasa, &ipr_cmd->ioasa.u.gata,
  4418. sizeof(struct ipr_ioasa_gata));
  4419. ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
  4420. if (be32_to_cpu(ipr_cmd->ioasa.ioasc_specific) & IPR_ATA_DEVICE_WAS_RESET)
  4421. scsi_report_device_reset(ioa_cfg->host, res->cfgte.res_addr.bus,
  4422. res->cfgte.res_addr.target);
  4423. if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
  4424. qc->err_mask |= __ac_err_mask(ipr_cmd->ioasa.u.gata.status);
  4425. else
  4426. qc->err_mask |= ac_err_mask(ipr_cmd->ioasa.u.gata.status);
  4427. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  4428. ata_qc_complete(qc);
  4429. }
  4430. /**
  4431. * ipr_build_ata_ioadl - Build an ATA scatter/gather list
  4432. * @ipr_cmd: ipr command struct
  4433. * @qc: ATA queued command
  4434. *
  4435. **/
  4436. static void ipr_build_ata_ioadl(struct ipr_cmnd *ipr_cmd,
  4437. struct ata_queued_cmd *qc)
  4438. {
  4439. u32 ioadl_flags = 0;
  4440. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  4441. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  4442. int len = qc->nbytes + qc->pad_len;
  4443. struct scatterlist *sg;
  4444. if (len == 0)
  4445. return;
  4446. if (qc->dma_dir == DMA_TO_DEVICE) {
  4447. ioadl_flags = IPR_IOADL_FLAGS_WRITE;
  4448. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
  4449. ioarcb->write_data_transfer_length = cpu_to_be32(len);
  4450. ioarcb->write_ioadl_len =
  4451. cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
  4452. } else if (qc->dma_dir == DMA_FROM_DEVICE) {
  4453. ioadl_flags = IPR_IOADL_FLAGS_READ;
  4454. ioarcb->read_data_transfer_length = cpu_to_be32(len);
  4455. ioarcb->read_ioadl_len =
  4456. cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
  4457. }
  4458. ata_for_each_sg(sg, qc) {
  4459. ioadl->flags_and_data_len = cpu_to_be32(ioadl_flags | sg_dma_len(sg));
  4460. ioadl->address = cpu_to_be32(sg_dma_address(sg));
  4461. if (ata_sg_is_last(sg, qc))
  4462. ioadl->flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
  4463. else
  4464. ioadl++;
  4465. }
  4466. }
  4467. /**
  4468. * ipr_qc_issue - Issue a SATA qc to a device
  4469. * @qc: queued command
  4470. *
  4471. * Return value:
  4472. * 0 if success
  4473. **/
  4474. static unsigned int ipr_qc_issue(struct ata_queued_cmd *qc)
  4475. {
  4476. struct ata_port *ap = qc->ap;
  4477. struct ipr_sata_port *sata_port = ap->private_data;
  4478. struct ipr_resource_entry *res = sata_port->res;
  4479. struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
  4480. struct ipr_cmnd *ipr_cmd;
  4481. struct ipr_ioarcb *ioarcb;
  4482. struct ipr_ioarcb_ata_regs *regs;
  4483. if (unlikely(!ioa_cfg->allow_cmds || ioa_cfg->ioa_is_dead))
  4484. return -EIO;
  4485. ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  4486. ioarcb = &ipr_cmd->ioarcb;
  4487. regs = &ioarcb->add_data.u.regs;
  4488. memset(&ioarcb->add_data, 0, sizeof(ioarcb->add_data));
  4489. ioarcb->add_cmd_parms_len = cpu_to_be32(sizeof(ioarcb->add_data.u.regs));
  4490. list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
  4491. ipr_cmd->qc = qc;
  4492. ipr_cmd->done = ipr_sata_done;
  4493. ipr_cmd->ioarcb.res_handle = res->cfgte.res_handle;
  4494. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_ATA_PASSTHRU;
  4495. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
  4496. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
  4497. ipr_cmd->dma_use_sg = qc->pad_len ? qc->n_elem + 1 : qc->n_elem;
  4498. ipr_build_ata_ioadl(ipr_cmd, qc);
  4499. regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
  4500. ipr_copy_sata_tf(regs, &qc->tf);
  4501. memcpy(ioarcb->cmd_pkt.cdb, qc->cdb, IPR_MAX_CDB_LEN);
  4502. ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_PHYS_LOC(res->cfgte.res_addr));
  4503. switch (qc->tf.protocol) {
  4504. case ATA_PROT_NODATA:
  4505. case ATA_PROT_PIO:
  4506. break;
  4507. case ATA_PROT_DMA:
  4508. regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
  4509. break;
  4510. case ATA_PROT_ATAPI:
  4511. case ATA_PROT_ATAPI_NODATA:
  4512. regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
  4513. break;
  4514. case ATA_PROT_ATAPI_DMA:
  4515. regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
  4516. regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
  4517. break;
  4518. default:
  4519. WARN_ON(1);
  4520. return -1;
  4521. }
  4522. mb();
  4523. writel(be32_to_cpu(ioarcb->ioarcb_host_pci_addr),
  4524. ioa_cfg->regs.ioarrin_reg);
  4525. return 0;
  4526. }
  4527. /**
  4528. * ipr_ata_check_status - Return last ATA status
  4529. * @ap: ATA port
  4530. *
  4531. * Return value:
  4532. * ATA status
  4533. **/
  4534. static u8 ipr_ata_check_status(struct ata_port *ap)
  4535. {
  4536. struct ipr_sata_port *sata_port = ap->private_data;
  4537. return sata_port->ioasa.status;
  4538. }
  4539. /**
  4540. * ipr_ata_check_altstatus - Return last ATA altstatus
  4541. * @ap: ATA port
  4542. *
  4543. * Return value:
  4544. * Alt ATA status
  4545. **/
  4546. static u8 ipr_ata_check_altstatus(struct ata_port *ap)
  4547. {
  4548. struct ipr_sata_port *sata_port = ap->private_data;
  4549. return sata_port->ioasa.alt_status;
  4550. }
  4551. static struct ata_port_operations ipr_sata_ops = {
  4552. .port_disable = ata_port_disable,
  4553. .check_status = ipr_ata_check_status,
  4554. .check_altstatus = ipr_ata_check_altstatus,
  4555. .dev_select = ata_noop_dev_select,
  4556. .phy_reset = ipr_ata_phy_reset,
  4557. .post_internal_cmd = ipr_ata_post_internal,
  4558. .tf_read = ipr_tf_read,
  4559. .qc_prep = ata_noop_qc_prep,
  4560. .qc_issue = ipr_qc_issue,
  4561. .port_start = ata_sas_port_start,
  4562. .port_stop = ata_sas_port_stop
  4563. };
  4564. static struct ata_port_info sata_port_info = {
  4565. .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | ATA_FLAG_SATA_RESET |
  4566. ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA,
  4567. .pio_mask = 0x10, /* pio4 */
  4568. .mwdma_mask = 0x07,
  4569. .udma_mask = 0x7f, /* udma0-6 */
  4570. .port_ops = &ipr_sata_ops
  4571. };
  4572. #ifdef CONFIG_PPC_PSERIES
  4573. static const u16 ipr_blocked_processors[] = {
  4574. PV_NORTHSTAR,
  4575. PV_PULSAR,
  4576. PV_POWER4,
  4577. PV_ICESTAR,
  4578. PV_SSTAR,
  4579. PV_POWER4p,
  4580. PV_630,
  4581. PV_630p
  4582. };
  4583. /**
  4584. * ipr_invalid_adapter - Determine if this adapter is supported on this hardware
  4585. * @ioa_cfg: ioa cfg struct
  4586. *
  4587. * Adapters that use Gemstone revision < 3.1 do not work reliably on
  4588. * certain pSeries hardware. This function determines if the given
  4589. * adapter is in one of these confgurations or not.
  4590. *
  4591. * Return value:
  4592. * 1 if adapter is not supported / 0 if adapter is supported
  4593. **/
  4594. static int ipr_invalid_adapter(struct ipr_ioa_cfg *ioa_cfg)
  4595. {
  4596. u8 rev_id;
  4597. int i;
  4598. if (ioa_cfg->type == 0x5702) {
  4599. if (pci_read_config_byte(ioa_cfg->pdev, PCI_REVISION_ID,
  4600. &rev_id) == PCIBIOS_SUCCESSFUL) {
  4601. if (rev_id < 4) {
  4602. for (i = 0; i < ARRAY_SIZE(ipr_blocked_processors); i++){
  4603. if (__is_processor(ipr_blocked_processors[i]))
  4604. return 1;
  4605. }
  4606. }
  4607. }
  4608. }
  4609. return 0;
  4610. }
  4611. #else
  4612. #define ipr_invalid_adapter(ioa_cfg) 0
  4613. #endif
  4614. /**
  4615. * ipr_ioa_bringdown_done - IOA bring down completion.
  4616. * @ipr_cmd: ipr command struct
  4617. *
  4618. * This function processes the completion of an adapter bring down.
  4619. * It wakes any reset sleepers.
  4620. *
  4621. * Return value:
  4622. * IPR_RC_JOB_RETURN
  4623. **/
  4624. static int ipr_ioa_bringdown_done(struct ipr_cmnd *ipr_cmd)
  4625. {
  4626. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4627. ENTER;
  4628. ioa_cfg->in_reset_reload = 0;
  4629. ioa_cfg->reset_retries = 0;
  4630. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  4631. wake_up_all(&ioa_cfg->reset_wait_q);
  4632. spin_unlock_irq(ioa_cfg->host->host_lock);
  4633. scsi_unblock_requests(ioa_cfg->host);
  4634. spin_lock_irq(ioa_cfg->host->host_lock);
  4635. LEAVE;
  4636. return IPR_RC_JOB_RETURN;
  4637. }
  4638. /**
  4639. * ipr_ioa_reset_done - IOA reset completion.
  4640. * @ipr_cmd: ipr command struct
  4641. *
  4642. * This function processes the completion of an adapter reset.
  4643. * It schedules any necessary mid-layer add/removes and
  4644. * wakes any reset sleepers.
  4645. *
  4646. * Return value:
  4647. * IPR_RC_JOB_RETURN
  4648. **/
  4649. static int ipr_ioa_reset_done(struct ipr_cmnd *ipr_cmd)
  4650. {
  4651. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4652. struct ipr_resource_entry *res;
  4653. struct ipr_hostrcb *hostrcb, *temp;
  4654. int i = 0;
  4655. ENTER;
  4656. ioa_cfg->in_reset_reload = 0;
  4657. ioa_cfg->allow_cmds = 1;
  4658. ioa_cfg->reset_cmd = NULL;
  4659. ioa_cfg->doorbell |= IPR_RUNTIME_RESET;
  4660. list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
  4661. if (ioa_cfg->allow_ml_add_del && (res->add_to_ml || res->del_from_ml)) {
  4662. ipr_trace;
  4663. break;
  4664. }
  4665. }
  4666. schedule_work(&ioa_cfg->work_q);
  4667. list_for_each_entry_safe(hostrcb, temp, &ioa_cfg->hostrcb_free_q, queue) {
  4668. list_del(&hostrcb->queue);
  4669. if (i++ < IPR_NUM_LOG_HCAMS)
  4670. ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
  4671. else
  4672. ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
  4673. }
  4674. dev_info(&ioa_cfg->pdev->dev, "IOA initialized.\n");
  4675. ioa_cfg->reset_retries = 0;
  4676. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  4677. wake_up_all(&ioa_cfg->reset_wait_q);
  4678. spin_unlock_irq(ioa_cfg->host->host_lock);
  4679. scsi_unblock_requests(ioa_cfg->host);
  4680. spin_lock_irq(ioa_cfg->host->host_lock);
  4681. if (!ioa_cfg->allow_cmds)
  4682. scsi_block_requests(ioa_cfg->host);
  4683. LEAVE;
  4684. return IPR_RC_JOB_RETURN;
  4685. }
  4686. /**
  4687. * ipr_set_sup_dev_dflt - Initialize a Set Supported Device buffer
  4688. * @supported_dev: supported device struct
  4689. * @vpids: vendor product id struct
  4690. *
  4691. * Return value:
  4692. * none
  4693. **/
  4694. static void ipr_set_sup_dev_dflt(struct ipr_supported_device *supported_dev,
  4695. struct ipr_std_inq_vpids *vpids)
  4696. {
  4697. memset(supported_dev, 0, sizeof(struct ipr_supported_device));
  4698. memcpy(&supported_dev->vpids, vpids, sizeof(struct ipr_std_inq_vpids));
  4699. supported_dev->num_records = 1;
  4700. supported_dev->data_length =
  4701. cpu_to_be16(sizeof(struct ipr_supported_device));
  4702. supported_dev->reserved = 0;
  4703. }
  4704. /**
  4705. * ipr_set_supported_devs - Send Set Supported Devices for a device
  4706. * @ipr_cmd: ipr command struct
  4707. *
  4708. * This function send a Set Supported Devices to the adapter
  4709. *
  4710. * Return value:
  4711. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  4712. **/
  4713. static int ipr_set_supported_devs(struct ipr_cmnd *ipr_cmd)
  4714. {
  4715. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4716. struct ipr_supported_device *supp_dev = &ioa_cfg->vpd_cbs->supp_dev;
  4717. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  4718. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  4719. struct ipr_resource_entry *res = ipr_cmd->u.res;
  4720. ipr_cmd->job_step = ipr_ioa_reset_done;
  4721. list_for_each_entry_continue(res, &ioa_cfg->used_res_q, queue) {
  4722. if (!ipr_is_scsi_disk(res))
  4723. continue;
  4724. ipr_cmd->u.res = res;
  4725. ipr_set_sup_dev_dflt(supp_dev, &res->cfgte.std_inq_data.vpids);
  4726. ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  4727. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
  4728. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
  4729. ioarcb->cmd_pkt.cdb[0] = IPR_SET_SUPPORTED_DEVICES;
  4730. ioarcb->cmd_pkt.cdb[7] = (sizeof(struct ipr_supported_device) >> 8) & 0xff;
  4731. ioarcb->cmd_pkt.cdb[8] = sizeof(struct ipr_supported_device) & 0xff;
  4732. ioadl->flags_and_data_len = cpu_to_be32(IPR_IOADL_FLAGS_WRITE_LAST |
  4733. sizeof(struct ipr_supported_device));
  4734. ioadl->address = cpu_to_be32(ioa_cfg->vpd_cbs_dma +
  4735. offsetof(struct ipr_misc_cbs, supp_dev));
  4736. ioarcb->write_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  4737. ioarcb->write_data_transfer_length =
  4738. cpu_to_be32(sizeof(struct ipr_supported_device));
  4739. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
  4740. IPR_SET_SUP_DEVICE_TIMEOUT);
  4741. ipr_cmd->job_step = ipr_set_supported_devs;
  4742. return IPR_RC_JOB_RETURN;
  4743. }
  4744. return IPR_RC_JOB_CONTINUE;
  4745. }
  4746. /**
  4747. * ipr_setup_write_cache - Disable write cache if needed
  4748. * @ipr_cmd: ipr command struct
  4749. *
  4750. * This function sets up adapters write cache to desired setting
  4751. *
  4752. * Return value:
  4753. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  4754. **/
  4755. static int ipr_setup_write_cache(struct ipr_cmnd *ipr_cmd)
  4756. {
  4757. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4758. ipr_cmd->job_step = ipr_set_supported_devs;
  4759. ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
  4760. struct ipr_resource_entry, queue);
  4761. if (ioa_cfg->cache_state != CACHE_DISABLED)
  4762. return IPR_RC_JOB_CONTINUE;
  4763. ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  4764. ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
  4765. ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
  4766. ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_SHUTDOWN_PREPARE_FOR_NORMAL;
  4767. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
  4768. return IPR_RC_JOB_RETURN;
  4769. }
  4770. /**
  4771. * ipr_get_mode_page - Locate specified mode page
  4772. * @mode_pages: mode page buffer
  4773. * @page_code: page code to find
  4774. * @len: minimum required length for mode page
  4775. *
  4776. * Return value:
  4777. * pointer to mode page / NULL on failure
  4778. **/
  4779. static void *ipr_get_mode_page(struct ipr_mode_pages *mode_pages,
  4780. u32 page_code, u32 len)
  4781. {
  4782. struct ipr_mode_page_hdr *mode_hdr;
  4783. u32 page_length;
  4784. u32 length;
  4785. if (!mode_pages || (mode_pages->hdr.length == 0))
  4786. return NULL;
  4787. length = (mode_pages->hdr.length + 1) - 4 - mode_pages->hdr.block_desc_len;
  4788. mode_hdr = (struct ipr_mode_page_hdr *)
  4789. (mode_pages->data + mode_pages->hdr.block_desc_len);
  4790. while (length) {
  4791. if (IPR_GET_MODE_PAGE_CODE(mode_hdr) == page_code) {
  4792. if (mode_hdr->page_length >= (len - sizeof(struct ipr_mode_page_hdr)))
  4793. return mode_hdr;
  4794. break;
  4795. } else {
  4796. page_length = (sizeof(struct ipr_mode_page_hdr) +
  4797. mode_hdr->page_length);
  4798. length -= page_length;
  4799. mode_hdr = (struct ipr_mode_page_hdr *)
  4800. ((unsigned long)mode_hdr + page_length);
  4801. }
  4802. }
  4803. return NULL;
  4804. }
  4805. /**
  4806. * ipr_check_term_power - Check for term power errors
  4807. * @ioa_cfg: ioa config struct
  4808. * @mode_pages: IOAFP mode pages buffer
  4809. *
  4810. * Check the IOAFP's mode page 28 for term power errors
  4811. *
  4812. * Return value:
  4813. * nothing
  4814. **/
  4815. static void ipr_check_term_power(struct ipr_ioa_cfg *ioa_cfg,
  4816. struct ipr_mode_pages *mode_pages)
  4817. {
  4818. int i;
  4819. int entry_length;
  4820. struct ipr_dev_bus_entry *bus;
  4821. struct ipr_mode_page28 *mode_page;
  4822. mode_page = ipr_get_mode_page(mode_pages, 0x28,
  4823. sizeof(struct ipr_mode_page28));
  4824. entry_length = mode_page->entry_length;
  4825. bus = mode_page->bus;
  4826. for (i = 0; i < mode_page->num_entries; i++) {
  4827. if (bus->flags & IPR_SCSI_ATTR_NO_TERM_PWR) {
  4828. dev_err(&ioa_cfg->pdev->dev,
  4829. "Term power is absent on scsi bus %d\n",
  4830. bus->res_addr.bus);
  4831. }
  4832. bus = (struct ipr_dev_bus_entry *)((char *)bus + entry_length);
  4833. }
  4834. }
  4835. /**
  4836. * ipr_scsi_bus_speed_limit - Limit the SCSI speed based on SES table
  4837. * @ioa_cfg: ioa config struct
  4838. *
  4839. * Looks through the config table checking for SES devices. If
  4840. * the SES device is in the SES table indicating a maximum SCSI
  4841. * bus speed, the speed is limited for the bus.
  4842. *
  4843. * Return value:
  4844. * none
  4845. **/
  4846. static void ipr_scsi_bus_speed_limit(struct ipr_ioa_cfg *ioa_cfg)
  4847. {
  4848. u32 max_xfer_rate;
  4849. int i;
  4850. for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
  4851. max_xfer_rate = ipr_get_max_scsi_speed(ioa_cfg, i,
  4852. ioa_cfg->bus_attr[i].bus_width);
  4853. if (max_xfer_rate < ioa_cfg->bus_attr[i].max_xfer_rate)
  4854. ioa_cfg->bus_attr[i].max_xfer_rate = max_xfer_rate;
  4855. }
  4856. }
  4857. /**
  4858. * ipr_modify_ioafp_mode_page_28 - Modify IOAFP Mode Page 28
  4859. * @ioa_cfg: ioa config struct
  4860. * @mode_pages: mode page 28 buffer
  4861. *
  4862. * Updates mode page 28 based on driver configuration
  4863. *
  4864. * Return value:
  4865. * none
  4866. **/
  4867. static void ipr_modify_ioafp_mode_page_28(struct ipr_ioa_cfg *ioa_cfg,
  4868. struct ipr_mode_pages *mode_pages)
  4869. {
  4870. int i, entry_length;
  4871. struct ipr_dev_bus_entry *bus;
  4872. struct ipr_bus_attributes *bus_attr;
  4873. struct ipr_mode_page28 *mode_page;
  4874. mode_page = ipr_get_mode_page(mode_pages, 0x28,
  4875. sizeof(struct ipr_mode_page28));
  4876. entry_length = mode_page->entry_length;
  4877. /* Loop for each device bus entry */
  4878. for (i = 0, bus = mode_page->bus;
  4879. i < mode_page->num_entries;
  4880. i++, bus = (struct ipr_dev_bus_entry *)((u8 *)bus + entry_length)) {
  4881. if (bus->res_addr.bus > IPR_MAX_NUM_BUSES) {
  4882. dev_err(&ioa_cfg->pdev->dev,
  4883. "Invalid resource address reported: 0x%08X\n",
  4884. IPR_GET_PHYS_LOC(bus->res_addr));
  4885. continue;
  4886. }
  4887. bus_attr = &ioa_cfg->bus_attr[i];
  4888. bus->extended_reset_delay = IPR_EXTENDED_RESET_DELAY;
  4889. bus->bus_width = bus_attr->bus_width;
  4890. bus->max_xfer_rate = cpu_to_be32(bus_attr->max_xfer_rate);
  4891. bus->flags &= ~IPR_SCSI_ATTR_QAS_MASK;
  4892. if (bus_attr->qas_enabled)
  4893. bus->flags |= IPR_SCSI_ATTR_ENABLE_QAS;
  4894. else
  4895. bus->flags |= IPR_SCSI_ATTR_DISABLE_QAS;
  4896. }
  4897. }
  4898. /**
  4899. * ipr_build_mode_select - Build a mode select command
  4900. * @ipr_cmd: ipr command struct
  4901. * @res_handle: resource handle to send command to
  4902. * @parm: Byte 2 of Mode Sense command
  4903. * @dma_addr: DMA buffer address
  4904. * @xfer_len: data transfer length
  4905. *
  4906. * Return value:
  4907. * none
  4908. **/
  4909. static void ipr_build_mode_select(struct ipr_cmnd *ipr_cmd,
  4910. __be32 res_handle, u8 parm, u32 dma_addr,
  4911. u8 xfer_len)
  4912. {
  4913. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  4914. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  4915. ioarcb->res_handle = res_handle;
  4916. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
  4917. ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
  4918. ioarcb->cmd_pkt.cdb[0] = MODE_SELECT;
  4919. ioarcb->cmd_pkt.cdb[1] = parm;
  4920. ioarcb->cmd_pkt.cdb[4] = xfer_len;
  4921. ioadl->flags_and_data_len =
  4922. cpu_to_be32(IPR_IOADL_FLAGS_WRITE_LAST | xfer_len);
  4923. ioadl->address = cpu_to_be32(dma_addr);
  4924. ioarcb->write_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  4925. ioarcb->write_data_transfer_length = cpu_to_be32(xfer_len);
  4926. }
  4927. /**
  4928. * ipr_ioafp_mode_select_page28 - Issue Mode Select Page 28 to IOA
  4929. * @ipr_cmd: ipr command struct
  4930. *
  4931. * This function sets up the SCSI bus attributes and sends
  4932. * a Mode Select for Page 28 to activate them.
  4933. *
  4934. * Return value:
  4935. * IPR_RC_JOB_RETURN
  4936. **/
  4937. static int ipr_ioafp_mode_select_page28(struct ipr_cmnd *ipr_cmd)
  4938. {
  4939. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4940. struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
  4941. int length;
  4942. ENTER;
  4943. ipr_scsi_bus_speed_limit(ioa_cfg);
  4944. ipr_check_term_power(ioa_cfg, mode_pages);
  4945. ipr_modify_ioafp_mode_page_28(ioa_cfg, mode_pages);
  4946. length = mode_pages->hdr.length + 1;
  4947. mode_pages->hdr.length = 0;
  4948. ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
  4949. ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
  4950. length);
  4951. ipr_cmd->job_step = ipr_setup_write_cache;
  4952. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
  4953. LEAVE;
  4954. return IPR_RC_JOB_RETURN;
  4955. }
  4956. /**
  4957. * ipr_build_mode_sense - Builds a mode sense command
  4958. * @ipr_cmd: ipr command struct
  4959. * @res: resource entry struct
  4960. * @parm: Byte 2 of mode sense command
  4961. * @dma_addr: DMA address of mode sense buffer
  4962. * @xfer_len: Size of DMA buffer
  4963. *
  4964. * Return value:
  4965. * none
  4966. **/
  4967. static void ipr_build_mode_sense(struct ipr_cmnd *ipr_cmd,
  4968. __be32 res_handle,
  4969. u8 parm, u32 dma_addr, u8 xfer_len)
  4970. {
  4971. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  4972. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  4973. ioarcb->res_handle = res_handle;
  4974. ioarcb->cmd_pkt.cdb[0] = MODE_SENSE;
  4975. ioarcb->cmd_pkt.cdb[2] = parm;
  4976. ioarcb->cmd_pkt.cdb[4] = xfer_len;
  4977. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
  4978. ioadl->flags_and_data_len =
  4979. cpu_to_be32(IPR_IOADL_FLAGS_READ_LAST | xfer_len);
  4980. ioadl->address = cpu_to_be32(dma_addr);
  4981. ioarcb->read_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  4982. ioarcb->read_data_transfer_length = cpu_to_be32(xfer_len);
  4983. }
  4984. /**
  4985. * ipr_reset_cmd_failed - Handle failure of IOA reset command
  4986. * @ipr_cmd: ipr command struct
  4987. *
  4988. * This function handles the failure of an IOA bringup command.
  4989. *
  4990. * Return value:
  4991. * IPR_RC_JOB_RETURN
  4992. **/
  4993. static int ipr_reset_cmd_failed(struct ipr_cmnd *ipr_cmd)
  4994. {
  4995. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  4996. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  4997. dev_err(&ioa_cfg->pdev->dev,
  4998. "0x%02X failed with IOASC: 0x%08X\n",
  4999. ipr_cmd->ioarcb.cmd_pkt.cdb[0], ioasc);
  5000. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  5001. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  5002. return IPR_RC_JOB_RETURN;
  5003. }
  5004. /**
  5005. * ipr_reset_mode_sense_failed - Handle failure of IOAFP mode sense
  5006. * @ipr_cmd: ipr command struct
  5007. *
  5008. * This function handles the failure of a Mode Sense to the IOAFP.
  5009. * Some adapters do not handle all mode pages.
  5010. *
  5011. * Return value:
  5012. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5013. **/
  5014. static int ipr_reset_mode_sense_failed(struct ipr_cmnd *ipr_cmd)
  5015. {
  5016. u32 ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  5017. if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
  5018. ipr_cmd->job_step = ipr_setup_write_cache;
  5019. return IPR_RC_JOB_CONTINUE;
  5020. }
  5021. return ipr_reset_cmd_failed(ipr_cmd);
  5022. }
  5023. /**
  5024. * ipr_ioafp_mode_sense_page28 - Issue Mode Sense Page 28 to IOA
  5025. * @ipr_cmd: ipr command struct
  5026. *
  5027. * This function send a Page 28 mode sense to the IOA to
  5028. * retrieve SCSI bus attributes.
  5029. *
  5030. * Return value:
  5031. * IPR_RC_JOB_RETURN
  5032. **/
  5033. static int ipr_ioafp_mode_sense_page28(struct ipr_cmnd *ipr_cmd)
  5034. {
  5035. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5036. ENTER;
  5037. ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
  5038. 0x28, ioa_cfg->vpd_cbs_dma +
  5039. offsetof(struct ipr_misc_cbs, mode_pages),
  5040. sizeof(struct ipr_mode_pages));
  5041. ipr_cmd->job_step = ipr_ioafp_mode_select_page28;
  5042. ipr_cmd->job_step_failed = ipr_reset_mode_sense_failed;
  5043. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
  5044. LEAVE;
  5045. return IPR_RC_JOB_RETURN;
  5046. }
  5047. /**
  5048. * ipr_init_res_table - Initialize the resource table
  5049. * @ipr_cmd: ipr command struct
  5050. *
  5051. * This function looks through the existing resource table, comparing
  5052. * it with the config table. This function will take care of old/new
  5053. * devices and schedule adding/removing them from the mid-layer
  5054. * as appropriate.
  5055. *
  5056. * Return value:
  5057. * IPR_RC_JOB_CONTINUE
  5058. **/
  5059. static int ipr_init_res_table(struct ipr_cmnd *ipr_cmd)
  5060. {
  5061. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5062. struct ipr_resource_entry *res, *temp;
  5063. struct ipr_config_table_entry *cfgte;
  5064. int found, i;
  5065. LIST_HEAD(old_res);
  5066. ENTER;
  5067. if (ioa_cfg->cfg_table->hdr.flags & IPR_UCODE_DOWNLOAD_REQ)
  5068. dev_err(&ioa_cfg->pdev->dev, "Microcode download required\n");
  5069. list_for_each_entry_safe(res, temp, &ioa_cfg->used_res_q, queue)
  5070. list_move_tail(&res->queue, &old_res);
  5071. for (i = 0; i < ioa_cfg->cfg_table->hdr.num_entries; i++) {
  5072. cfgte = &ioa_cfg->cfg_table->dev[i];
  5073. found = 0;
  5074. list_for_each_entry_safe(res, temp, &old_res, queue) {
  5075. if (!memcmp(&res->cfgte.res_addr,
  5076. &cfgte->res_addr, sizeof(cfgte->res_addr))) {
  5077. list_move_tail(&res->queue, &ioa_cfg->used_res_q);
  5078. found = 1;
  5079. break;
  5080. }
  5081. }
  5082. if (!found) {
  5083. if (list_empty(&ioa_cfg->free_res_q)) {
  5084. dev_err(&ioa_cfg->pdev->dev, "Too many devices attached\n");
  5085. break;
  5086. }
  5087. found = 1;
  5088. res = list_entry(ioa_cfg->free_res_q.next,
  5089. struct ipr_resource_entry, queue);
  5090. list_move_tail(&res->queue, &ioa_cfg->used_res_q);
  5091. ipr_init_res_entry(res);
  5092. res->add_to_ml = 1;
  5093. }
  5094. if (found)
  5095. memcpy(&res->cfgte, cfgte, sizeof(struct ipr_config_table_entry));
  5096. }
  5097. list_for_each_entry_safe(res, temp, &old_res, queue) {
  5098. if (res->sdev) {
  5099. res->del_from_ml = 1;
  5100. res->cfgte.res_handle = IPR_INVALID_RES_HANDLE;
  5101. list_move_tail(&res->queue, &ioa_cfg->used_res_q);
  5102. } else {
  5103. list_move_tail(&res->queue, &ioa_cfg->free_res_q);
  5104. }
  5105. }
  5106. ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
  5107. LEAVE;
  5108. return IPR_RC_JOB_CONTINUE;
  5109. }
  5110. /**
  5111. * ipr_ioafp_query_ioa_cfg - Send a Query IOA Config to the adapter.
  5112. * @ipr_cmd: ipr command struct
  5113. *
  5114. * This function sends a Query IOA Configuration command
  5115. * to the adapter to retrieve the IOA configuration table.
  5116. *
  5117. * Return value:
  5118. * IPR_RC_JOB_RETURN
  5119. **/
  5120. static int ipr_ioafp_query_ioa_cfg(struct ipr_cmnd *ipr_cmd)
  5121. {
  5122. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5123. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  5124. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  5125. struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
  5126. ENTER;
  5127. dev_info(&ioa_cfg->pdev->dev, "Adapter firmware version: %02X%02X%02X%02X\n",
  5128. ucode_vpd->major_release, ucode_vpd->card_type,
  5129. ucode_vpd->minor_release[0], ucode_vpd->minor_release[1]);
  5130. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
  5131. ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  5132. ioarcb->cmd_pkt.cdb[0] = IPR_QUERY_IOA_CONFIG;
  5133. ioarcb->cmd_pkt.cdb[7] = (sizeof(struct ipr_config_table) >> 8) & 0xff;
  5134. ioarcb->cmd_pkt.cdb[8] = sizeof(struct ipr_config_table) & 0xff;
  5135. ioarcb->read_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  5136. ioarcb->read_data_transfer_length =
  5137. cpu_to_be32(sizeof(struct ipr_config_table));
  5138. ioadl->address = cpu_to_be32(ioa_cfg->cfg_table_dma);
  5139. ioadl->flags_and_data_len =
  5140. cpu_to_be32(IPR_IOADL_FLAGS_READ_LAST | sizeof(struct ipr_config_table));
  5141. ipr_cmd->job_step = ipr_init_res_table;
  5142. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
  5143. LEAVE;
  5144. return IPR_RC_JOB_RETURN;
  5145. }
  5146. /**
  5147. * ipr_ioafp_inquiry - Send an Inquiry to the adapter.
  5148. * @ipr_cmd: ipr command struct
  5149. *
  5150. * This utility function sends an inquiry to the adapter.
  5151. *
  5152. * Return value:
  5153. * none
  5154. **/
  5155. static void ipr_ioafp_inquiry(struct ipr_cmnd *ipr_cmd, u8 flags, u8 page,
  5156. u32 dma_addr, u8 xfer_len)
  5157. {
  5158. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  5159. struct ipr_ioadl_desc *ioadl = ipr_cmd->ioadl;
  5160. ENTER;
  5161. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
  5162. ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  5163. ioarcb->cmd_pkt.cdb[0] = INQUIRY;
  5164. ioarcb->cmd_pkt.cdb[1] = flags;
  5165. ioarcb->cmd_pkt.cdb[2] = page;
  5166. ioarcb->cmd_pkt.cdb[4] = xfer_len;
  5167. ioarcb->read_ioadl_len = cpu_to_be32(sizeof(struct ipr_ioadl_desc));
  5168. ioarcb->read_data_transfer_length = cpu_to_be32(xfer_len);
  5169. ioadl->address = cpu_to_be32(dma_addr);
  5170. ioadl->flags_and_data_len =
  5171. cpu_to_be32(IPR_IOADL_FLAGS_READ_LAST | xfer_len);
  5172. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
  5173. LEAVE;
  5174. }
  5175. /**
  5176. * ipr_inquiry_page_supported - Is the given inquiry page supported
  5177. * @page0: inquiry page 0 buffer
  5178. * @page: page code.
  5179. *
  5180. * This function determines if the specified inquiry page is supported.
  5181. *
  5182. * Return value:
  5183. * 1 if page is supported / 0 if not
  5184. **/
  5185. static int ipr_inquiry_page_supported(struct ipr_inquiry_page0 *page0, u8 page)
  5186. {
  5187. int i;
  5188. for (i = 0; i < min_t(u8, page0->len, IPR_INQUIRY_PAGE0_ENTRIES); i++)
  5189. if (page0->page[i] == page)
  5190. return 1;
  5191. return 0;
  5192. }
  5193. /**
  5194. * ipr_ioafp_page3_inquiry - Send a Page 3 Inquiry to the adapter.
  5195. * @ipr_cmd: ipr command struct
  5196. *
  5197. * This function sends a Page 3 inquiry to the adapter
  5198. * to retrieve software VPD information.
  5199. *
  5200. * Return value:
  5201. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5202. **/
  5203. static int ipr_ioafp_page3_inquiry(struct ipr_cmnd *ipr_cmd)
  5204. {
  5205. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5206. struct ipr_inquiry_page0 *page0 = &ioa_cfg->vpd_cbs->page0_data;
  5207. ENTER;
  5208. if (!ipr_inquiry_page_supported(page0, 1))
  5209. ioa_cfg->cache_state = CACHE_NONE;
  5210. ipr_cmd->job_step = ipr_ioafp_query_ioa_cfg;
  5211. ipr_ioafp_inquiry(ipr_cmd, 1, 3,
  5212. ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page3_data),
  5213. sizeof(struct ipr_inquiry_page3));
  5214. LEAVE;
  5215. return IPR_RC_JOB_RETURN;
  5216. }
  5217. /**
  5218. * ipr_ioafp_page0_inquiry - Send a Page 0 Inquiry to the adapter.
  5219. * @ipr_cmd: ipr command struct
  5220. *
  5221. * This function sends a Page 0 inquiry to the adapter
  5222. * to retrieve supported inquiry pages.
  5223. *
  5224. * Return value:
  5225. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5226. **/
  5227. static int ipr_ioafp_page0_inquiry(struct ipr_cmnd *ipr_cmd)
  5228. {
  5229. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5230. char type[5];
  5231. ENTER;
  5232. /* Grab the type out of the VPD and store it away */
  5233. memcpy(type, ioa_cfg->vpd_cbs->ioa_vpd.std_inq_data.vpids.product_id, 4);
  5234. type[4] = '\0';
  5235. ioa_cfg->type = simple_strtoul((char *)type, NULL, 16);
  5236. ipr_cmd->job_step = ipr_ioafp_page3_inquiry;
  5237. ipr_ioafp_inquiry(ipr_cmd, 1, 0,
  5238. ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page0_data),
  5239. sizeof(struct ipr_inquiry_page0));
  5240. LEAVE;
  5241. return IPR_RC_JOB_RETURN;
  5242. }
  5243. /**
  5244. * ipr_ioafp_std_inquiry - Send a Standard Inquiry to the adapter.
  5245. * @ipr_cmd: ipr command struct
  5246. *
  5247. * This function sends a standard inquiry to the adapter.
  5248. *
  5249. * Return value:
  5250. * IPR_RC_JOB_RETURN
  5251. **/
  5252. static int ipr_ioafp_std_inquiry(struct ipr_cmnd *ipr_cmd)
  5253. {
  5254. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5255. ENTER;
  5256. ipr_cmd->job_step = ipr_ioafp_page0_inquiry;
  5257. ipr_ioafp_inquiry(ipr_cmd, 0, 0,
  5258. ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, ioa_vpd),
  5259. sizeof(struct ipr_ioa_vpd));
  5260. LEAVE;
  5261. return IPR_RC_JOB_RETURN;
  5262. }
  5263. /**
  5264. * ipr_ioafp_indentify_hrrq - Send Identify Host RRQ.
  5265. * @ipr_cmd: ipr command struct
  5266. *
  5267. * This function send an Identify Host Request Response Queue
  5268. * command to establish the HRRQ with the adapter.
  5269. *
  5270. * Return value:
  5271. * IPR_RC_JOB_RETURN
  5272. **/
  5273. static int ipr_ioafp_indentify_hrrq(struct ipr_cmnd *ipr_cmd)
  5274. {
  5275. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5276. struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
  5277. ENTER;
  5278. dev_info(&ioa_cfg->pdev->dev, "Starting IOA initialization sequence.\n");
  5279. ioarcb->cmd_pkt.cdb[0] = IPR_ID_HOST_RR_Q;
  5280. ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  5281. ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
  5282. ioarcb->cmd_pkt.cdb[2] =
  5283. ((u32) ioa_cfg->host_rrq_dma >> 24) & 0xff;
  5284. ioarcb->cmd_pkt.cdb[3] =
  5285. ((u32) ioa_cfg->host_rrq_dma >> 16) & 0xff;
  5286. ioarcb->cmd_pkt.cdb[4] =
  5287. ((u32) ioa_cfg->host_rrq_dma >> 8) & 0xff;
  5288. ioarcb->cmd_pkt.cdb[5] =
  5289. ((u32) ioa_cfg->host_rrq_dma) & 0xff;
  5290. ioarcb->cmd_pkt.cdb[7] =
  5291. ((sizeof(u32) * IPR_NUM_CMD_BLKS) >> 8) & 0xff;
  5292. ioarcb->cmd_pkt.cdb[8] =
  5293. (sizeof(u32) * IPR_NUM_CMD_BLKS) & 0xff;
  5294. ipr_cmd->job_step = ipr_ioafp_std_inquiry;
  5295. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
  5296. LEAVE;
  5297. return IPR_RC_JOB_RETURN;
  5298. }
  5299. /**
  5300. * ipr_reset_timer_done - Adapter reset timer function
  5301. * @ipr_cmd: ipr command struct
  5302. *
  5303. * Description: This function is used in adapter reset processing
  5304. * for timing events. If the reset_cmd pointer in the IOA
  5305. * config struct is not this adapter's we are doing nested
  5306. * resets and fail_all_ops will take care of freeing the
  5307. * command block.
  5308. *
  5309. * Return value:
  5310. * none
  5311. **/
  5312. static void ipr_reset_timer_done(struct ipr_cmnd *ipr_cmd)
  5313. {
  5314. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5315. unsigned long lock_flags = 0;
  5316. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  5317. if (ioa_cfg->reset_cmd == ipr_cmd) {
  5318. list_del(&ipr_cmd->queue);
  5319. ipr_cmd->done(ipr_cmd);
  5320. }
  5321. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  5322. }
  5323. /**
  5324. * ipr_reset_start_timer - Start a timer for adapter reset job
  5325. * @ipr_cmd: ipr command struct
  5326. * @timeout: timeout value
  5327. *
  5328. * Description: This function is used in adapter reset processing
  5329. * for timing events. If the reset_cmd pointer in the IOA
  5330. * config struct is not this adapter's we are doing nested
  5331. * resets and fail_all_ops will take care of freeing the
  5332. * command block.
  5333. *
  5334. * Return value:
  5335. * none
  5336. **/
  5337. static void ipr_reset_start_timer(struct ipr_cmnd *ipr_cmd,
  5338. unsigned long timeout)
  5339. {
  5340. list_add_tail(&ipr_cmd->queue, &ipr_cmd->ioa_cfg->pending_q);
  5341. ipr_cmd->done = ipr_reset_ioa_job;
  5342. ipr_cmd->timer.data = (unsigned long) ipr_cmd;
  5343. ipr_cmd->timer.expires = jiffies + timeout;
  5344. ipr_cmd->timer.function = (void (*)(unsigned long))ipr_reset_timer_done;
  5345. add_timer(&ipr_cmd->timer);
  5346. }
  5347. /**
  5348. * ipr_init_ioa_mem - Initialize ioa_cfg control block
  5349. * @ioa_cfg: ioa cfg struct
  5350. *
  5351. * Return value:
  5352. * nothing
  5353. **/
  5354. static void ipr_init_ioa_mem(struct ipr_ioa_cfg *ioa_cfg)
  5355. {
  5356. memset(ioa_cfg->host_rrq, 0, sizeof(u32) * IPR_NUM_CMD_BLKS);
  5357. /* Initialize Host RRQ pointers */
  5358. ioa_cfg->hrrq_start = ioa_cfg->host_rrq;
  5359. ioa_cfg->hrrq_end = &ioa_cfg->host_rrq[IPR_NUM_CMD_BLKS - 1];
  5360. ioa_cfg->hrrq_curr = ioa_cfg->hrrq_start;
  5361. ioa_cfg->toggle_bit = 1;
  5362. /* Zero out config table */
  5363. memset(ioa_cfg->cfg_table, 0, sizeof(struct ipr_config_table));
  5364. }
  5365. /**
  5366. * ipr_reset_enable_ioa - Enable the IOA following a reset.
  5367. * @ipr_cmd: ipr command struct
  5368. *
  5369. * This function reinitializes some control blocks and
  5370. * enables destructive diagnostics on the adapter.
  5371. *
  5372. * Return value:
  5373. * IPR_RC_JOB_RETURN
  5374. **/
  5375. static int ipr_reset_enable_ioa(struct ipr_cmnd *ipr_cmd)
  5376. {
  5377. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5378. volatile u32 int_reg;
  5379. ENTER;
  5380. ipr_cmd->job_step = ipr_ioafp_indentify_hrrq;
  5381. ipr_init_ioa_mem(ioa_cfg);
  5382. ioa_cfg->allow_interrupts = 1;
  5383. int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
  5384. if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
  5385. writel((IPR_PCII_ERROR_INTERRUPTS | IPR_PCII_HRRQ_UPDATED),
  5386. ioa_cfg->regs.clr_interrupt_mask_reg);
  5387. int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
  5388. return IPR_RC_JOB_CONTINUE;
  5389. }
  5390. /* Enable destructive diagnostics on IOA */
  5391. writel(ioa_cfg->doorbell, ioa_cfg->regs.set_uproc_interrupt_reg);
  5392. writel(IPR_PCII_OPER_INTERRUPTS, ioa_cfg->regs.clr_interrupt_mask_reg);
  5393. int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
  5394. dev_info(&ioa_cfg->pdev->dev, "Initializing IOA.\n");
  5395. ipr_cmd->timer.data = (unsigned long) ipr_cmd;
  5396. ipr_cmd->timer.expires = jiffies + (ipr_transop_timeout * HZ);
  5397. ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
  5398. ipr_cmd->done = ipr_reset_ioa_job;
  5399. add_timer(&ipr_cmd->timer);
  5400. list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
  5401. LEAVE;
  5402. return IPR_RC_JOB_RETURN;
  5403. }
  5404. /**
  5405. * ipr_reset_wait_for_dump - Wait for a dump to timeout.
  5406. * @ipr_cmd: ipr command struct
  5407. *
  5408. * This function is invoked when an adapter dump has run out
  5409. * of processing time.
  5410. *
  5411. * Return value:
  5412. * IPR_RC_JOB_CONTINUE
  5413. **/
  5414. static int ipr_reset_wait_for_dump(struct ipr_cmnd *ipr_cmd)
  5415. {
  5416. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5417. if (ioa_cfg->sdt_state == GET_DUMP)
  5418. ioa_cfg->sdt_state = ABORT_DUMP;
  5419. ipr_cmd->job_step = ipr_reset_alert;
  5420. return IPR_RC_JOB_CONTINUE;
  5421. }
  5422. /**
  5423. * ipr_unit_check_no_data - Log a unit check/no data error log
  5424. * @ioa_cfg: ioa config struct
  5425. *
  5426. * Logs an error indicating the adapter unit checked, but for some
  5427. * reason, we were unable to fetch the unit check buffer.
  5428. *
  5429. * Return value:
  5430. * nothing
  5431. **/
  5432. static void ipr_unit_check_no_data(struct ipr_ioa_cfg *ioa_cfg)
  5433. {
  5434. ioa_cfg->errors_logged++;
  5435. dev_err(&ioa_cfg->pdev->dev, "IOA unit check with no data\n");
  5436. }
  5437. /**
  5438. * ipr_get_unit_check_buffer - Get the unit check buffer from the IOA
  5439. * @ioa_cfg: ioa config struct
  5440. *
  5441. * Fetches the unit check buffer from the adapter by clocking the data
  5442. * through the mailbox register.
  5443. *
  5444. * Return value:
  5445. * nothing
  5446. **/
  5447. static void ipr_get_unit_check_buffer(struct ipr_ioa_cfg *ioa_cfg)
  5448. {
  5449. unsigned long mailbox;
  5450. struct ipr_hostrcb *hostrcb;
  5451. struct ipr_uc_sdt sdt;
  5452. int rc, length;
  5453. mailbox = readl(ioa_cfg->ioa_mailbox);
  5454. if (!ipr_sdt_is_fmt2(mailbox)) {
  5455. ipr_unit_check_no_data(ioa_cfg);
  5456. return;
  5457. }
  5458. memset(&sdt, 0, sizeof(struct ipr_uc_sdt));
  5459. rc = ipr_get_ldump_data_section(ioa_cfg, mailbox, (__be32 *) &sdt,
  5460. (sizeof(struct ipr_uc_sdt)) / sizeof(__be32));
  5461. if (rc || (be32_to_cpu(sdt.hdr.state) != IPR_FMT2_SDT_READY_TO_USE) ||
  5462. !(sdt.entry[0].flags & IPR_SDT_VALID_ENTRY)) {
  5463. ipr_unit_check_no_data(ioa_cfg);
  5464. return;
  5465. }
  5466. /* Find length of the first sdt entry (UC buffer) */
  5467. length = (be32_to_cpu(sdt.entry[0].end_offset) -
  5468. be32_to_cpu(sdt.entry[0].bar_str_offset)) & IPR_FMT2_MBX_ADDR_MASK;
  5469. hostrcb = list_entry(ioa_cfg->hostrcb_free_q.next,
  5470. struct ipr_hostrcb, queue);
  5471. list_del(&hostrcb->queue);
  5472. memset(&hostrcb->hcam, 0, sizeof(hostrcb->hcam));
  5473. rc = ipr_get_ldump_data_section(ioa_cfg,
  5474. be32_to_cpu(sdt.entry[0].bar_str_offset),
  5475. (__be32 *)&hostrcb->hcam,
  5476. min(length, (int)sizeof(hostrcb->hcam)) / sizeof(__be32));
  5477. if (!rc)
  5478. ipr_handle_log_data(ioa_cfg, hostrcb);
  5479. else
  5480. ipr_unit_check_no_data(ioa_cfg);
  5481. list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
  5482. }
  5483. /**
  5484. * ipr_reset_restore_cfg_space - Restore PCI config space.
  5485. * @ipr_cmd: ipr command struct
  5486. *
  5487. * Description: This function restores the saved PCI config space of
  5488. * the adapter, fails all outstanding ops back to the callers, and
  5489. * fetches the dump/unit check if applicable to this reset.
  5490. *
  5491. * Return value:
  5492. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5493. **/
  5494. static int ipr_reset_restore_cfg_space(struct ipr_cmnd *ipr_cmd)
  5495. {
  5496. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5497. int rc;
  5498. ENTER;
  5499. rc = pci_restore_state(ioa_cfg->pdev);
  5500. if (rc != PCIBIOS_SUCCESSFUL) {
  5501. ipr_cmd->ioasa.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
  5502. return IPR_RC_JOB_CONTINUE;
  5503. }
  5504. if (ipr_set_pcix_cmd_reg(ioa_cfg)) {
  5505. ipr_cmd->ioasa.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
  5506. return IPR_RC_JOB_CONTINUE;
  5507. }
  5508. ipr_fail_all_ops(ioa_cfg);
  5509. if (ioa_cfg->ioa_unit_checked) {
  5510. ioa_cfg->ioa_unit_checked = 0;
  5511. ipr_get_unit_check_buffer(ioa_cfg);
  5512. ipr_cmd->job_step = ipr_reset_alert;
  5513. ipr_reset_start_timer(ipr_cmd, 0);
  5514. return IPR_RC_JOB_RETURN;
  5515. }
  5516. if (ioa_cfg->in_ioa_bringdown) {
  5517. ipr_cmd->job_step = ipr_ioa_bringdown_done;
  5518. } else {
  5519. ipr_cmd->job_step = ipr_reset_enable_ioa;
  5520. if (GET_DUMP == ioa_cfg->sdt_state) {
  5521. ipr_reset_start_timer(ipr_cmd, IPR_DUMP_TIMEOUT);
  5522. ipr_cmd->job_step = ipr_reset_wait_for_dump;
  5523. schedule_work(&ioa_cfg->work_q);
  5524. return IPR_RC_JOB_RETURN;
  5525. }
  5526. }
  5527. ENTER;
  5528. return IPR_RC_JOB_CONTINUE;
  5529. }
  5530. /**
  5531. * ipr_reset_bist_done - BIST has completed on the adapter.
  5532. * @ipr_cmd: ipr command struct
  5533. *
  5534. * Description: Unblock config space and resume the reset process.
  5535. *
  5536. * Return value:
  5537. * IPR_RC_JOB_CONTINUE
  5538. **/
  5539. static int ipr_reset_bist_done(struct ipr_cmnd *ipr_cmd)
  5540. {
  5541. ENTER;
  5542. pci_unblock_user_cfg_access(ipr_cmd->ioa_cfg->pdev);
  5543. ipr_cmd->job_step = ipr_reset_restore_cfg_space;
  5544. LEAVE;
  5545. return IPR_RC_JOB_CONTINUE;
  5546. }
  5547. /**
  5548. * ipr_reset_start_bist - Run BIST on the adapter.
  5549. * @ipr_cmd: ipr command struct
  5550. *
  5551. * Description: This function runs BIST on the adapter, then delays 2 seconds.
  5552. *
  5553. * Return value:
  5554. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5555. **/
  5556. static int ipr_reset_start_bist(struct ipr_cmnd *ipr_cmd)
  5557. {
  5558. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5559. int rc;
  5560. ENTER;
  5561. pci_block_user_cfg_access(ioa_cfg->pdev);
  5562. rc = pci_write_config_byte(ioa_cfg->pdev, PCI_BIST, PCI_BIST_START);
  5563. if (rc != PCIBIOS_SUCCESSFUL) {
  5564. ipr_cmd->ioasa.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
  5565. rc = IPR_RC_JOB_CONTINUE;
  5566. } else {
  5567. ipr_cmd->job_step = ipr_reset_bist_done;
  5568. ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
  5569. rc = IPR_RC_JOB_RETURN;
  5570. }
  5571. LEAVE;
  5572. return rc;
  5573. }
  5574. /**
  5575. * ipr_reset_allowed - Query whether or not IOA can be reset
  5576. * @ioa_cfg: ioa config struct
  5577. *
  5578. * Return value:
  5579. * 0 if reset not allowed / non-zero if reset is allowed
  5580. **/
  5581. static int ipr_reset_allowed(struct ipr_ioa_cfg *ioa_cfg)
  5582. {
  5583. volatile u32 temp_reg;
  5584. temp_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
  5585. return ((temp_reg & IPR_PCII_CRITICAL_OPERATION) == 0);
  5586. }
  5587. /**
  5588. * ipr_reset_wait_to_start_bist - Wait for permission to reset IOA.
  5589. * @ipr_cmd: ipr command struct
  5590. *
  5591. * Description: This function waits for adapter permission to run BIST,
  5592. * then runs BIST. If the adapter does not give permission after a
  5593. * reasonable time, we will reset the adapter anyway. The impact of
  5594. * resetting the adapter without warning the adapter is the risk of
  5595. * losing the persistent error log on the adapter. If the adapter is
  5596. * reset while it is writing to the flash on the adapter, the flash
  5597. * segment will have bad ECC and be zeroed.
  5598. *
  5599. * Return value:
  5600. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5601. **/
  5602. static int ipr_reset_wait_to_start_bist(struct ipr_cmnd *ipr_cmd)
  5603. {
  5604. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5605. int rc = IPR_RC_JOB_RETURN;
  5606. if (!ipr_reset_allowed(ioa_cfg) && ipr_cmd->u.time_left) {
  5607. ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
  5608. ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
  5609. } else {
  5610. ipr_cmd->job_step = ipr_reset_start_bist;
  5611. rc = IPR_RC_JOB_CONTINUE;
  5612. }
  5613. return rc;
  5614. }
  5615. /**
  5616. * ipr_reset_alert_part2 - Alert the adapter of a pending reset
  5617. * @ipr_cmd: ipr command struct
  5618. *
  5619. * Description: This function alerts the adapter that it will be reset.
  5620. * If memory space is not currently enabled, proceed directly
  5621. * to running BIST on the adapter. The timer must always be started
  5622. * so we guarantee we do not run BIST from ipr_isr.
  5623. *
  5624. * Return value:
  5625. * IPR_RC_JOB_RETURN
  5626. **/
  5627. static int ipr_reset_alert(struct ipr_cmnd *ipr_cmd)
  5628. {
  5629. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5630. u16 cmd_reg;
  5631. int rc;
  5632. ENTER;
  5633. rc = pci_read_config_word(ioa_cfg->pdev, PCI_COMMAND, &cmd_reg);
  5634. if ((rc == PCIBIOS_SUCCESSFUL) && (cmd_reg & PCI_COMMAND_MEMORY)) {
  5635. ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
  5636. writel(IPR_UPROCI_RESET_ALERT, ioa_cfg->regs.set_uproc_interrupt_reg);
  5637. ipr_cmd->job_step = ipr_reset_wait_to_start_bist;
  5638. } else {
  5639. ipr_cmd->job_step = ipr_reset_start_bist;
  5640. }
  5641. ipr_cmd->u.time_left = IPR_WAIT_FOR_RESET_TIMEOUT;
  5642. ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
  5643. LEAVE;
  5644. return IPR_RC_JOB_RETURN;
  5645. }
  5646. /**
  5647. * ipr_reset_ucode_download_done - Microcode download completion
  5648. * @ipr_cmd: ipr command struct
  5649. *
  5650. * Description: This function unmaps the microcode download buffer.
  5651. *
  5652. * Return value:
  5653. * IPR_RC_JOB_CONTINUE
  5654. **/
  5655. static int ipr_reset_ucode_download_done(struct ipr_cmnd *ipr_cmd)
  5656. {
  5657. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5658. struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
  5659. pci_unmap_sg(ioa_cfg->pdev, sglist->scatterlist,
  5660. sglist->num_sg, DMA_TO_DEVICE);
  5661. ipr_cmd->job_step = ipr_reset_alert;
  5662. return IPR_RC_JOB_CONTINUE;
  5663. }
  5664. /**
  5665. * ipr_reset_ucode_download - Download microcode to the adapter
  5666. * @ipr_cmd: ipr command struct
  5667. *
  5668. * Description: This function checks to see if it there is microcode
  5669. * to download to the adapter. If there is, a download is performed.
  5670. *
  5671. * Return value:
  5672. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5673. **/
  5674. static int ipr_reset_ucode_download(struct ipr_cmnd *ipr_cmd)
  5675. {
  5676. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5677. struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
  5678. ENTER;
  5679. ipr_cmd->job_step = ipr_reset_alert;
  5680. if (!sglist)
  5681. return IPR_RC_JOB_CONTINUE;
  5682. ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  5683. ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
  5684. ipr_cmd->ioarcb.cmd_pkt.cdb[0] = WRITE_BUFFER;
  5685. ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_WR_BUF_DOWNLOAD_AND_SAVE;
  5686. ipr_cmd->ioarcb.cmd_pkt.cdb[6] = (sglist->buffer_len & 0xff0000) >> 16;
  5687. ipr_cmd->ioarcb.cmd_pkt.cdb[7] = (sglist->buffer_len & 0x00ff00) >> 8;
  5688. ipr_cmd->ioarcb.cmd_pkt.cdb[8] = sglist->buffer_len & 0x0000ff;
  5689. ipr_build_ucode_ioadl(ipr_cmd, sglist);
  5690. ipr_cmd->job_step = ipr_reset_ucode_download_done;
  5691. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
  5692. IPR_WRITE_BUFFER_TIMEOUT);
  5693. LEAVE;
  5694. return IPR_RC_JOB_RETURN;
  5695. }
  5696. /**
  5697. * ipr_reset_shutdown_ioa - Shutdown the adapter
  5698. * @ipr_cmd: ipr command struct
  5699. *
  5700. * Description: This function issues an adapter shutdown of the
  5701. * specified type to the specified adapter as part of the
  5702. * adapter reset job.
  5703. *
  5704. * Return value:
  5705. * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
  5706. **/
  5707. static int ipr_reset_shutdown_ioa(struct ipr_cmnd *ipr_cmd)
  5708. {
  5709. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5710. enum ipr_shutdown_type shutdown_type = ipr_cmd->u.shutdown_type;
  5711. unsigned long timeout;
  5712. int rc = IPR_RC_JOB_CONTINUE;
  5713. ENTER;
  5714. if (shutdown_type != IPR_SHUTDOWN_NONE && !ioa_cfg->ioa_is_dead) {
  5715. ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
  5716. ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
  5717. ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
  5718. ipr_cmd->ioarcb.cmd_pkt.cdb[1] = shutdown_type;
  5719. if (shutdown_type == IPR_SHUTDOWN_ABBREV)
  5720. timeout = IPR_ABBREV_SHUTDOWN_TIMEOUT;
  5721. else if (shutdown_type == IPR_SHUTDOWN_PREPARE_FOR_NORMAL)
  5722. timeout = IPR_INTERNAL_TIMEOUT;
  5723. else
  5724. timeout = IPR_SHUTDOWN_TIMEOUT;
  5725. ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, timeout);
  5726. rc = IPR_RC_JOB_RETURN;
  5727. ipr_cmd->job_step = ipr_reset_ucode_download;
  5728. } else
  5729. ipr_cmd->job_step = ipr_reset_alert;
  5730. LEAVE;
  5731. return rc;
  5732. }
  5733. /**
  5734. * ipr_reset_ioa_job - Adapter reset job
  5735. * @ipr_cmd: ipr command struct
  5736. *
  5737. * Description: This function is the job router for the adapter reset job.
  5738. *
  5739. * Return value:
  5740. * none
  5741. **/
  5742. static void ipr_reset_ioa_job(struct ipr_cmnd *ipr_cmd)
  5743. {
  5744. u32 rc, ioasc;
  5745. struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
  5746. do {
  5747. ioasc = be32_to_cpu(ipr_cmd->ioasa.ioasc);
  5748. if (ioa_cfg->reset_cmd != ipr_cmd) {
  5749. /*
  5750. * We are doing nested adapter resets and this is
  5751. * not the current reset job.
  5752. */
  5753. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  5754. return;
  5755. }
  5756. if (IPR_IOASC_SENSE_KEY(ioasc)) {
  5757. rc = ipr_cmd->job_step_failed(ipr_cmd);
  5758. if (rc == IPR_RC_JOB_RETURN)
  5759. return;
  5760. }
  5761. ipr_reinit_ipr_cmnd(ipr_cmd);
  5762. ipr_cmd->job_step_failed = ipr_reset_cmd_failed;
  5763. rc = ipr_cmd->job_step(ipr_cmd);
  5764. } while(rc == IPR_RC_JOB_CONTINUE);
  5765. }
  5766. /**
  5767. * _ipr_initiate_ioa_reset - Initiate an adapter reset
  5768. * @ioa_cfg: ioa config struct
  5769. * @job_step: first job step of reset job
  5770. * @shutdown_type: shutdown type
  5771. *
  5772. * Description: This function will initiate the reset of the given adapter
  5773. * starting at the selected job step.
  5774. * If the caller needs to wait on the completion of the reset,
  5775. * the caller must sleep on the reset_wait_q.
  5776. *
  5777. * Return value:
  5778. * none
  5779. **/
  5780. static void _ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
  5781. int (*job_step) (struct ipr_cmnd *),
  5782. enum ipr_shutdown_type shutdown_type)
  5783. {
  5784. struct ipr_cmnd *ipr_cmd;
  5785. ioa_cfg->in_reset_reload = 1;
  5786. ioa_cfg->allow_cmds = 0;
  5787. scsi_block_requests(ioa_cfg->host);
  5788. ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
  5789. ioa_cfg->reset_cmd = ipr_cmd;
  5790. ipr_cmd->job_step = job_step;
  5791. ipr_cmd->u.shutdown_type = shutdown_type;
  5792. ipr_reset_ioa_job(ipr_cmd);
  5793. }
  5794. /**
  5795. * ipr_initiate_ioa_reset - Initiate an adapter reset
  5796. * @ioa_cfg: ioa config struct
  5797. * @shutdown_type: shutdown type
  5798. *
  5799. * Description: This function will initiate the reset of the given adapter.
  5800. * If the caller needs to wait on the completion of the reset,
  5801. * the caller must sleep on the reset_wait_q.
  5802. *
  5803. * Return value:
  5804. * none
  5805. **/
  5806. static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
  5807. enum ipr_shutdown_type shutdown_type)
  5808. {
  5809. if (ioa_cfg->ioa_is_dead)
  5810. return;
  5811. if (ioa_cfg->in_reset_reload && ioa_cfg->sdt_state == GET_DUMP)
  5812. ioa_cfg->sdt_state = ABORT_DUMP;
  5813. if (ioa_cfg->reset_retries++ >= IPR_NUM_RESET_RELOAD_RETRIES) {
  5814. dev_err(&ioa_cfg->pdev->dev,
  5815. "IOA taken offline - error recovery failed\n");
  5816. ioa_cfg->reset_retries = 0;
  5817. ioa_cfg->ioa_is_dead = 1;
  5818. if (ioa_cfg->in_ioa_bringdown) {
  5819. ioa_cfg->reset_cmd = NULL;
  5820. ioa_cfg->in_reset_reload = 0;
  5821. ipr_fail_all_ops(ioa_cfg);
  5822. wake_up_all(&ioa_cfg->reset_wait_q);
  5823. spin_unlock_irq(ioa_cfg->host->host_lock);
  5824. scsi_unblock_requests(ioa_cfg->host);
  5825. spin_lock_irq(ioa_cfg->host->host_lock);
  5826. return;
  5827. } else {
  5828. ioa_cfg->in_ioa_bringdown = 1;
  5829. shutdown_type = IPR_SHUTDOWN_NONE;
  5830. }
  5831. }
  5832. _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_shutdown_ioa,
  5833. shutdown_type);
  5834. }
  5835. /**
  5836. * ipr_reset_freeze - Hold off all I/O activity
  5837. * @ipr_cmd: ipr command struct
  5838. *
  5839. * Description: If the PCI slot is frozen, hold off all I/O
  5840. * activity; then, as soon as the slot is available again,
  5841. * initiate an adapter reset.
  5842. */
  5843. static int ipr_reset_freeze(struct ipr_cmnd *ipr_cmd)
  5844. {
  5845. /* Disallow new interrupts, avoid loop */
  5846. ipr_cmd->ioa_cfg->allow_interrupts = 0;
  5847. list_add_tail(&ipr_cmd->queue, &ipr_cmd->ioa_cfg->pending_q);
  5848. ipr_cmd->done = ipr_reset_ioa_job;
  5849. return IPR_RC_JOB_RETURN;
  5850. }
  5851. /**
  5852. * ipr_pci_frozen - Called when slot has experienced a PCI bus error.
  5853. * @pdev: PCI device struct
  5854. *
  5855. * Description: This routine is called to tell us that the PCI bus
  5856. * is down. Can't do anything here, except put the device driver
  5857. * into a holding pattern, waiting for the PCI bus to come back.
  5858. */
  5859. static void ipr_pci_frozen(struct pci_dev *pdev)
  5860. {
  5861. unsigned long flags = 0;
  5862. struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
  5863. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  5864. _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_freeze, IPR_SHUTDOWN_NONE);
  5865. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  5866. }
  5867. /**
  5868. * ipr_pci_slot_reset - Called when PCI slot has been reset.
  5869. * @pdev: PCI device struct
  5870. *
  5871. * Description: This routine is called by the pci error recovery
  5872. * code after the PCI slot has been reset, just before we
  5873. * should resume normal operations.
  5874. */
  5875. static pci_ers_result_t ipr_pci_slot_reset(struct pci_dev *pdev)
  5876. {
  5877. unsigned long flags = 0;
  5878. struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
  5879. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  5880. _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_restore_cfg_space,
  5881. IPR_SHUTDOWN_NONE);
  5882. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  5883. return PCI_ERS_RESULT_RECOVERED;
  5884. }
  5885. /**
  5886. * ipr_pci_perm_failure - Called when PCI slot is dead for good.
  5887. * @pdev: PCI device struct
  5888. *
  5889. * Description: This routine is called when the PCI bus has
  5890. * permanently failed.
  5891. */
  5892. static void ipr_pci_perm_failure(struct pci_dev *pdev)
  5893. {
  5894. unsigned long flags = 0;
  5895. struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
  5896. spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
  5897. if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
  5898. ioa_cfg->sdt_state = ABORT_DUMP;
  5899. ioa_cfg->reset_retries = IPR_NUM_RESET_RELOAD_RETRIES;
  5900. ioa_cfg->in_ioa_bringdown = 1;
  5901. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  5902. spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
  5903. }
  5904. /**
  5905. * ipr_pci_error_detected - Called when a PCI error is detected.
  5906. * @pdev: PCI device struct
  5907. * @state: PCI channel state
  5908. *
  5909. * Description: Called when a PCI error is detected.
  5910. *
  5911. * Return value:
  5912. * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
  5913. */
  5914. static pci_ers_result_t ipr_pci_error_detected(struct pci_dev *pdev,
  5915. pci_channel_state_t state)
  5916. {
  5917. switch (state) {
  5918. case pci_channel_io_frozen:
  5919. ipr_pci_frozen(pdev);
  5920. return PCI_ERS_RESULT_NEED_RESET;
  5921. case pci_channel_io_perm_failure:
  5922. ipr_pci_perm_failure(pdev);
  5923. return PCI_ERS_RESULT_DISCONNECT;
  5924. break;
  5925. default:
  5926. break;
  5927. }
  5928. return PCI_ERS_RESULT_NEED_RESET;
  5929. }
  5930. /**
  5931. * ipr_probe_ioa_part2 - Initializes IOAs found in ipr_probe_ioa(..)
  5932. * @ioa_cfg: ioa cfg struct
  5933. *
  5934. * Description: This is the second phase of adapter intialization
  5935. * This function takes care of initilizing the adapter to the point
  5936. * where it can accept new commands.
  5937. * Return value:
  5938. * 0 on sucess / -EIO on failure
  5939. **/
  5940. static int __devinit ipr_probe_ioa_part2(struct ipr_ioa_cfg *ioa_cfg)
  5941. {
  5942. int rc = 0;
  5943. unsigned long host_lock_flags = 0;
  5944. ENTER;
  5945. spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
  5946. dev_dbg(&ioa_cfg->pdev->dev, "ioa_cfg adx: 0x%p\n", ioa_cfg);
  5947. if (ioa_cfg->needs_hard_reset) {
  5948. ioa_cfg->needs_hard_reset = 0;
  5949. ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
  5950. } else
  5951. _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_enable_ioa,
  5952. IPR_SHUTDOWN_NONE);
  5953. spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
  5954. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  5955. spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
  5956. if (ioa_cfg->ioa_is_dead) {
  5957. rc = -EIO;
  5958. } else if (ipr_invalid_adapter(ioa_cfg)) {
  5959. if (!ipr_testmode)
  5960. rc = -EIO;
  5961. dev_err(&ioa_cfg->pdev->dev,
  5962. "Adapter not supported in this hardware configuration.\n");
  5963. }
  5964. spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
  5965. LEAVE;
  5966. return rc;
  5967. }
  5968. /**
  5969. * ipr_free_cmd_blks - Frees command blocks allocated for an adapter
  5970. * @ioa_cfg: ioa config struct
  5971. *
  5972. * Return value:
  5973. * none
  5974. **/
  5975. static void ipr_free_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
  5976. {
  5977. int i;
  5978. for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
  5979. if (ioa_cfg->ipr_cmnd_list[i])
  5980. pci_pool_free(ioa_cfg->ipr_cmd_pool,
  5981. ioa_cfg->ipr_cmnd_list[i],
  5982. ioa_cfg->ipr_cmnd_list_dma[i]);
  5983. ioa_cfg->ipr_cmnd_list[i] = NULL;
  5984. }
  5985. if (ioa_cfg->ipr_cmd_pool)
  5986. pci_pool_destroy (ioa_cfg->ipr_cmd_pool);
  5987. ioa_cfg->ipr_cmd_pool = NULL;
  5988. }
  5989. /**
  5990. * ipr_free_mem - Frees memory allocated for an adapter
  5991. * @ioa_cfg: ioa cfg struct
  5992. *
  5993. * Return value:
  5994. * nothing
  5995. **/
  5996. static void ipr_free_mem(struct ipr_ioa_cfg *ioa_cfg)
  5997. {
  5998. int i;
  5999. kfree(ioa_cfg->res_entries);
  6000. pci_free_consistent(ioa_cfg->pdev, sizeof(struct ipr_misc_cbs),
  6001. ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
  6002. ipr_free_cmd_blks(ioa_cfg);
  6003. pci_free_consistent(ioa_cfg->pdev, sizeof(u32) * IPR_NUM_CMD_BLKS,
  6004. ioa_cfg->host_rrq, ioa_cfg->host_rrq_dma);
  6005. pci_free_consistent(ioa_cfg->pdev, sizeof(struct ipr_config_table),
  6006. ioa_cfg->cfg_table,
  6007. ioa_cfg->cfg_table_dma);
  6008. for (i = 0; i < IPR_NUM_HCAMS; i++) {
  6009. pci_free_consistent(ioa_cfg->pdev,
  6010. sizeof(struct ipr_hostrcb),
  6011. ioa_cfg->hostrcb[i],
  6012. ioa_cfg->hostrcb_dma[i]);
  6013. }
  6014. ipr_free_dump(ioa_cfg);
  6015. kfree(ioa_cfg->trace);
  6016. }
  6017. /**
  6018. * ipr_free_all_resources - Free all allocated resources for an adapter.
  6019. * @ipr_cmd: ipr command struct
  6020. *
  6021. * This function frees all allocated resources for the
  6022. * specified adapter.
  6023. *
  6024. * Return value:
  6025. * none
  6026. **/
  6027. static void ipr_free_all_resources(struct ipr_ioa_cfg *ioa_cfg)
  6028. {
  6029. struct pci_dev *pdev = ioa_cfg->pdev;
  6030. ENTER;
  6031. free_irq(pdev->irq, ioa_cfg);
  6032. iounmap(ioa_cfg->hdw_dma_regs);
  6033. pci_release_regions(pdev);
  6034. ipr_free_mem(ioa_cfg);
  6035. scsi_host_put(ioa_cfg->host);
  6036. pci_disable_device(pdev);
  6037. LEAVE;
  6038. }
  6039. /**
  6040. * ipr_alloc_cmd_blks - Allocate command blocks for an adapter
  6041. * @ioa_cfg: ioa config struct
  6042. *
  6043. * Return value:
  6044. * 0 on success / -ENOMEM on allocation failure
  6045. **/
  6046. static int __devinit ipr_alloc_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
  6047. {
  6048. struct ipr_cmnd *ipr_cmd;
  6049. struct ipr_ioarcb *ioarcb;
  6050. dma_addr_t dma_addr;
  6051. int i;
  6052. ioa_cfg->ipr_cmd_pool = pci_pool_create (IPR_NAME, ioa_cfg->pdev,
  6053. sizeof(struct ipr_cmnd), 8, 0);
  6054. if (!ioa_cfg->ipr_cmd_pool)
  6055. return -ENOMEM;
  6056. for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
  6057. ipr_cmd = pci_pool_alloc (ioa_cfg->ipr_cmd_pool, GFP_KERNEL, &dma_addr);
  6058. if (!ipr_cmd) {
  6059. ipr_free_cmd_blks(ioa_cfg);
  6060. return -ENOMEM;
  6061. }
  6062. memset(ipr_cmd, 0, sizeof(*ipr_cmd));
  6063. ioa_cfg->ipr_cmnd_list[i] = ipr_cmd;
  6064. ioa_cfg->ipr_cmnd_list_dma[i] = dma_addr;
  6065. ioarcb = &ipr_cmd->ioarcb;
  6066. ioarcb->ioarcb_host_pci_addr = cpu_to_be32(dma_addr);
  6067. ioarcb->host_response_handle = cpu_to_be32(i << 2);
  6068. ioarcb->write_ioadl_addr =
  6069. cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, ioadl));
  6070. ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
  6071. ioarcb->ioasa_host_pci_addr =
  6072. cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, ioasa));
  6073. ioarcb->ioasa_len = cpu_to_be16(sizeof(struct ipr_ioasa));
  6074. ipr_cmd->cmd_index = i;
  6075. ipr_cmd->ioa_cfg = ioa_cfg;
  6076. ipr_cmd->sense_buffer_dma = dma_addr +
  6077. offsetof(struct ipr_cmnd, sense_buffer);
  6078. list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
  6079. }
  6080. return 0;
  6081. }
  6082. /**
  6083. * ipr_alloc_mem - Allocate memory for an adapter
  6084. * @ioa_cfg: ioa config struct
  6085. *
  6086. * Return value:
  6087. * 0 on success / non-zero for error
  6088. **/
  6089. static int __devinit ipr_alloc_mem(struct ipr_ioa_cfg *ioa_cfg)
  6090. {
  6091. struct pci_dev *pdev = ioa_cfg->pdev;
  6092. int i, rc = -ENOMEM;
  6093. ENTER;
  6094. ioa_cfg->res_entries = kzalloc(sizeof(struct ipr_resource_entry) *
  6095. IPR_MAX_PHYSICAL_DEVS, GFP_KERNEL);
  6096. if (!ioa_cfg->res_entries)
  6097. goto out;
  6098. for (i = 0; i < IPR_MAX_PHYSICAL_DEVS; i++)
  6099. list_add_tail(&ioa_cfg->res_entries[i].queue, &ioa_cfg->free_res_q);
  6100. ioa_cfg->vpd_cbs = pci_alloc_consistent(ioa_cfg->pdev,
  6101. sizeof(struct ipr_misc_cbs),
  6102. &ioa_cfg->vpd_cbs_dma);
  6103. if (!ioa_cfg->vpd_cbs)
  6104. goto out_free_res_entries;
  6105. if (ipr_alloc_cmd_blks(ioa_cfg))
  6106. goto out_free_vpd_cbs;
  6107. ioa_cfg->host_rrq = pci_alloc_consistent(ioa_cfg->pdev,
  6108. sizeof(u32) * IPR_NUM_CMD_BLKS,
  6109. &ioa_cfg->host_rrq_dma);
  6110. if (!ioa_cfg->host_rrq)
  6111. goto out_ipr_free_cmd_blocks;
  6112. ioa_cfg->cfg_table = pci_alloc_consistent(ioa_cfg->pdev,
  6113. sizeof(struct ipr_config_table),
  6114. &ioa_cfg->cfg_table_dma);
  6115. if (!ioa_cfg->cfg_table)
  6116. goto out_free_host_rrq;
  6117. for (i = 0; i < IPR_NUM_HCAMS; i++) {
  6118. ioa_cfg->hostrcb[i] = pci_alloc_consistent(ioa_cfg->pdev,
  6119. sizeof(struct ipr_hostrcb),
  6120. &ioa_cfg->hostrcb_dma[i]);
  6121. if (!ioa_cfg->hostrcb[i])
  6122. goto out_free_hostrcb_dma;
  6123. ioa_cfg->hostrcb[i]->hostrcb_dma =
  6124. ioa_cfg->hostrcb_dma[i] + offsetof(struct ipr_hostrcb, hcam);
  6125. ioa_cfg->hostrcb[i]->ioa_cfg = ioa_cfg;
  6126. list_add_tail(&ioa_cfg->hostrcb[i]->queue, &ioa_cfg->hostrcb_free_q);
  6127. }
  6128. ioa_cfg->trace = kzalloc(sizeof(struct ipr_trace_entry) *
  6129. IPR_NUM_TRACE_ENTRIES, GFP_KERNEL);
  6130. if (!ioa_cfg->trace)
  6131. goto out_free_hostrcb_dma;
  6132. rc = 0;
  6133. out:
  6134. LEAVE;
  6135. return rc;
  6136. out_free_hostrcb_dma:
  6137. while (i-- > 0) {
  6138. pci_free_consistent(pdev, sizeof(struct ipr_hostrcb),
  6139. ioa_cfg->hostrcb[i],
  6140. ioa_cfg->hostrcb_dma[i]);
  6141. }
  6142. pci_free_consistent(pdev, sizeof(struct ipr_config_table),
  6143. ioa_cfg->cfg_table, ioa_cfg->cfg_table_dma);
  6144. out_free_host_rrq:
  6145. pci_free_consistent(pdev, sizeof(u32) * IPR_NUM_CMD_BLKS,
  6146. ioa_cfg->host_rrq, ioa_cfg->host_rrq_dma);
  6147. out_ipr_free_cmd_blocks:
  6148. ipr_free_cmd_blks(ioa_cfg);
  6149. out_free_vpd_cbs:
  6150. pci_free_consistent(pdev, sizeof(struct ipr_misc_cbs),
  6151. ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
  6152. out_free_res_entries:
  6153. kfree(ioa_cfg->res_entries);
  6154. goto out;
  6155. }
  6156. /**
  6157. * ipr_initialize_bus_attr - Initialize SCSI bus attributes to default values
  6158. * @ioa_cfg: ioa config struct
  6159. *
  6160. * Return value:
  6161. * none
  6162. **/
  6163. static void __devinit ipr_initialize_bus_attr(struct ipr_ioa_cfg *ioa_cfg)
  6164. {
  6165. int i;
  6166. for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
  6167. ioa_cfg->bus_attr[i].bus = i;
  6168. ioa_cfg->bus_attr[i].qas_enabled = 0;
  6169. ioa_cfg->bus_attr[i].bus_width = IPR_DEFAULT_BUS_WIDTH;
  6170. if (ipr_max_speed < ARRAY_SIZE(ipr_max_bus_speeds))
  6171. ioa_cfg->bus_attr[i].max_xfer_rate = ipr_max_bus_speeds[ipr_max_speed];
  6172. else
  6173. ioa_cfg->bus_attr[i].max_xfer_rate = IPR_U160_SCSI_RATE;
  6174. }
  6175. }
  6176. /**
  6177. * ipr_init_ioa_cfg - Initialize IOA config struct
  6178. * @ioa_cfg: ioa config struct
  6179. * @host: scsi host struct
  6180. * @pdev: PCI dev struct
  6181. *
  6182. * Return value:
  6183. * none
  6184. **/
  6185. static void __devinit ipr_init_ioa_cfg(struct ipr_ioa_cfg *ioa_cfg,
  6186. struct Scsi_Host *host, struct pci_dev *pdev)
  6187. {
  6188. const struct ipr_interrupt_offsets *p;
  6189. struct ipr_interrupts *t;
  6190. void __iomem *base;
  6191. ioa_cfg->host = host;
  6192. ioa_cfg->pdev = pdev;
  6193. ioa_cfg->log_level = ipr_log_level;
  6194. ioa_cfg->doorbell = IPR_DOORBELL;
  6195. if (!ipr_auto_create)
  6196. ioa_cfg->doorbell |= IPR_RUNTIME_RESET;
  6197. sprintf(ioa_cfg->eye_catcher, IPR_EYECATCHER);
  6198. sprintf(ioa_cfg->trace_start, IPR_TRACE_START_LABEL);
  6199. sprintf(ioa_cfg->ipr_free_label, IPR_FREEQ_LABEL);
  6200. sprintf(ioa_cfg->ipr_pending_label, IPR_PENDQ_LABEL);
  6201. sprintf(ioa_cfg->cfg_table_start, IPR_CFG_TBL_START);
  6202. sprintf(ioa_cfg->resource_table_label, IPR_RES_TABLE_LABEL);
  6203. sprintf(ioa_cfg->ipr_hcam_label, IPR_HCAM_LABEL);
  6204. sprintf(ioa_cfg->ipr_cmd_label, IPR_CMD_LABEL);
  6205. INIT_LIST_HEAD(&ioa_cfg->free_q);
  6206. INIT_LIST_HEAD(&ioa_cfg->pending_q);
  6207. INIT_LIST_HEAD(&ioa_cfg->hostrcb_free_q);
  6208. INIT_LIST_HEAD(&ioa_cfg->hostrcb_pending_q);
  6209. INIT_LIST_HEAD(&ioa_cfg->free_res_q);
  6210. INIT_LIST_HEAD(&ioa_cfg->used_res_q);
  6211. INIT_WORK(&ioa_cfg->work_q, ipr_worker_thread);
  6212. init_waitqueue_head(&ioa_cfg->reset_wait_q);
  6213. ioa_cfg->sdt_state = INACTIVE;
  6214. if (ipr_enable_cache)
  6215. ioa_cfg->cache_state = CACHE_ENABLED;
  6216. else
  6217. ioa_cfg->cache_state = CACHE_DISABLED;
  6218. ipr_initialize_bus_attr(ioa_cfg);
  6219. host->max_id = IPR_MAX_NUM_TARGETS_PER_BUS;
  6220. host->max_lun = IPR_MAX_NUM_LUNS_PER_TARGET;
  6221. host->max_channel = IPR_MAX_BUS_TO_SCAN;
  6222. host->unique_id = host->host_no;
  6223. host->max_cmd_len = IPR_MAX_CDB_LEN;
  6224. pci_set_drvdata(pdev, ioa_cfg);
  6225. p = &ioa_cfg->chip_cfg->regs;
  6226. t = &ioa_cfg->regs;
  6227. base = ioa_cfg->hdw_dma_regs;
  6228. t->set_interrupt_mask_reg = base + p->set_interrupt_mask_reg;
  6229. t->clr_interrupt_mask_reg = base + p->clr_interrupt_mask_reg;
  6230. t->sense_interrupt_mask_reg = base + p->sense_interrupt_mask_reg;
  6231. t->clr_interrupt_reg = base + p->clr_interrupt_reg;
  6232. t->sense_interrupt_reg = base + p->sense_interrupt_reg;
  6233. t->ioarrin_reg = base + p->ioarrin_reg;
  6234. t->sense_uproc_interrupt_reg = base + p->sense_uproc_interrupt_reg;
  6235. t->set_uproc_interrupt_reg = base + p->set_uproc_interrupt_reg;
  6236. t->clr_uproc_interrupt_reg = base + p->clr_uproc_interrupt_reg;
  6237. }
  6238. /**
  6239. * ipr_get_chip_cfg - Find adapter chip configuration
  6240. * @dev_id: PCI device id struct
  6241. *
  6242. * Return value:
  6243. * ptr to chip config on success / NULL on failure
  6244. **/
  6245. static const struct ipr_chip_cfg_t * __devinit
  6246. ipr_get_chip_cfg(const struct pci_device_id *dev_id)
  6247. {
  6248. int i;
  6249. for (i = 0; i < ARRAY_SIZE(ipr_chip); i++)
  6250. if (ipr_chip[i].vendor == dev_id->vendor &&
  6251. ipr_chip[i].device == dev_id->device)
  6252. return ipr_chip[i].cfg;
  6253. return NULL;
  6254. }
  6255. /**
  6256. * ipr_probe_ioa - Allocates memory and does first stage of initialization
  6257. * @pdev: PCI device struct
  6258. * @dev_id: PCI device id struct
  6259. *
  6260. * Return value:
  6261. * 0 on success / non-zero on failure
  6262. **/
  6263. static int __devinit ipr_probe_ioa(struct pci_dev *pdev,
  6264. const struct pci_device_id *dev_id)
  6265. {
  6266. struct ipr_ioa_cfg *ioa_cfg;
  6267. struct Scsi_Host *host;
  6268. unsigned long ipr_regs_pci;
  6269. void __iomem *ipr_regs;
  6270. int rc = PCIBIOS_SUCCESSFUL;
  6271. volatile u32 mask, uproc;
  6272. ENTER;
  6273. if ((rc = pci_enable_device(pdev))) {
  6274. dev_err(&pdev->dev, "Cannot enable adapter\n");
  6275. goto out;
  6276. }
  6277. dev_info(&pdev->dev, "Found IOA with IRQ: %d\n", pdev->irq);
  6278. host = scsi_host_alloc(&driver_template, sizeof(*ioa_cfg));
  6279. if (!host) {
  6280. dev_err(&pdev->dev, "call to scsi_host_alloc failed!\n");
  6281. rc = -ENOMEM;
  6282. goto out_disable;
  6283. }
  6284. ioa_cfg = (struct ipr_ioa_cfg *)host->hostdata;
  6285. memset(ioa_cfg, 0, sizeof(struct ipr_ioa_cfg));
  6286. ata_host_init(&ioa_cfg->ata_host, &pdev->dev,
  6287. sata_port_info.flags, &ipr_sata_ops);
  6288. ioa_cfg->chip_cfg = ipr_get_chip_cfg(dev_id);
  6289. if (!ioa_cfg->chip_cfg) {
  6290. dev_err(&pdev->dev, "Unknown adapter chipset 0x%04X 0x%04X\n",
  6291. dev_id->vendor, dev_id->device);
  6292. goto out_scsi_host_put;
  6293. }
  6294. ipr_regs_pci = pci_resource_start(pdev, 0);
  6295. rc = pci_request_regions(pdev, IPR_NAME);
  6296. if (rc < 0) {
  6297. dev_err(&pdev->dev,
  6298. "Couldn't register memory range of registers\n");
  6299. goto out_scsi_host_put;
  6300. }
  6301. ipr_regs = ioremap(ipr_regs_pci, pci_resource_len(pdev, 0));
  6302. if (!ipr_regs) {
  6303. dev_err(&pdev->dev,
  6304. "Couldn't map memory range of registers\n");
  6305. rc = -ENOMEM;
  6306. goto out_release_regions;
  6307. }
  6308. ioa_cfg->hdw_dma_regs = ipr_regs;
  6309. ioa_cfg->hdw_dma_regs_pci = ipr_regs_pci;
  6310. ioa_cfg->ioa_mailbox = ioa_cfg->chip_cfg->mailbox + ipr_regs;
  6311. ipr_init_ioa_cfg(ioa_cfg, host, pdev);
  6312. pci_set_master(pdev);
  6313. rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
  6314. if (rc < 0) {
  6315. dev_err(&pdev->dev, "Failed to set PCI DMA mask\n");
  6316. goto cleanup_nomem;
  6317. }
  6318. rc = pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
  6319. ioa_cfg->chip_cfg->cache_line_size);
  6320. if (rc != PCIBIOS_SUCCESSFUL) {
  6321. dev_err(&pdev->dev, "Write of cache line size failed\n");
  6322. rc = -EIO;
  6323. goto cleanup_nomem;
  6324. }
  6325. /* Save away PCI config space for use following IOA reset */
  6326. rc = pci_save_state(pdev);
  6327. if (rc != PCIBIOS_SUCCESSFUL) {
  6328. dev_err(&pdev->dev, "Failed to save PCI config space\n");
  6329. rc = -EIO;
  6330. goto cleanup_nomem;
  6331. }
  6332. if ((rc = ipr_save_pcix_cmd_reg(ioa_cfg)))
  6333. goto cleanup_nomem;
  6334. if ((rc = ipr_set_pcix_cmd_reg(ioa_cfg)))
  6335. goto cleanup_nomem;
  6336. rc = ipr_alloc_mem(ioa_cfg);
  6337. if (rc < 0) {
  6338. dev_err(&pdev->dev,
  6339. "Couldn't allocate enough memory for device driver!\n");
  6340. goto cleanup_nomem;
  6341. }
  6342. /*
  6343. * If HRRQ updated interrupt is not masked, or reset alert is set,
  6344. * the card is in an unknown state and needs a hard reset
  6345. */
  6346. mask = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
  6347. uproc = readl(ioa_cfg->regs.sense_uproc_interrupt_reg);
  6348. if ((mask & IPR_PCII_HRRQ_UPDATED) == 0 || (uproc & IPR_UPROCI_RESET_ALERT))
  6349. ioa_cfg->needs_hard_reset = 1;
  6350. ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
  6351. rc = request_irq(pdev->irq, ipr_isr, IRQF_SHARED, IPR_NAME, ioa_cfg);
  6352. if (rc) {
  6353. dev_err(&pdev->dev, "Couldn't register IRQ %d! rc=%d\n",
  6354. pdev->irq, rc);
  6355. goto cleanup_nolog;
  6356. }
  6357. spin_lock(&ipr_driver_lock);
  6358. list_add_tail(&ioa_cfg->queue, &ipr_ioa_head);
  6359. spin_unlock(&ipr_driver_lock);
  6360. LEAVE;
  6361. out:
  6362. return rc;
  6363. cleanup_nolog:
  6364. ipr_free_mem(ioa_cfg);
  6365. cleanup_nomem:
  6366. iounmap(ipr_regs);
  6367. out_release_regions:
  6368. pci_release_regions(pdev);
  6369. out_scsi_host_put:
  6370. scsi_host_put(host);
  6371. out_disable:
  6372. pci_disable_device(pdev);
  6373. goto out;
  6374. }
  6375. /**
  6376. * ipr_scan_vsets - Scans for VSET devices
  6377. * @ioa_cfg: ioa config struct
  6378. *
  6379. * Description: Since the VSET resources do not follow SAM in that we can have
  6380. * sparse LUNs with no LUN 0, we have to scan for these ourselves.
  6381. *
  6382. * Return value:
  6383. * none
  6384. **/
  6385. static void ipr_scan_vsets(struct ipr_ioa_cfg *ioa_cfg)
  6386. {
  6387. int target, lun;
  6388. for (target = 0; target < IPR_MAX_NUM_TARGETS_PER_BUS; target++)
  6389. for (lun = 0; lun < IPR_MAX_NUM_VSET_LUNS_PER_TARGET; lun++ )
  6390. scsi_add_device(ioa_cfg->host, IPR_VSET_BUS, target, lun);
  6391. }
  6392. /**
  6393. * ipr_initiate_ioa_bringdown - Bring down an adapter
  6394. * @ioa_cfg: ioa config struct
  6395. * @shutdown_type: shutdown type
  6396. *
  6397. * Description: This function will initiate bringing down the adapter.
  6398. * This consists of issuing an IOA shutdown to the adapter
  6399. * to flush the cache, and running BIST.
  6400. * If the caller needs to wait on the completion of the reset,
  6401. * the caller must sleep on the reset_wait_q.
  6402. *
  6403. * Return value:
  6404. * none
  6405. **/
  6406. static void ipr_initiate_ioa_bringdown(struct ipr_ioa_cfg *ioa_cfg,
  6407. enum ipr_shutdown_type shutdown_type)
  6408. {
  6409. ENTER;
  6410. if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
  6411. ioa_cfg->sdt_state = ABORT_DUMP;
  6412. ioa_cfg->reset_retries = 0;
  6413. ioa_cfg->in_ioa_bringdown = 1;
  6414. ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
  6415. LEAVE;
  6416. }
  6417. /**
  6418. * __ipr_remove - Remove a single adapter
  6419. * @pdev: pci device struct
  6420. *
  6421. * Adapter hot plug remove entry point.
  6422. *
  6423. * Return value:
  6424. * none
  6425. **/
  6426. static void __ipr_remove(struct pci_dev *pdev)
  6427. {
  6428. unsigned long host_lock_flags = 0;
  6429. struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
  6430. ENTER;
  6431. spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
  6432. ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
  6433. spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
  6434. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  6435. flush_scheduled_work();
  6436. spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
  6437. spin_lock(&ipr_driver_lock);
  6438. list_del(&ioa_cfg->queue);
  6439. spin_unlock(&ipr_driver_lock);
  6440. if (ioa_cfg->sdt_state == ABORT_DUMP)
  6441. ioa_cfg->sdt_state = WAIT_FOR_DUMP;
  6442. spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
  6443. ipr_free_all_resources(ioa_cfg);
  6444. LEAVE;
  6445. }
  6446. /**
  6447. * ipr_remove - IOA hot plug remove entry point
  6448. * @pdev: pci device struct
  6449. *
  6450. * Adapter hot plug remove entry point.
  6451. *
  6452. * Return value:
  6453. * none
  6454. **/
  6455. static void ipr_remove(struct pci_dev *pdev)
  6456. {
  6457. struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
  6458. ENTER;
  6459. ipr_remove_trace_file(&ioa_cfg->host->shost_classdev.kobj,
  6460. &ipr_trace_attr);
  6461. ipr_remove_dump_file(&ioa_cfg->host->shost_classdev.kobj,
  6462. &ipr_dump_attr);
  6463. scsi_remove_host(ioa_cfg->host);
  6464. __ipr_remove(pdev);
  6465. LEAVE;
  6466. }
  6467. /**
  6468. * ipr_probe - Adapter hot plug add entry point
  6469. *
  6470. * Return value:
  6471. * 0 on success / non-zero on failure
  6472. **/
  6473. static int __devinit ipr_probe(struct pci_dev *pdev,
  6474. const struct pci_device_id *dev_id)
  6475. {
  6476. struct ipr_ioa_cfg *ioa_cfg;
  6477. int rc;
  6478. rc = ipr_probe_ioa(pdev, dev_id);
  6479. if (rc)
  6480. return rc;
  6481. ioa_cfg = pci_get_drvdata(pdev);
  6482. rc = ipr_probe_ioa_part2(ioa_cfg);
  6483. if (rc) {
  6484. __ipr_remove(pdev);
  6485. return rc;
  6486. }
  6487. rc = scsi_add_host(ioa_cfg->host, &pdev->dev);
  6488. if (rc) {
  6489. __ipr_remove(pdev);
  6490. return rc;
  6491. }
  6492. rc = ipr_create_trace_file(&ioa_cfg->host->shost_classdev.kobj,
  6493. &ipr_trace_attr);
  6494. if (rc) {
  6495. scsi_remove_host(ioa_cfg->host);
  6496. __ipr_remove(pdev);
  6497. return rc;
  6498. }
  6499. rc = ipr_create_dump_file(&ioa_cfg->host->shost_classdev.kobj,
  6500. &ipr_dump_attr);
  6501. if (rc) {
  6502. ipr_remove_trace_file(&ioa_cfg->host->shost_classdev.kobj,
  6503. &ipr_trace_attr);
  6504. scsi_remove_host(ioa_cfg->host);
  6505. __ipr_remove(pdev);
  6506. return rc;
  6507. }
  6508. scsi_scan_host(ioa_cfg->host);
  6509. ipr_scan_vsets(ioa_cfg);
  6510. scsi_add_device(ioa_cfg->host, IPR_IOA_BUS, IPR_IOA_TARGET, IPR_IOA_LUN);
  6511. ioa_cfg->allow_ml_add_del = 1;
  6512. ioa_cfg->host->max_channel = IPR_VSET_BUS;
  6513. schedule_work(&ioa_cfg->work_q);
  6514. return 0;
  6515. }
  6516. /**
  6517. * ipr_shutdown - Shutdown handler.
  6518. * @pdev: pci device struct
  6519. *
  6520. * This function is invoked upon system shutdown/reboot. It will issue
  6521. * an adapter shutdown to the adapter to flush the write cache.
  6522. *
  6523. * Return value:
  6524. * none
  6525. **/
  6526. static void ipr_shutdown(struct pci_dev *pdev)
  6527. {
  6528. struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
  6529. unsigned long lock_flags = 0;
  6530. spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
  6531. ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
  6532. spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
  6533. wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
  6534. }
  6535. static struct pci_device_id ipr_pci_table[] __devinitdata = {
  6536. { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
  6537. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5702, 0, 0, 0 },
  6538. { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
  6539. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5703, 0, 0, 0 },
  6540. { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
  6541. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573D, 0, 0, 0 },
  6542. { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
  6543. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573E, 0, 0, 0 },
  6544. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
  6545. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571B, 0, 0, 0 },
  6546. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
  6547. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572E, 0, 0, 0 },
  6548. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
  6549. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571A, 0, 0, 0 },
  6550. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
  6551. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575B, 0, 0, 0 },
  6552. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
  6553. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
  6554. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
  6555. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0, 0 },
  6556. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
  6557. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0, 0 },
  6558. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
  6559. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
  6560. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
  6561. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0, 0 },
  6562. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
  6563. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0, 0 },
  6564. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
  6565. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B7, 0, 0, 0 },
  6566. { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE,
  6567. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2780, 0, 0, 0 },
  6568. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
  6569. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571E, 0, 0, 0 },
  6570. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
  6571. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571F, 0, 0, 0 },
  6572. { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
  6573. PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572F, 0, 0, 0 },
  6574. { }
  6575. };
  6576. MODULE_DEVICE_TABLE(pci, ipr_pci_table);
  6577. static struct pci_error_handlers ipr_err_handler = {
  6578. .error_detected = ipr_pci_error_detected,
  6579. .slot_reset = ipr_pci_slot_reset,
  6580. };
  6581. static struct pci_driver ipr_driver = {
  6582. .name = IPR_NAME,
  6583. .id_table = ipr_pci_table,
  6584. .probe = ipr_probe,
  6585. .remove = ipr_remove,
  6586. .shutdown = ipr_shutdown,
  6587. .err_handler = &ipr_err_handler,
  6588. };
  6589. /**
  6590. * ipr_init - Module entry point
  6591. *
  6592. * Return value:
  6593. * 0 on success / negative value on failure
  6594. **/
  6595. static int __init ipr_init(void)
  6596. {
  6597. ipr_info("IBM Power RAID SCSI Device Driver version: %s %s\n",
  6598. IPR_DRIVER_VERSION, IPR_DRIVER_DATE);
  6599. return pci_register_driver(&ipr_driver);
  6600. }
  6601. /**
  6602. * ipr_exit - Module unload
  6603. *
  6604. * Module unload entry point.
  6605. *
  6606. * Return value:
  6607. * none
  6608. **/
  6609. static void __exit ipr_exit(void)
  6610. {
  6611. pci_unregister_driver(&ipr_driver);
  6612. }
  6613. module_init(ipr_init);
  6614. module_exit(ipr_exit);