2 * ipr.c -- driver for IBM Power Linux RAID adapters
4 * Written By: Brian King <brking@us.ibm.com>, IBM Corporation
6 * Copyright (C) 2003, 2004 IBM Corporation
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.
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.
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
27 * This driver is used to control the following SCSI adapters:
29 * IBM iSeries: 5702, 5703, 2780, 5709, 570A, 570B
31 * IBM pSeries: PCI-X Dual Channel Ultra 320 SCSI RAID Adapter
32 * PCI-X Dual Channel Ultra 320 SCSI Adapter
33 * PCI-X Dual Channel Ultra 320 SCSI RAID Enablement Card
34 * Embedded SCSI adapter on p615 and p655 systems
36 * Supported Hardware Features:
37 * - Ultra 320 SCSI controller
38 * - PCI-X host interface
39 * - Embedded PowerPC RISC Processor and Hardware XOR DMA Engine
40 * - Non-Volatile Write Cache
41 * - Supports attachment of non-RAID disks, tape, and optical devices
42 * - RAID Levels 0, 5, 10
44 * - Background Parity Checking
45 * - Background Data Scrubbing
46 * - Ability to increase the capacity of an existing RAID 5 disk array
50 * - Tagged command queuing
51 * - Adapter microcode download
53 * - SCSI device hot plug
58 #include <linux/init.h>
59 #include <linux/types.h>
60 #include <linux/errno.h>
61 #include <linux/kernel.h>
62 #include <linux/slab.h>
63 #include <linux/vmalloc.h>
64 #include <linux/ioport.h>
65 #include <linux/delay.h>
66 #include <linux/pci.h>
67 #include <linux/wait.h>
68 #include <linux/spinlock.h>
69 #include <linux/sched.h>
70 #include <linux/interrupt.h>
71 #include <linux/blkdev.h>
72 #include <linux/firmware.h>
73 #include <linux/module.h>
74 #include <linux/moduleparam.h>
75 #include <linux/libata.h>
76 #include <linux/hdreg.h>
77 #include <linux/reboot.h>
78 #include <linux/stringify.h>
81 #include <asm/processor.h>
82 #include <scsi/scsi.h>
83 #include <scsi/scsi_host.h>
84 #include <scsi/scsi_tcq.h>
85 #include <scsi/scsi_eh.h>
86 #include <scsi/scsi_cmnd.h>
92 static LIST_HEAD(ipr_ioa_head
);
93 static unsigned int ipr_log_level
= IPR_DEFAULT_LOG_LEVEL
;
94 static unsigned int ipr_max_speed
= 1;
95 static int ipr_testmode
= 0;
96 static unsigned int ipr_fastfail
= 0;
97 static unsigned int ipr_transop_timeout
= 0;
98 static unsigned int ipr_debug
= 0;
99 static unsigned int ipr_max_devs
= IPR_DEFAULT_SIS64_DEVS
;
100 static unsigned int ipr_dual_ioa_raid
= 1;
101 static unsigned int ipr_number_of_msix
= 16;
102 static unsigned int ipr_fast_reboot
;
103 static DEFINE_SPINLOCK(ipr_driver_lock
);
105 /* This table describes the differences between DMA controller chips */
106 static const struct ipr_chip_cfg_t ipr_chip_cfg
[] = {
107 { /* Gemstone, Citrine, Obsidian, and Obsidian-E */
110 .cache_line_size
= 0x20,
114 .set_interrupt_mask_reg
= 0x0022C,
115 .clr_interrupt_mask_reg
= 0x00230,
116 .clr_interrupt_mask_reg32
= 0x00230,
117 .sense_interrupt_mask_reg
= 0x0022C,
118 .sense_interrupt_mask_reg32
= 0x0022C,
119 .clr_interrupt_reg
= 0x00228,
120 .clr_interrupt_reg32
= 0x00228,
121 .sense_interrupt_reg
= 0x00224,
122 .sense_interrupt_reg32
= 0x00224,
123 .ioarrin_reg
= 0x00404,
124 .sense_uproc_interrupt_reg
= 0x00214,
125 .sense_uproc_interrupt_reg32
= 0x00214,
126 .set_uproc_interrupt_reg
= 0x00214,
127 .set_uproc_interrupt_reg32
= 0x00214,
128 .clr_uproc_interrupt_reg
= 0x00218,
129 .clr_uproc_interrupt_reg32
= 0x00218
132 { /* Snipe and Scamp */
135 .cache_line_size
= 0x20,
139 .set_interrupt_mask_reg
= 0x00288,
140 .clr_interrupt_mask_reg
= 0x0028C,
141 .clr_interrupt_mask_reg32
= 0x0028C,
142 .sense_interrupt_mask_reg
= 0x00288,
143 .sense_interrupt_mask_reg32
= 0x00288,
144 .clr_interrupt_reg
= 0x00284,
145 .clr_interrupt_reg32
= 0x00284,
146 .sense_interrupt_reg
= 0x00280,
147 .sense_interrupt_reg32
= 0x00280,
148 .ioarrin_reg
= 0x00504,
149 .sense_uproc_interrupt_reg
= 0x00290,
150 .sense_uproc_interrupt_reg32
= 0x00290,
151 .set_uproc_interrupt_reg
= 0x00290,
152 .set_uproc_interrupt_reg32
= 0x00290,
153 .clr_uproc_interrupt_reg
= 0x00294,
154 .clr_uproc_interrupt_reg32
= 0x00294
160 .cache_line_size
= 0x20,
164 .set_interrupt_mask_reg
= 0x00010,
165 .clr_interrupt_mask_reg
= 0x00018,
166 .clr_interrupt_mask_reg32
= 0x0001C,
167 .sense_interrupt_mask_reg
= 0x00010,
168 .sense_interrupt_mask_reg32
= 0x00014,
169 .clr_interrupt_reg
= 0x00008,
170 .clr_interrupt_reg32
= 0x0000C,
171 .sense_interrupt_reg
= 0x00000,
172 .sense_interrupt_reg32
= 0x00004,
173 .ioarrin_reg
= 0x00070,
174 .sense_uproc_interrupt_reg
= 0x00020,
175 .sense_uproc_interrupt_reg32
= 0x00024,
176 .set_uproc_interrupt_reg
= 0x00020,
177 .set_uproc_interrupt_reg32
= 0x00024,
178 .clr_uproc_interrupt_reg
= 0x00028,
179 .clr_uproc_interrupt_reg32
= 0x0002C,
180 .init_feedback_reg
= 0x0005C,
181 .dump_addr_reg
= 0x00064,
182 .dump_data_reg
= 0x00068,
183 .endian_swap_reg
= 0x00084
188 static const struct ipr_chip_t ipr_chip
[] = {
189 { PCI_VENDOR_ID_MYLEX
, PCI_DEVICE_ID_IBM_GEMSTONE
, IPR_USE_LSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[0] },
190 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CITRINE
, IPR_USE_LSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[0] },
191 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN
, IPR_USE_LSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[0] },
192 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN
, IPR_USE_LSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[0] },
193 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN_E
, IPR_USE_MSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[0] },
194 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_SNIPE
, IPR_USE_LSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[1] },
195 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_SCAMP
, IPR_USE_LSI
, IPR_SIS32
, IPR_PCI_CFG
, &ipr_chip_cfg
[1] },
196 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
, IPR_USE_MSI
, IPR_SIS64
, IPR_MMIO
, &ipr_chip_cfg
[2] },
197 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
, IPR_USE_MSI
, IPR_SIS64
, IPR_MMIO
, &ipr_chip_cfg
[2] },
198 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_RATTLESNAKE
, IPR_USE_MSI
, IPR_SIS64
, IPR_MMIO
, &ipr_chip_cfg
[2] }
201 static int ipr_max_bus_speeds
[] = {
202 IPR_80MBs_SCSI_RATE
, IPR_U160_SCSI_RATE
, IPR_U320_SCSI_RATE
205 MODULE_AUTHOR("Brian King <brking@us.ibm.com>");
206 MODULE_DESCRIPTION("IBM Power RAID SCSI Adapter Driver");
207 module_param_named(max_speed
, ipr_max_speed
, uint
, 0);
208 MODULE_PARM_DESC(max_speed
, "Maximum bus speed (0-2). Default: 1=U160. Speeds: 0=80 MB/s, 1=U160, 2=U320");
209 module_param_named(log_level
, ipr_log_level
, uint
, 0);
210 MODULE_PARM_DESC(log_level
, "Set to 0 - 4 for increasing verbosity of device driver");
211 module_param_named(testmode
, ipr_testmode
, int, 0);
212 MODULE_PARM_DESC(testmode
, "DANGEROUS!!! Allows unsupported configurations");
213 module_param_named(fastfail
, ipr_fastfail
, int, S_IRUGO
| S_IWUSR
);
214 MODULE_PARM_DESC(fastfail
, "Reduce timeouts and retries");
215 module_param_named(transop_timeout
, ipr_transop_timeout
, int, 0);
216 MODULE_PARM_DESC(transop_timeout
, "Time in seconds to wait for adapter to come operational (default: 300)");
217 module_param_named(debug
, ipr_debug
, int, S_IRUGO
| S_IWUSR
);
218 MODULE_PARM_DESC(debug
, "Enable device driver debugging logging. Set to 1 to enable. (default: 0)");
219 module_param_named(dual_ioa_raid
, ipr_dual_ioa_raid
, int, 0);
220 MODULE_PARM_DESC(dual_ioa_raid
, "Enable dual adapter RAID support. Set to 1 to enable. (default: 1)");
221 module_param_named(max_devs
, ipr_max_devs
, int, 0);
222 MODULE_PARM_DESC(max_devs
, "Specify the maximum number of physical devices. "
223 "[Default=" __stringify(IPR_DEFAULT_SIS64_DEVS
) "]");
224 module_param_named(number_of_msix
, ipr_number_of_msix
, int, 0);
225 MODULE_PARM_DESC(number_of_msix
, "Specify the number of MSIX interrupts to use on capable adapters (1 - 16). (default:16)");
226 module_param_named(fast_reboot
, ipr_fast_reboot
, int, S_IRUGO
| S_IWUSR
);
227 MODULE_PARM_DESC(fast_reboot
, "Skip adapter shutdown during reboot. Set to 1 to enable. (default: 0)");
228 MODULE_LICENSE("GPL");
229 MODULE_VERSION(IPR_DRIVER_VERSION
);
231 /* A constant array of IOASCs/URCs/Error Messages */
233 struct ipr_error_table_t ipr_error_table
[] = {
234 {0x00000000, 1, IPR_DEFAULT_LOG_LEVEL
,
235 "8155: An unknown error was received"},
237 "Soft underlength error"},
239 "Command to be cancelled not found"},
241 "Qualified success"},
242 {0x01080000, 1, IPR_DEFAULT_LOG_LEVEL
,
243 "FFFE: Soft device bus error recovered by the IOA"},
244 {0x01088100, 0, IPR_DEFAULT_LOG_LEVEL
,
245 "4101: Soft device bus fabric error"},
246 {0x01100100, 0, IPR_DEFAULT_LOG_LEVEL
,
247 "FFFC: Logical block guard error recovered by the device"},
248 {0x01100300, 0, IPR_DEFAULT_LOG_LEVEL
,
249 "FFFC: Logical block reference tag error recovered by the device"},
250 {0x01108300, 0, IPR_DEFAULT_LOG_LEVEL
,
251 "4171: Recovered scatter list tag / sequence number error"},
252 {0x01109000, 0, IPR_DEFAULT_LOG_LEVEL
,
253 "FF3D: Recovered logical block CRC error on IOA to Host transfer"},
254 {0x01109200, 0, IPR_DEFAULT_LOG_LEVEL
,
255 "4171: Recovered logical block sequence number error on IOA to Host transfer"},
256 {0x0110A000, 0, IPR_DEFAULT_LOG_LEVEL
,
257 "FFFD: Recovered logical block reference tag error detected by the IOA"},
258 {0x0110A100, 0, IPR_DEFAULT_LOG_LEVEL
,
259 "FFFD: Logical block guard error recovered by the IOA"},
260 {0x01170600, 0, IPR_DEFAULT_LOG_LEVEL
,
261 "FFF9: Device sector reassign successful"},
262 {0x01170900, 0, IPR_DEFAULT_LOG_LEVEL
,
263 "FFF7: Media error recovered by device rewrite procedures"},
264 {0x01180200, 0, IPR_DEFAULT_LOG_LEVEL
,
265 "7001: IOA sector reassignment successful"},
266 {0x01180500, 0, IPR_DEFAULT_LOG_LEVEL
,
267 "FFF9: Soft media error. Sector reassignment recommended"},
268 {0x01180600, 0, IPR_DEFAULT_LOG_LEVEL
,
269 "FFF7: Media error recovered by IOA rewrite procedures"},
270 {0x01418000, 0, IPR_DEFAULT_LOG_LEVEL
,
271 "FF3D: Soft PCI bus error recovered by the IOA"},
272 {0x01440000, 1, IPR_DEFAULT_LOG_LEVEL
,
273 "FFF6: Device hardware error recovered by the IOA"},
274 {0x01448100, 0, IPR_DEFAULT_LOG_LEVEL
,
275 "FFF6: Device hardware error recovered by the device"},
276 {0x01448200, 1, IPR_DEFAULT_LOG_LEVEL
,
277 "FF3D: Soft IOA error recovered by the IOA"},
278 {0x01448300, 0, IPR_DEFAULT_LOG_LEVEL
,
279 "FFFA: Undefined device response recovered by the IOA"},
280 {0x014A0000, 1, IPR_DEFAULT_LOG_LEVEL
,
281 "FFF6: Device bus error, message or command phase"},
282 {0x014A8000, 0, IPR_DEFAULT_LOG_LEVEL
,
283 "FFFE: Task Management Function failed"},
284 {0x015D0000, 0, IPR_DEFAULT_LOG_LEVEL
,
285 "FFF6: Failure prediction threshold exceeded"},
286 {0x015D9200, 0, IPR_DEFAULT_LOG_LEVEL
,
287 "8009: Impending cache battery pack failure"},
289 "Logical Unit in process of becoming ready"},
291 "Initializing command required"},
293 "34FF: Disk device format in progress"},
295 "Logical unit not accessible, target port in unavailable state"},
296 {0x02048000, 0, IPR_DEFAULT_LOG_LEVEL
,
297 "9070: IOA requested reset"},
299 "Synchronization required"},
301 "IOA microcode download required"},
303 "Device bus connection is prohibited by host"},
305 "No ready, IOA shutdown"},
307 "Not ready, IOA has been shutdown"},
308 {0x02670100, 0, IPR_DEFAULT_LOG_LEVEL
,
309 "3020: Storage subsystem configuration error"},
311 "FFF5: Medium error, data unreadable, recommend reassign"},
313 "7000: Medium error, data unreadable, do not reassign"},
314 {0x03310000, 0, IPR_DEFAULT_LOG_LEVEL
,
315 "FFF3: Disk media format bad"},
316 {0x04050000, 0, IPR_DEFAULT_LOG_LEVEL
,
317 "3002: Addressed device failed to respond to selection"},
318 {0x04080000, 1, IPR_DEFAULT_LOG_LEVEL
,
319 "3100: Device bus error"},
320 {0x04080100, 0, IPR_DEFAULT_LOG_LEVEL
,
321 "3109: IOA timed out a device command"},
323 "3120: SCSI bus is not operational"},
324 {0x04088100, 0, IPR_DEFAULT_LOG_LEVEL
,
325 "4100: Hard device bus fabric error"},
326 {0x04100100, 0, IPR_DEFAULT_LOG_LEVEL
,
327 "310C: Logical block guard error detected by the device"},
328 {0x04100300, 0, IPR_DEFAULT_LOG_LEVEL
,
329 "310C: Logical block reference tag error detected by the device"},
330 {0x04108300, 1, IPR_DEFAULT_LOG_LEVEL
,
331 "4170: Scatter list tag / sequence number error"},
332 {0x04109000, 1, IPR_DEFAULT_LOG_LEVEL
,
333 "8150: Logical block CRC error on IOA to Host transfer"},
334 {0x04109200, 1, IPR_DEFAULT_LOG_LEVEL
,
335 "4170: Logical block sequence number error on IOA to Host transfer"},
336 {0x0410A000, 0, IPR_DEFAULT_LOG_LEVEL
,
337 "310D: Logical block reference tag error detected by the IOA"},
338 {0x0410A100, 0, IPR_DEFAULT_LOG_LEVEL
,
339 "310D: Logical block guard error detected by the IOA"},
340 {0x04118000, 0, IPR_DEFAULT_LOG_LEVEL
,
341 "9000: IOA reserved area data check"},
342 {0x04118100, 0, IPR_DEFAULT_LOG_LEVEL
,
343 "9001: IOA reserved area invalid data pattern"},
344 {0x04118200, 0, IPR_DEFAULT_LOG_LEVEL
,
345 "9002: IOA reserved area LRC error"},
346 {0x04118300, 1, IPR_DEFAULT_LOG_LEVEL
,
347 "Hardware Error, IOA metadata access error"},
348 {0x04320000, 0, IPR_DEFAULT_LOG_LEVEL
,
349 "102E: Out of alternate sectors for disk storage"},
350 {0x04330000, 1, IPR_DEFAULT_LOG_LEVEL
,
351 "FFF4: Data transfer underlength error"},
352 {0x04338000, 1, IPR_DEFAULT_LOG_LEVEL
,
353 "FFF4: Data transfer overlength error"},
354 {0x043E0100, 0, IPR_DEFAULT_LOG_LEVEL
,
355 "3400: Logical unit failure"},
356 {0x04408500, 0, IPR_DEFAULT_LOG_LEVEL
,
357 "FFF4: Device microcode is corrupt"},
358 {0x04418000, 1, IPR_DEFAULT_LOG_LEVEL
,
359 "8150: PCI bus error"},
361 "Unsupported device bus message received"},
362 {0x04440000, 1, IPR_DEFAULT_LOG_LEVEL
,
363 "FFF4: Disk device problem"},
364 {0x04448200, 1, IPR_DEFAULT_LOG_LEVEL
,
365 "8150: Permanent IOA failure"},
366 {0x04448300, 0, IPR_DEFAULT_LOG_LEVEL
,
367 "3010: Disk device returned wrong response to IOA"},
368 {0x04448400, 0, IPR_DEFAULT_LOG_LEVEL
,
369 "8151: IOA microcode error"},
371 "Device bus status error"},
372 {0x04448600, 0, IPR_DEFAULT_LOG_LEVEL
,
373 "8157: IOA error requiring IOA reset to recover"},
375 "ATA device status error"},
377 "Message reject received from the device"},
378 {0x04449200, 0, IPR_DEFAULT_LOG_LEVEL
,
379 "8008: A permanent cache battery pack failure occurred"},
380 {0x0444A000, 0, IPR_DEFAULT_LOG_LEVEL
,
381 "9090: Disk unit has been modified after the last known status"},
382 {0x0444A200, 0, IPR_DEFAULT_LOG_LEVEL
,
383 "9081: IOA detected device error"},
384 {0x0444A300, 0, IPR_DEFAULT_LOG_LEVEL
,
385 "9082: IOA detected device error"},
386 {0x044A0000, 1, IPR_DEFAULT_LOG_LEVEL
,
387 "3110: Device bus error, message or command phase"},
388 {0x044A8000, 1, IPR_DEFAULT_LOG_LEVEL
,
389 "3110: SAS Command / Task Management Function failed"},
390 {0x04670400, 0, IPR_DEFAULT_LOG_LEVEL
,
391 "9091: Incorrect hardware configuration change has been detected"},
392 {0x04678000, 0, IPR_DEFAULT_LOG_LEVEL
,
393 "9073: Invalid multi-adapter configuration"},
394 {0x04678100, 0, IPR_DEFAULT_LOG_LEVEL
,
395 "4010: Incorrect connection between cascaded expanders"},
396 {0x04678200, 0, IPR_DEFAULT_LOG_LEVEL
,
397 "4020: Connections exceed IOA design limits"},
398 {0x04678300, 0, IPR_DEFAULT_LOG_LEVEL
,
399 "4030: Incorrect multipath connection"},
400 {0x04679000, 0, IPR_DEFAULT_LOG_LEVEL
,
401 "4110: Unsupported enclosure function"},
402 {0x04679800, 0, IPR_DEFAULT_LOG_LEVEL
,
403 "4120: SAS cable VPD cannot be read"},
404 {0x046E0000, 0, IPR_DEFAULT_LOG_LEVEL
,
405 "FFF4: Command to logical unit failed"},
407 "Illegal request, invalid request type or request packet"},
409 "Illegal request, invalid resource handle"},
411 "Illegal request, commands not allowed to this device"},
413 "Illegal request, command not allowed to a secondary adapter"},
415 "Illegal request, command not allowed to a non-optimized resource"},
417 "Illegal request, invalid field in parameter list"},
419 "Illegal request, parameter not supported"},
421 "Illegal request, parameter value invalid"},
423 "Illegal request, command sequence error"},
425 "Illegal request, dual adapter support not enabled"},
427 "Illegal request, another cable connector was physically disabled"},
429 "Illegal request, inconsistent group id/group count"},
430 {0x06040500, 0, IPR_DEFAULT_LOG_LEVEL
,
431 "9031: Array protection temporarily suspended, protection resuming"},
432 {0x06040600, 0, IPR_DEFAULT_LOG_LEVEL
,
433 "9040: Array protection temporarily suspended, protection resuming"},
434 {0x060B0100, 0, IPR_DEFAULT_LOG_LEVEL
,
435 "4080: IOA exceeded maximum operating temperature"},
436 {0x060B8000, 0, IPR_DEFAULT_LOG_LEVEL
,
437 "4085: Service required"},
438 {0x06288000, 0, IPR_DEFAULT_LOG_LEVEL
,
439 "3140: Device bus not ready to ready transition"},
440 {0x06290000, 0, IPR_DEFAULT_LOG_LEVEL
,
441 "FFFB: SCSI bus was reset"},
443 "FFFE: SCSI bus transition to single ended"},
445 "FFFE: SCSI bus transition to LVD"},
446 {0x06298000, 0, IPR_DEFAULT_LOG_LEVEL
,
447 "FFFB: SCSI bus was reset by another initiator"},
448 {0x063F0300, 0, IPR_DEFAULT_LOG_LEVEL
,
449 "3029: A device replacement has occurred"},
450 {0x063F8300, 0, IPR_DEFAULT_LOG_LEVEL
,
451 "4102: Device bus fabric performance degradation"},
452 {0x064C8000, 0, IPR_DEFAULT_LOG_LEVEL
,
453 "9051: IOA cache data exists for a missing or failed device"},
454 {0x064C8100, 0, IPR_DEFAULT_LOG_LEVEL
,
455 "9055: Auxiliary cache IOA contains cache data needed by the primary IOA"},
456 {0x06670100, 0, IPR_DEFAULT_LOG_LEVEL
,
457 "9025: Disk unit is not supported at its physical location"},
458 {0x06670600, 0, IPR_DEFAULT_LOG_LEVEL
,
459 "3020: IOA detected a SCSI bus configuration error"},
460 {0x06678000, 0, IPR_DEFAULT_LOG_LEVEL
,
461 "3150: SCSI bus configuration error"},
462 {0x06678100, 0, IPR_DEFAULT_LOG_LEVEL
,
463 "9074: Asymmetric advanced function disk configuration"},
464 {0x06678300, 0, IPR_DEFAULT_LOG_LEVEL
,
465 "4040: Incomplete multipath connection between IOA and enclosure"},
466 {0x06678400, 0, IPR_DEFAULT_LOG_LEVEL
,
467 "4041: Incomplete multipath connection between enclosure and device"},
468 {0x06678500, 0, IPR_DEFAULT_LOG_LEVEL
,
469 "9075: Incomplete multipath connection between IOA and remote IOA"},
470 {0x06678600, 0, IPR_DEFAULT_LOG_LEVEL
,
471 "9076: Configuration error, missing remote IOA"},
472 {0x06679100, 0, IPR_DEFAULT_LOG_LEVEL
,
473 "4050: Enclosure does not support a required multipath function"},
474 {0x06679800, 0, IPR_DEFAULT_LOG_LEVEL
,
475 "4121: Configuration error, required cable is missing"},
476 {0x06679900, 0, IPR_DEFAULT_LOG_LEVEL
,
477 "4122: Cable is not plugged into the correct location on remote IOA"},
478 {0x06679A00, 0, IPR_DEFAULT_LOG_LEVEL
,
479 "4123: Configuration error, invalid cable vital product data"},
480 {0x06679B00, 0, IPR_DEFAULT_LOG_LEVEL
,
481 "4124: Configuration error, both cable ends are plugged into the same IOA"},
482 {0x06690000, 0, IPR_DEFAULT_LOG_LEVEL
,
483 "4070: Logically bad block written on device"},
484 {0x06690200, 0, IPR_DEFAULT_LOG_LEVEL
,
485 "9041: Array protection temporarily suspended"},
486 {0x06698200, 0, IPR_DEFAULT_LOG_LEVEL
,
487 "9042: Corrupt array parity detected on specified device"},
488 {0x066B0200, 0, IPR_DEFAULT_LOG_LEVEL
,
489 "9030: Array no longer protected due to missing or failed disk unit"},
490 {0x066B8000, 0, IPR_DEFAULT_LOG_LEVEL
,
491 "9071: Link operational transition"},
492 {0x066B8100, 0, IPR_DEFAULT_LOG_LEVEL
,
493 "9072: Link not operational transition"},
494 {0x066B8200, 0, IPR_DEFAULT_LOG_LEVEL
,
495 "9032: Array exposed but still protected"},
496 {0x066B8300, 0, IPR_DEBUG_LOG_LEVEL
,
497 "70DD: Device forced failed by disrupt device command"},
498 {0x066B9100, 0, IPR_DEFAULT_LOG_LEVEL
,
499 "4061: Multipath redundancy level got better"},
500 {0x066B9200, 0, IPR_DEFAULT_LOG_LEVEL
,
501 "4060: Multipath redundancy level got worse"},
502 {0x06808100, 0, IPR_DEBUG_LOG_LEVEL
,
503 "9083: Device raw mode enabled"},
504 {0x06808200, 0, IPR_DEBUG_LOG_LEVEL
,
505 "9084: Device raw mode disabled"},
507 "Failure due to other device"},
508 {0x07278000, 0, IPR_DEFAULT_LOG_LEVEL
,
509 "9008: IOA does not support functions expected by devices"},
510 {0x07278100, 0, IPR_DEFAULT_LOG_LEVEL
,
511 "9010: Cache data associated with attached devices cannot be found"},
512 {0x07278200, 0, IPR_DEFAULT_LOG_LEVEL
,
513 "9011: Cache data belongs to devices other than those attached"},
514 {0x07278400, 0, IPR_DEFAULT_LOG_LEVEL
,
515 "9020: Array missing 2 or more devices with only 1 device present"},
516 {0x07278500, 0, IPR_DEFAULT_LOG_LEVEL
,
517 "9021: Array missing 2 or more devices with 2 or more devices present"},
518 {0x07278600, 0, IPR_DEFAULT_LOG_LEVEL
,
519 "9022: Exposed array is missing a required device"},
520 {0x07278700, 0, IPR_DEFAULT_LOG_LEVEL
,
521 "9023: Array member(s) not at required physical locations"},
522 {0x07278800, 0, IPR_DEFAULT_LOG_LEVEL
,
523 "9024: Array not functional due to present hardware configuration"},
524 {0x07278900, 0, IPR_DEFAULT_LOG_LEVEL
,
525 "9026: Array not functional due to present hardware configuration"},
526 {0x07278A00, 0, IPR_DEFAULT_LOG_LEVEL
,
527 "9027: Array is missing a device and parity is out of sync"},
528 {0x07278B00, 0, IPR_DEFAULT_LOG_LEVEL
,
529 "9028: Maximum number of arrays already exist"},
530 {0x07278C00, 0, IPR_DEFAULT_LOG_LEVEL
,
531 "9050: Required cache data cannot be located for a disk unit"},
532 {0x07278D00, 0, IPR_DEFAULT_LOG_LEVEL
,
533 "9052: Cache data exists for a device that has been modified"},
534 {0x07278F00, 0, IPR_DEFAULT_LOG_LEVEL
,
535 "9054: IOA resources not available due to previous problems"},
536 {0x07279100, 0, IPR_DEFAULT_LOG_LEVEL
,
537 "9092: Disk unit requires initialization before use"},
538 {0x07279200, 0, IPR_DEFAULT_LOG_LEVEL
,
539 "9029: Incorrect hardware configuration change has been detected"},
540 {0x07279600, 0, IPR_DEFAULT_LOG_LEVEL
,
541 "9060: One or more disk pairs are missing from an array"},
542 {0x07279700, 0, IPR_DEFAULT_LOG_LEVEL
,
543 "9061: One or more disks are missing from an array"},
544 {0x07279800, 0, IPR_DEFAULT_LOG_LEVEL
,
545 "9062: One or more disks are missing from an array"},
546 {0x07279900, 0, IPR_DEFAULT_LOG_LEVEL
,
547 "9063: Maximum number of functional arrays has been exceeded"},
549 "Data protect, other volume set problem"},
551 "Aborted command, invalid descriptor"},
553 "Target operating conditions have changed, dual adapter takeover"},
555 "Aborted command, medium removal prevented"},
557 "Command terminated by host"},
559 "Aborted command, command terminated by host"}
562 static const struct ipr_ses_table_entry ipr_ses_table
[] = {
563 { "2104-DL1 ", "XXXXXXXXXXXXXXXX", 80 },
564 { "2104-TL1 ", "XXXXXXXXXXXXXXXX", 80 },
565 { "HSBP07M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 7 slot */
566 { "HSBP05M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 5 slot */
567 { "HSBP05M S U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Bowtie */
568 { "HSBP06E ASU2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* MartinFenning */
569 { "2104-DU3 ", "XXXXXXXXXXXXXXXX", 160 },
570 { "2104-TU3 ", "XXXXXXXXXXXXXXXX", 160 },
571 { "HSBP04C RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
572 { "HSBP06E RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
573 { "St V1S2 ", "XXXXXXXXXXXXXXXX", 160 },
574 { "HSBPD4M PU3SCSI", "XXXXXXX*XXXXXXXX", 160 },
575 { "VSBPD1H U3SCSI", "XXXXXXX*XXXXXXXX", 160 }
579 * Function Prototypes
581 static int ipr_reset_alert(struct ipr_cmnd
*);
582 static void ipr_process_ccn(struct ipr_cmnd
*);
583 static void ipr_process_error(struct ipr_cmnd
*);
584 static void ipr_reset_ioa_job(struct ipr_cmnd
*);
585 static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg
*,
586 enum ipr_shutdown_type
);
588 #ifdef CONFIG_SCSI_IPR_TRACE
590 * ipr_trc_hook - Add a trace entry to the driver trace
591 * @ipr_cmd: ipr command struct
593 * @add_data: additional data
598 static void ipr_trc_hook(struct ipr_cmnd
*ipr_cmd
,
599 u8 type
, u32 add_data
)
601 struct ipr_trace_entry
*trace_entry
;
602 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
603 unsigned int trace_index
;
605 trace_index
= atomic_add_return(1, &ioa_cfg
->trace_index
) & IPR_TRACE_INDEX_MASK
;
606 trace_entry
= &ioa_cfg
->trace
[trace_index
];
607 trace_entry
->time
= jiffies
;
608 trace_entry
->op_code
= ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[0];
609 trace_entry
->type
= type
;
610 if (ipr_cmd
->ioa_cfg
->sis64
)
611 trace_entry
->ata_op_code
= ipr_cmd
->i
.ata_ioadl
.regs
.command
;
613 trace_entry
->ata_op_code
= ipr_cmd
->ioarcb
.u
.add_data
.u
.regs
.command
;
614 trace_entry
->cmd_index
= ipr_cmd
->cmd_index
& 0xff;
615 trace_entry
->res_handle
= ipr_cmd
->ioarcb
.res_handle
;
616 trace_entry
->u
.add_data
= add_data
;
620 #define ipr_trc_hook(ipr_cmd, type, add_data) do { } while (0)
624 * ipr_lock_and_done - Acquire lock and complete command
625 * @ipr_cmd: ipr command struct
630 static void ipr_lock_and_done(struct ipr_cmnd
*ipr_cmd
)
632 unsigned long lock_flags
;
633 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
635 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
636 ipr_cmd
->done(ipr_cmd
);
637 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
641 * ipr_reinit_ipr_cmnd - Re-initialize an IPR Cmnd block for reuse
642 * @ipr_cmd: ipr command struct
647 static void ipr_reinit_ipr_cmnd(struct ipr_cmnd
*ipr_cmd
)
649 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
650 struct ipr_ioasa
*ioasa
= &ipr_cmd
->s
.ioasa
;
651 struct ipr_ioasa64
*ioasa64
= &ipr_cmd
->s
.ioasa64
;
652 dma_addr_t dma_addr
= ipr_cmd
->dma_addr
;
655 hrrq_id
= ioarcb
->cmd_pkt
.hrrq_id
;
656 memset(&ioarcb
->cmd_pkt
, 0, sizeof(struct ipr_cmd_pkt
));
657 ioarcb
->cmd_pkt
.hrrq_id
= hrrq_id
;
658 ioarcb
->data_transfer_length
= 0;
659 ioarcb
->read_data_transfer_length
= 0;
660 ioarcb
->ioadl_len
= 0;
661 ioarcb
->read_ioadl_len
= 0;
663 if (ipr_cmd
->ioa_cfg
->sis64
) {
664 ioarcb
->u
.sis64_addr_data
.data_ioadl_addr
=
665 cpu_to_be64(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ioadl64
));
666 ioasa64
->u
.gata
.status
= 0;
668 ioarcb
->write_ioadl_addr
=
669 cpu_to_be32(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ioadl
));
670 ioarcb
->read_ioadl_addr
= ioarcb
->write_ioadl_addr
;
671 ioasa
->u
.gata
.status
= 0;
674 ioasa
->hdr
.ioasc
= 0;
675 ioasa
->hdr
.residual_data_len
= 0;
676 ipr_cmd
->scsi_cmd
= NULL
;
678 ipr_cmd
->sense_buffer
[0] = 0;
679 ipr_cmd
->dma_use_sg
= 0;
683 * ipr_init_ipr_cmnd - Initialize an IPR Cmnd block
684 * @ipr_cmd: ipr command struct
689 static void ipr_init_ipr_cmnd(struct ipr_cmnd
*ipr_cmd
,
690 void (*fast_done
) (struct ipr_cmnd
*))
692 ipr_reinit_ipr_cmnd(ipr_cmd
);
693 ipr_cmd
->u
.scratch
= 0;
694 ipr_cmd
->sibling
= NULL
;
695 ipr_cmd
->eh_comp
= NULL
;
696 ipr_cmd
->fast_done
= fast_done
;
697 init_timer(&ipr_cmd
->timer
);
701 * __ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block
702 * @ioa_cfg: ioa config struct
705 * pointer to ipr command struct
708 struct ipr_cmnd
*__ipr_get_free_ipr_cmnd(struct ipr_hrr_queue
*hrrq
)
710 struct ipr_cmnd
*ipr_cmd
= NULL
;
712 if (likely(!list_empty(&hrrq
->hrrq_free_q
))) {
713 ipr_cmd
= list_entry(hrrq
->hrrq_free_q
.next
,
714 struct ipr_cmnd
, queue
);
715 list_del(&ipr_cmd
->queue
);
723 * ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block and initialize it
724 * @ioa_cfg: ioa config struct
727 * pointer to ipr command struct
730 struct ipr_cmnd
*ipr_get_free_ipr_cmnd(struct ipr_ioa_cfg
*ioa_cfg
)
732 struct ipr_cmnd
*ipr_cmd
=
733 __ipr_get_free_ipr_cmnd(&ioa_cfg
->hrrq
[IPR_INIT_HRRQ
]);
734 ipr_init_ipr_cmnd(ipr_cmd
, ipr_lock_and_done
);
739 * ipr_mask_and_clear_interrupts - Mask all and clear specified interrupts
740 * @ioa_cfg: ioa config struct
741 * @clr_ints: interrupts to clear
743 * This function masks all interrupts on the adapter, then clears the
744 * interrupts specified in the mask
749 static void ipr_mask_and_clear_interrupts(struct ipr_ioa_cfg
*ioa_cfg
,
752 volatile u32 int_reg
;
755 /* Stop new interrupts */
756 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
757 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
758 ioa_cfg
->hrrq
[i
].allow_interrupts
= 0;
759 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
763 /* Set interrupt mask to stop all new interrupts */
765 writeq(~0, ioa_cfg
->regs
.set_interrupt_mask_reg
);
767 writel(~0, ioa_cfg
->regs
.set_interrupt_mask_reg
);
769 /* Clear any pending interrupts */
771 writel(~0, ioa_cfg
->regs
.clr_interrupt_reg
);
772 writel(clr_ints
, ioa_cfg
->regs
.clr_interrupt_reg32
);
773 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
777 * ipr_save_pcix_cmd_reg - Save PCI-X command register
778 * @ioa_cfg: ioa config struct
781 * 0 on success / -EIO on failure
783 static int ipr_save_pcix_cmd_reg(struct ipr_ioa_cfg
*ioa_cfg
)
785 int pcix_cmd_reg
= pci_find_capability(ioa_cfg
->pdev
, PCI_CAP_ID_PCIX
);
787 if (pcix_cmd_reg
== 0)
790 if (pci_read_config_word(ioa_cfg
->pdev
, pcix_cmd_reg
+ PCI_X_CMD
,
791 &ioa_cfg
->saved_pcix_cmd_reg
) != PCIBIOS_SUCCESSFUL
) {
792 dev_err(&ioa_cfg
->pdev
->dev
, "Failed to save PCI-X command register\n");
796 ioa_cfg
->saved_pcix_cmd_reg
|= PCI_X_CMD_DPERR_E
| PCI_X_CMD_ERO
;
801 * ipr_set_pcix_cmd_reg - Setup PCI-X command register
802 * @ioa_cfg: ioa config struct
805 * 0 on success / -EIO on failure
807 static int ipr_set_pcix_cmd_reg(struct ipr_ioa_cfg
*ioa_cfg
)
809 int pcix_cmd_reg
= pci_find_capability(ioa_cfg
->pdev
, PCI_CAP_ID_PCIX
);
812 if (pci_write_config_word(ioa_cfg
->pdev
, pcix_cmd_reg
+ PCI_X_CMD
,
813 ioa_cfg
->saved_pcix_cmd_reg
) != PCIBIOS_SUCCESSFUL
) {
814 dev_err(&ioa_cfg
->pdev
->dev
, "Failed to setup PCI-X command register\n");
823 * ipr_sata_eh_done - done function for aborted SATA commands
824 * @ipr_cmd: ipr command struct
826 * This function is invoked for ops generated to SATA
827 * devices which are being aborted.
832 static void ipr_sata_eh_done(struct ipr_cmnd
*ipr_cmd
)
834 struct ata_queued_cmd
*qc
= ipr_cmd
->qc
;
835 struct ipr_sata_port
*sata_port
= qc
->ap
->private_data
;
837 qc
->err_mask
|= AC_ERR_OTHER
;
838 sata_port
->ioasa
.status
|= ATA_BUSY
;
839 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
844 * ipr_scsi_eh_done - mid-layer done function for aborted ops
845 * @ipr_cmd: ipr command struct
847 * This function is invoked by the interrupt handler for
848 * ops generated by the SCSI mid-layer which are being aborted.
853 static void ipr_scsi_eh_done(struct ipr_cmnd
*ipr_cmd
)
855 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
857 scsi_cmd
->result
|= (DID_ERROR
<< 16);
859 scsi_dma_unmap(ipr_cmd
->scsi_cmd
);
860 scsi_cmd
->scsi_done(scsi_cmd
);
861 if (ipr_cmd
->eh_comp
)
862 complete(ipr_cmd
->eh_comp
);
863 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
867 * ipr_fail_all_ops - Fails all outstanding ops.
868 * @ioa_cfg: ioa config struct
870 * This function fails all outstanding ops.
875 static void ipr_fail_all_ops(struct ipr_ioa_cfg
*ioa_cfg
)
877 struct ipr_cmnd
*ipr_cmd
, *temp
;
878 struct ipr_hrr_queue
*hrrq
;
881 for_each_hrrq(hrrq
, ioa_cfg
) {
882 spin_lock(&hrrq
->_lock
);
883 list_for_each_entry_safe(ipr_cmd
,
884 temp
, &hrrq
->hrrq_pending_q
, queue
) {
885 list_del(&ipr_cmd
->queue
);
887 ipr_cmd
->s
.ioasa
.hdr
.ioasc
=
888 cpu_to_be32(IPR_IOASC_IOA_WAS_RESET
);
889 ipr_cmd
->s
.ioasa
.hdr
.ilid
=
890 cpu_to_be32(IPR_DRIVER_ILID
);
892 if (ipr_cmd
->scsi_cmd
)
893 ipr_cmd
->done
= ipr_scsi_eh_done
;
894 else if (ipr_cmd
->qc
)
895 ipr_cmd
->done
= ipr_sata_eh_done
;
897 ipr_trc_hook(ipr_cmd
, IPR_TRACE_FINISH
,
898 IPR_IOASC_IOA_WAS_RESET
);
899 del_timer(&ipr_cmd
->timer
);
900 ipr_cmd
->done(ipr_cmd
);
902 spin_unlock(&hrrq
->_lock
);
908 * ipr_send_command - Send driver initiated requests.
909 * @ipr_cmd: ipr command struct
911 * This function sends a command to the adapter using the correct write call.
912 * In the case of sis64, calculate the ioarcb size required. Then or in the
918 static void ipr_send_command(struct ipr_cmnd
*ipr_cmd
)
920 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
921 dma_addr_t send_dma_addr
= ipr_cmd
->dma_addr
;
923 if (ioa_cfg
->sis64
) {
924 /* The default size is 256 bytes */
925 send_dma_addr
|= 0x1;
927 /* If the number of ioadls * size of ioadl > 128 bytes,
928 then use a 512 byte ioarcb */
929 if (ipr_cmd
->dma_use_sg
* sizeof(struct ipr_ioadl64_desc
) > 128 )
930 send_dma_addr
|= 0x4;
931 writeq(send_dma_addr
, ioa_cfg
->regs
.ioarrin_reg
);
933 writel(send_dma_addr
, ioa_cfg
->regs
.ioarrin_reg
);
937 * ipr_do_req - Send driver initiated requests.
938 * @ipr_cmd: ipr command struct
939 * @done: done function
940 * @timeout_func: timeout function
941 * @timeout: timeout value
943 * This function sends the specified command to the adapter with the
944 * timeout given. The done function is invoked on command completion.
949 static void ipr_do_req(struct ipr_cmnd
*ipr_cmd
,
950 void (*done
) (struct ipr_cmnd
*),
951 void (*timeout_func
) (struct ipr_cmnd
*), u32 timeout
)
953 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
955 ipr_cmd
->done
= done
;
957 ipr_cmd
->timer
.data
= (unsigned long) ipr_cmd
;
958 ipr_cmd
->timer
.expires
= jiffies
+ timeout
;
959 ipr_cmd
->timer
.function
= (void (*)(unsigned long))timeout_func
;
961 add_timer(&ipr_cmd
->timer
);
963 ipr_trc_hook(ipr_cmd
, IPR_TRACE_START
, 0);
965 ipr_send_command(ipr_cmd
);
969 * ipr_internal_cmd_done - Op done function for an internally generated op.
970 * @ipr_cmd: ipr command struct
972 * This function is the op done function for an internally generated,
973 * blocking op. It simply wakes the sleeping thread.
978 static void ipr_internal_cmd_done(struct ipr_cmnd
*ipr_cmd
)
980 if (ipr_cmd
->sibling
)
981 ipr_cmd
->sibling
= NULL
;
983 complete(&ipr_cmd
->completion
);
987 * ipr_init_ioadl - initialize the ioadl for the correct SIS type
988 * @ipr_cmd: ipr command struct
989 * @dma_addr: dma address
990 * @len: transfer length
991 * @flags: ioadl flag value
993 * This function initializes an ioadl in the case where there is only a single
999 static void ipr_init_ioadl(struct ipr_cmnd
*ipr_cmd
, dma_addr_t dma_addr
,
1002 struct ipr_ioadl_desc
*ioadl
= ipr_cmd
->i
.ioadl
;
1003 struct ipr_ioadl64_desc
*ioadl64
= ipr_cmd
->i
.ioadl64
;
1005 ipr_cmd
->dma_use_sg
= 1;
1007 if (ipr_cmd
->ioa_cfg
->sis64
) {
1008 ioadl64
->flags
= cpu_to_be32(flags
);
1009 ioadl64
->data_len
= cpu_to_be32(len
);
1010 ioadl64
->address
= cpu_to_be64(dma_addr
);
1012 ipr_cmd
->ioarcb
.ioadl_len
=
1013 cpu_to_be32(sizeof(struct ipr_ioadl64_desc
));
1014 ipr_cmd
->ioarcb
.data_transfer_length
= cpu_to_be32(len
);
1016 ioadl
->flags_and_data_len
= cpu_to_be32(flags
| len
);
1017 ioadl
->address
= cpu_to_be32(dma_addr
);
1019 if (flags
== IPR_IOADL_FLAGS_READ_LAST
) {
1020 ipr_cmd
->ioarcb
.read_ioadl_len
=
1021 cpu_to_be32(sizeof(struct ipr_ioadl_desc
));
1022 ipr_cmd
->ioarcb
.read_data_transfer_length
= cpu_to_be32(len
);
1024 ipr_cmd
->ioarcb
.ioadl_len
=
1025 cpu_to_be32(sizeof(struct ipr_ioadl_desc
));
1026 ipr_cmd
->ioarcb
.data_transfer_length
= cpu_to_be32(len
);
1032 * ipr_send_blocking_cmd - Send command and sleep on its completion.
1033 * @ipr_cmd: ipr command struct
1034 * @timeout_func: function to invoke if command times out
1040 static void ipr_send_blocking_cmd(struct ipr_cmnd
*ipr_cmd
,
1041 void (*timeout_func
) (struct ipr_cmnd
*ipr_cmd
),
1044 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
1046 init_completion(&ipr_cmd
->completion
);
1047 ipr_do_req(ipr_cmd
, ipr_internal_cmd_done
, timeout_func
, timeout
);
1049 spin_unlock_irq(ioa_cfg
->host
->host_lock
);
1050 wait_for_completion(&ipr_cmd
->completion
);
1051 spin_lock_irq(ioa_cfg
->host
->host_lock
);
1054 static int ipr_get_hrrq_index(struct ipr_ioa_cfg
*ioa_cfg
)
1058 if (ioa_cfg
->hrrq_num
== 1)
1061 hrrq
= atomic_add_return(1, &ioa_cfg
->hrrq_index
);
1062 hrrq
= (hrrq
% (ioa_cfg
->hrrq_num
- 1)) + 1;
1068 * ipr_send_hcam - Send an HCAM to the adapter.
1069 * @ioa_cfg: ioa config struct
1071 * @hostrcb: hostrcb struct
1073 * This function will send a Host Controlled Async command to the adapter.
1074 * If HCAMs are currently not allowed to be issued to the adapter, it will
1075 * place the hostrcb on the free queue.
1080 static void ipr_send_hcam(struct ipr_ioa_cfg
*ioa_cfg
, u8 type
,
1081 struct ipr_hostrcb
*hostrcb
)
1083 struct ipr_cmnd
*ipr_cmd
;
1084 struct ipr_ioarcb
*ioarcb
;
1086 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].allow_cmds
) {
1087 ipr_cmd
= ipr_get_free_ipr_cmnd(ioa_cfg
);
1088 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
1089 list_add_tail(&hostrcb
->queue
, &ioa_cfg
->hostrcb_pending_q
);
1091 ipr_cmd
->u
.hostrcb
= hostrcb
;
1092 ioarcb
= &ipr_cmd
->ioarcb
;
1094 ioarcb
->res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
1095 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_HCAM
;
1096 ioarcb
->cmd_pkt
.cdb
[0] = IPR_HOST_CONTROLLED_ASYNC
;
1097 ioarcb
->cmd_pkt
.cdb
[1] = type
;
1098 ioarcb
->cmd_pkt
.cdb
[7] = (sizeof(hostrcb
->hcam
) >> 8) & 0xff;
1099 ioarcb
->cmd_pkt
.cdb
[8] = sizeof(hostrcb
->hcam
) & 0xff;
1101 ipr_init_ioadl(ipr_cmd
, hostrcb
->hostrcb_dma
,
1102 sizeof(hostrcb
->hcam
), IPR_IOADL_FLAGS_READ_LAST
);
1104 if (type
== IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE
)
1105 ipr_cmd
->done
= ipr_process_ccn
;
1107 ipr_cmd
->done
= ipr_process_error
;
1109 ipr_trc_hook(ipr_cmd
, IPR_TRACE_START
, IPR_IOA_RES_ADDR
);
1111 ipr_send_command(ipr_cmd
);
1113 list_add_tail(&hostrcb
->queue
, &ioa_cfg
->hostrcb_free_q
);
1118 * ipr_update_ata_class - Update the ata class in the resource entry
1119 * @res: resource entry struct
1120 * @proto: cfgte device bus protocol value
1125 static void ipr_update_ata_class(struct ipr_resource_entry
*res
, unsigned int proto
)
1128 case IPR_PROTO_SATA
:
1129 case IPR_PROTO_SAS_STP
:
1130 res
->ata_class
= ATA_DEV_ATA
;
1132 case IPR_PROTO_SATA_ATAPI
:
1133 case IPR_PROTO_SAS_STP_ATAPI
:
1134 res
->ata_class
= ATA_DEV_ATAPI
;
1137 res
->ata_class
= ATA_DEV_UNKNOWN
;
1143 * ipr_init_res_entry - Initialize a resource entry struct.
1144 * @res: resource entry struct
1145 * @cfgtew: config table entry wrapper struct
1150 static void ipr_init_res_entry(struct ipr_resource_entry
*res
,
1151 struct ipr_config_table_entry_wrapper
*cfgtew
)
1155 struct ipr_ioa_cfg
*ioa_cfg
= res
->ioa_cfg
;
1156 struct ipr_resource_entry
*gscsi_res
= NULL
;
1158 res
->needs_sync_complete
= 0;
1161 res
->del_from_ml
= 0;
1162 res
->resetting_device
= 0;
1163 res
->reset_occurred
= 0;
1165 res
->sata_port
= NULL
;
1167 if (ioa_cfg
->sis64
) {
1168 proto
= cfgtew
->u
.cfgte64
->proto
;
1169 res
->flags
= be16_to_cpu(cfgtew
->u
.cfgte64
->flags
);
1170 res
->res_flags
= be16_to_cpu(cfgtew
->u
.cfgte64
->res_flags
);
1171 res
->qmodel
= IPR_QUEUEING_MODEL64(res
);
1172 res
->type
= cfgtew
->u
.cfgte64
->res_type
;
1174 memcpy(res
->res_path
, &cfgtew
->u
.cfgte64
->res_path
,
1175 sizeof(res
->res_path
));
1178 memcpy(&res
->dev_lun
.scsi_lun
, &cfgtew
->u
.cfgte64
->lun
,
1179 sizeof(res
->dev_lun
.scsi_lun
));
1180 res
->lun
= scsilun_to_int(&res
->dev_lun
);
1182 if (res
->type
== IPR_RES_TYPE_GENERIC_SCSI
) {
1183 list_for_each_entry(gscsi_res
, &ioa_cfg
->used_res_q
, queue
) {
1184 if (gscsi_res
->dev_id
== cfgtew
->u
.cfgte64
->dev_id
) {
1186 res
->target
= gscsi_res
->target
;
1191 res
->target
= find_first_zero_bit(ioa_cfg
->target_ids
,
1192 ioa_cfg
->max_devs_supported
);
1193 set_bit(res
->target
, ioa_cfg
->target_ids
);
1195 } else if (res
->type
== IPR_RES_TYPE_IOAFP
) {
1196 res
->bus
= IPR_IOAFP_VIRTUAL_BUS
;
1198 } else if (res
->type
== IPR_RES_TYPE_ARRAY
) {
1199 res
->bus
= IPR_ARRAY_VIRTUAL_BUS
;
1200 res
->target
= find_first_zero_bit(ioa_cfg
->array_ids
,
1201 ioa_cfg
->max_devs_supported
);
1202 set_bit(res
->target
, ioa_cfg
->array_ids
);
1203 } else if (res
->type
== IPR_RES_TYPE_VOLUME_SET
) {
1204 res
->bus
= IPR_VSET_VIRTUAL_BUS
;
1205 res
->target
= find_first_zero_bit(ioa_cfg
->vset_ids
,
1206 ioa_cfg
->max_devs_supported
);
1207 set_bit(res
->target
, ioa_cfg
->vset_ids
);
1209 res
->target
= find_first_zero_bit(ioa_cfg
->target_ids
,
1210 ioa_cfg
->max_devs_supported
);
1211 set_bit(res
->target
, ioa_cfg
->target_ids
);
1214 proto
= cfgtew
->u
.cfgte
->proto
;
1215 res
->qmodel
= IPR_QUEUEING_MODEL(res
);
1216 res
->flags
= cfgtew
->u
.cfgte
->flags
;
1217 if (res
->flags
& IPR_IS_IOA_RESOURCE
)
1218 res
->type
= IPR_RES_TYPE_IOAFP
;
1220 res
->type
= cfgtew
->u
.cfgte
->rsvd_subtype
& 0x0f;
1222 res
->bus
= cfgtew
->u
.cfgte
->res_addr
.bus
;
1223 res
->target
= cfgtew
->u
.cfgte
->res_addr
.target
;
1224 res
->lun
= cfgtew
->u
.cfgte
->res_addr
.lun
;
1225 res
->lun_wwn
= get_unaligned_be64(cfgtew
->u
.cfgte
->lun_wwn
);
1228 ipr_update_ata_class(res
, proto
);
1232 * ipr_is_same_device - Determine if two devices are the same.
1233 * @res: resource entry struct
1234 * @cfgtew: config table entry wrapper struct
1237 * 1 if the devices are the same / 0 otherwise
1239 static int ipr_is_same_device(struct ipr_resource_entry
*res
,
1240 struct ipr_config_table_entry_wrapper
*cfgtew
)
1242 if (res
->ioa_cfg
->sis64
) {
1243 if (!memcmp(&res
->dev_id
, &cfgtew
->u
.cfgte64
->dev_id
,
1244 sizeof(cfgtew
->u
.cfgte64
->dev_id
)) &&
1245 !memcmp(&res
->dev_lun
.scsi_lun
, &cfgtew
->u
.cfgte64
->lun
,
1246 sizeof(cfgtew
->u
.cfgte64
->lun
))) {
1250 if (res
->bus
== cfgtew
->u
.cfgte
->res_addr
.bus
&&
1251 res
->target
== cfgtew
->u
.cfgte
->res_addr
.target
&&
1252 res
->lun
== cfgtew
->u
.cfgte
->res_addr
.lun
)
1260 * __ipr_format_res_path - Format the resource path for printing.
1261 * @res_path: resource path
1263 * @len: length of buffer provided
1268 static char *__ipr_format_res_path(u8
*res_path
, char *buffer
, int len
)
1274 p
+= snprintf(p
, buffer
+ len
- p
, "%02X", res_path
[0]);
1275 for (i
= 1; res_path
[i
] != 0xff && ((i
* 3) < len
); i
++)
1276 p
+= snprintf(p
, buffer
+ len
- p
, "-%02X", res_path
[i
]);
1282 * ipr_format_res_path - Format the resource path for printing.
1283 * @ioa_cfg: ioa config struct
1284 * @res_path: resource path
1286 * @len: length of buffer provided
1291 static char *ipr_format_res_path(struct ipr_ioa_cfg
*ioa_cfg
,
1292 u8
*res_path
, char *buffer
, int len
)
1297 p
+= snprintf(p
, buffer
+ len
- p
, "%d/", ioa_cfg
->host
->host_no
);
1298 __ipr_format_res_path(res_path
, p
, len
- (buffer
- p
));
1303 * ipr_update_res_entry - Update the resource entry.
1304 * @res: resource entry struct
1305 * @cfgtew: config table entry wrapper struct
1310 static void ipr_update_res_entry(struct ipr_resource_entry
*res
,
1311 struct ipr_config_table_entry_wrapper
*cfgtew
)
1313 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
1317 if (res
->ioa_cfg
->sis64
) {
1318 res
->flags
= be16_to_cpu(cfgtew
->u
.cfgte64
->flags
);
1319 res
->res_flags
= be16_to_cpu(cfgtew
->u
.cfgte64
->res_flags
);
1320 res
->type
= cfgtew
->u
.cfgte64
->res_type
;
1322 memcpy(&res
->std_inq_data
, &cfgtew
->u
.cfgte64
->std_inq_data
,
1323 sizeof(struct ipr_std_inq_data
));
1325 res
->qmodel
= IPR_QUEUEING_MODEL64(res
);
1326 proto
= cfgtew
->u
.cfgte64
->proto
;
1327 res
->res_handle
= cfgtew
->u
.cfgte64
->res_handle
;
1328 res
->dev_id
= cfgtew
->u
.cfgte64
->dev_id
;
1330 memcpy(&res
->dev_lun
.scsi_lun
, &cfgtew
->u
.cfgte64
->lun
,
1331 sizeof(res
->dev_lun
.scsi_lun
));
1333 if (memcmp(res
->res_path
, &cfgtew
->u
.cfgte64
->res_path
,
1334 sizeof(res
->res_path
))) {
1335 memcpy(res
->res_path
, &cfgtew
->u
.cfgte64
->res_path
,
1336 sizeof(res
->res_path
));
1340 if (res
->sdev
&& new_path
)
1341 sdev_printk(KERN_INFO
, res
->sdev
, "Resource path: %s\n",
1342 ipr_format_res_path(res
->ioa_cfg
,
1343 res
->res_path
, buffer
, sizeof(buffer
)));
1345 res
->flags
= cfgtew
->u
.cfgte
->flags
;
1346 if (res
->flags
& IPR_IS_IOA_RESOURCE
)
1347 res
->type
= IPR_RES_TYPE_IOAFP
;
1349 res
->type
= cfgtew
->u
.cfgte
->rsvd_subtype
& 0x0f;
1351 memcpy(&res
->std_inq_data
, &cfgtew
->u
.cfgte
->std_inq_data
,
1352 sizeof(struct ipr_std_inq_data
));
1354 res
->qmodel
= IPR_QUEUEING_MODEL(res
);
1355 proto
= cfgtew
->u
.cfgte
->proto
;
1356 res
->res_handle
= cfgtew
->u
.cfgte
->res_handle
;
1359 ipr_update_ata_class(res
, proto
);
1363 * ipr_clear_res_target - Clear the bit in the bit map representing the target
1365 * @res: resource entry struct
1366 * @cfgtew: config table entry wrapper struct
1371 static void ipr_clear_res_target(struct ipr_resource_entry
*res
)
1373 struct ipr_resource_entry
*gscsi_res
= NULL
;
1374 struct ipr_ioa_cfg
*ioa_cfg
= res
->ioa_cfg
;
1376 if (!ioa_cfg
->sis64
)
1379 if (res
->bus
== IPR_ARRAY_VIRTUAL_BUS
)
1380 clear_bit(res
->target
, ioa_cfg
->array_ids
);
1381 else if (res
->bus
== IPR_VSET_VIRTUAL_BUS
)
1382 clear_bit(res
->target
, ioa_cfg
->vset_ids
);
1383 else if (res
->bus
== 0 && res
->type
== IPR_RES_TYPE_GENERIC_SCSI
) {
1384 list_for_each_entry(gscsi_res
, &ioa_cfg
->used_res_q
, queue
)
1385 if (gscsi_res
->dev_id
== res
->dev_id
&& gscsi_res
!= res
)
1387 clear_bit(res
->target
, ioa_cfg
->target_ids
);
1389 } else if (res
->bus
== 0)
1390 clear_bit(res
->target
, ioa_cfg
->target_ids
);
1394 * ipr_handle_config_change - Handle a config change from the adapter
1395 * @ioa_cfg: ioa config struct
1401 static void ipr_handle_config_change(struct ipr_ioa_cfg
*ioa_cfg
,
1402 struct ipr_hostrcb
*hostrcb
)
1404 struct ipr_resource_entry
*res
= NULL
;
1405 struct ipr_config_table_entry_wrapper cfgtew
;
1406 __be32 cc_res_handle
;
1410 if (ioa_cfg
->sis64
) {
1411 cfgtew
.u
.cfgte64
= &hostrcb
->hcam
.u
.ccn
.u
.cfgte64
;
1412 cc_res_handle
= cfgtew
.u
.cfgte64
->res_handle
;
1414 cfgtew
.u
.cfgte
= &hostrcb
->hcam
.u
.ccn
.u
.cfgte
;
1415 cc_res_handle
= cfgtew
.u
.cfgte
->res_handle
;
1418 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
1419 if (res
->res_handle
== cc_res_handle
) {
1426 if (list_empty(&ioa_cfg
->free_res_q
)) {
1427 ipr_send_hcam(ioa_cfg
,
1428 IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE
,
1433 res
= list_entry(ioa_cfg
->free_res_q
.next
,
1434 struct ipr_resource_entry
, queue
);
1436 list_del(&res
->queue
);
1437 ipr_init_res_entry(res
, &cfgtew
);
1438 list_add_tail(&res
->queue
, &ioa_cfg
->used_res_q
);
1441 ipr_update_res_entry(res
, &cfgtew
);
1443 if (hostrcb
->hcam
.notify_type
== IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY
) {
1445 res
->del_from_ml
= 1;
1446 res
->res_handle
= IPR_INVALID_RES_HANDLE
;
1447 schedule_work(&ioa_cfg
->work_q
);
1449 ipr_clear_res_target(res
);
1450 list_move_tail(&res
->queue
, &ioa_cfg
->free_res_q
);
1452 } else if (!res
->sdev
|| res
->del_from_ml
) {
1454 schedule_work(&ioa_cfg
->work_q
);
1457 ipr_send_hcam(ioa_cfg
, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE
, hostrcb
);
1461 * ipr_process_ccn - Op done function for a CCN.
1462 * @ipr_cmd: ipr command struct
1464 * This function is the op done function for a configuration
1465 * change notification host controlled async from the adapter.
1470 static void ipr_process_ccn(struct ipr_cmnd
*ipr_cmd
)
1472 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
1473 struct ipr_hostrcb
*hostrcb
= ipr_cmd
->u
.hostrcb
;
1474 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
1476 list_del_init(&hostrcb
->queue
);
1477 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
1480 if (ioasc
!= IPR_IOASC_IOA_WAS_RESET
&&
1481 ioasc
!= IPR_IOASC_ABORTED_CMD_TERM_BY_HOST
)
1482 dev_err(&ioa_cfg
->pdev
->dev
,
1483 "Host RCB failed with IOASC: 0x%08X\n", ioasc
);
1485 ipr_send_hcam(ioa_cfg
, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE
, hostrcb
);
1487 ipr_handle_config_change(ioa_cfg
, hostrcb
);
1492 * strip_and_pad_whitespace - Strip and pad trailing whitespace.
1493 * @i: index into buffer
1494 * @buf: string to modify
1496 * This function will strip all trailing whitespace, pad the end
1497 * of the string with a single space, and NULL terminate the string.
1500 * new length of string
1502 static int strip_and_pad_whitespace(int i
, char *buf
)
1504 while (i
&& buf
[i
] == ' ')
1512 * ipr_log_vpd_compact - Log the passed extended VPD compactly.
1513 * @prefix: string to print at start of printk
1514 * @hostrcb: hostrcb pointer
1515 * @vpd: vendor/product id/sn struct
1520 static void ipr_log_vpd_compact(char *prefix
, struct ipr_hostrcb
*hostrcb
,
1521 struct ipr_vpd
*vpd
)
1523 char buffer
[IPR_VENDOR_ID_LEN
+ IPR_PROD_ID_LEN
+ IPR_SERIAL_NUM_LEN
+ 3];
1526 memcpy(buffer
, vpd
->vpids
.vendor_id
, IPR_VENDOR_ID_LEN
);
1527 i
= strip_and_pad_whitespace(IPR_VENDOR_ID_LEN
- 1, buffer
);
1529 memcpy(&buffer
[i
], vpd
->vpids
.product_id
, IPR_PROD_ID_LEN
);
1530 i
= strip_and_pad_whitespace(i
+ IPR_PROD_ID_LEN
- 1, buffer
);
1532 memcpy(&buffer
[i
], vpd
->sn
, IPR_SERIAL_NUM_LEN
);
1533 buffer
[IPR_SERIAL_NUM_LEN
+ i
] = '\0';
1535 ipr_hcam_err(hostrcb
, "%s VPID/SN: %s\n", prefix
, buffer
);
1539 * ipr_log_vpd - Log the passed VPD to the error log.
1540 * @vpd: vendor/product id/sn struct
1545 static void ipr_log_vpd(struct ipr_vpd
*vpd
)
1547 char buffer
[IPR_VENDOR_ID_LEN
+ IPR_PROD_ID_LEN
1548 + IPR_SERIAL_NUM_LEN
];
1550 memcpy(buffer
, vpd
->vpids
.vendor_id
, IPR_VENDOR_ID_LEN
);
1551 memcpy(buffer
+ IPR_VENDOR_ID_LEN
, vpd
->vpids
.product_id
,
1553 buffer
[IPR_VENDOR_ID_LEN
+ IPR_PROD_ID_LEN
] = '\0';
1554 ipr_err("Vendor/Product ID: %s\n", buffer
);
1556 memcpy(buffer
, vpd
->sn
, IPR_SERIAL_NUM_LEN
);
1557 buffer
[IPR_SERIAL_NUM_LEN
] = '\0';
1558 ipr_err(" Serial Number: %s\n", buffer
);
1562 * ipr_log_ext_vpd_compact - Log the passed extended VPD compactly.
1563 * @prefix: string to print at start of printk
1564 * @hostrcb: hostrcb pointer
1565 * @vpd: vendor/product id/sn/wwn struct
1570 static void ipr_log_ext_vpd_compact(char *prefix
, struct ipr_hostrcb
*hostrcb
,
1571 struct ipr_ext_vpd
*vpd
)
1573 ipr_log_vpd_compact(prefix
, hostrcb
, &vpd
->vpd
);
1574 ipr_hcam_err(hostrcb
, "%s WWN: %08X%08X\n", prefix
,
1575 be32_to_cpu(vpd
->wwid
[0]), be32_to_cpu(vpd
->wwid
[1]));
1579 * ipr_log_ext_vpd - Log the passed extended VPD to the error log.
1580 * @vpd: vendor/product id/sn/wwn struct
1585 static void ipr_log_ext_vpd(struct ipr_ext_vpd
*vpd
)
1587 ipr_log_vpd(&vpd
->vpd
);
1588 ipr_err(" WWN: %08X%08X\n", be32_to_cpu(vpd
->wwid
[0]),
1589 be32_to_cpu(vpd
->wwid
[1]));
1593 * ipr_log_enhanced_cache_error - Log a cache error.
1594 * @ioa_cfg: ioa config struct
1595 * @hostrcb: hostrcb struct
1600 static void ipr_log_enhanced_cache_error(struct ipr_ioa_cfg
*ioa_cfg
,
1601 struct ipr_hostrcb
*hostrcb
)
1603 struct ipr_hostrcb_type_12_error
*error
;
1606 error
= &hostrcb
->hcam
.u
.error64
.u
.type_12_error
;
1608 error
= &hostrcb
->hcam
.u
.error
.u
.type_12_error
;
1610 ipr_err("-----Current Configuration-----\n");
1611 ipr_err("Cache Directory Card Information:\n");
1612 ipr_log_ext_vpd(&error
->ioa_vpd
);
1613 ipr_err("Adapter Card Information:\n");
1614 ipr_log_ext_vpd(&error
->cfc_vpd
);
1616 ipr_err("-----Expected Configuration-----\n");
1617 ipr_err("Cache Directory Card Information:\n");
1618 ipr_log_ext_vpd(&error
->ioa_last_attached_to_cfc_vpd
);
1619 ipr_err("Adapter Card Information:\n");
1620 ipr_log_ext_vpd(&error
->cfc_last_attached_to_ioa_vpd
);
1622 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1623 be32_to_cpu(error
->ioa_data
[0]),
1624 be32_to_cpu(error
->ioa_data
[1]),
1625 be32_to_cpu(error
->ioa_data
[2]));
1629 * ipr_log_cache_error - Log a cache error.
1630 * @ioa_cfg: ioa config struct
1631 * @hostrcb: hostrcb struct
1636 static void ipr_log_cache_error(struct ipr_ioa_cfg
*ioa_cfg
,
1637 struct ipr_hostrcb
*hostrcb
)
1639 struct ipr_hostrcb_type_02_error
*error
=
1640 &hostrcb
->hcam
.u
.error
.u
.type_02_error
;
1642 ipr_err("-----Current Configuration-----\n");
1643 ipr_err("Cache Directory Card Information:\n");
1644 ipr_log_vpd(&error
->ioa_vpd
);
1645 ipr_err("Adapter Card Information:\n");
1646 ipr_log_vpd(&error
->cfc_vpd
);
1648 ipr_err("-----Expected Configuration-----\n");
1649 ipr_err("Cache Directory Card Information:\n");
1650 ipr_log_vpd(&error
->ioa_last_attached_to_cfc_vpd
);
1651 ipr_err("Adapter Card Information:\n");
1652 ipr_log_vpd(&error
->cfc_last_attached_to_ioa_vpd
);
1654 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1655 be32_to_cpu(error
->ioa_data
[0]),
1656 be32_to_cpu(error
->ioa_data
[1]),
1657 be32_to_cpu(error
->ioa_data
[2]));
1661 * ipr_log_enhanced_config_error - Log a configuration error.
1662 * @ioa_cfg: ioa config struct
1663 * @hostrcb: hostrcb struct
1668 static void ipr_log_enhanced_config_error(struct ipr_ioa_cfg
*ioa_cfg
,
1669 struct ipr_hostrcb
*hostrcb
)
1671 int errors_logged
, i
;
1672 struct ipr_hostrcb_device_data_entry_enhanced
*dev_entry
;
1673 struct ipr_hostrcb_type_13_error
*error
;
1675 error
= &hostrcb
->hcam
.u
.error
.u
.type_13_error
;
1676 errors_logged
= be32_to_cpu(error
->errors_logged
);
1678 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1679 be32_to_cpu(error
->errors_detected
), errors_logged
);
1681 dev_entry
= error
->dev
;
1683 for (i
= 0; i
< errors_logged
; i
++, dev_entry
++) {
1686 ipr_phys_res_err(ioa_cfg
, dev_entry
->dev_res_addr
, "Device %d", i
+ 1);
1687 ipr_log_ext_vpd(&dev_entry
->vpd
);
1689 ipr_err("-----New Device Information-----\n");
1690 ipr_log_ext_vpd(&dev_entry
->new_vpd
);
1692 ipr_err("Cache Directory Card Information:\n");
1693 ipr_log_ext_vpd(&dev_entry
->ioa_last_with_dev_vpd
);
1695 ipr_err("Adapter Card Information:\n");
1696 ipr_log_ext_vpd(&dev_entry
->cfc_last_with_dev_vpd
);
1701 * ipr_log_sis64_config_error - Log a device error.
1702 * @ioa_cfg: ioa config struct
1703 * @hostrcb: hostrcb struct
1708 static void ipr_log_sis64_config_error(struct ipr_ioa_cfg
*ioa_cfg
,
1709 struct ipr_hostrcb
*hostrcb
)
1711 int errors_logged
, i
;
1712 struct ipr_hostrcb64_device_data_entry_enhanced
*dev_entry
;
1713 struct ipr_hostrcb_type_23_error
*error
;
1714 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
1716 error
= &hostrcb
->hcam
.u
.error64
.u
.type_23_error
;
1717 errors_logged
= be32_to_cpu(error
->errors_logged
);
1719 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1720 be32_to_cpu(error
->errors_detected
), errors_logged
);
1722 dev_entry
= error
->dev
;
1724 for (i
= 0; i
< errors_logged
; i
++, dev_entry
++) {
1727 ipr_err("Device %d : %s", i
+ 1,
1728 __ipr_format_res_path(dev_entry
->res_path
,
1729 buffer
, sizeof(buffer
)));
1730 ipr_log_ext_vpd(&dev_entry
->vpd
);
1732 ipr_err("-----New Device Information-----\n");
1733 ipr_log_ext_vpd(&dev_entry
->new_vpd
);
1735 ipr_err("Cache Directory Card Information:\n");
1736 ipr_log_ext_vpd(&dev_entry
->ioa_last_with_dev_vpd
);
1738 ipr_err("Adapter Card Information:\n");
1739 ipr_log_ext_vpd(&dev_entry
->cfc_last_with_dev_vpd
);
1744 * ipr_log_config_error - Log a configuration error.
1745 * @ioa_cfg: ioa config struct
1746 * @hostrcb: hostrcb struct
1751 static void ipr_log_config_error(struct ipr_ioa_cfg
*ioa_cfg
,
1752 struct ipr_hostrcb
*hostrcb
)
1754 int errors_logged
, i
;
1755 struct ipr_hostrcb_device_data_entry
*dev_entry
;
1756 struct ipr_hostrcb_type_03_error
*error
;
1758 error
= &hostrcb
->hcam
.u
.error
.u
.type_03_error
;
1759 errors_logged
= be32_to_cpu(error
->errors_logged
);
1761 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1762 be32_to_cpu(error
->errors_detected
), errors_logged
);
1764 dev_entry
= error
->dev
;
1766 for (i
= 0; i
< errors_logged
; i
++, dev_entry
++) {
1769 ipr_phys_res_err(ioa_cfg
, dev_entry
->dev_res_addr
, "Device %d", i
+ 1);
1770 ipr_log_vpd(&dev_entry
->vpd
);
1772 ipr_err("-----New Device Information-----\n");
1773 ipr_log_vpd(&dev_entry
->new_vpd
);
1775 ipr_err("Cache Directory Card Information:\n");
1776 ipr_log_vpd(&dev_entry
->ioa_last_with_dev_vpd
);
1778 ipr_err("Adapter Card Information:\n");
1779 ipr_log_vpd(&dev_entry
->cfc_last_with_dev_vpd
);
1781 ipr_err("Additional IOA Data: %08X %08X %08X %08X %08X\n",
1782 be32_to_cpu(dev_entry
->ioa_data
[0]),
1783 be32_to_cpu(dev_entry
->ioa_data
[1]),
1784 be32_to_cpu(dev_entry
->ioa_data
[2]),
1785 be32_to_cpu(dev_entry
->ioa_data
[3]),
1786 be32_to_cpu(dev_entry
->ioa_data
[4]));
1791 * ipr_log_enhanced_array_error - Log an array configuration error.
1792 * @ioa_cfg: ioa config struct
1793 * @hostrcb: hostrcb struct
1798 static void ipr_log_enhanced_array_error(struct ipr_ioa_cfg
*ioa_cfg
,
1799 struct ipr_hostrcb
*hostrcb
)
1802 struct ipr_hostrcb_type_14_error
*error
;
1803 struct ipr_hostrcb_array_data_entry_enhanced
*array_entry
;
1804 const u8 zero_sn
[IPR_SERIAL_NUM_LEN
] = { [0 ... IPR_SERIAL_NUM_LEN
-1] = '0' };
1806 error
= &hostrcb
->hcam
.u
.error
.u
.type_14_error
;
1810 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1811 error
->protection_level
,
1812 ioa_cfg
->host
->host_no
,
1813 error
->last_func_vset_res_addr
.bus
,
1814 error
->last_func_vset_res_addr
.target
,
1815 error
->last_func_vset_res_addr
.lun
);
1819 array_entry
= error
->array_member
;
1820 num_entries
= min_t(u32
, be32_to_cpu(error
->num_entries
),
1821 ARRAY_SIZE(error
->array_member
));
1823 for (i
= 0; i
< num_entries
; i
++, array_entry
++) {
1824 if (!memcmp(array_entry
->vpd
.vpd
.sn
, zero_sn
, IPR_SERIAL_NUM_LEN
))
1827 if (be32_to_cpu(error
->exposed_mode_adn
) == i
)
1828 ipr_err("Exposed Array Member %d:\n", i
);
1830 ipr_err("Array Member %d:\n", i
);
1832 ipr_log_ext_vpd(&array_entry
->vpd
);
1833 ipr_phys_res_err(ioa_cfg
, array_entry
->dev_res_addr
, "Current Location");
1834 ipr_phys_res_err(ioa_cfg
, array_entry
->expected_dev_res_addr
,
1835 "Expected Location");
1842 * ipr_log_array_error - Log an array configuration error.
1843 * @ioa_cfg: ioa config struct
1844 * @hostrcb: hostrcb struct
1849 static void ipr_log_array_error(struct ipr_ioa_cfg
*ioa_cfg
,
1850 struct ipr_hostrcb
*hostrcb
)
1853 struct ipr_hostrcb_type_04_error
*error
;
1854 struct ipr_hostrcb_array_data_entry
*array_entry
;
1855 const u8 zero_sn
[IPR_SERIAL_NUM_LEN
] = { [0 ... IPR_SERIAL_NUM_LEN
-1] = '0' };
1857 error
= &hostrcb
->hcam
.u
.error
.u
.type_04_error
;
1861 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1862 error
->protection_level
,
1863 ioa_cfg
->host
->host_no
,
1864 error
->last_func_vset_res_addr
.bus
,
1865 error
->last_func_vset_res_addr
.target
,
1866 error
->last_func_vset_res_addr
.lun
);
1870 array_entry
= error
->array_member
;
1872 for (i
= 0; i
< 18; i
++) {
1873 if (!memcmp(array_entry
->vpd
.sn
, zero_sn
, IPR_SERIAL_NUM_LEN
))
1876 if (be32_to_cpu(error
->exposed_mode_adn
) == i
)
1877 ipr_err("Exposed Array Member %d:\n", i
);
1879 ipr_err("Array Member %d:\n", i
);
1881 ipr_log_vpd(&array_entry
->vpd
);
1883 ipr_phys_res_err(ioa_cfg
, array_entry
->dev_res_addr
, "Current Location");
1884 ipr_phys_res_err(ioa_cfg
, array_entry
->expected_dev_res_addr
,
1885 "Expected Location");
1890 array_entry
= error
->array_member2
;
1897 * ipr_log_hex_data - Log additional hex IOA error data.
1898 * @ioa_cfg: ioa config struct
1899 * @data: IOA error data
1905 static void ipr_log_hex_data(struct ipr_ioa_cfg
*ioa_cfg
, __be32
*data
, int len
)
1912 if (ioa_cfg
->log_level
<= IPR_DEFAULT_LOG_LEVEL
)
1913 len
= min_t(int, len
, IPR_DEFAULT_MAX_ERROR_DUMP
);
1915 for (i
= 0; i
< len
/ 4; i
+= 4) {
1916 ipr_err("%08X: %08X %08X %08X %08X\n", i
*4,
1917 be32_to_cpu(data
[i
]),
1918 be32_to_cpu(data
[i
+1]),
1919 be32_to_cpu(data
[i
+2]),
1920 be32_to_cpu(data
[i
+3]));
1925 * ipr_log_enhanced_dual_ioa_error - Log an enhanced dual adapter error.
1926 * @ioa_cfg: ioa config struct
1927 * @hostrcb: hostrcb struct
1932 static void ipr_log_enhanced_dual_ioa_error(struct ipr_ioa_cfg
*ioa_cfg
,
1933 struct ipr_hostrcb
*hostrcb
)
1935 struct ipr_hostrcb_type_17_error
*error
;
1938 error
= &hostrcb
->hcam
.u
.error64
.u
.type_17_error
;
1940 error
= &hostrcb
->hcam
.u
.error
.u
.type_17_error
;
1942 error
->failure_reason
[sizeof(error
->failure_reason
) - 1] = '\0';
1943 strim(error
->failure_reason
);
1945 ipr_hcam_err(hostrcb
, "%s [PRC: %08X]\n", error
->failure_reason
,
1946 be32_to_cpu(hostrcb
->hcam
.u
.error
.prc
));
1947 ipr_log_ext_vpd_compact("Remote IOA", hostrcb
, &error
->vpd
);
1948 ipr_log_hex_data(ioa_cfg
, error
->data
,
1949 be32_to_cpu(hostrcb
->hcam
.length
) -
1950 (offsetof(struct ipr_hostrcb_error
, u
) +
1951 offsetof(struct ipr_hostrcb_type_17_error
, data
)));
1955 * ipr_log_dual_ioa_error - Log a dual adapter error.
1956 * @ioa_cfg: ioa config struct
1957 * @hostrcb: hostrcb struct
1962 static void ipr_log_dual_ioa_error(struct ipr_ioa_cfg
*ioa_cfg
,
1963 struct ipr_hostrcb
*hostrcb
)
1965 struct ipr_hostrcb_type_07_error
*error
;
1967 error
= &hostrcb
->hcam
.u
.error
.u
.type_07_error
;
1968 error
->failure_reason
[sizeof(error
->failure_reason
) - 1] = '\0';
1969 strim(error
->failure_reason
);
1971 ipr_hcam_err(hostrcb
, "%s [PRC: %08X]\n", error
->failure_reason
,
1972 be32_to_cpu(hostrcb
->hcam
.u
.error
.prc
));
1973 ipr_log_vpd_compact("Remote IOA", hostrcb
, &error
->vpd
);
1974 ipr_log_hex_data(ioa_cfg
, error
->data
,
1975 be32_to_cpu(hostrcb
->hcam
.length
) -
1976 (offsetof(struct ipr_hostrcb_error
, u
) +
1977 offsetof(struct ipr_hostrcb_type_07_error
, data
)));
1980 static const struct {
1983 } path_active_desc
[] = {
1984 { IPR_PATH_NO_INFO
, "Path" },
1985 { IPR_PATH_ACTIVE
, "Active path" },
1986 { IPR_PATH_NOT_ACTIVE
, "Inactive path" }
1989 static const struct {
1992 } path_state_desc
[] = {
1993 { IPR_PATH_STATE_NO_INFO
, "has no path state information available" },
1994 { IPR_PATH_HEALTHY
, "is healthy" },
1995 { IPR_PATH_DEGRADED
, "is degraded" },
1996 { IPR_PATH_FAILED
, "is failed" }
2000 * ipr_log_fabric_path - Log a fabric path error
2001 * @hostrcb: hostrcb struct
2002 * @fabric: fabric descriptor
2007 static void ipr_log_fabric_path(struct ipr_hostrcb
*hostrcb
,
2008 struct ipr_hostrcb_fabric_desc
*fabric
)
2011 u8 path_state
= fabric
->path_state
;
2012 u8 active
= path_state
& IPR_PATH_ACTIVE_MASK
;
2013 u8 state
= path_state
& IPR_PATH_STATE_MASK
;
2015 for (i
= 0; i
< ARRAY_SIZE(path_active_desc
); i
++) {
2016 if (path_active_desc
[i
].active
!= active
)
2019 for (j
= 0; j
< ARRAY_SIZE(path_state_desc
); j
++) {
2020 if (path_state_desc
[j
].state
!= state
)
2023 if (fabric
->cascaded_expander
== 0xff && fabric
->phy
== 0xff) {
2024 ipr_hcam_err(hostrcb
, "%s %s: IOA Port=%d\n",
2025 path_active_desc
[i
].desc
, path_state_desc
[j
].desc
,
2027 } else if (fabric
->cascaded_expander
== 0xff) {
2028 ipr_hcam_err(hostrcb
, "%s %s: IOA Port=%d, Phy=%d\n",
2029 path_active_desc
[i
].desc
, path_state_desc
[j
].desc
,
2030 fabric
->ioa_port
, fabric
->phy
);
2031 } else if (fabric
->phy
== 0xff) {
2032 ipr_hcam_err(hostrcb
, "%s %s: IOA Port=%d, Cascade=%d\n",
2033 path_active_desc
[i
].desc
, path_state_desc
[j
].desc
,
2034 fabric
->ioa_port
, fabric
->cascaded_expander
);
2036 ipr_hcam_err(hostrcb
, "%s %s: IOA Port=%d, Cascade=%d, Phy=%d\n",
2037 path_active_desc
[i
].desc
, path_state_desc
[j
].desc
,
2038 fabric
->ioa_port
, fabric
->cascaded_expander
, fabric
->phy
);
2044 ipr_err("Path state=%02X IOA Port=%d Cascade=%d Phy=%d\n", path_state
,
2045 fabric
->ioa_port
, fabric
->cascaded_expander
, fabric
->phy
);
2049 * ipr_log64_fabric_path - Log a fabric path error
2050 * @hostrcb: hostrcb struct
2051 * @fabric: fabric descriptor
2056 static void ipr_log64_fabric_path(struct ipr_hostrcb
*hostrcb
,
2057 struct ipr_hostrcb64_fabric_desc
*fabric
)
2060 u8 path_state
= fabric
->path_state
;
2061 u8 active
= path_state
& IPR_PATH_ACTIVE_MASK
;
2062 u8 state
= path_state
& IPR_PATH_STATE_MASK
;
2063 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
2065 for (i
= 0; i
< ARRAY_SIZE(path_active_desc
); i
++) {
2066 if (path_active_desc
[i
].active
!= active
)
2069 for (j
= 0; j
< ARRAY_SIZE(path_state_desc
); j
++) {
2070 if (path_state_desc
[j
].state
!= state
)
2073 ipr_hcam_err(hostrcb
, "%s %s: Resource Path=%s\n",
2074 path_active_desc
[i
].desc
, path_state_desc
[j
].desc
,
2075 ipr_format_res_path(hostrcb
->ioa_cfg
,
2077 buffer
, sizeof(buffer
)));
2082 ipr_err("Path state=%02X Resource Path=%s\n", path_state
,
2083 ipr_format_res_path(hostrcb
->ioa_cfg
, fabric
->res_path
,
2084 buffer
, sizeof(buffer
)));
2087 static const struct {
2090 } path_type_desc
[] = {
2091 { IPR_PATH_CFG_IOA_PORT
, "IOA port" },
2092 { IPR_PATH_CFG_EXP_PORT
, "Expander port" },
2093 { IPR_PATH_CFG_DEVICE_PORT
, "Device port" },
2094 { IPR_PATH_CFG_DEVICE_LUN
, "Device LUN" }
2097 static const struct {
2100 } path_status_desc
[] = {
2101 { IPR_PATH_CFG_NO_PROB
, "Functional" },
2102 { IPR_PATH_CFG_DEGRADED
, "Degraded" },
2103 { IPR_PATH_CFG_FAILED
, "Failed" },
2104 { IPR_PATH_CFG_SUSPECT
, "Suspect" },
2105 { IPR_PATH_NOT_DETECTED
, "Missing" },
2106 { IPR_PATH_INCORRECT_CONN
, "Incorrectly connected" }
2109 static const char *link_rate
[] = {
2112 "phy reset problem",
2129 * ipr_log_path_elem - Log a fabric path element.
2130 * @hostrcb: hostrcb struct
2131 * @cfg: fabric path element struct
2136 static void ipr_log_path_elem(struct ipr_hostrcb
*hostrcb
,
2137 struct ipr_hostrcb_config_element
*cfg
)
2140 u8 type
= cfg
->type_status
& IPR_PATH_CFG_TYPE_MASK
;
2141 u8 status
= cfg
->type_status
& IPR_PATH_CFG_STATUS_MASK
;
2143 if (type
== IPR_PATH_CFG_NOT_EXIST
)
2146 for (i
= 0; i
< ARRAY_SIZE(path_type_desc
); i
++) {
2147 if (path_type_desc
[i
].type
!= type
)
2150 for (j
= 0; j
< ARRAY_SIZE(path_status_desc
); j
++) {
2151 if (path_status_desc
[j
].status
!= status
)
2154 if (type
== IPR_PATH_CFG_IOA_PORT
) {
2155 ipr_hcam_err(hostrcb
, "%s %s: Phy=%d, Link rate=%s, WWN=%08X%08X\n",
2156 path_status_desc
[j
].desc
, path_type_desc
[i
].desc
,
2157 cfg
->phy
, link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2158 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2160 if (cfg
->cascaded_expander
== 0xff && cfg
->phy
== 0xff) {
2161 ipr_hcam_err(hostrcb
, "%s %s: Link rate=%s, WWN=%08X%08X\n",
2162 path_status_desc
[j
].desc
, path_type_desc
[i
].desc
,
2163 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2164 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2165 } else if (cfg
->cascaded_expander
== 0xff) {
2166 ipr_hcam_err(hostrcb
, "%s %s: Phy=%d, Link rate=%s, "
2167 "WWN=%08X%08X\n", path_status_desc
[j
].desc
,
2168 path_type_desc
[i
].desc
, cfg
->phy
,
2169 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2170 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2171 } else if (cfg
->phy
== 0xff) {
2172 ipr_hcam_err(hostrcb
, "%s %s: Cascade=%d, Link rate=%s, "
2173 "WWN=%08X%08X\n", path_status_desc
[j
].desc
,
2174 path_type_desc
[i
].desc
, cfg
->cascaded_expander
,
2175 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2176 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2178 ipr_hcam_err(hostrcb
, "%s %s: Cascade=%d, Phy=%d, Link rate=%s "
2179 "WWN=%08X%08X\n", path_status_desc
[j
].desc
,
2180 path_type_desc
[i
].desc
, cfg
->cascaded_expander
, cfg
->phy
,
2181 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2182 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2189 ipr_hcam_err(hostrcb
, "Path element=%02X: Cascade=%d Phy=%d Link rate=%s "
2190 "WWN=%08X%08X\n", cfg
->type_status
, cfg
->cascaded_expander
, cfg
->phy
,
2191 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2192 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2196 * ipr_log64_path_elem - Log a fabric path element.
2197 * @hostrcb: hostrcb struct
2198 * @cfg: fabric path element struct
2203 static void ipr_log64_path_elem(struct ipr_hostrcb
*hostrcb
,
2204 struct ipr_hostrcb64_config_element
*cfg
)
2207 u8 desc_id
= cfg
->descriptor_id
& IPR_DESCRIPTOR_MASK
;
2208 u8 type
= cfg
->type_status
& IPR_PATH_CFG_TYPE_MASK
;
2209 u8 status
= cfg
->type_status
& IPR_PATH_CFG_STATUS_MASK
;
2210 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
2212 if (type
== IPR_PATH_CFG_NOT_EXIST
|| desc_id
!= IPR_DESCRIPTOR_SIS64
)
2215 for (i
= 0; i
< ARRAY_SIZE(path_type_desc
); i
++) {
2216 if (path_type_desc
[i
].type
!= type
)
2219 for (j
= 0; j
< ARRAY_SIZE(path_status_desc
); j
++) {
2220 if (path_status_desc
[j
].status
!= status
)
2223 ipr_hcam_err(hostrcb
, "%s %s: Resource Path=%s, Link rate=%s, WWN=%08X%08X\n",
2224 path_status_desc
[j
].desc
, path_type_desc
[i
].desc
,
2225 ipr_format_res_path(hostrcb
->ioa_cfg
,
2226 cfg
->res_path
, buffer
, sizeof(buffer
)),
2227 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2228 be32_to_cpu(cfg
->wwid
[0]),
2229 be32_to_cpu(cfg
->wwid
[1]));
2233 ipr_hcam_err(hostrcb
, "Path element=%02X: Resource Path=%s, Link rate=%s "
2234 "WWN=%08X%08X\n", cfg
->type_status
,
2235 ipr_format_res_path(hostrcb
->ioa_cfg
,
2236 cfg
->res_path
, buffer
, sizeof(buffer
)),
2237 link_rate
[cfg
->link_rate
& IPR_PHY_LINK_RATE_MASK
],
2238 be32_to_cpu(cfg
->wwid
[0]), be32_to_cpu(cfg
->wwid
[1]));
2242 * ipr_log_fabric_error - Log a fabric error.
2243 * @ioa_cfg: ioa config struct
2244 * @hostrcb: hostrcb struct
2249 static void ipr_log_fabric_error(struct ipr_ioa_cfg
*ioa_cfg
,
2250 struct ipr_hostrcb
*hostrcb
)
2252 struct ipr_hostrcb_type_20_error
*error
;
2253 struct ipr_hostrcb_fabric_desc
*fabric
;
2254 struct ipr_hostrcb_config_element
*cfg
;
2257 error
= &hostrcb
->hcam
.u
.error
.u
.type_20_error
;
2258 error
->failure_reason
[sizeof(error
->failure_reason
) - 1] = '\0';
2259 ipr_hcam_err(hostrcb
, "%s\n", error
->failure_reason
);
2261 add_len
= be32_to_cpu(hostrcb
->hcam
.length
) -
2262 (offsetof(struct ipr_hostrcb_error
, u
) +
2263 offsetof(struct ipr_hostrcb_type_20_error
, desc
));
2265 for (i
= 0, fabric
= error
->desc
; i
< error
->num_entries
; i
++) {
2266 ipr_log_fabric_path(hostrcb
, fabric
);
2267 for_each_fabric_cfg(fabric
, cfg
)
2268 ipr_log_path_elem(hostrcb
, cfg
);
2270 add_len
-= be16_to_cpu(fabric
->length
);
2271 fabric
= (struct ipr_hostrcb_fabric_desc
*)
2272 ((unsigned long)fabric
+ be16_to_cpu(fabric
->length
));
2275 ipr_log_hex_data(ioa_cfg
, (__be32
*)fabric
, add_len
);
2279 * ipr_log_sis64_array_error - Log a sis64 array error.
2280 * @ioa_cfg: ioa config struct
2281 * @hostrcb: hostrcb struct
2286 static void ipr_log_sis64_array_error(struct ipr_ioa_cfg
*ioa_cfg
,
2287 struct ipr_hostrcb
*hostrcb
)
2290 struct ipr_hostrcb_type_24_error
*error
;
2291 struct ipr_hostrcb64_array_data_entry
*array_entry
;
2292 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
2293 const u8 zero_sn
[IPR_SERIAL_NUM_LEN
] = { [0 ... IPR_SERIAL_NUM_LEN
-1] = '0' };
2295 error
= &hostrcb
->hcam
.u
.error64
.u
.type_24_error
;
2299 ipr_err("RAID %s Array Configuration: %s\n",
2300 error
->protection_level
,
2301 ipr_format_res_path(ioa_cfg
, error
->last_res_path
,
2302 buffer
, sizeof(buffer
)));
2306 array_entry
= error
->array_member
;
2307 num_entries
= min_t(u32
, error
->num_entries
,
2308 ARRAY_SIZE(error
->array_member
));
2310 for (i
= 0; i
< num_entries
; i
++, array_entry
++) {
2312 if (!memcmp(array_entry
->vpd
.vpd
.sn
, zero_sn
, IPR_SERIAL_NUM_LEN
))
2315 if (error
->exposed_mode_adn
== i
)
2316 ipr_err("Exposed Array Member %d:\n", i
);
2318 ipr_err("Array Member %d:\n", i
);
2320 ipr_err("Array Member %d:\n", i
);
2321 ipr_log_ext_vpd(&array_entry
->vpd
);
2322 ipr_err("Current Location: %s\n",
2323 ipr_format_res_path(ioa_cfg
, array_entry
->res_path
,
2324 buffer
, sizeof(buffer
)));
2325 ipr_err("Expected Location: %s\n",
2326 ipr_format_res_path(ioa_cfg
,
2327 array_entry
->expected_res_path
,
2328 buffer
, sizeof(buffer
)));
2335 * ipr_log_sis64_fabric_error - Log a sis64 fabric error.
2336 * @ioa_cfg: ioa config struct
2337 * @hostrcb: hostrcb struct
2342 static void ipr_log_sis64_fabric_error(struct ipr_ioa_cfg
*ioa_cfg
,
2343 struct ipr_hostrcb
*hostrcb
)
2345 struct ipr_hostrcb_type_30_error
*error
;
2346 struct ipr_hostrcb64_fabric_desc
*fabric
;
2347 struct ipr_hostrcb64_config_element
*cfg
;
2350 error
= &hostrcb
->hcam
.u
.error64
.u
.type_30_error
;
2352 error
->failure_reason
[sizeof(error
->failure_reason
) - 1] = '\0';
2353 ipr_hcam_err(hostrcb
, "%s\n", error
->failure_reason
);
2355 add_len
= be32_to_cpu(hostrcb
->hcam
.length
) -
2356 (offsetof(struct ipr_hostrcb64_error
, u
) +
2357 offsetof(struct ipr_hostrcb_type_30_error
, desc
));
2359 for (i
= 0, fabric
= error
->desc
; i
< error
->num_entries
; i
++) {
2360 ipr_log64_fabric_path(hostrcb
, fabric
);
2361 for_each_fabric_cfg(fabric
, cfg
)
2362 ipr_log64_path_elem(hostrcb
, cfg
);
2364 add_len
-= be16_to_cpu(fabric
->length
);
2365 fabric
= (struct ipr_hostrcb64_fabric_desc
*)
2366 ((unsigned long)fabric
+ be16_to_cpu(fabric
->length
));
2369 ipr_log_hex_data(ioa_cfg
, (__be32
*)fabric
, add_len
);
2373 * ipr_log_generic_error - Log an adapter error.
2374 * @ioa_cfg: ioa config struct
2375 * @hostrcb: hostrcb struct
2380 static void ipr_log_generic_error(struct ipr_ioa_cfg
*ioa_cfg
,
2381 struct ipr_hostrcb
*hostrcb
)
2383 ipr_log_hex_data(ioa_cfg
, hostrcb
->hcam
.u
.raw
.data
,
2384 be32_to_cpu(hostrcb
->hcam
.length
));
2388 * ipr_log_sis64_device_error - Log a cache error.
2389 * @ioa_cfg: ioa config struct
2390 * @hostrcb: hostrcb struct
2395 static void ipr_log_sis64_device_error(struct ipr_ioa_cfg
*ioa_cfg
,
2396 struct ipr_hostrcb
*hostrcb
)
2398 struct ipr_hostrcb_type_21_error
*error
;
2399 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
2401 error
= &hostrcb
->hcam
.u
.error64
.u
.type_21_error
;
2403 ipr_err("-----Failing Device Information-----\n");
2404 ipr_err("World Wide Unique ID: %08X%08X%08X%08X\n",
2405 be32_to_cpu(error
->wwn
[0]), be32_to_cpu(error
->wwn
[1]),
2406 be32_to_cpu(error
->wwn
[2]), be32_to_cpu(error
->wwn
[3]));
2407 ipr_err("Device Resource Path: %s\n",
2408 __ipr_format_res_path(error
->res_path
,
2409 buffer
, sizeof(buffer
)));
2410 error
->primary_problem_desc
[sizeof(error
->primary_problem_desc
) - 1] = '\0';
2411 error
->second_problem_desc
[sizeof(error
->second_problem_desc
) - 1] = '\0';
2412 ipr_err("Primary Problem Description: %s\n", error
->primary_problem_desc
);
2413 ipr_err("Secondary Problem Description: %s\n", error
->second_problem_desc
);
2414 ipr_err("SCSI Sense Data:\n");
2415 ipr_log_hex_data(ioa_cfg
, error
->sense_data
, sizeof(error
->sense_data
));
2416 ipr_err("SCSI Command Descriptor Block: \n");
2417 ipr_log_hex_data(ioa_cfg
, error
->cdb
, sizeof(error
->cdb
));
2419 ipr_err("Additional IOA Data:\n");
2420 ipr_log_hex_data(ioa_cfg
, error
->ioa_data
, be32_to_cpu(error
->length_of_error
));
2424 * ipr_get_error - Find the specfied IOASC in the ipr_error_table.
2427 * This function will return the index of into the ipr_error_table
2428 * for the specified IOASC. If the IOASC is not in the table,
2429 * 0 will be returned, which points to the entry used for unknown errors.
2432 * index into the ipr_error_table
2434 static u32
ipr_get_error(u32 ioasc
)
2438 for (i
= 0; i
< ARRAY_SIZE(ipr_error_table
); i
++)
2439 if (ipr_error_table
[i
].ioasc
== (ioasc
& IPR_IOASC_IOASC_MASK
))
2446 * ipr_handle_log_data - Log an adapter error.
2447 * @ioa_cfg: ioa config struct
2448 * @hostrcb: hostrcb struct
2450 * This function logs an adapter error to the system.
2455 static void ipr_handle_log_data(struct ipr_ioa_cfg
*ioa_cfg
,
2456 struct ipr_hostrcb
*hostrcb
)
2460 struct ipr_hostrcb_type_21_error
*error
;
2462 if (hostrcb
->hcam
.notify_type
!= IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY
)
2465 if (hostrcb
->hcam
.notifications_lost
== IPR_HOST_RCB_NOTIFICATIONS_LOST
)
2466 dev_err(&ioa_cfg
->pdev
->dev
, "Error notifications lost\n");
2469 ioasc
= be32_to_cpu(hostrcb
->hcam
.u
.error64
.fd_ioasc
);
2471 ioasc
= be32_to_cpu(hostrcb
->hcam
.u
.error
.fd_ioasc
);
2473 if (!ioa_cfg
->sis64
&& (ioasc
== IPR_IOASC_BUS_WAS_RESET
||
2474 ioasc
== IPR_IOASC_BUS_WAS_RESET_BY_OTHER
)) {
2475 /* Tell the midlayer we had a bus reset so it will handle the UA properly */
2476 scsi_report_bus_reset(ioa_cfg
->host
,
2477 hostrcb
->hcam
.u
.error
.fd_res_addr
.bus
);
2480 error_index
= ipr_get_error(ioasc
);
2482 if (!ipr_error_table
[error_index
].log_hcam
)
2485 if (ioasc
== IPR_IOASC_HW_CMD_FAILED
&&
2486 hostrcb
->hcam
.overlay_id
== IPR_HOST_RCB_OVERLAY_ID_21
) {
2487 error
= &hostrcb
->hcam
.u
.error64
.u
.type_21_error
;
2489 if (((be32_to_cpu(error
->sense_data
[0]) & 0x0000ff00) >> 8) == ILLEGAL_REQUEST
&&
2490 ioa_cfg
->log_level
<= IPR_DEFAULT_LOG_LEVEL
)
2494 ipr_hcam_err(hostrcb
, "%s\n", ipr_error_table
[error_index
].error
);
2496 /* Set indication we have logged an error */
2497 ioa_cfg
->errors_logged
++;
2499 if (ioa_cfg
->log_level
< ipr_error_table
[error_index
].log_hcam
)
2501 if (be32_to_cpu(hostrcb
->hcam
.length
) > sizeof(hostrcb
->hcam
.u
.raw
))
2502 hostrcb
->hcam
.length
= cpu_to_be32(sizeof(hostrcb
->hcam
.u
.raw
));
2504 switch (hostrcb
->hcam
.overlay_id
) {
2505 case IPR_HOST_RCB_OVERLAY_ID_2
:
2506 ipr_log_cache_error(ioa_cfg
, hostrcb
);
2508 case IPR_HOST_RCB_OVERLAY_ID_3
:
2509 ipr_log_config_error(ioa_cfg
, hostrcb
);
2511 case IPR_HOST_RCB_OVERLAY_ID_4
:
2512 case IPR_HOST_RCB_OVERLAY_ID_6
:
2513 ipr_log_array_error(ioa_cfg
, hostrcb
);
2515 case IPR_HOST_RCB_OVERLAY_ID_7
:
2516 ipr_log_dual_ioa_error(ioa_cfg
, hostrcb
);
2518 case IPR_HOST_RCB_OVERLAY_ID_12
:
2519 ipr_log_enhanced_cache_error(ioa_cfg
, hostrcb
);
2521 case IPR_HOST_RCB_OVERLAY_ID_13
:
2522 ipr_log_enhanced_config_error(ioa_cfg
, hostrcb
);
2524 case IPR_HOST_RCB_OVERLAY_ID_14
:
2525 case IPR_HOST_RCB_OVERLAY_ID_16
:
2526 ipr_log_enhanced_array_error(ioa_cfg
, hostrcb
);
2528 case IPR_HOST_RCB_OVERLAY_ID_17
:
2529 ipr_log_enhanced_dual_ioa_error(ioa_cfg
, hostrcb
);
2531 case IPR_HOST_RCB_OVERLAY_ID_20
:
2532 ipr_log_fabric_error(ioa_cfg
, hostrcb
);
2534 case IPR_HOST_RCB_OVERLAY_ID_21
:
2535 ipr_log_sis64_device_error(ioa_cfg
, hostrcb
);
2537 case IPR_HOST_RCB_OVERLAY_ID_23
:
2538 ipr_log_sis64_config_error(ioa_cfg
, hostrcb
);
2540 case IPR_HOST_RCB_OVERLAY_ID_24
:
2541 case IPR_HOST_RCB_OVERLAY_ID_26
:
2542 ipr_log_sis64_array_error(ioa_cfg
, hostrcb
);
2544 case IPR_HOST_RCB_OVERLAY_ID_30
:
2545 ipr_log_sis64_fabric_error(ioa_cfg
, hostrcb
);
2547 case IPR_HOST_RCB_OVERLAY_ID_1
:
2548 case IPR_HOST_RCB_OVERLAY_ID_DEFAULT
:
2550 ipr_log_generic_error(ioa_cfg
, hostrcb
);
2555 static struct ipr_hostrcb
*ipr_get_free_hostrcb(struct ipr_ioa_cfg
*ioa
)
2557 struct ipr_hostrcb
*hostrcb
;
2559 hostrcb
= list_first_entry_or_null(&ioa
->hostrcb_free_q
,
2560 struct ipr_hostrcb
, queue
);
2562 if (unlikely(!hostrcb
)) {
2563 dev_info(&ioa
->pdev
->dev
, "Reclaiming async error buffers.");
2564 hostrcb
= list_first_entry_or_null(&ioa
->hostrcb_report_q
,
2565 struct ipr_hostrcb
, queue
);
2568 list_del_init(&hostrcb
->queue
);
2573 * ipr_process_error - Op done function for an adapter error log.
2574 * @ipr_cmd: ipr command struct
2576 * This function is the op done function for an error log host
2577 * controlled async from the adapter. It will log the error and
2578 * send the HCAM back to the adapter.
2583 static void ipr_process_error(struct ipr_cmnd
*ipr_cmd
)
2585 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
2586 struct ipr_hostrcb
*hostrcb
= ipr_cmd
->u
.hostrcb
;
2587 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
2589 char *envp
[] = { "ASYNC_ERR_LOG=1", NULL
};
2592 fd_ioasc
= be32_to_cpu(hostrcb
->hcam
.u
.error64
.fd_ioasc
);
2594 fd_ioasc
= be32_to_cpu(hostrcb
->hcam
.u
.error
.fd_ioasc
);
2596 list_del_init(&hostrcb
->queue
);
2597 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
2600 ipr_handle_log_data(ioa_cfg
, hostrcb
);
2601 if (fd_ioasc
== IPR_IOASC_NR_IOA_RESET_REQUIRED
)
2602 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_ABBREV
);
2603 } else if (ioasc
!= IPR_IOASC_IOA_WAS_RESET
&&
2604 ioasc
!= IPR_IOASC_ABORTED_CMD_TERM_BY_HOST
) {
2605 dev_err(&ioa_cfg
->pdev
->dev
,
2606 "Host RCB failed with IOASC: 0x%08X\n", ioasc
);
2609 list_add_tail(&hostrcb
->queue
, &ioa_cfg
->hostrcb_report_q
);
2610 hostrcb
= ipr_get_free_hostrcb(ioa_cfg
);
2611 kobject_uevent_env(&ioa_cfg
->host
->shost_dev
.kobj
, KOBJ_CHANGE
, envp
);
2613 ipr_send_hcam(ioa_cfg
, IPR_HCAM_CDB_OP_CODE_LOG_DATA
, hostrcb
);
2617 * ipr_timeout - An internally generated op has timed out.
2618 * @ipr_cmd: ipr command struct
2620 * This function blocks host requests and initiates an
2626 static void ipr_timeout(struct ipr_cmnd
*ipr_cmd
)
2628 unsigned long lock_flags
= 0;
2629 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
2632 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
2634 ioa_cfg
->errors_logged
++;
2635 dev_err(&ioa_cfg
->pdev
->dev
,
2636 "Adapter being reset due to command timeout.\n");
2638 if (WAIT_FOR_DUMP
== ioa_cfg
->sdt_state
)
2639 ioa_cfg
->sdt_state
= GET_DUMP
;
2641 if (!ioa_cfg
->in_reset_reload
|| ioa_cfg
->reset_cmd
== ipr_cmd
)
2642 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
2644 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
2649 * ipr_oper_timeout - Adapter timed out transitioning to operational
2650 * @ipr_cmd: ipr command struct
2652 * This function blocks host requests and initiates an
2658 static void ipr_oper_timeout(struct ipr_cmnd
*ipr_cmd
)
2660 unsigned long lock_flags
= 0;
2661 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
2664 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
2666 ioa_cfg
->errors_logged
++;
2667 dev_err(&ioa_cfg
->pdev
->dev
,
2668 "Adapter timed out transitioning to operational.\n");
2670 if (WAIT_FOR_DUMP
== ioa_cfg
->sdt_state
)
2671 ioa_cfg
->sdt_state
= GET_DUMP
;
2673 if (!ioa_cfg
->in_reset_reload
|| ioa_cfg
->reset_cmd
== ipr_cmd
) {
2675 ioa_cfg
->reset_retries
+= IPR_NUM_RESET_RELOAD_RETRIES
;
2676 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
2679 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
2684 * ipr_find_ses_entry - Find matching SES in SES table
2685 * @res: resource entry struct of SES
2688 * pointer to SES table entry / NULL on failure
2690 static const struct ipr_ses_table_entry
*
2691 ipr_find_ses_entry(struct ipr_resource_entry
*res
)
2694 struct ipr_std_inq_vpids
*vpids
;
2695 const struct ipr_ses_table_entry
*ste
= ipr_ses_table
;
2697 for (i
= 0; i
< ARRAY_SIZE(ipr_ses_table
); i
++, ste
++) {
2698 for (j
= 0, matches
= 0; j
< IPR_PROD_ID_LEN
; j
++) {
2699 if (ste
->compare_product_id_byte
[j
] == 'X') {
2700 vpids
= &res
->std_inq_data
.vpids
;
2701 if (vpids
->product_id
[j
] == ste
->product_id
[j
])
2709 if (matches
== IPR_PROD_ID_LEN
)
2717 * ipr_get_max_scsi_speed - Determine max SCSI speed for a given bus
2718 * @ioa_cfg: ioa config struct
2720 * @bus_width: bus width
2723 * SCSI bus speed in units of 100KHz, 1600 is 160 MHz
2724 * For a 2-byte wide SCSI bus, the maximum transfer speed is
2725 * twice the maximum transfer rate (e.g. for a wide enabled bus,
2726 * max 160MHz = max 320MB/sec).
2728 static u32
ipr_get_max_scsi_speed(struct ipr_ioa_cfg
*ioa_cfg
, u8 bus
, u8 bus_width
)
2730 struct ipr_resource_entry
*res
;
2731 const struct ipr_ses_table_entry
*ste
;
2732 u32 max_xfer_rate
= IPR_MAX_SCSI_RATE(bus_width
);
2734 /* Loop through each config table entry in the config table buffer */
2735 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
2736 if (!(IPR_IS_SES_DEVICE(res
->std_inq_data
)))
2739 if (bus
!= res
->bus
)
2742 if (!(ste
= ipr_find_ses_entry(res
)))
2745 max_xfer_rate
= (ste
->max_bus_speed_limit
* 10) / (bus_width
/ 8);
2748 return max_xfer_rate
;
2752 * ipr_wait_iodbg_ack - Wait for an IODEBUG ACK from the IOA
2753 * @ioa_cfg: ioa config struct
2754 * @max_delay: max delay in micro-seconds to wait
2756 * Waits for an IODEBUG ACK from the IOA, doing busy looping.
2759 * 0 on success / other on failure
2761 static int ipr_wait_iodbg_ack(struct ipr_ioa_cfg
*ioa_cfg
, int max_delay
)
2763 volatile u32 pcii_reg
;
2766 /* Read interrupt reg until IOA signals IO Debug Acknowledge */
2767 while (delay
< max_delay
) {
2768 pcii_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
2770 if (pcii_reg
& IPR_PCII_IO_DEBUG_ACKNOWLEDGE
)
2773 /* udelay cannot be used if delay is more than a few milliseconds */
2774 if ((delay
/ 1000) > MAX_UDELAY_MS
)
2775 mdelay(delay
/ 1000);
2785 * ipr_get_sis64_dump_data_section - Dump IOA memory
2786 * @ioa_cfg: ioa config struct
2787 * @start_addr: adapter address to dump
2788 * @dest: destination kernel buffer
2789 * @length_in_words: length to dump in 4 byte words
2794 static int ipr_get_sis64_dump_data_section(struct ipr_ioa_cfg
*ioa_cfg
,
2796 __be32
*dest
, u32 length_in_words
)
2800 for (i
= 0; i
< length_in_words
; i
++) {
2801 writel(start_addr
+(i
*4), ioa_cfg
->regs
.dump_addr_reg
);
2802 *dest
= cpu_to_be32(readl(ioa_cfg
->regs
.dump_data_reg
));
2810 * ipr_get_ldump_data_section - Dump IOA memory
2811 * @ioa_cfg: ioa config struct
2812 * @start_addr: adapter address to dump
2813 * @dest: destination kernel buffer
2814 * @length_in_words: length to dump in 4 byte words
2817 * 0 on success / -EIO on failure
2819 static int ipr_get_ldump_data_section(struct ipr_ioa_cfg
*ioa_cfg
,
2821 __be32
*dest
, u32 length_in_words
)
2823 volatile u32 temp_pcii_reg
;
2827 return ipr_get_sis64_dump_data_section(ioa_cfg
, start_addr
,
2828 dest
, length_in_words
);
2830 /* Write IOA interrupt reg starting LDUMP state */
2831 writel((IPR_UPROCI_RESET_ALERT
| IPR_UPROCI_IO_DEBUG_ALERT
),
2832 ioa_cfg
->regs
.set_uproc_interrupt_reg32
);
2834 /* Wait for IO debug acknowledge */
2835 if (ipr_wait_iodbg_ack(ioa_cfg
,
2836 IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC
)) {
2837 dev_err(&ioa_cfg
->pdev
->dev
,
2838 "IOA dump long data transfer timeout\n");
2842 /* Signal LDUMP interlocked - clear IO debug ack */
2843 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE
,
2844 ioa_cfg
->regs
.clr_interrupt_reg
);
2846 /* Write Mailbox with starting address */
2847 writel(start_addr
, ioa_cfg
->ioa_mailbox
);
2849 /* Signal address valid - clear IOA Reset alert */
2850 writel(IPR_UPROCI_RESET_ALERT
,
2851 ioa_cfg
->regs
.clr_uproc_interrupt_reg32
);
2853 for (i
= 0; i
< length_in_words
; i
++) {
2854 /* Wait for IO debug acknowledge */
2855 if (ipr_wait_iodbg_ack(ioa_cfg
,
2856 IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC
)) {
2857 dev_err(&ioa_cfg
->pdev
->dev
,
2858 "IOA dump short data transfer timeout\n");
2862 /* Read data from mailbox and increment destination pointer */
2863 *dest
= cpu_to_be32(readl(ioa_cfg
->ioa_mailbox
));
2866 /* For all but the last word of data, signal data received */
2867 if (i
< (length_in_words
- 1)) {
2868 /* Signal dump data received - Clear IO debug Ack */
2869 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE
,
2870 ioa_cfg
->regs
.clr_interrupt_reg
);
2874 /* Signal end of block transfer. Set reset alert then clear IO debug ack */
2875 writel(IPR_UPROCI_RESET_ALERT
,
2876 ioa_cfg
->regs
.set_uproc_interrupt_reg32
);
2878 writel(IPR_UPROCI_IO_DEBUG_ALERT
,
2879 ioa_cfg
->regs
.clr_uproc_interrupt_reg32
);
2881 /* Signal dump data received - Clear IO debug Ack */
2882 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE
,
2883 ioa_cfg
->regs
.clr_interrupt_reg
);
2885 /* Wait for IOA to signal LDUMP exit - IOA reset alert will be cleared */
2886 while (delay
< IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC
) {
2888 readl(ioa_cfg
->regs
.sense_uproc_interrupt_reg32
);
2890 if (!(temp_pcii_reg
& IPR_UPROCI_RESET_ALERT
))
2900 #ifdef CONFIG_SCSI_IPR_DUMP
2902 * ipr_sdt_copy - Copy Smart Dump Table to kernel buffer
2903 * @ioa_cfg: ioa config struct
2904 * @pci_address: adapter address
2905 * @length: length of data to copy
2907 * Copy data from PCI adapter to kernel buffer.
2908 * Note: length MUST be a 4 byte multiple
2910 * 0 on success / other on failure
2912 static int ipr_sdt_copy(struct ipr_ioa_cfg
*ioa_cfg
,
2913 unsigned long pci_address
, u32 length
)
2915 int bytes_copied
= 0;
2916 int cur_len
, rc
, rem_len
, rem_page_len
, max_dump_size
;
2918 unsigned long lock_flags
= 0;
2919 struct ipr_ioa_dump
*ioa_dump
= &ioa_cfg
->dump
->ioa_dump
;
2922 max_dump_size
= IPR_FMT3_MAX_IOA_DUMP_SIZE
;
2924 max_dump_size
= IPR_FMT2_MAX_IOA_DUMP_SIZE
;
2926 while (bytes_copied
< length
&&
2927 (ioa_dump
->hdr
.len
+ bytes_copied
) < max_dump_size
) {
2928 if (ioa_dump
->page_offset
>= PAGE_SIZE
||
2929 ioa_dump
->page_offset
== 0) {
2930 page
= (__be32
*)__get_free_page(GFP_ATOMIC
);
2934 return bytes_copied
;
2937 ioa_dump
->page_offset
= 0;
2938 ioa_dump
->ioa_data
[ioa_dump
->next_page_index
] = page
;
2939 ioa_dump
->next_page_index
++;
2941 page
= ioa_dump
->ioa_data
[ioa_dump
->next_page_index
- 1];
2943 rem_len
= length
- bytes_copied
;
2944 rem_page_len
= PAGE_SIZE
- ioa_dump
->page_offset
;
2945 cur_len
= min(rem_len
, rem_page_len
);
2947 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
2948 if (ioa_cfg
->sdt_state
== ABORT_DUMP
) {
2951 rc
= ipr_get_ldump_data_section(ioa_cfg
,
2952 pci_address
+ bytes_copied
,
2953 &page
[ioa_dump
->page_offset
/ 4],
2954 (cur_len
/ sizeof(u32
)));
2956 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
2959 ioa_dump
->page_offset
+= cur_len
;
2960 bytes_copied
+= cur_len
;
2968 return bytes_copied
;
2972 * ipr_init_dump_entry_hdr - Initialize a dump entry header.
2973 * @hdr: dump entry header struct
2978 static void ipr_init_dump_entry_hdr(struct ipr_dump_entry_header
*hdr
)
2980 hdr
->eye_catcher
= IPR_DUMP_EYE_CATCHER
;
2982 hdr
->offset
= sizeof(*hdr
);
2983 hdr
->status
= IPR_DUMP_STATUS_SUCCESS
;
2987 * ipr_dump_ioa_type_data - Fill in the adapter type in the dump.
2988 * @ioa_cfg: ioa config struct
2989 * @driver_dump: driver dump struct
2994 static void ipr_dump_ioa_type_data(struct ipr_ioa_cfg
*ioa_cfg
,
2995 struct ipr_driver_dump
*driver_dump
)
2997 struct ipr_inquiry_page3
*ucode_vpd
= &ioa_cfg
->vpd_cbs
->page3_data
;
2999 ipr_init_dump_entry_hdr(&driver_dump
->ioa_type_entry
.hdr
);
3000 driver_dump
->ioa_type_entry
.hdr
.len
=
3001 sizeof(struct ipr_dump_ioa_type_entry
) -
3002 sizeof(struct ipr_dump_entry_header
);
3003 driver_dump
->ioa_type_entry
.hdr
.data_type
= IPR_DUMP_DATA_TYPE_BINARY
;
3004 driver_dump
->ioa_type_entry
.hdr
.id
= IPR_DUMP_DRIVER_TYPE_ID
;
3005 driver_dump
->ioa_type_entry
.type
= ioa_cfg
->type
;
3006 driver_dump
->ioa_type_entry
.fw_version
= (ucode_vpd
->major_release
<< 24) |
3007 (ucode_vpd
->card_type
<< 16) | (ucode_vpd
->minor_release
[0] << 8) |
3008 ucode_vpd
->minor_release
[1];
3009 driver_dump
->hdr
.num_entries
++;
3013 * ipr_dump_version_data - Fill in the driver version in the dump.
3014 * @ioa_cfg: ioa config struct
3015 * @driver_dump: driver dump struct
3020 static void ipr_dump_version_data(struct ipr_ioa_cfg
*ioa_cfg
,
3021 struct ipr_driver_dump
*driver_dump
)
3023 ipr_init_dump_entry_hdr(&driver_dump
->version_entry
.hdr
);
3024 driver_dump
->version_entry
.hdr
.len
=
3025 sizeof(struct ipr_dump_version_entry
) -
3026 sizeof(struct ipr_dump_entry_header
);
3027 driver_dump
->version_entry
.hdr
.data_type
= IPR_DUMP_DATA_TYPE_ASCII
;
3028 driver_dump
->version_entry
.hdr
.id
= IPR_DUMP_DRIVER_VERSION_ID
;
3029 strcpy(driver_dump
->version_entry
.version
, IPR_DRIVER_VERSION
);
3030 driver_dump
->hdr
.num_entries
++;
3034 * ipr_dump_trace_data - Fill in the IOA trace in the dump.
3035 * @ioa_cfg: ioa config struct
3036 * @driver_dump: driver dump struct
3041 static void ipr_dump_trace_data(struct ipr_ioa_cfg
*ioa_cfg
,
3042 struct ipr_driver_dump
*driver_dump
)
3044 ipr_init_dump_entry_hdr(&driver_dump
->trace_entry
.hdr
);
3045 driver_dump
->trace_entry
.hdr
.len
=
3046 sizeof(struct ipr_dump_trace_entry
) -
3047 sizeof(struct ipr_dump_entry_header
);
3048 driver_dump
->trace_entry
.hdr
.data_type
= IPR_DUMP_DATA_TYPE_BINARY
;
3049 driver_dump
->trace_entry
.hdr
.id
= IPR_DUMP_TRACE_ID
;
3050 memcpy(driver_dump
->trace_entry
.trace
, ioa_cfg
->trace
, IPR_TRACE_SIZE
);
3051 driver_dump
->hdr
.num_entries
++;
3055 * ipr_dump_location_data - Fill in the IOA location in the dump.
3056 * @ioa_cfg: ioa config struct
3057 * @driver_dump: driver dump struct
3062 static void ipr_dump_location_data(struct ipr_ioa_cfg
*ioa_cfg
,
3063 struct ipr_driver_dump
*driver_dump
)
3065 ipr_init_dump_entry_hdr(&driver_dump
->location_entry
.hdr
);
3066 driver_dump
->location_entry
.hdr
.len
=
3067 sizeof(struct ipr_dump_location_entry
) -
3068 sizeof(struct ipr_dump_entry_header
);
3069 driver_dump
->location_entry
.hdr
.data_type
= IPR_DUMP_DATA_TYPE_ASCII
;
3070 driver_dump
->location_entry
.hdr
.id
= IPR_DUMP_LOCATION_ID
;
3071 strcpy(driver_dump
->location_entry
.location
, dev_name(&ioa_cfg
->pdev
->dev
));
3072 driver_dump
->hdr
.num_entries
++;
3076 * ipr_get_ioa_dump - Perform a dump of the driver and adapter.
3077 * @ioa_cfg: ioa config struct
3078 * @dump: dump struct
3083 static void ipr_get_ioa_dump(struct ipr_ioa_cfg
*ioa_cfg
, struct ipr_dump
*dump
)
3085 unsigned long start_addr
, sdt_word
;
3086 unsigned long lock_flags
= 0;
3087 struct ipr_driver_dump
*driver_dump
= &dump
->driver_dump
;
3088 struct ipr_ioa_dump
*ioa_dump
= &dump
->ioa_dump
;
3089 u32 num_entries
, max_num_entries
, start_off
, end_off
;
3090 u32 max_dump_size
, bytes_to_copy
, bytes_copied
, rc
;
3091 struct ipr_sdt
*sdt
;
3097 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3099 if (ioa_cfg
->sdt_state
!= READ_DUMP
) {
3100 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3104 if (ioa_cfg
->sis64
) {
3105 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3106 ssleep(IPR_DUMP_DELAY_SECONDS
);
3107 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3110 start_addr
= readl(ioa_cfg
->ioa_mailbox
);
3112 if (!ioa_cfg
->sis64
&& !ipr_sdt_is_fmt2(start_addr
)) {
3113 dev_err(&ioa_cfg
->pdev
->dev
,
3114 "Invalid dump table format: %lx\n", start_addr
);
3115 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3119 dev_err(&ioa_cfg
->pdev
->dev
, "Dump of IOA initiated\n");
3121 driver_dump
->hdr
.eye_catcher
= IPR_DUMP_EYE_CATCHER
;
3123 /* Initialize the overall dump header */
3124 driver_dump
->hdr
.len
= sizeof(struct ipr_driver_dump
);
3125 driver_dump
->hdr
.num_entries
= 1;
3126 driver_dump
->hdr
.first_entry_offset
= sizeof(struct ipr_dump_header
);
3127 driver_dump
->hdr
.status
= IPR_DUMP_STATUS_SUCCESS
;
3128 driver_dump
->hdr
.os
= IPR_DUMP_OS_LINUX
;
3129 driver_dump
->hdr
.driver_name
= IPR_DUMP_DRIVER_NAME
;
3131 ipr_dump_version_data(ioa_cfg
, driver_dump
);
3132 ipr_dump_location_data(ioa_cfg
, driver_dump
);
3133 ipr_dump_ioa_type_data(ioa_cfg
, driver_dump
);
3134 ipr_dump_trace_data(ioa_cfg
, driver_dump
);
3136 /* Update dump_header */
3137 driver_dump
->hdr
.len
+= sizeof(struct ipr_dump_entry_header
);
3139 /* IOA Dump entry */
3140 ipr_init_dump_entry_hdr(&ioa_dump
->hdr
);
3141 ioa_dump
->hdr
.len
= 0;
3142 ioa_dump
->hdr
.data_type
= IPR_DUMP_DATA_TYPE_BINARY
;
3143 ioa_dump
->hdr
.id
= IPR_DUMP_IOA_DUMP_ID
;
3145 /* First entries in sdt are actually a list of dump addresses and
3146 lengths to gather the real dump data. sdt represents the pointer
3147 to the ioa generated dump table. Dump data will be extracted based
3148 on entries in this table */
3149 sdt
= &ioa_dump
->sdt
;
3151 if (ioa_cfg
->sis64
) {
3152 max_num_entries
= IPR_FMT3_NUM_SDT_ENTRIES
;
3153 max_dump_size
= IPR_FMT3_MAX_IOA_DUMP_SIZE
;
3155 max_num_entries
= IPR_FMT2_NUM_SDT_ENTRIES
;
3156 max_dump_size
= IPR_FMT2_MAX_IOA_DUMP_SIZE
;
3159 bytes_to_copy
= offsetof(struct ipr_sdt
, entry
) +
3160 (max_num_entries
* sizeof(struct ipr_sdt_entry
));
3161 rc
= ipr_get_ldump_data_section(ioa_cfg
, start_addr
, (__be32
*)sdt
,
3162 bytes_to_copy
/ sizeof(__be32
));
3164 /* Smart Dump table is ready to use and the first entry is valid */
3165 if (rc
|| ((be32_to_cpu(sdt
->hdr
.state
) != IPR_FMT3_SDT_READY_TO_USE
) &&
3166 (be32_to_cpu(sdt
->hdr
.state
) != IPR_FMT2_SDT_READY_TO_USE
))) {
3167 dev_err(&ioa_cfg
->pdev
->dev
,
3168 "Dump of IOA failed. Dump table not valid: %d, %X.\n",
3169 rc
, be32_to_cpu(sdt
->hdr
.state
));
3170 driver_dump
->hdr
.status
= IPR_DUMP_STATUS_FAILED
;
3171 ioa_cfg
->sdt_state
= DUMP_OBTAINED
;
3172 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3176 num_entries
= be32_to_cpu(sdt
->hdr
.num_entries_used
);
3178 if (num_entries
> max_num_entries
)
3179 num_entries
= max_num_entries
;
3181 /* Update dump length to the actual data to be copied */
3182 dump
->driver_dump
.hdr
.len
+= sizeof(struct ipr_sdt_header
);
3184 dump
->driver_dump
.hdr
.len
+= num_entries
* sizeof(struct ipr_sdt_entry
);
3186 dump
->driver_dump
.hdr
.len
+= max_num_entries
* sizeof(struct ipr_sdt_entry
);
3188 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3190 for (i
= 0; i
< num_entries
; i
++) {
3191 if (ioa_dump
->hdr
.len
> max_dump_size
) {
3192 driver_dump
->hdr
.status
= IPR_DUMP_STATUS_QUAL_SUCCESS
;
3196 if (sdt
->entry
[i
].flags
& IPR_SDT_VALID_ENTRY
) {
3197 sdt_word
= be32_to_cpu(sdt
->entry
[i
].start_token
);
3199 bytes_to_copy
= be32_to_cpu(sdt
->entry
[i
].end_token
);
3201 start_off
= sdt_word
& IPR_FMT2_MBX_ADDR_MASK
;
3202 end_off
= be32_to_cpu(sdt
->entry
[i
].end_token
);
3204 if (ipr_sdt_is_fmt2(sdt_word
) && sdt_word
)
3205 bytes_to_copy
= end_off
- start_off
;
3210 if (bytes_to_copy
> max_dump_size
) {
3211 sdt
->entry
[i
].flags
&= ~IPR_SDT_VALID_ENTRY
;
3215 /* Copy data from adapter to driver buffers */
3216 bytes_copied
= ipr_sdt_copy(ioa_cfg
, sdt_word
,
3219 ioa_dump
->hdr
.len
+= bytes_copied
;
3221 if (bytes_copied
!= bytes_to_copy
) {
3222 driver_dump
->hdr
.status
= IPR_DUMP_STATUS_QUAL_SUCCESS
;
3229 dev_err(&ioa_cfg
->pdev
->dev
, "Dump of IOA completed.\n");
3231 /* Update dump_header */
3232 driver_dump
->hdr
.len
+= ioa_dump
->hdr
.len
;
3234 ioa_cfg
->sdt_state
= DUMP_OBTAINED
;
3239 #define ipr_get_ioa_dump(ioa_cfg, dump) do { } while (0)
3243 * ipr_release_dump - Free adapter dump memory
3244 * @kref: kref struct
3249 static void ipr_release_dump(struct kref
*kref
)
3251 struct ipr_dump
*dump
= container_of(kref
, struct ipr_dump
, kref
);
3252 struct ipr_ioa_cfg
*ioa_cfg
= dump
->ioa_cfg
;
3253 unsigned long lock_flags
= 0;
3257 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3258 ioa_cfg
->dump
= NULL
;
3259 ioa_cfg
->sdt_state
= INACTIVE
;
3260 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3262 for (i
= 0; i
< dump
->ioa_dump
.next_page_index
; i
++)
3263 free_page((unsigned long) dump
->ioa_dump
.ioa_data
[i
]);
3265 vfree(dump
->ioa_dump
.ioa_data
);
3271 * ipr_worker_thread - Worker thread
3272 * @work: ioa config struct
3274 * Called at task level from a work thread. This function takes care
3275 * of adding and removing device from the mid-layer as configuration
3276 * changes are detected by the adapter.
3281 static void ipr_worker_thread(struct work_struct
*work
)
3283 unsigned long lock_flags
;
3284 struct ipr_resource_entry
*res
;
3285 struct scsi_device
*sdev
;
3286 struct ipr_dump
*dump
;
3287 struct ipr_ioa_cfg
*ioa_cfg
=
3288 container_of(work
, struct ipr_ioa_cfg
, work_q
);
3289 u8 bus
, target
, lun
;
3293 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3295 if (ioa_cfg
->sdt_state
== READ_DUMP
) {
3296 dump
= ioa_cfg
->dump
;
3298 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3301 kref_get(&dump
->kref
);
3302 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3303 ipr_get_ioa_dump(ioa_cfg
, dump
);
3304 kref_put(&dump
->kref
, ipr_release_dump
);
3306 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3307 if (ioa_cfg
->sdt_state
== DUMP_OBTAINED
&& !ioa_cfg
->dump_timeout
)
3308 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
3309 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3313 if (!ioa_cfg
->scan_enabled
) {
3314 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3321 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].allow_cmds
) {
3322 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3326 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
3327 if (res
->del_from_ml
&& res
->sdev
) {
3330 if (!scsi_device_get(sdev
)) {
3331 if (!res
->add_to_ml
)
3332 list_move_tail(&res
->queue
, &ioa_cfg
->free_res_q
);
3334 res
->del_from_ml
= 0;
3335 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3336 scsi_remove_device(sdev
);
3337 scsi_device_put(sdev
);
3338 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3345 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
3346 if (res
->add_to_ml
) {
3348 target
= res
->target
;
3351 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3352 scsi_add_device(ioa_cfg
->host
, bus
, target
, lun
);
3353 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3358 ioa_cfg
->scan_done
= 1;
3359 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3360 kobject_uevent(&ioa_cfg
->host
->shost_dev
.kobj
, KOBJ_CHANGE
);
3364 #ifdef CONFIG_SCSI_IPR_TRACE
3366 * ipr_read_trace - Dump the adapter trace
3367 * @filp: open sysfs file
3368 * @kobj: kobject struct
3369 * @bin_attr: bin_attribute struct
3372 * @count: buffer size
3375 * number of bytes printed to buffer
3377 static ssize_t
ipr_read_trace(struct file
*filp
, struct kobject
*kobj
,
3378 struct bin_attribute
*bin_attr
,
3379 char *buf
, loff_t off
, size_t count
)
3381 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
3382 struct Scsi_Host
*shost
= class_to_shost(dev
);
3383 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3384 unsigned long lock_flags
= 0;
3387 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3388 ret
= memory_read_from_buffer(buf
, count
, &off
, ioa_cfg
->trace
,
3390 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3395 static struct bin_attribute ipr_trace_attr
= {
3401 .read
= ipr_read_trace
,
3406 * ipr_show_fw_version - Show the firmware version
3407 * @dev: class device struct
3411 * number of bytes printed to buffer
3413 static ssize_t
ipr_show_fw_version(struct device
*dev
,
3414 struct device_attribute
*attr
, char *buf
)
3416 struct Scsi_Host
*shost
= class_to_shost(dev
);
3417 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3418 struct ipr_inquiry_page3
*ucode_vpd
= &ioa_cfg
->vpd_cbs
->page3_data
;
3419 unsigned long lock_flags
= 0;
3422 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3423 len
= snprintf(buf
, PAGE_SIZE
, "%02X%02X%02X%02X\n",
3424 ucode_vpd
->major_release
, ucode_vpd
->card_type
,
3425 ucode_vpd
->minor_release
[0],
3426 ucode_vpd
->minor_release
[1]);
3427 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3431 static struct device_attribute ipr_fw_version_attr
= {
3433 .name
= "fw_version",
3436 .show
= ipr_show_fw_version
,
3440 * ipr_show_log_level - Show the adapter's error logging level
3441 * @dev: class device struct
3445 * number of bytes printed to buffer
3447 static ssize_t
ipr_show_log_level(struct device
*dev
,
3448 struct device_attribute
*attr
, char *buf
)
3450 struct Scsi_Host
*shost
= class_to_shost(dev
);
3451 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3452 unsigned long lock_flags
= 0;
3455 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3456 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", ioa_cfg
->log_level
);
3457 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3462 * ipr_store_log_level - Change the adapter's error logging level
3463 * @dev: class device struct
3467 * number of bytes printed to buffer
3469 static ssize_t
ipr_store_log_level(struct device
*dev
,
3470 struct device_attribute
*attr
,
3471 const char *buf
, size_t count
)
3473 struct Scsi_Host
*shost
= class_to_shost(dev
);
3474 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3475 unsigned long lock_flags
= 0;
3477 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3478 ioa_cfg
->log_level
= simple_strtoul(buf
, NULL
, 10);
3479 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3483 static struct device_attribute ipr_log_level_attr
= {
3485 .name
= "log_level",
3486 .mode
= S_IRUGO
| S_IWUSR
,
3488 .show
= ipr_show_log_level
,
3489 .store
= ipr_store_log_level
3493 * ipr_store_diagnostics - IOA Diagnostics interface
3494 * @dev: device struct
3496 * @count: buffer size
3498 * This function will reset the adapter and wait a reasonable
3499 * amount of time for any errors that the adapter might log.
3502 * count on success / other on failure
3504 static ssize_t
ipr_store_diagnostics(struct device
*dev
,
3505 struct device_attribute
*attr
,
3506 const char *buf
, size_t count
)
3508 struct Scsi_Host
*shost
= class_to_shost(dev
);
3509 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3510 unsigned long lock_flags
= 0;
3513 if (!capable(CAP_SYS_ADMIN
))
3516 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3517 while (ioa_cfg
->in_reset_reload
) {
3518 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3519 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
3520 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3523 ioa_cfg
->errors_logged
= 0;
3524 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NORMAL
);
3526 if (ioa_cfg
->in_reset_reload
) {
3527 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3528 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
3530 /* Wait for a second for any errors to be logged */
3533 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3537 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3538 if (ioa_cfg
->in_reset_reload
|| ioa_cfg
->errors_logged
)
3540 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3545 static struct device_attribute ipr_diagnostics_attr
= {
3547 .name
= "run_diagnostics",
3550 .store
= ipr_store_diagnostics
3554 * ipr_show_adapter_state - Show the adapter's state
3555 * @class_dev: device struct
3559 * number of bytes printed to buffer
3561 static ssize_t
ipr_show_adapter_state(struct device
*dev
,
3562 struct device_attribute
*attr
, char *buf
)
3564 struct Scsi_Host
*shost
= class_to_shost(dev
);
3565 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3566 unsigned long lock_flags
= 0;
3569 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3570 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
)
3571 len
= snprintf(buf
, PAGE_SIZE
, "offline\n");
3573 len
= snprintf(buf
, PAGE_SIZE
, "online\n");
3574 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3579 * ipr_store_adapter_state - Change adapter state
3580 * @dev: device struct
3582 * @count: buffer size
3584 * This function will change the adapter's state.
3587 * count on success / other on failure
3589 static ssize_t
ipr_store_adapter_state(struct device
*dev
,
3590 struct device_attribute
*attr
,
3591 const char *buf
, size_t count
)
3593 struct Scsi_Host
*shost
= class_to_shost(dev
);
3594 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3595 unsigned long lock_flags
;
3596 int result
= count
, i
;
3598 if (!capable(CAP_SYS_ADMIN
))
3601 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3602 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
&&
3603 !strncmp(buf
, "online", 6)) {
3604 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
3605 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
3606 ioa_cfg
->hrrq
[i
].ioa_is_dead
= 0;
3607 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
3610 ioa_cfg
->reset_retries
= 0;
3611 ioa_cfg
->in_ioa_bringdown
= 0;
3612 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
3614 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3615 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
3620 static struct device_attribute ipr_ioa_state_attr
= {
3622 .name
= "online_state",
3623 .mode
= S_IRUGO
| S_IWUSR
,
3625 .show
= ipr_show_adapter_state
,
3626 .store
= ipr_store_adapter_state
3630 * ipr_store_reset_adapter - Reset the adapter
3631 * @dev: device struct
3633 * @count: buffer size
3635 * This function will reset the adapter.
3638 * count on success / other on failure
3640 static ssize_t
ipr_store_reset_adapter(struct device
*dev
,
3641 struct device_attribute
*attr
,
3642 const char *buf
, size_t count
)
3644 struct Scsi_Host
*shost
= class_to_shost(dev
);
3645 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3646 unsigned long lock_flags
;
3649 if (!capable(CAP_SYS_ADMIN
))
3652 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3653 if (!ioa_cfg
->in_reset_reload
)
3654 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NORMAL
);
3655 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3656 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
3661 static struct device_attribute ipr_ioa_reset_attr
= {
3663 .name
= "reset_host",
3666 .store
= ipr_store_reset_adapter
3669 static int ipr_iopoll(struct irq_poll
*iop
, int budget
);
3671 * ipr_show_iopoll_weight - Show ipr polling mode
3672 * @dev: class device struct
3676 * number of bytes printed to buffer
3678 static ssize_t
ipr_show_iopoll_weight(struct device
*dev
,
3679 struct device_attribute
*attr
, char *buf
)
3681 struct Scsi_Host
*shost
= class_to_shost(dev
);
3682 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3683 unsigned long lock_flags
= 0;
3686 spin_lock_irqsave(shost
->host_lock
, lock_flags
);
3687 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", ioa_cfg
->iopoll_weight
);
3688 spin_unlock_irqrestore(shost
->host_lock
, lock_flags
);
3694 * ipr_store_iopoll_weight - Change the adapter's polling mode
3695 * @dev: class device struct
3699 * number of bytes printed to buffer
3701 static ssize_t
ipr_store_iopoll_weight(struct device
*dev
,
3702 struct device_attribute
*attr
,
3703 const char *buf
, size_t count
)
3705 struct Scsi_Host
*shost
= class_to_shost(dev
);
3706 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
3707 unsigned long user_iopoll_weight
;
3708 unsigned long lock_flags
= 0;
3711 if (!ioa_cfg
->sis64
) {
3712 dev_info(&ioa_cfg
->pdev
->dev
, "irq_poll not supported on this adapter\n");
3715 if (kstrtoul(buf
, 10, &user_iopoll_weight
))
3718 if (user_iopoll_weight
> 256) {
3719 dev_info(&ioa_cfg
->pdev
->dev
, "Invalid irq_poll weight. It must be less than 256\n");
3723 if (user_iopoll_weight
== ioa_cfg
->iopoll_weight
) {
3724 dev_info(&ioa_cfg
->pdev
->dev
, "Current irq_poll weight has the same weight\n");
3728 if (ioa_cfg
->iopoll_weight
&& ioa_cfg
->sis64
&& ioa_cfg
->nvectors
> 1) {
3729 for (i
= 1; i
< ioa_cfg
->hrrq_num
; i
++)
3730 irq_poll_disable(&ioa_cfg
->hrrq
[i
].iopoll
);
3733 spin_lock_irqsave(shost
->host_lock
, lock_flags
);
3734 ioa_cfg
->iopoll_weight
= user_iopoll_weight
;
3735 if (ioa_cfg
->iopoll_weight
&& ioa_cfg
->sis64
&& ioa_cfg
->nvectors
> 1) {
3736 for (i
= 1; i
< ioa_cfg
->hrrq_num
; i
++) {
3737 irq_poll_init(&ioa_cfg
->hrrq
[i
].iopoll
,
3738 ioa_cfg
->iopoll_weight
, ipr_iopoll
);
3741 spin_unlock_irqrestore(shost
->host_lock
, lock_flags
);
3746 static struct device_attribute ipr_iopoll_weight_attr
= {
3748 .name
= "iopoll_weight",
3749 .mode
= S_IRUGO
| S_IWUSR
,
3751 .show
= ipr_show_iopoll_weight
,
3752 .store
= ipr_store_iopoll_weight
3756 * ipr_alloc_ucode_buffer - Allocates a microcode download buffer
3757 * @buf_len: buffer length
3759 * Allocates a DMA'able buffer in chunks and assembles a scatter/gather
3760 * list to use for microcode download
3763 * pointer to sglist / NULL on failure
3765 static struct ipr_sglist
*ipr_alloc_ucode_buffer(int buf_len
)
3767 int sg_size
, order
, bsize_elem
, num_elem
, i
, j
;
3768 struct ipr_sglist
*sglist
;
3769 struct scatterlist
*scatterlist
;
3772 /* Get the minimum size per scatter/gather element */
3773 sg_size
= buf_len
/ (IPR_MAX_SGLIST
- 1);
3775 /* Get the actual size per element */
3776 order
= get_order(sg_size
);
3778 /* Determine the actual number of bytes per element */
3779 bsize_elem
= PAGE_SIZE
* (1 << order
);
3781 /* Determine the actual number of sg entries needed */
3782 if (buf_len
% bsize_elem
)
3783 num_elem
= (buf_len
/ bsize_elem
) + 1;
3785 num_elem
= buf_len
/ bsize_elem
;
3787 /* Allocate a scatter/gather list for the DMA */
3788 sglist
= kzalloc(sizeof(struct ipr_sglist
) +
3789 (sizeof(struct scatterlist
) * (num_elem
- 1)),
3792 if (sglist
== NULL
) {
3797 scatterlist
= sglist
->scatterlist
;
3798 sg_init_table(scatterlist
, num_elem
);
3800 sglist
->order
= order
;
3801 sglist
->num_sg
= num_elem
;
3803 /* Allocate a bunch of sg elements */
3804 for (i
= 0; i
< num_elem
; i
++) {
3805 page
= alloc_pages(GFP_KERNEL
, order
);
3809 /* Free up what we already allocated */
3810 for (j
= i
- 1; j
>= 0; j
--)
3811 __free_pages(sg_page(&scatterlist
[j
]), order
);
3816 sg_set_page(&scatterlist
[i
], page
, 0, 0);
3823 * ipr_free_ucode_buffer - Frees a microcode download buffer
3824 * @p_dnld: scatter/gather list pointer
3826 * Free a DMA'able ucode download buffer previously allocated with
3827 * ipr_alloc_ucode_buffer
3832 static void ipr_free_ucode_buffer(struct ipr_sglist
*sglist
)
3836 for (i
= 0; i
< sglist
->num_sg
; i
++)
3837 __free_pages(sg_page(&sglist
->scatterlist
[i
]), sglist
->order
);
3843 * ipr_copy_ucode_buffer - Copy user buffer to kernel buffer
3844 * @sglist: scatter/gather list pointer
3845 * @buffer: buffer pointer
3846 * @len: buffer length
3848 * Copy a microcode image from a user buffer into a buffer allocated by
3849 * ipr_alloc_ucode_buffer
3852 * 0 on success / other on failure
3854 static int ipr_copy_ucode_buffer(struct ipr_sglist
*sglist
,
3855 u8
*buffer
, u32 len
)
3857 int bsize_elem
, i
, result
= 0;
3858 struct scatterlist
*scatterlist
;
3861 /* Determine the actual number of bytes per element */
3862 bsize_elem
= PAGE_SIZE
* (1 << sglist
->order
);
3864 scatterlist
= sglist
->scatterlist
;
3866 for (i
= 0; i
< (len
/ bsize_elem
); i
++, buffer
+= bsize_elem
) {
3867 struct page
*page
= sg_page(&scatterlist
[i
]);
3870 memcpy(kaddr
, buffer
, bsize_elem
);
3873 scatterlist
[i
].length
= bsize_elem
;
3881 if (len
% bsize_elem
) {
3882 struct page
*page
= sg_page(&scatterlist
[i
]);
3885 memcpy(kaddr
, buffer
, len
% bsize_elem
);
3888 scatterlist
[i
].length
= len
% bsize_elem
;
3891 sglist
->buffer_len
= len
;
3896 * ipr_build_ucode_ioadl64 - Build a microcode download IOADL
3897 * @ipr_cmd: ipr command struct
3898 * @sglist: scatter/gather list
3900 * Builds a microcode download IOA data list (IOADL).
3903 static void ipr_build_ucode_ioadl64(struct ipr_cmnd
*ipr_cmd
,
3904 struct ipr_sglist
*sglist
)
3906 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
3907 struct ipr_ioadl64_desc
*ioadl64
= ipr_cmd
->i
.ioadl64
;
3908 struct scatterlist
*scatterlist
= sglist
->scatterlist
;
3911 ipr_cmd
->dma_use_sg
= sglist
->num_dma_sg
;
3912 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
3913 ioarcb
->data_transfer_length
= cpu_to_be32(sglist
->buffer_len
);
3916 cpu_to_be32(sizeof(struct ipr_ioadl64_desc
) * ipr_cmd
->dma_use_sg
);
3917 for (i
= 0; i
< ipr_cmd
->dma_use_sg
; i
++) {
3918 ioadl64
[i
].flags
= cpu_to_be32(IPR_IOADL_FLAGS_WRITE
);
3919 ioadl64
[i
].data_len
= cpu_to_be32(sg_dma_len(&scatterlist
[i
]));
3920 ioadl64
[i
].address
= cpu_to_be64(sg_dma_address(&scatterlist
[i
]));
3923 ioadl64
[i
-1].flags
|= cpu_to_be32(IPR_IOADL_FLAGS_LAST
);
3927 * ipr_build_ucode_ioadl - Build a microcode download IOADL
3928 * @ipr_cmd: ipr command struct
3929 * @sglist: scatter/gather list
3931 * Builds a microcode download IOA data list (IOADL).
3934 static void ipr_build_ucode_ioadl(struct ipr_cmnd
*ipr_cmd
,
3935 struct ipr_sglist
*sglist
)
3937 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
3938 struct ipr_ioadl_desc
*ioadl
= ipr_cmd
->i
.ioadl
;
3939 struct scatterlist
*scatterlist
= sglist
->scatterlist
;
3942 ipr_cmd
->dma_use_sg
= sglist
->num_dma_sg
;
3943 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
3944 ioarcb
->data_transfer_length
= cpu_to_be32(sglist
->buffer_len
);
3947 cpu_to_be32(sizeof(struct ipr_ioadl_desc
) * ipr_cmd
->dma_use_sg
);
3949 for (i
= 0; i
< ipr_cmd
->dma_use_sg
; i
++) {
3950 ioadl
[i
].flags_and_data_len
=
3951 cpu_to_be32(IPR_IOADL_FLAGS_WRITE
| sg_dma_len(&scatterlist
[i
]));
3953 cpu_to_be32(sg_dma_address(&scatterlist
[i
]));
3956 ioadl
[i
-1].flags_and_data_len
|=
3957 cpu_to_be32(IPR_IOADL_FLAGS_LAST
);
3961 * ipr_update_ioa_ucode - Update IOA's microcode
3962 * @ioa_cfg: ioa config struct
3963 * @sglist: scatter/gather list
3965 * Initiate an adapter reset to update the IOA's microcode
3968 * 0 on success / -EIO on failure
3970 static int ipr_update_ioa_ucode(struct ipr_ioa_cfg
*ioa_cfg
,
3971 struct ipr_sglist
*sglist
)
3973 unsigned long lock_flags
;
3975 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3976 while (ioa_cfg
->in_reset_reload
) {
3977 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3978 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
3979 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
3982 if (ioa_cfg
->ucode_sglist
) {
3983 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3984 dev_err(&ioa_cfg
->pdev
->dev
,
3985 "Microcode download already in progress\n");
3989 sglist
->num_dma_sg
= dma_map_sg(&ioa_cfg
->pdev
->dev
,
3990 sglist
->scatterlist
, sglist
->num_sg
,
3993 if (!sglist
->num_dma_sg
) {
3994 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
3995 dev_err(&ioa_cfg
->pdev
->dev
,
3996 "Failed to map microcode download buffer!\n");
4000 ioa_cfg
->ucode_sglist
= sglist
;
4001 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NORMAL
);
4002 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4003 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
4005 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4006 ioa_cfg
->ucode_sglist
= NULL
;
4007 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4012 * ipr_store_update_fw - Update the firmware on the adapter
4013 * @class_dev: device struct
4015 * @count: buffer size
4017 * This function will update the firmware on the adapter.
4020 * count on success / other on failure
4022 static ssize_t
ipr_store_update_fw(struct device
*dev
,
4023 struct device_attribute
*attr
,
4024 const char *buf
, size_t count
)
4026 struct Scsi_Host
*shost
= class_to_shost(dev
);
4027 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
4028 struct ipr_ucode_image_header
*image_hdr
;
4029 const struct firmware
*fw_entry
;
4030 struct ipr_sglist
*sglist
;
4034 int result
, dnld_size
;
4036 if (!capable(CAP_SYS_ADMIN
))
4039 snprintf(fname
, sizeof(fname
), "%s", buf
);
4041 endline
= strchr(fname
, '\n');
4045 if (request_firmware(&fw_entry
, fname
, &ioa_cfg
->pdev
->dev
)) {
4046 dev_err(&ioa_cfg
->pdev
->dev
, "Firmware file %s not found\n", fname
);
4050 image_hdr
= (struct ipr_ucode_image_header
*)fw_entry
->data
;
4052 src
= (u8
*)image_hdr
+ be32_to_cpu(image_hdr
->header_length
);
4053 dnld_size
= fw_entry
->size
- be32_to_cpu(image_hdr
->header_length
);
4054 sglist
= ipr_alloc_ucode_buffer(dnld_size
);
4057 dev_err(&ioa_cfg
->pdev
->dev
, "Microcode buffer allocation failed\n");
4058 release_firmware(fw_entry
);
4062 result
= ipr_copy_ucode_buffer(sglist
, src
, dnld_size
);
4065 dev_err(&ioa_cfg
->pdev
->dev
,
4066 "Microcode buffer copy to DMA buffer failed\n");
4070 ipr_info("Updating microcode, please be patient. This may take up to 30 minutes.\n");
4072 result
= ipr_update_ioa_ucode(ioa_cfg
, sglist
);
4077 ipr_free_ucode_buffer(sglist
);
4078 release_firmware(fw_entry
);
4082 static struct device_attribute ipr_update_fw_attr
= {
4084 .name
= "update_fw",
4087 .store
= ipr_store_update_fw
4091 * ipr_show_fw_type - Show the adapter's firmware type.
4092 * @dev: class device struct
4096 * number of bytes printed to buffer
4098 static ssize_t
ipr_show_fw_type(struct device
*dev
,
4099 struct device_attribute
*attr
, char *buf
)
4101 struct Scsi_Host
*shost
= class_to_shost(dev
);
4102 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
4103 unsigned long lock_flags
= 0;
4106 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4107 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", ioa_cfg
->sis64
);
4108 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4112 static struct device_attribute ipr_ioa_fw_type_attr
= {
4117 .show
= ipr_show_fw_type
4120 static ssize_t
ipr_read_async_err_log(struct file
*filep
, struct kobject
*kobj
,
4121 struct bin_attribute
*bin_attr
, char *buf
,
4122 loff_t off
, size_t count
)
4124 struct device
*cdev
= container_of(kobj
, struct device
, kobj
);
4125 struct Scsi_Host
*shost
= class_to_shost(cdev
);
4126 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
4127 struct ipr_hostrcb
*hostrcb
;
4128 unsigned long lock_flags
= 0;
4131 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4132 hostrcb
= list_first_entry_or_null(&ioa_cfg
->hostrcb_report_q
,
4133 struct ipr_hostrcb
, queue
);
4135 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4138 ret
= memory_read_from_buffer(buf
, count
, &off
, &hostrcb
->hcam
,
4139 sizeof(hostrcb
->hcam
));
4140 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4144 static ssize_t
ipr_next_async_err_log(struct file
*filep
, struct kobject
*kobj
,
4145 struct bin_attribute
*bin_attr
, char *buf
,
4146 loff_t off
, size_t count
)
4148 struct device
*cdev
= container_of(kobj
, struct device
, kobj
);
4149 struct Scsi_Host
*shost
= class_to_shost(cdev
);
4150 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
4151 struct ipr_hostrcb
*hostrcb
;
4152 unsigned long lock_flags
= 0;
4154 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4155 hostrcb
= list_first_entry_or_null(&ioa_cfg
->hostrcb_report_q
,
4156 struct ipr_hostrcb
, queue
);
4158 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4162 /* Reclaim hostrcb before exit */
4163 list_move_tail(&hostrcb
->queue
, &ioa_cfg
->hostrcb_free_q
);
4164 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4168 static struct bin_attribute ipr_ioa_async_err_log
= {
4170 .name
= "async_err_log",
4171 .mode
= S_IRUGO
| S_IWUSR
,
4174 .read
= ipr_read_async_err_log
,
4175 .write
= ipr_next_async_err_log
4178 static struct device_attribute
*ipr_ioa_attrs
[] = {
4179 &ipr_fw_version_attr
,
4180 &ipr_log_level_attr
,
4181 &ipr_diagnostics_attr
,
4182 &ipr_ioa_state_attr
,
4183 &ipr_ioa_reset_attr
,
4184 &ipr_update_fw_attr
,
4185 &ipr_ioa_fw_type_attr
,
4186 &ipr_iopoll_weight_attr
,
4190 #ifdef CONFIG_SCSI_IPR_DUMP
4192 * ipr_read_dump - Dump the adapter
4193 * @filp: open sysfs file
4194 * @kobj: kobject struct
4195 * @bin_attr: bin_attribute struct
4198 * @count: buffer size
4201 * number of bytes printed to buffer
4203 static ssize_t
ipr_read_dump(struct file
*filp
, struct kobject
*kobj
,
4204 struct bin_attribute
*bin_attr
,
4205 char *buf
, loff_t off
, size_t count
)
4207 struct device
*cdev
= container_of(kobj
, struct device
, kobj
);
4208 struct Scsi_Host
*shost
= class_to_shost(cdev
);
4209 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
4210 struct ipr_dump
*dump
;
4211 unsigned long lock_flags
= 0;
4216 if (!capable(CAP_SYS_ADMIN
))
4219 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4220 dump
= ioa_cfg
->dump
;
4222 if (ioa_cfg
->sdt_state
!= DUMP_OBTAINED
|| !dump
) {
4223 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4226 kref_get(&dump
->kref
);
4227 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4229 if (off
> dump
->driver_dump
.hdr
.len
) {
4230 kref_put(&dump
->kref
, ipr_release_dump
);
4234 if (off
+ count
> dump
->driver_dump
.hdr
.len
) {
4235 count
= dump
->driver_dump
.hdr
.len
- off
;
4239 if (count
&& off
< sizeof(dump
->driver_dump
)) {
4240 if (off
+ count
> sizeof(dump
->driver_dump
))
4241 len
= sizeof(dump
->driver_dump
) - off
;
4244 src
= (u8
*)&dump
->driver_dump
+ off
;
4245 memcpy(buf
, src
, len
);
4251 off
-= sizeof(dump
->driver_dump
);
4254 sdt_end
= offsetof(struct ipr_ioa_dump
, sdt
.entry
) +
4255 (be32_to_cpu(dump
->ioa_dump
.sdt
.hdr
.num_entries_used
) *
4256 sizeof(struct ipr_sdt_entry
));
4258 sdt_end
= offsetof(struct ipr_ioa_dump
, sdt
.entry
) +
4259 (IPR_FMT2_NUM_SDT_ENTRIES
* sizeof(struct ipr_sdt_entry
));
4261 if (count
&& off
< sdt_end
) {
4262 if (off
+ count
> sdt_end
)
4263 len
= sdt_end
- off
;
4266 src
= (u8
*)&dump
->ioa_dump
+ off
;
4267 memcpy(buf
, src
, len
);
4276 if ((off
& PAGE_MASK
) != ((off
+ count
) & PAGE_MASK
))
4277 len
= PAGE_ALIGN(off
) - off
;
4280 src
= (u8
*)dump
->ioa_dump
.ioa_data
[(off
& PAGE_MASK
) >> PAGE_SHIFT
];
4281 src
+= off
& ~PAGE_MASK
;
4282 memcpy(buf
, src
, len
);
4288 kref_put(&dump
->kref
, ipr_release_dump
);
4293 * ipr_alloc_dump - Prepare for adapter dump
4294 * @ioa_cfg: ioa config struct
4297 * 0 on success / other on failure
4299 static int ipr_alloc_dump(struct ipr_ioa_cfg
*ioa_cfg
)
4301 struct ipr_dump
*dump
;
4303 unsigned long lock_flags
= 0;
4305 dump
= kzalloc(sizeof(struct ipr_dump
), GFP_KERNEL
);
4308 ipr_err("Dump memory allocation failed\n");
4313 ioa_data
= vmalloc(IPR_FMT3_MAX_NUM_DUMP_PAGES
* sizeof(__be32
*));
4315 ioa_data
= vmalloc(IPR_FMT2_MAX_NUM_DUMP_PAGES
* sizeof(__be32
*));
4318 ipr_err("Dump memory allocation failed\n");
4323 dump
->ioa_dump
.ioa_data
= ioa_data
;
4325 kref_init(&dump
->kref
);
4326 dump
->ioa_cfg
= ioa_cfg
;
4328 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4330 if (INACTIVE
!= ioa_cfg
->sdt_state
) {
4331 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4332 vfree(dump
->ioa_dump
.ioa_data
);
4337 ioa_cfg
->dump
= dump
;
4338 ioa_cfg
->sdt_state
= WAIT_FOR_DUMP
;
4339 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
&& !ioa_cfg
->dump_taken
) {
4340 ioa_cfg
->dump_taken
= 1;
4341 schedule_work(&ioa_cfg
->work_q
);
4343 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4349 * ipr_free_dump - Free adapter dump memory
4350 * @ioa_cfg: ioa config struct
4353 * 0 on success / other on failure
4355 static int ipr_free_dump(struct ipr_ioa_cfg
*ioa_cfg
)
4357 struct ipr_dump
*dump
;
4358 unsigned long lock_flags
= 0;
4362 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4363 dump
= ioa_cfg
->dump
;
4365 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4369 ioa_cfg
->dump
= NULL
;
4370 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4372 kref_put(&dump
->kref
, ipr_release_dump
);
4379 * ipr_write_dump - Setup dump state of adapter
4380 * @filp: open sysfs file
4381 * @kobj: kobject struct
4382 * @bin_attr: bin_attribute struct
4385 * @count: buffer size
4388 * number of bytes printed to buffer
4390 static ssize_t
ipr_write_dump(struct file
*filp
, struct kobject
*kobj
,
4391 struct bin_attribute
*bin_attr
,
4392 char *buf
, loff_t off
, size_t count
)
4394 struct device
*cdev
= container_of(kobj
, struct device
, kobj
);
4395 struct Scsi_Host
*shost
= class_to_shost(cdev
);
4396 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
4399 if (!capable(CAP_SYS_ADMIN
))
4403 rc
= ipr_alloc_dump(ioa_cfg
);
4404 else if (buf
[0] == '0')
4405 rc
= ipr_free_dump(ioa_cfg
);
4415 static struct bin_attribute ipr_dump_attr
= {
4418 .mode
= S_IRUSR
| S_IWUSR
,
4421 .read
= ipr_read_dump
,
4422 .write
= ipr_write_dump
4425 static int ipr_free_dump(struct ipr_ioa_cfg
*ioa_cfg
) { return 0; };
4429 * ipr_change_queue_depth - Change the device's queue depth
4430 * @sdev: scsi device struct
4431 * @qdepth: depth to set
4432 * @reason: calling context
4437 static int ipr_change_queue_depth(struct scsi_device
*sdev
, int qdepth
)
4439 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4440 struct ipr_resource_entry
*res
;
4441 unsigned long lock_flags
= 0;
4443 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4444 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4446 if (res
&& ipr_is_gata(res
) && qdepth
> IPR_MAX_CMD_PER_ATA_LUN
)
4447 qdepth
= IPR_MAX_CMD_PER_ATA_LUN
;
4448 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4450 scsi_change_queue_depth(sdev
, qdepth
);
4451 return sdev
->queue_depth
;
4455 * ipr_show_adapter_handle - Show the adapter's resource handle for this device
4456 * @dev: device struct
4457 * @attr: device attribute structure
4461 * number of bytes printed to buffer
4463 static ssize_t
ipr_show_adapter_handle(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
4465 struct scsi_device
*sdev
= to_scsi_device(dev
);
4466 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4467 struct ipr_resource_entry
*res
;
4468 unsigned long lock_flags
= 0;
4469 ssize_t len
= -ENXIO
;
4471 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4472 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4474 len
= snprintf(buf
, PAGE_SIZE
, "%08X\n", res
->res_handle
);
4475 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4479 static struct device_attribute ipr_adapter_handle_attr
= {
4481 .name
= "adapter_handle",
4484 .show
= ipr_show_adapter_handle
4488 * ipr_show_resource_path - Show the resource path or the resource address for
4490 * @dev: device struct
4491 * @attr: device attribute structure
4495 * number of bytes printed to buffer
4497 static ssize_t
ipr_show_resource_path(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
4499 struct scsi_device
*sdev
= to_scsi_device(dev
);
4500 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4501 struct ipr_resource_entry
*res
;
4502 unsigned long lock_flags
= 0;
4503 ssize_t len
= -ENXIO
;
4504 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
4506 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4507 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4508 if (res
&& ioa_cfg
->sis64
)
4509 len
= snprintf(buf
, PAGE_SIZE
, "%s\n",
4510 __ipr_format_res_path(res
->res_path
, buffer
,
4513 len
= snprintf(buf
, PAGE_SIZE
, "%d:%d:%d:%d\n", ioa_cfg
->host
->host_no
,
4514 res
->bus
, res
->target
, res
->lun
);
4516 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4520 static struct device_attribute ipr_resource_path_attr
= {
4522 .name
= "resource_path",
4525 .show
= ipr_show_resource_path
4529 * ipr_show_device_id - Show the device_id for this device.
4530 * @dev: device struct
4531 * @attr: device attribute structure
4535 * number of bytes printed to buffer
4537 static ssize_t
ipr_show_device_id(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
4539 struct scsi_device
*sdev
= to_scsi_device(dev
);
4540 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4541 struct ipr_resource_entry
*res
;
4542 unsigned long lock_flags
= 0;
4543 ssize_t len
= -ENXIO
;
4545 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4546 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4547 if (res
&& ioa_cfg
->sis64
)
4548 len
= snprintf(buf
, PAGE_SIZE
, "0x%llx\n", be64_to_cpu(res
->dev_id
));
4550 len
= snprintf(buf
, PAGE_SIZE
, "0x%llx\n", res
->lun_wwn
);
4552 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4556 static struct device_attribute ipr_device_id_attr
= {
4558 .name
= "device_id",
4561 .show
= ipr_show_device_id
4565 * ipr_show_resource_type - Show the resource type for this device.
4566 * @dev: device struct
4567 * @attr: device attribute structure
4571 * number of bytes printed to buffer
4573 static ssize_t
ipr_show_resource_type(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
4575 struct scsi_device
*sdev
= to_scsi_device(dev
);
4576 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4577 struct ipr_resource_entry
*res
;
4578 unsigned long lock_flags
= 0;
4579 ssize_t len
= -ENXIO
;
4581 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4582 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4585 len
= snprintf(buf
, PAGE_SIZE
, "%x\n", res
->type
);
4587 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4591 static struct device_attribute ipr_resource_type_attr
= {
4593 .name
= "resource_type",
4596 .show
= ipr_show_resource_type
4600 * ipr_show_raw_mode - Show the adapter's raw mode
4601 * @dev: class device struct
4605 * number of bytes printed to buffer
4607 static ssize_t
ipr_show_raw_mode(struct device
*dev
,
4608 struct device_attribute
*attr
, char *buf
)
4610 struct scsi_device
*sdev
= to_scsi_device(dev
);
4611 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4612 struct ipr_resource_entry
*res
;
4613 unsigned long lock_flags
= 0;
4616 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4617 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4619 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", res
->raw_mode
);
4622 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4627 * ipr_store_raw_mode - Change the adapter's raw mode
4628 * @dev: class device struct
4632 * number of bytes printed to buffer
4634 static ssize_t
ipr_store_raw_mode(struct device
*dev
,
4635 struct device_attribute
*attr
,
4636 const char *buf
, size_t count
)
4638 struct scsi_device
*sdev
= to_scsi_device(dev
);
4639 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)sdev
->host
->hostdata
;
4640 struct ipr_resource_entry
*res
;
4641 unsigned long lock_flags
= 0;
4644 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4645 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
4647 if (ipr_is_af_dasd_device(res
)) {
4648 res
->raw_mode
= simple_strtoul(buf
, NULL
, 10);
4651 sdev_printk(KERN_INFO
, res
->sdev
, "raw mode is %s\n",
4652 res
->raw_mode
? "enabled" : "disabled");
4657 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4661 static struct device_attribute ipr_raw_mode_attr
= {
4664 .mode
= S_IRUGO
| S_IWUSR
,
4666 .show
= ipr_show_raw_mode
,
4667 .store
= ipr_store_raw_mode
4670 static struct device_attribute
*ipr_dev_attrs
[] = {
4671 &ipr_adapter_handle_attr
,
4672 &ipr_resource_path_attr
,
4673 &ipr_device_id_attr
,
4674 &ipr_resource_type_attr
,
4680 * ipr_biosparam - Return the HSC mapping
4681 * @sdev: scsi device struct
4682 * @block_device: block device pointer
4683 * @capacity: capacity of the device
4684 * @parm: Array containing returned HSC values.
4686 * This function generates the HSC parms that fdisk uses.
4687 * We want to make sure we return something that places partitions
4688 * on 4k boundaries for best performance with the IOA.
4693 static int ipr_biosparam(struct scsi_device
*sdev
,
4694 struct block_device
*block_device
,
4695 sector_t capacity
, int *parm
)
4703 cylinders
= capacity
;
4704 sector_div(cylinders
, (128 * 32));
4709 parm
[2] = cylinders
;
4715 * ipr_find_starget - Find target based on bus/target.
4716 * @starget: scsi target struct
4719 * resource entry pointer if found / NULL if not found
4721 static struct ipr_resource_entry
*ipr_find_starget(struct scsi_target
*starget
)
4723 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
4724 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) shost
->hostdata
;
4725 struct ipr_resource_entry
*res
;
4727 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
4728 if ((res
->bus
== starget
->channel
) &&
4729 (res
->target
== starget
->id
)) {
4737 static struct ata_port_info sata_port_info
;
4740 * ipr_target_alloc - Prepare for commands to a SCSI target
4741 * @starget: scsi target struct
4743 * If the device is a SATA device, this function allocates an
4744 * ATA port with libata, else it does nothing.
4747 * 0 on success / non-0 on failure
4749 static int ipr_target_alloc(struct scsi_target
*starget
)
4751 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
4752 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) shost
->hostdata
;
4753 struct ipr_sata_port
*sata_port
;
4754 struct ata_port
*ap
;
4755 struct ipr_resource_entry
*res
;
4756 unsigned long lock_flags
;
4758 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4759 res
= ipr_find_starget(starget
);
4760 starget
->hostdata
= NULL
;
4762 if (res
&& ipr_is_gata(res
)) {
4763 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4764 sata_port
= kzalloc(sizeof(*sata_port
), GFP_KERNEL
);
4768 ap
= ata_sas_port_alloc(&ioa_cfg
->ata_host
, &sata_port_info
, shost
);
4770 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4771 sata_port
->ioa_cfg
= ioa_cfg
;
4773 sata_port
->res
= res
;
4775 res
->sata_port
= sata_port
;
4776 ap
->private_data
= sata_port
;
4777 starget
->hostdata
= sata_port
;
4783 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4789 * ipr_target_destroy - Destroy a SCSI target
4790 * @starget: scsi target struct
4792 * If the device was a SATA device, this function frees the libata
4793 * ATA port, else it does nothing.
4796 static void ipr_target_destroy(struct scsi_target
*starget
)
4798 struct ipr_sata_port
*sata_port
= starget
->hostdata
;
4799 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
4800 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) shost
->hostdata
;
4802 if (ioa_cfg
->sis64
) {
4803 if (!ipr_find_starget(starget
)) {
4804 if (starget
->channel
== IPR_ARRAY_VIRTUAL_BUS
)
4805 clear_bit(starget
->id
, ioa_cfg
->array_ids
);
4806 else if (starget
->channel
== IPR_VSET_VIRTUAL_BUS
)
4807 clear_bit(starget
->id
, ioa_cfg
->vset_ids
);
4808 else if (starget
->channel
== 0)
4809 clear_bit(starget
->id
, ioa_cfg
->target_ids
);
4814 starget
->hostdata
= NULL
;
4815 ata_sas_port_destroy(sata_port
->ap
);
4821 * ipr_find_sdev - Find device based on bus/target/lun.
4822 * @sdev: scsi device struct
4825 * resource entry pointer if found / NULL if not found
4827 static struct ipr_resource_entry
*ipr_find_sdev(struct scsi_device
*sdev
)
4829 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) sdev
->host
->hostdata
;
4830 struct ipr_resource_entry
*res
;
4832 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
4833 if ((res
->bus
== sdev
->channel
) &&
4834 (res
->target
== sdev
->id
) &&
4835 (res
->lun
== sdev
->lun
))
4843 * ipr_slave_destroy - Unconfigure a SCSI device
4844 * @sdev: scsi device struct
4849 static void ipr_slave_destroy(struct scsi_device
*sdev
)
4851 struct ipr_resource_entry
*res
;
4852 struct ipr_ioa_cfg
*ioa_cfg
;
4853 unsigned long lock_flags
= 0;
4855 ioa_cfg
= (struct ipr_ioa_cfg
*) sdev
->host
->hostdata
;
4857 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4858 res
= (struct ipr_resource_entry
*) sdev
->hostdata
;
4861 res
->sata_port
->ap
->link
.device
[0].class = ATA_DEV_NONE
;
4862 sdev
->hostdata
= NULL
;
4864 res
->sata_port
= NULL
;
4866 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4870 * ipr_slave_configure - Configure a SCSI device
4871 * @sdev: scsi device struct
4873 * This function configures the specified scsi device.
4878 static int ipr_slave_configure(struct scsi_device
*sdev
)
4880 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) sdev
->host
->hostdata
;
4881 struct ipr_resource_entry
*res
;
4882 struct ata_port
*ap
= NULL
;
4883 unsigned long lock_flags
= 0;
4884 char buffer
[IPR_MAX_RES_PATH_LENGTH
];
4886 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4887 res
= sdev
->hostdata
;
4889 if (ipr_is_af_dasd_device(res
))
4890 sdev
->type
= TYPE_RAID
;
4891 if (ipr_is_af_dasd_device(res
) || ipr_is_ioa_resource(res
)) {
4892 sdev
->scsi_level
= 4;
4893 sdev
->no_uld_attach
= 1;
4895 if (ipr_is_vset_device(res
)) {
4896 sdev
->scsi_level
= SCSI_SPC_3
;
4897 blk_queue_rq_timeout(sdev
->request_queue
,
4898 IPR_VSET_RW_TIMEOUT
);
4899 blk_queue_max_hw_sectors(sdev
->request_queue
, IPR_VSET_MAX_SECTORS
);
4901 if (ipr_is_gata(res
) && res
->sata_port
)
4902 ap
= res
->sata_port
->ap
;
4903 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4906 scsi_change_queue_depth(sdev
, IPR_MAX_CMD_PER_ATA_LUN
);
4907 ata_sas_slave_configure(sdev
, ap
);
4911 sdev_printk(KERN_INFO
, sdev
, "Resource path: %s\n",
4912 ipr_format_res_path(ioa_cfg
,
4913 res
->res_path
, buffer
, sizeof(buffer
)));
4916 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4921 * ipr_ata_slave_alloc - Prepare for commands to a SATA device
4922 * @sdev: scsi device struct
4924 * This function initializes an ATA port so that future commands
4925 * sent through queuecommand will work.
4930 static int ipr_ata_slave_alloc(struct scsi_device
*sdev
)
4932 struct ipr_sata_port
*sata_port
= NULL
;
4936 if (sdev
->sdev_target
)
4937 sata_port
= sdev
->sdev_target
->hostdata
;
4939 rc
= ata_sas_port_init(sata_port
->ap
);
4941 rc
= ata_sas_sync_probe(sata_port
->ap
);
4945 ipr_slave_destroy(sdev
);
4952 * ipr_slave_alloc - Prepare for commands to a device.
4953 * @sdev: scsi device struct
4955 * This function saves a pointer to the resource entry
4956 * in the scsi device struct if the device exists. We
4957 * can then use this pointer in ipr_queuecommand when
4958 * handling new commands.
4961 * 0 on success / -ENXIO if device does not exist
4963 static int ipr_slave_alloc(struct scsi_device
*sdev
)
4965 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) sdev
->host
->hostdata
;
4966 struct ipr_resource_entry
*res
;
4967 unsigned long lock_flags
;
4970 sdev
->hostdata
= NULL
;
4972 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
4974 res
= ipr_find_sdev(sdev
);
4979 sdev
->hostdata
= res
;
4980 if (!ipr_is_naca_model(res
))
4981 res
->needs_sync_complete
= 1;
4983 if (ipr_is_gata(res
)) {
4984 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4985 return ipr_ata_slave_alloc(sdev
);
4989 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
4995 * ipr_match_lun - Match function for specified LUN
4996 * @ipr_cmd: ipr command struct
4997 * @device: device to match (sdev)
5000 * 1 if command matches sdev / 0 if command does not match sdev
5002 static int ipr_match_lun(struct ipr_cmnd
*ipr_cmd
, void *device
)
5004 if (ipr_cmd
->scsi_cmd
&& ipr_cmd
->scsi_cmd
->device
== device
)
5010 * ipr_wait_for_ops - Wait for matching commands to complete
5011 * @ipr_cmd: ipr command struct
5012 * @device: device to match (sdev)
5013 * @match: match function to use
5018 static int ipr_wait_for_ops(struct ipr_ioa_cfg
*ioa_cfg
, void *device
,
5019 int (*match
)(struct ipr_cmnd
*, void *))
5021 struct ipr_cmnd
*ipr_cmd
;
5023 unsigned long flags
;
5024 struct ipr_hrr_queue
*hrrq
;
5025 signed long timeout
= IPR_ABORT_TASK_TIMEOUT
;
5026 DECLARE_COMPLETION_ONSTACK(comp
);
5032 for_each_hrrq(hrrq
, ioa_cfg
) {
5033 spin_lock_irqsave(hrrq
->lock
, flags
);
5034 list_for_each_entry(ipr_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
5035 if (match(ipr_cmd
, device
)) {
5036 ipr_cmd
->eh_comp
= &comp
;
5040 spin_unlock_irqrestore(hrrq
->lock
, flags
);
5044 timeout
= wait_for_completion_timeout(&comp
, timeout
);
5049 for_each_hrrq(hrrq
, ioa_cfg
) {
5050 spin_lock_irqsave(hrrq
->lock
, flags
);
5051 list_for_each_entry(ipr_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
5052 if (match(ipr_cmd
, device
)) {
5053 ipr_cmd
->eh_comp
= NULL
;
5057 spin_unlock_irqrestore(hrrq
->lock
, flags
);
5061 dev_err(&ioa_cfg
->pdev
->dev
, "Timed out waiting for aborted commands\n");
5063 return wait
? FAILED
: SUCCESS
;
5072 static int ipr_eh_host_reset(struct scsi_cmnd
*cmd
)
5074 struct ipr_ioa_cfg
*ioa_cfg
;
5075 unsigned long lock_flags
= 0;
5079 ioa_cfg
= (struct ipr_ioa_cfg
*) cmd
->device
->host
->hostdata
;
5080 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
5082 if (!ioa_cfg
->in_reset_reload
&& !ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
) {
5083 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_ABBREV
);
5084 dev_err(&ioa_cfg
->pdev
->dev
,
5085 "Adapter being reset as a result of error recovery.\n");
5087 if (WAIT_FOR_DUMP
== ioa_cfg
->sdt_state
)
5088 ioa_cfg
->sdt_state
= GET_DUMP
;
5091 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
5092 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
5093 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
5095 /* If we got hit with a host reset while we were already resetting
5096 the adapter for some reason, and the reset failed. */
5097 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
) {
5102 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
5108 * ipr_device_reset - Reset the device
5109 * @ioa_cfg: ioa config struct
5110 * @res: resource entry struct
5112 * This function issues a device reset to the affected device.
5113 * If the device is a SCSI device, a LUN reset will be sent
5114 * to the device first. If that does not work, a target reset
5115 * will be sent. If the device is a SATA device, a PHY reset will
5119 * 0 on success / non-zero on failure
5121 static int ipr_device_reset(struct ipr_ioa_cfg
*ioa_cfg
,
5122 struct ipr_resource_entry
*res
)
5124 struct ipr_cmnd
*ipr_cmd
;
5125 struct ipr_ioarcb
*ioarcb
;
5126 struct ipr_cmd_pkt
*cmd_pkt
;
5127 struct ipr_ioarcb_ata_regs
*regs
;
5131 ipr_cmd
= ipr_get_free_ipr_cmnd(ioa_cfg
);
5132 ioarcb
= &ipr_cmd
->ioarcb
;
5133 cmd_pkt
= &ioarcb
->cmd_pkt
;
5135 if (ipr_cmd
->ioa_cfg
->sis64
) {
5136 regs
= &ipr_cmd
->i
.ata_ioadl
.regs
;
5137 ioarcb
->add_cmd_parms_offset
= cpu_to_be16(sizeof(*ioarcb
));
5139 regs
= &ioarcb
->u
.add_data
.u
.regs
;
5141 ioarcb
->res_handle
= res
->res_handle
;
5142 cmd_pkt
->request_type
= IPR_RQTYPE_IOACMD
;
5143 cmd_pkt
->cdb
[0] = IPR_RESET_DEVICE
;
5144 if (ipr_is_gata(res
)) {
5145 cmd_pkt
->cdb
[2] = IPR_ATA_PHY_RESET
;
5146 ioarcb
->add_cmd_parms_len
= cpu_to_be16(sizeof(regs
->flags
));
5147 regs
->flags
|= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION
;
5150 ipr_send_blocking_cmd(ipr_cmd
, ipr_timeout
, IPR_DEVICE_RESET_TIMEOUT
);
5151 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
5152 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
5153 if (ipr_is_gata(res
) && res
->sata_port
&& ioasc
!= IPR_IOASC_IOA_WAS_RESET
) {
5154 if (ipr_cmd
->ioa_cfg
->sis64
)
5155 memcpy(&res
->sata_port
->ioasa
, &ipr_cmd
->s
.ioasa64
.u
.gata
,
5156 sizeof(struct ipr_ioasa_gata
));
5158 memcpy(&res
->sata_port
->ioasa
, &ipr_cmd
->s
.ioasa
.u
.gata
,
5159 sizeof(struct ipr_ioasa_gata
));
5163 return IPR_IOASC_SENSE_KEY(ioasc
) ? -EIO
: 0;
5167 * ipr_sata_reset - Reset the SATA port
5168 * @link: SATA link to reset
5169 * @classes: class of the attached device
5171 * This function issues a SATA phy reset to the affected ATA link.
5174 * 0 on success / non-zero on failure
5176 static int ipr_sata_reset(struct ata_link
*link
, unsigned int *classes
,
5177 unsigned long deadline
)
5179 struct ipr_sata_port
*sata_port
= link
->ap
->private_data
;
5180 struct ipr_ioa_cfg
*ioa_cfg
= sata_port
->ioa_cfg
;
5181 struct ipr_resource_entry
*res
;
5182 unsigned long lock_flags
= 0;
5186 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
5187 while (ioa_cfg
->in_reset_reload
) {
5188 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
5189 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
5190 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
5193 res
= sata_port
->res
;
5195 rc
= ipr_device_reset(ioa_cfg
, res
);
5196 *classes
= res
->ata_class
;
5199 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
5205 * ipr_eh_dev_reset - Reset the device
5206 * @scsi_cmd: scsi command struct
5208 * This function issues a device reset to the affected device.
5209 * A LUN reset will be sent to the device first. If that does
5210 * not work, a target reset will be sent.
5215 static int __ipr_eh_dev_reset(struct scsi_cmnd
*scsi_cmd
)
5217 struct ipr_cmnd
*ipr_cmd
;
5218 struct ipr_ioa_cfg
*ioa_cfg
;
5219 struct ipr_resource_entry
*res
;
5220 struct ata_port
*ap
;
5222 struct ipr_hrr_queue
*hrrq
;
5225 ioa_cfg
= (struct ipr_ioa_cfg
*) scsi_cmd
->device
->host
->hostdata
;
5226 res
= scsi_cmd
->device
->hostdata
;
5232 * If we are currently going through reset/reload, return failed. This will force the
5233 * mid-layer to call ipr_eh_host_reset, which will then go to sleep and wait for the
5236 if (ioa_cfg
->in_reset_reload
)
5238 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
)
5241 for_each_hrrq(hrrq
, ioa_cfg
) {
5242 spin_lock(&hrrq
->_lock
);
5243 list_for_each_entry(ipr_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
5244 if (ipr_cmd
->ioarcb
.res_handle
== res
->res_handle
) {
5245 if (ipr_cmd
->scsi_cmd
)
5246 ipr_cmd
->done
= ipr_scsi_eh_done
;
5248 ipr_cmd
->done
= ipr_sata_eh_done
;
5250 !(ipr_cmd
->qc
->flags
& ATA_QCFLAG_FAILED
)) {
5251 ipr_cmd
->qc
->err_mask
|= AC_ERR_TIMEOUT
;
5252 ipr_cmd
->qc
->flags
|= ATA_QCFLAG_FAILED
;
5256 spin_unlock(&hrrq
->_lock
);
5258 res
->resetting_device
= 1;
5259 scmd_printk(KERN_ERR
, scsi_cmd
, "Resetting device\n");
5261 if (ipr_is_gata(res
) && res
->sata_port
) {
5262 ap
= res
->sata_port
->ap
;
5263 spin_unlock_irq(scsi_cmd
->device
->host
->host_lock
);
5264 ata_std_error_handler(ap
);
5265 spin_lock_irq(scsi_cmd
->device
->host
->host_lock
);
5267 for_each_hrrq(hrrq
, ioa_cfg
) {
5268 spin_lock(&hrrq
->_lock
);
5269 list_for_each_entry(ipr_cmd
,
5270 &hrrq
->hrrq_pending_q
, queue
) {
5271 if (ipr_cmd
->ioarcb
.res_handle
==
5277 spin_unlock(&hrrq
->_lock
);
5280 rc
= ipr_device_reset(ioa_cfg
, res
);
5281 res
->resetting_device
= 0;
5282 res
->reset_occurred
= 1;
5285 return rc
? FAILED
: SUCCESS
;
5288 static int ipr_eh_dev_reset(struct scsi_cmnd
*cmd
)
5291 struct ipr_ioa_cfg
*ioa_cfg
;
5293 ioa_cfg
= (struct ipr_ioa_cfg
*) cmd
->device
->host
->hostdata
;
5295 spin_lock_irq(cmd
->device
->host
->host_lock
);
5296 rc
= __ipr_eh_dev_reset(cmd
);
5297 spin_unlock_irq(cmd
->device
->host
->host_lock
);
5300 rc
= ipr_wait_for_ops(ioa_cfg
, cmd
->device
, ipr_match_lun
);
5306 * ipr_bus_reset_done - Op done function for bus reset.
5307 * @ipr_cmd: ipr command struct
5309 * This function is the op done function for a bus reset
5314 static void ipr_bus_reset_done(struct ipr_cmnd
*ipr_cmd
)
5316 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
5317 struct ipr_resource_entry
*res
;
5320 if (!ioa_cfg
->sis64
)
5321 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
5322 if (res
->res_handle
== ipr_cmd
->ioarcb
.res_handle
) {
5323 scsi_report_bus_reset(ioa_cfg
->host
, res
->bus
);
5329 * If abort has not completed, indicate the reset has, else call the
5330 * abort's done function to wake the sleeping eh thread
5332 if (ipr_cmd
->sibling
->sibling
)
5333 ipr_cmd
->sibling
->sibling
= NULL
;
5335 ipr_cmd
->sibling
->done(ipr_cmd
->sibling
);
5337 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
5342 * ipr_abort_timeout - An abort task has timed out
5343 * @ipr_cmd: ipr command struct
5345 * This function handles when an abort task times out. If this
5346 * happens we issue a bus reset since we have resources tied
5347 * up that must be freed before returning to the midlayer.
5352 static void ipr_abort_timeout(struct ipr_cmnd
*ipr_cmd
)
5354 struct ipr_cmnd
*reset_cmd
;
5355 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
5356 struct ipr_cmd_pkt
*cmd_pkt
;
5357 unsigned long lock_flags
= 0;
5360 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
5361 if (ipr_cmd
->completion
.done
|| ioa_cfg
->in_reset_reload
) {
5362 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
5366 sdev_printk(KERN_ERR
, ipr_cmd
->u
.sdev
, "Abort timed out. Resetting bus.\n");
5367 reset_cmd
= ipr_get_free_ipr_cmnd(ioa_cfg
);
5368 ipr_cmd
->sibling
= reset_cmd
;
5369 reset_cmd
->sibling
= ipr_cmd
;
5370 reset_cmd
->ioarcb
.res_handle
= ipr_cmd
->ioarcb
.res_handle
;
5371 cmd_pkt
= &reset_cmd
->ioarcb
.cmd_pkt
;
5372 cmd_pkt
->request_type
= IPR_RQTYPE_IOACMD
;
5373 cmd_pkt
->cdb
[0] = IPR_RESET_DEVICE
;
5374 cmd_pkt
->cdb
[2] = IPR_RESET_TYPE_SELECT
| IPR_BUS_RESET
;
5376 ipr_do_req(reset_cmd
, ipr_bus_reset_done
, ipr_timeout
, IPR_DEVICE_RESET_TIMEOUT
);
5377 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
5382 * ipr_cancel_op - Cancel specified op
5383 * @scsi_cmd: scsi command struct
5385 * This function cancels specified op.
5390 static int ipr_cancel_op(struct scsi_cmnd
*scsi_cmd
)
5392 struct ipr_cmnd
*ipr_cmd
;
5393 struct ipr_ioa_cfg
*ioa_cfg
;
5394 struct ipr_resource_entry
*res
;
5395 struct ipr_cmd_pkt
*cmd_pkt
;
5398 struct ipr_hrr_queue
*hrrq
;
5401 ioa_cfg
= (struct ipr_ioa_cfg
*)scsi_cmd
->device
->host
->hostdata
;
5402 res
= scsi_cmd
->device
->hostdata
;
5404 /* If we are currently going through reset/reload, return failed.
5405 * This will force the mid-layer to call ipr_eh_host_reset,
5406 * which will then go to sleep and wait for the reset to complete
5408 if (ioa_cfg
->in_reset_reload
||
5409 ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
)
5415 * If we are aborting a timed out op, chances are that the timeout was caused
5416 * by a still not detected EEH error. In such cases, reading a register will
5417 * trigger the EEH recovery infrastructure.
5419 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
5421 if (!ipr_is_gscsi(res
))
5424 for_each_hrrq(hrrq
, ioa_cfg
) {
5425 spin_lock(&hrrq
->_lock
);
5426 list_for_each_entry(ipr_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
5427 if (ipr_cmd
->scsi_cmd
== scsi_cmd
) {
5428 ipr_cmd
->done
= ipr_scsi_eh_done
;
5433 spin_unlock(&hrrq
->_lock
);
5439 ipr_cmd
= ipr_get_free_ipr_cmnd(ioa_cfg
);
5440 ipr_cmd
->ioarcb
.res_handle
= res
->res_handle
;
5441 cmd_pkt
= &ipr_cmd
->ioarcb
.cmd_pkt
;
5442 cmd_pkt
->request_type
= IPR_RQTYPE_IOACMD
;
5443 cmd_pkt
->cdb
[0] = IPR_CANCEL_ALL_REQUESTS
;
5444 ipr_cmd
->u
.sdev
= scsi_cmd
->device
;
5446 scmd_printk(KERN_ERR
, scsi_cmd
, "Aborting command: %02X\n",
5448 ipr_send_blocking_cmd(ipr_cmd
, ipr_abort_timeout
, IPR_CANCEL_ALL_TIMEOUT
);
5449 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
5452 * If the abort task timed out and we sent a bus reset, we will get
5453 * one the following responses to the abort
5455 if (ioasc
== IPR_IOASC_BUS_WAS_RESET
|| ioasc
== IPR_IOASC_SYNC_REQUIRED
) {
5460 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
5461 if (!ipr_is_naca_model(res
))
5462 res
->needs_sync_complete
= 1;
5465 return IPR_IOASC_SENSE_KEY(ioasc
) ? FAILED
: SUCCESS
;
5469 * ipr_eh_abort - Abort a single op
5470 * @scsi_cmd: scsi command struct
5473 * 0 if scan in progress / 1 if scan is complete
5475 static int ipr_scan_finished(struct Scsi_Host
*shost
, unsigned long elapsed_time
)
5477 unsigned long lock_flags
;
5478 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*) shost
->hostdata
;
5481 spin_lock_irqsave(shost
->host_lock
, lock_flags
);
5482 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
|| ioa_cfg
->scan_done
)
5484 if ((elapsed_time
/HZ
) > (ioa_cfg
->transop_timeout
* 2))
5486 spin_unlock_irqrestore(shost
->host_lock
, lock_flags
);
5491 * ipr_eh_host_reset - Reset the host adapter
5492 * @scsi_cmd: scsi command struct
5497 static int ipr_eh_abort(struct scsi_cmnd
*scsi_cmd
)
5499 unsigned long flags
;
5501 struct ipr_ioa_cfg
*ioa_cfg
;
5505 ioa_cfg
= (struct ipr_ioa_cfg
*) scsi_cmd
->device
->host
->hostdata
;
5507 spin_lock_irqsave(scsi_cmd
->device
->host
->host_lock
, flags
);
5508 rc
= ipr_cancel_op(scsi_cmd
);
5509 spin_unlock_irqrestore(scsi_cmd
->device
->host
->host_lock
, flags
);
5512 rc
= ipr_wait_for_ops(ioa_cfg
, scsi_cmd
->device
, ipr_match_lun
);
5518 * ipr_handle_other_interrupt - Handle "other" interrupts
5519 * @ioa_cfg: ioa config struct
5520 * @int_reg: interrupt register
5523 * IRQ_NONE / IRQ_HANDLED
5525 static irqreturn_t
ipr_handle_other_interrupt(struct ipr_ioa_cfg
*ioa_cfg
,
5528 irqreturn_t rc
= IRQ_HANDLED
;
5531 int_mask_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg32
);
5532 int_reg
&= ~int_mask_reg
;
5534 /* If an interrupt on the adapter did not occur, ignore it.
5535 * Or in the case of SIS 64, check for a stage change interrupt.
5537 if ((int_reg
& IPR_PCII_OPER_INTERRUPTS
) == 0) {
5538 if (ioa_cfg
->sis64
) {
5539 int_mask_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg
);
5540 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
) & ~int_mask_reg
;
5541 if (int_reg
& IPR_PCII_IPL_STAGE_CHANGE
) {
5543 /* clear stage change */
5544 writel(IPR_PCII_IPL_STAGE_CHANGE
, ioa_cfg
->regs
.clr_interrupt_reg
);
5545 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
) & ~int_mask_reg
;
5546 list_del(&ioa_cfg
->reset_cmd
->queue
);
5547 del_timer(&ioa_cfg
->reset_cmd
->timer
);
5548 ipr_reset_ioa_job(ioa_cfg
->reset_cmd
);
5556 if (int_reg
& IPR_PCII_IOA_TRANS_TO_OPER
) {
5557 /* Mask the interrupt */
5558 writel(IPR_PCII_IOA_TRANS_TO_OPER
, ioa_cfg
->regs
.set_interrupt_mask_reg
);
5559 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
5561 list_del(&ioa_cfg
->reset_cmd
->queue
);
5562 del_timer(&ioa_cfg
->reset_cmd
->timer
);
5563 ipr_reset_ioa_job(ioa_cfg
->reset_cmd
);
5564 } else if ((int_reg
& IPR_PCII_HRRQ_UPDATED
) == int_reg
) {
5565 if (ioa_cfg
->clear_isr
) {
5566 if (ipr_debug
&& printk_ratelimit())
5567 dev_err(&ioa_cfg
->pdev
->dev
,
5568 "Spurious interrupt detected. 0x%08X\n", int_reg
);
5569 writel(IPR_PCII_HRRQ_UPDATED
, ioa_cfg
->regs
.clr_interrupt_reg32
);
5570 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg32
);
5574 if (int_reg
& IPR_PCII_IOA_UNIT_CHECKED
)
5575 ioa_cfg
->ioa_unit_checked
= 1;
5576 else if (int_reg
& IPR_PCII_NO_HOST_RRQ
)
5577 dev_err(&ioa_cfg
->pdev
->dev
,
5578 "No Host RRQ. 0x%08X\n", int_reg
);
5580 dev_err(&ioa_cfg
->pdev
->dev
,
5581 "Permanent IOA failure. 0x%08X\n", int_reg
);
5583 if (WAIT_FOR_DUMP
== ioa_cfg
->sdt_state
)
5584 ioa_cfg
->sdt_state
= GET_DUMP
;
5586 ipr_mask_and_clear_interrupts(ioa_cfg
, ~0);
5587 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
5594 * ipr_isr_eh - Interrupt service routine error handler
5595 * @ioa_cfg: ioa config struct
5596 * @msg: message to log
5601 static void ipr_isr_eh(struct ipr_ioa_cfg
*ioa_cfg
, char *msg
, u16 number
)
5603 ioa_cfg
->errors_logged
++;
5604 dev_err(&ioa_cfg
->pdev
->dev
, "%s %d\n", msg
, number
);
5606 if (WAIT_FOR_DUMP
== ioa_cfg
->sdt_state
)
5607 ioa_cfg
->sdt_state
= GET_DUMP
;
5609 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
5612 static int ipr_process_hrrq(struct ipr_hrr_queue
*hrr_queue
, int budget
,
5613 struct list_head
*doneq
)
5617 struct ipr_cmnd
*ipr_cmd
;
5618 struct ipr_ioa_cfg
*ioa_cfg
= hrr_queue
->ioa_cfg
;
5621 /* If interrupts are disabled, ignore the interrupt */
5622 if (!hrr_queue
->allow_interrupts
)
5625 while ((be32_to_cpu(*hrr_queue
->hrrq_curr
) & IPR_HRRQ_TOGGLE_BIT
) ==
5626 hrr_queue
->toggle_bit
) {
5628 cmd_index
= (be32_to_cpu(*hrr_queue
->hrrq_curr
) &
5629 IPR_HRRQ_REQ_RESP_HANDLE_MASK
) >>
5630 IPR_HRRQ_REQ_RESP_HANDLE_SHIFT
;
5632 if (unlikely(cmd_index
> hrr_queue
->max_cmd_id
||
5633 cmd_index
< hrr_queue
->min_cmd_id
)) {
5635 "Invalid response handle from IOA: ",
5640 ipr_cmd
= ioa_cfg
->ipr_cmnd_list
[cmd_index
];
5641 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
5643 ipr_trc_hook(ipr_cmd
, IPR_TRACE_FINISH
, ioasc
);
5645 list_move_tail(&ipr_cmd
->queue
, doneq
);
5647 if (hrr_queue
->hrrq_curr
< hrr_queue
->hrrq_end
) {
5648 hrr_queue
->hrrq_curr
++;
5650 hrr_queue
->hrrq_curr
= hrr_queue
->hrrq_start
;
5651 hrr_queue
->toggle_bit
^= 1u;
5654 if (budget
> 0 && num_hrrq
>= budget
)
5661 static int ipr_iopoll(struct irq_poll
*iop
, int budget
)
5663 struct ipr_ioa_cfg
*ioa_cfg
;
5664 struct ipr_hrr_queue
*hrrq
;
5665 struct ipr_cmnd
*ipr_cmd
, *temp
;
5666 unsigned long hrrq_flags
;
5670 hrrq
= container_of(iop
, struct ipr_hrr_queue
, iopoll
);
5671 ioa_cfg
= hrrq
->ioa_cfg
;
5673 spin_lock_irqsave(hrrq
->lock
, hrrq_flags
);
5674 completed_ops
= ipr_process_hrrq(hrrq
, budget
, &doneq
);
5676 if (completed_ops
< budget
)
5677 irq_poll_complete(iop
);
5678 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
5680 list_for_each_entry_safe(ipr_cmd
, temp
, &doneq
, queue
) {
5681 list_del(&ipr_cmd
->queue
);
5682 del_timer(&ipr_cmd
->timer
);
5683 ipr_cmd
->fast_done(ipr_cmd
);
5686 return completed_ops
;
5690 * ipr_isr - Interrupt service routine
5692 * @devp: pointer to ioa config struct
5695 * IRQ_NONE / IRQ_HANDLED
5697 static irqreturn_t
ipr_isr(int irq
, void *devp
)
5699 struct ipr_hrr_queue
*hrrq
= (struct ipr_hrr_queue
*)devp
;
5700 struct ipr_ioa_cfg
*ioa_cfg
= hrrq
->ioa_cfg
;
5701 unsigned long hrrq_flags
= 0;
5705 struct ipr_cmnd
*ipr_cmd
, *temp
;
5706 irqreturn_t rc
= IRQ_NONE
;
5709 spin_lock_irqsave(hrrq
->lock
, hrrq_flags
);
5710 /* If interrupts are disabled, ignore the interrupt */
5711 if (!hrrq
->allow_interrupts
) {
5712 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
5717 if (ipr_process_hrrq(hrrq
, -1, &doneq
)) {
5720 if (!ioa_cfg
->clear_isr
)
5723 /* Clear the PCI interrupt */
5726 writel(IPR_PCII_HRRQ_UPDATED
,
5727 ioa_cfg
->regs
.clr_interrupt_reg32
);
5728 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg32
);
5729 } while (int_reg
& IPR_PCII_HRRQ_UPDATED
&&
5730 num_hrrq
++ < IPR_MAX_HRRQ_RETRIES
);
5732 } else if (rc
== IRQ_NONE
&& irq_none
== 0) {
5733 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg32
);
5735 } else if (num_hrrq
== IPR_MAX_HRRQ_RETRIES
&&
5736 int_reg
& IPR_PCII_HRRQ_UPDATED
) {
5738 "Error clearing HRRQ: ", num_hrrq
);
5745 if (unlikely(rc
== IRQ_NONE
))
5746 rc
= ipr_handle_other_interrupt(ioa_cfg
, int_reg
);
5748 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
5749 list_for_each_entry_safe(ipr_cmd
, temp
, &doneq
, queue
) {
5750 list_del(&ipr_cmd
->queue
);
5751 del_timer(&ipr_cmd
->timer
);
5752 ipr_cmd
->fast_done(ipr_cmd
);
5758 * ipr_isr_mhrrq - Interrupt service routine
5760 * @devp: pointer to ioa config struct
5763 * IRQ_NONE / IRQ_HANDLED
5765 static irqreturn_t
ipr_isr_mhrrq(int irq
, void *devp
)
5767 struct ipr_hrr_queue
*hrrq
= (struct ipr_hrr_queue
*)devp
;
5768 struct ipr_ioa_cfg
*ioa_cfg
= hrrq
->ioa_cfg
;
5769 unsigned long hrrq_flags
= 0;
5770 struct ipr_cmnd
*ipr_cmd
, *temp
;
5771 irqreturn_t rc
= IRQ_NONE
;
5774 spin_lock_irqsave(hrrq
->lock
, hrrq_flags
);
5776 /* If interrupts are disabled, ignore the interrupt */
5777 if (!hrrq
->allow_interrupts
) {
5778 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
5782 if (ioa_cfg
->iopoll_weight
&& ioa_cfg
->sis64
&& ioa_cfg
->nvectors
> 1) {
5783 if ((be32_to_cpu(*hrrq
->hrrq_curr
) & IPR_HRRQ_TOGGLE_BIT
) ==
5785 irq_poll_sched(&hrrq
->iopoll
);
5786 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
5790 if ((be32_to_cpu(*hrrq
->hrrq_curr
) & IPR_HRRQ_TOGGLE_BIT
) ==
5793 if (ipr_process_hrrq(hrrq
, -1, &doneq
))
5797 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
5799 list_for_each_entry_safe(ipr_cmd
, temp
, &doneq
, queue
) {
5800 list_del(&ipr_cmd
->queue
);
5801 del_timer(&ipr_cmd
->timer
);
5802 ipr_cmd
->fast_done(ipr_cmd
);
5808 * ipr_build_ioadl64 - Build a scatter/gather list and map the buffer
5809 * @ioa_cfg: ioa config struct
5810 * @ipr_cmd: ipr command struct
5813 * 0 on success / -1 on failure
5815 static int ipr_build_ioadl64(struct ipr_ioa_cfg
*ioa_cfg
,
5816 struct ipr_cmnd
*ipr_cmd
)
5819 struct scatterlist
*sg
;
5821 u32 ioadl_flags
= 0;
5822 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
5823 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
5824 struct ipr_ioadl64_desc
*ioadl64
= ipr_cmd
->i
.ioadl64
;
5826 length
= scsi_bufflen(scsi_cmd
);
5830 nseg
= scsi_dma_map(scsi_cmd
);
5832 if (printk_ratelimit())
5833 dev_err(&ioa_cfg
->pdev
->dev
, "scsi_dma_map failed!\n");
5837 ipr_cmd
->dma_use_sg
= nseg
;
5839 ioarcb
->data_transfer_length
= cpu_to_be32(length
);
5841 cpu_to_be32(sizeof(struct ipr_ioadl64_desc
) * ipr_cmd
->dma_use_sg
);
5843 if (scsi_cmd
->sc_data_direction
== DMA_TO_DEVICE
) {
5844 ioadl_flags
= IPR_IOADL_FLAGS_WRITE
;
5845 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
5846 } else if (scsi_cmd
->sc_data_direction
== DMA_FROM_DEVICE
)
5847 ioadl_flags
= IPR_IOADL_FLAGS_READ
;
5849 scsi_for_each_sg(scsi_cmd
, sg
, ipr_cmd
->dma_use_sg
, i
) {
5850 ioadl64
[i
].flags
= cpu_to_be32(ioadl_flags
);
5851 ioadl64
[i
].data_len
= cpu_to_be32(sg_dma_len(sg
));
5852 ioadl64
[i
].address
= cpu_to_be64(sg_dma_address(sg
));
5855 ioadl64
[i
-1].flags
|= cpu_to_be32(IPR_IOADL_FLAGS_LAST
);
5860 * ipr_build_ioadl - Build a scatter/gather list and map the buffer
5861 * @ioa_cfg: ioa config struct
5862 * @ipr_cmd: ipr command struct
5865 * 0 on success / -1 on failure
5867 static int ipr_build_ioadl(struct ipr_ioa_cfg
*ioa_cfg
,
5868 struct ipr_cmnd
*ipr_cmd
)
5871 struct scatterlist
*sg
;
5873 u32 ioadl_flags
= 0;
5874 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
5875 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
5876 struct ipr_ioadl_desc
*ioadl
= ipr_cmd
->i
.ioadl
;
5878 length
= scsi_bufflen(scsi_cmd
);
5882 nseg
= scsi_dma_map(scsi_cmd
);
5884 dev_err(&ioa_cfg
->pdev
->dev
, "scsi_dma_map failed!\n");
5888 ipr_cmd
->dma_use_sg
= nseg
;
5890 if (scsi_cmd
->sc_data_direction
== DMA_TO_DEVICE
) {
5891 ioadl_flags
= IPR_IOADL_FLAGS_WRITE
;
5892 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
5893 ioarcb
->data_transfer_length
= cpu_to_be32(length
);
5895 cpu_to_be32(sizeof(struct ipr_ioadl_desc
) * ipr_cmd
->dma_use_sg
);
5896 } else if (scsi_cmd
->sc_data_direction
== DMA_FROM_DEVICE
) {
5897 ioadl_flags
= IPR_IOADL_FLAGS_READ
;
5898 ioarcb
->read_data_transfer_length
= cpu_to_be32(length
);
5899 ioarcb
->read_ioadl_len
=
5900 cpu_to_be32(sizeof(struct ipr_ioadl_desc
) * ipr_cmd
->dma_use_sg
);
5903 if (ipr_cmd
->dma_use_sg
<= ARRAY_SIZE(ioarcb
->u
.add_data
.u
.ioadl
)) {
5904 ioadl
= ioarcb
->u
.add_data
.u
.ioadl
;
5905 ioarcb
->write_ioadl_addr
= cpu_to_be32((ipr_cmd
->dma_addr
) +
5906 offsetof(struct ipr_ioarcb
, u
.add_data
));
5907 ioarcb
->read_ioadl_addr
= ioarcb
->write_ioadl_addr
;
5910 scsi_for_each_sg(scsi_cmd
, sg
, ipr_cmd
->dma_use_sg
, i
) {
5911 ioadl
[i
].flags_and_data_len
=
5912 cpu_to_be32(ioadl_flags
| sg_dma_len(sg
));
5913 ioadl
[i
].address
= cpu_to_be32(sg_dma_address(sg
));
5916 ioadl
[i
-1].flags_and_data_len
|= cpu_to_be32(IPR_IOADL_FLAGS_LAST
);
5921 * ipr_erp_done - Process completion of ERP for a device
5922 * @ipr_cmd: ipr command struct
5924 * This function copies the sense buffer into the scsi_cmd
5925 * struct and pushes the scsi_done function.
5930 static void ipr_erp_done(struct ipr_cmnd
*ipr_cmd
)
5932 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
5933 struct ipr_resource_entry
*res
= scsi_cmd
->device
->hostdata
;
5934 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
5936 if (IPR_IOASC_SENSE_KEY(ioasc
) > 0) {
5937 scsi_cmd
->result
|= (DID_ERROR
<< 16);
5938 scmd_printk(KERN_ERR
, scsi_cmd
,
5939 "Request Sense failed with IOASC: 0x%08X\n", ioasc
);
5941 memcpy(scsi_cmd
->sense_buffer
, ipr_cmd
->sense_buffer
,
5942 SCSI_SENSE_BUFFERSIZE
);
5946 if (!ipr_is_naca_model(res
))
5947 res
->needs_sync_complete
= 1;
5950 scsi_dma_unmap(ipr_cmd
->scsi_cmd
);
5951 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
5952 scsi_cmd
->scsi_done(scsi_cmd
);
5956 * ipr_reinit_ipr_cmnd_for_erp - Re-initialize a cmnd block to be used for ERP
5957 * @ipr_cmd: ipr command struct
5962 static void ipr_reinit_ipr_cmnd_for_erp(struct ipr_cmnd
*ipr_cmd
)
5964 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
5965 struct ipr_ioasa
*ioasa
= &ipr_cmd
->s
.ioasa
;
5966 dma_addr_t dma_addr
= ipr_cmd
->dma_addr
;
5968 memset(&ioarcb
->cmd_pkt
, 0, sizeof(struct ipr_cmd_pkt
));
5969 ioarcb
->data_transfer_length
= 0;
5970 ioarcb
->read_data_transfer_length
= 0;
5971 ioarcb
->ioadl_len
= 0;
5972 ioarcb
->read_ioadl_len
= 0;
5973 ioasa
->hdr
.ioasc
= 0;
5974 ioasa
->hdr
.residual_data_len
= 0;
5976 if (ipr_cmd
->ioa_cfg
->sis64
)
5977 ioarcb
->u
.sis64_addr_data
.data_ioadl_addr
=
5978 cpu_to_be64(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ioadl64
));
5980 ioarcb
->write_ioadl_addr
=
5981 cpu_to_be32(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ioadl
));
5982 ioarcb
->read_ioadl_addr
= ioarcb
->write_ioadl_addr
;
5987 * ipr_erp_request_sense - Send request sense to a device
5988 * @ipr_cmd: ipr command struct
5990 * This function sends a request sense to a device as a result
5991 * of a check condition.
5996 static void ipr_erp_request_sense(struct ipr_cmnd
*ipr_cmd
)
5998 struct ipr_cmd_pkt
*cmd_pkt
= &ipr_cmd
->ioarcb
.cmd_pkt
;
5999 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
6001 if (IPR_IOASC_SENSE_KEY(ioasc
) > 0) {
6002 ipr_erp_done(ipr_cmd
);
6006 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd
);
6008 cmd_pkt
->request_type
= IPR_RQTYPE_SCSICDB
;
6009 cmd_pkt
->cdb
[0] = REQUEST_SENSE
;
6010 cmd_pkt
->cdb
[4] = SCSI_SENSE_BUFFERSIZE
;
6011 cmd_pkt
->flags_hi
|= IPR_FLAGS_HI_SYNC_OVERRIDE
;
6012 cmd_pkt
->flags_hi
|= IPR_FLAGS_HI_NO_ULEN_CHK
;
6013 cmd_pkt
->timeout
= cpu_to_be16(IPR_REQUEST_SENSE_TIMEOUT
/ HZ
);
6015 ipr_init_ioadl(ipr_cmd
, ipr_cmd
->sense_buffer_dma
,
6016 SCSI_SENSE_BUFFERSIZE
, IPR_IOADL_FLAGS_READ_LAST
);
6018 ipr_do_req(ipr_cmd
, ipr_erp_done
, ipr_timeout
,
6019 IPR_REQUEST_SENSE_TIMEOUT
* 2);
6023 * ipr_erp_cancel_all - Send cancel all to a device
6024 * @ipr_cmd: ipr command struct
6026 * This function sends a cancel all to a device to clear the
6027 * queue. If we are running TCQ on the device, QERR is set to 1,
6028 * which means all outstanding ops have been dropped on the floor.
6029 * Cancel all will return them to us.
6034 static void ipr_erp_cancel_all(struct ipr_cmnd
*ipr_cmd
)
6036 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
6037 struct ipr_resource_entry
*res
= scsi_cmd
->device
->hostdata
;
6038 struct ipr_cmd_pkt
*cmd_pkt
;
6042 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd
);
6044 if (!scsi_cmd
->device
->simple_tags
) {
6045 ipr_erp_request_sense(ipr_cmd
);
6049 cmd_pkt
= &ipr_cmd
->ioarcb
.cmd_pkt
;
6050 cmd_pkt
->request_type
= IPR_RQTYPE_IOACMD
;
6051 cmd_pkt
->cdb
[0] = IPR_CANCEL_ALL_REQUESTS
;
6053 ipr_do_req(ipr_cmd
, ipr_erp_request_sense
, ipr_timeout
,
6054 IPR_CANCEL_ALL_TIMEOUT
);
6058 * ipr_dump_ioasa - Dump contents of IOASA
6059 * @ioa_cfg: ioa config struct
6060 * @ipr_cmd: ipr command struct
6061 * @res: resource entry struct
6063 * This function is invoked by the interrupt handler when ops
6064 * fail. It will log the IOASA if appropriate. Only called
6070 static void ipr_dump_ioasa(struct ipr_ioa_cfg
*ioa_cfg
,
6071 struct ipr_cmnd
*ipr_cmd
, struct ipr_resource_entry
*res
)
6075 u32 ioasc
, fd_ioasc
;
6076 struct ipr_ioasa
*ioasa
= &ipr_cmd
->s
.ioasa
;
6077 __be32
*ioasa_data
= (__be32
*)ioasa
;
6080 ioasc
= be32_to_cpu(ioasa
->hdr
.ioasc
) & IPR_IOASC_IOASC_MASK
;
6081 fd_ioasc
= be32_to_cpu(ioasa
->hdr
.fd_ioasc
) & IPR_IOASC_IOASC_MASK
;
6086 if (ioa_cfg
->log_level
< IPR_DEFAULT_LOG_LEVEL
)
6089 if (ioasc
== IPR_IOASC_BUS_WAS_RESET
&& fd_ioasc
)
6090 error_index
= ipr_get_error(fd_ioasc
);
6092 error_index
= ipr_get_error(ioasc
);
6094 if (ioa_cfg
->log_level
< IPR_MAX_LOG_LEVEL
) {
6095 /* Don't log an error if the IOA already logged one */
6096 if (ioasa
->hdr
.ilid
!= 0)
6099 if (!ipr_is_gscsi(res
))
6102 if (ipr_error_table
[error_index
].log_ioasa
== 0)
6106 ipr_res_err(ioa_cfg
, res
, "%s\n", ipr_error_table
[error_index
].error
);
6108 data_len
= be16_to_cpu(ioasa
->hdr
.ret_stat_len
);
6109 if (ioa_cfg
->sis64
&& sizeof(struct ipr_ioasa64
) < data_len
)
6110 data_len
= sizeof(struct ipr_ioasa64
);
6111 else if (!ioa_cfg
->sis64
&& sizeof(struct ipr_ioasa
) < data_len
)
6112 data_len
= sizeof(struct ipr_ioasa
);
6114 ipr_err("IOASA Dump:\n");
6116 for (i
= 0; i
< data_len
/ 4; i
+= 4) {
6117 ipr_err("%08X: %08X %08X %08X %08X\n", i
*4,
6118 be32_to_cpu(ioasa_data
[i
]),
6119 be32_to_cpu(ioasa_data
[i
+1]),
6120 be32_to_cpu(ioasa_data
[i
+2]),
6121 be32_to_cpu(ioasa_data
[i
+3]));
6126 * ipr_gen_sense - Generate SCSI sense data from an IOASA
6128 * @sense_buf: sense data buffer
6133 static void ipr_gen_sense(struct ipr_cmnd
*ipr_cmd
)
6136 u8
*sense_buf
= ipr_cmd
->scsi_cmd
->sense_buffer
;
6137 struct ipr_resource_entry
*res
= ipr_cmd
->scsi_cmd
->device
->hostdata
;
6138 struct ipr_ioasa
*ioasa
= &ipr_cmd
->s
.ioasa
;
6139 u32 ioasc
= be32_to_cpu(ioasa
->hdr
.ioasc
);
6141 memset(sense_buf
, 0, SCSI_SENSE_BUFFERSIZE
);
6143 if (ioasc
>= IPR_FIRST_DRIVER_IOASC
)
6146 ipr_cmd
->scsi_cmd
->result
= SAM_STAT_CHECK_CONDITION
;
6148 if (ipr_is_vset_device(res
) &&
6149 ioasc
== IPR_IOASC_MED_DO_NOT_REALLOC
&&
6150 ioasa
->u
.vset
.failing_lba_hi
!= 0) {
6151 sense_buf
[0] = 0x72;
6152 sense_buf
[1] = IPR_IOASC_SENSE_KEY(ioasc
);
6153 sense_buf
[2] = IPR_IOASC_SENSE_CODE(ioasc
);
6154 sense_buf
[3] = IPR_IOASC_SENSE_QUAL(ioasc
);
6158 sense_buf
[9] = 0x0A;
6159 sense_buf
[10] = 0x80;
6161 failing_lba
= be32_to_cpu(ioasa
->u
.vset
.failing_lba_hi
);
6163 sense_buf
[12] = (failing_lba
& 0xff000000) >> 24;
6164 sense_buf
[13] = (failing_lba
& 0x00ff0000) >> 16;
6165 sense_buf
[14] = (failing_lba
& 0x0000ff00) >> 8;
6166 sense_buf
[15] = failing_lba
& 0x000000ff;
6168 failing_lba
= be32_to_cpu(ioasa
->u
.vset
.failing_lba_lo
);
6170 sense_buf
[16] = (failing_lba
& 0xff000000) >> 24;
6171 sense_buf
[17] = (failing_lba
& 0x00ff0000) >> 16;
6172 sense_buf
[18] = (failing_lba
& 0x0000ff00) >> 8;
6173 sense_buf
[19] = failing_lba
& 0x000000ff;
6175 sense_buf
[0] = 0x70;
6176 sense_buf
[2] = IPR_IOASC_SENSE_KEY(ioasc
);
6177 sense_buf
[12] = IPR_IOASC_SENSE_CODE(ioasc
);
6178 sense_buf
[13] = IPR_IOASC_SENSE_QUAL(ioasc
);
6180 /* Illegal request */
6181 if ((IPR_IOASC_SENSE_KEY(ioasc
) == 0x05) &&
6182 (be32_to_cpu(ioasa
->hdr
.ioasc_specific
) & IPR_FIELD_POINTER_VALID
)) {
6183 sense_buf
[7] = 10; /* additional length */
6185 /* IOARCB was in error */
6186 if (IPR_IOASC_SENSE_CODE(ioasc
) == 0x24)
6187 sense_buf
[15] = 0xC0;
6188 else /* Parameter data was invalid */
6189 sense_buf
[15] = 0x80;
6192 ((IPR_FIELD_POINTER_MASK
&
6193 be32_to_cpu(ioasa
->hdr
.ioasc_specific
)) >> 8) & 0xff;
6195 (IPR_FIELD_POINTER_MASK
&
6196 be32_to_cpu(ioasa
->hdr
.ioasc_specific
)) & 0xff;
6198 if (ioasc
== IPR_IOASC_MED_DO_NOT_REALLOC
) {
6199 if (ipr_is_vset_device(res
))
6200 failing_lba
= be32_to_cpu(ioasa
->u
.vset
.failing_lba_lo
);
6202 failing_lba
= be32_to_cpu(ioasa
->u
.dasd
.failing_lba
);
6204 sense_buf
[0] |= 0x80; /* Or in the Valid bit */
6205 sense_buf
[3] = (failing_lba
& 0xff000000) >> 24;
6206 sense_buf
[4] = (failing_lba
& 0x00ff0000) >> 16;
6207 sense_buf
[5] = (failing_lba
& 0x0000ff00) >> 8;
6208 sense_buf
[6] = failing_lba
& 0x000000ff;
6211 sense_buf
[7] = 6; /* additional length */
6217 * ipr_get_autosense - Copy autosense data to sense buffer
6218 * @ipr_cmd: ipr command struct
6220 * This function copies the autosense buffer to the buffer
6221 * in the scsi_cmd, if there is autosense available.
6224 * 1 if autosense was available / 0 if not
6226 static int ipr_get_autosense(struct ipr_cmnd
*ipr_cmd
)
6228 struct ipr_ioasa
*ioasa
= &ipr_cmd
->s
.ioasa
;
6229 struct ipr_ioasa64
*ioasa64
= &ipr_cmd
->s
.ioasa64
;
6231 if ((be32_to_cpu(ioasa
->hdr
.ioasc_specific
) & IPR_AUTOSENSE_VALID
) == 0)
6234 if (ipr_cmd
->ioa_cfg
->sis64
)
6235 memcpy(ipr_cmd
->scsi_cmd
->sense_buffer
, ioasa64
->auto_sense
.data
,
6236 min_t(u16
, be16_to_cpu(ioasa64
->auto_sense
.auto_sense_len
),
6237 SCSI_SENSE_BUFFERSIZE
));
6239 memcpy(ipr_cmd
->scsi_cmd
->sense_buffer
, ioasa
->auto_sense
.data
,
6240 min_t(u16
, be16_to_cpu(ioasa
->auto_sense
.auto_sense_len
),
6241 SCSI_SENSE_BUFFERSIZE
));
6246 * ipr_erp_start - Process an error response for a SCSI op
6247 * @ioa_cfg: ioa config struct
6248 * @ipr_cmd: ipr command struct
6250 * This function determines whether or not to initiate ERP
6251 * on the affected device.
6256 static void ipr_erp_start(struct ipr_ioa_cfg
*ioa_cfg
,
6257 struct ipr_cmnd
*ipr_cmd
)
6259 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
6260 struct ipr_resource_entry
*res
= scsi_cmd
->device
->hostdata
;
6261 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
6262 u32 masked_ioasc
= ioasc
& IPR_IOASC_IOASC_MASK
;
6265 ipr_scsi_eh_done(ipr_cmd
);
6269 if (!ipr_is_gscsi(res
) && masked_ioasc
!= IPR_IOASC_HW_DEV_BUS_STATUS
)
6270 ipr_gen_sense(ipr_cmd
);
6272 ipr_dump_ioasa(ioa_cfg
, ipr_cmd
, res
);
6274 switch (masked_ioasc
) {
6275 case IPR_IOASC_ABORTED_CMD_TERM_BY_HOST
:
6276 if (ipr_is_naca_model(res
))
6277 scsi_cmd
->result
|= (DID_ABORT
<< 16);
6279 scsi_cmd
->result
|= (DID_IMM_RETRY
<< 16);
6281 case IPR_IOASC_IR_RESOURCE_HANDLE
:
6282 case IPR_IOASC_IR_NO_CMDS_TO_2ND_IOA
:
6283 scsi_cmd
->result
|= (DID_NO_CONNECT
<< 16);
6285 case IPR_IOASC_HW_SEL_TIMEOUT
:
6286 scsi_cmd
->result
|= (DID_NO_CONNECT
<< 16);
6287 if (!ipr_is_naca_model(res
))
6288 res
->needs_sync_complete
= 1;
6290 case IPR_IOASC_SYNC_REQUIRED
:
6292 res
->needs_sync_complete
= 1;
6293 scsi_cmd
->result
|= (DID_IMM_RETRY
<< 16);
6295 case IPR_IOASC_MED_DO_NOT_REALLOC
: /* prevent retries */
6296 case IPR_IOASA_IR_DUAL_IOA_DISABLED
:
6297 scsi_cmd
->result
|= (DID_PASSTHROUGH
<< 16);
6299 case IPR_IOASC_BUS_WAS_RESET
:
6300 case IPR_IOASC_BUS_WAS_RESET_BY_OTHER
:
6302 * Report the bus reset and ask for a retry. The device
6303 * will give CC/UA the next command.
6305 if (!res
->resetting_device
)
6306 scsi_report_bus_reset(ioa_cfg
->host
, scsi_cmd
->device
->channel
);
6307 scsi_cmd
->result
|= (DID_ERROR
<< 16);
6308 if (!ipr_is_naca_model(res
))
6309 res
->needs_sync_complete
= 1;
6311 case IPR_IOASC_HW_DEV_BUS_STATUS
:
6312 scsi_cmd
->result
|= IPR_IOASC_SENSE_STATUS(ioasc
);
6313 if (IPR_IOASC_SENSE_STATUS(ioasc
) == SAM_STAT_CHECK_CONDITION
) {
6314 if (!ipr_get_autosense(ipr_cmd
)) {
6315 if (!ipr_is_naca_model(res
)) {
6316 ipr_erp_cancel_all(ipr_cmd
);
6321 if (!ipr_is_naca_model(res
))
6322 res
->needs_sync_complete
= 1;
6324 case IPR_IOASC_NR_INIT_CMD_REQUIRED
:
6326 case IPR_IOASC_IR_NON_OPTIMIZED
:
6327 if (res
->raw_mode
) {
6329 scsi_cmd
->result
|= (DID_IMM_RETRY
<< 16);
6331 scsi_cmd
->result
|= (DID_ERROR
<< 16);
6334 if (IPR_IOASC_SENSE_KEY(ioasc
) > RECOVERED_ERROR
)
6335 scsi_cmd
->result
|= (DID_ERROR
<< 16);
6336 if (!ipr_is_vset_device(res
) && !ipr_is_naca_model(res
))
6337 res
->needs_sync_complete
= 1;
6341 scsi_dma_unmap(ipr_cmd
->scsi_cmd
);
6342 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
6343 scsi_cmd
->scsi_done(scsi_cmd
);
6347 * ipr_scsi_done - mid-layer done function
6348 * @ipr_cmd: ipr command struct
6350 * This function is invoked by the interrupt handler for
6351 * ops generated by the SCSI mid-layer
6356 static void ipr_scsi_done(struct ipr_cmnd
*ipr_cmd
)
6358 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
6359 struct scsi_cmnd
*scsi_cmd
= ipr_cmd
->scsi_cmd
;
6360 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
6361 unsigned long lock_flags
;
6363 scsi_set_resid(scsi_cmd
, be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.residual_data_len
));
6365 if (likely(IPR_IOASC_SENSE_KEY(ioasc
) == 0)) {
6366 scsi_dma_unmap(scsi_cmd
);
6368 spin_lock_irqsave(ipr_cmd
->hrrq
->lock
, lock_flags
);
6369 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
6370 scsi_cmd
->scsi_done(scsi_cmd
);
6371 spin_unlock_irqrestore(ipr_cmd
->hrrq
->lock
, lock_flags
);
6373 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
6374 spin_lock(&ipr_cmd
->hrrq
->_lock
);
6375 ipr_erp_start(ioa_cfg
, ipr_cmd
);
6376 spin_unlock(&ipr_cmd
->hrrq
->_lock
);
6377 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
6382 * ipr_queuecommand - Queue a mid-layer request
6383 * @shost: scsi host struct
6384 * @scsi_cmd: scsi command struct
6386 * This function queues a request generated by the mid-layer.
6390 * SCSI_MLQUEUE_DEVICE_BUSY if device is busy
6391 * SCSI_MLQUEUE_HOST_BUSY if host is busy
6393 static int ipr_queuecommand(struct Scsi_Host
*shost
,
6394 struct scsi_cmnd
*scsi_cmd
)
6396 struct ipr_ioa_cfg
*ioa_cfg
;
6397 struct ipr_resource_entry
*res
;
6398 struct ipr_ioarcb
*ioarcb
;
6399 struct ipr_cmnd
*ipr_cmd
;
6400 unsigned long hrrq_flags
, lock_flags
;
6402 struct ipr_hrr_queue
*hrrq
;
6405 ioa_cfg
= (struct ipr_ioa_cfg
*)shost
->hostdata
;
6407 scsi_cmd
->result
= (DID_OK
<< 16);
6408 res
= scsi_cmd
->device
->hostdata
;
6410 if (ipr_is_gata(res
) && res
->sata_port
) {
6411 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
6412 rc
= ata_sas_queuecmd(scsi_cmd
, res
->sata_port
->ap
);
6413 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
6417 hrrq_id
= ipr_get_hrrq_index(ioa_cfg
);
6418 hrrq
= &ioa_cfg
->hrrq
[hrrq_id
];
6420 spin_lock_irqsave(hrrq
->lock
, hrrq_flags
);
6422 * We are currently blocking all devices due to a host reset
6423 * We have told the host to stop giving us new requests, but
6424 * ERP ops don't count. FIXME
6426 if (unlikely(!hrrq
->allow_cmds
&& !hrrq
->ioa_is_dead
&& !hrrq
->removing_ioa
)) {
6427 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6428 return SCSI_MLQUEUE_HOST_BUSY
;
6432 * FIXME - Create scsi_set_host_offline interface
6433 * and the ioa_is_dead check can be removed
6435 if (unlikely(hrrq
->ioa_is_dead
|| hrrq
->removing_ioa
|| !res
)) {
6436 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6440 ipr_cmd
= __ipr_get_free_ipr_cmnd(hrrq
);
6441 if (ipr_cmd
== NULL
) {
6442 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6443 return SCSI_MLQUEUE_HOST_BUSY
;
6445 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6447 ipr_init_ipr_cmnd(ipr_cmd
, ipr_scsi_done
);
6448 ioarcb
= &ipr_cmd
->ioarcb
;
6450 memcpy(ioarcb
->cmd_pkt
.cdb
, scsi_cmd
->cmnd
, scsi_cmd
->cmd_len
);
6451 ipr_cmd
->scsi_cmd
= scsi_cmd
;
6452 ipr_cmd
->done
= ipr_scsi_eh_done
;
6454 if (ipr_is_gscsi(res
)) {
6455 if (scsi_cmd
->underflow
== 0)
6456 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_NO_ULEN_CHK
;
6458 if (res
->reset_occurred
) {
6459 res
->reset_occurred
= 0;
6460 ioarcb
->cmd_pkt
.flags_lo
|= IPR_FLAGS_LO_DELAY_AFTER_RST
;
6464 if (ipr_is_gscsi(res
) || ipr_is_vset_device(res
)) {
6465 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_NO_LINK_DESC
;
6467 ioarcb
->cmd_pkt
.flags_lo
|= IPR_FLAGS_LO_ALIGNED_BFR
;
6468 if (scsi_cmd
->flags
& SCMD_TAGGED
)
6469 ioarcb
->cmd_pkt
.flags_lo
|= IPR_FLAGS_LO_SIMPLE_TASK
;
6471 ioarcb
->cmd_pkt
.flags_lo
|= IPR_FLAGS_LO_UNTAGGED_TASK
;
6474 if (scsi_cmd
->cmnd
[0] >= 0xC0 &&
6475 (!ipr_is_gscsi(res
) || scsi_cmd
->cmnd
[0] == IPR_QUERY_RSRC_STATE
)) {
6476 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
6478 if (res
->raw_mode
&& ipr_is_af_dasd_device(res
)) {
6479 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_PIPE
;
6481 if (scsi_cmd
->underflow
== 0)
6482 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_NO_ULEN_CHK
;
6486 rc
= ipr_build_ioadl64(ioa_cfg
, ipr_cmd
);
6488 rc
= ipr_build_ioadl(ioa_cfg
, ipr_cmd
);
6490 spin_lock_irqsave(hrrq
->lock
, hrrq_flags
);
6491 if (unlikely(rc
|| (!hrrq
->allow_cmds
&& !hrrq
->ioa_is_dead
))) {
6492 list_add_tail(&ipr_cmd
->queue
, &hrrq
->hrrq_free_q
);
6493 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6495 scsi_dma_unmap(scsi_cmd
);
6496 return SCSI_MLQUEUE_HOST_BUSY
;
6499 if (unlikely(hrrq
->ioa_is_dead
)) {
6500 list_add_tail(&ipr_cmd
->queue
, &hrrq
->hrrq_free_q
);
6501 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6502 scsi_dma_unmap(scsi_cmd
);
6506 ioarcb
->res_handle
= res
->res_handle
;
6507 if (res
->needs_sync_complete
) {
6508 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_SYNC_COMPLETE
;
6509 res
->needs_sync_complete
= 0;
6511 list_add_tail(&ipr_cmd
->queue
, &hrrq
->hrrq_pending_q
);
6512 ipr_trc_hook(ipr_cmd
, IPR_TRACE_START
, IPR_GET_RES_PHYS_LOC(res
));
6513 ipr_send_command(ipr_cmd
);
6514 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6518 spin_lock_irqsave(hrrq
->lock
, hrrq_flags
);
6519 memset(scsi_cmd
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
6520 scsi_cmd
->result
= (DID_NO_CONNECT
<< 16);
6521 scsi_cmd
->scsi_done(scsi_cmd
);
6522 spin_unlock_irqrestore(hrrq
->lock
, hrrq_flags
);
6527 * ipr_ioctl - IOCTL handler
6528 * @sdev: scsi device struct
6533 * 0 on success / other on failure
6535 static int ipr_ioctl(struct scsi_device
*sdev
, int cmd
, void __user
*arg
)
6537 struct ipr_resource_entry
*res
;
6539 res
= (struct ipr_resource_entry
*)sdev
->hostdata
;
6540 if (res
&& ipr_is_gata(res
)) {
6541 if (cmd
== HDIO_GET_IDENTITY
)
6543 return ata_sas_scsi_ioctl(res
->sata_port
->ap
, sdev
, cmd
, arg
);
6550 * ipr_info - Get information about the card/driver
6551 * @scsi_host: scsi host struct
6554 * pointer to buffer with description string
6556 static const char *ipr_ioa_info(struct Scsi_Host
*host
)
6558 static char buffer
[512];
6559 struct ipr_ioa_cfg
*ioa_cfg
;
6560 unsigned long lock_flags
= 0;
6562 ioa_cfg
= (struct ipr_ioa_cfg
*) host
->hostdata
;
6564 spin_lock_irqsave(host
->host_lock
, lock_flags
);
6565 sprintf(buffer
, "IBM %X Storage Adapter", ioa_cfg
->type
);
6566 spin_unlock_irqrestore(host
->host_lock
, lock_flags
);
6571 static struct scsi_host_template driver_template
= {
6572 .module
= THIS_MODULE
,
6574 .info
= ipr_ioa_info
,
6576 .queuecommand
= ipr_queuecommand
,
6577 .eh_abort_handler
= ipr_eh_abort
,
6578 .eh_device_reset_handler
= ipr_eh_dev_reset
,
6579 .eh_host_reset_handler
= ipr_eh_host_reset
,
6580 .slave_alloc
= ipr_slave_alloc
,
6581 .slave_configure
= ipr_slave_configure
,
6582 .slave_destroy
= ipr_slave_destroy
,
6583 .scan_finished
= ipr_scan_finished
,
6584 .target_alloc
= ipr_target_alloc
,
6585 .target_destroy
= ipr_target_destroy
,
6586 .change_queue_depth
= ipr_change_queue_depth
,
6587 .bios_param
= ipr_biosparam
,
6588 .can_queue
= IPR_MAX_COMMANDS
,
6590 .sg_tablesize
= IPR_MAX_SGLIST
,
6591 .max_sectors
= IPR_IOA_MAX_SECTORS
,
6592 .cmd_per_lun
= IPR_MAX_CMD_PER_LUN
,
6593 .use_clustering
= ENABLE_CLUSTERING
,
6594 .shost_attrs
= ipr_ioa_attrs
,
6595 .sdev_attrs
= ipr_dev_attrs
,
6596 .proc_name
= IPR_NAME
,
6600 * ipr_ata_phy_reset - libata phy_reset handler
6601 * @ap: ata port to reset
6604 static void ipr_ata_phy_reset(struct ata_port
*ap
)
6606 unsigned long flags
;
6607 struct ipr_sata_port
*sata_port
= ap
->private_data
;
6608 struct ipr_resource_entry
*res
= sata_port
->res
;
6609 struct ipr_ioa_cfg
*ioa_cfg
= sata_port
->ioa_cfg
;
6613 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
6614 while (ioa_cfg
->in_reset_reload
) {
6615 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
6616 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
6617 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
6620 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].allow_cmds
)
6623 rc
= ipr_device_reset(ioa_cfg
, res
);
6626 ap
->link
.device
[0].class = ATA_DEV_NONE
;
6630 ap
->link
.device
[0].class = res
->ata_class
;
6631 if (ap
->link
.device
[0].class == ATA_DEV_UNKNOWN
)
6632 ap
->link
.device
[0].class = ATA_DEV_NONE
;
6635 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
6640 * ipr_ata_post_internal - Cleanup after an internal command
6641 * @qc: ATA queued command
6646 static void ipr_ata_post_internal(struct ata_queued_cmd
*qc
)
6648 struct ipr_sata_port
*sata_port
= qc
->ap
->private_data
;
6649 struct ipr_ioa_cfg
*ioa_cfg
= sata_port
->ioa_cfg
;
6650 struct ipr_cmnd
*ipr_cmd
;
6651 struct ipr_hrr_queue
*hrrq
;
6652 unsigned long flags
;
6654 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
6655 while (ioa_cfg
->in_reset_reload
) {
6656 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
6657 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
6658 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
6661 for_each_hrrq(hrrq
, ioa_cfg
) {
6662 spin_lock(&hrrq
->_lock
);
6663 list_for_each_entry(ipr_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
6664 if (ipr_cmd
->qc
== qc
) {
6665 ipr_device_reset(ioa_cfg
, sata_port
->res
);
6669 spin_unlock(&hrrq
->_lock
);
6671 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
6675 * ipr_copy_sata_tf - Copy a SATA taskfile to an IOA data structure
6676 * @regs: destination
6677 * @tf: source ATA taskfile
6682 static void ipr_copy_sata_tf(struct ipr_ioarcb_ata_regs
*regs
,
6683 struct ata_taskfile
*tf
)
6685 regs
->feature
= tf
->feature
;
6686 regs
->nsect
= tf
->nsect
;
6687 regs
->lbal
= tf
->lbal
;
6688 regs
->lbam
= tf
->lbam
;
6689 regs
->lbah
= tf
->lbah
;
6690 regs
->device
= tf
->device
;
6691 regs
->command
= tf
->command
;
6692 regs
->hob_feature
= tf
->hob_feature
;
6693 regs
->hob_nsect
= tf
->hob_nsect
;
6694 regs
->hob_lbal
= tf
->hob_lbal
;
6695 regs
->hob_lbam
= tf
->hob_lbam
;
6696 regs
->hob_lbah
= tf
->hob_lbah
;
6697 regs
->ctl
= tf
->ctl
;
6701 * ipr_sata_done - done function for SATA commands
6702 * @ipr_cmd: ipr command struct
6704 * This function is invoked by the interrupt handler for
6705 * ops generated by the SCSI mid-layer to SATA devices
6710 static void ipr_sata_done(struct ipr_cmnd
*ipr_cmd
)
6712 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
6713 struct ata_queued_cmd
*qc
= ipr_cmd
->qc
;
6714 struct ipr_sata_port
*sata_port
= qc
->ap
->private_data
;
6715 struct ipr_resource_entry
*res
= sata_port
->res
;
6716 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
6718 spin_lock(&ipr_cmd
->hrrq
->_lock
);
6719 if (ipr_cmd
->ioa_cfg
->sis64
)
6720 memcpy(&sata_port
->ioasa
, &ipr_cmd
->s
.ioasa64
.u
.gata
,
6721 sizeof(struct ipr_ioasa_gata
));
6723 memcpy(&sata_port
->ioasa
, &ipr_cmd
->s
.ioasa
.u
.gata
,
6724 sizeof(struct ipr_ioasa_gata
));
6725 ipr_dump_ioasa(ioa_cfg
, ipr_cmd
, res
);
6727 if (be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc_specific
) & IPR_ATA_DEVICE_WAS_RESET
)
6728 scsi_report_device_reset(ioa_cfg
->host
, res
->bus
, res
->target
);
6730 if (IPR_IOASC_SENSE_KEY(ioasc
) > RECOVERED_ERROR
)
6731 qc
->err_mask
|= __ac_err_mask(sata_port
->ioasa
.status
);
6733 qc
->err_mask
|= ac_err_mask(sata_port
->ioasa
.status
);
6734 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
6735 spin_unlock(&ipr_cmd
->hrrq
->_lock
);
6736 ata_qc_complete(qc
);
6740 * ipr_build_ata_ioadl64 - Build an ATA scatter/gather list
6741 * @ipr_cmd: ipr command struct
6742 * @qc: ATA queued command
6745 static void ipr_build_ata_ioadl64(struct ipr_cmnd
*ipr_cmd
,
6746 struct ata_queued_cmd
*qc
)
6748 u32 ioadl_flags
= 0;
6749 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
6750 struct ipr_ioadl64_desc
*ioadl64
= ipr_cmd
->i
.ata_ioadl
.ioadl64
;
6751 struct ipr_ioadl64_desc
*last_ioadl64
= NULL
;
6752 int len
= qc
->nbytes
;
6753 struct scatterlist
*sg
;
6755 dma_addr_t dma_addr
= ipr_cmd
->dma_addr
;
6760 if (qc
->dma_dir
== DMA_TO_DEVICE
) {
6761 ioadl_flags
= IPR_IOADL_FLAGS_WRITE
;
6762 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
6763 } else if (qc
->dma_dir
== DMA_FROM_DEVICE
)
6764 ioadl_flags
= IPR_IOADL_FLAGS_READ
;
6766 ioarcb
->data_transfer_length
= cpu_to_be32(len
);
6768 cpu_to_be32(sizeof(struct ipr_ioadl64_desc
) * ipr_cmd
->dma_use_sg
);
6769 ioarcb
->u
.sis64_addr_data
.data_ioadl_addr
=
6770 cpu_to_be64(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ata_ioadl
.ioadl64
));
6772 for_each_sg(qc
->sg
, sg
, qc
->n_elem
, si
) {
6773 ioadl64
->flags
= cpu_to_be32(ioadl_flags
);
6774 ioadl64
->data_len
= cpu_to_be32(sg_dma_len(sg
));
6775 ioadl64
->address
= cpu_to_be64(sg_dma_address(sg
));
6777 last_ioadl64
= ioadl64
;
6781 if (likely(last_ioadl64
))
6782 last_ioadl64
->flags
|= cpu_to_be32(IPR_IOADL_FLAGS_LAST
);
6786 * ipr_build_ata_ioadl - Build an ATA scatter/gather list
6787 * @ipr_cmd: ipr command struct
6788 * @qc: ATA queued command
6791 static void ipr_build_ata_ioadl(struct ipr_cmnd
*ipr_cmd
,
6792 struct ata_queued_cmd
*qc
)
6794 u32 ioadl_flags
= 0;
6795 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
6796 struct ipr_ioadl_desc
*ioadl
= ipr_cmd
->i
.ioadl
;
6797 struct ipr_ioadl_desc
*last_ioadl
= NULL
;
6798 int len
= qc
->nbytes
;
6799 struct scatterlist
*sg
;
6805 if (qc
->dma_dir
== DMA_TO_DEVICE
) {
6806 ioadl_flags
= IPR_IOADL_FLAGS_WRITE
;
6807 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
6808 ioarcb
->data_transfer_length
= cpu_to_be32(len
);
6810 cpu_to_be32(sizeof(struct ipr_ioadl_desc
) * ipr_cmd
->dma_use_sg
);
6811 } else if (qc
->dma_dir
== DMA_FROM_DEVICE
) {
6812 ioadl_flags
= IPR_IOADL_FLAGS_READ
;
6813 ioarcb
->read_data_transfer_length
= cpu_to_be32(len
);
6814 ioarcb
->read_ioadl_len
=
6815 cpu_to_be32(sizeof(struct ipr_ioadl_desc
) * ipr_cmd
->dma_use_sg
);
6818 for_each_sg(qc
->sg
, sg
, qc
->n_elem
, si
) {
6819 ioadl
->flags_and_data_len
= cpu_to_be32(ioadl_flags
| sg_dma_len(sg
));
6820 ioadl
->address
= cpu_to_be32(sg_dma_address(sg
));
6826 if (likely(last_ioadl
))
6827 last_ioadl
->flags_and_data_len
|= cpu_to_be32(IPR_IOADL_FLAGS_LAST
);
6831 * ipr_qc_defer - Get a free ipr_cmd
6832 * @qc: queued command
6837 static int ipr_qc_defer(struct ata_queued_cmd
*qc
)
6839 struct ata_port
*ap
= qc
->ap
;
6840 struct ipr_sata_port
*sata_port
= ap
->private_data
;
6841 struct ipr_ioa_cfg
*ioa_cfg
= sata_port
->ioa_cfg
;
6842 struct ipr_cmnd
*ipr_cmd
;
6843 struct ipr_hrr_queue
*hrrq
;
6846 hrrq_id
= ipr_get_hrrq_index(ioa_cfg
);
6847 hrrq
= &ioa_cfg
->hrrq
[hrrq_id
];
6849 qc
->lldd_task
= NULL
;
6850 spin_lock(&hrrq
->_lock
);
6851 if (unlikely(hrrq
->ioa_is_dead
)) {
6852 spin_unlock(&hrrq
->_lock
);
6856 if (unlikely(!hrrq
->allow_cmds
)) {
6857 spin_unlock(&hrrq
->_lock
);
6858 return ATA_DEFER_LINK
;
6861 ipr_cmd
= __ipr_get_free_ipr_cmnd(hrrq
);
6862 if (ipr_cmd
== NULL
) {
6863 spin_unlock(&hrrq
->_lock
);
6864 return ATA_DEFER_LINK
;
6867 qc
->lldd_task
= ipr_cmd
;
6868 spin_unlock(&hrrq
->_lock
);
6873 * ipr_qc_issue - Issue a SATA qc to a device
6874 * @qc: queued command
6879 static unsigned int ipr_qc_issue(struct ata_queued_cmd
*qc
)
6881 struct ata_port
*ap
= qc
->ap
;
6882 struct ipr_sata_port
*sata_port
= ap
->private_data
;
6883 struct ipr_resource_entry
*res
= sata_port
->res
;
6884 struct ipr_ioa_cfg
*ioa_cfg
= sata_port
->ioa_cfg
;
6885 struct ipr_cmnd
*ipr_cmd
;
6886 struct ipr_ioarcb
*ioarcb
;
6887 struct ipr_ioarcb_ata_regs
*regs
;
6889 if (qc
->lldd_task
== NULL
)
6892 ipr_cmd
= qc
->lldd_task
;
6893 if (ipr_cmd
== NULL
)
6894 return AC_ERR_SYSTEM
;
6896 qc
->lldd_task
= NULL
;
6897 spin_lock(&ipr_cmd
->hrrq
->_lock
);
6898 if (unlikely(!ipr_cmd
->hrrq
->allow_cmds
||
6899 ipr_cmd
->hrrq
->ioa_is_dead
)) {
6900 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
6901 spin_unlock(&ipr_cmd
->hrrq
->_lock
);
6902 return AC_ERR_SYSTEM
;
6905 ipr_init_ipr_cmnd(ipr_cmd
, ipr_lock_and_done
);
6906 ioarcb
= &ipr_cmd
->ioarcb
;
6908 if (ioa_cfg
->sis64
) {
6909 regs
= &ipr_cmd
->i
.ata_ioadl
.regs
;
6910 ioarcb
->add_cmd_parms_offset
= cpu_to_be16(sizeof(*ioarcb
));
6912 regs
= &ioarcb
->u
.add_data
.u
.regs
;
6914 memset(regs
, 0, sizeof(*regs
));
6915 ioarcb
->add_cmd_parms_len
= cpu_to_be16(sizeof(*regs
));
6917 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
6919 ipr_cmd
->done
= ipr_sata_done
;
6920 ipr_cmd
->ioarcb
.res_handle
= res
->res_handle
;
6921 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_ATA_PASSTHRU
;
6922 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_NO_LINK_DESC
;
6923 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_NO_ULEN_CHK
;
6924 ipr_cmd
->dma_use_sg
= qc
->n_elem
;
6927 ipr_build_ata_ioadl64(ipr_cmd
, qc
);
6929 ipr_build_ata_ioadl(ipr_cmd
, qc
);
6931 regs
->flags
|= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION
;
6932 ipr_copy_sata_tf(regs
, &qc
->tf
);
6933 memcpy(ioarcb
->cmd_pkt
.cdb
, qc
->cdb
, IPR_MAX_CDB_LEN
);
6934 ipr_trc_hook(ipr_cmd
, IPR_TRACE_START
, IPR_GET_RES_PHYS_LOC(res
));
6936 switch (qc
->tf
.protocol
) {
6937 case ATA_PROT_NODATA
:
6942 regs
->flags
|= IPR_ATA_FLAG_XFER_TYPE_DMA
;
6945 case ATAPI_PROT_PIO
:
6946 case ATAPI_PROT_NODATA
:
6947 regs
->flags
|= IPR_ATA_FLAG_PACKET_CMD
;
6950 case ATAPI_PROT_DMA
:
6951 regs
->flags
|= IPR_ATA_FLAG_PACKET_CMD
;
6952 regs
->flags
|= IPR_ATA_FLAG_XFER_TYPE_DMA
;
6957 spin_unlock(&ipr_cmd
->hrrq
->_lock
);
6958 return AC_ERR_INVALID
;
6961 ipr_send_command(ipr_cmd
);
6962 spin_unlock(&ipr_cmd
->hrrq
->_lock
);
6968 * ipr_qc_fill_rtf - Read result TF
6969 * @qc: ATA queued command
6974 static bool ipr_qc_fill_rtf(struct ata_queued_cmd
*qc
)
6976 struct ipr_sata_port
*sata_port
= qc
->ap
->private_data
;
6977 struct ipr_ioasa_gata
*g
= &sata_port
->ioasa
;
6978 struct ata_taskfile
*tf
= &qc
->result_tf
;
6980 tf
->feature
= g
->error
;
6981 tf
->nsect
= g
->nsect
;
6985 tf
->device
= g
->device
;
6986 tf
->command
= g
->status
;
6987 tf
->hob_nsect
= g
->hob_nsect
;
6988 tf
->hob_lbal
= g
->hob_lbal
;
6989 tf
->hob_lbam
= g
->hob_lbam
;
6990 tf
->hob_lbah
= g
->hob_lbah
;
6995 static struct ata_port_operations ipr_sata_ops
= {
6996 .phy_reset
= ipr_ata_phy_reset
,
6997 .hardreset
= ipr_sata_reset
,
6998 .post_internal_cmd
= ipr_ata_post_internal
,
6999 .qc_prep
= ata_noop_qc_prep
,
7000 .qc_defer
= ipr_qc_defer
,
7001 .qc_issue
= ipr_qc_issue
,
7002 .qc_fill_rtf
= ipr_qc_fill_rtf
,
7003 .port_start
= ata_sas_port_start
,
7004 .port_stop
= ata_sas_port_stop
7007 static struct ata_port_info sata_port_info
= {
7008 .flags
= ATA_FLAG_SATA
| ATA_FLAG_PIO_DMA
|
7010 .pio_mask
= ATA_PIO4_ONLY
,
7011 .mwdma_mask
= ATA_MWDMA2
,
7012 .udma_mask
= ATA_UDMA6
,
7013 .port_ops
= &ipr_sata_ops
7016 #ifdef CONFIG_PPC_PSERIES
7017 static const u16 ipr_blocked_processors
[] = {
7029 * ipr_invalid_adapter - Determine if this adapter is supported on this hardware
7030 * @ioa_cfg: ioa cfg struct
7032 * Adapters that use Gemstone revision < 3.1 do not work reliably on
7033 * certain pSeries hardware. This function determines if the given
7034 * adapter is in one of these confgurations or not.
7037 * 1 if adapter is not supported / 0 if adapter is supported
7039 static int ipr_invalid_adapter(struct ipr_ioa_cfg
*ioa_cfg
)
7043 if ((ioa_cfg
->type
== 0x5702) && (ioa_cfg
->pdev
->revision
< 4)) {
7044 for (i
= 0; i
< ARRAY_SIZE(ipr_blocked_processors
); i
++) {
7045 if (pvr_version_is(ipr_blocked_processors
[i
]))
7052 #define ipr_invalid_adapter(ioa_cfg) 0
7056 * ipr_ioa_bringdown_done - IOA bring down completion.
7057 * @ipr_cmd: ipr command struct
7059 * This function processes the completion of an adapter bring down.
7060 * It wakes any reset sleepers.
7065 static int ipr_ioa_bringdown_done(struct ipr_cmnd
*ipr_cmd
)
7067 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7071 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].removing_ioa
) {
7073 spin_unlock_irq(ioa_cfg
->host
->host_lock
);
7074 scsi_unblock_requests(ioa_cfg
->host
);
7075 spin_lock_irq(ioa_cfg
->host
->host_lock
);
7078 ioa_cfg
->in_reset_reload
= 0;
7079 ioa_cfg
->reset_retries
= 0;
7080 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
7081 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
7082 ioa_cfg
->hrrq
[i
].ioa_is_dead
= 1;
7083 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
7087 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
7088 wake_up_all(&ioa_cfg
->reset_wait_q
);
7091 return IPR_RC_JOB_RETURN
;
7095 * ipr_ioa_reset_done - IOA reset completion.
7096 * @ipr_cmd: ipr command struct
7098 * This function processes the completion of an adapter reset.
7099 * It schedules any necessary mid-layer add/removes and
7100 * wakes any reset sleepers.
7105 static int ipr_ioa_reset_done(struct ipr_cmnd
*ipr_cmd
)
7107 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7108 struct ipr_resource_entry
*res
;
7112 ioa_cfg
->in_reset_reload
= 0;
7113 for (j
= 0; j
< ioa_cfg
->hrrq_num
; j
++) {
7114 spin_lock(&ioa_cfg
->hrrq
[j
]._lock
);
7115 ioa_cfg
->hrrq
[j
].allow_cmds
= 1;
7116 spin_unlock(&ioa_cfg
->hrrq
[j
]._lock
);
7119 ioa_cfg
->reset_cmd
= NULL
;
7120 ioa_cfg
->doorbell
|= IPR_RUNTIME_RESET
;
7122 list_for_each_entry(res
, &ioa_cfg
->used_res_q
, queue
) {
7123 if (res
->add_to_ml
|| res
->del_from_ml
) {
7128 schedule_work(&ioa_cfg
->work_q
);
7130 for (j
= 0; j
< IPR_NUM_HCAMS
; j
++) {
7131 list_del_init(&ioa_cfg
->hostrcb
[j
]->queue
);
7132 if (j
< IPR_NUM_LOG_HCAMS
)
7133 ipr_send_hcam(ioa_cfg
,
7134 IPR_HCAM_CDB_OP_CODE_LOG_DATA
,
7135 ioa_cfg
->hostrcb
[j
]);
7137 ipr_send_hcam(ioa_cfg
,
7138 IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE
,
7139 ioa_cfg
->hostrcb
[j
]);
7142 scsi_report_bus_reset(ioa_cfg
->host
, IPR_VSET_BUS
);
7143 dev_info(&ioa_cfg
->pdev
->dev
, "IOA initialized.\n");
7145 ioa_cfg
->reset_retries
= 0;
7146 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
7147 wake_up_all(&ioa_cfg
->reset_wait_q
);
7149 spin_unlock(ioa_cfg
->host
->host_lock
);
7150 scsi_unblock_requests(ioa_cfg
->host
);
7151 spin_lock(ioa_cfg
->host
->host_lock
);
7153 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].allow_cmds
)
7154 scsi_block_requests(ioa_cfg
->host
);
7156 schedule_work(&ioa_cfg
->work_q
);
7158 return IPR_RC_JOB_RETURN
;
7162 * ipr_set_sup_dev_dflt - Initialize a Set Supported Device buffer
7163 * @supported_dev: supported device struct
7164 * @vpids: vendor product id struct
7169 static void ipr_set_sup_dev_dflt(struct ipr_supported_device
*supported_dev
,
7170 struct ipr_std_inq_vpids
*vpids
)
7172 memset(supported_dev
, 0, sizeof(struct ipr_supported_device
));
7173 memcpy(&supported_dev
->vpids
, vpids
, sizeof(struct ipr_std_inq_vpids
));
7174 supported_dev
->num_records
= 1;
7175 supported_dev
->data_length
=
7176 cpu_to_be16(sizeof(struct ipr_supported_device
));
7177 supported_dev
->reserved
= 0;
7181 * ipr_set_supported_devs - Send Set Supported Devices for a device
7182 * @ipr_cmd: ipr command struct
7184 * This function sends a Set Supported Devices to the adapter
7187 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7189 static int ipr_set_supported_devs(struct ipr_cmnd
*ipr_cmd
)
7191 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7192 struct ipr_supported_device
*supp_dev
= &ioa_cfg
->vpd_cbs
->supp_dev
;
7193 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7194 struct ipr_resource_entry
*res
= ipr_cmd
->u
.res
;
7196 ipr_cmd
->job_step
= ipr_ioa_reset_done
;
7198 list_for_each_entry_continue(res
, &ioa_cfg
->used_res_q
, queue
) {
7199 if (!ipr_is_scsi_disk(res
))
7202 ipr_cmd
->u
.res
= res
;
7203 ipr_set_sup_dev_dflt(supp_dev
, &res
->std_inq_data
.vpids
);
7205 ioarcb
->res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
7206 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
7207 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
7209 ioarcb
->cmd_pkt
.cdb
[0] = IPR_SET_SUPPORTED_DEVICES
;
7210 ioarcb
->cmd_pkt
.cdb
[1] = IPR_SET_ALL_SUPPORTED_DEVICES
;
7211 ioarcb
->cmd_pkt
.cdb
[7] = (sizeof(struct ipr_supported_device
) >> 8) & 0xff;
7212 ioarcb
->cmd_pkt
.cdb
[8] = sizeof(struct ipr_supported_device
) & 0xff;
7214 ipr_init_ioadl(ipr_cmd
,
7215 ioa_cfg
->vpd_cbs_dma
+
7216 offsetof(struct ipr_misc_cbs
, supp_dev
),
7217 sizeof(struct ipr_supported_device
),
7218 IPR_IOADL_FLAGS_WRITE_LAST
);
7220 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
,
7221 IPR_SET_SUP_DEVICE_TIMEOUT
);
7223 if (!ioa_cfg
->sis64
)
7224 ipr_cmd
->job_step
= ipr_set_supported_devs
;
7226 return IPR_RC_JOB_RETURN
;
7230 return IPR_RC_JOB_CONTINUE
;
7234 * ipr_get_mode_page - Locate specified mode page
7235 * @mode_pages: mode page buffer
7236 * @page_code: page code to find
7237 * @len: minimum required length for mode page
7240 * pointer to mode page / NULL on failure
7242 static void *ipr_get_mode_page(struct ipr_mode_pages
*mode_pages
,
7243 u32 page_code
, u32 len
)
7245 struct ipr_mode_page_hdr
*mode_hdr
;
7249 if (!mode_pages
|| (mode_pages
->hdr
.length
== 0))
7252 length
= (mode_pages
->hdr
.length
+ 1) - 4 - mode_pages
->hdr
.block_desc_len
;
7253 mode_hdr
= (struct ipr_mode_page_hdr
*)
7254 (mode_pages
->data
+ mode_pages
->hdr
.block_desc_len
);
7257 if (IPR_GET_MODE_PAGE_CODE(mode_hdr
) == page_code
) {
7258 if (mode_hdr
->page_length
>= (len
- sizeof(struct ipr_mode_page_hdr
)))
7262 page_length
= (sizeof(struct ipr_mode_page_hdr
) +
7263 mode_hdr
->page_length
);
7264 length
-= page_length
;
7265 mode_hdr
= (struct ipr_mode_page_hdr
*)
7266 ((unsigned long)mode_hdr
+ page_length
);
7273 * ipr_check_term_power - Check for term power errors
7274 * @ioa_cfg: ioa config struct
7275 * @mode_pages: IOAFP mode pages buffer
7277 * Check the IOAFP's mode page 28 for term power errors
7282 static void ipr_check_term_power(struct ipr_ioa_cfg
*ioa_cfg
,
7283 struct ipr_mode_pages
*mode_pages
)
7287 struct ipr_dev_bus_entry
*bus
;
7288 struct ipr_mode_page28
*mode_page
;
7290 mode_page
= ipr_get_mode_page(mode_pages
, 0x28,
7291 sizeof(struct ipr_mode_page28
));
7293 entry_length
= mode_page
->entry_length
;
7295 bus
= mode_page
->bus
;
7297 for (i
= 0; i
< mode_page
->num_entries
; i
++) {
7298 if (bus
->flags
& IPR_SCSI_ATTR_NO_TERM_PWR
) {
7299 dev_err(&ioa_cfg
->pdev
->dev
,
7300 "Term power is absent on scsi bus %d\n",
7304 bus
= (struct ipr_dev_bus_entry
*)((char *)bus
+ entry_length
);
7309 * ipr_scsi_bus_speed_limit - Limit the SCSI speed based on SES table
7310 * @ioa_cfg: ioa config struct
7312 * Looks through the config table checking for SES devices. If
7313 * the SES device is in the SES table indicating a maximum SCSI
7314 * bus speed, the speed is limited for the bus.
7319 static void ipr_scsi_bus_speed_limit(struct ipr_ioa_cfg
*ioa_cfg
)
7324 for (i
= 0; i
< IPR_MAX_NUM_BUSES
; i
++) {
7325 max_xfer_rate
= ipr_get_max_scsi_speed(ioa_cfg
, i
,
7326 ioa_cfg
->bus_attr
[i
].bus_width
);
7328 if (max_xfer_rate
< ioa_cfg
->bus_attr
[i
].max_xfer_rate
)
7329 ioa_cfg
->bus_attr
[i
].max_xfer_rate
= max_xfer_rate
;
7334 * ipr_modify_ioafp_mode_page_28 - Modify IOAFP Mode Page 28
7335 * @ioa_cfg: ioa config struct
7336 * @mode_pages: mode page 28 buffer
7338 * Updates mode page 28 based on driver configuration
7343 static void ipr_modify_ioafp_mode_page_28(struct ipr_ioa_cfg
*ioa_cfg
,
7344 struct ipr_mode_pages
*mode_pages
)
7346 int i
, entry_length
;
7347 struct ipr_dev_bus_entry
*bus
;
7348 struct ipr_bus_attributes
*bus_attr
;
7349 struct ipr_mode_page28
*mode_page
;
7351 mode_page
= ipr_get_mode_page(mode_pages
, 0x28,
7352 sizeof(struct ipr_mode_page28
));
7354 entry_length
= mode_page
->entry_length
;
7356 /* Loop for each device bus entry */
7357 for (i
= 0, bus
= mode_page
->bus
;
7358 i
< mode_page
->num_entries
;
7359 i
++, bus
= (struct ipr_dev_bus_entry
*)((u8
*)bus
+ entry_length
)) {
7360 if (bus
->res_addr
.bus
> IPR_MAX_NUM_BUSES
) {
7361 dev_err(&ioa_cfg
->pdev
->dev
,
7362 "Invalid resource address reported: 0x%08X\n",
7363 IPR_GET_PHYS_LOC(bus
->res_addr
));
7367 bus_attr
= &ioa_cfg
->bus_attr
[i
];
7368 bus
->extended_reset_delay
= IPR_EXTENDED_RESET_DELAY
;
7369 bus
->bus_width
= bus_attr
->bus_width
;
7370 bus
->max_xfer_rate
= cpu_to_be32(bus_attr
->max_xfer_rate
);
7371 bus
->flags
&= ~IPR_SCSI_ATTR_QAS_MASK
;
7372 if (bus_attr
->qas_enabled
)
7373 bus
->flags
|= IPR_SCSI_ATTR_ENABLE_QAS
;
7375 bus
->flags
|= IPR_SCSI_ATTR_DISABLE_QAS
;
7380 * ipr_build_mode_select - Build a mode select command
7381 * @ipr_cmd: ipr command struct
7382 * @res_handle: resource handle to send command to
7383 * @parm: Byte 2 of Mode Sense command
7384 * @dma_addr: DMA buffer address
7385 * @xfer_len: data transfer length
7390 static void ipr_build_mode_select(struct ipr_cmnd
*ipr_cmd
,
7391 __be32 res_handle
, u8 parm
,
7392 dma_addr_t dma_addr
, u8 xfer_len
)
7394 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7396 ioarcb
->res_handle
= res_handle
;
7397 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_SCSICDB
;
7398 ioarcb
->cmd_pkt
.flags_hi
|= IPR_FLAGS_HI_WRITE_NOT_READ
;
7399 ioarcb
->cmd_pkt
.cdb
[0] = MODE_SELECT
;
7400 ioarcb
->cmd_pkt
.cdb
[1] = parm
;
7401 ioarcb
->cmd_pkt
.cdb
[4] = xfer_len
;
7403 ipr_init_ioadl(ipr_cmd
, dma_addr
, xfer_len
, IPR_IOADL_FLAGS_WRITE_LAST
);
7407 * ipr_ioafp_mode_select_page28 - Issue Mode Select Page 28 to IOA
7408 * @ipr_cmd: ipr command struct
7410 * This function sets up the SCSI bus attributes and sends
7411 * a Mode Select for Page 28 to activate them.
7416 static int ipr_ioafp_mode_select_page28(struct ipr_cmnd
*ipr_cmd
)
7418 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7419 struct ipr_mode_pages
*mode_pages
= &ioa_cfg
->vpd_cbs
->mode_pages
;
7423 ipr_scsi_bus_speed_limit(ioa_cfg
);
7424 ipr_check_term_power(ioa_cfg
, mode_pages
);
7425 ipr_modify_ioafp_mode_page_28(ioa_cfg
, mode_pages
);
7426 length
= mode_pages
->hdr
.length
+ 1;
7427 mode_pages
->hdr
.length
= 0;
7429 ipr_build_mode_select(ipr_cmd
, cpu_to_be32(IPR_IOA_RES_HANDLE
), 0x11,
7430 ioa_cfg
->vpd_cbs_dma
+ offsetof(struct ipr_misc_cbs
, mode_pages
),
7433 ipr_cmd
->job_step
= ipr_set_supported_devs
;
7434 ipr_cmd
->u
.res
= list_entry(ioa_cfg
->used_res_q
.next
,
7435 struct ipr_resource_entry
, queue
);
7436 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, IPR_INTERNAL_TIMEOUT
);
7439 return IPR_RC_JOB_RETURN
;
7443 * ipr_build_mode_sense - Builds a mode sense command
7444 * @ipr_cmd: ipr command struct
7445 * @res: resource entry struct
7446 * @parm: Byte 2 of mode sense command
7447 * @dma_addr: DMA address of mode sense buffer
7448 * @xfer_len: Size of DMA buffer
7453 static void ipr_build_mode_sense(struct ipr_cmnd
*ipr_cmd
,
7455 u8 parm
, dma_addr_t dma_addr
, u8 xfer_len
)
7457 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7459 ioarcb
->res_handle
= res_handle
;
7460 ioarcb
->cmd_pkt
.cdb
[0] = MODE_SENSE
;
7461 ioarcb
->cmd_pkt
.cdb
[2] = parm
;
7462 ioarcb
->cmd_pkt
.cdb
[4] = xfer_len
;
7463 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_SCSICDB
;
7465 ipr_init_ioadl(ipr_cmd
, dma_addr
, xfer_len
, IPR_IOADL_FLAGS_READ_LAST
);
7469 * ipr_reset_cmd_failed - Handle failure of IOA reset command
7470 * @ipr_cmd: ipr command struct
7472 * This function handles the failure of an IOA bringup command.
7477 static int ipr_reset_cmd_failed(struct ipr_cmnd
*ipr_cmd
)
7479 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7480 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
7482 dev_err(&ioa_cfg
->pdev
->dev
,
7483 "0x%02X failed with IOASC: 0x%08X\n",
7484 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[0], ioasc
);
7486 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
7487 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
7488 return IPR_RC_JOB_RETURN
;
7492 * ipr_reset_mode_sense_failed - Handle failure of IOAFP mode sense
7493 * @ipr_cmd: ipr command struct
7495 * This function handles the failure of a Mode Sense to the IOAFP.
7496 * Some adapters do not handle all mode pages.
7499 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7501 static int ipr_reset_mode_sense_failed(struct ipr_cmnd
*ipr_cmd
)
7503 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7504 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
7506 if (ioasc
== IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT
) {
7507 ipr_cmd
->job_step
= ipr_set_supported_devs
;
7508 ipr_cmd
->u
.res
= list_entry(ioa_cfg
->used_res_q
.next
,
7509 struct ipr_resource_entry
, queue
);
7510 return IPR_RC_JOB_CONTINUE
;
7513 return ipr_reset_cmd_failed(ipr_cmd
);
7517 * ipr_ioafp_mode_sense_page28 - Issue Mode Sense Page 28 to IOA
7518 * @ipr_cmd: ipr command struct
7520 * This function send a Page 28 mode sense to the IOA to
7521 * retrieve SCSI bus attributes.
7526 static int ipr_ioafp_mode_sense_page28(struct ipr_cmnd
*ipr_cmd
)
7528 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7531 ipr_build_mode_sense(ipr_cmd
, cpu_to_be32(IPR_IOA_RES_HANDLE
),
7532 0x28, ioa_cfg
->vpd_cbs_dma
+
7533 offsetof(struct ipr_misc_cbs
, mode_pages
),
7534 sizeof(struct ipr_mode_pages
));
7536 ipr_cmd
->job_step
= ipr_ioafp_mode_select_page28
;
7537 ipr_cmd
->job_step_failed
= ipr_reset_mode_sense_failed
;
7539 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, IPR_INTERNAL_TIMEOUT
);
7542 return IPR_RC_JOB_RETURN
;
7546 * ipr_ioafp_mode_select_page24 - Issue Mode Select to IOA
7547 * @ipr_cmd: ipr command struct
7549 * This function enables dual IOA RAID support if possible.
7554 static int ipr_ioafp_mode_select_page24(struct ipr_cmnd
*ipr_cmd
)
7556 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7557 struct ipr_mode_pages
*mode_pages
= &ioa_cfg
->vpd_cbs
->mode_pages
;
7558 struct ipr_mode_page24
*mode_page
;
7562 mode_page
= ipr_get_mode_page(mode_pages
, 0x24,
7563 sizeof(struct ipr_mode_page24
));
7566 mode_page
->flags
|= IPR_ENABLE_DUAL_IOA_AF
;
7568 length
= mode_pages
->hdr
.length
+ 1;
7569 mode_pages
->hdr
.length
= 0;
7571 ipr_build_mode_select(ipr_cmd
, cpu_to_be32(IPR_IOA_RES_HANDLE
), 0x11,
7572 ioa_cfg
->vpd_cbs_dma
+ offsetof(struct ipr_misc_cbs
, mode_pages
),
7575 ipr_cmd
->job_step
= ipr_ioafp_mode_sense_page28
;
7576 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, IPR_INTERNAL_TIMEOUT
);
7579 return IPR_RC_JOB_RETURN
;
7583 * ipr_reset_mode_sense_page24_failed - Handle failure of IOAFP mode sense
7584 * @ipr_cmd: ipr command struct
7586 * This function handles the failure of a Mode Sense to the IOAFP.
7587 * Some adapters do not handle all mode pages.
7590 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7592 static int ipr_reset_mode_sense_page24_failed(struct ipr_cmnd
*ipr_cmd
)
7594 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
7596 if (ioasc
== IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT
) {
7597 ipr_cmd
->job_step
= ipr_ioafp_mode_sense_page28
;
7598 return IPR_RC_JOB_CONTINUE
;
7601 return ipr_reset_cmd_failed(ipr_cmd
);
7605 * ipr_ioafp_mode_sense_page24 - Issue Page 24 Mode Sense to IOA
7606 * @ipr_cmd: ipr command struct
7608 * This function send a mode sense to the IOA to retrieve
7609 * the IOA Advanced Function Control mode page.
7614 static int ipr_ioafp_mode_sense_page24(struct ipr_cmnd
*ipr_cmd
)
7616 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7619 ipr_build_mode_sense(ipr_cmd
, cpu_to_be32(IPR_IOA_RES_HANDLE
),
7620 0x24, ioa_cfg
->vpd_cbs_dma
+
7621 offsetof(struct ipr_misc_cbs
, mode_pages
),
7622 sizeof(struct ipr_mode_pages
));
7624 ipr_cmd
->job_step
= ipr_ioafp_mode_select_page24
;
7625 ipr_cmd
->job_step_failed
= ipr_reset_mode_sense_page24_failed
;
7627 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, IPR_INTERNAL_TIMEOUT
);
7630 return IPR_RC_JOB_RETURN
;
7634 * ipr_init_res_table - Initialize the resource table
7635 * @ipr_cmd: ipr command struct
7637 * This function looks through the existing resource table, comparing
7638 * it with the config table. This function will take care of old/new
7639 * devices and schedule adding/removing them from the mid-layer
7643 * IPR_RC_JOB_CONTINUE
7645 static int ipr_init_res_table(struct ipr_cmnd
*ipr_cmd
)
7647 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7648 struct ipr_resource_entry
*res
, *temp
;
7649 struct ipr_config_table_entry_wrapper cfgtew
;
7650 int entries
, found
, flag
, i
;
7655 flag
= ioa_cfg
->u
.cfg_table64
->hdr64
.flags
;
7657 flag
= ioa_cfg
->u
.cfg_table
->hdr
.flags
;
7659 if (flag
& IPR_UCODE_DOWNLOAD_REQ
)
7660 dev_err(&ioa_cfg
->pdev
->dev
, "Microcode download required\n");
7662 list_for_each_entry_safe(res
, temp
, &ioa_cfg
->used_res_q
, queue
)
7663 list_move_tail(&res
->queue
, &old_res
);
7666 entries
= be16_to_cpu(ioa_cfg
->u
.cfg_table64
->hdr64
.num_entries
);
7668 entries
= ioa_cfg
->u
.cfg_table
->hdr
.num_entries
;
7670 for (i
= 0; i
< entries
; i
++) {
7672 cfgtew
.u
.cfgte64
= &ioa_cfg
->u
.cfg_table64
->dev
[i
];
7674 cfgtew
.u
.cfgte
= &ioa_cfg
->u
.cfg_table
->dev
[i
];
7677 list_for_each_entry_safe(res
, temp
, &old_res
, queue
) {
7678 if (ipr_is_same_device(res
, &cfgtew
)) {
7679 list_move_tail(&res
->queue
, &ioa_cfg
->used_res_q
);
7686 if (list_empty(&ioa_cfg
->free_res_q
)) {
7687 dev_err(&ioa_cfg
->pdev
->dev
, "Too many devices attached\n");
7692 res
= list_entry(ioa_cfg
->free_res_q
.next
,
7693 struct ipr_resource_entry
, queue
);
7694 list_move_tail(&res
->queue
, &ioa_cfg
->used_res_q
);
7695 ipr_init_res_entry(res
, &cfgtew
);
7697 } else if (res
->sdev
&& (ipr_is_vset_device(res
) || ipr_is_scsi_disk(res
)))
7698 res
->sdev
->allow_restart
= 1;
7701 ipr_update_res_entry(res
, &cfgtew
);
7704 list_for_each_entry_safe(res
, temp
, &old_res
, queue
) {
7706 res
->del_from_ml
= 1;
7707 res
->res_handle
= IPR_INVALID_RES_HANDLE
;
7708 list_move_tail(&res
->queue
, &ioa_cfg
->used_res_q
);
7712 list_for_each_entry_safe(res
, temp
, &old_res
, queue
) {
7713 ipr_clear_res_target(res
);
7714 list_move_tail(&res
->queue
, &ioa_cfg
->free_res_q
);
7717 if (ioa_cfg
->dual_raid
&& ipr_dual_ioa_raid
)
7718 ipr_cmd
->job_step
= ipr_ioafp_mode_sense_page24
;
7720 ipr_cmd
->job_step
= ipr_ioafp_mode_sense_page28
;
7723 return IPR_RC_JOB_CONTINUE
;
7727 * ipr_ioafp_query_ioa_cfg - Send a Query IOA Config to the adapter.
7728 * @ipr_cmd: ipr command struct
7730 * This function sends a Query IOA Configuration command
7731 * to the adapter to retrieve the IOA configuration table.
7736 static int ipr_ioafp_query_ioa_cfg(struct ipr_cmnd
*ipr_cmd
)
7738 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7739 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7740 struct ipr_inquiry_page3
*ucode_vpd
= &ioa_cfg
->vpd_cbs
->page3_data
;
7741 struct ipr_inquiry_cap
*cap
= &ioa_cfg
->vpd_cbs
->cap
;
7744 if (cap
->cap
& IPR_CAP_DUAL_IOA_RAID
)
7745 ioa_cfg
->dual_raid
= 1;
7746 dev_info(&ioa_cfg
->pdev
->dev
, "Adapter firmware version: %02X%02X%02X%02X\n",
7747 ucode_vpd
->major_release
, ucode_vpd
->card_type
,
7748 ucode_vpd
->minor_release
[0], ucode_vpd
->minor_release
[1]);
7749 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
7750 ioarcb
->res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
7752 ioarcb
->cmd_pkt
.cdb
[0] = IPR_QUERY_IOA_CONFIG
;
7753 ioarcb
->cmd_pkt
.cdb
[6] = (ioa_cfg
->cfg_table_size
>> 16) & 0xff;
7754 ioarcb
->cmd_pkt
.cdb
[7] = (ioa_cfg
->cfg_table_size
>> 8) & 0xff;
7755 ioarcb
->cmd_pkt
.cdb
[8] = ioa_cfg
->cfg_table_size
& 0xff;
7757 ipr_init_ioadl(ipr_cmd
, ioa_cfg
->cfg_table_dma
, ioa_cfg
->cfg_table_size
,
7758 IPR_IOADL_FLAGS_READ_LAST
);
7760 ipr_cmd
->job_step
= ipr_init_res_table
;
7762 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, IPR_INTERNAL_TIMEOUT
);
7765 return IPR_RC_JOB_RETURN
;
7768 static int ipr_ioa_service_action_failed(struct ipr_cmnd
*ipr_cmd
)
7770 u32 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
7772 if (ioasc
== IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT
)
7773 return IPR_RC_JOB_CONTINUE
;
7775 return ipr_reset_cmd_failed(ipr_cmd
);
7778 static void ipr_build_ioa_service_action(struct ipr_cmnd
*ipr_cmd
,
7779 __be32 res_handle
, u8 sa_code
)
7781 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7783 ioarcb
->res_handle
= res_handle
;
7784 ioarcb
->cmd_pkt
.cdb
[0] = IPR_IOA_SERVICE_ACTION
;
7785 ioarcb
->cmd_pkt
.cdb
[1] = sa_code
;
7786 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
7790 * ipr_ioafp_set_caching_parameters - Issue Set Cache parameters service
7796 static int ipr_ioafp_set_caching_parameters(struct ipr_cmnd
*ipr_cmd
)
7798 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7799 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7800 struct ipr_inquiry_pageC4
*pageC4
= &ioa_cfg
->vpd_cbs
->pageC4_data
;
7804 ipr_cmd
->job_step
= ipr_ioafp_query_ioa_cfg
;
7806 if (pageC4
->cache_cap
[0] & IPR_CAP_SYNC_CACHE
) {
7807 ipr_build_ioa_service_action(ipr_cmd
,
7808 cpu_to_be32(IPR_IOA_RES_HANDLE
),
7809 IPR_IOA_SA_CHANGE_CACHE_PARAMS
);
7811 ioarcb
->cmd_pkt
.cdb
[2] = 0x40;
7813 ipr_cmd
->job_step_failed
= ipr_ioa_service_action_failed
;
7814 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
,
7815 IPR_SET_SUP_DEVICE_TIMEOUT
);
7818 return IPR_RC_JOB_RETURN
;
7822 return IPR_RC_JOB_CONTINUE
;
7826 * ipr_ioafp_inquiry - Send an Inquiry to the adapter.
7827 * @ipr_cmd: ipr command struct
7829 * This utility function sends an inquiry to the adapter.
7834 static void ipr_ioafp_inquiry(struct ipr_cmnd
*ipr_cmd
, u8 flags
, u8 page
,
7835 dma_addr_t dma_addr
, u8 xfer_len
)
7837 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
7840 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_SCSICDB
;
7841 ioarcb
->res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
7843 ioarcb
->cmd_pkt
.cdb
[0] = INQUIRY
;
7844 ioarcb
->cmd_pkt
.cdb
[1] = flags
;
7845 ioarcb
->cmd_pkt
.cdb
[2] = page
;
7846 ioarcb
->cmd_pkt
.cdb
[4] = xfer_len
;
7848 ipr_init_ioadl(ipr_cmd
, dma_addr
, xfer_len
, IPR_IOADL_FLAGS_READ_LAST
);
7850 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, IPR_INTERNAL_TIMEOUT
);
7855 * ipr_inquiry_page_supported - Is the given inquiry page supported
7856 * @page0: inquiry page 0 buffer
7859 * This function determines if the specified inquiry page is supported.
7862 * 1 if page is supported / 0 if not
7864 static int ipr_inquiry_page_supported(struct ipr_inquiry_page0
*page0
, u8 page
)
7868 for (i
= 0; i
< min_t(u8
, page0
->len
, IPR_INQUIRY_PAGE0_ENTRIES
); i
++)
7869 if (page0
->page
[i
] == page
)
7876 * ipr_ioafp_pageC4_inquiry - Send a Page 0xC4 Inquiry to the adapter.
7877 * @ipr_cmd: ipr command struct
7879 * This function sends a Page 0xC4 inquiry to the adapter
7880 * to retrieve software VPD information.
7883 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7885 static int ipr_ioafp_pageC4_inquiry(struct ipr_cmnd
*ipr_cmd
)
7887 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7888 struct ipr_inquiry_page0
*page0
= &ioa_cfg
->vpd_cbs
->page0_data
;
7889 struct ipr_inquiry_pageC4
*pageC4
= &ioa_cfg
->vpd_cbs
->pageC4_data
;
7892 ipr_cmd
->job_step
= ipr_ioafp_set_caching_parameters
;
7893 memset(pageC4
, 0, sizeof(*pageC4
));
7895 if (ipr_inquiry_page_supported(page0
, 0xC4)) {
7896 ipr_ioafp_inquiry(ipr_cmd
, 1, 0xC4,
7897 (ioa_cfg
->vpd_cbs_dma
7898 + offsetof(struct ipr_misc_cbs
,
7900 sizeof(struct ipr_inquiry_pageC4
));
7901 return IPR_RC_JOB_RETURN
;
7905 return IPR_RC_JOB_CONTINUE
;
7909 * ipr_ioafp_cap_inquiry - Send a Page 0xD0 Inquiry to the adapter.
7910 * @ipr_cmd: ipr command struct
7912 * This function sends a Page 0xD0 inquiry to the adapter
7913 * to retrieve adapter capabilities.
7916 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7918 static int ipr_ioafp_cap_inquiry(struct ipr_cmnd
*ipr_cmd
)
7920 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7921 struct ipr_inquiry_page0
*page0
= &ioa_cfg
->vpd_cbs
->page0_data
;
7922 struct ipr_inquiry_cap
*cap
= &ioa_cfg
->vpd_cbs
->cap
;
7925 ipr_cmd
->job_step
= ipr_ioafp_pageC4_inquiry
;
7926 memset(cap
, 0, sizeof(*cap
));
7928 if (ipr_inquiry_page_supported(page0
, 0xD0)) {
7929 ipr_ioafp_inquiry(ipr_cmd
, 1, 0xD0,
7930 ioa_cfg
->vpd_cbs_dma
+ offsetof(struct ipr_misc_cbs
, cap
),
7931 sizeof(struct ipr_inquiry_cap
));
7932 return IPR_RC_JOB_RETURN
;
7936 return IPR_RC_JOB_CONTINUE
;
7940 * ipr_ioafp_page3_inquiry - Send a Page 3 Inquiry to the adapter.
7941 * @ipr_cmd: ipr command struct
7943 * This function sends a Page 3 inquiry to the adapter
7944 * to retrieve software VPD information.
7947 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7949 static int ipr_ioafp_page3_inquiry(struct ipr_cmnd
*ipr_cmd
)
7951 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7955 ipr_cmd
->job_step
= ipr_ioafp_cap_inquiry
;
7957 ipr_ioafp_inquiry(ipr_cmd
, 1, 3,
7958 ioa_cfg
->vpd_cbs_dma
+ offsetof(struct ipr_misc_cbs
, page3_data
),
7959 sizeof(struct ipr_inquiry_page3
));
7962 return IPR_RC_JOB_RETURN
;
7966 * ipr_ioafp_page0_inquiry - Send a Page 0 Inquiry to the adapter.
7967 * @ipr_cmd: ipr command struct
7969 * This function sends a Page 0 inquiry to the adapter
7970 * to retrieve supported inquiry pages.
7973 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7975 static int ipr_ioafp_page0_inquiry(struct ipr_cmnd
*ipr_cmd
)
7977 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
7982 /* Grab the type out of the VPD and store it away */
7983 memcpy(type
, ioa_cfg
->vpd_cbs
->ioa_vpd
.std_inq_data
.vpids
.product_id
, 4);
7985 ioa_cfg
->type
= simple_strtoul((char *)type
, NULL
, 16);
7987 if (ipr_invalid_adapter(ioa_cfg
)) {
7988 dev_err(&ioa_cfg
->pdev
->dev
,
7989 "Adapter not supported in this hardware configuration.\n");
7991 if (!ipr_testmode
) {
7992 ioa_cfg
->reset_retries
+= IPR_NUM_RESET_RELOAD_RETRIES
;
7993 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
7994 list_add_tail(&ipr_cmd
->queue
,
7995 &ioa_cfg
->hrrq
->hrrq_free_q
);
7996 return IPR_RC_JOB_RETURN
;
8000 ipr_cmd
->job_step
= ipr_ioafp_page3_inquiry
;
8002 ipr_ioafp_inquiry(ipr_cmd
, 1, 0,
8003 ioa_cfg
->vpd_cbs_dma
+ offsetof(struct ipr_misc_cbs
, page0_data
),
8004 sizeof(struct ipr_inquiry_page0
));
8007 return IPR_RC_JOB_RETURN
;
8011 * ipr_ioafp_std_inquiry - Send a Standard Inquiry to the adapter.
8012 * @ipr_cmd: ipr command struct
8014 * This function sends a standard inquiry to the adapter.
8019 static int ipr_ioafp_std_inquiry(struct ipr_cmnd
*ipr_cmd
)
8021 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8024 ipr_cmd
->job_step
= ipr_ioafp_page0_inquiry
;
8026 ipr_ioafp_inquiry(ipr_cmd
, 0, 0,
8027 ioa_cfg
->vpd_cbs_dma
+ offsetof(struct ipr_misc_cbs
, ioa_vpd
),
8028 sizeof(struct ipr_ioa_vpd
));
8031 return IPR_RC_JOB_RETURN
;
8035 * ipr_ioafp_identify_hrrq - Send Identify Host RRQ.
8036 * @ipr_cmd: ipr command struct
8038 * This function send an Identify Host Request Response Queue
8039 * command to establish the HRRQ with the adapter.
8044 static int ipr_ioafp_identify_hrrq(struct ipr_cmnd
*ipr_cmd
)
8046 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8047 struct ipr_ioarcb
*ioarcb
= &ipr_cmd
->ioarcb
;
8048 struct ipr_hrr_queue
*hrrq
;
8051 ipr_cmd
->job_step
= ipr_ioafp_std_inquiry
;
8052 if (ioa_cfg
->identify_hrrq_index
== 0)
8053 dev_info(&ioa_cfg
->pdev
->dev
, "Starting IOA initialization sequence.\n");
8055 if (ioa_cfg
->identify_hrrq_index
< ioa_cfg
->hrrq_num
) {
8056 hrrq
= &ioa_cfg
->hrrq
[ioa_cfg
->identify_hrrq_index
];
8058 ioarcb
->cmd_pkt
.cdb
[0] = IPR_ID_HOST_RR_Q
;
8059 ioarcb
->res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
8061 ioarcb
->cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
8063 ioarcb
->cmd_pkt
.cdb
[1] = 0x1;
8065 if (ioa_cfg
->nvectors
== 1)
8066 ioarcb
->cmd_pkt
.cdb
[1] &= ~IPR_ID_HRRQ_SELE_ENABLE
;
8068 ioarcb
->cmd_pkt
.cdb
[1] |= IPR_ID_HRRQ_SELE_ENABLE
;
8070 ioarcb
->cmd_pkt
.cdb
[2] =
8071 ((u64
) hrrq
->host_rrq_dma
>> 24) & 0xff;
8072 ioarcb
->cmd_pkt
.cdb
[3] =
8073 ((u64
) hrrq
->host_rrq_dma
>> 16) & 0xff;
8074 ioarcb
->cmd_pkt
.cdb
[4] =
8075 ((u64
) hrrq
->host_rrq_dma
>> 8) & 0xff;
8076 ioarcb
->cmd_pkt
.cdb
[5] =
8077 ((u64
) hrrq
->host_rrq_dma
) & 0xff;
8078 ioarcb
->cmd_pkt
.cdb
[7] =
8079 ((sizeof(u32
) * hrrq
->size
) >> 8) & 0xff;
8080 ioarcb
->cmd_pkt
.cdb
[8] =
8081 (sizeof(u32
) * hrrq
->size
) & 0xff;
8083 if (ioarcb
->cmd_pkt
.cdb
[1] & IPR_ID_HRRQ_SELE_ENABLE
)
8084 ioarcb
->cmd_pkt
.cdb
[9] =
8085 ioa_cfg
->identify_hrrq_index
;
8087 if (ioa_cfg
->sis64
) {
8088 ioarcb
->cmd_pkt
.cdb
[10] =
8089 ((u64
) hrrq
->host_rrq_dma
>> 56) & 0xff;
8090 ioarcb
->cmd_pkt
.cdb
[11] =
8091 ((u64
) hrrq
->host_rrq_dma
>> 48) & 0xff;
8092 ioarcb
->cmd_pkt
.cdb
[12] =
8093 ((u64
) hrrq
->host_rrq_dma
>> 40) & 0xff;
8094 ioarcb
->cmd_pkt
.cdb
[13] =
8095 ((u64
) hrrq
->host_rrq_dma
>> 32) & 0xff;
8098 if (ioarcb
->cmd_pkt
.cdb
[1] & IPR_ID_HRRQ_SELE_ENABLE
)
8099 ioarcb
->cmd_pkt
.cdb
[14] =
8100 ioa_cfg
->identify_hrrq_index
;
8102 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
,
8103 IPR_INTERNAL_TIMEOUT
);
8105 if (++ioa_cfg
->identify_hrrq_index
< ioa_cfg
->hrrq_num
)
8106 ipr_cmd
->job_step
= ipr_ioafp_identify_hrrq
;
8109 return IPR_RC_JOB_RETURN
;
8113 return IPR_RC_JOB_CONTINUE
;
8117 * ipr_reset_timer_done - Adapter reset timer function
8118 * @ipr_cmd: ipr command struct
8120 * Description: This function is used in adapter reset processing
8121 * for timing events. If the reset_cmd pointer in the IOA
8122 * config struct is not this adapter's we are doing nested
8123 * resets and fail_all_ops will take care of freeing the
8129 static void ipr_reset_timer_done(struct ipr_cmnd
*ipr_cmd
)
8131 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8132 unsigned long lock_flags
= 0;
8134 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
8136 if (ioa_cfg
->reset_cmd
== ipr_cmd
) {
8137 list_del(&ipr_cmd
->queue
);
8138 ipr_cmd
->done(ipr_cmd
);
8141 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
8145 * ipr_reset_start_timer - Start a timer for adapter reset job
8146 * @ipr_cmd: ipr command struct
8147 * @timeout: timeout value
8149 * Description: This function is used in adapter reset processing
8150 * for timing events. If the reset_cmd pointer in the IOA
8151 * config struct is not this adapter's we are doing nested
8152 * resets and fail_all_ops will take care of freeing the
8158 static void ipr_reset_start_timer(struct ipr_cmnd
*ipr_cmd
,
8159 unsigned long timeout
)
8163 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
8164 ipr_cmd
->done
= ipr_reset_ioa_job
;
8166 ipr_cmd
->timer
.data
= (unsigned long) ipr_cmd
;
8167 ipr_cmd
->timer
.expires
= jiffies
+ timeout
;
8168 ipr_cmd
->timer
.function
= (void (*)(unsigned long))ipr_reset_timer_done
;
8169 add_timer(&ipr_cmd
->timer
);
8173 * ipr_init_ioa_mem - Initialize ioa_cfg control block
8174 * @ioa_cfg: ioa cfg struct
8179 static void ipr_init_ioa_mem(struct ipr_ioa_cfg
*ioa_cfg
)
8181 struct ipr_hrr_queue
*hrrq
;
8183 for_each_hrrq(hrrq
, ioa_cfg
) {
8184 spin_lock(&hrrq
->_lock
);
8185 memset(hrrq
->host_rrq
, 0, sizeof(u32
) * hrrq
->size
);
8187 /* Initialize Host RRQ pointers */
8188 hrrq
->hrrq_start
= hrrq
->host_rrq
;
8189 hrrq
->hrrq_end
= &hrrq
->host_rrq
[hrrq
->size
- 1];
8190 hrrq
->hrrq_curr
= hrrq
->hrrq_start
;
8191 hrrq
->toggle_bit
= 1;
8192 spin_unlock(&hrrq
->_lock
);
8196 ioa_cfg
->identify_hrrq_index
= 0;
8197 if (ioa_cfg
->hrrq_num
== 1)
8198 atomic_set(&ioa_cfg
->hrrq_index
, 0);
8200 atomic_set(&ioa_cfg
->hrrq_index
, 1);
8202 /* Zero out config table */
8203 memset(ioa_cfg
->u
.cfg_table
, 0, ioa_cfg
->cfg_table_size
);
8207 * ipr_reset_next_stage - Process IPL stage change based on feedback register.
8208 * @ipr_cmd: ipr command struct
8211 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8213 static int ipr_reset_next_stage(struct ipr_cmnd
*ipr_cmd
)
8215 unsigned long stage
, stage_time
;
8217 volatile u32 int_reg
;
8218 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8221 feedback
= readl(ioa_cfg
->regs
.init_feedback_reg
);
8222 stage
= feedback
& IPR_IPL_INIT_STAGE_MASK
;
8223 stage_time
= feedback
& IPR_IPL_INIT_STAGE_TIME_MASK
;
8225 ipr_dbg("IPL stage = 0x%lx, IPL stage time = %ld\n", stage
, stage_time
);
8227 /* sanity check the stage_time value */
8228 if (stage_time
== 0)
8229 stage_time
= IPR_IPL_INIT_DEFAULT_STAGE_TIME
;
8230 else if (stage_time
< IPR_IPL_INIT_MIN_STAGE_TIME
)
8231 stage_time
= IPR_IPL_INIT_MIN_STAGE_TIME
;
8232 else if (stage_time
> IPR_LONG_OPERATIONAL_TIMEOUT
)
8233 stage_time
= IPR_LONG_OPERATIONAL_TIMEOUT
;
8235 if (stage
== IPR_IPL_INIT_STAGE_UNKNOWN
) {
8236 writel(IPR_PCII_IPL_STAGE_CHANGE
, ioa_cfg
->regs
.set_interrupt_mask_reg
);
8237 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg
);
8238 stage_time
= ioa_cfg
->transop_timeout
;
8239 ipr_cmd
->job_step
= ipr_ioafp_identify_hrrq
;
8240 } else if (stage
== IPR_IPL_INIT_STAGE_TRANSOP
) {
8241 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg32
);
8242 if (int_reg
& IPR_PCII_IOA_TRANS_TO_OPER
) {
8243 ipr_cmd
->job_step
= ipr_ioafp_identify_hrrq
;
8244 maskval
= IPR_PCII_IPL_STAGE_CHANGE
;
8245 maskval
= (maskval
<< 32) | IPR_PCII_IOA_TRANS_TO_OPER
;
8246 writeq(maskval
, ioa_cfg
->regs
.set_interrupt_mask_reg
);
8247 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg
);
8248 return IPR_RC_JOB_CONTINUE
;
8252 ipr_cmd
->timer
.data
= (unsigned long) ipr_cmd
;
8253 ipr_cmd
->timer
.expires
= jiffies
+ stage_time
* HZ
;
8254 ipr_cmd
->timer
.function
= (void (*)(unsigned long))ipr_oper_timeout
;
8255 ipr_cmd
->done
= ipr_reset_ioa_job
;
8256 add_timer(&ipr_cmd
->timer
);
8258 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
8260 return IPR_RC_JOB_RETURN
;
8264 * ipr_reset_enable_ioa - Enable the IOA following a reset.
8265 * @ipr_cmd: ipr command struct
8267 * This function reinitializes some control blocks and
8268 * enables destructive diagnostics on the adapter.
8273 static int ipr_reset_enable_ioa(struct ipr_cmnd
*ipr_cmd
)
8275 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8276 volatile u32 int_reg
;
8277 volatile u64 maskval
;
8281 ipr_cmd
->job_step
= ipr_ioafp_identify_hrrq
;
8282 ipr_init_ioa_mem(ioa_cfg
);
8284 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
8285 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
8286 ioa_cfg
->hrrq
[i
].allow_interrupts
= 1;
8287 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
8290 if (ioa_cfg
->sis64
) {
8291 /* Set the adapter to the correct endian mode. */
8292 writel(IPR_ENDIAN_SWAP_KEY
, ioa_cfg
->regs
.endian_swap_reg
);
8293 int_reg
= readl(ioa_cfg
->regs
.endian_swap_reg
);
8296 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg32
);
8298 if (int_reg
& IPR_PCII_IOA_TRANS_TO_OPER
) {
8299 writel((IPR_PCII_ERROR_INTERRUPTS
| IPR_PCII_HRRQ_UPDATED
),
8300 ioa_cfg
->regs
.clr_interrupt_mask_reg32
);
8301 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg
);
8302 return IPR_RC_JOB_CONTINUE
;
8305 /* Enable destructive diagnostics on IOA */
8306 writel(ioa_cfg
->doorbell
, ioa_cfg
->regs
.set_uproc_interrupt_reg32
);
8308 if (ioa_cfg
->sis64
) {
8309 maskval
= IPR_PCII_IPL_STAGE_CHANGE
;
8310 maskval
= (maskval
<< 32) | IPR_PCII_OPER_INTERRUPTS
;
8311 writeq(maskval
, ioa_cfg
->regs
.clr_interrupt_mask_reg
);
8313 writel(IPR_PCII_OPER_INTERRUPTS
, ioa_cfg
->regs
.clr_interrupt_mask_reg32
);
8315 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg
);
8317 dev_info(&ioa_cfg
->pdev
->dev
, "Initializing IOA.\n");
8319 if (ioa_cfg
->sis64
) {
8320 ipr_cmd
->job_step
= ipr_reset_next_stage
;
8321 return IPR_RC_JOB_CONTINUE
;
8324 ipr_cmd
->timer
.data
= (unsigned long) ipr_cmd
;
8325 ipr_cmd
->timer
.expires
= jiffies
+ (ioa_cfg
->transop_timeout
* HZ
);
8326 ipr_cmd
->timer
.function
= (void (*)(unsigned long))ipr_oper_timeout
;
8327 ipr_cmd
->done
= ipr_reset_ioa_job
;
8328 add_timer(&ipr_cmd
->timer
);
8329 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
8332 return IPR_RC_JOB_RETURN
;
8336 * ipr_reset_wait_for_dump - Wait for a dump to timeout.
8337 * @ipr_cmd: ipr command struct
8339 * This function is invoked when an adapter dump has run out
8340 * of processing time.
8343 * IPR_RC_JOB_CONTINUE
8345 static int ipr_reset_wait_for_dump(struct ipr_cmnd
*ipr_cmd
)
8347 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8349 if (ioa_cfg
->sdt_state
== GET_DUMP
)
8350 ioa_cfg
->sdt_state
= WAIT_FOR_DUMP
;
8351 else if (ioa_cfg
->sdt_state
== READ_DUMP
)
8352 ioa_cfg
->sdt_state
= ABORT_DUMP
;
8354 ioa_cfg
->dump_timeout
= 1;
8355 ipr_cmd
->job_step
= ipr_reset_alert
;
8357 return IPR_RC_JOB_CONTINUE
;
8361 * ipr_unit_check_no_data - Log a unit check/no data error log
8362 * @ioa_cfg: ioa config struct
8364 * Logs an error indicating the adapter unit checked, but for some
8365 * reason, we were unable to fetch the unit check buffer.
8370 static void ipr_unit_check_no_data(struct ipr_ioa_cfg
*ioa_cfg
)
8372 ioa_cfg
->errors_logged
++;
8373 dev_err(&ioa_cfg
->pdev
->dev
, "IOA unit check with no data\n");
8377 * ipr_get_unit_check_buffer - Get the unit check buffer from the IOA
8378 * @ioa_cfg: ioa config struct
8380 * Fetches the unit check buffer from the adapter by clocking the data
8381 * through the mailbox register.
8386 static void ipr_get_unit_check_buffer(struct ipr_ioa_cfg
*ioa_cfg
)
8388 unsigned long mailbox
;
8389 struct ipr_hostrcb
*hostrcb
;
8390 struct ipr_uc_sdt sdt
;
8394 mailbox
= readl(ioa_cfg
->ioa_mailbox
);
8396 if (!ioa_cfg
->sis64
&& !ipr_sdt_is_fmt2(mailbox
)) {
8397 ipr_unit_check_no_data(ioa_cfg
);
8401 memset(&sdt
, 0, sizeof(struct ipr_uc_sdt
));
8402 rc
= ipr_get_ldump_data_section(ioa_cfg
, mailbox
, (__be32
*) &sdt
,
8403 (sizeof(struct ipr_uc_sdt
)) / sizeof(__be32
));
8405 if (rc
|| !(sdt
.entry
[0].flags
& IPR_SDT_VALID_ENTRY
) ||
8406 ((be32_to_cpu(sdt
.hdr
.state
) != IPR_FMT3_SDT_READY_TO_USE
) &&
8407 (be32_to_cpu(sdt
.hdr
.state
) != IPR_FMT2_SDT_READY_TO_USE
))) {
8408 ipr_unit_check_no_data(ioa_cfg
);
8412 /* Find length of the first sdt entry (UC buffer) */
8413 if (be32_to_cpu(sdt
.hdr
.state
) == IPR_FMT3_SDT_READY_TO_USE
)
8414 length
= be32_to_cpu(sdt
.entry
[0].end_token
);
8416 length
= (be32_to_cpu(sdt
.entry
[0].end_token
) -
8417 be32_to_cpu(sdt
.entry
[0].start_token
)) &
8418 IPR_FMT2_MBX_ADDR_MASK
;
8420 hostrcb
= list_entry(ioa_cfg
->hostrcb_free_q
.next
,
8421 struct ipr_hostrcb
, queue
);
8422 list_del_init(&hostrcb
->queue
);
8423 memset(&hostrcb
->hcam
, 0, sizeof(hostrcb
->hcam
));
8425 rc
= ipr_get_ldump_data_section(ioa_cfg
,
8426 be32_to_cpu(sdt
.entry
[0].start_token
),
8427 (__be32
*)&hostrcb
->hcam
,
8428 min(length
, (int)sizeof(hostrcb
->hcam
)) / sizeof(__be32
));
8431 ipr_handle_log_data(ioa_cfg
, hostrcb
);
8432 ioasc
= be32_to_cpu(hostrcb
->hcam
.u
.error
.fd_ioasc
);
8433 if (ioasc
== IPR_IOASC_NR_IOA_RESET_REQUIRED
&&
8434 ioa_cfg
->sdt_state
== GET_DUMP
)
8435 ioa_cfg
->sdt_state
= WAIT_FOR_DUMP
;
8437 ipr_unit_check_no_data(ioa_cfg
);
8439 list_add_tail(&hostrcb
->queue
, &ioa_cfg
->hostrcb_free_q
);
8443 * ipr_reset_get_unit_check_job - Call to get the unit check buffer.
8444 * @ipr_cmd: ipr command struct
8446 * Description: This function will call to get the unit check buffer.
8451 static int ipr_reset_get_unit_check_job(struct ipr_cmnd
*ipr_cmd
)
8453 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8456 ioa_cfg
->ioa_unit_checked
= 0;
8457 ipr_get_unit_check_buffer(ioa_cfg
);
8458 ipr_cmd
->job_step
= ipr_reset_alert
;
8459 ipr_reset_start_timer(ipr_cmd
, 0);
8462 return IPR_RC_JOB_RETURN
;
8465 static int ipr_dump_mailbox_wait(struct ipr_cmnd
*ipr_cmd
)
8467 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8471 if (ioa_cfg
->sdt_state
!= GET_DUMP
)
8472 return IPR_RC_JOB_RETURN
;
8474 if (!ioa_cfg
->sis64
|| !ipr_cmd
->u
.time_left
||
8475 (readl(ioa_cfg
->regs
.sense_interrupt_reg
) &
8476 IPR_PCII_MAILBOX_STABLE
)) {
8478 if (!ipr_cmd
->u
.time_left
)
8479 dev_err(&ioa_cfg
->pdev
->dev
,
8480 "Timed out waiting for Mailbox register.\n");
8482 ioa_cfg
->sdt_state
= READ_DUMP
;
8483 ioa_cfg
->dump_timeout
= 0;
8485 ipr_reset_start_timer(ipr_cmd
, IPR_SIS64_DUMP_TIMEOUT
);
8487 ipr_reset_start_timer(ipr_cmd
, IPR_SIS32_DUMP_TIMEOUT
);
8488 ipr_cmd
->job_step
= ipr_reset_wait_for_dump
;
8489 schedule_work(&ioa_cfg
->work_q
);
8492 ipr_cmd
->u
.time_left
-= IPR_CHECK_FOR_RESET_TIMEOUT
;
8493 ipr_reset_start_timer(ipr_cmd
,
8494 IPR_CHECK_FOR_RESET_TIMEOUT
);
8498 return IPR_RC_JOB_RETURN
;
8502 * ipr_reset_restore_cfg_space - Restore PCI config space.
8503 * @ipr_cmd: ipr command struct
8505 * Description: This function restores the saved PCI config space of
8506 * the adapter, fails all outstanding ops back to the callers, and
8507 * fetches the dump/unit check if applicable to this reset.
8510 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8512 static int ipr_reset_restore_cfg_space(struct ipr_cmnd
*ipr_cmd
)
8514 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8518 ioa_cfg
->pdev
->state_saved
= true;
8519 pci_restore_state(ioa_cfg
->pdev
);
8521 if (ipr_set_pcix_cmd_reg(ioa_cfg
)) {
8522 ipr_cmd
->s
.ioasa
.hdr
.ioasc
= cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR
);
8523 return IPR_RC_JOB_CONTINUE
;
8526 ipr_fail_all_ops(ioa_cfg
);
8528 if (ioa_cfg
->sis64
) {
8529 /* Set the adapter to the correct endian mode. */
8530 writel(IPR_ENDIAN_SWAP_KEY
, ioa_cfg
->regs
.endian_swap_reg
);
8531 int_reg
= readl(ioa_cfg
->regs
.endian_swap_reg
);
8534 if (ioa_cfg
->ioa_unit_checked
) {
8535 if (ioa_cfg
->sis64
) {
8536 ipr_cmd
->job_step
= ipr_reset_get_unit_check_job
;
8537 ipr_reset_start_timer(ipr_cmd
, IPR_DUMP_DELAY_TIMEOUT
);
8538 return IPR_RC_JOB_RETURN
;
8540 ioa_cfg
->ioa_unit_checked
= 0;
8541 ipr_get_unit_check_buffer(ioa_cfg
);
8542 ipr_cmd
->job_step
= ipr_reset_alert
;
8543 ipr_reset_start_timer(ipr_cmd
, 0);
8544 return IPR_RC_JOB_RETURN
;
8548 if (ioa_cfg
->in_ioa_bringdown
) {
8549 ipr_cmd
->job_step
= ipr_ioa_bringdown_done
;
8550 } else if (ioa_cfg
->sdt_state
== GET_DUMP
) {
8551 ipr_cmd
->job_step
= ipr_dump_mailbox_wait
;
8552 ipr_cmd
->u
.time_left
= IPR_WAIT_FOR_MAILBOX
;
8554 ipr_cmd
->job_step
= ipr_reset_enable_ioa
;
8558 return IPR_RC_JOB_CONTINUE
;
8562 * ipr_reset_bist_done - BIST has completed on the adapter.
8563 * @ipr_cmd: ipr command struct
8565 * Description: Unblock config space and resume the reset process.
8568 * IPR_RC_JOB_CONTINUE
8570 static int ipr_reset_bist_done(struct ipr_cmnd
*ipr_cmd
)
8572 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8575 if (ioa_cfg
->cfg_locked
)
8576 pci_cfg_access_unlock(ioa_cfg
->pdev
);
8577 ioa_cfg
->cfg_locked
= 0;
8578 ipr_cmd
->job_step
= ipr_reset_restore_cfg_space
;
8580 return IPR_RC_JOB_CONTINUE
;
8584 * ipr_reset_start_bist - Run BIST on the adapter.
8585 * @ipr_cmd: ipr command struct
8587 * Description: This function runs BIST on the adapter, then delays 2 seconds.
8590 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8592 static int ipr_reset_start_bist(struct ipr_cmnd
*ipr_cmd
)
8594 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8595 int rc
= PCIBIOS_SUCCESSFUL
;
8598 if (ioa_cfg
->ipr_chip
->bist_method
== IPR_MMIO
)
8599 writel(IPR_UPROCI_SIS64_START_BIST
,
8600 ioa_cfg
->regs
.set_uproc_interrupt_reg32
);
8602 rc
= pci_write_config_byte(ioa_cfg
->pdev
, PCI_BIST
, PCI_BIST_START
);
8604 if (rc
== PCIBIOS_SUCCESSFUL
) {
8605 ipr_cmd
->job_step
= ipr_reset_bist_done
;
8606 ipr_reset_start_timer(ipr_cmd
, IPR_WAIT_FOR_BIST_TIMEOUT
);
8607 rc
= IPR_RC_JOB_RETURN
;
8609 if (ioa_cfg
->cfg_locked
)
8610 pci_cfg_access_unlock(ipr_cmd
->ioa_cfg
->pdev
);
8611 ioa_cfg
->cfg_locked
= 0;
8612 ipr_cmd
->s
.ioasa
.hdr
.ioasc
= cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR
);
8613 rc
= IPR_RC_JOB_CONTINUE
;
8621 * ipr_reset_slot_reset_done - Clear PCI reset to the adapter
8622 * @ipr_cmd: ipr command struct
8624 * Description: This clears PCI reset to the adapter and delays two seconds.
8629 static int ipr_reset_slot_reset_done(struct ipr_cmnd
*ipr_cmd
)
8632 ipr_cmd
->job_step
= ipr_reset_bist_done
;
8633 ipr_reset_start_timer(ipr_cmd
, IPR_WAIT_FOR_BIST_TIMEOUT
);
8635 return IPR_RC_JOB_RETURN
;
8639 * ipr_reset_reset_work - Pulse a PCIe fundamental reset
8640 * @work: work struct
8642 * Description: This pulses warm reset to a slot.
8645 static void ipr_reset_reset_work(struct work_struct
*work
)
8647 struct ipr_cmnd
*ipr_cmd
= container_of(work
, struct ipr_cmnd
, work
);
8648 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8649 struct pci_dev
*pdev
= ioa_cfg
->pdev
;
8650 unsigned long lock_flags
= 0;
8653 pci_set_pcie_reset_state(pdev
, pcie_warm_reset
);
8654 msleep(jiffies_to_msecs(IPR_PCI_RESET_TIMEOUT
));
8655 pci_set_pcie_reset_state(pdev
, pcie_deassert_reset
);
8657 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
8658 if (ioa_cfg
->reset_cmd
== ipr_cmd
)
8659 ipr_reset_ioa_job(ipr_cmd
);
8660 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
8665 * ipr_reset_slot_reset - Reset the PCI slot of the adapter.
8666 * @ipr_cmd: ipr command struct
8668 * Description: This asserts PCI reset to the adapter.
8673 static int ipr_reset_slot_reset(struct ipr_cmnd
*ipr_cmd
)
8675 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8678 INIT_WORK(&ipr_cmd
->work
, ipr_reset_reset_work
);
8679 queue_work(ioa_cfg
->reset_work_q
, &ipr_cmd
->work
);
8680 ipr_cmd
->job_step
= ipr_reset_slot_reset_done
;
8682 return IPR_RC_JOB_RETURN
;
8686 * ipr_reset_block_config_access_wait - Wait for permission to block config access
8687 * @ipr_cmd: ipr command struct
8689 * Description: This attempts to block config access to the IOA.
8692 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8694 static int ipr_reset_block_config_access_wait(struct ipr_cmnd
*ipr_cmd
)
8696 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8697 int rc
= IPR_RC_JOB_CONTINUE
;
8699 if (pci_cfg_access_trylock(ioa_cfg
->pdev
)) {
8700 ioa_cfg
->cfg_locked
= 1;
8701 ipr_cmd
->job_step
= ioa_cfg
->reset
;
8703 if (ipr_cmd
->u
.time_left
) {
8704 rc
= IPR_RC_JOB_RETURN
;
8705 ipr_cmd
->u
.time_left
-= IPR_CHECK_FOR_RESET_TIMEOUT
;
8706 ipr_reset_start_timer(ipr_cmd
,
8707 IPR_CHECK_FOR_RESET_TIMEOUT
);
8709 ipr_cmd
->job_step
= ioa_cfg
->reset
;
8710 dev_err(&ioa_cfg
->pdev
->dev
,
8711 "Timed out waiting to lock config access. Resetting anyway.\n");
8719 * ipr_reset_block_config_access - Block config access to the IOA
8720 * @ipr_cmd: ipr command struct
8722 * Description: This attempts to block config access to the IOA
8725 * IPR_RC_JOB_CONTINUE
8727 static int ipr_reset_block_config_access(struct ipr_cmnd
*ipr_cmd
)
8729 ipr_cmd
->ioa_cfg
->cfg_locked
= 0;
8730 ipr_cmd
->job_step
= ipr_reset_block_config_access_wait
;
8731 ipr_cmd
->u
.time_left
= IPR_WAIT_FOR_RESET_TIMEOUT
;
8732 return IPR_RC_JOB_CONTINUE
;
8736 * ipr_reset_allowed - Query whether or not IOA can be reset
8737 * @ioa_cfg: ioa config struct
8740 * 0 if reset not allowed / non-zero if reset is allowed
8742 static int ipr_reset_allowed(struct ipr_ioa_cfg
*ioa_cfg
)
8744 volatile u32 temp_reg
;
8746 temp_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
8747 return ((temp_reg
& IPR_PCII_CRITICAL_OPERATION
) == 0);
8751 * ipr_reset_wait_to_start_bist - Wait for permission to reset IOA.
8752 * @ipr_cmd: ipr command struct
8754 * Description: This function waits for adapter permission to run BIST,
8755 * then runs BIST. If the adapter does not give permission after a
8756 * reasonable time, we will reset the adapter anyway. The impact of
8757 * resetting the adapter without warning the adapter is the risk of
8758 * losing the persistent error log on the adapter. If the adapter is
8759 * reset while it is writing to the flash on the adapter, the flash
8760 * segment will have bad ECC and be zeroed.
8763 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8765 static int ipr_reset_wait_to_start_bist(struct ipr_cmnd
*ipr_cmd
)
8767 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8768 int rc
= IPR_RC_JOB_RETURN
;
8770 if (!ipr_reset_allowed(ioa_cfg
) && ipr_cmd
->u
.time_left
) {
8771 ipr_cmd
->u
.time_left
-= IPR_CHECK_FOR_RESET_TIMEOUT
;
8772 ipr_reset_start_timer(ipr_cmd
, IPR_CHECK_FOR_RESET_TIMEOUT
);
8774 ipr_cmd
->job_step
= ipr_reset_block_config_access
;
8775 rc
= IPR_RC_JOB_CONTINUE
;
8782 * ipr_reset_alert - Alert the adapter of a pending reset
8783 * @ipr_cmd: ipr command struct
8785 * Description: This function alerts the adapter that it will be reset.
8786 * If memory space is not currently enabled, proceed directly
8787 * to running BIST on the adapter. The timer must always be started
8788 * so we guarantee we do not run BIST from ipr_isr.
8793 static int ipr_reset_alert(struct ipr_cmnd
*ipr_cmd
)
8795 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8800 rc
= pci_read_config_word(ioa_cfg
->pdev
, PCI_COMMAND
, &cmd_reg
);
8802 if ((rc
== PCIBIOS_SUCCESSFUL
) && (cmd_reg
& PCI_COMMAND_MEMORY
)) {
8803 ipr_mask_and_clear_interrupts(ioa_cfg
, ~0);
8804 writel(IPR_UPROCI_RESET_ALERT
, ioa_cfg
->regs
.set_uproc_interrupt_reg32
);
8805 ipr_cmd
->job_step
= ipr_reset_wait_to_start_bist
;
8807 ipr_cmd
->job_step
= ipr_reset_block_config_access
;
8810 ipr_cmd
->u
.time_left
= IPR_WAIT_FOR_RESET_TIMEOUT
;
8811 ipr_reset_start_timer(ipr_cmd
, IPR_CHECK_FOR_RESET_TIMEOUT
);
8814 return IPR_RC_JOB_RETURN
;
8818 * ipr_reset_quiesce_done - Complete IOA disconnect
8819 * @ipr_cmd: ipr command struct
8821 * Description: Freeze the adapter to complete quiesce processing
8824 * IPR_RC_JOB_CONTINUE
8826 static int ipr_reset_quiesce_done(struct ipr_cmnd
*ipr_cmd
)
8828 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8831 ipr_cmd
->job_step
= ipr_ioa_bringdown_done
;
8832 ipr_mask_and_clear_interrupts(ioa_cfg
, ~IPR_PCII_IOA_TRANS_TO_OPER
);
8834 return IPR_RC_JOB_CONTINUE
;
8838 * ipr_reset_cancel_hcam_done - Check for outstanding commands
8839 * @ipr_cmd: ipr command struct
8841 * Description: Ensure nothing is outstanding to the IOA and
8842 * proceed with IOA disconnect. Otherwise reset the IOA.
8845 * IPR_RC_JOB_RETURN / IPR_RC_JOB_CONTINUE
8847 static int ipr_reset_cancel_hcam_done(struct ipr_cmnd
*ipr_cmd
)
8849 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8850 struct ipr_cmnd
*loop_cmd
;
8851 struct ipr_hrr_queue
*hrrq
;
8852 int rc
= IPR_RC_JOB_CONTINUE
;
8856 ipr_cmd
->job_step
= ipr_reset_quiesce_done
;
8858 for_each_hrrq(hrrq
, ioa_cfg
) {
8859 spin_lock(&hrrq
->_lock
);
8860 list_for_each_entry(loop_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
8862 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
8863 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
8864 rc
= IPR_RC_JOB_RETURN
;
8867 spin_unlock(&hrrq
->_lock
);
8878 * ipr_reset_cancel_hcam - Cancel outstanding HCAMs
8879 * @ipr_cmd: ipr command struct
8881 * Description: Cancel any oustanding HCAMs to the IOA.
8884 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8886 static int ipr_reset_cancel_hcam(struct ipr_cmnd
*ipr_cmd
)
8888 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8889 int rc
= IPR_RC_JOB_CONTINUE
;
8890 struct ipr_cmd_pkt
*cmd_pkt
;
8891 struct ipr_cmnd
*hcam_cmd
;
8892 struct ipr_hrr_queue
*hrrq
= &ioa_cfg
->hrrq
[IPR_INIT_HRRQ
];
8895 ipr_cmd
->job_step
= ipr_reset_cancel_hcam_done
;
8897 if (!hrrq
->ioa_is_dead
) {
8898 if (!list_empty(&ioa_cfg
->hostrcb_pending_q
)) {
8899 list_for_each_entry(hcam_cmd
, &hrrq
->hrrq_pending_q
, queue
) {
8900 if (hcam_cmd
->ioarcb
.cmd_pkt
.cdb
[0] != IPR_HOST_CONTROLLED_ASYNC
)
8903 ipr_cmd
->ioarcb
.res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
8904 ipr_cmd
->ioarcb
.cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
8905 cmd_pkt
= &ipr_cmd
->ioarcb
.cmd_pkt
;
8906 cmd_pkt
->request_type
= IPR_RQTYPE_IOACMD
;
8907 cmd_pkt
->cdb
[0] = IPR_CANCEL_REQUEST
;
8908 cmd_pkt
->cdb
[1] = IPR_CANCEL_64BIT_IOARCB
;
8909 cmd_pkt
->cdb
[10] = ((u64
) hcam_cmd
->dma_addr
>> 56) & 0xff;
8910 cmd_pkt
->cdb
[11] = ((u64
) hcam_cmd
->dma_addr
>> 48) & 0xff;
8911 cmd_pkt
->cdb
[12] = ((u64
) hcam_cmd
->dma_addr
>> 40) & 0xff;
8912 cmd_pkt
->cdb
[13] = ((u64
) hcam_cmd
->dma_addr
>> 32) & 0xff;
8913 cmd_pkt
->cdb
[2] = ((u64
) hcam_cmd
->dma_addr
>> 24) & 0xff;
8914 cmd_pkt
->cdb
[3] = ((u64
) hcam_cmd
->dma_addr
>> 16) & 0xff;
8915 cmd_pkt
->cdb
[4] = ((u64
) hcam_cmd
->dma_addr
>> 8) & 0xff;
8916 cmd_pkt
->cdb
[5] = ((u64
) hcam_cmd
->dma_addr
) & 0xff;
8918 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
,
8919 IPR_CANCEL_TIMEOUT
);
8921 rc
= IPR_RC_JOB_RETURN
;
8922 ipr_cmd
->job_step
= ipr_reset_cancel_hcam
;
8927 ipr_cmd
->job_step
= ipr_reset_alert
;
8934 * ipr_reset_ucode_download_done - Microcode download completion
8935 * @ipr_cmd: ipr command struct
8937 * Description: This function unmaps the microcode download buffer.
8940 * IPR_RC_JOB_CONTINUE
8942 static int ipr_reset_ucode_download_done(struct ipr_cmnd
*ipr_cmd
)
8944 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8945 struct ipr_sglist
*sglist
= ioa_cfg
->ucode_sglist
;
8947 dma_unmap_sg(&ioa_cfg
->pdev
->dev
, sglist
->scatterlist
,
8948 sglist
->num_sg
, DMA_TO_DEVICE
);
8950 ipr_cmd
->job_step
= ipr_reset_alert
;
8951 return IPR_RC_JOB_CONTINUE
;
8955 * ipr_reset_ucode_download - Download microcode to the adapter
8956 * @ipr_cmd: ipr command struct
8958 * Description: This function checks to see if it there is microcode
8959 * to download to the adapter. If there is, a download is performed.
8962 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8964 static int ipr_reset_ucode_download(struct ipr_cmnd
*ipr_cmd
)
8966 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
8967 struct ipr_sglist
*sglist
= ioa_cfg
->ucode_sglist
;
8970 ipr_cmd
->job_step
= ipr_reset_alert
;
8973 return IPR_RC_JOB_CONTINUE
;
8975 ipr_cmd
->ioarcb
.res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
8976 ipr_cmd
->ioarcb
.cmd_pkt
.request_type
= IPR_RQTYPE_SCSICDB
;
8977 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[0] = WRITE_BUFFER
;
8978 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[1] = IPR_WR_BUF_DOWNLOAD_AND_SAVE
;
8979 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[6] = (sglist
->buffer_len
& 0xff0000) >> 16;
8980 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[7] = (sglist
->buffer_len
& 0x00ff00) >> 8;
8981 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[8] = sglist
->buffer_len
& 0x0000ff;
8984 ipr_build_ucode_ioadl64(ipr_cmd
, sglist
);
8986 ipr_build_ucode_ioadl(ipr_cmd
, sglist
);
8987 ipr_cmd
->job_step
= ipr_reset_ucode_download_done
;
8989 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
,
8990 IPR_WRITE_BUFFER_TIMEOUT
);
8993 return IPR_RC_JOB_RETURN
;
8997 * ipr_reset_shutdown_ioa - Shutdown the adapter
8998 * @ipr_cmd: ipr command struct
9000 * Description: This function issues an adapter shutdown of the
9001 * specified type to the specified adapter as part of the
9002 * adapter reset job.
9005 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
9007 static int ipr_reset_shutdown_ioa(struct ipr_cmnd
*ipr_cmd
)
9009 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
9010 enum ipr_shutdown_type shutdown_type
= ipr_cmd
->u
.shutdown_type
;
9011 unsigned long timeout
;
9012 int rc
= IPR_RC_JOB_CONTINUE
;
9015 if (shutdown_type
== IPR_SHUTDOWN_QUIESCE
)
9016 ipr_cmd
->job_step
= ipr_reset_cancel_hcam
;
9017 else if (shutdown_type
!= IPR_SHUTDOWN_NONE
&&
9018 !ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
) {
9019 ipr_cmd
->ioarcb
.res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
9020 ipr_cmd
->ioarcb
.cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
9021 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[0] = IPR_IOA_SHUTDOWN
;
9022 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[1] = shutdown_type
;
9024 if (shutdown_type
== IPR_SHUTDOWN_NORMAL
)
9025 timeout
= IPR_SHUTDOWN_TIMEOUT
;
9026 else if (shutdown_type
== IPR_SHUTDOWN_PREPARE_FOR_NORMAL
)
9027 timeout
= IPR_INTERNAL_TIMEOUT
;
9028 else if (ioa_cfg
->dual_raid
&& ipr_dual_ioa_raid
)
9029 timeout
= IPR_DUAL_IOA_ABBR_SHUTDOWN_TO
;
9031 timeout
= IPR_ABBREV_SHUTDOWN_TIMEOUT
;
9033 ipr_do_req(ipr_cmd
, ipr_reset_ioa_job
, ipr_timeout
, timeout
);
9035 rc
= IPR_RC_JOB_RETURN
;
9036 ipr_cmd
->job_step
= ipr_reset_ucode_download
;
9038 ipr_cmd
->job_step
= ipr_reset_alert
;
9045 * ipr_reset_ioa_job - Adapter reset job
9046 * @ipr_cmd: ipr command struct
9048 * Description: This function is the job router for the adapter reset job.
9053 static void ipr_reset_ioa_job(struct ipr_cmnd
*ipr_cmd
)
9056 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
9059 ioasc
= be32_to_cpu(ipr_cmd
->s
.ioasa
.hdr
.ioasc
);
9061 if (ioa_cfg
->reset_cmd
!= ipr_cmd
) {
9063 * We are doing nested adapter resets and this is
9064 * not the current reset job.
9066 list_add_tail(&ipr_cmd
->queue
,
9067 &ipr_cmd
->hrrq
->hrrq_free_q
);
9071 if (IPR_IOASC_SENSE_KEY(ioasc
)) {
9072 rc
= ipr_cmd
->job_step_failed(ipr_cmd
);
9073 if (rc
== IPR_RC_JOB_RETURN
)
9077 ipr_reinit_ipr_cmnd(ipr_cmd
);
9078 ipr_cmd
->job_step_failed
= ipr_reset_cmd_failed
;
9079 rc
= ipr_cmd
->job_step(ipr_cmd
);
9080 } while (rc
== IPR_RC_JOB_CONTINUE
);
9084 * _ipr_initiate_ioa_reset - Initiate an adapter reset
9085 * @ioa_cfg: ioa config struct
9086 * @job_step: first job step of reset job
9087 * @shutdown_type: shutdown type
9089 * Description: This function will initiate the reset of the given adapter
9090 * starting at the selected job step.
9091 * If the caller needs to wait on the completion of the reset,
9092 * the caller must sleep on the reset_wait_q.
9097 static void _ipr_initiate_ioa_reset(struct ipr_ioa_cfg
*ioa_cfg
,
9098 int (*job_step
) (struct ipr_cmnd
*),
9099 enum ipr_shutdown_type shutdown_type
)
9101 struct ipr_cmnd
*ipr_cmd
;
9104 ioa_cfg
->in_reset_reload
= 1;
9105 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9106 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
9107 ioa_cfg
->hrrq
[i
].allow_cmds
= 0;
9108 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
9111 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].removing_ioa
)
9112 scsi_block_requests(ioa_cfg
->host
);
9114 ipr_cmd
= ipr_get_free_ipr_cmnd(ioa_cfg
);
9115 ioa_cfg
->reset_cmd
= ipr_cmd
;
9116 ipr_cmd
->job_step
= job_step
;
9117 ipr_cmd
->u
.shutdown_type
= shutdown_type
;
9119 ipr_reset_ioa_job(ipr_cmd
);
9123 * ipr_initiate_ioa_reset - Initiate an adapter reset
9124 * @ioa_cfg: ioa config struct
9125 * @shutdown_type: shutdown type
9127 * Description: This function will initiate the reset of the given adapter.
9128 * If the caller needs to wait on the completion of the reset,
9129 * the caller must sleep on the reset_wait_q.
9134 static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg
*ioa_cfg
,
9135 enum ipr_shutdown_type shutdown_type
)
9139 if (ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].ioa_is_dead
)
9142 if (ioa_cfg
->in_reset_reload
) {
9143 if (ioa_cfg
->sdt_state
== GET_DUMP
)
9144 ioa_cfg
->sdt_state
= WAIT_FOR_DUMP
;
9145 else if (ioa_cfg
->sdt_state
== READ_DUMP
)
9146 ioa_cfg
->sdt_state
= ABORT_DUMP
;
9149 if (ioa_cfg
->reset_retries
++ >= IPR_NUM_RESET_RELOAD_RETRIES
) {
9150 dev_err(&ioa_cfg
->pdev
->dev
,
9151 "IOA taken offline - error recovery failed\n");
9153 ioa_cfg
->reset_retries
= 0;
9154 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9155 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
9156 ioa_cfg
->hrrq
[i
].ioa_is_dead
= 1;
9157 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
9161 if (ioa_cfg
->in_ioa_bringdown
) {
9162 ioa_cfg
->reset_cmd
= NULL
;
9163 ioa_cfg
->in_reset_reload
= 0;
9164 ipr_fail_all_ops(ioa_cfg
);
9165 wake_up_all(&ioa_cfg
->reset_wait_q
);
9167 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].removing_ioa
) {
9168 spin_unlock_irq(ioa_cfg
->host
->host_lock
);
9169 scsi_unblock_requests(ioa_cfg
->host
);
9170 spin_lock_irq(ioa_cfg
->host
->host_lock
);
9174 ioa_cfg
->in_ioa_bringdown
= 1;
9175 shutdown_type
= IPR_SHUTDOWN_NONE
;
9179 _ipr_initiate_ioa_reset(ioa_cfg
, ipr_reset_shutdown_ioa
,
9184 * ipr_reset_freeze - Hold off all I/O activity
9185 * @ipr_cmd: ipr command struct
9187 * Description: If the PCI slot is frozen, hold off all I/O
9188 * activity; then, as soon as the slot is available again,
9189 * initiate an adapter reset.
9191 static int ipr_reset_freeze(struct ipr_cmnd
*ipr_cmd
)
9193 struct ipr_ioa_cfg
*ioa_cfg
= ipr_cmd
->ioa_cfg
;
9196 /* Disallow new interrupts, avoid loop */
9197 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9198 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
9199 ioa_cfg
->hrrq
[i
].allow_interrupts
= 0;
9200 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
9203 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_pending_q
);
9204 ipr_cmd
->done
= ipr_reset_ioa_job
;
9205 return IPR_RC_JOB_RETURN
;
9209 * ipr_pci_mmio_enabled - Called when MMIO has been re-enabled
9210 * @pdev: PCI device struct
9212 * Description: This routine is called to tell us that the MMIO
9213 * access to the IOA has been restored
9215 static pci_ers_result_t
ipr_pci_mmio_enabled(struct pci_dev
*pdev
)
9217 unsigned long flags
= 0;
9218 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
9220 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
9221 if (!ioa_cfg
->probe_done
)
9222 pci_save_state(pdev
);
9223 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
9224 return PCI_ERS_RESULT_NEED_RESET
;
9228 * ipr_pci_frozen - Called when slot has experienced a PCI bus error.
9229 * @pdev: PCI device struct
9231 * Description: This routine is called to tell us that the PCI bus
9232 * is down. Can't do anything here, except put the device driver
9233 * into a holding pattern, waiting for the PCI bus to come back.
9235 static void ipr_pci_frozen(struct pci_dev
*pdev
)
9237 unsigned long flags
= 0;
9238 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
9240 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
9241 if (ioa_cfg
->probe_done
)
9242 _ipr_initiate_ioa_reset(ioa_cfg
, ipr_reset_freeze
, IPR_SHUTDOWN_NONE
);
9243 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
9247 * ipr_pci_slot_reset - Called when PCI slot has been reset.
9248 * @pdev: PCI device struct
9250 * Description: This routine is called by the pci error recovery
9251 * code after the PCI slot has been reset, just before we
9252 * should resume normal operations.
9254 static pci_ers_result_t
ipr_pci_slot_reset(struct pci_dev
*pdev
)
9256 unsigned long flags
= 0;
9257 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
9259 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
9260 if (ioa_cfg
->probe_done
) {
9261 if (ioa_cfg
->needs_warm_reset
)
9262 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
9264 _ipr_initiate_ioa_reset(ioa_cfg
, ipr_reset_restore_cfg_space
,
9267 wake_up_all(&ioa_cfg
->eeh_wait_q
);
9268 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
9269 return PCI_ERS_RESULT_RECOVERED
;
9273 * ipr_pci_perm_failure - Called when PCI slot is dead for good.
9274 * @pdev: PCI device struct
9276 * Description: This routine is called when the PCI bus has
9277 * permanently failed.
9279 static void ipr_pci_perm_failure(struct pci_dev
*pdev
)
9281 unsigned long flags
= 0;
9282 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
9285 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
9286 if (ioa_cfg
->probe_done
) {
9287 if (ioa_cfg
->sdt_state
== WAIT_FOR_DUMP
)
9288 ioa_cfg
->sdt_state
= ABORT_DUMP
;
9289 ioa_cfg
->reset_retries
= IPR_NUM_RESET_RELOAD_RETRIES
- 1;
9290 ioa_cfg
->in_ioa_bringdown
= 1;
9291 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9292 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
9293 ioa_cfg
->hrrq
[i
].allow_cmds
= 0;
9294 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
9297 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
9299 wake_up_all(&ioa_cfg
->eeh_wait_q
);
9300 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
9304 * ipr_pci_error_detected - Called when a PCI error is detected.
9305 * @pdev: PCI device struct
9306 * @state: PCI channel state
9308 * Description: Called when a PCI error is detected.
9311 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
9313 static pci_ers_result_t
ipr_pci_error_detected(struct pci_dev
*pdev
,
9314 pci_channel_state_t state
)
9317 case pci_channel_io_frozen
:
9318 ipr_pci_frozen(pdev
);
9319 return PCI_ERS_RESULT_CAN_RECOVER
;
9320 case pci_channel_io_perm_failure
:
9321 ipr_pci_perm_failure(pdev
);
9322 return PCI_ERS_RESULT_DISCONNECT
;
9327 return PCI_ERS_RESULT_NEED_RESET
;
9331 * ipr_probe_ioa_part2 - Initializes IOAs found in ipr_probe_ioa(..)
9332 * @ioa_cfg: ioa cfg struct
9334 * Description: This is the second phase of adapter intialization
9335 * This function takes care of initilizing the adapter to the point
9336 * where it can accept new commands.
9339 * 0 on success / -EIO on failure
9341 static int ipr_probe_ioa_part2(struct ipr_ioa_cfg
*ioa_cfg
)
9344 unsigned long host_lock_flags
= 0;
9347 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, host_lock_flags
);
9348 dev_dbg(&ioa_cfg
->pdev
->dev
, "ioa_cfg adx: 0x%p\n", ioa_cfg
);
9349 ioa_cfg
->probe_done
= 1;
9350 if (ioa_cfg
->needs_hard_reset
) {
9351 ioa_cfg
->needs_hard_reset
= 0;
9352 ipr_initiate_ioa_reset(ioa_cfg
, IPR_SHUTDOWN_NONE
);
9354 _ipr_initiate_ioa_reset(ioa_cfg
, ipr_reset_enable_ioa
,
9356 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, host_lock_flags
);
9363 * ipr_free_cmd_blks - Frees command blocks allocated for an adapter
9364 * @ioa_cfg: ioa config struct
9369 static void ipr_free_cmd_blks(struct ipr_ioa_cfg
*ioa_cfg
)
9373 if (ioa_cfg
->ipr_cmnd_list
) {
9374 for (i
= 0; i
< IPR_NUM_CMD_BLKS
; i
++) {
9375 if (ioa_cfg
->ipr_cmnd_list
[i
])
9376 dma_pool_free(ioa_cfg
->ipr_cmd_pool
,
9377 ioa_cfg
->ipr_cmnd_list
[i
],
9378 ioa_cfg
->ipr_cmnd_list_dma
[i
]);
9380 ioa_cfg
->ipr_cmnd_list
[i
] = NULL
;
9384 if (ioa_cfg
->ipr_cmd_pool
)
9385 dma_pool_destroy(ioa_cfg
->ipr_cmd_pool
);
9387 kfree(ioa_cfg
->ipr_cmnd_list
);
9388 kfree(ioa_cfg
->ipr_cmnd_list_dma
);
9389 ioa_cfg
->ipr_cmnd_list
= NULL
;
9390 ioa_cfg
->ipr_cmnd_list_dma
= NULL
;
9391 ioa_cfg
->ipr_cmd_pool
= NULL
;
9395 * ipr_free_mem - Frees memory allocated for an adapter
9396 * @ioa_cfg: ioa cfg struct
9401 static void ipr_free_mem(struct ipr_ioa_cfg
*ioa_cfg
)
9405 kfree(ioa_cfg
->res_entries
);
9406 dma_free_coherent(&ioa_cfg
->pdev
->dev
, sizeof(struct ipr_misc_cbs
),
9407 ioa_cfg
->vpd_cbs
, ioa_cfg
->vpd_cbs_dma
);
9408 ipr_free_cmd_blks(ioa_cfg
);
9410 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++)
9411 dma_free_coherent(&ioa_cfg
->pdev
->dev
,
9412 sizeof(u32
) * ioa_cfg
->hrrq
[i
].size
,
9413 ioa_cfg
->hrrq
[i
].host_rrq
,
9414 ioa_cfg
->hrrq
[i
].host_rrq_dma
);
9416 dma_free_coherent(&ioa_cfg
->pdev
->dev
, ioa_cfg
->cfg_table_size
,
9417 ioa_cfg
->u
.cfg_table
, ioa_cfg
->cfg_table_dma
);
9419 for (i
= 0; i
< IPR_MAX_HCAMS
; i
++) {
9420 dma_free_coherent(&ioa_cfg
->pdev
->dev
,
9421 sizeof(struct ipr_hostrcb
),
9422 ioa_cfg
->hostrcb
[i
],
9423 ioa_cfg
->hostrcb_dma
[i
]);
9426 ipr_free_dump(ioa_cfg
);
9427 kfree(ioa_cfg
->trace
);
9431 * ipr_free_irqs - Free all allocated IRQs for the adapter.
9432 * @ioa_cfg: ipr cfg struct
9434 * This function frees all allocated IRQs for the
9435 * specified adapter.
9440 static void ipr_free_irqs(struct ipr_ioa_cfg
*ioa_cfg
)
9442 struct pci_dev
*pdev
= ioa_cfg
->pdev
;
9444 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
||
9445 ioa_cfg
->intr_flag
== IPR_USE_MSIX
) {
9447 for (i
= 0; i
< ioa_cfg
->nvectors
; i
++)
9448 free_irq(ioa_cfg
->vectors_info
[i
].vec
,
9451 free_irq(pdev
->irq
, &ioa_cfg
->hrrq
[0]);
9453 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
) {
9454 pci_disable_msi(pdev
);
9455 ioa_cfg
->intr_flag
&= ~IPR_USE_MSI
;
9456 } else if (ioa_cfg
->intr_flag
== IPR_USE_MSIX
) {
9457 pci_disable_msix(pdev
);
9458 ioa_cfg
->intr_flag
&= ~IPR_USE_MSIX
;
9463 * ipr_free_all_resources - Free all allocated resources for an adapter.
9464 * @ipr_cmd: ipr command struct
9466 * This function frees all allocated resources for the
9467 * specified adapter.
9472 static void ipr_free_all_resources(struct ipr_ioa_cfg
*ioa_cfg
)
9474 struct pci_dev
*pdev
= ioa_cfg
->pdev
;
9477 ipr_free_irqs(ioa_cfg
);
9478 if (ioa_cfg
->reset_work_q
)
9479 destroy_workqueue(ioa_cfg
->reset_work_q
);
9480 iounmap(ioa_cfg
->hdw_dma_regs
);
9481 pci_release_regions(pdev
);
9482 ipr_free_mem(ioa_cfg
);
9483 scsi_host_put(ioa_cfg
->host
);
9484 pci_disable_device(pdev
);
9489 * ipr_alloc_cmd_blks - Allocate command blocks for an adapter
9490 * @ioa_cfg: ioa config struct
9493 * 0 on success / -ENOMEM on allocation failure
9495 static int ipr_alloc_cmd_blks(struct ipr_ioa_cfg
*ioa_cfg
)
9497 struct ipr_cmnd
*ipr_cmd
;
9498 struct ipr_ioarcb
*ioarcb
;
9499 dma_addr_t dma_addr
;
9500 int i
, entries_each_hrrq
, hrrq_id
= 0;
9502 ioa_cfg
->ipr_cmd_pool
= dma_pool_create(IPR_NAME
, &ioa_cfg
->pdev
->dev
,
9503 sizeof(struct ipr_cmnd
), 512, 0);
9505 if (!ioa_cfg
->ipr_cmd_pool
)
9508 ioa_cfg
->ipr_cmnd_list
= kcalloc(IPR_NUM_CMD_BLKS
, sizeof(struct ipr_cmnd
*), GFP_KERNEL
);
9509 ioa_cfg
->ipr_cmnd_list_dma
= kcalloc(IPR_NUM_CMD_BLKS
, sizeof(dma_addr_t
), GFP_KERNEL
);
9511 if (!ioa_cfg
->ipr_cmnd_list
|| !ioa_cfg
->ipr_cmnd_list_dma
) {
9512 ipr_free_cmd_blks(ioa_cfg
);
9516 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9517 if (ioa_cfg
->hrrq_num
> 1) {
9519 entries_each_hrrq
= IPR_NUM_INTERNAL_CMD_BLKS
;
9520 ioa_cfg
->hrrq
[i
].min_cmd_id
= 0;
9521 ioa_cfg
->hrrq
[i
].max_cmd_id
=
9522 (entries_each_hrrq
- 1);
9525 IPR_NUM_BASE_CMD_BLKS
/
9526 (ioa_cfg
->hrrq_num
- 1);
9527 ioa_cfg
->hrrq
[i
].min_cmd_id
=
9528 IPR_NUM_INTERNAL_CMD_BLKS
+
9529 (i
- 1) * entries_each_hrrq
;
9530 ioa_cfg
->hrrq
[i
].max_cmd_id
=
9531 (IPR_NUM_INTERNAL_CMD_BLKS
+
9532 i
* entries_each_hrrq
- 1);
9535 entries_each_hrrq
= IPR_NUM_CMD_BLKS
;
9536 ioa_cfg
->hrrq
[i
].min_cmd_id
= 0;
9537 ioa_cfg
->hrrq
[i
].max_cmd_id
= (entries_each_hrrq
- 1);
9539 ioa_cfg
->hrrq
[i
].size
= entries_each_hrrq
;
9542 BUG_ON(ioa_cfg
->hrrq_num
== 0);
9544 i
= IPR_NUM_CMD_BLKS
-
9545 ioa_cfg
->hrrq
[ioa_cfg
->hrrq_num
- 1].max_cmd_id
- 1;
9547 ioa_cfg
->hrrq
[ioa_cfg
->hrrq_num
- 1].size
+= i
;
9548 ioa_cfg
->hrrq
[ioa_cfg
->hrrq_num
- 1].max_cmd_id
+= i
;
9551 for (i
= 0; i
< IPR_NUM_CMD_BLKS
; i
++) {
9552 ipr_cmd
= dma_pool_alloc(ioa_cfg
->ipr_cmd_pool
, GFP_KERNEL
, &dma_addr
);
9555 ipr_free_cmd_blks(ioa_cfg
);
9559 memset(ipr_cmd
, 0, sizeof(*ipr_cmd
));
9560 ioa_cfg
->ipr_cmnd_list
[i
] = ipr_cmd
;
9561 ioa_cfg
->ipr_cmnd_list_dma
[i
] = dma_addr
;
9563 ioarcb
= &ipr_cmd
->ioarcb
;
9564 ipr_cmd
->dma_addr
= dma_addr
;
9566 ioarcb
->a
.ioarcb_host_pci_addr64
= cpu_to_be64(dma_addr
);
9568 ioarcb
->a
.ioarcb_host_pci_addr
= cpu_to_be32(dma_addr
);
9570 ioarcb
->host_response_handle
= cpu_to_be32(i
<< 2);
9571 if (ioa_cfg
->sis64
) {
9572 ioarcb
->u
.sis64_addr_data
.data_ioadl_addr
=
9573 cpu_to_be64(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ioadl64
));
9574 ioarcb
->u
.sis64_addr_data
.ioasa_host_pci_addr
=
9575 cpu_to_be64(dma_addr
+ offsetof(struct ipr_cmnd
, s
.ioasa64
));
9577 ioarcb
->write_ioadl_addr
=
9578 cpu_to_be32(dma_addr
+ offsetof(struct ipr_cmnd
, i
.ioadl
));
9579 ioarcb
->read_ioadl_addr
= ioarcb
->write_ioadl_addr
;
9580 ioarcb
->ioasa_host_pci_addr
=
9581 cpu_to_be32(dma_addr
+ offsetof(struct ipr_cmnd
, s
.ioasa
));
9583 ioarcb
->ioasa_len
= cpu_to_be16(sizeof(struct ipr_ioasa
));
9584 ipr_cmd
->cmd_index
= i
;
9585 ipr_cmd
->ioa_cfg
= ioa_cfg
;
9586 ipr_cmd
->sense_buffer_dma
= dma_addr
+
9587 offsetof(struct ipr_cmnd
, sense_buffer
);
9589 ipr_cmd
->ioarcb
.cmd_pkt
.hrrq_id
= hrrq_id
;
9590 ipr_cmd
->hrrq
= &ioa_cfg
->hrrq
[hrrq_id
];
9591 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
9592 if (i
>= ioa_cfg
->hrrq
[hrrq_id
].max_cmd_id
)
9600 * ipr_alloc_mem - Allocate memory for an adapter
9601 * @ioa_cfg: ioa config struct
9604 * 0 on success / non-zero for error
9606 static int ipr_alloc_mem(struct ipr_ioa_cfg
*ioa_cfg
)
9608 struct pci_dev
*pdev
= ioa_cfg
->pdev
;
9609 int i
, rc
= -ENOMEM
;
9612 ioa_cfg
->res_entries
= kzalloc(sizeof(struct ipr_resource_entry
) *
9613 ioa_cfg
->max_devs_supported
, GFP_KERNEL
);
9615 if (!ioa_cfg
->res_entries
)
9618 for (i
= 0; i
< ioa_cfg
->max_devs_supported
; i
++) {
9619 list_add_tail(&ioa_cfg
->res_entries
[i
].queue
, &ioa_cfg
->free_res_q
);
9620 ioa_cfg
->res_entries
[i
].ioa_cfg
= ioa_cfg
;
9623 ioa_cfg
->vpd_cbs
= dma_alloc_coherent(&pdev
->dev
,
9624 sizeof(struct ipr_misc_cbs
),
9625 &ioa_cfg
->vpd_cbs_dma
,
9628 if (!ioa_cfg
->vpd_cbs
)
9629 goto out_free_res_entries
;
9631 if (ipr_alloc_cmd_blks(ioa_cfg
))
9632 goto out_free_vpd_cbs
;
9634 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9635 ioa_cfg
->hrrq
[i
].host_rrq
= dma_alloc_coherent(&pdev
->dev
,
9636 sizeof(u32
) * ioa_cfg
->hrrq
[i
].size
,
9637 &ioa_cfg
->hrrq
[i
].host_rrq_dma
,
9640 if (!ioa_cfg
->hrrq
[i
].host_rrq
) {
9642 dma_free_coherent(&pdev
->dev
,
9643 sizeof(u32
) * ioa_cfg
->hrrq
[i
].size
,
9644 ioa_cfg
->hrrq
[i
].host_rrq
,
9645 ioa_cfg
->hrrq
[i
].host_rrq_dma
);
9646 goto out_ipr_free_cmd_blocks
;
9648 ioa_cfg
->hrrq
[i
].ioa_cfg
= ioa_cfg
;
9651 ioa_cfg
->u
.cfg_table
= dma_alloc_coherent(&pdev
->dev
,
9652 ioa_cfg
->cfg_table_size
,
9653 &ioa_cfg
->cfg_table_dma
,
9656 if (!ioa_cfg
->u
.cfg_table
)
9657 goto out_free_host_rrq
;
9659 for (i
= 0; i
< IPR_MAX_HCAMS
; i
++) {
9660 ioa_cfg
->hostrcb
[i
] = dma_alloc_coherent(&pdev
->dev
,
9661 sizeof(struct ipr_hostrcb
),
9662 &ioa_cfg
->hostrcb_dma
[i
],
9665 if (!ioa_cfg
->hostrcb
[i
])
9666 goto out_free_hostrcb_dma
;
9668 ioa_cfg
->hostrcb
[i
]->hostrcb_dma
=
9669 ioa_cfg
->hostrcb_dma
[i
] + offsetof(struct ipr_hostrcb
, hcam
);
9670 ioa_cfg
->hostrcb
[i
]->ioa_cfg
= ioa_cfg
;
9671 list_add_tail(&ioa_cfg
->hostrcb
[i
]->queue
, &ioa_cfg
->hostrcb_free_q
);
9674 ioa_cfg
->trace
= kzalloc(sizeof(struct ipr_trace_entry
) *
9675 IPR_NUM_TRACE_ENTRIES
, GFP_KERNEL
);
9677 if (!ioa_cfg
->trace
)
9678 goto out_free_hostrcb_dma
;
9685 out_free_hostrcb_dma
:
9687 dma_free_coherent(&pdev
->dev
, sizeof(struct ipr_hostrcb
),
9688 ioa_cfg
->hostrcb
[i
],
9689 ioa_cfg
->hostrcb_dma
[i
]);
9691 dma_free_coherent(&pdev
->dev
, ioa_cfg
->cfg_table_size
,
9692 ioa_cfg
->u
.cfg_table
, ioa_cfg
->cfg_table_dma
);
9694 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
9695 dma_free_coherent(&pdev
->dev
,
9696 sizeof(u32
) * ioa_cfg
->hrrq
[i
].size
,
9697 ioa_cfg
->hrrq
[i
].host_rrq
,
9698 ioa_cfg
->hrrq
[i
].host_rrq_dma
);
9700 out_ipr_free_cmd_blocks
:
9701 ipr_free_cmd_blks(ioa_cfg
);
9703 dma_free_coherent(&pdev
->dev
, sizeof(struct ipr_misc_cbs
),
9704 ioa_cfg
->vpd_cbs
, ioa_cfg
->vpd_cbs_dma
);
9705 out_free_res_entries
:
9706 kfree(ioa_cfg
->res_entries
);
9711 * ipr_initialize_bus_attr - Initialize SCSI bus attributes to default values
9712 * @ioa_cfg: ioa config struct
9717 static void ipr_initialize_bus_attr(struct ipr_ioa_cfg
*ioa_cfg
)
9721 for (i
= 0; i
< IPR_MAX_NUM_BUSES
; i
++) {
9722 ioa_cfg
->bus_attr
[i
].bus
= i
;
9723 ioa_cfg
->bus_attr
[i
].qas_enabled
= 0;
9724 ioa_cfg
->bus_attr
[i
].bus_width
= IPR_DEFAULT_BUS_WIDTH
;
9725 if (ipr_max_speed
< ARRAY_SIZE(ipr_max_bus_speeds
))
9726 ioa_cfg
->bus_attr
[i
].max_xfer_rate
= ipr_max_bus_speeds
[ipr_max_speed
];
9728 ioa_cfg
->bus_attr
[i
].max_xfer_rate
= IPR_U160_SCSI_RATE
;
9733 * ipr_init_regs - Initialize IOA registers
9734 * @ioa_cfg: ioa config struct
9739 static void ipr_init_regs(struct ipr_ioa_cfg
*ioa_cfg
)
9741 const struct ipr_interrupt_offsets
*p
;
9742 struct ipr_interrupts
*t
;
9745 p
= &ioa_cfg
->chip_cfg
->regs
;
9747 base
= ioa_cfg
->hdw_dma_regs
;
9749 t
->set_interrupt_mask_reg
= base
+ p
->set_interrupt_mask_reg
;
9750 t
->clr_interrupt_mask_reg
= base
+ p
->clr_interrupt_mask_reg
;
9751 t
->clr_interrupt_mask_reg32
= base
+ p
->clr_interrupt_mask_reg32
;
9752 t
->sense_interrupt_mask_reg
= base
+ p
->sense_interrupt_mask_reg
;
9753 t
->sense_interrupt_mask_reg32
= base
+ p
->sense_interrupt_mask_reg32
;
9754 t
->clr_interrupt_reg
= base
+ p
->clr_interrupt_reg
;
9755 t
->clr_interrupt_reg32
= base
+ p
->clr_interrupt_reg32
;
9756 t
->sense_interrupt_reg
= base
+ p
->sense_interrupt_reg
;
9757 t
->sense_interrupt_reg32
= base
+ p
->sense_interrupt_reg32
;
9758 t
->ioarrin_reg
= base
+ p
->ioarrin_reg
;
9759 t
->sense_uproc_interrupt_reg
= base
+ p
->sense_uproc_interrupt_reg
;
9760 t
->sense_uproc_interrupt_reg32
= base
+ p
->sense_uproc_interrupt_reg32
;
9761 t
->set_uproc_interrupt_reg
= base
+ p
->set_uproc_interrupt_reg
;
9762 t
->set_uproc_interrupt_reg32
= base
+ p
->set_uproc_interrupt_reg32
;
9763 t
->clr_uproc_interrupt_reg
= base
+ p
->clr_uproc_interrupt_reg
;
9764 t
->clr_uproc_interrupt_reg32
= base
+ p
->clr_uproc_interrupt_reg32
;
9766 if (ioa_cfg
->sis64
) {
9767 t
->init_feedback_reg
= base
+ p
->init_feedback_reg
;
9768 t
->dump_addr_reg
= base
+ p
->dump_addr_reg
;
9769 t
->dump_data_reg
= base
+ p
->dump_data_reg
;
9770 t
->endian_swap_reg
= base
+ p
->endian_swap_reg
;
9775 * ipr_init_ioa_cfg - Initialize IOA config struct
9776 * @ioa_cfg: ioa config struct
9777 * @host: scsi host struct
9778 * @pdev: PCI dev struct
9783 static void ipr_init_ioa_cfg(struct ipr_ioa_cfg
*ioa_cfg
,
9784 struct Scsi_Host
*host
, struct pci_dev
*pdev
)
9788 ioa_cfg
->host
= host
;
9789 ioa_cfg
->pdev
= pdev
;
9790 ioa_cfg
->log_level
= ipr_log_level
;
9791 ioa_cfg
->doorbell
= IPR_DOORBELL
;
9792 sprintf(ioa_cfg
->eye_catcher
, IPR_EYECATCHER
);
9793 sprintf(ioa_cfg
->trace_start
, IPR_TRACE_START_LABEL
);
9794 sprintf(ioa_cfg
->cfg_table_start
, IPR_CFG_TBL_START
);
9795 sprintf(ioa_cfg
->resource_table_label
, IPR_RES_TABLE_LABEL
);
9796 sprintf(ioa_cfg
->ipr_hcam_label
, IPR_HCAM_LABEL
);
9797 sprintf(ioa_cfg
->ipr_cmd_label
, IPR_CMD_LABEL
);
9799 INIT_LIST_HEAD(&ioa_cfg
->hostrcb_free_q
);
9800 INIT_LIST_HEAD(&ioa_cfg
->hostrcb_pending_q
);
9801 INIT_LIST_HEAD(&ioa_cfg
->hostrcb_report_q
);
9802 INIT_LIST_HEAD(&ioa_cfg
->free_res_q
);
9803 INIT_LIST_HEAD(&ioa_cfg
->used_res_q
);
9804 INIT_WORK(&ioa_cfg
->work_q
, ipr_worker_thread
);
9805 init_waitqueue_head(&ioa_cfg
->reset_wait_q
);
9806 init_waitqueue_head(&ioa_cfg
->msi_wait_q
);
9807 init_waitqueue_head(&ioa_cfg
->eeh_wait_q
);
9808 ioa_cfg
->sdt_state
= INACTIVE
;
9810 ipr_initialize_bus_attr(ioa_cfg
);
9811 ioa_cfg
->max_devs_supported
= ipr_max_devs
;
9813 if (ioa_cfg
->sis64
) {
9814 host
->max_id
= IPR_MAX_SIS64_TARGETS_PER_BUS
;
9815 host
->max_lun
= IPR_MAX_SIS64_LUNS_PER_TARGET
;
9816 if (ipr_max_devs
> IPR_MAX_SIS64_DEVS
)
9817 ioa_cfg
->max_devs_supported
= IPR_MAX_SIS64_DEVS
;
9818 ioa_cfg
->cfg_table_size
= (sizeof(struct ipr_config_table_hdr64
)
9819 + ((sizeof(struct ipr_config_table_entry64
)
9820 * ioa_cfg
->max_devs_supported
)));
9822 host
->max_id
= IPR_MAX_NUM_TARGETS_PER_BUS
;
9823 host
->max_lun
= IPR_MAX_NUM_LUNS_PER_TARGET
;
9824 if (ipr_max_devs
> IPR_MAX_PHYSICAL_DEVS
)
9825 ioa_cfg
->max_devs_supported
= IPR_MAX_PHYSICAL_DEVS
;
9826 ioa_cfg
->cfg_table_size
= (sizeof(struct ipr_config_table_hdr
)
9827 + ((sizeof(struct ipr_config_table_entry
)
9828 * ioa_cfg
->max_devs_supported
)));
9831 host
->max_channel
= IPR_VSET_BUS
;
9832 host
->unique_id
= host
->host_no
;
9833 host
->max_cmd_len
= IPR_MAX_CDB_LEN
;
9834 host
->can_queue
= ioa_cfg
->max_cmds
;
9835 pci_set_drvdata(pdev
, ioa_cfg
);
9837 for (i
= 0; i
< ARRAY_SIZE(ioa_cfg
->hrrq
); i
++) {
9838 INIT_LIST_HEAD(&ioa_cfg
->hrrq
[i
].hrrq_free_q
);
9839 INIT_LIST_HEAD(&ioa_cfg
->hrrq
[i
].hrrq_pending_q
);
9840 spin_lock_init(&ioa_cfg
->hrrq
[i
]._lock
);
9842 ioa_cfg
->hrrq
[i
].lock
= ioa_cfg
->host
->host_lock
;
9844 ioa_cfg
->hrrq
[i
].lock
= &ioa_cfg
->hrrq
[i
]._lock
;
9849 * ipr_get_chip_info - Find adapter chip information
9850 * @dev_id: PCI device id struct
9853 * ptr to chip information on success / NULL on failure
9855 static const struct ipr_chip_t
*
9856 ipr_get_chip_info(const struct pci_device_id
*dev_id
)
9860 for (i
= 0; i
< ARRAY_SIZE(ipr_chip
); i
++)
9861 if (ipr_chip
[i
].vendor
== dev_id
->vendor
&&
9862 ipr_chip
[i
].device
== dev_id
->device
)
9863 return &ipr_chip
[i
];
9868 * ipr_wait_for_pci_err_recovery - Wait for any PCI error recovery to complete
9870 * @ioa_cfg: ioa config struct
9875 static void ipr_wait_for_pci_err_recovery(struct ipr_ioa_cfg
*ioa_cfg
)
9877 struct pci_dev
*pdev
= ioa_cfg
->pdev
;
9879 if (pci_channel_offline(pdev
)) {
9880 wait_event_timeout(ioa_cfg
->eeh_wait_q
,
9881 !pci_channel_offline(pdev
),
9882 IPR_PCI_ERROR_RECOVERY_TIMEOUT
);
9883 pci_restore_state(pdev
);
9887 static int ipr_enable_msix(struct ipr_ioa_cfg
*ioa_cfg
)
9889 struct msix_entry entries
[IPR_MAX_MSIX_VECTORS
];
9892 for (i
= 0; i
< ARRAY_SIZE(entries
); ++i
)
9893 entries
[i
].entry
= i
;
9895 vectors
= pci_enable_msix_range(ioa_cfg
->pdev
,
9896 entries
, 1, ipr_number_of_msix
);
9898 ipr_wait_for_pci_err_recovery(ioa_cfg
);
9902 for (i
= 0; i
< vectors
; i
++)
9903 ioa_cfg
->vectors_info
[i
].vec
= entries
[i
].vector
;
9904 ioa_cfg
->nvectors
= vectors
;
9909 static int ipr_enable_msi(struct ipr_ioa_cfg
*ioa_cfg
)
9913 vectors
= pci_enable_msi_range(ioa_cfg
->pdev
, 1, ipr_number_of_msix
);
9915 ipr_wait_for_pci_err_recovery(ioa_cfg
);
9919 for (i
= 0; i
< vectors
; i
++)
9920 ioa_cfg
->vectors_info
[i
].vec
= ioa_cfg
->pdev
->irq
+ i
;
9921 ioa_cfg
->nvectors
= vectors
;
9926 static void name_msi_vectors(struct ipr_ioa_cfg
*ioa_cfg
)
9928 int vec_idx
, n
= sizeof(ioa_cfg
->vectors_info
[0].desc
) - 1;
9930 for (vec_idx
= 0; vec_idx
< ioa_cfg
->nvectors
; vec_idx
++) {
9931 snprintf(ioa_cfg
->vectors_info
[vec_idx
].desc
, n
,
9932 "host%d-%d", ioa_cfg
->host
->host_no
, vec_idx
);
9933 ioa_cfg
->vectors_info
[vec_idx
].
9934 desc
[strlen(ioa_cfg
->vectors_info
[vec_idx
].desc
)] = 0;
9938 static int ipr_request_other_msi_irqs(struct ipr_ioa_cfg
*ioa_cfg
)
9942 for (i
= 1; i
< ioa_cfg
->nvectors
; i
++) {
9943 rc
= request_irq(ioa_cfg
->vectors_info
[i
].vec
,
9946 ioa_cfg
->vectors_info
[i
].desc
,
9950 free_irq(ioa_cfg
->vectors_info
[i
].vec
,
9959 * ipr_test_intr - Handle the interrupt generated in ipr_test_msi().
9960 * @pdev: PCI device struct
9962 * Description: Simply set the msi_received flag to 1 indicating that
9963 * Message Signaled Interrupts are supported.
9966 * 0 on success / non-zero on failure
9968 static irqreturn_t
ipr_test_intr(int irq
, void *devp
)
9970 struct ipr_ioa_cfg
*ioa_cfg
= (struct ipr_ioa_cfg
*)devp
;
9971 unsigned long lock_flags
= 0;
9972 irqreturn_t rc
= IRQ_HANDLED
;
9974 dev_info(&ioa_cfg
->pdev
->dev
, "Received IRQ : %d\n", irq
);
9975 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
9977 ioa_cfg
->msi_received
= 1;
9978 wake_up(&ioa_cfg
->msi_wait_q
);
9980 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
9985 * ipr_test_msi - Test for Message Signaled Interrupt (MSI) support.
9986 * @pdev: PCI device struct
9988 * Description: The return value from pci_enable_msi_range() can not always be
9989 * trusted. This routine sets up and initiates a test interrupt to determine
9990 * if the interrupt is received via the ipr_test_intr() service routine.
9991 * If the tests fails, the driver will fall back to LSI.
9994 * 0 on success / non-zero on failure
9996 static int ipr_test_msi(struct ipr_ioa_cfg
*ioa_cfg
, struct pci_dev
*pdev
)
9999 volatile u32 int_reg
;
10000 unsigned long lock_flags
= 0;
10004 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
10005 init_waitqueue_head(&ioa_cfg
->msi_wait_q
);
10006 ioa_cfg
->msi_received
= 0;
10007 ipr_mask_and_clear_interrupts(ioa_cfg
, ~IPR_PCII_IOA_TRANS_TO_OPER
);
10008 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE
, ioa_cfg
->regs
.clr_interrupt_mask_reg32
);
10009 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg
);
10010 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
10012 if (ioa_cfg
->intr_flag
== IPR_USE_MSIX
)
10013 rc
= request_irq(ioa_cfg
->vectors_info
[0].vec
, ipr_test_intr
, 0, IPR_NAME
, ioa_cfg
);
10015 rc
= request_irq(pdev
->irq
, ipr_test_intr
, 0, IPR_NAME
, ioa_cfg
);
10017 dev_err(&pdev
->dev
, "Can not assign irq %d\n", pdev
->irq
);
10019 } else if (ipr_debug
)
10020 dev_info(&pdev
->dev
, "IRQ assigned: %d\n", pdev
->irq
);
10022 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE
, ioa_cfg
->regs
.sense_interrupt_reg32
);
10023 int_reg
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
10024 wait_event_timeout(ioa_cfg
->msi_wait_q
, ioa_cfg
->msi_received
, HZ
);
10025 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
10026 ipr_mask_and_clear_interrupts(ioa_cfg
, ~IPR_PCII_IOA_TRANS_TO_OPER
);
10028 if (!ioa_cfg
->msi_received
) {
10029 /* MSI test failed */
10030 dev_info(&pdev
->dev
, "MSI test failed. Falling back to LSI.\n");
10032 } else if (ipr_debug
)
10033 dev_info(&pdev
->dev
, "MSI test succeeded.\n");
10035 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
10037 if (ioa_cfg
->intr_flag
== IPR_USE_MSIX
)
10038 free_irq(ioa_cfg
->vectors_info
[0].vec
, ioa_cfg
);
10040 free_irq(pdev
->irq
, ioa_cfg
);
10047 /* ipr_probe_ioa - Allocates memory and does first stage of initialization
10048 * @pdev: PCI device struct
10049 * @dev_id: PCI device id struct
10052 * 0 on success / non-zero on failure
10054 static int ipr_probe_ioa(struct pci_dev
*pdev
,
10055 const struct pci_device_id
*dev_id
)
10057 struct ipr_ioa_cfg
*ioa_cfg
;
10058 struct Scsi_Host
*host
;
10059 unsigned long ipr_regs_pci
;
10060 void __iomem
*ipr_regs
;
10061 int rc
= PCIBIOS_SUCCESSFUL
;
10062 volatile u32 mask
, uproc
, interrupts
;
10063 unsigned long lock_flags
, driver_lock_flags
;
10067 dev_info(&pdev
->dev
, "Found IOA with IRQ: %d\n", pdev
->irq
);
10068 host
= scsi_host_alloc(&driver_template
, sizeof(*ioa_cfg
));
10071 dev_err(&pdev
->dev
, "call to scsi_host_alloc failed!\n");
10076 ioa_cfg
= (struct ipr_ioa_cfg
*)host
->hostdata
;
10077 memset(ioa_cfg
, 0, sizeof(struct ipr_ioa_cfg
));
10078 ata_host_init(&ioa_cfg
->ata_host
, &pdev
->dev
, &ipr_sata_ops
);
10080 ioa_cfg
->ipr_chip
= ipr_get_chip_info(dev_id
);
10082 if (!ioa_cfg
->ipr_chip
) {
10083 dev_err(&pdev
->dev
, "Unknown adapter chipset 0x%04X 0x%04X\n",
10084 dev_id
->vendor
, dev_id
->device
);
10085 goto out_scsi_host_put
;
10088 /* set SIS 32 or SIS 64 */
10089 ioa_cfg
->sis64
= ioa_cfg
->ipr_chip
->sis_type
== IPR_SIS64
? 1 : 0;
10090 ioa_cfg
->chip_cfg
= ioa_cfg
->ipr_chip
->cfg
;
10091 ioa_cfg
->clear_isr
= ioa_cfg
->chip_cfg
->clear_isr
;
10092 ioa_cfg
->max_cmds
= ioa_cfg
->chip_cfg
->max_cmds
;
10094 if (ipr_transop_timeout
)
10095 ioa_cfg
->transop_timeout
= ipr_transop_timeout
;
10096 else if (dev_id
->driver_data
& IPR_USE_LONG_TRANSOP_TIMEOUT
)
10097 ioa_cfg
->transop_timeout
= IPR_LONG_OPERATIONAL_TIMEOUT
;
10099 ioa_cfg
->transop_timeout
= IPR_OPERATIONAL_TIMEOUT
;
10101 ioa_cfg
->revid
= pdev
->revision
;
10103 ipr_init_ioa_cfg(ioa_cfg
, host
, pdev
);
10105 ipr_regs_pci
= pci_resource_start(pdev
, 0);
10107 rc
= pci_request_regions(pdev
, IPR_NAME
);
10109 dev_err(&pdev
->dev
,
10110 "Couldn't register memory range of registers\n");
10111 goto out_scsi_host_put
;
10114 rc
= pci_enable_device(pdev
);
10116 if (rc
|| pci_channel_offline(pdev
)) {
10117 if (pci_channel_offline(pdev
)) {
10118 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10119 rc
= pci_enable_device(pdev
);
10123 dev_err(&pdev
->dev
, "Cannot enable adapter\n");
10124 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10125 goto out_release_regions
;
10129 ipr_regs
= pci_ioremap_bar(pdev
, 0);
10132 dev_err(&pdev
->dev
,
10133 "Couldn't map memory range of registers\n");
10138 ioa_cfg
->hdw_dma_regs
= ipr_regs
;
10139 ioa_cfg
->hdw_dma_regs_pci
= ipr_regs_pci
;
10140 ioa_cfg
->ioa_mailbox
= ioa_cfg
->chip_cfg
->mailbox
+ ipr_regs
;
10142 ipr_init_regs(ioa_cfg
);
10144 if (ioa_cfg
->sis64
) {
10145 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
10147 dev_dbg(&pdev
->dev
, "Failed to set 64 bit DMA mask\n");
10148 rc
= dma_set_mask_and_coherent(&pdev
->dev
,
10152 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
10155 dev_err(&pdev
->dev
, "Failed to set DMA mask\n");
10156 goto cleanup_nomem
;
10159 rc
= pci_write_config_byte(pdev
, PCI_CACHE_LINE_SIZE
,
10160 ioa_cfg
->chip_cfg
->cache_line_size
);
10162 if (rc
!= PCIBIOS_SUCCESSFUL
) {
10163 dev_err(&pdev
->dev
, "Write of cache line size failed\n");
10164 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10166 goto cleanup_nomem
;
10169 /* Issue MMIO read to ensure card is not in EEH */
10170 interrupts
= readl(ioa_cfg
->regs
.sense_interrupt_reg
);
10171 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10173 if (ipr_number_of_msix
> IPR_MAX_MSIX_VECTORS
) {
10174 dev_err(&pdev
->dev
, "The max number of MSIX is %d\n",
10175 IPR_MAX_MSIX_VECTORS
);
10176 ipr_number_of_msix
= IPR_MAX_MSIX_VECTORS
;
10179 if (ioa_cfg
->ipr_chip
->intr_type
== IPR_USE_MSI
&&
10180 ipr_enable_msix(ioa_cfg
) == 0)
10181 ioa_cfg
->intr_flag
= IPR_USE_MSIX
;
10182 else if (ioa_cfg
->ipr_chip
->intr_type
== IPR_USE_MSI
&&
10183 ipr_enable_msi(ioa_cfg
) == 0)
10184 ioa_cfg
->intr_flag
= IPR_USE_MSI
;
10186 ioa_cfg
->intr_flag
= IPR_USE_LSI
;
10187 ioa_cfg
->clear_isr
= 1;
10188 ioa_cfg
->nvectors
= 1;
10189 dev_info(&pdev
->dev
, "Cannot enable MSI.\n");
10192 pci_set_master(pdev
);
10194 if (pci_channel_offline(pdev
)) {
10195 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10196 pci_set_master(pdev
);
10197 if (pci_channel_offline(pdev
)) {
10199 goto out_msi_disable
;
10203 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
||
10204 ioa_cfg
->intr_flag
== IPR_USE_MSIX
) {
10205 rc
= ipr_test_msi(ioa_cfg
, pdev
);
10206 if (rc
== -EOPNOTSUPP
) {
10207 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10208 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
) {
10209 ioa_cfg
->intr_flag
&= ~IPR_USE_MSI
;
10210 pci_disable_msi(pdev
);
10211 } else if (ioa_cfg
->intr_flag
== IPR_USE_MSIX
) {
10212 ioa_cfg
->intr_flag
&= ~IPR_USE_MSIX
;
10213 pci_disable_msix(pdev
);
10216 ioa_cfg
->intr_flag
= IPR_USE_LSI
;
10217 ioa_cfg
->nvectors
= 1;
10220 goto out_msi_disable
;
10222 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
)
10223 dev_info(&pdev
->dev
,
10224 "Request for %d MSIs succeeded with starting IRQ: %d\n",
10225 ioa_cfg
->nvectors
, pdev
->irq
);
10226 else if (ioa_cfg
->intr_flag
== IPR_USE_MSIX
)
10227 dev_info(&pdev
->dev
,
10228 "Request for %d MSIXs succeeded.",
10229 ioa_cfg
->nvectors
);
10233 ioa_cfg
->hrrq_num
= min3(ioa_cfg
->nvectors
,
10234 (unsigned int)num_online_cpus(),
10235 (unsigned int)IPR_MAX_HRRQ_NUM
);
10237 if ((rc
= ipr_save_pcix_cmd_reg(ioa_cfg
)))
10238 goto out_msi_disable
;
10240 if ((rc
= ipr_set_pcix_cmd_reg(ioa_cfg
)))
10241 goto out_msi_disable
;
10243 rc
= ipr_alloc_mem(ioa_cfg
);
10245 dev_err(&pdev
->dev
,
10246 "Couldn't allocate enough memory for device driver!\n");
10247 goto out_msi_disable
;
10250 /* Save away PCI config space for use following IOA reset */
10251 rc
= pci_save_state(pdev
);
10253 if (rc
!= PCIBIOS_SUCCESSFUL
) {
10254 dev_err(&pdev
->dev
, "Failed to save PCI config space\n");
10256 goto cleanup_nolog
;
10260 * If HRRQ updated interrupt is not masked, or reset alert is set,
10261 * the card is in an unknown state and needs a hard reset
10263 mask
= readl(ioa_cfg
->regs
.sense_interrupt_mask_reg32
);
10264 interrupts
= readl(ioa_cfg
->regs
.sense_interrupt_reg32
);
10265 uproc
= readl(ioa_cfg
->regs
.sense_uproc_interrupt_reg32
);
10266 if ((mask
& IPR_PCII_HRRQ_UPDATED
) == 0 || (uproc
& IPR_UPROCI_RESET_ALERT
))
10267 ioa_cfg
->needs_hard_reset
= 1;
10268 if ((interrupts
& IPR_PCII_ERROR_INTERRUPTS
) || reset_devices
)
10269 ioa_cfg
->needs_hard_reset
= 1;
10270 if (interrupts
& IPR_PCII_IOA_UNIT_CHECKED
)
10271 ioa_cfg
->ioa_unit_checked
= 1;
10273 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
10274 ipr_mask_and_clear_interrupts(ioa_cfg
, ~IPR_PCII_IOA_TRANS_TO_OPER
);
10275 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
10277 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
10278 || ioa_cfg
->intr_flag
== IPR_USE_MSIX
) {
10279 name_msi_vectors(ioa_cfg
);
10280 rc
= request_irq(ioa_cfg
->vectors_info
[0].vec
, ipr_isr
,
10282 ioa_cfg
->vectors_info
[0].desc
,
10283 &ioa_cfg
->hrrq
[0]);
10285 rc
= ipr_request_other_msi_irqs(ioa_cfg
);
10287 rc
= request_irq(pdev
->irq
, ipr_isr
,
10289 IPR_NAME
, &ioa_cfg
->hrrq
[0]);
10292 dev_err(&pdev
->dev
, "Couldn't register IRQ %d! rc=%d\n",
10294 goto cleanup_nolog
;
10297 if ((dev_id
->driver_data
& IPR_USE_PCI_WARM_RESET
) ||
10298 (dev_id
->device
== PCI_DEVICE_ID_IBM_OBSIDIAN_E
&& !ioa_cfg
->revid
)) {
10299 ioa_cfg
->needs_warm_reset
= 1;
10300 ioa_cfg
->reset
= ipr_reset_slot_reset
;
10302 ioa_cfg
->reset_work_q
= alloc_ordered_workqueue("ipr_reset_%d",
10303 WQ_MEM_RECLAIM
, host
->host_no
);
10305 if (!ioa_cfg
->reset_work_q
) {
10306 dev_err(&pdev
->dev
, "Couldn't register reset workqueue\n");
10311 ioa_cfg
->reset
= ipr_reset_start_bist
;
10313 spin_lock_irqsave(&ipr_driver_lock
, driver_lock_flags
);
10314 list_add_tail(&ioa_cfg
->queue
, &ipr_ioa_head
);
10315 spin_unlock_irqrestore(&ipr_driver_lock
, driver_lock_flags
);
10322 ipr_free_irqs(ioa_cfg
);
10324 ipr_free_mem(ioa_cfg
);
10326 ipr_wait_for_pci_err_recovery(ioa_cfg
);
10327 if (ioa_cfg
->intr_flag
== IPR_USE_MSI
)
10328 pci_disable_msi(pdev
);
10329 else if (ioa_cfg
->intr_flag
== IPR_USE_MSIX
)
10330 pci_disable_msix(pdev
);
10334 pci_disable_device(pdev
);
10335 out_release_regions
:
10336 pci_release_regions(pdev
);
10338 scsi_host_put(host
);
10343 * ipr_initiate_ioa_bringdown - Bring down an adapter
10344 * @ioa_cfg: ioa config struct
10345 * @shutdown_type: shutdown type
10347 * Description: This function will initiate bringing down the adapter.
10348 * This consists of issuing an IOA shutdown to the adapter
10349 * to flush the cache, and running BIST.
10350 * If the caller needs to wait on the completion of the reset,
10351 * the caller must sleep on the reset_wait_q.
10356 static void ipr_initiate_ioa_bringdown(struct ipr_ioa_cfg
*ioa_cfg
,
10357 enum ipr_shutdown_type shutdown_type
)
10360 if (ioa_cfg
->sdt_state
== WAIT_FOR_DUMP
)
10361 ioa_cfg
->sdt_state
= ABORT_DUMP
;
10362 ioa_cfg
->reset_retries
= 0;
10363 ioa_cfg
->in_ioa_bringdown
= 1;
10364 ipr_initiate_ioa_reset(ioa_cfg
, shutdown_type
);
10369 * __ipr_remove - Remove a single adapter
10370 * @pdev: pci device struct
10372 * Adapter hot plug remove entry point.
10377 static void __ipr_remove(struct pci_dev
*pdev
)
10379 unsigned long host_lock_flags
= 0;
10380 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
10382 unsigned long driver_lock_flags
;
10385 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, host_lock_flags
);
10386 while (ioa_cfg
->in_reset_reload
) {
10387 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, host_lock_flags
);
10388 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
10389 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, host_lock_flags
);
10392 for (i
= 0; i
< ioa_cfg
->hrrq_num
; i
++) {
10393 spin_lock(&ioa_cfg
->hrrq
[i
]._lock
);
10394 ioa_cfg
->hrrq
[i
].removing_ioa
= 1;
10395 spin_unlock(&ioa_cfg
->hrrq
[i
]._lock
);
10398 ipr_initiate_ioa_bringdown(ioa_cfg
, IPR_SHUTDOWN_NORMAL
);
10400 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, host_lock_flags
);
10401 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
10402 flush_work(&ioa_cfg
->work_q
);
10403 if (ioa_cfg
->reset_work_q
)
10404 flush_workqueue(ioa_cfg
->reset_work_q
);
10405 INIT_LIST_HEAD(&ioa_cfg
->used_res_q
);
10406 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, host_lock_flags
);
10408 spin_lock_irqsave(&ipr_driver_lock
, driver_lock_flags
);
10409 list_del(&ioa_cfg
->queue
);
10410 spin_unlock_irqrestore(&ipr_driver_lock
, driver_lock_flags
);
10412 if (ioa_cfg
->sdt_state
== ABORT_DUMP
)
10413 ioa_cfg
->sdt_state
= WAIT_FOR_DUMP
;
10414 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, host_lock_flags
);
10416 ipr_free_all_resources(ioa_cfg
);
10422 * ipr_remove - IOA hot plug remove entry point
10423 * @pdev: pci device struct
10425 * Adapter hot plug remove entry point.
10430 static void ipr_remove(struct pci_dev
*pdev
)
10432 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
10436 ipr_remove_trace_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10438 ipr_remove_dump_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10440 sysfs_remove_bin_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10441 &ipr_ioa_async_err_log
);
10442 scsi_remove_host(ioa_cfg
->host
);
10444 __ipr_remove(pdev
);
10450 * ipr_probe - Adapter hot plug add entry point
10453 * 0 on success / non-zero on failure
10455 static int ipr_probe(struct pci_dev
*pdev
, const struct pci_device_id
*dev_id
)
10457 struct ipr_ioa_cfg
*ioa_cfg
;
10458 unsigned long flags
;
10461 rc
= ipr_probe_ioa(pdev
, dev_id
);
10466 ioa_cfg
= pci_get_drvdata(pdev
);
10467 rc
= ipr_probe_ioa_part2(ioa_cfg
);
10470 __ipr_remove(pdev
);
10474 rc
= scsi_add_host(ioa_cfg
->host
, &pdev
->dev
);
10477 __ipr_remove(pdev
);
10481 rc
= ipr_create_trace_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10485 scsi_remove_host(ioa_cfg
->host
);
10486 __ipr_remove(pdev
);
10490 rc
= sysfs_create_bin_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10491 &ipr_ioa_async_err_log
);
10494 ipr_remove_dump_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10496 ipr_remove_trace_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10498 scsi_remove_host(ioa_cfg
->host
);
10499 __ipr_remove(pdev
);
10503 rc
= ipr_create_dump_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10507 sysfs_remove_bin_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10508 &ipr_ioa_async_err_log
);
10509 ipr_remove_trace_file(&ioa_cfg
->host
->shost_dev
.kobj
,
10511 scsi_remove_host(ioa_cfg
->host
);
10512 __ipr_remove(pdev
);
10515 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
10516 ioa_cfg
->scan_enabled
= 1;
10517 schedule_work(&ioa_cfg
->work_q
);
10518 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
10520 ioa_cfg
->iopoll_weight
= ioa_cfg
->chip_cfg
->iopoll_weight
;
10522 if (ioa_cfg
->iopoll_weight
&& ioa_cfg
->sis64
&& ioa_cfg
->nvectors
> 1) {
10523 for (i
= 1; i
< ioa_cfg
->hrrq_num
; i
++) {
10524 irq_poll_init(&ioa_cfg
->hrrq
[i
].iopoll
,
10525 ioa_cfg
->iopoll_weight
, ipr_iopoll
);
10529 scsi_scan_host(ioa_cfg
->host
);
10535 * ipr_shutdown - Shutdown handler.
10536 * @pdev: pci device struct
10538 * This function is invoked upon system shutdown/reboot. It will issue
10539 * an adapter shutdown to the adapter to flush the write cache.
10544 static void ipr_shutdown(struct pci_dev
*pdev
)
10546 struct ipr_ioa_cfg
*ioa_cfg
= pci_get_drvdata(pdev
);
10547 unsigned long lock_flags
= 0;
10548 enum ipr_shutdown_type shutdown_type
= IPR_SHUTDOWN_NORMAL
;
10551 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
10552 if (ioa_cfg
->iopoll_weight
&& ioa_cfg
->sis64
&& ioa_cfg
->nvectors
> 1) {
10553 ioa_cfg
->iopoll_weight
= 0;
10554 for (i
= 1; i
< ioa_cfg
->hrrq_num
; i
++)
10555 irq_poll_disable(&ioa_cfg
->hrrq
[i
].iopoll
);
10558 while (ioa_cfg
->in_reset_reload
) {
10559 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
10560 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
10561 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, lock_flags
);
10564 if (ipr_fast_reboot
&& system_state
== SYSTEM_RESTART
&& ioa_cfg
->sis64
)
10565 shutdown_type
= IPR_SHUTDOWN_QUIESCE
;
10567 ipr_initiate_ioa_bringdown(ioa_cfg
, shutdown_type
);
10568 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, lock_flags
);
10569 wait_event(ioa_cfg
->reset_wait_q
, !ioa_cfg
->in_reset_reload
);
10570 if (ipr_fast_reboot
&& system_state
== SYSTEM_RESTART
&& ioa_cfg
->sis64
) {
10571 ipr_free_irqs(ioa_cfg
);
10572 pci_disable_device(ioa_cfg
->pdev
);
10576 static struct pci_device_id ipr_pci_table
[] = {
10577 { PCI_VENDOR_ID_MYLEX
, PCI_DEVICE_ID_IBM_GEMSTONE
,
10578 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_5702
, 0, 0, 0 },
10579 { PCI_VENDOR_ID_MYLEX
, PCI_DEVICE_ID_IBM_GEMSTONE
,
10580 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_5703
, 0, 0, 0 },
10581 { PCI_VENDOR_ID_MYLEX
, PCI_DEVICE_ID_IBM_GEMSTONE
,
10582 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_573D
, 0, 0, 0 },
10583 { PCI_VENDOR_ID_MYLEX
, PCI_DEVICE_ID_IBM_GEMSTONE
,
10584 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_573E
, 0, 0, 0 },
10585 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CITRINE
,
10586 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_571B
, 0, 0, 0 },
10587 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CITRINE
,
10588 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_572E
, 0, 0, 0 },
10589 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CITRINE
,
10590 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_571A
, 0, 0, 0 },
10591 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CITRINE
,
10592 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_575B
, 0, 0,
10593 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10594 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN
,
10595 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_572A
, 0, 0, 0 },
10596 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN
,
10597 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_572B
, 0, 0,
10598 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10599 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN
,
10600 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_575C
, 0, 0,
10601 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10602 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN
,
10603 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_572A
, 0, 0, 0 },
10604 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN
,
10605 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_572B
, 0, 0,
10606 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10607 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN
,
10608 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_575C
, 0, 0,
10609 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10610 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN_E
,
10611 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_574E
, 0, 0,
10612 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10613 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN_E
,
10614 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57B3
, 0, 0, 0 },
10615 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN_E
,
10616 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57CC
, 0, 0, 0 },
10617 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_OBSIDIAN_E
,
10618 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57B7
, 0, 0,
10619 IPR_USE_LONG_TRANSOP_TIMEOUT
| IPR_USE_PCI_WARM_RESET
},
10620 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_SNIPE
,
10621 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_2780
, 0, 0, 0 },
10622 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_SCAMP
,
10623 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_571E
, 0, 0, 0 },
10624 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_SCAMP
,
10625 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_571F
, 0, 0,
10626 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10627 { PCI_VENDOR_ID_ADAPTEC2
, PCI_DEVICE_ID_ADAPTEC2_SCAMP
,
10628 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_572F
, 0, 0,
10629 IPR_USE_LONG_TRANSOP_TIMEOUT
},
10630 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
,
10631 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57B5
, 0, 0, 0 },
10632 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
,
10633 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_574D
, 0, 0, 0 },
10634 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
,
10635 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57B2
, 0, 0, 0 },
10636 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
,
10637 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57C0
, 0, 0, 0 },
10638 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
,
10639 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57C3
, 0, 0, 0 },
10640 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROC_FPGA_E2
,
10641 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57C4
, 0, 0, 0 },
10642 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10643 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57B4
, 0, 0, 0 },
10644 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10645 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57B1
, 0, 0, 0 },
10646 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10647 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57C6
, 0, 0, 0 },
10648 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10649 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57C8
, 0, 0, 0 },
10650 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10651 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57CE
, 0, 0, 0 },
10652 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10653 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57D5
, 0, 0, 0 },
10654 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10655 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57D6
, 0, 0, 0 },
10656 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10657 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57D7
, 0, 0, 0 },
10658 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10659 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57D8
, 0, 0, 0 },
10660 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10661 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57D9
, 0, 0, 0 },
10662 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10663 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57DA
, 0, 0, 0 },
10664 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10665 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57EB
, 0, 0, 0 },
10666 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10667 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57EC
, 0, 0, 0 },
10668 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10669 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57ED
, 0, 0, 0 },
10670 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10671 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57EE
, 0, 0, 0 },
10672 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10673 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57EF
, 0, 0, 0 },
10674 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10675 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_57F0
, 0, 0, 0 },
10676 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10677 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_2CCA
, 0, 0, 0 },
10678 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10679 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_2CD2
, 0, 0, 0 },
10680 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CROCODILE
,
10681 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_2CCD
, 0, 0, 0 },
10682 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_RATTLESNAKE
,
10683 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_580A
, 0, 0, 0 },
10684 { PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_RATTLESNAKE
,
10685 PCI_VENDOR_ID_IBM
, IPR_SUBS_DEV_ID_580B
, 0, 0, 0 },
10688 MODULE_DEVICE_TABLE(pci
, ipr_pci_table
);
10690 static const struct pci_error_handlers ipr_err_handler
= {
10691 .error_detected
= ipr_pci_error_detected
,
10692 .mmio_enabled
= ipr_pci_mmio_enabled
,
10693 .slot_reset
= ipr_pci_slot_reset
,
10696 static struct pci_driver ipr_driver
= {
10698 .id_table
= ipr_pci_table
,
10699 .probe
= ipr_probe
,
10700 .remove
= ipr_remove
,
10701 .shutdown
= ipr_shutdown
,
10702 .err_handler
= &ipr_err_handler
,
10706 * ipr_halt_done - Shutdown prepare completion
10711 static void ipr_halt_done(struct ipr_cmnd
*ipr_cmd
)
10713 list_add_tail(&ipr_cmd
->queue
, &ipr_cmd
->hrrq
->hrrq_free_q
);
10717 * ipr_halt - Issue shutdown prepare to all adapters
10720 * NOTIFY_OK on success / NOTIFY_DONE on failure
10722 static int ipr_halt(struct notifier_block
*nb
, ulong event
, void *buf
)
10724 struct ipr_cmnd
*ipr_cmd
;
10725 struct ipr_ioa_cfg
*ioa_cfg
;
10726 unsigned long flags
= 0, driver_lock_flags
;
10728 if (event
!= SYS_RESTART
&& event
!= SYS_HALT
&& event
!= SYS_POWER_OFF
)
10729 return NOTIFY_DONE
;
10731 spin_lock_irqsave(&ipr_driver_lock
, driver_lock_flags
);
10733 list_for_each_entry(ioa_cfg
, &ipr_ioa_head
, queue
) {
10734 spin_lock_irqsave(ioa_cfg
->host
->host_lock
, flags
);
10735 if (!ioa_cfg
->hrrq
[IPR_INIT_HRRQ
].allow_cmds
||
10736 (ipr_fast_reboot
&& event
== SYS_RESTART
&& ioa_cfg
->sis64
)) {
10737 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
10741 ipr_cmd
= ipr_get_free_ipr_cmnd(ioa_cfg
);
10742 ipr_cmd
->ioarcb
.res_handle
= cpu_to_be32(IPR_IOA_RES_HANDLE
);
10743 ipr_cmd
->ioarcb
.cmd_pkt
.request_type
= IPR_RQTYPE_IOACMD
;
10744 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[0] = IPR_IOA_SHUTDOWN
;
10745 ipr_cmd
->ioarcb
.cmd_pkt
.cdb
[1] = IPR_SHUTDOWN_PREPARE_FOR_NORMAL
;
10747 ipr_do_req(ipr_cmd
, ipr_halt_done
, ipr_timeout
, IPR_DEVICE_RESET_TIMEOUT
);
10748 spin_unlock_irqrestore(ioa_cfg
->host
->host_lock
, flags
);
10750 spin_unlock_irqrestore(&ipr_driver_lock
, driver_lock_flags
);
10755 static struct notifier_block ipr_notifier
= {
10760 * ipr_init - Module entry point
10763 * 0 on success / negative value on failure
10765 static int __init
ipr_init(void)
10767 ipr_info("IBM Power RAID SCSI Device Driver version: %s %s\n",
10768 IPR_DRIVER_VERSION
, IPR_DRIVER_DATE
);
10770 register_reboot_notifier(&ipr_notifier
);
10771 return pci_register_driver(&ipr_driver
);
10775 * ipr_exit - Module unload
10777 * Module unload entry point.
10782 static void __exit
ipr_exit(void)
10784 unregister_reboot_notifier(&ipr_notifier
);
10785 pci_unregister_driver(&ipr_driver
);
10788 module_init(ipr_init
);
10789 module_exit(ipr_exit
);