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