1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57#include <linux/fs.h>
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>
79#include <asm/io.h>
80#include <asm/irq.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>
87#include "ipr.h"
88
89
90
91
92static LIST_HEAD(ipr_ioa_head);
93static unsigned int ipr_log_level = IPR_DEFAULT_LOG_LEVEL;
94static unsigned int ipr_max_speed = 1;
95static int ipr_testmode = 0;
96static unsigned int ipr_fastfail = 0;
97static unsigned int ipr_transop_timeout = 0;
98static unsigned int ipr_debug = 0;
99static unsigned int ipr_max_devs = IPR_DEFAULT_SIS64_DEVS;
100static unsigned int ipr_dual_ioa_raid = 1;
101static DEFINE_SPINLOCK(ipr_driver_lock);
102
103
104static const struct ipr_chip_cfg_t ipr_chip_cfg[] = {
105 {
106 .mailbox = 0x0042C,
107 .max_cmds = 100,
108 .cache_line_size = 0x20,
109 .clear_isr = 1,
110 {
111 .set_interrupt_mask_reg = 0x0022C,
112 .clr_interrupt_mask_reg = 0x00230,
113 .clr_interrupt_mask_reg32 = 0x00230,
114 .sense_interrupt_mask_reg = 0x0022C,
115 .sense_interrupt_mask_reg32 = 0x0022C,
116 .clr_interrupt_reg = 0x00228,
117 .clr_interrupt_reg32 = 0x00228,
118 .sense_interrupt_reg = 0x00224,
119 .sense_interrupt_reg32 = 0x00224,
120 .ioarrin_reg = 0x00404,
121 .sense_uproc_interrupt_reg = 0x00214,
122 .sense_uproc_interrupt_reg32 = 0x00214,
123 .set_uproc_interrupt_reg = 0x00214,
124 .set_uproc_interrupt_reg32 = 0x00214,
125 .clr_uproc_interrupt_reg = 0x00218,
126 .clr_uproc_interrupt_reg32 = 0x00218
127 }
128 },
129 {
130 .mailbox = 0x0052C,
131 .max_cmds = 100,
132 .cache_line_size = 0x20,
133 .clear_isr = 1,
134 {
135 .set_interrupt_mask_reg = 0x00288,
136 .clr_interrupt_mask_reg = 0x0028C,
137 .clr_interrupt_mask_reg32 = 0x0028C,
138 .sense_interrupt_mask_reg = 0x00288,
139 .sense_interrupt_mask_reg32 = 0x00288,
140 .clr_interrupt_reg = 0x00284,
141 .clr_interrupt_reg32 = 0x00284,
142 .sense_interrupt_reg = 0x00280,
143 .sense_interrupt_reg32 = 0x00280,
144 .ioarrin_reg = 0x00504,
145 .sense_uproc_interrupt_reg = 0x00290,
146 .sense_uproc_interrupt_reg32 = 0x00290,
147 .set_uproc_interrupt_reg = 0x00290,
148 .set_uproc_interrupt_reg32 = 0x00290,
149 .clr_uproc_interrupt_reg = 0x00294,
150 .clr_uproc_interrupt_reg32 = 0x00294
151 }
152 },
153 {
154 .mailbox = 0x00044,
155 .max_cmds = 1000,
156 .cache_line_size = 0x20,
157 .clear_isr = 0,
158 {
159 .set_interrupt_mask_reg = 0x00010,
160 .clr_interrupt_mask_reg = 0x00018,
161 .clr_interrupt_mask_reg32 = 0x0001C,
162 .sense_interrupt_mask_reg = 0x00010,
163 .sense_interrupt_mask_reg32 = 0x00014,
164 .clr_interrupt_reg = 0x00008,
165 .clr_interrupt_reg32 = 0x0000C,
166 .sense_interrupt_reg = 0x00000,
167 .sense_interrupt_reg32 = 0x00004,
168 .ioarrin_reg = 0x00070,
169 .sense_uproc_interrupt_reg = 0x00020,
170 .sense_uproc_interrupt_reg32 = 0x00024,
171 .set_uproc_interrupt_reg = 0x00020,
172 .set_uproc_interrupt_reg32 = 0x00024,
173 .clr_uproc_interrupt_reg = 0x00028,
174 .clr_uproc_interrupt_reg32 = 0x0002C,
175 .init_feedback_reg = 0x0005C,
176 .dump_addr_reg = 0x00064,
177 .dump_data_reg = 0x00068,
178 .endian_swap_reg = 0x00084
179 }
180 },
181};
182
183static const struct ipr_chip_t ipr_chip[] = {
184 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
185 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
186 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
187 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
188 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E, IPR_USE_MSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
189 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
190 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
191 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] },
192 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] }
193};
194
195static int ipr_max_bus_speeds [] = {
196 IPR_80MBs_SCSI_RATE, IPR_U160_SCSI_RATE, IPR_U320_SCSI_RATE
197};
198
199MODULE_AUTHOR("Brian King <brking@us.ibm.com>");
200MODULE_DESCRIPTION("IBM Power RAID SCSI Adapter Driver");
201module_param_named(max_speed, ipr_max_speed, uint, 0);
202MODULE_PARM_DESC(max_speed, "Maximum bus speed (0-2). Default: 1=U160. Speeds: 0=80 MB/s, 1=U160, 2=U320");
203module_param_named(log_level, ipr_log_level, uint, 0);
204MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver");
205module_param_named(testmode, ipr_testmode, int, 0);
206MODULE_PARM_DESC(testmode, "DANGEROUS!!! Allows unsupported configurations");
207module_param_named(fastfail, ipr_fastfail, int, S_IRUGO | S_IWUSR);
208MODULE_PARM_DESC(fastfail, "Reduce timeouts and retries");
209module_param_named(transop_timeout, ipr_transop_timeout, int, 0);
210MODULE_PARM_DESC(transop_timeout, "Time in seconds to wait for adapter to come operational (default: 300)");
211module_param_named(debug, ipr_debug, int, S_IRUGO | S_IWUSR);
212MODULE_PARM_DESC(debug, "Enable device driver debugging logging. Set to 1 to enable. (default: 0)");
213module_param_named(dual_ioa_raid, ipr_dual_ioa_raid, int, 0);
214MODULE_PARM_DESC(dual_ioa_raid, "Enable dual adapter RAID support. Set to 1 to enable. (default: 1)");
215module_param_named(max_devs, ipr_max_devs, int, 0);
216MODULE_PARM_DESC(max_devs, "Specify the maximum number of physical devices. "
217 "[Default=" __stringify(IPR_DEFAULT_SIS64_DEVS) "]");
218MODULE_LICENSE("GPL");
219MODULE_VERSION(IPR_DRIVER_VERSION);
220
221
222static const
223struct ipr_error_table_t ipr_error_table[] = {
224 {0x00000000, 1, IPR_DEFAULT_LOG_LEVEL,
225 "8155: An unknown error was received"},
226 {0x00330000, 0, 0,
227 "Soft underlength error"},
228 {0x005A0000, 0, 0,
229 "Command to be cancelled not found"},
230 {0x00808000, 0, 0,
231 "Qualified success"},
232 {0x01080000, 1, IPR_DEFAULT_LOG_LEVEL,
233 "FFFE: Soft device bus error recovered by the IOA"},
234 {0x01088100, 0, IPR_DEFAULT_LOG_LEVEL,
235 "4101: Soft device bus fabric error"},
236 {0x01100100, 0, IPR_DEFAULT_LOG_LEVEL,
237 "FFFC: Logical block guard error recovered by the device"},
238 {0x01100300, 0, IPR_DEFAULT_LOG_LEVEL,
239 "FFFC: Logical block reference tag error recovered by the device"},
240 {0x01108300, 0, IPR_DEFAULT_LOG_LEVEL,
241 "4171: Recovered scatter list tag / sequence number error"},
242 {0x01109000, 0, IPR_DEFAULT_LOG_LEVEL,
243 "FF3D: Recovered logical block CRC error on IOA to Host transfer"},
244 {0x01109200, 0, IPR_DEFAULT_LOG_LEVEL,
245 "4171: Recovered logical block sequence number error on IOA to Host transfer"},
246 {0x0110A000, 0, IPR_DEFAULT_LOG_LEVEL,
247 "FFFD: Recovered logical block reference tag error detected by the IOA"},
248 {0x0110A100, 0, IPR_DEFAULT_LOG_LEVEL,
249 "FFFD: Logical block guard error recovered by the IOA"},
250 {0x01170600, 0, IPR_DEFAULT_LOG_LEVEL,
251 "FFF9: Device sector reassign successful"},
252 {0x01170900, 0, IPR_DEFAULT_LOG_LEVEL,
253 "FFF7: Media error recovered by device rewrite procedures"},
254 {0x01180200, 0, IPR_DEFAULT_LOG_LEVEL,
255 "7001: IOA sector reassignment successful"},
256 {0x01180500, 0, IPR_DEFAULT_LOG_LEVEL,
257 "FFF9: Soft media error. Sector reassignment recommended"},
258 {0x01180600, 0, IPR_DEFAULT_LOG_LEVEL,
259 "FFF7: Media error recovered by IOA rewrite procedures"},
260 {0x01418000, 0, IPR_DEFAULT_LOG_LEVEL,
261 "FF3D: Soft PCI bus error recovered by the IOA"},
262 {0x01440000, 1, IPR_DEFAULT_LOG_LEVEL,
263 "FFF6: Device hardware error recovered by the IOA"},
264 {0x01448100, 0, IPR_DEFAULT_LOG_LEVEL,
265 "FFF6: Device hardware error recovered by the device"},
266 {0x01448200, 1, IPR_DEFAULT_LOG_LEVEL,
267 "FF3D: Soft IOA error recovered by the IOA"},
268 {0x01448300, 0, IPR_DEFAULT_LOG_LEVEL,
269 "FFFA: Undefined device response recovered by the IOA"},
270 {0x014A0000, 1, IPR_DEFAULT_LOG_LEVEL,
271 "FFF6: Device bus error, message or command phase"},
272 {0x014A8000, 0, IPR_DEFAULT_LOG_LEVEL,
273 "FFFE: Task Management Function failed"},
274 {0x015D0000, 0, IPR_DEFAULT_LOG_LEVEL,
275 "FFF6: Failure prediction threshold exceeded"},
276 {0x015D9200, 0, IPR_DEFAULT_LOG_LEVEL,
277 "8009: Impending cache battery pack failure"},
278 {0x02040400, 0, 0,
279 "34FF: Disk device format in progress"},
280 {0x02048000, 0, IPR_DEFAULT_LOG_LEVEL,
281 "9070: IOA requested reset"},
282 {0x023F0000, 0, 0,
283 "Synchronization required"},
284 {0x024E0000, 0, 0,
285 "No ready, IOA shutdown"},
286 {0x025A0000, 0, 0,
287 "Not ready, IOA has been shutdown"},
288 {0x02670100, 0, IPR_DEFAULT_LOG_LEVEL,
289 "3020: Storage subsystem configuration error"},
290 {0x03110B00, 0, 0,
291 "FFF5: Medium error, data unreadable, recommend reassign"},
292 {0x03110C00, 0, 0,
293 "7000: Medium error, data unreadable, do not reassign"},
294 {0x03310000, 0, IPR_DEFAULT_LOG_LEVEL,
295 "FFF3: Disk media format bad"},
296 {0x04050000, 0, IPR_DEFAULT_LOG_LEVEL,
297 "3002: Addressed device failed to respond to selection"},
298 {0x04080000, 1, IPR_DEFAULT_LOG_LEVEL,
299 "3100: Device bus error"},
300 {0x04080100, 0, IPR_DEFAULT_LOG_LEVEL,
301 "3109: IOA timed out a device command"},
302 {0x04088000, 0, 0,
303 "3120: SCSI bus is not operational"},
304 {0x04088100, 0, IPR_DEFAULT_LOG_LEVEL,
305 "4100: Hard device bus fabric error"},
306 {0x04100100, 0, IPR_DEFAULT_LOG_LEVEL,
307 "310C: Logical block guard error detected by the device"},
308 {0x04100300, 0, IPR_DEFAULT_LOG_LEVEL,
309 "310C: Logical block reference tag error detected by the device"},
310 {0x04108300, 1, IPR_DEFAULT_LOG_LEVEL,
311 "4170: Scatter list tag / sequence number error"},
312 {0x04109000, 1, IPR_DEFAULT_LOG_LEVEL,
313 "8150: Logical block CRC error on IOA to Host transfer"},
314 {0x04109200, 1, IPR_DEFAULT_LOG_LEVEL,
315 "4170: Logical block sequence number error on IOA to Host transfer"},
316 {0x0410A000, 0, IPR_DEFAULT_LOG_LEVEL,
317 "310D: Logical block reference tag error detected by the IOA"},
318 {0x0410A100, 0, IPR_DEFAULT_LOG_LEVEL,
319 "310D: Logical block guard error detected by the IOA"},
320 {0x04118000, 0, IPR_DEFAULT_LOG_LEVEL,
321 "9000: IOA reserved area data check"},
322 {0x04118100, 0, IPR_DEFAULT_LOG_LEVEL,
323 "9001: IOA reserved area invalid data pattern"},
324 {0x04118200, 0, IPR_DEFAULT_LOG_LEVEL,
325 "9002: IOA reserved area LRC error"},
326 {0x04118300, 1, IPR_DEFAULT_LOG_LEVEL,
327 "Hardware Error, IOA metadata access error"},
328 {0x04320000, 0, IPR_DEFAULT_LOG_LEVEL,
329 "102E: Out of alternate sectors for disk storage"},
330 {0x04330000, 1, IPR_DEFAULT_LOG_LEVEL,
331 "FFF4: Data transfer underlength error"},
332 {0x04338000, 1, IPR_DEFAULT_LOG_LEVEL,
333 "FFF4: Data transfer overlength error"},
334 {0x043E0100, 0, IPR_DEFAULT_LOG_LEVEL,
335 "3400: Logical unit failure"},
336 {0x04408500, 0, IPR_DEFAULT_LOG_LEVEL,
337 "FFF4: Device microcode is corrupt"},
338 {0x04418000, 1, IPR_DEFAULT_LOG_LEVEL,
339 "8150: PCI bus error"},
340 {0x04430000, 1, 0,
341 "Unsupported device bus message received"},
342 {0x04440000, 1, IPR_DEFAULT_LOG_LEVEL,
343 "FFF4: Disk device problem"},
344 {0x04448200, 1, IPR_DEFAULT_LOG_LEVEL,
345 "8150: Permanent IOA failure"},
346 {0x04448300, 0, IPR_DEFAULT_LOG_LEVEL,
347 "3010: Disk device returned wrong response to IOA"},
348 {0x04448400, 0, IPR_DEFAULT_LOG_LEVEL,
349 "8151: IOA microcode error"},
350 {0x04448500, 0, 0,
351 "Device bus status error"},
352 {0x04448600, 0, IPR_DEFAULT_LOG_LEVEL,
353 "8157: IOA error requiring IOA reset to recover"},
354 {0x04448700, 0, 0,
355 "ATA device status error"},
356 {0x04490000, 0, 0,
357 "Message reject received from the device"},
358 {0x04449200, 0, IPR_DEFAULT_LOG_LEVEL,
359 "8008: A permanent cache battery pack failure occurred"},
360 {0x0444A000, 0, IPR_DEFAULT_LOG_LEVEL,
361 "9090: Disk unit has been modified after the last known status"},
362 {0x0444A200, 0, IPR_DEFAULT_LOG_LEVEL,
363 "9081: IOA detected device error"},
364 {0x0444A300, 0, IPR_DEFAULT_LOG_LEVEL,
365 "9082: IOA detected device error"},
366 {0x044A0000, 1, IPR_DEFAULT_LOG_LEVEL,
367 "3110: Device bus error, message or command phase"},
368 {0x044A8000, 1, IPR_DEFAULT_LOG_LEVEL,
369 "3110: SAS Command / Task Management Function failed"},
370 {0x04670400, 0, IPR_DEFAULT_LOG_LEVEL,
371 "9091: Incorrect hardware configuration change has been detected"},
372 {0x04678000, 0, IPR_DEFAULT_LOG_LEVEL,
373 "9073: Invalid multi-adapter configuration"},
374 {0x04678100, 0, IPR_DEFAULT_LOG_LEVEL,
375 "4010: Incorrect connection between cascaded expanders"},
376 {0x04678200, 0, IPR_DEFAULT_LOG_LEVEL,
377 "4020: Connections exceed IOA design limits"},
378 {0x04678300, 0, IPR_DEFAULT_LOG_LEVEL,
379 "4030: Incorrect multipath connection"},
380 {0x04679000, 0, IPR_DEFAULT_LOG_LEVEL,
381 "4110: Unsupported enclosure function"},
382 {0x046E0000, 0, IPR_DEFAULT_LOG_LEVEL,
383 "FFF4: Command to logical unit failed"},
384 {0x05240000, 1, 0,
385 "Illegal request, invalid request type or request packet"},
386 {0x05250000, 0, 0,
387 "Illegal request, invalid resource handle"},
388 {0x05258000, 0, 0,
389 "Illegal request, commands not allowed to this device"},
390 {0x05258100, 0, 0,
391 "Illegal request, command not allowed to a secondary adapter"},
392 {0x05258200, 0, 0,
393 "Illegal request, command not allowed to a non-optimized resource"},
394 {0x05260000, 0, 0,
395 "Illegal request, invalid field in parameter list"},
396 {0x05260100, 0, 0,
397 "Illegal request, parameter not supported"},
398 {0x05260200, 0, 0,
399 "Illegal request, parameter value invalid"},
400 {0x052C0000, 0, 0,
401 "Illegal request, command sequence error"},
402 {0x052C8000, 1, 0,
403 "Illegal request, dual adapter support not enabled"},
404 {0x06040500, 0, IPR_DEFAULT_LOG_LEVEL,
405 "9031: Array protection temporarily suspended, protection resuming"},
406 {0x06040600, 0, IPR_DEFAULT_LOG_LEVEL,
407 "9040: Array protection temporarily suspended, protection resuming"},
408 {0x06288000, 0, IPR_DEFAULT_LOG_LEVEL,
409 "3140: Device bus not ready to ready transition"},
410 {0x06290000, 0, IPR_DEFAULT_LOG_LEVEL,
411 "FFFB: SCSI bus was reset"},
412 {0x06290500, 0, 0,
413 "FFFE: SCSI bus transition to single ended"},
414 {0x06290600, 0, 0,
415 "FFFE: SCSI bus transition to LVD"},
416 {0x06298000, 0, IPR_DEFAULT_LOG_LEVEL,
417 "FFFB: SCSI bus was reset by another initiator"},
418 {0x063F0300, 0, IPR_DEFAULT_LOG_LEVEL,
419 "3029: A device replacement has occurred"},
420 {0x064C8000, 0, IPR_DEFAULT_LOG_LEVEL,
421 "9051: IOA cache data exists for a missing or failed device"},
422 {0x064C8100, 0, IPR_DEFAULT_LOG_LEVEL,
423 "9055: Auxiliary cache IOA contains cache data needed by the primary IOA"},
424 {0x06670100, 0, IPR_DEFAULT_LOG_LEVEL,
425 "9025: Disk unit is not supported at its physical location"},
426 {0x06670600, 0, IPR_DEFAULT_LOG_LEVEL,
427 "3020: IOA detected a SCSI bus configuration error"},
428 {0x06678000, 0, IPR_DEFAULT_LOG_LEVEL,
429 "3150: SCSI bus configuration error"},
430 {0x06678100, 0, IPR_DEFAULT_LOG_LEVEL,
431 "9074: Asymmetric advanced function disk configuration"},
432 {0x06678300, 0, IPR_DEFAULT_LOG_LEVEL,
433 "4040: Incomplete multipath connection between IOA and enclosure"},
434 {0x06678400, 0, IPR_DEFAULT_LOG_LEVEL,
435 "4041: Incomplete multipath connection between enclosure and device"},
436 {0x06678500, 0, IPR_DEFAULT_LOG_LEVEL,
437 "9075: Incomplete multipath connection between IOA and remote IOA"},
438 {0x06678600, 0, IPR_DEFAULT_LOG_LEVEL,
439 "9076: Configuration error, missing remote IOA"},
440 {0x06679100, 0, IPR_DEFAULT_LOG_LEVEL,
441 "4050: Enclosure does not support a required multipath function"},
442 {0x06690000, 0, IPR_DEFAULT_LOG_LEVEL,
443 "4070: Logically bad block written on device"},
444 {0x06690200, 0, IPR_DEFAULT_LOG_LEVEL,
445 "9041: Array protection temporarily suspended"},
446 {0x06698200, 0, IPR_DEFAULT_LOG_LEVEL,
447 "9042: Corrupt array parity detected on specified device"},
448 {0x066B0200, 0, IPR_DEFAULT_LOG_LEVEL,
449 "9030: Array no longer protected due to missing or failed disk unit"},
450 {0x066B8000, 0, IPR_DEFAULT_LOG_LEVEL,
451 "9071: Link operational transition"},
452 {0x066B8100, 0, IPR_DEFAULT_LOG_LEVEL,
453 "9072: Link not operational transition"},
454 {0x066B8200, 0, IPR_DEFAULT_LOG_LEVEL,
455 "9032: Array exposed but still protected"},
456 {0x066B8300, 0, IPR_DEFAULT_LOG_LEVEL + 1,
457 "70DD: Device forced failed by disrupt device command"},
458 {0x066B9100, 0, IPR_DEFAULT_LOG_LEVEL,
459 "4061: Multipath redundancy level got better"},
460 {0x066B9200, 0, IPR_DEFAULT_LOG_LEVEL,
461 "4060: Multipath redundancy level got worse"},
462 {0x07270000, 0, 0,
463 "Failure due to other device"},
464 {0x07278000, 0, IPR_DEFAULT_LOG_LEVEL,
465 "9008: IOA does not support functions expected by devices"},
466 {0x07278100, 0, IPR_DEFAULT_LOG_LEVEL,
467 "9010: Cache data associated with attached devices cannot be found"},
468 {0x07278200, 0, IPR_DEFAULT_LOG_LEVEL,
469 "9011: Cache data belongs to devices other than those attached"},
470 {0x07278400, 0, IPR_DEFAULT_LOG_LEVEL,
471 "9020: Array missing 2 or more devices with only 1 device present"},
472 {0x07278500, 0, IPR_DEFAULT_LOG_LEVEL,
473 "9021: Array missing 2 or more devices with 2 or more devices present"},
474 {0x07278600, 0, IPR_DEFAULT_LOG_LEVEL,
475 "9022: Exposed array is missing a required device"},
476 {0x07278700, 0, IPR_DEFAULT_LOG_LEVEL,
477 "9023: Array member(s) not at required physical locations"},
478 {0x07278800, 0, IPR_DEFAULT_LOG_LEVEL,
479 "9024: Array not functional due to present hardware configuration"},
480 {0x07278900, 0, IPR_DEFAULT_LOG_LEVEL,
481 "9026: Array not functional due to present hardware configuration"},
482 {0x07278A00, 0, IPR_DEFAULT_LOG_LEVEL,
483 "9027: Array is missing a device and parity is out of sync"},
484 {0x07278B00, 0, IPR_DEFAULT_LOG_LEVEL,
485 "9028: Maximum number of arrays already exist"},
486 {0x07278C00, 0, IPR_DEFAULT_LOG_LEVEL,
487 "9050: Required cache data cannot be located for a disk unit"},
488 {0x07278D00, 0, IPR_DEFAULT_LOG_LEVEL,
489 "9052: Cache data exists for a device that has been modified"},
490 {0x07278F00, 0, IPR_DEFAULT_LOG_LEVEL,
491 "9054: IOA resources not available due to previous problems"},
492 {0x07279100, 0, IPR_DEFAULT_LOG_LEVEL,
493 "9092: Disk unit requires initialization before use"},
494 {0x07279200, 0, IPR_DEFAULT_LOG_LEVEL,
495 "9029: Incorrect hardware configuration change has been detected"},
496 {0x07279600, 0, IPR_DEFAULT_LOG_LEVEL,
497 "9060: One or more disk pairs are missing from an array"},
498 {0x07279700, 0, IPR_DEFAULT_LOG_LEVEL,
499 "9061: One or more disks are missing from an array"},
500 {0x07279800, 0, IPR_DEFAULT_LOG_LEVEL,
501 "9062: One or more disks are missing from an array"},
502 {0x07279900, 0, IPR_DEFAULT_LOG_LEVEL,
503 "9063: Maximum number of functional arrays has been exceeded"},
504 {0x0B260000, 0, 0,
505 "Aborted command, invalid descriptor"},
506 {0x0B5A0000, 0, 0,
507 "Command terminated by host"}
508};
509
510static const struct ipr_ses_table_entry ipr_ses_table[] = {
511 { "2104-DL1 ", "XXXXXXXXXXXXXXXX", 80 },
512 { "2104-TL1 ", "XXXXXXXXXXXXXXXX", 80 },
513 { "HSBP07M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 },
514 { "HSBP05M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 },
515 { "HSBP05M S U2SCSI", "XXXXXXXXXXXXXXXX", 80 },
516 { "HSBP06E ASU2SCSI", "XXXXXXXXXXXXXXXX", 80 },
517 { "2104-DU3 ", "XXXXXXXXXXXXXXXX", 160 },
518 { "2104-TU3 ", "XXXXXXXXXXXXXXXX", 160 },
519 { "HSBP04C RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
520 { "HSBP06E RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
521 { "St V1S2 ", "XXXXXXXXXXXXXXXX", 160 },
522 { "HSBPD4M PU3SCSI", "XXXXXXX*XXXXXXXX", 160 },
523 { "VSBPD1H U3SCSI", "XXXXXXX*XXXXXXXX", 160 }
524};
525
526
527
528
529static int ipr_reset_alert(struct ipr_cmnd *);
530static void ipr_process_ccn(struct ipr_cmnd *);
531static void ipr_process_error(struct ipr_cmnd *);
532static void ipr_reset_ioa_job(struct ipr_cmnd *);
533static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *,
534 enum ipr_shutdown_type);
535
536#ifdef CONFIG_SCSI_IPR_TRACE
537
538
539
540
541
542
543
544
545
546static void ipr_trc_hook(struct ipr_cmnd *ipr_cmd,
547 u8 type, u32 add_data)
548{
549 struct ipr_trace_entry *trace_entry;
550 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
551
552 trace_entry = &ioa_cfg->trace[ioa_cfg->trace_index++];
553 trace_entry->time = jiffies;
554 trace_entry->op_code = ipr_cmd->ioarcb.cmd_pkt.cdb[0];
555 trace_entry->type = type;
556 if (ipr_cmd->ioa_cfg->sis64)
557 trace_entry->ata_op_code = ipr_cmd->i.ata_ioadl.regs.command;
558 else
559 trace_entry->ata_op_code = ipr_cmd->ioarcb.u.add_data.u.regs.command;
560 trace_entry->cmd_index = ipr_cmd->cmd_index & 0xff;
561 trace_entry->res_handle = ipr_cmd->ioarcb.res_handle;
562 trace_entry->u.add_data = add_data;
563}
564#else
565#define ipr_trc_hook(ipr_cmd, type, add_data) do { } while(0)
566#endif
567
568
569
570
571
572
573
574
575static void ipr_reinit_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
576{
577 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
578 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
579 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
580 dma_addr_t dma_addr = ipr_cmd->dma_addr;
581
582 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
583 ioarcb->data_transfer_length = 0;
584 ioarcb->read_data_transfer_length = 0;
585 ioarcb->ioadl_len = 0;
586 ioarcb->read_ioadl_len = 0;
587
588 if (ipr_cmd->ioa_cfg->sis64) {
589 ioarcb->u.sis64_addr_data.data_ioadl_addr =
590 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
591 ioasa64->u.gata.status = 0;
592 } else {
593 ioarcb->write_ioadl_addr =
594 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
595 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
596 ioasa->u.gata.status = 0;
597 }
598
599 ioasa->hdr.ioasc = 0;
600 ioasa->hdr.residual_data_len = 0;
601 ipr_cmd->scsi_cmd = NULL;
602 ipr_cmd->qc = NULL;
603 ipr_cmd->sense_buffer[0] = 0;
604 ipr_cmd->dma_use_sg = 0;
605}
606
607
608
609
610
611
612
613
614static void ipr_init_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
615{
616 ipr_reinit_ipr_cmnd(ipr_cmd);
617 ipr_cmd->u.scratch = 0;
618 ipr_cmd->sibling = NULL;
619 init_timer(&ipr_cmd->timer);
620}
621
622
623
624
625
626
627
628
629static
630struct ipr_cmnd *ipr_get_free_ipr_cmnd(struct ipr_ioa_cfg *ioa_cfg)
631{
632 struct ipr_cmnd *ipr_cmd;
633
634 ipr_cmd = list_entry(ioa_cfg->free_q.next, struct ipr_cmnd, queue);
635 list_del(&ipr_cmd->queue);
636 ipr_init_ipr_cmnd(ipr_cmd);
637
638 return ipr_cmd;
639}
640
641
642
643
644
645
646
647
648
649
650
651
652static void ipr_mask_and_clear_interrupts(struct ipr_ioa_cfg *ioa_cfg,
653 u32 clr_ints)
654{
655 volatile u32 int_reg;
656
657
658 ioa_cfg->allow_interrupts = 0;
659
660
661 if (ioa_cfg->sis64)
662 writeq(~0, ioa_cfg->regs.set_interrupt_mask_reg);
663 else
664 writel(~0, ioa_cfg->regs.set_interrupt_mask_reg);
665
666
667 if (ioa_cfg->sis64)
668 writel(~0, ioa_cfg->regs.clr_interrupt_reg);
669 writel(clr_ints, ioa_cfg->regs.clr_interrupt_reg32);
670 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
671}
672
673
674
675
676
677
678
679
680static int ipr_save_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
681{
682 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
683
684 if (pcix_cmd_reg == 0)
685 return 0;
686
687 if (pci_read_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
688 &ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
689 dev_err(&ioa_cfg->pdev->dev, "Failed to save PCI-X command register\n");
690 return -EIO;
691 }
692
693 ioa_cfg->saved_pcix_cmd_reg |= PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO;
694 return 0;
695}
696
697
698
699
700
701
702
703
704static int ipr_set_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
705{
706 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
707
708 if (pcix_cmd_reg) {
709 if (pci_write_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
710 ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
711 dev_err(&ioa_cfg->pdev->dev, "Failed to setup PCI-X command register\n");
712 return -EIO;
713 }
714 }
715
716 return 0;
717}
718
719
720
721
722
723
724
725
726
727
728
729static void ipr_sata_eh_done(struct ipr_cmnd *ipr_cmd)
730{
731 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
732 struct ata_queued_cmd *qc = ipr_cmd->qc;
733 struct ipr_sata_port *sata_port = qc->ap->private_data;
734
735 qc->err_mask |= AC_ERR_OTHER;
736 sata_port->ioasa.status |= ATA_BUSY;
737 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
738 ata_qc_complete(qc);
739}
740
741
742
743
744
745
746
747
748
749
750
751static void ipr_scsi_eh_done(struct ipr_cmnd *ipr_cmd)
752{
753 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
754 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
755
756 scsi_cmd->result |= (DID_ERROR << 16);
757
758 scsi_dma_unmap(ipr_cmd->scsi_cmd);
759 scsi_cmd->scsi_done(scsi_cmd);
760 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
761}
762
763
764
765
766
767
768
769
770
771
772static void ipr_fail_all_ops(struct ipr_ioa_cfg *ioa_cfg)
773{
774 struct ipr_cmnd *ipr_cmd, *temp;
775
776 ENTER;
777 list_for_each_entry_safe(ipr_cmd, temp, &ioa_cfg->pending_q, queue) {
778 list_del(&ipr_cmd->queue);
779
780 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_IOA_WAS_RESET);
781 ipr_cmd->s.ioasa.hdr.ilid = cpu_to_be32(IPR_DRIVER_ILID);
782
783 if (ipr_cmd->scsi_cmd)
784 ipr_cmd->done = ipr_scsi_eh_done;
785 else if (ipr_cmd->qc)
786 ipr_cmd->done = ipr_sata_eh_done;
787
788 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, IPR_IOASC_IOA_WAS_RESET);
789 del_timer(&ipr_cmd->timer);
790 ipr_cmd->done(ipr_cmd);
791 }
792
793 LEAVE;
794}
795
796
797
798
799
800
801
802
803
804
805
806
807static void ipr_send_command(struct ipr_cmnd *ipr_cmd)
808{
809 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
810 dma_addr_t send_dma_addr = ipr_cmd->dma_addr;
811
812 if (ioa_cfg->sis64) {
813
814 send_dma_addr |= 0x1;
815
816
817
818 if (ipr_cmd->dma_use_sg * sizeof(struct ipr_ioadl64_desc) > 128 )
819 send_dma_addr |= 0x4;
820 writeq(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
821 } else
822 writel(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
823}
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838static void ipr_do_req(struct ipr_cmnd *ipr_cmd,
839 void (*done) (struct ipr_cmnd *),
840 void (*timeout_func) (struct ipr_cmnd *), u32 timeout)
841{
842 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
843
844 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
845
846 ipr_cmd->done = done;
847
848 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
849 ipr_cmd->timer.expires = jiffies + timeout;
850 ipr_cmd->timer.function = (void (*)(unsigned long))timeout_func;
851
852 add_timer(&ipr_cmd->timer);
853
854 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, 0);
855
856 ipr_send_command(ipr_cmd);
857}
858
859
860
861
862
863
864
865
866
867
868
869static void ipr_internal_cmd_done(struct ipr_cmnd *ipr_cmd)
870{
871 if (ipr_cmd->sibling)
872 ipr_cmd->sibling = NULL;
873 else
874 complete(&ipr_cmd->completion);
875}
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890static void ipr_init_ioadl(struct ipr_cmnd *ipr_cmd, dma_addr_t dma_addr,
891 u32 len, int flags)
892{
893 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
894 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
895
896 ipr_cmd->dma_use_sg = 1;
897
898 if (ipr_cmd->ioa_cfg->sis64) {
899 ioadl64->flags = cpu_to_be32(flags);
900 ioadl64->data_len = cpu_to_be32(len);
901 ioadl64->address = cpu_to_be64(dma_addr);
902
903 ipr_cmd->ioarcb.ioadl_len =
904 cpu_to_be32(sizeof(struct ipr_ioadl64_desc));
905 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
906 } else {
907 ioadl->flags_and_data_len = cpu_to_be32(flags | len);
908 ioadl->address = cpu_to_be32(dma_addr);
909
910 if (flags == IPR_IOADL_FLAGS_READ_LAST) {
911 ipr_cmd->ioarcb.read_ioadl_len =
912 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
913 ipr_cmd->ioarcb.read_data_transfer_length = cpu_to_be32(len);
914 } else {
915 ipr_cmd->ioarcb.ioadl_len =
916 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
917 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
918 }
919 }
920}
921
922
923
924
925
926
927
928
929
930
931static void ipr_send_blocking_cmd(struct ipr_cmnd *ipr_cmd,
932 void (*timeout_func) (struct ipr_cmnd *ipr_cmd),
933 u32 timeout)
934{
935 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
936
937 init_completion(&ipr_cmd->completion);
938 ipr_do_req(ipr_cmd, ipr_internal_cmd_done, timeout_func, timeout);
939
940 spin_unlock_irq(ioa_cfg->host->host_lock);
941 wait_for_completion(&ipr_cmd->completion);
942 spin_lock_irq(ioa_cfg->host->host_lock);
943}
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958static void ipr_send_hcam(struct ipr_ioa_cfg *ioa_cfg, u8 type,
959 struct ipr_hostrcb *hostrcb)
960{
961 struct ipr_cmnd *ipr_cmd;
962 struct ipr_ioarcb *ioarcb;
963
964 if (ioa_cfg->allow_cmds) {
965 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
966 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
967 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_pending_q);
968
969 ipr_cmd->u.hostrcb = hostrcb;
970 ioarcb = &ipr_cmd->ioarcb;
971
972 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
973 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_HCAM;
974 ioarcb->cmd_pkt.cdb[0] = IPR_HOST_CONTROLLED_ASYNC;
975 ioarcb->cmd_pkt.cdb[1] = type;
976 ioarcb->cmd_pkt.cdb[7] = (sizeof(hostrcb->hcam) >> 8) & 0xff;
977 ioarcb->cmd_pkt.cdb[8] = sizeof(hostrcb->hcam) & 0xff;
978
979 ipr_init_ioadl(ipr_cmd, hostrcb->hostrcb_dma,
980 sizeof(hostrcb->hcam), IPR_IOADL_FLAGS_READ_LAST);
981
982 if (type == IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE)
983 ipr_cmd->done = ipr_process_ccn;
984 else
985 ipr_cmd->done = ipr_process_error;
986
987 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_IOA_RES_ADDR);
988
989 ipr_send_command(ipr_cmd);
990 } else {
991 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
992 }
993}
994
995
996
997
998
999
1000
1001
1002
1003static void ipr_update_ata_class(struct ipr_resource_entry *res, unsigned int proto)
1004{
1005 switch(proto) {
1006 case IPR_PROTO_SATA:
1007 case IPR_PROTO_SAS_STP:
1008 res->ata_class = ATA_DEV_ATA;
1009 break;
1010 case IPR_PROTO_SATA_ATAPI:
1011 case IPR_PROTO_SAS_STP_ATAPI:
1012 res->ata_class = ATA_DEV_ATAPI;
1013 break;
1014 default:
1015 res->ata_class = ATA_DEV_UNKNOWN;
1016 break;
1017 };
1018}
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028static void ipr_init_res_entry(struct ipr_resource_entry *res,
1029 struct ipr_config_table_entry_wrapper *cfgtew)
1030{
1031 int found = 0;
1032 unsigned int proto;
1033 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1034 struct ipr_resource_entry *gscsi_res = NULL;
1035
1036 res->needs_sync_complete = 0;
1037 res->in_erp = 0;
1038 res->add_to_ml = 0;
1039 res->del_from_ml = 0;
1040 res->resetting_device = 0;
1041 res->sdev = NULL;
1042 res->sata_port = NULL;
1043
1044 if (ioa_cfg->sis64) {
1045 proto = cfgtew->u.cfgte64->proto;
1046 res->res_flags = cfgtew->u.cfgte64->res_flags;
1047 res->qmodel = IPR_QUEUEING_MODEL64(res);
1048 res->type = cfgtew->u.cfgte64->res_type;
1049
1050 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1051 sizeof(res->res_path));
1052
1053 res->bus = 0;
1054 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1055 sizeof(res->dev_lun.scsi_lun));
1056 res->lun = scsilun_to_int(&res->dev_lun);
1057
1058 if (res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1059 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue) {
1060 if (gscsi_res->dev_id == cfgtew->u.cfgte64->dev_id) {
1061 found = 1;
1062 res->target = gscsi_res->target;
1063 break;
1064 }
1065 }
1066 if (!found) {
1067 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1068 ioa_cfg->max_devs_supported);
1069 set_bit(res->target, ioa_cfg->target_ids);
1070 }
1071 } else if (res->type == IPR_RES_TYPE_IOAFP) {
1072 res->bus = IPR_IOAFP_VIRTUAL_BUS;
1073 res->target = 0;
1074 } else if (res->type == IPR_RES_TYPE_ARRAY) {
1075 res->bus = IPR_ARRAY_VIRTUAL_BUS;
1076 res->target = find_first_zero_bit(ioa_cfg->array_ids,
1077 ioa_cfg->max_devs_supported);
1078 set_bit(res->target, ioa_cfg->array_ids);
1079 } else if (res->type == IPR_RES_TYPE_VOLUME_SET) {
1080 res->bus = IPR_VSET_VIRTUAL_BUS;
1081 res->target = find_first_zero_bit(ioa_cfg->vset_ids,
1082 ioa_cfg->max_devs_supported);
1083 set_bit(res->target, ioa_cfg->vset_ids);
1084 } else {
1085 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1086 ioa_cfg->max_devs_supported);
1087 set_bit(res->target, ioa_cfg->target_ids);
1088 }
1089 } else {
1090 proto = cfgtew->u.cfgte->proto;
1091 res->qmodel = IPR_QUEUEING_MODEL(res);
1092 res->flags = cfgtew->u.cfgte->flags;
1093 if (res->flags & IPR_IS_IOA_RESOURCE)
1094 res->type = IPR_RES_TYPE_IOAFP;
1095 else
1096 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1097
1098 res->bus = cfgtew->u.cfgte->res_addr.bus;
1099 res->target = cfgtew->u.cfgte->res_addr.target;
1100 res->lun = cfgtew->u.cfgte->res_addr.lun;
1101 res->lun_wwn = get_unaligned_be64(cfgtew->u.cfgte->lun_wwn);
1102 }
1103
1104 ipr_update_ata_class(res, proto);
1105}
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115static int ipr_is_same_device(struct ipr_resource_entry *res,
1116 struct ipr_config_table_entry_wrapper *cfgtew)
1117{
1118 if (res->ioa_cfg->sis64) {
1119 if (!memcmp(&res->dev_id, &cfgtew->u.cfgte64->dev_id,
1120 sizeof(cfgtew->u.cfgte64->dev_id)) &&
1121 !memcmp(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1122 sizeof(cfgtew->u.cfgte64->lun))) {
1123 return 1;
1124 }
1125 } else {
1126 if (res->bus == cfgtew->u.cfgte->res_addr.bus &&
1127 res->target == cfgtew->u.cfgte->res_addr.target &&
1128 res->lun == cfgtew->u.cfgte->res_addr.lun)
1129 return 1;
1130 }
1131
1132 return 0;
1133}
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143static char *ipr_format_res_path(u8 *res_path, char *buffer, int len)
1144{
1145 int i;
1146 char *p = buffer;
1147
1148 *p = '\0';
1149 p += snprintf(p, buffer + len - p, "%02X", res_path[0]);
1150 for (i = 1; res_path[i] != 0xff && ((i * 3) < len); i++)
1151 p += snprintf(p, buffer + len - p, "-%02X", res_path[i]);
1152
1153 return buffer;
1154}
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164static void ipr_update_res_entry(struct ipr_resource_entry *res,
1165 struct ipr_config_table_entry_wrapper *cfgtew)
1166{
1167 char buffer[IPR_MAX_RES_PATH_LENGTH];
1168 unsigned int proto;
1169 int new_path = 0;
1170
1171 if (res->ioa_cfg->sis64) {
1172 res->flags = cfgtew->u.cfgte64->flags;
1173 res->res_flags = cfgtew->u.cfgte64->res_flags;
1174 res->type = cfgtew->u.cfgte64->res_type;
1175
1176 memcpy(&res->std_inq_data, &cfgtew->u.cfgte64->std_inq_data,
1177 sizeof(struct ipr_std_inq_data));
1178
1179 res->qmodel = IPR_QUEUEING_MODEL64(res);
1180 proto = cfgtew->u.cfgte64->proto;
1181 res->res_handle = cfgtew->u.cfgte64->res_handle;
1182 res->dev_id = cfgtew->u.cfgte64->dev_id;
1183
1184 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1185 sizeof(res->dev_lun.scsi_lun));
1186
1187 if (memcmp(res->res_path, &cfgtew->u.cfgte64->res_path,
1188 sizeof(res->res_path))) {
1189 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1190 sizeof(res->res_path));
1191 new_path = 1;
1192 }
1193
1194 if (res->sdev && new_path)
1195 sdev_printk(KERN_INFO, res->sdev, "Resource path: %s\n",
1196 ipr_format_res_path(res->res_path, buffer,
1197 sizeof(buffer)));
1198 } else {
1199 res->flags = cfgtew->u.cfgte->flags;
1200 if (res->flags & IPR_IS_IOA_RESOURCE)
1201 res->type = IPR_RES_TYPE_IOAFP;
1202 else
1203 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1204
1205 memcpy(&res->std_inq_data, &cfgtew->u.cfgte->std_inq_data,
1206 sizeof(struct ipr_std_inq_data));
1207
1208 res->qmodel = IPR_QUEUEING_MODEL(res);
1209 proto = cfgtew->u.cfgte->proto;
1210 res->res_handle = cfgtew->u.cfgte->res_handle;
1211 }
1212
1213 ipr_update_ata_class(res, proto);
1214}
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225static void ipr_clear_res_target(struct ipr_resource_entry *res)
1226{
1227 struct ipr_resource_entry *gscsi_res = NULL;
1228 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1229
1230 if (!ioa_cfg->sis64)
1231 return;
1232
1233 if (res->bus == IPR_ARRAY_VIRTUAL_BUS)
1234 clear_bit(res->target, ioa_cfg->array_ids);
1235 else if (res->bus == IPR_VSET_VIRTUAL_BUS)
1236 clear_bit(res->target, ioa_cfg->vset_ids);
1237 else if (res->bus == 0 && res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1238 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue)
1239 if (gscsi_res->dev_id == res->dev_id && gscsi_res != res)
1240 return;
1241 clear_bit(res->target, ioa_cfg->target_ids);
1242
1243 } else if (res->bus == 0)
1244 clear_bit(res->target, ioa_cfg->target_ids);
1245}
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255static void ipr_handle_config_change(struct ipr_ioa_cfg *ioa_cfg,
1256 struct ipr_hostrcb *hostrcb)
1257{
1258 struct ipr_resource_entry *res = NULL;
1259 struct ipr_config_table_entry_wrapper cfgtew;
1260 __be32 cc_res_handle;
1261
1262 u32 is_ndn = 1;
1263
1264 if (ioa_cfg->sis64) {
1265 cfgtew.u.cfgte64 = &hostrcb->hcam.u.ccn.u.cfgte64;
1266 cc_res_handle = cfgtew.u.cfgte64->res_handle;
1267 } else {
1268 cfgtew.u.cfgte = &hostrcb->hcam.u.ccn.u.cfgte;
1269 cc_res_handle = cfgtew.u.cfgte->res_handle;
1270 }
1271
1272 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
1273 if (res->res_handle == cc_res_handle) {
1274 is_ndn = 0;
1275 break;
1276 }
1277 }
1278
1279 if (is_ndn) {
1280 if (list_empty(&ioa_cfg->free_res_q)) {
1281 ipr_send_hcam(ioa_cfg,
1282 IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE,
1283 hostrcb);
1284 return;
1285 }
1286
1287 res = list_entry(ioa_cfg->free_res_q.next,
1288 struct ipr_resource_entry, queue);
1289
1290 list_del(&res->queue);
1291 ipr_init_res_entry(res, &cfgtew);
1292 list_add_tail(&res->queue, &ioa_cfg->used_res_q);
1293 }
1294
1295 ipr_update_res_entry(res, &cfgtew);
1296
1297 if (hostrcb->hcam.notify_type == IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY) {
1298 if (res->sdev) {
1299 res->del_from_ml = 1;
1300 res->res_handle = IPR_INVALID_RES_HANDLE;
1301 if (ioa_cfg->allow_ml_add_del)
1302 schedule_work(&ioa_cfg->work_q);
1303 } else {
1304 ipr_clear_res_target(res);
1305 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
1306 }
1307 } else if (!res->sdev || res->del_from_ml) {
1308 res->add_to_ml = 1;
1309 if (ioa_cfg->allow_ml_add_del)
1310 schedule_work(&ioa_cfg->work_q);
1311 }
1312
1313 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1314}
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326static void ipr_process_ccn(struct ipr_cmnd *ipr_cmd)
1327{
1328 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
1329 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
1330 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
1331
1332 list_del(&hostrcb->queue);
1333 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
1334
1335 if (ioasc) {
1336 if (ioasc != IPR_IOASC_IOA_WAS_RESET)
1337 dev_err(&ioa_cfg->pdev->dev,
1338 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
1339
1340 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1341 } else {
1342 ipr_handle_config_change(ioa_cfg, hostrcb);
1343 }
1344}
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357static int strip_and_pad_whitespace(int i, char *buf)
1358{
1359 while (i && buf[i] == ' ')
1360 i--;
1361 buf[i+1] = ' ';
1362 buf[i+2] = '\0';
1363 return i + 2;
1364}
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375static void ipr_log_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1376 struct ipr_vpd *vpd)
1377{
1378 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN + IPR_SERIAL_NUM_LEN + 3];
1379 int i = 0;
1380
1381 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1382 i = strip_and_pad_whitespace(IPR_VENDOR_ID_LEN - 1, buffer);
1383
1384 memcpy(&buffer[i], vpd->vpids.product_id, IPR_PROD_ID_LEN);
1385 i = strip_and_pad_whitespace(i + IPR_PROD_ID_LEN - 1, buffer);
1386
1387 memcpy(&buffer[i], vpd->sn, IPR_SERIAL_NUM_LEN);
1388 buffer[IPR_SERIAL_NUM_LEN + i] = '\0';
1389
1390 ipr_hcam_err(hostrcb, "%s VPID/SN: %s\n", prefix, buffer);
1391}
1392
1393
1394
1395
1396
1397
1398
1399
1400static void ipr_log_vpd(struct ipr_vpd *vpd)
1401{
1402 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN
1403 + IPR_SERIAL_NUM_LEN];
1404
1405 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1406 memcpy(buffer + IPR_VENDOR_ID_LEN, vpd->vpids.product_id,
1407 IPR_PROD_ID_LEN);
1408 buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN] = '\0';
1409 ipr_err("Vendor/Product ID: %s\n", buffer);
1410
1411 memcpy(buffer, vpd->sn, IPR_SERIAL_NUM_LEN);
1412 buffer[IPR_SERIAL_NUM_LEN] = '\0';
1413 ipr_err(" Serial Number: %s\n", buffer);
1414}
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425static void ipr_log_ext_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1426 struct ipr_ext_vpd *vpd)
1427{
1428 ipr_log_vpd_compact(prefix, hostrcb, &vpd->vpd);
1429 ipr_hcam_err(hostrcb, "%s WWN: %08X%08X\n", prefix,
1430 be32_to_cpu(vpd->wwid[0]), be32_to_cpu(vpd->wwid[1]));
1431}
1432
1433
1434
1435
1436
1437
1438
1439
1440static void ipr_log_ext_vpd(struct ipr_ext_vpd *vpd)
1441{
1442 ipr_log_vpd(&vpd->vpd);
1443 ipr_err(" WWN: %08X%08X\n", be32_to_cpu(vpd->wwid[0]),
1444 be32_to_cpu(vpd->wwid[1]));
1445}
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455static void ipr_log_enhanced_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1456 struct ipr_hostrcb *hostrcb)
1457{
1458 struct ipr_hostrcb_type_12_error *error;
1459
1460 if (ioa_cfg->sis64)
1461 error = &hostrcb->hcam.u.error64.u.type_12_error;
1462 else
1463 error = &hostrcb->hcam.u.error.u.type_12_error;
1464
1465 ipr_err("-----Current Configuration-----\n");
1466 ipr_err("Cache Directory Card Information:\n");
1467 ipr_log_ext_vpd(&error->ioa_vpd);
1468 ipr_err("Adapter Card Information:\n");
1469 ipr_log_ext_vpd(&error->cfc_vpd);
1470
1471 ipr_err("-----Expected Configuration-----\n");
1472 ipr_err("Cache Directory Card Information:\n");
1473 ipr_log_ext_vpd(&error->ioa_last_attached_to_cfc_vpd);
1474 ipr_err("Adapter Card Information:\n");
1475 ipr_log_ext_vpd(&error->cfc_last_attached_to_ioa_vpd);
1476
1477 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1478 be32_to_cpu(error->ioa_data[0]),
1479 be32_to_cpu(error->ioa_data[1]),
1480 be32_to_cpu(error->ioa_data[2]));
1481}
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491static void ipr_log_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1492 struct ipr_hostrcb *hostrcb)
1493{
1494 struct ipr_hostrcb_type_02_error *error =
1495 &hostrcb->hcam.u.error.u.type_02_error;
1496
1497 ipr_err("-----Current Configuration-----\n");
1498 ipr_err("Cache Directory Card Information:\n");
1499 ipr_log_vpd(&error->ioa_vpd);
1500 ipr_err("Adapter Card Information:\n");
1501 ipr_log_vpd(&error->cfc_vpd);
1502
1503 ipr_err("-----Expected Configuration-----\n");
1504 ipr_err("Cache Directory Card Information:\n");
1505 ipr_log_vpd(&error->ioa_last_attached_to_cfc_vpd);
1506 ipr_err("Adapter Card Information:\n");
1507 ipr_log_vpd(&error->cfc_last_attached_to_ioa_vpd);
1508
1509 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1510 be32_to_cpu(error->ioa_data[0]),
1511 be32_to_cpu(error->ioa_data[1]),
1512 be32_to_cpu(error->ioa_data[2]));
1513}
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523static void ipr_log_enhanced_config_error(struct ipr_ioa_cfg *ioa_cfg,
1524 struct ipr_hostrcb *hostrcb)
1525{
1526 int errors_logged, i;
1527 struct ipr_hostrcb_device_data_entry_enhanced *dev_entry;
1528 struct ipr_hostrcb_type_13_error *error;
1529
1530 error = &hostrcb->hcam.u.error.u.type_13_error;
1531 errors_logged = be32_to_cpu(error->errors_logged);
1532
1533 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1534 be32_to_cpu(error->errors_detected), errors_logged);
1535
1536 dev_entry = error->dev;
1537
1538 for (i = 0; i < errors_logged; i++, dev_entry++) {
1539 ipr_err_separator;
1540
1541 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
1542 ipr_log_ext_vpd(&dev_entry->vpd);
1543
1544 ipr_err("-----New Device Information-----\n");
1545 ipr_log_ext_vpd(&dev_entry->new_vpd);
1546
1547 ipr_err("Cache Directory Card Information:\n");
1548 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1549
1550 ipr_err("Adapter Card Information:\n");
1551 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1552 }
1553}
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563static void ipr_log_sis64_config_error(struct ipr_ioa_cfg *ioa_cfg,
1564 struct ipr_hostrcb *hostrcb)
1565{
1566 int errors_logged, i;
1567 struct ipr_hostrcb64_device_data_entry_enhanced *dev_entry;
1568 struct ipr_hostrcb_type_23_error *error;
1569 char buffer[IPR_MAX_RES_PATH_LENGTH];
1570
1571 error = &hostrcb->hcam.u.error64.u.type_23_error;
1572 errors_logged = be32_to_cpu(error->errors_logged);
1573
1574 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1575 be32_to_cpu(error->errors_detected), errors_logged);
1576
1577 dev_entry = error->dev;
1578
1579 for (i = 0; i < errors_logged; i++, dev_entry++) {
1580 ipr_err_separator;
1581
1582 ipr_err("Device %d : %s", i + 1,
1583 ipr_format_res_path(dev_entry->res_path, buffer,
1584 sizeof(buffer)));
1585 ipr_log_ext_vpd(&dev_entry->vpd);
1586
1587 ipr_err("-----New Device Information-----\n");
1588 ipr_log_ext_vpd(&dev_entry->new_vpd);
1589
1590 ipr_err("Cache Directory Card Information:\n");
1591 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1592
1593 ipr_err("Adapter Card Information:\n");
1594 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1595 }
1596}
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606static void ipr_log_config_error(struct ipr_ioa_cfg *ioa_cfg,
1607 struct ipr_hostrcb *hostrcb)
1608{
1609 int errors_logged, i;
1610 struct ipr_hostrcb_device_data_entry *dev_entry;
1611 struct ipr_hostrcb_type_03_error *error;
1612
1613 error = &hostrcb->hcam.u.error.u.type_03_error;
1614 errors_logged = be32_to_cpu(error->errors_logged);
1615
1616 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1617 be32_to_cpu(error->errors_detected), errors_logged);
1618
1619 dev_entry = error->dev;
1620
1621 for (i = 0; i < errors_logged; i++, dev_entry++) {
1622 ipr_err_separator;
1623
1624 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
1625 ipr_log_vpd(&dev_entry->vpd);
1626
1627 ipr_err("-----New Device Information-----\n");
1628 ipr_log_vpd(&dev_entry->new_vpd);
1629
1630 ipr_err("Cache Directory Card Information:\n");
1631 ipr_log_vpd(&dev_entry->ioa_last_with_dev_vpd);
1632
1633 ipr_err("Adapter Card Information:\n");
1634 ipr_log_vpd(&dev_entry->cfc_last_with_dev_vpd);
1635
1636 ipr_err("Additional IOA Data: %08X %08X %08X %08X %08X\n",
1637 be32_to_cpu(dev_entry->ioa_data[0]),
1638 be32_to_cpu(dev_entry->ioa_data[1]),
1639 be32_to_cpu(dev_entry->ioa_data[2]),
1640 be32_to_cpu(dev_entry->ioa_data[3]),
1641 be32_to_cpu(dev_entry->ioa_data[4]));
1642 }
1643}
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653static void ipr_log_enhanced_array_error(struct ipr_ioa_cfg *ioa_cfg,
1654 struct ipr_hostrcb *hostrcb)
1655{
1656 int i, num_entries;
1657 struct ipr_hostrcb_type_14_error *error;
1658 struct ipr_hostrcb_array_data_entry_enhanced *array_entry;
1659 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1660
1661 error = &hostrcb->hcam.u.error.u.type_14_error;
1662
1663 ipr_err_separator;
1664
1665 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1666 error->protection_level,
1667 ioa_cfg->host->host_no,
1668 error->last_func_vset_res_addr.bus,
1669 error->last_func_vset_res_addr.target,
1670 error->last_func_vset_res_addr.lun);
1671
1672 ipr_err_separator;
1673
1674 array_entry = error->array_member;
1675 num_entries = min_t(u32, be32_to_cpu(error->num_entries),
1676 ARRAY_SIZE(error->array_member));
1677
1678 for (i = 0; i < num_entries; i++, array_entry++) {
1679 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
1680 continue;
1681
1682 if (be32_to_cpu(error->exposed_mode_adn) == i)
1683 ipr_err("Exposed Array Member %d:\n", i);
1684 else
1685 ipr_err("Array Member %d:\n", i);
1686
1687 ipr_log_ext_vpd(&array_entry->vpd);
1688 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1689 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1690 "Expected Location");
1691
1692 ipr_err_separator;
1693 }
1694}
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704static void ipr_log_array_error(struct ipr_ioa_cfg *ioa_cfg,
1705 struct ipr_hostrcb *hostrcb)
1706{
1707 int i;
1708 struct ipr_hostrcb_type_04_error *error;
1709 struct ipr_hostrcb_array_data_entry *array_entry;
1710 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1711
1712 error = &hostrcb->hcam.u.error.u.type_04_error;
1713
1714 ipr_err_separator;
1715
1716 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1717 error->protection_level,
1718 ioa_cfg->host->host_no,
1719 error->last_func_vset_res_addr.bus,
1720 error->last_func_vset_res_addr.target,
1721 error->last_func_vset_res_addr.lun);
1722
1723 ipr_err_separator;
1724
1725 array_entry = error->array_member;
1726
1727 for (i = 0; i < 18; i++) {
1728 if (!memcmp(array_entry->vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
1729 continue;
1730
1731 if (be32_to_cpu(error->exposed_mode_adn) == i)
1732 ipr_err("Exposed Array Member %d:\n", i);
1733 else
1734 ipr_err("Array Member %d:\n", i);
1735
1736 ipr_log_vpd(&array_entry->vpd);
1737
1738 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1739 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1740 "Expected Location");
1741
1742 ipr_err_separator;
1743
1744 if (i == 9)
1745 array_entry = error->array_member2;
1746 else
1747 array_entry++;
1748 }
1749}
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760static void ipr_log_hex_data(struct ipr_ioa_cfg *ioa_cfg, u32 *data, int len)
1761{
1762 int i;
1763
1764 if (len == 0)
1765 return;
1766
1767 if (ioa_cfg->log_level <= IPR_DEFAULT_LOG_LEVEL)
1768 len = min_t(int, len, IPR_DEFAULT_MAX_ERROR_DUMP);
1769
1770 for (i = 0; i < len / 4; i += 4) {
1771 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
1772 be32_to_cpu(data[i]),
1773 be32_to_cpu(data[i+1]),
1774 be32_to_cpu(data[i+2]),
1775 be32_to_cpu(data[i+3]));
1776 }
1777}
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787static void ipr_log_enhanced_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1788 struct ipr_hostrcb *hostrcb)
1789{
1790 struct ipr_hostrcb_type_17_error *error;
1791
1792 if (ioa_cfg->sis64)
1793 error = &hostrcb->hcam.u.error64.u.type_17_error;
1794 else
1795 error = &hostrcb->hcam.u.error.u.type_17_error;
1796
1797 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
1798 strim(error->failure_reason);
1799
1800 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1801 be32_to_cpu(hostrcb->hcam.u.error.prc));
1802 ipr_log_ext_vpd_compact("Remote IOA", hostrcb, &error->vpd);
1803 ipr_log_hex_data(ioa_cfg, error->data,
1804 be32_to_cpu(hostrcb->hcam.length) -
1805 (offsetof(struct ipr_hostrcb_error, u) +
1806 offsetof(struct ipr_hostrcb_type_17_error, data)));
1807}
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817static void ipr_log_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1818 struct ipr_hostrcb *hostrcb)
1819{
1820 struct ipr_hostrcb_type_07_error *error;
1821
1822 error = &hostrcb->hcam.u.error.u.type_07_error;
1823 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
1824 strim(error->failure_reason);
1825
1826 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1827 be32_to_cpu(hostrcb->hcam.u.error.prc));
1828 ipr_log_vpd_compact("Remote IOA", hostrcb, &error->vpd);
1829 ipr_log_hex_data(ioa_cfg, error->data,
1830 be32_to_cpu(hostrcb->hcam.length) -
1831 (offsetof(struct ipr_hostrcb_error, u) +
1832 offsetof(struct ipr_hostrcb_type_07_error, data)));
1833}
1834
1835static const struct {
1836 u8 active;
1837 char *desc;
1838} path_active_desc[] = {
1839 { IPR_PATH_NO_INFO, "Path" },
1840 { IPR_PATH_ACTIVE, "Active path" },
1841 { IPR_PATH_NOT_ACTIVE, "Inactive path" }
1842};
1843
1844static const struct {
1845 u8 state;
1846 char *desc;
1847} path_state_desc[] = {
1848 { IPR_PATH_STATE_NO_INFO, "has no path state information available" },
1849 { IPR_PATH_HEALTHY, "is healthy" },
1850 { IPR_PATH_DEGRADED, "is degraded" },
1851 { IPR_PATH_FAILED, "is failed" }
1852};
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862static void ipr_log_fabric_path(struct ipr_hostrcb *hostrcb,
1863 struct ipr_hostrcb_fabric_desc *fabric)
1864{
1865 int i, j;
1866 u8 path_state = fabric->path_state;
1867 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
1868 u8 state = path_state & IPR_PATH_STATE_MASK;
1869
1870 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
1871 if (path_active_desc[i].active != active)
1872 continue;
1873
1874 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
1875 if (path_state_desc[j].state != state)
1876 continue;
1877
1878 if (fabric->cascaded_expander == 0xff && fabric->phy == 0xff) {
1879 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d\n",
1880 path_active_desc[i].desc, path_state_desc[j].desc,
1881 fabric->ioa_port);
1882 } else if (fabric->cascaded_expander == 0xff) {
1883 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Phy=%d\n",
1884 path_active_desc[i].desc, path_state_desc[j].desc,
1885 fabric->ioa_port, fabric->phy);
1886 } else if (fabric->phy == 0xff) {
1887 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d\n",
1888 path_active_desc[i].desc, path_state_desc[j].desc,
1889 fabric->ioa_port, fabric->cascaded_expander);
1890 } else {
1891 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d, Phy=%d\n",
1892 path_active_desc[i].desc, path_state_desc[j].desc,
1893 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
1894 }
1895 return;
1896 }
1897 }
1898
1899 ipr_err("Path state=%02X IOA Port=%d Cascade=%d Phy=%d\n", path_state,
1900 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
1901}
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911static void ipr_log64_fabric_path(struct ipr_hostrcb *hostrcb,
1912 struct ipr_hostrcb64_fabric_desc *fabric)
1913{
1914 int i, j;
1915 u8 path_state = fabric->path_state;
1916 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
1917 u8 state = path_state & IPR_PATH_STATE_MASK;
1918 char buffer[IPR_MAX_RES_PATH_LENGTH];
1919
1920 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
1921 if (path_active_desc[i].active != active)
1922 continue;
1923
1924 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
1925 if (path_state_desc[j].state != state)
1926 continue;
1927
1928 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s\n",
1929 path_active_desc[i].desc, path_state_desc[j].desc,
1930 ipr_format_res_path(fabric->res_path, buffer,
1931 sizeof(buffer)));
1932 return;
1933 }
1934 }
1935
1936 ipr_err("Path state=%02X Resource Path=%s\n", path_state,
1937 ipr_format_res_path(fabric->res_path, buffer, sizeof(buffer)));
1938}
1939
1940static const struct {
1941 u8 type;
1942 char *desc;
1943} path_type_desc[] = {
1944 { IPR_PATH_CFG_IOA_PORT, "IOA port" },
1945 { IPR_PATH_CFG_EXP_PORT, "Expander port" },
1946 { IPR_PATH_CFG_DEVICE_PORT, "Device port" },
1947 { IPR_PATH_CFG_DEVICE_LUN, "Device LUN" }
1948};
1949
1950static const struct {
1951 u8 status;
1952 char *desc;
1953} path_status_desc[] = {
1954 { IPR_PATH_CFG_NO_PROB, "Functional" },
1955 { IPR_PATH_CFG_DEGRADED, "Degraded" },
1956 { IPR_PATH_CFG_FAILED, "Failed" },
1957 { IPR_PATH_CFG_SUSPECT, "Suspect" },
1958 { IPR_PATH_NOT_DETECTED, "Missing" },
1959 { IPR_PATH_INCORRECT_CONN, "Incorrectly connected" }
1960};
1961
1962static const char *link_rate[] = {
1963 "unknown",
1964 "disabled",
1965 "phy reset problem",
1966 "spinup hold",
1967 "port selector",
1968 "unknown",
1969 "unknown",
1970 "unknown",
1971 "1.5Gbps",
1972 "3.0Gbps",
1973 "unknown",
1974 "unknown",
1975 "unknown",
1976 "unknown",
1977 "unknown",
1978 "unknown"
1979};
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989static void ipr_log_path_elem(struct ipr_hostrcb *hostrcb,
1990 struct ipr_hostrcb_config_element *cfg)
1991{
1992 int i, j;
1993 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
1994 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
1995
1996 if (type == IPR_PATH_CFG_NOT_EXIST)
1997 return;
1998
1999 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2000 if (path_type_desc[i].type != type)
2001 continue;
2002
2003 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2004 if (path_status_desc[j].status != status)
2005 continue;
2006
2007 if (type == IPR_PATH_CFG_IOA_PORT) {
2008 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, WWN=%08X%08X\n",
2009 path_status_desc[j].desc, path_type_desc[i].desc,
2010 cfg->phy, link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2011 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2012 } else {
2013 if (cfg->cascaded_expander == 0xff && cfg->phy == 0xff) {
2014 ipr_hcam_err(hostrcb, "%s %s: Link rate=%s, WWN=%08X%08X\n",
2015 path_status_desc[j].desc, path_type_desc[i].desc,
2016 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2017 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2018 } else if (cfg->cascaded_expander == 0xff) {
2019 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, "
2020 "WWN=%08X%08X\n", path_status_desc[j].desc,
2021 path_type_desc[i].desc, cfg->phy,
2022 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2023 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2024 } else if (cfg->phy == 0xff) {
2025 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Link rate=%s, "
2026 "WWN=%08X%08X\n", path_status_desc[j].desc,
2027 path_type_desc[i].desc, cfg->cascaded_expander,
2028 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2029 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2030 } else {
2031 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Phy=%d, Link rate=%s "
2032 "WWN=%08X%08X\n", path_status_desc[j].desc,
2033 path_type_desc[i].desc, cfg->cascaded_expander, cfg->phy,
2034 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2035 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2036 }
2037 }
2038 return;
2039 }
2040 }
2041
2042 ipr_hcam_err(hostrcb, "Path element=%02X: Cascade=%d Phy=%d Link rate=%s "
2043 "WWN=%08X%08X\n", cfg->type_status, cfg->cascaded_expander, cfg->phy,
2044 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2045 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2046}
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056static void ipr_log64_path_elem(struct ipr_hostrcb *hostrcb,
2057 struct ipr_hostrcb64_config_element *cfg)
2058{
2059 int i, j;
2060 u8 desc_id = cfg->descriptor_id & IPR_DESCRIPTOR_MASK;
2061 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
2062 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
2063 char buffer[IPR_MAX_RES_PATH_LENGTH];
2064
2065 if (type == IPR_PATH_CFG_NOT_EXIST || desc_id != IPR_DESCRIPTOR_SIS64)
2066 return;
2067
2068 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2069 if (path_type_desc[i].type != type)
2070 continue;
2071
2072 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2073 if (path_status_desc[j].status != status)
2074 continue;
2075
2076 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s, Link rate=%s, WWN=%08X%08X\n",
2077 path_status_desc[j].desc, path_type_desc[i].desc,
2078 ipr_format_res_path(cfg->res_path, buffer,
2079 sizeof(buffer)),
2080 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2081 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2082 return;
2083 }
2084 }
2085 ipr_hcam_err(hostrcb, "Path element=%02X: Resource Path=%s, Link rate=%s "
2086 "WWN=%08X%08X\n", cfg->type_status,
2087 ipr_format_res_path(cfg->res_path, buffer, sizeof(buffer)),
2088 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2089 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2090}
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100static void ipr_log_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2101 struct ipr_hostrcb *hostrcb)
2102{
2103 struct ipr_hostrcb_type_20_error *error;
2104 struct ipr_hostrcb_fabric_desc *fabric;
2105 struct ipr_hostrcb_config_element *cfg;
2106 int i, add_len;
2107
2108 error = &hostrcb->hcam.u.error.u.type_20_error;
2109 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2110 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2111
2112 add_len = be32_to_cpu(hostrcb->hcam.length) -
2113 (offsetof(struct ipr_hostrcb_error, u) +
2114 offsetof(struct ipr_hostrcb_type_20_error, desc));
2115
2116 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2117 ipr_log_fabric_path(hostrcb, fabric);
2118 for_each_fabric_cfg(fabric, cfg)
2119 ipr_log_path_elem(hostrcb, cfg);
2120
2121 add_len -= be16_to_cpu(fabric->length);
2122 fabric = (struct ipr_hostrcb_fabric_desc *)
2123 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2124 }
2125
2126 ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
2127}
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137static void ipr_log_sis64_array_error(struct ipr_ioa_cfg *ioa_cfg,
2138 struct ipr_hostrcb *hostrcb)
2139{
2140 int i, num_entries;
2141 struct ipr_hostrcb_type_24_error *error;
2142 struct ipr_hostrcb64_array_data_entry *array_entry;
2143 char buffer[IPR_MAX_RES_PATH_LENGTH];
2144 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
2145
2146 error = &hostrcb->hcam.u.error64.u.type_24_error;
2147
2148 ipr_err_separator;
2149
2150 ipr_err("RAID %s Array Configuration: %s\n",
2151 error->protection_level,
2152 ipr_format_res_path(error->last_res_path, buffer, sizeof(buffer)));
2153
2154 ipr_err_separator;
2155
2156 array_entry = error->array_member;
2157 num_entries = min_t(u32, error->num_entries,
2158 ARRAY_SIZE(error->array_member));
2159
2160 for (i = 0; i < num_entries; i++, array_entry++) {
2161
2162 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
2163 continue;
2164
2165 if (error->exposed_mode_adn == i)
2166 ipr_err("Exposed Array Member %d:\n", i);
2167 else
2168 ipr_err("Array Member %d:\n", i);
2169
2170 ipr_err("Array Member %d:\n", i);
2171 ipr_log_ext_vpd(&array_entry->vpd);
2172 ipr_err("Current Location: %s\n",
2173 ipr_format_res_path(array_entry->res_path, buffer,
2174 sizeof(buffer)));
2175 ipr_err("Expected Location: %s\n",
2176 ipr_format_res_path(array_entry->expected_res_path,
2177 buffer, sizeof(buffer)));
2178
2179 ipr_err_separator;
2180 }
2181}
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191static void ipr_log_sis64_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2192 struct ipr_hostrcb *hostrcb)
2193{
2194 struct ipr_hostrcb_type_30_error *error;
2195 struct ipr_hostrcb64_fabric_desc *fabric;
2196 struct ipr_hostrcb64_config_element *cfg;
2197 int i, add_len;
2198
2199 error = &hostrcb->hcam.u.error64.u.type_30_error;
2200
2201 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2202 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2203
2204 add_len = be32_to_cpu(hostrcb->hcam.length) -
2205 (offsetof(struct ipr_hostrcb64_error, u) +
2206 offsetof(struct ipr_hostrcb_type_30_error, desc));
2207
2208 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2209 ipr_log64_fabric_path(hostrcb, fabric);
2210 for_each_fabric_cfg(fabric, cfg)
2211 ipr_log64_path_elem(hostrcb, cfg);
2212
2213 add_len -= be16_to_cpu(fabric->length);
2214 fabric = (struct ipr_hostrcb64_fabric_desc *)
2215 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2216 }
2217
2218 ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
2219}
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229static void ipr_log_generic_error(struct ipr_ioa_cfg *ioa_cfg,
2230 struct ipr_hostrcb *hostrcb)
2231{
2232 ipr_log_hex_data(ioa_cfg, hostrcb->hcam.u.raw.data,
2233 be32_to_cpu(hostrcb->hcam.length));
2234}
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247static u32 ipr_get_error(u32 ioasc)
2248{
2249 int i;
2250
2251 for (i = 0; i < ARRAY_SIZE(ipr_error_table); i++)
2252 if (ipr_error_table[i].ioasc == (ioasc & IPR_IOASC_IOASC_MASK))
2253 return i;
2254
2255 return 0;
2256}
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268static void ipr_handle_log_data(struct ipr_ioa_cfg *ioa_cfg,
2269 struct ipr_hostrcb *hostrcb)
2270{
2271 u32 ioasc;
2272 int error_index;
2273
2274 if (hostrcb->hcam.notify_type != IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY)
2275 return;
2276
2277 if (hostrcb->hcam.notifications_lost == IPR_HOST_RCB_NOTIFICATIONS_LOST)
2278 dev_err(&ioa_cfg->pdev->dev, "Error notifications lost\n");
2279
2280 if (ioa_cfg->sis64)
2281 ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2282 else
2283 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
2284
2285 if (!ioa_cfg->sis64 && (ioasc == IPR_IOASC_BUS_WAS_RESET ||
2286 ioasc == IPR_IOASC_BUS_WAS_RESET_BY_OTHER)) {
2287
2288 scsi_report_bus_reset(ioa_cfg->host,
2289 hostrcb->hcam.u.error.fd_res_addr.bus);
2290 }
2291
2292 error_index = ipr_get_error(ioasc);
2293
2294 if (!ipr_error_table[error_index].log_hcam)
2295 return;
2296
2297 ipr_hcam_err(hostrcb, "%s\n", ipr_error_table[error_index].error);
2298
2299
2300 ioa_cfg->errors_logged++;
2301
2302 if (ioa_cfg->log_level < ipr_error_table[error_index].log_hcam)
2303 return;
2304 if (be32_to_cpu(hostrcb->hcam.length) > sizeof(hostrcb->hcam.u.raw))
2305 hostrcb->hcam.length = cpu_to_be32(sizeof(hostrcb->hcam.u.raw));
2306
2307 switch (hostrcb->hcam.overlay_id) {
2308 case IPR_HOST_RCB_OVERLAY_ID_2:
2309 ipr_log_cache_error(ioa_cfg, hostrcb);
2310 break;
2311 case IPR_HOST_RCB_OVERLAY_ID_3:
2312 ipr_log_config_error(ioa_cfg, hostrcb);
2313 break;
2314 case IPR_HOST_RCB_OVERLAY_ID_4:
2315 case IPR_HOST_RCB_OVERLAY_ID_6:
2316 ipr_log_array_error(ioa_cfg, hostrcb);
2317 break;
2318 case IPR_HOST_RCB_OVERLAY_ID_7:
2319 ipr_log_dual_ioa_error(ioa_cfg, hostrcb);
2320 break;
2321 case IPR_HOST_RCB_OVERLAY_ID_12:
2322 ipr_log_enhanced_cache_error(ioa_cfg, hostrcb);
2323 break;
2324 case IPR_HOST_RCB_OVERLAY_ID_13:
2325 ipr_log_enhanced_config_error(ioa_cfg, hostrcb);
2326 break;
2327 case IPR_HOST_RCB_OVERLAY_ID_14:
2328 case IPR_HOST_RCB_OVERLAY_ID_16:
2329 ipr_log_enhanced_array_error(ioa_cfg, hostrcb);
2330 break;
2331 case IPR_HOST_RCB_OVERLAY_ID_17:
2332 ipr_log_enhanced_dual_ioa_error(ioa_cfg, hostrcb);
2333 break;
2334 case IPR_HOST_RCB_OVERLAY_ID_20:
2335 ipr_log_fabric_error(ioa_cfg, hostrcb);
2336 break;
2337 case IPR_HOST_RCB_OVERLAY_ID_23:
2338 ipr_log_sis64_config_error(ioa_cfg, hostrcb);
2339 break;
2340 case IPR_HOST_RCB_OVERLAY_ID_24:
2341 case IPR_HOST_RCB_OVERLAY_ID_26:
2342 ipr_log_sis64_array_error(ioa_cfg, hostrcb);
2343 break;
2344 case IPR_HOST_RCB_OVERLAY_ID_30:
2345 ipr_log_sis64_fabric_error(ioa_cfg, hostrcb);
2346 break;
2347 case IPR_HOST_RCB_OVERLAY_ID_1:
2348 case IPR_HOST_RCB_OVERLAY_ID_DEFAULT:
2349 default:
2350 ipr_log_generic_error(ioa_cfg, hostrcb);
2351 break;
2352 }
2353}
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
2367{
2368 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2369 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
2370 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
2371 u32 fd_ioasc;
2372
2373 if (ioa_cfg->sis64)
2374 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2375 else
2376 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
2377
2378 list_del(&hostrcb->queue);
2379 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
2380
2381 if (!ioasc) {
2382 ipr_handle_log_data(ioa_cfg, hostrcb);
2383 if (fd_ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED)
2384 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_ABBREV);
2385 } else if (ioasc != IPR_IOASC_IOA_WAS_RESET) {
2386 dev_err(&ioa_cfg->pdev->dev,
2387 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
2388 }
2389
2390 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
2391}
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403static void ipr_timeout(struct ipr_cmnd *ipr_cmd)
2404{
2405 unsigned long lock_flags = 0;
2406 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2407
2408 ENTER;
2409 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2410
2411 ioa_cfg->errors_logged++;
2412 dev_err(&ioa_cfg->pdev->dev,
2413 "Adapter being reset due to command timeout.\n");
2414
2415 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2416 ioa_cfg->sdt_state = GET_DUMP;
2417
2418 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd)
2419 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2420
2421 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2422 LEAVE;
2423}
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435static void ipr_oper_timeout(struct ipr_cmnd *ipr_cmd)
2436{
2437 unsigned long lock_flags = 0;
2438 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2439
2440 ENTER;
2441 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2442
2443 ioa_cfg->errors_logged++;
2444 dev_err(&ioa_cfg->pdev->dev,
2445 "Adapter timed out transitioning to operational.\n");
2446
2447 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2448 ioa_cfg->sdt_state = GET_DUMP;
2449
2450 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd) {
2451 if (ipr_fastfail)
2452 ioa_cfg->reset_retries += IPR_NUM_RESET_RELOAD_RETRIES;
2453 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2454 }
2455
2456 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2457 LEAVE;
2458}
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470static int ipr_reset_reload(struct ipr_ioa_cfg *ioa_cfg,
2471 enum ipr_shutdown_type shutdown_type)
2472{
2473 if (!ioa_cfg->in_reset_reload)
2474 ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
2475
2476 spin_unlock_irq(ioa_cfg->host->host_lock);
2477 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
2478 spin_lock_irq(ioa_cfg->host->host_lock);
2479
2480
2481
2482 if (ioa_cfg->ioa_is_dead) {
2483 ipr_trace;
2484 return FAILED;
2485 }
2486
2487 return SUCCESS;
2488}
2489
2490
2491
2492
2493
2494
2495
2496
2497static const struct ipr_ses_table_entry *
2498ipr_find_ses_entry(struct ipr_resource_entry *res)
2499{
2500 int i, j, matches;
2501 struct ipr_std_inq_vpids *vpids;
2502 const struct ipr_ses_table_entry *ste = ipr_ses_table;
2503
2504 for (i = 0; i < ARRAY_SIZE(ipr_ses_table); i++, ste++) {
2505 for (j = 0, matches = 0; j < IPR_PROD_ID_LEN; j++) {
2506 if (ste->compare_product_id_byte[j] == 'X') {
2507 vpids = &res->std_inq_data.vpids;
2508 if (vpids->product_id[j] == ste->product_id[j])
2509 matches++;
2510 else
2511 break;
2512 } else
2513 matches++;
2514 }
2515
2516 if (matches == IPR_PROD_ID_LEN)
2517 return ste;
2518 }
2519
2520 return NULL;
2521}
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535static u32 ipr_get_max_scsi_speed(struct ipr_ioa_cfg *ioa_cfg, u8 bus, u8 bus_width)
2536{
2537 struct ipr_resource_entry *res;
2538 const struct ipr_ses_table_entry *ste;
2539 u32 max_xfer_rate = IPR_MAX_SCSI_RATE(bus_width);
2540
2541
2542 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
2543 if (!(IPR_IS_SES_DEVICE(res->std_inq_data)))
2544 continue;
2545
2546 if (bus != res->bus)
2547 continue;
2548
2549 if (!(ste = ipr_find_ses_entry(res)))
2550 continue;
2551
2552 max_xfer_rate = (ste->max_bus_speed_limit * 10) / (bus_width / 8);
2553 }
2554
2555 return max_xfer_rate;
2556}
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568static int ipr_wait_iodbg_ack(struct ipr_ioa_cfg *ioa_cfg, int max_delay)
2569{
2570 volatile u32 pcii_reg;
2571 int delay = 1;
2572
2573
2574 while (delay < max_delay) {
2575 pcii_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
2576
2577 if (pcii_reg & IPR_PCII_IO_DEBUG_ACKNOWLEDGE)
2578 return 0;
2579
2580
2581 if ((delay / 1000) > MAX_UDELAY_MS)
2582 mdelay(delay / 1000);
2583 else
2584 udelay(delay);
2585
2586 delay += delay;
2587 }
2588 return -EIO;
2589}
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601static int ipr_get_sis64_dump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2602 u32 start_addr,
2603 __be32 *dest, u32 length_in_words)
2604{
2605 int i;
2606
2607 for (i = 0; i < length_in_words; i++) {
2608 writel(start_addr+(i*4), ioa_cfg->regs.dump_addr_reg);
2609 *dest = cpu_to_be32(readl(ioa_cfg->regs.dump_data_reg));
2610 dest++;
2611 }
2612
2613 return 0;
2614}
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626static int ipr_get_ldump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2627 u32 start_addr,
2628 __be32 *dest, u32 length_in_words)
2629{
2630 volatile u32 temp_pcii_reg;
2631 int i, delay = 0;
2632
2633 if (ioa_cfg->sis64)
2634 return ipr_get_sis64_dump_data_section(ioa_cfg, start_addr,
2635 dest, length_in_words);
2636
2637
2638 writel((IPR_UPROCI_RESET_ALERT | IPR_UPROCI_IO_DEBUG_ALERT),
2639 ioa_cfg->regs.set_uproc_interrupt_reg32);
2640
2641
2642 if (ipr_wait_iodbg_ack(ioa_cfg,
2643 IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC)) {
2644 dev_err(&ioa_cfg->pdev->dev,
2645 "IOA dump long data transfer timeout\n");
2646 return -EIO;
2647 }
2648
2649
2650 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2651 ioa_cfg->regs.clr_interrupt_reg);
2652
2653
2654 writel(start_addr, ioa_cfg->ioa_mailbox);
2655
2656
2657 writel(IPR_UPROCI_RESET_ALERT,
2658 ioa_cfg->regs.clr_uproc_interrupt_reg32);
2659
2660 for (i = 0; i < length_in_words; i++) {
2661
2662 if (ipr_wait_iodbg_ack(ioa_cfg,
2663 IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC)) {
2664 dev_err(&ioa_cfg->pdev->dev,
2665 "IOA dump short data transfer timeout\n");
2666 return -EIO;
2667 }
2668
2669
2670 *dest = cpu_to_be32(readl(ioa_cfg->ioa_mailbox));
2671 dest++;
2672
2673
2674 if (i < (length_in_words - 1)) {
2675
2676 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2677 ioa_cfg->regs.clr_interrupt_reg);
2678 }
2679 }
2680
2681
2682 writel(IPR_UPROCI_RESET_ALERT,
2683 ioa_cfg->regs.set_uproc_interrupt_reg32);
2684
2685 writel(IPR_UPROCI_IO_DEBUG_ALERT,
2686 ioa_cfg->regs.clr_uproc_interrupt_reg32);
2687
2688
2689 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2690 ioa_cfg->regs.clr_interrupt_reg);
2691
2692
2693 while (delay < IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC) {
2694 temp_pcii_reg =
2695 readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
2696
2697 if (!(temp_pcii_reg & IPR_UPROCI_RESET_ALERT))
2698 return 0;
2699
2700 udelay(10);
2701 delay += 10;
2702 }
2703
2704 return 0;
2705}
2706
2707#ifdef CONFIG_SCSI_IPR_DUMP
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719static int ipr_sdt_copy(struct ipr_ioa_cfg *ioa_cfg,
2720 unsigned long pci_address, u32 length)
2721{
2722 int bytes_copied = 0;
2723 int cur_len, rc, rem_len, rem_page_len, max_dump_size;
2724 __be32 *page;
2725 unsigned long lock_flags = 0;
2726 struct ipr_ioa_dump *ioa_dump = &ioa_cfg->dump->ioa_dump;
2727
2728 if (ioa_cfg->sis64)
2729 max_dump_size = IPR_FMT3_MAX_IOA_DUMP_SIZE;
2730 else
2731 max_dump_size = IPR_FMT2_MAX_IOA_DUMP_SIZE;
2732
2733 while (bytes_copied < length &&
2734 (ioa_dump->hdr.len + bytes_copied) < max_dump_size) {
2735 if (ioa_dump->page_offset >= PAGE_SIZE ||
2736 ioa_dump->page_offset == 0) {
2737 page = (__be32 *)__get_free_page(GFP_ATOMIC);
2738
2739 if (!page) {
2740 ipr_trace;
2741 return bytes_copied;
2742 }
2743
2744 ioa_dump->page_offset = 0;
2745 ioa_dump->ioa_data[ioa_dump->next_page_index] = page;
2746 ioa_dump->next_page_index++;
2747 } else
2748 page = ioa_dump->ioa_data[ioa_dump->next_page_index - 1];
2749
2750 rem_len = length - bytes_copied;
2751 rem_page_len = PAGE_SIZE - ioa_dump->page_offset;
2752 cur_len = min(rem_len, rem_page_len);
2753
2754 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2755 if (ioa_cfg->sdt_state == ABORT_DUMP) {
2756 rc = -EIO;
2757 } else {
2758 rc = ipr_get_ldump_data_section(ioa_cfg,
2759 pci_address + bytes_copied,
2760 &page[ioa_dump->page_offset / 4],
2761 (cur_len / sizeof(u32)));
2762 }
2763 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2764
2765 if (!rc) {
2766 ioa_dump->page_offset += cur_len;
2767 bytes_copied += cur_len;
2768 } else {
2769 ipr_trace;
2770 break;
2771 }
2772 schedule();
2773 }
2774
2775 return bytes_copied;
2776}
2777
2778
2779
2780
2781
2782
2783
2784
2785static void ipr_init_dump_entry_hdr(struct ipr_dump_entry_header *hdr)
2786{
2787 hdr->eye_catcher = IPR_DUMP_EYE_CATCHER;
2788 hdr->num_elems = 1;
2789 hdr->offset = sizeof(*hdr);
2790 hdr->status = IPR_DUMP_STATUS_SUCCESS;
2791}
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801static void ipr_dump_ioa_type_data(struct ipr_ioa_cfg *ioa_cfg,
2802 struct ipr_driver_dump *driver_dump)
2803{
2804 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
2805
2806 ipr_init_dump_entry_hdr(&driver_dump->ioa_type_entry.hdr);
2807 driver_dump->ioa_type_entry.hdr.len =
2808 sizeof(struct ipr_dump_ioa_type_entry) -
2809 sizeof(struct ipr_dump_entry_header);
2810 driver_dump->ioa_type_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2811 driver_dump->ioa_type_entry.hdr.id = IPR_DUMP_DRIVER_TYPE_ID;
2812 driver_dump->ioa_type_entry.type = ioa_cfg->type;
2813 driver_dump->ioa_type_entry.fw_version = (ucode_vpd->major_release << 24) |
2814 (ucode_vpd->card_type << 16) | (ucode_vpd->minor_release[0] << 8) |
2815 ucode_vpd->minor_release[1];
2816 driver_dump->hdr.num_entries++;
2817}
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827static void ipr_dump_version_data(struct ipr_ioa_cfg *ioa_cfg,
2828 struct ipr_driver_dump *driver_dump)
2829{
2830 ipr_init_dump_entry_hdr(&driver_dump->version_entry.hdr);
2831 driver_dump->version_entry.hdr.len =
2832 sizeof(struct ipr_dump_version_entry) -
2833 sizeof(struct ipr_dump_entry_header);
2834 driver_dump->version_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
2835 driver_dump->version_entry.hdr.id = IPR_DUMP_DRIVER_VERSION_ID;
2836 strcpy(driver_dump->version_entry.version, IPR_DRIVER_VERSION);
2837 driver_dump->hdr.num_entries++;
2838}
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848static void ipr_dump_trace_data(struct ipr_ioa_cfg *ioa_cfg,
2849 struct ipr_driver_dump *driver_dump)
2850{
2851 ipr_init_dump_entry_hdr(&driver_dump->trace_entry.hdr);
2852 driver_dump->trace_entry.hdr.len =
2853 sizeof(struct ipr_dump_trace_entry) -
2854 sizeof(struct ipr_dump_entry_header);
2855 driver_dump->trace_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2856 driver_dump->trace_entry.hdr.id = IPR_DUMP_TRACE_ID;
2857 memcpy(driver_dump->trace_entry.trace, ioa_cfg->trace, IPR_TRACE_SIZE);
2858 driver_dump->hdr.num_entries++;
2859}
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869static void ipr_dump_location_data(struct ipr_ioa_cfg *ioa_cfg,
2870 struct ipr_driver_dump *driver_dump)
2871{
2872 ipr_init_dump_entry_hdr(&driver_dump->location_entry.hdr);
2873 driver_dump->location_entry.hdr.len =
2874 sizeof(struct ipr_dump_location_entry) -
2875 sizeof(struct ipr_dump_entry_header);
2876 driver_dump->location_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
2877 driver_dump->location_entry.hdr.id = IPR_DUMP_LOCATION_ID;
2878 strcpy(driver_dump->location_entry.location, dev_name(&ioa_cfg->pdev->dev));
2879 driver_dump->hdr.num_entries++;
2880}
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890static void ipr_get_ioa_dump(struct ipr_ioa_cfg *ioa_cfg, struct ipr_dump *dump)
2891{
2892 unsigned long start_addr, sdt_word;
2893 unsigned long lock_flags = 0;
2894 struct ipr_driver_dump *driver_dump = &dump->driver_dump;
2895 struct ipr_ioa_dump *ioa_dump = &dump->ioa_dump;
2896 u32 num_entries, max_num_entries, start_off, end_off;
2897 u32 max_dump_size, bytes_to_copy, bytes_copied, rc;
2898 struct ipr_sdt *sdt;
2899 int valid = 1;
2900 int i;
2901
2902 ENTER;
2903
2904 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2905
2906 if (ioa_cfg->sdt_state != READ_DUMP) {
2907 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2908 return;
2909 }
2910
2911 if (ioa_cfg->sis64) {
2912 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2913 ssleep(IPR_DUMP_DELAY_SECONDS);
2914 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2915 }
2916
2917 start_addr = readl(ioa_cfg->ioa_mailbox);
2918
2919 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(start_addr)) {
2920 dev_err(&ioa_cfg->pdev->dev,
2921 "Invalid dump table format: %lx\n", start_addr);
2922 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2923 return;
2924 }
2925
2926 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA initiated\n");
2927
2928 driver_dump->hdr.eye_catcher = IPR_DUMP_EYE_CATCHER;
2929
2930
2931 driver_dump->hdr.len = sizeof(struct ipr_driver_dump);
2932 driver_dump->hdr.num_entries = 1;
2933 driver_dump->hdr.first_entry_offset = sizeof(struct ipr_dump_header);
2934 driver_dump->hdr.status = IPR_DUMP_STATUS_SUCCESS;
2935 driver_dump->hdr.os = IPR_DUMP_OS_LINUX;
2936 driver_dump->hdr.driver_name = IPR_DUMP_DRIVER_NAME;
2937
2938 ipr_dump_version_data(ioa_cfg, driver_dump);
2939 ipr_dump_location_data(ioa_cfg, driver_dump);
2940 ipr_dump_ioa_type_data(ioa_cfg, driver_dump);
2941 ipr_dump_trace_data(ioa_cfg, driver_dump);
2942
2943
2944 driver_dump->hdr.len += sizeof(struct ipr_dump_entry_header);
2945
2946
2947 ipr_init_dump_entry_hdr(&ioa_dump->hdr);
2948 ioa_dump->hdr.len = 0;
2949 ioa_dump->hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2950 ioa_dump->hdr.id = IPR_DUMP_IOA_DUMP_ID;
2951
2952
2953
2954
2955
2956 sdt = &ioa_dump->sdt;
2957
2958 if (ioa_cfg->sis64) {
2959 max_num_entries = IPR_FMT3_NUM_SDT_ENTRIES;
2960 max_dump_size = IPR_FMT3_MAX_IOA_DUMP_SIZE;
2961 } else {
2962 max_num_entries = IPR_FMT2_NUM_SDT_ENTRIES;
2963 max_dump_size = IPR_FMT2_MAX_IOA_DUMP_SIZE;
2964 }
2965
2966 bytes_to_copy = offsetof(struct ipr_sdt, entry) +
2967 (max_num_entries * sizeof(struct ipr_sdt_entry));
2968 rc = ipr_get_ldump_data_section(ioa_cfg, start_addr, (__be32 *)sdt,
2969 bytes_to_copy / sizeof(__be32));
2970
2971
2972 if (rc || ((be32_to_cpu(sdt->hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
2973 (be32_to_cpu(sdt->hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
2974 dev_err(&ioa_cfg->pdev->dev,
2975 "Dump of IOA failed. Dump table not valid: %d, %X.\n",
2976 rc, be32_to_cpu(sdt->hdr.state));
2977 driver_dump->hdr.status = IPR_DUMP_STATUS_FAILED;
2978 ioa_cfg->sdt_state = DUMP_OBTAINED;
2979 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2980 return;
2981 }
2982
2983 num_entries = be32_to_cpu(sdt->hdr.num_entries_used);
2984
2985 if (num_entries > max_num_entries)
2986 num_entries = max_num_entries;
2987
2988
2989 dump->driver_dump.hdr.len += sizeof(struct ipr_sdt_header);
2990 if (ioa_cfg->sis64)
2991 dump->driver_dump.hdr.len += num_entries * sizeof(struct ipr_sdt_entry);
2992 else
2993 dump->driver_dump.hdr.len += max_num_entries * sizeof(struct ipr_sdt_entry);
2994
2995 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2996
2997 for (i = 0; i < num_entries; i++) {
2998 if (ioa_dump->hdr.len > max_dump_size) {
2999 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3000 break;
3001 }
3002
3003 if (sdt->entry[i].flags & IPR_SDT_VALID_ENTRY) {
3004 sdt_word = be32_to_cpu(sdt->entry[i].start_token);
3005 if (ioa_cfg->sis64)
3006 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token);
3007 else {
3008 start_off = sdt_word & IPR_FMT2_MBX_ADDR_MASK;
3009 end_off = be32_to_cpu(sdt->entry[i].end_token);
3010
3011 if (ipr_sdt_is_fmt2(sdt_word) && sdt_word)
3012 bytes_to_copy = end_off - start_off;
3013 else
3014 valid = 0;
3015 }
3016 if (valid) {
3017 if (bytes_to_copy > max_dump_size) {
3018 sdt->entry[i].flags &= ~IPR_SDT_VALID_ENTRY;
3019 continue;
3020 }
3021
3022
3023 bytes_copied = ipr_sdt_copy(ioa_cfg, sdt_word,
3024 bytes_to_copy);
3025
3026 ioa_dump->hdr.len += bytes_copied;
3027
3028 if (bytes_copied != bytes_to_copy) {
3029 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3030 break;
3031 }
3032 }
3033 }
3034 }
3035
3036 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA completed.\n");
3037
3038
3039 driver_dump->hdr.len += ioa_dump->hdr.len;
3040 wmb();
3041 ioa_cfg->sdt_state = DUMP_OBTAINED;
3042 LEAVE;
3043}
3044
3045#else
3046#define ipr_get_ioa_dump(ioa_cfg, dump) do { } while(0)
3047#endif
3048
3049
3050
3051
3052
3053
3054
3055
3056static void ipr_release_dump(struct kref *kref)
3057{
3058 struct ipr_dump *dump = container_of(kref,struct ipr_dump,kref);
3059 struct ipr_ioa_cfg *ioa_cfg = dump->ioa_cfg;
3060 unsigned long lock_flags = 0;
3061 int i;
3062
3063 ENTER;
3064 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3065 ioa_cfg->dump = NULL;
3066 ioa_cfg->sdt_state = INACTIVE;
3067 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3068
3069 for (i = 0; i < dump->ioa_dump.next_page_index; i++)
3070 free_page((unsigned long) dump->ioa_dump.ioa_data[i]);
3071
3072 vfree(dump->ioa_dump.ioa_data);
3073 kfree(dump);
3074 LEAVE;
3075}
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088static void ipr_worker_thread(struct work_struct *work)
3089{
3090 unsigned long lock_flags;
3091 struct ipr_resource_entry *res;
3092 struct scsi_device *sdev;
3093 struct ipr_dump *dump;
3094 struct ipr_ioa_cfg *ioa_cfg =
3095 container_of(work, struct ipr_ioa_cfg, work_q);
3096 u8 bus, target, lun;
3097 int did_work;
3098
3099 ENTER;
3100 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3101
3102 if (ioa_cfg->sdt_state == READ_DUMP) {
3103 dump = ioa_cfg->dump;
3104 if (!dump) {
3105 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3106 return;
3107 }
3108 kref_get(&dump->kref);
3109 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3110 ipr_get_ioa_dump(ioa_cfg, dump);
3111 kref_put(&dump->kref, ipr_release_dump);
3112
3113 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3114 if (ioa_cfg->sdt_state == DUMP_OBTAINED && !ioa_cfg->dump_timeout)
3115 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3116 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3117 return;
3118 }
3119
3120restart:
3121 do {
3122 did_work = 0;
3123 if (!ioa_cfg->allow_cmds || !ioa_cfg->allow_ml_add_del) {
3124 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3125 return;
3126 }
3127
3128 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3129 if (res->del_from_ml && res->sdev) {
3130 did_work = 1;
3131 sdev = res->sdev;
3132 if (!scsi_device_get(sdev)) {
3133 if (!res->add_to_ml)
3134 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
3135 else
3136 res->del_from_ml = 0;
3137 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3138 scsi_remove_device(sdev);
3139 scsi_device_put(sdev);
3140 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3141 }
3142 break;
3143 }
3144 }
3145 } while(did_work);
3146
3147 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3148 if (res->add_to_ml) {
3149 bus = res->bus;
3150 target = res->target;
3151 lun = res->lun;
3152 res->add_to_ml = 0;
3153 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3154 scsi_add_device(ioa_cfg->host, bus, target, lun);
3155 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3156 goto restart;
3157 }
3158 }
3159
3160 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3161 kobject_uevent(&ioa_cfg->host->shost_dev.kobj, KOBJ_CHANGE);
3162 LEAVE;
3163}
3164
3165#ifdef CONFIG_SCSI_IPR_TRACE
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178static ssize_t ipr_read_trace(struct file *filp, struct kobject *kobj,
3179 struct bin_attribute *bin_attr,
3180 char *buf, loff_t off, size_t count)
3181{
3182 struct device *dev = container_of(kobj, struct device, kobj);
3183 struct Scsi_Host *shost = class_to_shost(dev);
3184 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3185 unsigned long lock_flags = 0;
3186 ssize_t ret;
3187
3188 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3189 ret = memory_read_from_buffer(buf, count, &off, ioa_cfg->trace,
3190 IPR_TRACE_SIZE);
3191 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3192
3193 return ret;
3194}
3195
3196static struct bin_attribute ipr_trace_attr = {
3197 .attr = {
3198 .name = "trace",
3199 .mode = S_IRUGO,
3200 },
3201 .size = 0,
3202 .read = ipr_read_trace,
3203};
3204#endif
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214static ssize_t ipr_show_fw_version(struct device *dev,
3215 struct device_attribute *attr, char *buf)
3216{
3217 struct Scsi_Host *shost = class_to_shost(dev);
3218 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3219 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
3220 unsigned long lock_flags = 0;
3221 int len;
3222
3223 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3224 len = snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X\n",
3225 ucode_vpd->major_release, ucode_vpd->card_type,
3226 ucode_vpd->minor_release[0],
3227 ucode_vpd->minor_release[1]);
3228 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3229 return len;
3230}
3231
3232static struct device_attribute ipr_fw_version_attr = {
3233 .attr = {
3234 .name = "fw_version",
3235 .mode = S_IRUGO,
3236 },
3237 .show = ipr_show_fw_version,
3238};
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248static ssize_t ipr_show_log_level(struct device *dev,
3249 struct device_attribute *attr, char *buf)
3250{
3251 struct Scsi_Host *shost = class_to_shost(dev);
3252 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3253 unsigned long lock_flags = 0;
3254 int len;
3255
3256 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3257 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->log_level);
3258 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3259 return len;
3260}
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270static ssize_t ipr_store_log_level(struct device *dev,
3271 struct device_attribute *attr,
3272 const char *buf, size_t count)
3273{
3274 struct Scsi_Host *shost = class_to_shost(dev);
3275 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3276 unsigned long lock_flags = 0;
3277
3278 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3279 ioa_cfg->log_level = simple_strtoul(buf, NULL, 10);
3280 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3281 return strlen(buf);
3282}
3283
3284static struct device_attribute ipr_log_level_attr = {
3285 .attr = {
3286 .name = "log_level",
3287 .mode = S_IRUGO | S_IWUSR,
3288 },
3289 .show = ipr_show_log_level,
3290 .store = ipr_store_log_level
3291};
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305static ssize_t ipr_store_diagnostics(struct device *dev,
3306 struct device_attribute *attr,
3307 const char *buf, size_t count)
3308{
3309 struct Scsi_Host *shost = class_to_shost(dev);
3310 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3311 unsigned long lock_flags = 0;
3312 int rc = count;
3313
3314 if (!capable(CAP_SYS_ADMIN))
3315 return -EACCES;
3316
3317 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3318 while(ioa_cfg->in_reset_reload) {
3319 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3320 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3321 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3322 }
3323
3324 ioa_cfg->errors_logged = 0;
3325 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3326
3327 if (ioa_cfg->in_reset_reload) {
3328 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3329 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3330
3331
3332 msleep(1000);
3333 } else {
3334 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3335 return -EIO;
3336 }
3337
3338 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3339 if (ioa_cfg->in_reset_reload || ioa_cfg->errors_logged)
3340 rc = -EIO;
3341 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3342
3343 return rc;
3344}
3345
3346static struct device_attribute ipr_diagnostics_attr = {
3347 .attr = {
3348 .name = "run_diagnostics",
3349 .mode = S_IWUSR,
3350 },
3351 .store = ipr_store_diagnostics
3352};
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362static ssize_t ipr_show_adapter_state(struct device *dev,
3363 struct device_attribute *attr, char *buf)
3364{
3365 struct Scsi_Host *shost = class_to_shost(dev);
3366 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3367 unsigned long lock_flags = 0;
3368 int len;
3369
3370 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3371 if (ioa_cfg->ioa_is_dead)
3372 len = snprintf(buf, PAGE_SIZE, "offline\n");
3373 else
3374 len = snprintf(buf, PAGE_SIZE, "online\n");
3375 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3376 return len;
3377}
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390static ssize_t ipr_store_adapter_state(struct device *dev,
3391 struct device_attribute *attr,
3392 const char *buf, size_t count)
3393{
3394 struct Scsi_Host *shost = class_to_shost(dev);
3395 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3396 unsigned long lock_flags;
3397 int result = count;
3398
3399 if (!capable(CAP_SYS_ADMIN))
3400 return -EACCES;
3401
3402 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3403 if (ioa_cfg->ioa_is_dead && !strncmp(buf, "online", 6)) {
3404 ioa_cfg->ioa_is_dead = 0;
3405 ioa_cfg->reset_retries = 0;
3406 ioa_cfg->in_ioa_bringdown = 0;
3407 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3408 }
3409 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3410 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3411
3412 return result;
3413}
3414
3415static struct device_attribute ipr_ioa_state_attr = {
3416 .attr = {
3417 .name = "online_state",
3418 .mode = S_IRUGO | S_IWUSR,
3419 },
3420 .show = ipr_show_adapter_state,
3421 .store = ipr_store_adapter_state
3422};
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435static ssize_t ipr_store_reset_adapter(struct device *dev,
3436 struct device_attribute *attr,
3437 const char *buf, size_t count)
3438{
3439 struct Scsi_Host *shost = class_to_shost(dev);
3440 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3441 unsigned long lock_flags;
3442 int result = count;
3443
3444 if (!capable(CAP_SYS_ADMIN))
3445 return -EACCES;
3446
3447 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3448 if (!ioa_cfg->in_reset_reload)
3449 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3450 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3451 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3452
3453 return result;
3454}
3455
3456static struct device_attribute ipr_ioa_reset_attr = {
3457 .attr = {
3458 .name = "reset_host",
3459 .mode = S_IWUSR,
3460 },
3461 .store = ipr_store_reset_adapter
3462};
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474static struct ipr_sglist *ipr_alloc_ucode_buffer(int buf_len)
3475{
3476 int sg_size, order, bsize_elem, num_elem, i, j;
3477 struct ipr_sglist *sglist;
3478 struct scatterlist *scatterlist;
3479 struct page *page;
3480
3481
3482 sg_size = buf_len / (IPR_MAX_SGLIST - 1);
3483
3484
3485 order = get_order(sg_size);
3486
3487
3488 bsize_elem = PAGE_SIZE * (1 << order);
3489
3490
3491 if (buf_len % bsize_elem)
3492 num_elem = (buf_len / bsize_elem) + 1;
3493 else
3494 num_elem = buf_len / bsize_elem;
3495
3496
3497 sglist = kzalloc(sizeof(struct ipr_sglist) +
3498 (sizeof(struct scatterlist) * (num_elem - 1)),
3499 GFP_KERNEL);
3500
3501 if (sglist == NULL) {
3502 ipr_trace;
3503 return NULL;
3504 }
3505
3506 scatterlist = sglist->scatterlist;
3507 sg_init_table(scatterlist, num_elem);
3508
3509 sglist->order = order;
3510 sglist->num_sg = num_elem;
3511
3512
3513 for (i = 0; i < num_elem; i++) {
3514 page = alloc_pages(GFP_KERNEL, order);
3515 if (!page) {
3516 ipr_trace;
3517
3518
3519 for (j = i - 1; j >= 0; j--)
3520 __free_pages(sg_page(&scatterlist[j]), order);
3521 kfree(sglist);
3522 return NULL;
3523 }
3524
3525 sg_set_page(&scatterlist[i], page, 0, 0);
3526 }
3527
3528 return sglist;
3529}
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541static void ipr_free_ucode_buffer(struct ipr_sglist *sglist)
3542{
3543 int i;
3544
3545 for (i = 0; i < sglist->num_sg; i++)
3546 __free_pages(sg_page(&sglist->scatterlist[i]), sglist->order);
3547
3548 kfree(sglist);
3549}
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563static int ipr_copy_ucode_buffer(struct ipr_sglist *sglist,
3564 u8 *buffer, u32 len)
3565{
3566 int bsize_elem, i, result = 0;
3567 struct scatterlist *scatterlist;
3568 void *kaddr;
3569
3570
3571 bsize_elem = PAGE_SIZE * (1 << sglist->order);
3572
3573 scatterlist = sglist->scatterlist;
3574
3575 for (i = 0; i < (len / bsize_elem); i++, buffer += bsize_elem) {
3576 struct page *page = sg_page(&scatterlist[i]);
3577
3578 kaddr = kmap(page);
3579 memcpy(kaddr, buffer, bsize_elem);
3580 kunmap(page);
3581
3582 scatterlist[i].length = bsize_elem;
3583
3584 if (result != 0) {
3585 ipr_trace;
3586 return result;
3587 }
3588 }
3589
3590 if (len % bsize_elem) {
3591 struct page *page = sg_page(&scatterlist[i]);
3592
3593 kaddr = kmap(page);
3594 memcpy(kaddr, buffer, len % bsize_elem);
3595 kunmap(page);
3596
3597 scatterlist[i].length = len % bsize_elem;
3598 }
3599
3600 sglist->buffer_len = len;
3601 return result;
3602}
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612static void ipr_build_ucode_ioadl64(struct ipr_cmnd *ipr_cmd,
3613 struct ipr_sglist *sglist)
3614{
3615 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
3616 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
3617 struct scatterlist *scatterlist = sglist->scatterlist;
3618 int i;
3619
3620 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
3621 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
3622 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3623
3624 ioarcb->ioadl_len =
3625 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
3626 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3627 ioadl64[i].flags = cpu_to_be32(IPR_IOADL_FLAGS_WRITE);
3628 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(&scatterlist[i]));
3629 ioadl64[i].address = cpu_to_be64(sg_dma_address(&scatterlist[i]));
3630 }
3631
3632 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3633}
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643static void ipr_build_ucode_ioadl(struct ipr_cmnd *ipr_cmd,
3644 struct ipr_sglist *sglist)
3645{
3646 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
3647 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
3648 struct scatterlist *scatterlist = sglist->scatterlist;
3649 int i;
3650
3651 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
3652 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
3653 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3654
3655 ioarcb->ioadl_len =
3656 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
3657
3658 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3659 ioadl[i].flags_and_data_len =
3660 cpu_to_be32(IPR_IOADL_FLAGS_WRITE | sg_dma_len(&scatterlist[i]));
3661 ioadl[i].address =
3662 cpu_to_be32(sg_dma_address(&scatterlist[i]));
3663 }
3664
3665 ioadl[i-1].flags_and_data_len |=
3666 cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3667}
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679static int ipr_update_ioa_ucode(struct ipr_ioa_cfg *ioa_cfg,
3680 struct ipr_sglist *sglist)
3681{
3682 unsigned long lock_flags;
3683
3684 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3685 while(ioa_cfg->in_reset_reload) {
3686 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3687 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3688 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3689 }
3690
3691 if (ioa_cfg->ucode_sglist) {
3692 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3693 dev_err(&ioa_cfg->pdev->dev,
3694 "Microcode download already in progress\n");
3695 return -EIO;
3696 }
3697
3698 sglist->num_dma_sg = pci_map_sg(ioa_cfg->pdev, sglist->scatterlist,
3699 sglist->num_sg, DMA_TO_DEVICE);
3700
3701 if (!sglist->num_dma_sg) {
3702 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3703 dev_err(&ioa_cfg->pdev->dev,
3704 "Failed to map microcode download buffer!\n");
3705 return -EIO;
3706 }
3707
3708 ioa_cfg->ucode_sglist = sglist;
3709 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3710 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3711 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3712
3713 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3714 ioa_cfg->ucode_sglist = NULL;
3715 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3716 return 0;
3717}
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730static ssize_t ipr_store_update_fw(struct device *dev,
3731 struct device_attribute *attr,
3732 const char *buf, size_t count)
3733{
3734 struct Scsi_Host *shost = class_to_shost(dev);
3735 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3736 struct ipr_ucode_image_header *image_hdr;
3737 const struct firmware *fw_entry;
3738 struct ipr_sglist *sglist;
3739 char fname[100];
3740 char *src;
3741 int len, result, dnld_size;
3742
3743 if (!capable(CAP_SYS_ADMIN))
3744 return -EACCES;
3745
3746 len = snprintf(fname, 99, "%s", buf);
3747 fname[len-1] = '\0';
3748
3749 if(request_firmware(&fw_entry, fname, &ioa_cfg->pdev->dev)) {
3750 dev_err(&ioa_cfg->pdev->dev, "Firmware file %s not found\n", fname);
3751 return -EIO;
3752 }
3753
3754 image_hdr = (struct ipr_ucode_image_header *)fw_entry->data;
3755
3756 src = (u8 *)image_hdr + be32_to_cpu(image_hdr->header_length);
3757 dnld_size = fw_entry->size - be32_to_cpu(image_hdr->header_length);
3758 sglist = ipr_alloc_ucode_buffer(dnld_size);
3759
3760 if (!sglist) {
3761 dev_err(&ioa_cfg->pdev->dev, "Microcode buffer allocation failed\n");
3762 release_firmware(fw_entry);
3763 return -ENOMEM;
3764 }
3765
3766 result = ipr_copy_ucode_buffer(sglist, src, dnld_size);
3767
3768 if (result) {
3769 dev_err(&ioa_cfg->pdev->dev,
3770 "Microcode buffer copy to DMA buffer failed\n");
3771 goto out;
3772 }
3773
3774 ipr_info("Updating microcode, please be patient. This may take up to 30 minutes.\n");
3775
3776 result = ipr_update_ioa_ucode(ioa_cfg, sglist);
3777
3778 if (!result)
3779 result = count;
3780out:
3781 ipr_free_ucode_buffer(sglist);
3782 release_firmware(fw_entry);
3783 return result;
3784}
3785
3786static struct device_attribute ipr_update_fw_attr = {
3787 .attr = {
3788 .name = "update_fw",
3789 .mode = S_IWUSR,
3790 },
3791 .store = ipr_store_update_fw
3792};
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802static ssize_t ipr_show_fw_type(struct device *dev,
3803 struct device_attribute *attr, char *buf)
3804{
3805 struct Scsi_Host *shost = class_to_shost(dev);
3806 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3807 unsigned long lock_flags = 0;
3808 int len;
3809
3810 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3811 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->sis64);
3812 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3813 return len;
3814}
3815
3816static struct device_attribute ipr_ioa_fw_type_attr = {
3817 .attr = {
3818 .name = "fw_type",
3819 .mode = S_IRUGO,
3820 },
3821 .show = ipr_show_fw_type
3822};
3823
3824static struct device_attribute *ipr_ioa_attrs[] = {
3825 &ipr_fw_version_attr,
3826 &ipr_log_level_attr,
3827 &ipr_diagnostics_attr,
3828 &ipr_ioa_state_attr,
3829 &ipr_ioa_reset_attr,
3830 &ipr_update_fw_attr,
3831 &ipr_ioa_fw_type_attr,
3832 NULL,
3833};
3834
3835#ifdef CONFIG_SCSI_IPR_DUMP
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848static ssize_t ipr_read_dump(struct file *filp, struct kobject *kobj,
3849 struct bin_attribute *bin_attr,
3850 char *buf, loff_t off, size_t count)
3851{
3852 struct device *cdev = container_of(kobj, struct device, kobj);
3853 struct Scsi_Host *shost = class_to_shost(cdev);
3854 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3855 struct ipr_dump *dump;
3856 unsigned long lock_flags = 0;
3857 char *src;
3858 int len, sdt_end;
3859 size_t rc = count;
3860
3861 if (!capable(CAP_SYS_ADMIN))
3862 return -EACCES;
3863
3864 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3865 dump = ioa_cfg->dump;
3866
3867 if (ioa_cfg->sdt_state != DUMP_OBTAINED || !dump) {
3868 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3869 return 0;
3870 }
3871 kref_get(&dump->kref);
3872 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3873
3874 if (off > dump->driver_dump.hdr.len) {
3875 kref_put(&dump->kref, ipr_release_dump);
3876 return 0;
3877 }
3878
3879 if (off + count > dump->driver_dump.hdr.len) {
3880 count = dump->driver_dump.hdr.len - off;
3881 rc = count;
3882 }
3883
3884 if (count && off < sizeof(dump->driver_dump)) {
3885 if (off + count > sizeof(dump->driver_dump))
3886 len = sizeof(dump->driver_dump) - off;
3887 else
3888 len = count;
3889 src = (u8 *)&dump->driver_dump + off;
3890 memcpy(buf, src, len);
3891 buf += len;
3892 off += len;
3893 count -= len;
3894 }
3895
3896 off -= sizeof(dump->driver_dump);
3897
3898 if (ioa_cfg->sis64)
3899 sdt_end = offsetof(struct ipr_ioa_dump, sdt.entry) +
3900 (be32_to_cpu(dump->ioa_dump.sdt.hdr.num_entries_used) *
3901 sizeof(struct ipr_sdt_entry));
3902 else
3903 sdt_end = offsetof(struct ipr_ioa_dump, sdt.entry) +
3904 (IPR_FMT2_NUM_SDT_ENTRIES * sizeof(struct ipr_sdt_entry));
3905
3906 if (count && off < sdt_end) {
3907 if (off + count > sdt_end)
3908 len = sdt_end - off;
3909 else
3910 len = count;
3911 src = (u8 *)&dump->ioa_dump + off;
3912 memcpy(buf, src, len);
3913 buf += len;
3914 off += len;
3915 count -= len;
3916 }
3917
3918 off -= sdt_end;
3919
3920 while (count) {
3921 if ((off & PAGE_MASK) != ((off + count) & PAGE_MASK))
3922 len = PAGE_ALIGN(off) - off;
3923 else
3924 len = count;
3925 src = (u8 *)dump->ioa_dump.ioa_data[(off & PAGE_MASK) >> PAGE_SHIFT];
3926 src += off & ~PAGE_MASK;
3927 memcpy(buf, src, len);
3928 buf += len;
3929 off += len;
3930 count -= len;
3931 }
3932
3933 kref_put(&dump->kref, ipr_release_dump);
3934 return rc;
3935}
3936
3937
3938
3939
3940
3941
3942
3943
3944static int ipr_alloc_dump(struct ipr_ioa_cfg *ioa_cfg)
3945{
3946 struct ipr_dump *dump;
3947 __be32 **ioa_data;
3948 unsigned long lock_flags = 0;
3949
3950 dump = kzalloc(sizeof(struct ipr_dump), GFP_KERNEL);
3951
3952 if (!dump) {
3953 ipr_err("Dump memory allocation failed\n");
3954 return -ENOMEM;
3955 }
3956
3957 if (ioa_cfg->sis64)
3958 ioa_data = vmalloc(IPR_FMT3_MAX_NUM_DUMP_PAGES * sizeof(__be32 *));
3959 else
3960 ioa_data = vmalloc(IPR_FMT2_MAX_NUM_DUMP_PAGES * sizeof(__be32 *));
3961
3962 if (!ioa_data) {
3963 ipr_err("Dump memory allocation failed\n");
3964 kfree(dump);
3965 return -ENOMEM;
3966 }
3967
3968 dump->ioa_dump.ioa_data = ioa_data;
3969
3970 kref_init(&dump->kref);
3971 dump->ioa_cfg = ioa_cfg;
3972
3973 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3974
3975 if (INACTIVE != ioa_cfg->sdt_state) {
3976 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3977 vfree(dump->ioa_dump.ioa_data);
3978 kfree(dump);
3979 return 0;
3980 }
3981
3982 ioa_cfg->dump = dump;
3983 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
3984 if (ioa_cfg->ioa_is_dead && !ioa_cfg->dump_taken) {
3985 ioa_cfg->dump_taken = 1;
3986 schedule_work(&ioa_cfg->work_q);
3987 }
3988 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3989
3990 return 0;
3991}
3992
3993
3994
3995
3996
3997
3998
3999
4000static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg)
4001{
4002 struct ipr_dump *dump;
4003 unsigned long lock_flags = 0;
4004
4005 ENTER;
4006
4007 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4008 dump = ioa_cfg->dump;
4009 if (!dump) {
4010 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4011 return 0;
4012 }
4013
4014 ioa_cfg->dump = NULL;
4015 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4016
4017 kref_put(&dump->kref, ipr_release_dump);
4018
4019 LEAVE;
4020 return 0;
4021}
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035static ssize_t ipr_write_dump(struct file *filp, struct kobject *kobj,
4036 struct bin_attribute *bin_attr,
4037 char *buf, loff_t off, size_t count)
4038{
4039 struct device *cdev = container_of(kobj, struct device, kobj);
4040 struct Scsi_Host *shost = class_to_shost(cdev);
4041 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4042 int rc;
4043
4044 if (!capable(CAP_SYS_ADMIN))
4045 return -EACCES;
4046
4047 if (buf[0] == '1')
4048 rc = ipr_alloc_dump(ioa_cfg);
4049 else if (buf[0] == '0')
4050 rc = ipr_free_dump(ioa_cfg);
4051 else
4052 return -EINVAL;
4053
4054 if (rc)
4055 return rc;
4056 else
4057 return count;
4058}
4059
4060static struct bin_attribute ipr_dump_attr = {
4061 .attr = {
4062 .name = "dump",
4063 .mode = S_IRUSR | S_IWUSR,
4064 },
4065 .size = 0,
4066 .read = ipr_read_dump,
4067 .write = ipr_write_dump
4068};
4069#else
4070static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg) { return 0; };
4071#endif
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082static int ipr_change_queue_depth(struct scsi_device *sdev, int qdepth,
4083 int reason)
4084{
4085 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4086 struct ipr_resource_entry *res;
4087 unsigned long lock_flags = 0;
4088
4089 if (reason != SCSI_QDEPTH_DEFAULT)
4090 return -EOPNOTSUPP;
4091
4092 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4093 res = (struct ipr_resource_entry *)sdev->hostdata;
4094
4095 if (res && ipr_is_gata(res) && qdepth > IPR_MAX_CMD_PER_ATA_LUN)
4096 qdepth = IPR_MAX_CMD_PER_ATA_LUN;
4097 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4098
4099 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
4100 return sdev->queue_depth;
4101}
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111static int ipr_change_queue_type(struct scsi_device *sdev, int tag_type)
4112{
4113 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4114 struct ipr_resource_entry *res;
4115 unsigned long lock_flags = 0;
4116
4117 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4118 res = (struct ipr_resource_entry *)sdev->hostdata;
4119
4120 if (res) {
4121 if (ipr_is_gscsi(res) && sdev->tagged_supported) {
4122
4123
4124
4125
4126 scsi_set_tag_type(sdev, tag_type);
4127
4128 if (tag_type)
4129 scsi_activate_tcq(sdev, sdev->queue_depth);
4130 else
4131 scsi_deactivate_tcq(sdev, sdev->queue_depth);
4132 } else
4133 tag_type = 0;
4134 } else
4135 tag_type = 0;
4136
4137 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4138 return tag_type;
4139}
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150static ssize_t ipr_show_adapter_handle(struct device *dev, struct device_attribute *attr, char *buf)
4151{
4152 struct scsi_device *sdev = to_scsi_device(dev);
4153 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4154 struct ipr_resource_entry *res;
4155 unsigned long lock_flags = 0;
4156 ssize_t len = -ENXIO;
4157
4158 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4159 res = (struct ipr_resource_entry *)sdev->hostdata;
4160 if (res)
4161 len = snprintf(buf, PAGE_SIZE, "%08X\n", res->res_handle);
4162 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4163 return len;
4164}
4165
4166static struct device_attribute ipr_adapter_handle_attr = {
4167 .attr = {
4168 .name = "adapter_handle",
4169 .mode = S_IRUSR,
4170 },
4171 .show = ipr_show_adapter_handle
4172};
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184static ssize_t ipr_show_resource_path(struct device *dev, struct device_attribute *attr, char *buf)
4185{
4186 struct scsi_device *sdev = to_scsi_device(dev);
4187 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4188 struct ipr_resource_entry *res;
4189 unsigned long lock_flags = 0;
4190 ssize_t len = -ENXIO;
4191 char buffer[IPR_MAX_RES_PATH_LENGTH];
4192
4193 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4194 res = (struct ipr_resource_entry *)sdev->hostdata;
4195 if (res && ioa_cfg->sis64)
4196 len = snprintf(buf, PAGE_SIZE, "%s\n",
4197 ipr_format_res_path(res->res_path, buffer,
4198 sizeof(buffer)));
4199 else if (res)
4200 len = snprintf(buf, PAGE_SIZE, "%d:%d:%d:%d\n", ioa_cfg->host->host_no,
4201 res->bus, res->target, res->lun);
4202
4203 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4204 return len;
4205}
4206
4207static struct device_attribute ipr_resource_path_attr = {
4208 .attr = {
4209 .name = "resource_path",
4210 .mode = S_IRUGO,
4211 },
4212 .show = ipr_show_resource_path
4213};
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224static ssize_t ipr_show_device_id(struct device *dev, struct device_attribute *attr, char *buf)
4225{
4226 struct scsi_device *sdev = to_scsi_device(dev);
4227 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4228 struct ipr_resource_entry *res;
4229 unsigned long lock_flags = 0;
4230 ssize_t len = -ENXIO;
4231
4232 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4233 res = (struct ipr_resource_entry *)sdev->hostdata;
4234 if (res && ioa_cfg->sis64)
4235 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->dev_id);
4236 else if (res)
4237 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->lun_wwn);
4238
4239 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4240 return len;
4241}
4242
4243static struct device_attribute ipr_device_id_attr = {
4244 .attr = {
4245 .name = "device_id",
4246 .mode = S_IRUGO,
4247 },
4248 .show = ipr_show_device_id
4249};
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260static ssize_t ipr_show_resource_type(struct device *dev, struct device_attribute *attr, char *buf)
4261{
4262 struct scsi_device *sdev = to_scsi_device(dev);
4263 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4264 struct ipr_resource_entry *res;
4265 unsigned long lock_flags = 0;
4266 ssize_t len = -ENXIO;
4267
4268 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4269 res = (struct ipr_resource_entry *)sdev->hostdata;
4270
4271 if (res)
4272 len = snprintf(buf, PAGE_SIZE, "%x\n", res->type);
4273
4274 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4275 return len;
4276}
4277
4278static struct device_attribute ipr_resource_type_attr = {
4279 .attr = {
4280 .name = "resource_type",
4281 .mode = S_IRUGO,
4282 },
4283 .show = ipr_show_resource_type
4284};
4285
4286static struct device_attribute *ipr_dev_attrs[] = {
4287 &ipr_adapter_handle_attr,
4288 &ipr_resource_path_attr,
4289 &ipr_device_id_attr,
4290 &ipr_resource_type_attr,
4291 NULL,
4292};
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308static int ipr_biosparam(struct scsi_device *sdev,
4309 struct block_device *block_device,
4310 sector_t capacity, int *parm)
4311{
4312 int heads, sectors;
4313 sector_t cylinders;
4314
4315 heads = 128;
4316 sectors = 32;
4317
4318 cylinders = capacity;
4319 sector_div(cylinders, (128 * 32));
4320
4321
4322 parm[0] = heads;
4323 parm[1] = sectors;
4324 parm[2] = cylinders;
4325
4326 return 0;
4327}
4328
4329
4330
4331
4332
4333
4334
4335
4336static struct ipr_resource_entry *ipr_find_starget(struct scsi_target *starget)
4337{
4338 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4339 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4340 struct ipr_resource_entry *res;
4341
4342 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
4343 if ((res->bus == starget->channel) &&
4344 (res->target == starget->id)) {
4345 return res;
4346 }
4347 }
4348
4349 return NULL;
4350}
4351
4352static struct ata_port_info sata_port_info;
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364static int ipr_target_alloc(struct scsi_target *starget)
4365{
4366 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4367 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4368 struct ipr_sata_port *sata_port;
4369 struct ata_port *ap;
4370 struct ipr_resource_entry *res;
4371 unsigned long lock_flags;
4372
4373 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4374 res = ipr_find_starget(starget);
4375 starget->hostdata = NULL;
4376
4377 if (res && ipr_is_gata(res)) {
4378 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4379 sata_port = kzalloc(sizeof(*sata_port), GFP_KERNEL);
4380 if (!sata_port)
4381 return -ENOMEM;
4382
4383 ap = ata_sas_port_alloc(&ioa_cfg->ata_host, &sata_port_info, shost);
4384 if (ap) {
4385 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4386 sata_port->ioa_cfg = ioa_cfg;
4387 sata_port->ap = ap;
4388 sata_port->res = res;
4389
4390 res->sata_port = sata_port;
4391 ap->private_data = sata_port;
4392 starget->hostdata = sata_port;
4393 } else {
4394 kfree(sata_port);
4395 return -ENOMEM;
4396 }
4397 }
4398 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4399
4400 return 0;
4401}
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411static void ipr_target_destroy(struct scsi_target *starget)
4412{
4413 struct ipr_sata_port *sata_port = starget->hostdata;
4414 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4415 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4416
4417 if (ioa_cfg->sis64) {
4418 if (!ipr_find_starget(starget)) {
4419 if (starget->channel == IPR_ARRAY_VIRTUAL_BUS)
4420 clear_bit(starget->id, ioa_cfg->array_ids);
4421 else if (starget->channel == IPR_VSET_VIRTUAL_BUS)
4422 clear_bit(starget->id, ioa_cfg->vset_ids);
4423 else if (starget->channel == 0)
4424 clear_bit(starget->id, ioa_cfg->target_ids);
4425 }
4426 }
4427
4428 if (sata_port) {
4429 starget->hostdata = NULL;
4430 ata_sas_port_destroy(sata_port->ap);
4431 kfree(sata_port);
4432 }
4433}
4434
4435
4436
4437
4438
4439
4440
4441
4442static struct ipr_resource_entry *ipr_find_sdev(struct scsi_device *sdev)
4443{
4444 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4445 struct ipr_resource_entry *res;
4446
4447 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
4448 if ((res->bus == sdev->channel) &&
4449 (res->target == sdev->id) &&
4450 (res->lun == sdev->lun))
4451 return res;
4452 }
4453
4454 return NULL;
4455}
4456
4457
4458
4459
4460
4461
4462
4463
4464static void ipr_slave_destroy(struct scsi_device *sdev)
4465{
4466 struct ipr_resource_entry *res;
4467 struct ipr_ioa_cfg *ioa_cfg;
4468 unsigned long lock_flags = 0;
4469
4470 ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4471
4472 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4473 res = (struct ipr_resource_entry *) sdev->hostdata;
4474 if (res) {
4475 if (res->sata_port)
4476 res->sata_port->ap->link.device[0].class = ATA_DEV_NONE;
4477 sdev->hostdata = NULL;
4478 res->sdev = NULL;
4479 res->sata_port = NULL;
4480 }
4481 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4482}
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493static int ipr_slave_configure(struct scsi_device *sdev)
4494{
4495 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4496 struct ipr_resource_entry *res;
4497 struct ata_port *ap = NULL;
4498 unsigned long lock_flags = 0;
4499 char buffer[IPR_MAX_RES_PATH_LENGTH];
4500
4501 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4502 res = sdev->hostdata;
4503 if (res) {
4504 if (ipr_is_af_dasd_device(res))
4505 sdev->type = TYPE_RAID;
4506 if (ipr_is_af_dasd_device(res) || ipr_is_ioa_resource(res)) {
4507 sdev->scsi_level = 4;
4508 sdev->no_uld_attach = 1;
4509 }
4510 if (ipr_is_vset_device(res)) {
4511 blk_queue_rq_timeout(sdev->request_queue,
4512 IPR_VSET_RW_TIMEOUT);
4513 blk_queue_max_hw_sectors(sdev->request_queue, IPR_VSET_MAX_SECTORS);
4514 }
4515 if (ipr_is_gata(res) && res->sata_port)
4516 ap = res->sata_port->ap;
4517 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4518
4519 if (ap) {
4520 scsi_adjust_queue_depth(sdev, 0, IPR_MAX_CMD_PER_ATA_LUN);
4521 ata_sas_slave_configure(sdev, ap);
4522 } else
4523 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
4524 if (ioa_cfg->sis64)
4525 sdev_printk(KERN_INFO, sdev, "Resource path: %s\n",
4526 ipr_format_res_path(res->res_path, buffer,
4527 sizeof(buffer)));
4528 return 0;
4529 }
4530 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4531 return 0;
4532}
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544static int ipr_ata_slave_alloc(struct scsi_device *sdev)
4545{
4546 struct ipr_sata_port *sata_port = NULL;
4547 int rc = -ENXIO;
4548
4549 ENTER;
4550 if (sdev->sdev_target)
4551 sata_port = sdev->sdev_target->hostdata;
4552 if (sata_port) {
4553 rc = ata_sas_port_init(sata_port->ap);
4554 if (rc == 0)
4555 rc = ata_sas_sync_probe(sata_port->ap);
4556 }
4557
4558 if (rc)
4559 ipr_slave_destroy(sdev);
4560
4561 LEAVE;
4562 return rc;
4563}
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577static int ipr_slave_alloc(struct scsi_device *sdev)
4578{
4579 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4580 struct ipr_resource_entry *res;
4581 unsigned long lock_flags;
4582 int rc = -ENXIO;
4583
4584 sdev->hostdata = NULL;
4585
4586 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4587
4588 res = ipr_find_sdev(sdev);
4589 if (res) {
4590 res->sdev = sdev;
4591 res->add_to_ml = 0;
4592 res->in_erp = 0;
4593 sdev->hostdata = res;
4594 if (!ipr_is_naca_model(res))
4595 res->needs_sync_complete = 1;
4596 rc = 0;
4597 if (ipr_is_gata(res)) {
4598 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4599 return ipr_ata_slave_alloc(sdev);
4600 }
4601 }
4602
4603 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4604
4605 return rc;
4606}
4607
4608
4609
4610
4611
4612
4613
4614
4615static int __ipr_eh_host_reset(struct scsi_cmnd * scsi_cmd)
4616{
4617 struct ipr_ioa_cfg *ioa_cfg;
4618 int rc;
4619
4620 ENTER;
4621 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
4622
4623 if (!ioa_cfg->in_reset_reload) {
4624 dev_err(&ioa_cfg->pdev->dev,
4625 "Adapter being reset as a result of error recovery.\n");
4626
4627 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
4628 ioa_cfg->sdt_state = GET_DUMP;
4629 }
4630
4631 rc = ipr_reset_reload(ioa_cfg, IPR_SHUTDOWN_ABBREV);
4632
4633 LEAVE;
4634 return rc;
4635}
4636
4637static int ipr_eh_host_reset(struct scsi_cmnd * cmd)
4638{
4639 int rc;
4640
4641 spin_lock_irq(cmd->device->host->host_lock);
4642 rc = __ipr_eh_host_reset(cmd);
4643 spin_unlock_irq(cmd->device->host->host_lock);
4644
4645 return rc;
4646}
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
4663 struct ipr_resource_entry *res)
4664{
4665 struct ipr_cmnd *ipr_cmd;
4666 struct ipr_ioarcb *ioarcb;
4667 struct ipr_cmd_pkt *cmd_pkt;
4668 struct ipr_ioarcb_ata_regs *regs;
4669 u32 ioasc;
4670
4671 ENTER;
4672 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
4673 ioarcb = &ipr_cmd->ioarcb;
4674 cmd_pkt = &ioarcb->cmd_pkt;
4675
4676 if (ipr_cmd->ioa_cfg->sis64) {
4677 regs = &ipr_cmd->i.ata_ioadl.regs;
4678 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
4679 } else
4680 regs = &ioarcb->u.add_data.u.regs;
4681
4682 ioarcb->res_handle = res->res_handle;
4683 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4684 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
4685 if (ipr_is_gata(res)) {
4686 cmd_pkt->cdb[2] = IPR_ATA_PHY_RESET;
4687 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(regs->flags));
4688 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
4689 }
4690
4691 ipr_send_blocking_cmd(ipr_cmd, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
4692 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
4693 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
4694 if (ipr_is_gata(res) && res->sata_port && ioasc != IPR_IOASC_IOA_WAS_RESET) {
4695 if (ipr_cmd->ioa_cfg->sis64)
4696 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
4697 sizeof(struct ipr_ioasa_gata));
4698 else
4699 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
4700 sizeof(struct ipr_ioasa_gata));
4701 }
4702
4703 LEAVE;
4704 return (IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0);
4705}
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717static int ipr_sata_reset(struct ata_link *link, unsigned int *classes,
4718 unsigned long deadline)
4719{
4720 struct ipr_sata_port *sata_port = link->ap->private_data;
4721 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
4722 struct ipr_resource_entry *res;
4723 unsigned long lock_flags = 0;
4724 int rc = -ENXIO;
4725
4726 ENTER;
4727 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4728 while(ioa_cfg->in_reset_reload) {
4729 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4730 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
4731 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4732 }
4733
4734 res = sata_port->res;
4735 if (res) {
4736 rc = ipr_device_reset(ioa_cfg, res);
4737 *classes = res->ata_class;
4738 }
4739
4740 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4741 LEAVE;
4742 return rc;
4743}
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756static int __ipr_eh_dev_reset(struct scsi_cmnd * scsi_cmd)
4757{
4758 struct ipr_cmnd *ipr_cmd;
4759 struct ipr_ioa_cfg *ioa_cfg;
4760 struct ipr_resource_entry *res;
4761 struct ata_port *ap;
4762 int rc = 0;
4763
4764 ENTER;
4765 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
4766 res = scsi_cmd->device->hostdata;
4767
4768 if (!res)
4769 return FAILED;
4770
4771
4772
4773
4774
4775
4776 if (ioa_cfg->in_reset_reload)
4777 return FAILED;
4778 if (ioa_cfg->ioa_is_dead)
4779 return FAILED;
4780
4781 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
4782 if (ipr_cmd->ioarcb.res_handle == res->res_handle) {
4783 if (ipr_cmd->scsi_cmd)
4784 ipr_cmd->done = ipr_scsi_eh_done;
4785 if (ipr_cmd->qc)
4786 ipr_cmd->done = ipr_sata_eh_done;
4787 if (ipr_cmd->qc && !(ipr_cmd->qc->flags & ATA_QCFLAG_FAILED)) {
4788 ipr_cmd->qc->err_mask |= AC_ERR_TIMEOUT;
4789 ipr_cmd->qc->flags |= ATA_QCFLAG_FAILED;
4790 }
4791 }
4792 }
4793
4794 res->resetting_device = 1;
4795 scmd_printk(KERN_ERR, scsi_cmd, "Resetting device\n");
4796
4797 if (ipr_is_gata(res) && res->sata_port) {
4798 ap = res->sata_port->ap;
4799 spin_unlock_irq(scsi_cmd->device->host->host_lock);
4800 ata_std_error_handler(ap);
4801 spin_lock_irq(scsi_cmd->device->host->host_lock);
4802
4803 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
4804 if (ipr_cmd->ioarcb.res_handle == res->res_handle) {
4805 rc = -EIO;
4806 break;
4807 }
4808 }
4809 } else
4810 rc = ipr_device_reset(ioa_cfg, res);
4811 res->resetting_device = 0;
4812
4813 LEAVE;
4814 return (rc ? FAILED : SUCCESS);
4815}
4816
4817static int ipr_eh_dev_reset(struct scsi_cmnd * cmd)
4818{
4819 int rc;
4820
4821 spin_lock_irq(cmd->device->host->host_lock);
4822 rc = __ipr_eh_dev_reset(cmd);
4823 spin_unlock_irq(cmd->device->host->host_lock);
4824
4825 return rc;
4826}
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837static void ipr_bus_reset_done(struct ipr_cmnd *ipr_cmd)
4838{
4839 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
4840 struct ipr_resource_entry *res;
4841
4842 ENTER;
4843 if (!ioa_cfg->sis64)
4844 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
4845 if (res->res_handle == ipr_cmd->ioarcb.res_handle) {
4846 scsi_report_bus_reset(ioa_cfg->host, res->bus);
4847 break;
4848 }
4849 }
4850
4851
4852
4853
4854
4855 if (ipr_cmd->sibling->sibling)
4856 ipr_cmd->sibling->sibling = NULL;
4857 else
4858 ipr_cmd->sibling->done(ipr_cmd->sibling);
4859
4860 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
4861 LEAVE;
4862}
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875static void ipr_abort_timeout(struct ipr_cmnd *ipr_cmd)
4876{
4877 struct ipr_cmnd *reset_cmd;
4878 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
4879 struct ipr_cmd_pkt *cmd_pkt;
4880 unsigned long lock_flags = 0;
4881
4882 ENTER;
4883 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4884 if (ipr_cmd->completion.done || ioa_cfg->in_reset_reload) {
4885 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4886 return;
4887 }
4888
4889 sdev_printk(KERN_ERR, ipr_cmd->u.sdev, "Abort timed out. Resetting bus.\n");
4890 reset_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
4891 ipr_cmd->sibling = reset_cmd;
4892 reset_cmd->sibling = ipr_cmd;
4893 reset_cmd->ioarcb.res_handle = ipr_cmd->ioarcb.res_handle;
4894 cmd_pkt = &reset_cmd->ioarcb.cmd_pkt;
4895 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4896 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
4897 cmd_pkt->cdb[2] = IPR_RESET_TYPE_SELECT | IPR_BUS_RESET;
4898
4899 ipr_do_req(reset_cmd, ipr_bus_reset_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
4900 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4901 LEAVE;
4902}
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913static int ipr_cancel_op(struct scsi_cmnd * scsi_cmd)
4914{
4915 struct ipr_cmnd *ipr_cmd;
4916 struct ipr_ioa_cfg *ioa_cfg;
4917 struct ipr_resource_entry *res;
4918 struct ipr_cmd_pkt *cmd_pkt;
4919 u32 ioasc, int_reg;
4920 int op_found = 0;
4921
4922 ENTER;
4923 ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
4924 res = scsi_cmd->device->hostdata;
4925
4926
4927
4928
4929
4930 if (ioa_cfg->in_reset_reload || ioa_cfg->ioa_is_dead)
4931 return FAILED;
4932 if (!res)
4933 return FAILED;
4934
4935
4936
4937
4938
4939
4940 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
4941
4942 if (!ipr_is_gscsi(res))
4943 return FAILED;
4944
4945 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
4946 if (ipr_cmd->scsi_cmd == scsi_cmd) {
4947 ipr_cmd->done = ipr_scsi_eh_done;
4948 op_found = 1;
4949 break;
4950 }
4951 }
4952
4953 if (!op_found)
4954 return SUCCESS;
4955
4956 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
4957 ipr_cmd->ioarcb.res_handle = res->res_handle;
4958 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
4959 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4960 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
4961 ipr_cmd->u.sdev = scsi_cmd->device;
4962
4963 scmd_printk(KERN_ERR, scsi_cmd, "Aborting command: %02X\n",
4964 scsi_cmd->cmnd[0]);
4965 ipr_send_blocking_cmd(ipr_cmd, ipr_abort_timeout, IPR_CANCEL_ALL_TIMEOUT);
4966 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
4967
4968
4969
4970
4971
4972 if (ioasc == IPR_IOASC_BUS_WAS_RESET || ioasc == IPR_IOASC_SYNC_REQUIRED) {
4973 ioasc = 0;
4974 ipr_trace;
4975 }
4976
4977 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
4978 if (!ipr_is_naca_model(res))
4979 res->needs_sync_complete = 1;
4980
4981 LEAVE;
4982 return (IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS);
4983}
4984
4985
4986
4987
4988
4989
4990
4991
4992static int ipr_eh_abort(struct scsi_cmnd * scsi_cmd)
4993{
4994 unsigned long flags;
4995 int rc;
4996
4997 ENTER;
4998
4999 spin_lock_irqsave(scsi_cmd->device->host->host_lock, flags);
5000 rc = ipr_cancel_op(scsi_cmd);
5001 spin_unlock_irqrestore(scsi_cmd->device->host->host_lock, flags);
5002
5003 LEAVE;
5004 return rc;
5005}
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015static irqreturn_t ipr_handle_other_interrupt(struct ipr_ioa_cfg *ioa_cfg,
5016 u32 int_reg)
5017{
5018 irqreturn_t rc = IRQ_HANDLED;
5019 u32 int_mask_reg;
5020
5021 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
5022 int_reg &= ~int_mask_reg;
5023
5024
5025
5026
5027 if ((int_reg & IPR_PCII_OPER_INTERRUPTS) == 0) {
5028 if (ioa_cfg->sis64) {
5029 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
5030 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5031 if (int_reg & IPR_PCII_IPL_STAGE_CHANGE) {
5032
5033
5034 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.clr_interrupt_reg);
5035 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5036 list_del(&ioa_cfg->reset_cmd->queue);
5037 del_timer(&ioa_cfg->reset_cmd->timer);
5038 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
5039 return IRQ_HANDLED;
5040 }
5041 }
5042
5043 return IRQ_NONE;
5044 }
5045
5046 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
5047
5048 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.set_interrupt_mask_reg);
5049
5050
5051 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.clr_interrupt_reg);
5052 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
5053
5054 list_del(&ioa_cfg->reset_cmd->queue);
5055 del_timer(&ioa_cfg->reset_cmd->timer);
5056 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
5057 } else if ((int_reg & IPR_PCII_HRRQ_UPDATED) == int_reg) {
5058 if (ioa_cfg->clear_isr) {
5059 if (ipr_debug && printk_ratelimit())
5060 dev_err(&ioa_cfg->pdev->dev,
5061 "Spurious interrupt detected. 0x%08X\n", int_reg);
5062 writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg32);
5063 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5064 return IRQ_NONE;
5065 }
5066 } else {
5067 if (int_reg & IPR_PCII_IOA_UNIT_CHECKED)
5068 ioa_cfg->ioa_unit_checked = 1;
5069 else
5070 dev_err(&ioa_cfg->pdev->dev,
5071 "Permanent IOA failure. 0x%08X\n", int_reg);
5072
5073 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5074 ioa_cfg->sdt_state = GET_DUMP;
5075
5076 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
5077 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5078 }
5079
5080 return rc;
5081}
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091static void ipr_isr_eh(struct ipr_ioa_cfg *ioa_cfg, char *msg)
5092{
5093 ioa_cfg->errors_logged++;
5094 dev_err(&ioa_cfg->pdev->dev, "%s\n", msg);
5095
5096 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5097 ioa_cfg->sdt_state = GET_DUMP;
5098
5099 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5100}
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110static irqreturn_t ipr_isr(int irq, void *devp)
5111{
5112 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)devp;
5113 unsigned long lock_flags = 0;
5114 u32 int_reg = 0;
5115 u32 ioasc;
5116 u16 cmd_index;
5117 int num_hrrq = 0;
5118 int irq_none = 0;
5119 struct ipr_cmnd *ipr_cmd;
5120 irqreturn_t rc = IRQ_NONE;
5121
5122 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
5123
5124
5125 if (!ioa_cfg->allow_interrupts) {
5126 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5127 return IRQ_NONE;
5128 }
5129
5130 while (1) {
5131 ipr_cmd = NULL;
5132
5133 while ((be32_to_cpu(*ioa_cfg->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5134 ioa_cfg->toggle_bit) {
5135
5136 cmd_index = (be32_to_cpu(*ioa_cfg->hrrq_curr) &
5137 IPR_HRRQ_REQ_RESP_HANDLE_MASK) >> IPR_HRRQ_REQ_RESP_HANDLE_SHIFT;
5138
5139 if (unlikely(cmd_index >= IPR_NUM_CMD_BLKS)) {
5140 ipr_isr_eh(ioa_cfg, "Invalid response handle from IOA");
5141 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5142 return IRQ_HANDLED;
5143 }
5144
5145 ipr_cmd = ioa_cfg->ipr_cmnd_list[cmd_index];
5146
5147 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
5148
5149 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, ioasc);
5150
5151 list_del(&ipr_cmd->queue);
5152 del_timer(&ipr_cmd->timer);
5153 ipr_cmd->done(ipr_cmd);
5154
5155 rc = IRQ_HANDLED;
5156
5157 if (ioa_cfg->hrrq_curr < ioa_cfg->hrrq_end) {
5158 ioa_cfg->hrrq_curr++;
5159 } else {
5160 ioa_cfg->hrrq_curr = ioa_cfg->hrrq_start;
5161 ioa_cfg->toggle_bit ^= 1u;
5162 }
5163 }
5164
5165 if (ipr_cmd && !ioa_cfg->clear_isr)
5166 break;
5167
5168 if (ipr_cmd != NULL) {
5169
5170 num_hrrq = 0;
5171 do {
5172 writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg32);
5173 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5174 } while (int_reg & IPR_PCII_HRRQ_UPDATED &&
5175 num_hrrq++ < IPR_MAX_HRRQ_RETRIES);
5176
5177 } else if (rc == IRQ_NONE && irq_none == 0) {
5178 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5179 irq_none++;
5180 } else if (num_hrrq == IPR_MAX_HRRQ_RETRIES &&
5181 int_reg & IPR_PCII_HRRQ_UPDATED) {
5182 ipr_isr_eh(ioa_cfg, "Error clearing HRRQ");
5183 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5184 return IRQ_HANDLED;
5185 } else
5186 break;
5187 }
5188
5189 if (unlikely(rc == IRQ_NONE))
5190 rc = ipr_handle_other_interrupt(ioa_cfg, int_reg);
5191
5192 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5193 return rc;
5194}
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204static int ipr_build_ioadl64(struct ipr_ioa_cfg *ioa_cfg,
5205 struct ipr_cmnd *ipr_cmd)
5206{
5207 int i, nseg;
5208 struct scatterlist *sg;
5209 u32 length;
5210 u32 ioadl_flags = 0;
5211 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5212 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
5213 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
5214
5215 length = scsi_bufflen(scsi_cmd);
5216 if (!length)
5217 return 0;
5218
5219 nseg = scsi_dma_map(scsi_cmd);
5220 if (nseg < 0) {
5221 if (printk_ratelimit())
5222 dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
5223 return -1;
5224 }
5225
5226 ipr_cmd->dma_use_sg = nseg;
5227
5228 ioarcb->data_transfer_length = cpu_to_be32(length);
5229 ioarcb->ioadl_len =
5230 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
5231
5232 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5233 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5234 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
5235 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE)
5236 ioadl_flags = IPR_IOADL_FLAGS_READ;
5237
5238 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5239 ioadl64[i].flags = cpu_to_be32(ioadl_flags);
5240 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(sg));
5241 ioadl64[i].address = cpu_to_be64(sg_dma_address(sg));
5242 }
5243
5244 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5245 return 0;
5246}
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256static int ipr_build_ioadl(struct ipr_ioa_cfg *ioa_cfg,
5257 struct ipr_cmnd *ipr_cmd)
5258{
5259 int i, nseg;
5260 struct scatterlist *sg;
5261 u32 length;
5262 u32 ioadl_flags = 0;
5263 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5264 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
5265 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
5266
5267 length = scsi_bufflen(scsi_cmd);
5268 if (!length)
5269 return 0;
5270
5271 nseg = scsi_dma_map(scsi_cmd);
5272 if (nseg < 0) {
5273 dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
5274 return -1;
5275 }
5276
5277 ipr_cmd->dma_use_sg = nseg;
5278
5279 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5280 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5281 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
5282 ioarcb->data_transfer_length = cpu_to_be32(length);
5283 ioarcb->ioadl_len =
5284 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5285 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE) {
5286 ioadl_flags = IPR_IOADL_FLAGS_READ;
5287 ioarcb->read_data_transfer_length = cpu_to_be32(length);
5288 ioarcb->read_ioadl_len =
5289 cpu_to_be32(sizeof(struct ipr_ioadl_desc) *