blob: 0621238fac4a7972a0fa968675e6f5e40d41c34a [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/fs.h>
58#include <linux/init.h>
59#include <linux/types.h>
60#include <linux/errno.h>
61#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090062#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#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>
Brian King35a39692006-09-25 12:39:20 -050074#include <linux/libata.h>
Brian King0ce3a7e2008-07-11 13:37:50 -050075#include <linux/hdreg.h>
Wayne Boyerf72919e2010-02-19 13:24:21 -080076#include <linux/reboot.h>
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -080077#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <asm/io.h>
79#include <asm/irq.h>
80#include <asm/processor.h>
81#include <scsi/scsi.h>
82#include <scsi/scsi_host.h>
83#include <scsi/scsi_tcq.h>
84#include <scsi/scsi_eh.h>
85#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include "ipr.h"
87
88/*
89 * Global Data
90 */
Denis Chengb7d68ca2007-12-13 16:14:27 -080091static LIST_HEAD(ipr_ioa_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static unsigned int ipr_log_level = IPR_DEFAULT_LOG_LEVEL;
93static unsigned int ipr_max_speed = 1;
94static int ipr_testmode = 0;
95static unsigned int ipr_fastfail = 0;
Brian King5469cb52007-03-29 12:42:40 -050096static unsigned int ipr_transop_timeout = 0;
brking@us.ibm.comd3c74872005-11-01 17:01:34 -060097static unsigned int ipr_debug = 0;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -080098static unsigned int ipr_max_devs = IPR_DEFAULT_SIS64_DEVS;
Brian Kingac09c342007-04-26 16:00:16 -050099static unsigned int ipr_dual_ioa_raid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static DEFINE_SPINLOCK(ipr_driver_lock);
101
102/* This table describes the differences between DMA controller chips */
103static const struct ipr_chip_cfg_t ipr_chip_cfg[] = {
Brian King60e74862006-11-21 10:28:10 -0600104 { /* Gemstone, Citrine, Obsidian, and Obsidian-E */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .mailbox = 0x0042C,
106 .cache_line_size = 0x20,
107 {
108 .set_interrupt_mask_reg = 0x0022C,
109 .clr_interrupt_mask_reg = 0x00230,
Wayne Boyer214777b2010-02-19 13:24:26 -0800110 .clr_interrupt_mask_reg32 = 0x00230,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .sense_interrupt_mask_reg = 0x0022C,
Wayne Boyer214777b2010-02-19 13:24:26 -0800112 .sense_interrupt_mask_reg32 = 0x0022C,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .clr_interrupt_reg = 0x00228,
Wayne Boyer214777b2010-02-19 13:24:26 -0800114 .clr_interrupt_reg32 = 0x00228,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .sense_interrupt_reg = 0x00224,
Wayne Boyer214777b2010-02-19 13:24:26 -0800116 .sense_interrupt_reg32 = 0x00224,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .ioarrin_reg = 0x00404,
118 .sense_uproc_interrupt_reg = 0x00214,
Wayne Boyer214777b2010-02-19 13:24:26 -0800119 .sense_uproc_interrupt_reg32 = 0x00214,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .set_uproc_interrupt_reg = 0x00214,
Wayne Boyer214777b2010-02-19 13:24:26 -0800121 .set_uproc_interrupt_reg32 = 0x00214,
122 .clr_uproc_interrupt_reg = 0x00218,
123 .clr_uproc_interrupt_reg32 = 0x00218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125 },
126 { /* Snipe and Scamp */
127 .mailbox = 0x0052C,
128 .cache_line_size = 0x20,
129 {
130 .set_interrupt_mask_reg = 0x00288,
131 .clr_interrupt_mask_reg = 0x0028C,
Wayne Boyer214777b2010-02-19 13:24:26 -0800132 .clr_interrupt_mask_reg32 = 0x0028C,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .sense_interrupt_mask_reg = 0x00288,
Wayne Boyer214777b2010-02-19 13:24:26 -0800134 .sense_interrupt_mask_reg32 = 0x00288,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .clr_interrupt_reg = 0x00284,
Wayne Boyer214777b2010-02-19 13:24:26 -0800136 .clr_interrupt_reg32 = 0x00284,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .sense_interrupt_reg = 0x00280,
Wayne Boyer214777b2010-02-19 13:24:26 -0800138 .sense_interrupt_reg32 = 0x00280,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .ioarrin_reg = 0x00504,
140 .sense_uproc_interrupt_reg = 0x00290,
Wayne Boyer214777b2010-02-19 13:24:26 -0800141 .sense_uproc_interrupt_reg32 = 0x00290,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .set_uproc_interrupt_reg = 0x00290,
Wayne Boyer214777b2010-02-19 13:24:26 -0800143 .set_uproc_interrupt_reg32 = 0x00290,
144 .clr_uproc_interrupt_reg = 0x00294,
145 .clr_uproc_interrupt_reg32 = 0x00294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147 },
Wayne Boyera74c1632010-02-19 13:23:51 -0800148 { /* CRoC */
Wayne Boyer110def82010-11-04 09:36:16 -0700149 .mailbox = 0x00044,
Wayne Boyera74c1632010-02-19 13:23:51 -0800150 .cache_line_size = 0x20,
151 {
152 .set_interrupt_mask_reg = 0x00010,
153 .clr_interrupt_mask_reg = 0x00018,
Wayne Boyer214777b2010-02-19 13:24:26 -0800154 .clr_interrupt_mask_reg32 = 0x0001C,
Wayne Boyera74c1632010-02-19 13:23:51 -0800155 .sense_interrupt_mask_reg = 0x00010,
Wayne Boyer214777b2010-02-19 13:24:26 -0800156 .sense_interrupt_mask_reg32 = 0x00014,
Wayne Boyera74c1632010-02-19 13:23:51 -0800157 .clr_interrupt_reg = 0x00008,
Wayne Boyer214777b2010-02-19 13:24:26 -0800158 .clr_interrupt_reg32 = 0x0000C,
Wayne Boyera74c1632010-02-19 13:23:51 -0800159 .sense_interrupt_reg = 0x00000,
Wayne Boyer214777b2010-02-19 13:24:26 -0800160 .sense_interrupt_reg32 = 0x00004,
Wayne Boyera74c1632010-02-19 13:23:51 -0800161 .ioarrin_reg = 0x00070,
162 .sense_uproc_interrupt_reg = 0x00020,
Wayne Boyer214777b2010-02-19 13:24:26 -0800163 .sense_uproc_interrupt_reg32 = 0x00024,
Wayne Boyera74c1632010-02-19 13:23:51 -0800164 .set_uproc_interrupt_reg = 0x00020,
Wayne Boyer214777b2010-02-19 13:24:26 -0800165 .set_uproc_interrupt_reg32 = 0x00024,
Wayne Boyerdcbad002010-02-19 13:24:14 -0800166 .clr_uproc_interrupt_reg = 0x00028,
Wayne Boyer214777b2010-02-19 13:24:26 -0800167 .clr_uproc_interrupt_reg32 = 0x0002C,
168 .init_feedback_reg = 0x0005C,
Wayne Boyerdcbad002010-02-19 13:24:14 -0800169 .dump_addr_reg = 0x00064,
Wayne Boyer8701f182010-06-04 10:26:50 -0700170 .dump_data_reg = 0x00068,
171 .endian_swap_reg = 0x00084
Wayne Boyera74c1632010-02-19 13:23:51 -0800172 }
173 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
176static const struct ipr_chip_t ipr_chip[] = {
Wayne Boyercb237ef2010-06-17 11:51:40 -0700177 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
178 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
179 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
180 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
181 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E, IPR_USE_MSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
182 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
183 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
184 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] },
185 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_ASIC_E2, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186};
187
188static int ipr_max_bus_speeds [] = {
189 IPR_80MBs_SCSI_RATE, IPR_U160_SCSI_RATE, IPR_U320_SCSI_RATE
190};
191
192MODULE_AUTHOR("Brian King <brking@us.ibm.com>");
193MODULE_DESCRIPTION("IBM Power RAID SCSI Adapter Driver");
194module_param_named(max_speed, ipr_max_speed, uint, 0);
195MODULE_PARM_DESC(max_speed, "Maximum bus speed (0-2). Default: 1=U160. Speeds: 0=80 MB/s, 1=U160, 2=U320");
196module_param_named(log_level, ipr_log_level, uint, 0);
197MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver");
198module_param_named(testmode, ipr_testmode, int, 0);
199MODULE_PARM_DESC(testmode, "DANGEROUS!!! Allows unsupported configurations");
Wayne Boyer2cf22be2009-02-24 11:36:00 -0800200module_param_named(fastfail, ipr_fastfail, int, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201MODULE_PARM_DESC(fastfail, "Reduce timeouts and retries");
202module_param_named(transop_timeout, ipr_transop_timeout, int, 0);
203MODULE_PARM_DESC(transop_timeout, "Time in seconds to wait for adapter to come operational (default: 300)");
Wayne Boyer2cf22be2009-02-24 11:36:00 -0800204module_param_named(debug, ipr_debug, int, S_IRUGO | S_IWUSR);
brking@us.ibm.comd3c74872005-11-01 17:01:34 -0600205MODULE_PARM_DESC(debug, "Enable device driver debugging logging. Set to 1 to enable. (default: 0)");
Brian Kingac09c342007-04-26 16:00:16 -0500206module_param_named(dual_ioa_raid, ipr_dual_ioa_raid, int, 0);
207MODULE_PARM_DESC(dual_ioa_raid, "Enable dual adapter RAID support. Set to 1 to enable. (default: 1)");
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800208module_param_named(max_devs, ipr_max_devs, int, 0);
209MODULE_PARM_DESC(max_devs, "Specify the maximum number of physical devices. "
210 "[Default=" __stringify(IPR_DEFAULT_SIS64_DEVS) "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211MODULE_LICENSE("GPL");
212MODULE_VERSION(IPR_DRIVER_VERSION);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/* A constant array of IOASCs/URCs/Error Messages */
215static const
216struct ipr_error_table_t ipr_error_table[] = {
Brian King933916f2007-03-29 12:43:30 -0500217 {0x00000000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 "8155: An unknown error was received"},
219 {0x00330000, 0, 0,
220 "Soft underlength error"},
221 {0x005A0000, 0, 0,
222 "Command to be cancelled not found"},
223 {0x00808000, 0, 0,
224 "Qualified success"},
Brian King933916f2007-03-29 12:43:30 -0500225 {0x01080000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 "FFFE: Soft device bus error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500227 {0x01088100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500228 "4101: Soft device bus fabric error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800229 {0x01100100, 0, IPR_DEFAULT_LOG_LEVEL,
230 "FFFC: Logical block guard error recovered by the device"},
231 {0x01100300, 0, IPR_DEFAULT_LOG_LEVEL,
232 "FFFC: Logical block reference tag error recovered by the device"},
233 {0x01108300, 0, IPR_DEFAULT_LOG_LEVEL,
234 "4171: Recovered scatter list tag / sequence number error"},
235 {0x01109000, 0, IPR_DEFAULT_LOG_LEVEL,
236 "FF3D: Recovered logical block CRC error on IOA to Host transfer"},
237 {0x01109200, 0, IPR_DEFAULT_LOG_LEVEL,
238 "4171: Recovered logical block sequence number error on IOA to Host transfer"},
239 {0x0110A000, 0, IPR_DEFAULT_LOG_LEVEL,
240 "FFFD: Recovered logical block reference tag error detected by the IOA"},
241 {0x0110A100, 0, IPR_DEFAULT_LOG_LEVEL,
242 "FFFD: Logical block guard error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500243 {0x01170600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 "FFF9: Device sector reassign successful"},
Brian King933916f2007-03-29 12:43:30 -0500245 {0x01170900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 "FFF7: Media error recovered by device rewrite procedures"},
Brian King933916f2007-03-29 12:43:30 -0500247 {0x01180200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 "7001: IOA sector reassignment successful"},
Brian King933916f2007-03-29 12:43:30 -0500249 {0x01180500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 "FFF9: Soft media error. Sector reassignment recommended"},
Brian King933916f2007-03-29 12:43:30 -0500251 {0x01180600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 "FFF7: Media error recovered by IOA rewrite procedures"},
Brian King933916f2007-03-29 12:43:30 -0500253 {0x01418000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 "FF3D: Soft PCI bus error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500255 {0x01440000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 "FFF6: Device hardware error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500257 {0x01448100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 "FFF6: Device hardware error recovered by the device"},
Brian King933916f2007-03-29 12:43:30 -0500259 {0x01448200, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 "FF3D: Soft IOA error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500261 {0x01448300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 "FFFA: Undefined device response recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500263 {0x014A0000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 "FFF6: Device bus error, message or command phase"},
Brian King933916f2007-03-29 12:43:30 -0500265 {0x014A8000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King35a39692006-09-25 12:39:20 -0500266 "FFFE: Task Management Function failed"},
Brian King933916f2007-03-29 12:43:30 -0500267 {0x015D0000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 "FFF6: Failure prediction threshold exceeded"},
Brian King933916f2007-03-29 12:43:30 -0500269 {0x015D9200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 "8009: Impending cache battery pack failure"},
271 {0x02040400, 0, 0,
272 "34FF: Disk device format in progress"},
Brian King65f56472007-04-26 16:00:12 -0500273 {0x02048000, 0, IPR_DEFAULT_LOG_LEVEL,
274 "9070: IOA requested reset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 {0x023F0000, 0, 0,
276 "Synchronization required"},
277 {0x024E0000, 0, 0,
278 "No ready, IOA shutdown"},
279 {0x025A0000, 0, 0,
280 "Not ready, IOA has been shutdown"},
Brian King933916f2007-03-29 12:43:30 -0500281 {0x02670100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 "3020: Storage subsystem configuration error"},
283 {0x03110B00, 0, 0,
284 "FFF5: Medium error, data unreadable, recommend reassign"},
285 {0x03110C00, 0, 0,
286 "7000: Medium error, data unreadable, do not reassign"},
Brian King933916f2007-03-29 12:43:30 -0500287 {0x03310000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 "FFF3: Disk media format bad"},
Brian King933916f2007-03-29 12:43:30 -0500289 {0x04050000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 "3002: Addressed device failed to respond to selection"},
Brian King933916f2007-03-29 12:43:30 -0500291 {0x04080000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 "3100: Device bus error"},
Brian King933916f2007-03-29 12:43:30 -0500293 {0x04080100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 "3109: IOA timed out a device command"},
295 {0x04088000, 0, 0,
296 "3120: SCSI bus is not operational"},
Brian King933916f2007-03-29 12:43:30 -0500297 {0x04088100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500298 "4100: Hard device bus fabric error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800299 {0x04100100, 0, IPR_DEFAULT_LOG_LEVEL,
300 "310C: Logical block guard error detected by the device"},
301 {0x04100300, 0, IPR_DEFAULT_LOG_LEVEL,
302 "310C: Logical block reference tag error detected by the device"},
303 {0x04108300, 1, IPR_DEFAULT_LOG_LEVEL,
304 "4170: Scatter list tag / sequence number error"},
305 {0x04109000, 1, IPR_DEFAULT_LOG_LEVEL,
306 "8150: Logical block CRC error on IOA to Host transfer"},
307 {0x04109200, 1, IPR_DEFAULT_LOG_LEVEL,
308 "4170: Logical block sequence number error on IOA to Host transfer"},
309 {0x0410A000, 0, IPR_DEFAULT_LOG_LEVEL,
310 "310D: Logical block reference tag error detected by the IOA"},
311 {0x0410A100, 0, IPR_DEFAULT_LOG_LEVEL,
312 "310D: Logical block guard error detected by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500313 {0x04118000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 "9000: IOA reserved area data check"},
Brian King933916f2007-03-29 12:43:30 -0500315 {0x04118100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 "9001: IOA reserved area invalid data pattern"},
Brian King933916f2007-03-29 12:43:30 -0500317 {0x04118200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 "9002: IOA reserved area LRC error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800319 {0x04118300, 1, IPR_DEFAULT_LOG_LEVEL,
320 "Hardware Error, IOA metadata access error"},
Brian King933916f2007-03-29 12:43:30 -0500321 {0x04320000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 "102E: Out of alternate sectors for disk storage"},
Brian King933916f2007-03-29 12:43:30 -0500323 {0x04330000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 "FFF4: Data transfer underlength error"},
Brian King933916f2007-03-29 12:43:30 -0500325 {0x04338000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 "FFF4: Data transfer overlength error"},
Brian King933916f2007-03-29 12:43:30 -0500327 {0x043E0100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 "3400: Logical unit failure"},
Brian King933916f2007-03-29 12:43:30 -0500329 {0x04408500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 "FFF4: Device microcode is corrupt"},
Brian King933916f2007-03-29 12:43:30 -0500331 {0x04418000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 "8150: PCI bus error"},
333 {0x04430000, 1, 0,
334 "Unsupported device bus message received"},
Brian King933916f2007-03-29 12:43:30 -0500335 {0x04440000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 "FFF4: Disk device problem"},
Brian King933916f2007-03-29 12:43:30 -0500337 {0x04448200, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 "8150: Permanent IOA failure"},
Brian King933916f2007-03-29 12:43:30 -0500339 {0x04448300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 "3010: Disk device returned wrong response to IOA"},
Brian King933916f2007-03-29 12:43:30 -0500341 {0x04448400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 "8151: IOA microcode error"},
343 {0x04448500, 0, 0,
344 "Device bus status error"},
Brian King933916f2007-03-29 12:43:30 -0500345 {0x04448600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 "8157: IOA error requiring IOA reset to recover"},
Brian King35a39692006-09-25 12:39:20 -0500347 {0x04448700, 0, 0,
348 "ATA device status error"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 {0x04490000, 0, 0,
350 "Message reject received from the device"},
Brian King933916f2007-03-29 12:43:30 -0500351 {0x04449200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 "8008: A permanent cache battery pack failure occurred"},
Brian King933916f2007-03-29 12:43:30 -0500353 {0x0444A000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 "9090: Disk unit has been modified after the last known status"},
Brian King933916f2007-03-29 12:43:30 -0500355 {0x0444A200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 "9081: IOA detected device error"},
Brian King933916f2007-03-29 12:43:30 -0500357 {0x0444A300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 "9082: IOA detected device error"},
Brian King933916f2007-03-29 12:43:30 -0500359 {0x044A0000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 "3110: Device bus error, message or command phase"},
Brian King933916f2007-03-29 12:43:30 -0500361 {0x044A8000, 1, IPR_DEFAULT_LOG_LEVEL,
Brian King35a39692006-09-25 12:39:20 -0500362 "3110: SAS Command / Task Management Function failed"},
Brian King933916f2007-03-29 12:43:30 -0500363 {0x04670400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 "9091: Incorrect hardware configuration change has been detected"},
Brian King933916f2007-03-29 12:43:30 -0500365 {0x04678000, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600366 "9073: Invalid multi-adapter configuration"},
Brian King933916f2007-03-29 12:43:30 -0500367 {0x04678100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500368 "4010: Incorrect connection between cascaded expanders"},
Brian King933916f2007-03-29 12:43:30 -0500369 {0x04678200, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500370 "4020: Connections exceed IOA design limits"},
Brian King933916f2007-03-29 12:43:30 -0500371 {0x04678300, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500372 "4030: Incorrect multipath connection"},
Brian King933916f2007-03-29 12:43:30 -0500373 {0x04679000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500374 "4110: Unsupported enclosure function"},
Brian King933916f2007-03-29 12:43:30 -0500375 {0x046E0000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 "FFF4: Command to logical unit failed"},
377 {0x05240000, 1, 0,
378 "Illegal request, invalid request type or request packet"},
379 {0x05250000, 0, 0,
380 "Illegal request, invalid resource handle"},
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600381 {0x05258000, 0, 0,
382 "Illegal request, commands not allowed to this device"},
383 {0x05258100, 0, 0,
384 "Illegal request, command not allowed to a secondary adapter"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800385 {0x05258200, 0, 0,
386 "Illegal request, command not allowed to a non-optimized resource"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 {0x05260000, 0, 0,
388 "Illegal request, invalid field in parameter list"},
389 {0x05260100, 0, 0,
390 "Illegal request, parameter not supported"},
391 {0x05260200, 0, 0,
392 "Illegal request, parameter value invalid"},
393 {0x052C0000, 0, 0,
394 "Illegal request, command sequence error"},
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600395 {0x052C8000, 1, 0,
396 "Illegal request, dual adapter support not enabled"},
Brian King933916f2007-03-29 12:43:30 -0500397 {0x06040500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 "9031: Array protection temporarily suspended, protection resuming"},
Brian King933916f2007-03-29 12:43:30 -0500399 {0x06040600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 "9040: Array protection temporarily suspended, protection resuming"},
Brian King933916f2007-03-29 12:43:30 -0500401 {0x06288000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500402 "3140: Device bus not ready to ready transition"},
Brian King933916f2007-03-29 12:43:30 -0500403 {0x06290000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 "FFFB: SCSI bus was reset"},
405 {0x06290500, 0, 0,
406 "FFFE: SCSI bus transition to single ended"},
407 {0x06290600, 0, 0,
408 "FFFE: SCSI bus transition to LVD"},
Brian King933916f2007-03-29 12:43:30 -0500409 {0x06298000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 "FFFB: SCSI bus was reset by another initiator"},
Brian King933916f2007-03-29 12:43:30 -0500411 {0x063F0300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 "3029: A device replacement has occurred"},
Brian King933916f2007-03-29 12:43:30 -0500413 {0x064C8000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 "9051: IOA cache data exists for a missing or failed device"},
Brian King933916f2007-03-29 12:43:30 -0500415 {0x064C8100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600416 "9055: Auxiliary cache IOA contains cache data needed by the primary IOA"},
Brian King933916f2007-03-29 12:43:30 -0500417 {0x06670100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 "9025: Disk unit is not supported at its physical location"},
Brian King933916f2007-03-29 12:43:30 -0500419 {0x06670600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 "3020: IOA detected a SCSI bus configuration error"},
Brian King933916f2007-03-29 12:43:30 -0500421 {0x06678000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 "3150: SCSI bus configuration error"},
Brian King933916f2007-03-29 12:43:30 -0500423 {0x06678100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600424 "9074: Asymmetric advanced function disk configuration"},
Brian King933916f2007-03-29 12:43:30 -0500425 {0x06678300, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500426 "4040: Incomplete multipath connection between IOA and enclosure"},
Brian King933916f2007-03-29 12:43:30 -0500427 {0x06678400, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500428 "4041: Incomplete multipath connection between enclosure and device"},
Brian King933916f2007-03-29 12:43:30 -0500429 {0x06678500, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500430 "9075: Incomplete multipath connection between IOA and remote IOA"},
Brian King933916f2007-03-29 12:43:30 -0500431 {0x06678600, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500432 "9076: Configuration error, missing remote IOA"},
Brian King933916f2007-03-29 12:43:30 -0500433 {0x06679100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500434 "4050: Enclosure does not support a required multipath function"},
Wayne Boyerb75424f2009-01-28 08:24:50 -0800435 {0x06690000, 0, IPR_DEFAULT_LOG_LEVEL,
436 "4070: Logically bad block written on device"},
Brian King933916f2007-03-29 12:43:30 -0500437 {0x06690200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 "9041: Array protection temporarily suspended"},
Brian King933916f2007-03-29 12:43:30 -0500439 {0x06698200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 "9042: Corrupt array parity detected on specified device"},
Brian King933916f2007-03-29 12:43:30 -0500441 {0x066B0200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 "9030: Array no longer protected due to missing or failed disk unit"},
Brian King933916f2007-03-29 12:43:30 -0500443 {0x066B8000, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600444 "9071: Link operational transition"},
Brian King933916f2007-03-29 12:43:30 -0500445 {0x066B8100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600446 "9072: Link not operational transition"},
Brian King933916f2007-03-29 12:43:30 -0500447 {0x066B8200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 "9032: Array exposed but still protected"},
Brian Kinge4353402007-03-29 12:43:37 -0500449 {0x066B8300, 0, IPR_DEFAULT_LOG_LEVEL + 1,
450 "70DD: Device forced failed by disrupt device command"},
Brian King933916f2007-03-29 12:43:30 -0500451 {0x066B9100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500452 "4061: Multipath redundancy level got better"},
Brian King933916f2007-03-29 12:43:30 -0500453 {0x066B9200, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500454 "4060: Multipath redundancy level got worse"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 {0x07270000, 0, 0,
456 "Failure due to other device"},
Brian King933916f2007-03-29 12:43:30 -0500457 {0x07278000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 "9008: IOA does not support functions expected by devices"},
Brian King933916f2007-03-29 12:43:30 -0500459 {0x07278100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 "9010: Cache data associated with attached devices cannot be found"},
Brian King933916f2007-03-29 12:43:30 -0500461 {0x07278200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 "9011: Cache data belongs to devices other than those attached"},
Brian King933916f2007-03-29 12:43:30 -0500463 {0x07278400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 "9020: Array missing 2 or more devices with only 1 device present"},
Brian King933916f2007-03-29 12:43:30 -0500465 {0x07278500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 "9021: Array missing 2 or more devices with 2 or more devices present"},
Brian King933916f2007-03-29 12:43:30 -0500467 {0x07278600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 "9022: Exposed array is missing a required device"},
Brian King933916f2007-03-29 12:43:30 -0500469 {0x07278700, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 "9023: Array member(s) not at required physical locations"},
Brian King933916f2007-03-29 12:43:30 -0500471 {0x07278800, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 "9024: Array not functional due to present hardware configuration"},
Brian King933916f2007-03-29 12:43:30 -0500473 {0x07278900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 "9026: Array not functional due to present hardware configuration"},
Brian King933916f2007-03-29 12:43:30 -0500475 {0x07278A00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 "9027: Array is missing a device and parity is out of sync"},
Brian King933916f2007-03-29 12:43:30 -0500477 {0x07278B00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 "9028: Maximum number of arrays already exist"},
Brian King933916f2007-03-29 12:43:30 -0500479 {0x07278C00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 "9050: Required cache data cannot be located for a disk unit"},
Brian King933916f2007-03-29 12:43:30 -0500481 {0x07278D00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 "9052: Cache data exists for a device that has been modified"},
Brian King933916f2007-03-29 12:43:30 -0500483 {0x07278F00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 "9054: IOA resources not available due to previous problems"},
Brian King933916f2007-03-29 12:43:30 -0500485 {0x07279100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 "9092: Disk unit requires initialization before use"},
Brian King933916f2007-03-29 12:43:30 -0500487 {0x07279200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 "9029: Incorrect hardware configuration change has been detected"},
Brian King933916f2007-03-29 12:43:30 -0500489 {0x07279600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 "9060: One or more disk pairs are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500491 {0x07279700, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 "9061: One or more disks are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500493 {0x07279800, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 "9062: One or more disks are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500495 {0x07279900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 "9063: Maximum number of functional arrays has been exceeded"},
497 {0x0B260000, 0, 0,
498 "Aborted command, invalid descriptor"},
499 {0x0B5A0000, 0, 0,
500 "Command terminated by host"}
501};
502
503static const struct ipr_ses_table_entry ipr_ses_table[] = {
504 { "2104-DL1 ", "XXXXXXXXXXXXXXXX", 80 },
505 { "2104-TL1 ", "XXXXXXXXXXXXXXXX", 80 },
506 { "HSBP07M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 7 slot */
507 { "HSBP05M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 5 slot */
508 { "HSBP05M S U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Bowtie */
509 { "HSBP06E ASU2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* MartinFenning */
510 { "2104-DU3 ", "XXXXXXXXXXXXXXXX", 160 },
511 { "2104-TU3 ", "XXXXXXXXXXXXXXXX", 160 },
512 { "HSBP04C RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
513 { "HSBP06E RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
514 { "St V1S2 ", "XXXXXXXXXXXXXXXX", 160 },
515 { "HSBPD4M PU3SCSI", "XXXXXXX*XXXXXXXX", 160 },
516 { "VSBPD1H U3SCSI", "XXXXXXX*XXXXXXXX", 160 }
517};
518
519/*
520 * Function Prototypes
521 */
522static int ipr_reset_alert(struct ipr_cmnd *);
523static void ipr_process_ccn(struct ipr_cmnd *);
524static void ipr_process_error(struct ipr_cmnd *);
525static void ipr_reset_ioa_job(struct ipr_cmnd *);
526static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *,
527 enum ipr_shutdown_type);
528
529#ifdef CONFIG_SCSI_IPR_TRACE
530/**
531 * ipr_trc_hook - Add a trace entry to the driver trace
532 * @ipr_cmd: ipr command struct
533 * @type: trace type
534 * @add_data: additional data
535 *
536 * Return value:
537 * none
538 **/
539static void ipr_trc_hook(struct ipr_cmnd *ipr_cmd,
540 u8 type, u32 add_data)
541{
542 struct ipr_trace_entry *trace_entry;
543 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
544
545 trace_entry = &ioa_cfg->trace[ioa_cfg->trace_index++];
546 trace_entry->time = jiffies;
547 trace_entry->op_code = ipr_cmd->ioarcb.cmd_pkt.cdb[0];
548 trace_entry->type = type;
Wayne Boyera32c0552010-02-19 13:23:36 -0800549 if (ipr_cmd->ioa_cfg->sis64)
550 trace_entry->ata_op_code = ipr_cmd->i.ata_ioadl.regs.command;
551 else
552 trace_entry->ata_op_code = ipr_cmd->ioarcb.u.add_data.u.regs.command;
Brian King35a39692006-09-25 12:39:20 -0500553 trace_entry->cmd_index = ipr_cmd->cmd_index & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 trace_entry->res_handle = ipr_cmd->ioarcb.res_handle;
555 trace_entry->u.add_data = add_data;
556}
557#else
558#define ipr_trc_hook(ipr_cmd, type, add_data) do { } while(0)
559#endif
560
561/**
562 * ipr_reinit_ipr_cmnd - Re-initialize an IPR Cmnd block for reuse
563 * @ipr_cmd: ipr command struct
564 *
565 * Return value:
566 * none
567 **/
568static void ipr_reinit_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
569{
570 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -0700571 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
572 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
Wayne Boyera32c0552010-02-19 13:23:36 -0800573 dma_addr_t dma_addr = ipr_cmd->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
Wayne Boyera32c0552010-02-19 13:23:36 -0800576 ioarcb->data_transfer_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 ioarcb->read_data_transfer_length = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800578 ioarcb->ioadl_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 ioarcb->read_ioadl_len = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800580
Wayne Boyer96d21f02010-05-10 09:13:27 -0700581 if (ipr_cmd->ioa_cfg->sis64) {
Wayne Boyera32c0552010-02-19 13:23:36 -0800582 ioarcb->u.sis64_addr_data.data_ioadl_addr =
583 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
Wayne Boyer96d21f02010-05-10 09:13:27 -0700584 ioasa64->u.gata.status = 0;
585 } else {
Wayne Boyera32c0552010-02-19 13:23:36 -0800586 ioarcb->write_ioadl_addr =
587 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
588 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
Wayne Boyer96d21f02010-05-10 09:13:27 -0700589 ioasa->u.gata.status = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800590 }
591
Wayne Boyer96d21f02010-05-10 09:13:27 -0700592 ioasa->hdr.ioasc = 0;
593 ioasa->hdr.residual_data_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 ipr_cmd->scsi_cmd = NULL;
Brian King35a39692006-09-25 12:39:20 -0500595 ipr_cmd->qc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 ipr_cmd->sense_buffer[0] = 0;
597 ipr_cmd->dma_use_sg = 0;
598}
599
600/**
601 * ipr_init_ipr_cmnd - Initialize an IPR Cmnd block
602 * @ipr_cmd: ipr command struct
603 *
604 * Return value:
605 * none
606 **/
607static void ipr_init_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
608{
609 ipr_reinit_ipr_cmnd(ipr_cmd);
610 ipr_cmd->u.scratch = 0;
611 ipr_cmd->sibling = NULL;
612 init_timer(&ipr_cmd->timer);
613}
614
615/**
616 * ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block
617 * @ioa_cfg: ioa config struct
618 *
619 * Return value:
620 * pointer to ipr command struct
621 **/
622static
623struct ipr_cmnd *ipr_get_free_ipr_cmnd(struct ipr_ioa_cfg *ioa_cfg)
624{
625 struct ipr_cmnd *ipr_cmd;
626
627 ipr_cmd = list_entry(ioa_cfg->free_q.next, struct ipr_cmnd, queue);
628 list_del(&ipr_cmd->queue);
629 ipr_init_ipr_cmnd(ipr_cmd);
630
631 return ipr_cmd;
632}
633
634/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * ipr_mask_and_clear_interrupts - Mask all and clear specified interrupts
636 * @ioa_cfg: ioa config struct
637 * @clr_ints: interrupts to clear
638 *
639 * This function masks all interrupts on the adapter, then clears the
640 * interrupts specified in the mask
641 *
642 * Return value:
643 * none
644 **/
645static void ipr_mask_and_clear_interrupts(struct ipr_ioa_cfg *ioa_cfg,
646 u32 clr_ints)
647{
648 volatile u32 int_reg;
649
650 /* Stop new interrupts */
651 ioa_cfg->allow_interrupts = 0;
652
653 /* Set interrupt mask to stop all new interrupts */
Wayne Boyer214777b2010-02-19 13:24:26 -0800654 if (ioa_cfg->sis64)
655 writeq(~0, ioa_cfg->regs.set_interrupt_mask_reg);
656 else
657 writel(~0, ioa_cfg->regs.set_interrupt_mask_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 /* Clear any pending interrupts */
Wayne Boyer214777b2010-02-19 13:24:26 -0800660 if (ioa_cfg->sis64)
661 writel(~0, ioa_cfg->regs.clr_interrupt_reg);
662 writel(clr_ints, ioa_cfg->regs.clr_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
664}
665
666/**
667 * ipr_save_pcix_cmd_reg - Save PCI-X command register
668 * @ioa_cfg: ioa config struct
669 *
670 * Return value:
671 * 0 on success / -EIO on failure
672 **/
673static int ipr_save_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
674{
675 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
676
Brian King7dce0e12007-01-23 11:25:30 -0600677 if (pcix_cmd_reg == 0)
678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (pci_read_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
681 &ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
682 dev_err(&ioa_cfg->pdev->dev, "Failed to save PCI-X command register\n");
683 return -EIO;
684 }
685
686 ioa_cfg->saved_pcix_cmd_reg |= PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO;
687 return 0;
688}
689
690/**
691 * ipr_set_pcix_cmd_reg - Setup PCI-X command register
692 * @ioa_cfg: ioa config struct
693 *
694 * Return value:
695 * 0 on success / -EIO on failure
696 **/
697static int ipr_set_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
698{
699 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
700
701 if (pcix_cmd_reg) {
702 if (pci_write_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
703 ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
704 dev_err(&ioa_cfg->pdev->dev, "Failed to setup PCI-X command register\n");
705 return -EIO;
706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708
709 return 0;
710}
711
712/**
Brian King35a39692006-09-25 12:39:20 -0500713 * ipr_sata_eh_done - done function for aborted SATA commands
714 * @ipr_cmd: ipr command struct
715 *
716 * This function is invoked for ops generated to SATA
717 * devices which are being aborted.
718 *
719 * Return value:
720 * none
721 **/
722static void ipr_sata_eh_done(struct ipr_cmnd *ipr_cmd)
723{
724 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
725 struct ata_queued_cmd *qc = ipr_cmd->qc;
726 struct ipr_sata_port *sata_port = qc->ap->private_data;
727
728 qc->err_mask |= AC_ERR_OTHER;
729 sata_port->ioasa.status |= ATA_BUSY;
730 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
731 ata_qc_complete(qc);
732}
733
734/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 * ipr_scsi_eh_done - mid-layer done function for aborted ops
736 * @ipr_cmd: ipr command struct
737 *
738 * This function is invoked by the interrupt handler for
739 * ops generated by the SCSI mid-layer which are being aborted.
740 *
741 * Return value:
742 * none
743 **/
744static void ipr_scsi_eh_done(struct ipr_cmnd *ipr_cmd)
745{
746 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
747 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
748
749 scsi_cmd->result |= (DID_ERROR << 16);
750
FUJITA Tomonori63015bc2007-05-26 00:26:59 +0900751 scsi_dma_unmap(ipr_cmd->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 scsi_cmd->scsi_done(scsi_cmd);
753 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
754}
755
756/**
757 * ipr_fail_all_ops - Fails all outstanding ops.
758 * @ioa_cfg: ioa config struct
759 *
760 * This function fails all outstanding ops.
761 *
762 * Return value:
763 * none
764 **/
765static void ipr_fail_all_ops(struct ipr_ioa_cfg *ioa_cfg)
766{
767 struct ipr_cmnd *ipr_cmd, *temp;
768
769 ENTER;
770 list_for_each_entry_safe(ipr_cmd, temp, &ioa_cfg->pending_q, queue) {
771 list_del(&ipr_cmd->queue);
772
Wayne Boyer96d21f02010-05-10 09:13:27 -0700773 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_IOA_WAS_RESET);
774 ipr_cmd->s.ioasa.hdr.ilid = cpu_to_be32(IPR_DRIVER_ILID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 if (ipr_cmd->scsi_cmd)
777 ipr_cmd->done = ipr_scsi_eh_done;
Brian King35a39692006-09-25 12:39:20 -0500778 else if (ipr_cmd->qc)
779 ipr_cmd->done = ipr_sata_eh_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, IPR_IOASC_IOA_WAS_RESET);
782 del_timer(&ipr_cmd->timer);
783 ipr_cmd->done(ipr_cmd);
784 }
785
786 LEAVE;
787}
788
789/**
Wayne Boyera32c0552010-02-19 13:23:36 -0800790 * ipr_send_command - Send driver initiated requests.
791 * @ipr_cmd: ipr command struct
792 *
793 * This function sends a command to the adapter using the correct write call.
794 * In the case of sis64, calculate the ioarcb size required. Then or in the
795 * appropriate bits.
796 *
797 * Return value:
798 * none
799 **/
800static void ipr_send_command(struct ipr_cmnd *ipr_cmd)
801{
802 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
803 dma_addr_t send_dma_addr = ipr_cmd->dma_addr;
804
805 if (ioa_cfg->sis64) {
806 /* The default size is 256 bytes */
807 send_dma_addr |= 0x1;
808
809 /* If the number of ioadls * size of ioadl > 128 bytes,
810 then use a 512 byte ioarcb */
811 if (ipr_cmd->dma_use_sg * sizeof(struct ipr_ioadl64_desc) > 128 )
812 send_dma_addr |= 0x4;
813 writeq(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
814 } else
815 writel(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
816}
817
818/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * ipr_do_req - Send driver initiated requests.
820 * @ipr_cmd: ipr command struct
821 * @done: done function
822 * @timeout_func: timeout function
823 * @timeout: timeout value
824 *
825 * This function sends the specified command to the adapter with the
826 * timeout given. The done function is invoked on command completion.
827 *
828 * Return value:
829 * none
830 **/
831static void ipr_do_req(struct ipr_cmnd *ipr_cmd,
832 void (*done) (struct ipr_cmnd *),
833 void (*timeout_func) (struct ipr_cmnd *), u32 timeout)
834{
835 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
836
837 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
838
839 ipr_cmd->done = done;
840
841 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
842 ipr_cmd->timer.expires = jiffies + timeout;
843 ipr_cmd->timer.function = (void (*)(unsigned long))timeout_func;
844
845 add_timer(&ipr_cmd->timer);
846
847 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, 0);
848
849 mb();
Wayne Boyera32c0552010-02-19 13:23:36 -0800850
851 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854/**
855 * ipr_internal_cmd_done - Op done function for an internally generated op.
856 * @ipr_cmd: ipr command struct
857 *
858 * This function is the op done function for an internally generated,
859 * blocking op. It simply wakes the sleeping thread.
860 *
861 * Return value:
862 * none
863 **/
864static void ipr_internal_cmd_done(struct ipr_cmnd *ipr_cmd)
865{
866 if (ipr_cmd->sibling)
867 ipr_cmd->sibling = NULL;
868 else
869 complete(&ipr_cmd->completion);
870}
871
872/**
Wayne Boyera32c0552010-02-19 13:23:36 -0800873 * ipr_init_ioadl - initialize the ioadl for the correct SIS type
874 * @ipr_cmd: ipr command struct
875 * @dma_addr: dma address
876 * @len: transfer length
877 * @flags: ioadl flag value
878 *
879 * This function initializes an ioadl in the case where there is only a single
880 * descriptor.
881 *
882 * Return value:
883 * nothing
884 **/
885static void ipr_init_ioadl(struct ipr_cmnd *ipr_cmd, dma_addr_t dma_addr,
886 u32 len, int flags)
887{
888 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
889 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
890
891 ipr_cmd->dma_use_sg = 1;
892
893 if (ipr_cmd->ioa_cfg->sis64) {
894 ioadl64->flags = cpu_to_be32(flags);
895 ioadl64->data_len = cpu_to_be32(len);
896 ioadl64->address = cpu_to_be64(dma_addr);
897
898 ipr_cmd->ioarcb.ioadl_len =
899 cpu_to_be32(sizeof(struct ipr_ioadl64_desc));
900 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
901 } else {
902 ioadl->flags_and_data_len = cpu_to_be32(flags | len);
903 ioadl->address = cpu_to_be32(dma_addr);
904
905 if (flags == IPR_IOADL_FLAGS_READ_LAST) {
906 ipr_cmd->ioarcb.read_ioadl_len =
907 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
908 ipr_cmd->ioarcb.read_data_transfer_length = cpu_to_be32(len);
909 } else {
910 ipr_cmd->ioarcb.ioadl_len =
911 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
912 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
913 }
914 }
915}
916
917/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 * ipr_send_blocking_cmd - Send command and sleep on its completion.
919 * @ipr_cmd: ipr command struct
920 * @timeout_func: function to invoke if command times out
921 * @timeout: timeout
922 *
923 * Return value:
924 * none
925 **/
926static void ipr_send_blocking_cmd(struct ipr_cmnd *ipr_cmd,
927 void (*timeout_func) (struct ipr_cmnd *ipr_cmd),
928 u32 timeout)
929{
930 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
931
932 init_completion(&ipr_cmd->completion);
933 ipr_do_req(ipr_cmd, ipr_internal_cmd_done, timeout_func, timeout);
934
935 spin_unlock_irq(ioa_cfg->host->host_lock);
936 wait_for_completion(&ipr_cmd->completion);
937 spin_lock_irq(ioa_cfg->host->host_lock);
938}
939
940/**
941 * ipr_send_hcam - Send an HCAM to the adapter.
942 * @ioa_cfg: ioa config struct
943 * @type: HCAM type
944 * @hostrcb: hostrcb struct
945 *
946 * This function will send a Host Controlled Async command to the adapter.
947 * If HCAMs are currently not allowed to be issued to the adapter, it will
948 * place the hostrcb on the free queue.
949 *
950 * Return value:
951 * none
952 **/
953static void ipr_send_hcam(struct ipr_ioa_cfg *ioa_cfg, u8 type,
954 struct ipr_hostrcb *hostrcb)
955{
956 struct ipr_cmnd *ipr_cmd;
957 struct ipr_ioarcb *ioarcb;
958
959 if (ioa_cfg->allow_cmds) {
960 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
961 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
962 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_pending_q);
963
964 ipr_cmd->u.hostrcb = hostrcb;
965 ioarcb = &ipr_cmd->ioarcb;
966
967 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
968 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_HCAM;
969 ioarcb->cmd_pkt.cdb[0] = IPR_HOST_CONTROLLED_ASYNC;
970 ioarcb->cmd_pkt.cdb[1] = type;
971 ioarcb->cmd_pkt.cdb[7] = (sizeof(hostrcb->hcam) >> 8) & 0xff;
972 ioarcb->cmd_pkt.cdb[8] = sizeof(hostrcb->hcam) & 0xff;
973
Wayne Boyera32c0552010-02-19 13:23:36 -0800974 ipr_init_ioadl(ipr_cmd, hostrcb->hostrcb_dma,
975 sizeof(hostrcb->hcam), IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 if (type == IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE)
978 ipr_cmd->done = ipr_process_ccn;
979 else
980 ipr_cmd->done = ipr_process_error;
981
982 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_IOA_RES_ADDR);
983
984 mb();
Wayne Boyera32c0552010-02-19 13:23:36 -0800985
986 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 } else {
988 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
989 }
990}
991
992/**
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800993 * ipr_update_ata_class - Update the ata class in the resource entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * @res: resource entry struct
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800995 * @proto: cfgte device bus protocol value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 *
997 * Return value:
998 * none
999 **/
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001000static void ipr_update_ata_class(struct ipr_resource_entry *res, unsigned int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001002 switch(proto) {
1003 case IPR_PROTO_SATA:
1004 case IPR_PROTO_SAS_STP:
1005 res->ata_class = ATA_DEV_ATA;
1006 break;
1007 case IPR_PROTO_SATA_ATAPI:
1008 case IPR_PROTO_SAS_STP_ATAPI:
1009 res->ata_class = ATA_DEV_ATAPI;
1010 break;
1011 default:
1012 res->ata_class = ATA_DEV_UNKNOWN;
1013 break;
1014 };
1015}
1016
1017/**
1018 * ipr_init_res_entry - Initialize a resource entry struct.
1019 * @res: resource entry struct
1020 * @cfgtew: config table entry wrapper struct
1021 *
1022 * Return value:
1023 * none
1024 **/
1025static void ipr_init_res_entry(struct ipr_resource_entry *res,
1026 struct ipr_config_table_entry_wrapper *cfgtew)
1027{
1028 int found = 0;
1029 unsigned int proto;
1030 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1031 struct ipr_resource_entry *gscsi_res = NULL;
1032
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06001033 res->needs_sync_complete = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 res->in_erp = 0;
1035 res->add_to_ml = 0;
1036 res->del_from_ml = 0;
1037 res->resetting_device = 0;
1038 res->sdev = NULL;
Brian King35a39692006-09-25 12:39:20 -05001039 res->sata_port = NULL;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001040
1041 if (ioa_cfg->sis64) {
1042 proto = cfgtew->u.cfgte64->proto;
1043 res->res_flags = cfgtew->u.cfgte64->res_flags;
1044 res->qmodel = IPR_QUEUEING_MODEL64(res);
Wayne Boyer438b0332010-05-10 09:13:00 -07001045 res->type = cfgtew->u.cfgte64->res_type;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001046
1047 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1048 sizeof(res->res_path));
1049
1050 res->bus = 0;
Wayne Boyer0cb992e2010-11-04 09:35:58 -07001051 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1052 sizeof(res->dev_lun.scsi_lun));
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001053 res->lun = scsilun_to_int(&res->dev_lun);
1054
1055 if (res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1056 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue) {
1057 if (gscsi_res->dev_id == cfgtew->u.cfgte64->dev_id) {
1058 found = 1;
1059 res->target = gscsi_res->target;
1060 break;
1061 }
1062 }
1063 if (!found) {
1064 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1065 ioa_cfg->max_devs_supported);
1066 set_bit(res->target, ioa_cfg->target_ids);
1067 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001068 } else if (res->type == IPR_RES_TYPE_IOAFP) {
1069 res->bus = IPR_IOAFP_VIRTUAL_BUS;
1070 res->target = 0;
1071 } else if (res->type == IPR_RES_TYPE_ARRAY) {
1072 res->bus = IPR_ARRAY_VIRTUAL_BUS;
1073 res->target = find_first_zero_bit(ioa_cfg->array_ids,
1074 ioa_cfg->max_devs_supported);
1075 set_bit(res->target, ioa_cfg->array_ids);
1076 } else if (res->type == IPR_RES_TYPE_VOLUME_SET) {
1077 res->bus = IPR_VSET_VIRTUAL_BUS;
1078 res->target = find_first_zero_bit(ioa_cfg->vset_ids,
1079 ioa_cfg->max_devs_supported);
1080 set_bit(res->target, ioa_cfg->vset_ids);
1081 } else {
1082 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1083 ioa_cfg->max_devs_supported);
1084 set_bit(res->target, ioa_cfg->target_ids);
1085 }
1086 } else {
1087 proto = cfgtew->u.cfgte->proto;
1088 res->qmodel = IPR_QUEUEING_MODEL(res);
1089 res->flags = cfgtew->u.cfgte->flags;
1090 if (res->flags & IPR_IS_IOA_RESOURCE)
1091 res->type = IPR_RES_TYPE_IOAFP;
1092 else
1093 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1094
1095 res->bus = cfgtew->u.cfgte->res_addr.bus;
1096 res->target = cfgtew->u.cfgte->res_addr.target;
1097 res->lun = cfgtew->u.cfgte->res_addr.lun;
Wayne Boyer46d74562010-08-11 07:15:17 -07001098 res->lun_wwn = get_unaligned_be64(cfgtew->u.cfgte->lun_wwn);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001099 }
1100
1101 ipr_update_ata_class(res, proto);
1102}
1103
1104/**
1105 * ipr_is_same_device - Determine if two devices are the same.
1106 * @res: resource entry struct
1107 * @cfgtew: config table entry wrapper struct
1108 *
1109 * Return value:
1110 * 1 if the devices are the same / 0 otherwise
1111 **/
1112static int ipr_is_same_device(struct ipr_resource_entry *res,
1113 struct ipr_config_table_entry_wrapper *cfgtew)
1114{
1115 if (res->ioa_cfg->sis64) {
1116 if (!memcmp(&res->dev_id, &cfgtew->u.cfgte64->dev_id,
1117 sizeof(cfgtew->u.cfgte64->dev_id)) &&
Wayne Boyer0cb992e2010-11-04 09:35:58 -07001118 !memcmp(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001119 sizeof(cfgtew->u.cfgte64->lun))) {
1120 return 1;
1121 }
1122 } else {
1123 if (res->bus == cfgtew->u.cfgte->res_addr.bus &&
1124 res->target == cfgtew->u.cfgte->res_addr.target &&
1125 res->lun == cfgtew->u.cfgte->res_addr.lun)
1126 return 1;
1127 }
1128
1129 return 0;
1130}
1131
1132/**
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001133 * ipr_format_res_path - Format the resource path for printing.
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001134 * @res_path: resource path
1135 * @buf: buffer
1136 *
1137 * Return value:
1138 * pointer to buffer
1139 **/
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001140static char *ipr_format_res_path(u8 *res_path, char *buffer, int len)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001141{
1142 int i;
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001143 char *p = buffer;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001144
Wayne Boyer46d74562010-08-11 07:15:17 -07001145 *p = '\0';
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001146 p += snprintf(p, buffer + len - p, "%02X", res_path[0]);
1147 for (i = 1; res_path[i] != 0xff && ((i * 3) < len); i++)
1148 p += snprintf(p, buffer + len - p, "-%02X", res_path[i]);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001149
1150 return buffer;
1151}
1152
1153/**
1154 * ipr_update_res_entry - Update the resource entry.
1155 * @res: resource entry struct
1156 * @cfgtew: config table entry wrapper struct
1157 *
1158 * Return value:
1159 * none
1160 **/
1161static void ipr_update_res_entry(struct ipr_resource_entry *res,
1162 struct ipr_config_table_entry_wrapper *cfgtew)
1163{
1164 char buffer[IPR_MAX_RES_PATH_LENGTH];
1165 unsigned int proto;
1166 int new_path = 0;
1167
1168 if (res->ioa_cfg->sis64) {
1169 res->flags = cfgtew->u.cfgte64->flags;
1170 res->res_flags = cfgtew->u.cfgte64->res_flags;
Wayne Boyer75576bb2010-07-14 10:50:14 -07001171 res->type = cfgtew->u.cfgte64->res_type;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001172
1173 memcpy(&res->std_inq_data, &cfgtew->u.cfgte64->std_inq_data,
1174 sizeof(struct ipr_std_inq_data));
1175
1176 res->qmodel = IPR_QUEUEING_MODEL64(res);
1177 proto = cfgtew->u.cfgte64->proto;
1178 res->res_handle = cfgtew->u.cfgte64->res_handle;
1179 res->dev_id = cfgtew->u.cfgte64->dev_id;
1180
1181 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1182 sizeof(res->dev_lun.scsi_lun));
1183
1184 if (memcmp(res->res_path, &cfgtew->u.cfgte64->res_path,
1185 sizeof(res->res_path))) {
1186 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1187 sizeof(res->res_path));
1188 new_path = 1;
1189 }
1190
1191 if (res->sdev && new_path)
1192 sdev_printk(KERN_INFO, res->sdev, "Resource path: %s\n",
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001193 ipr_format_res_path(res->res_path, buffer,
1194 sizeof(buffer)));
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001195 } else {
1196 res->flags = cfgtew->u.cfgte->flags;
1197 if (res->flags & IPR_IS_IOA_RESOURCE)
1198 res->type = IPR_RES_TYPE_IOAFP;
1199 else
1200 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1201
1202 memcpy(&res->std_inq_data, &cfgtew->u.cfgte->std_inq_data,
1203 sizeof(struct ipr_std_inq_data));
1204
1205 res->qmodel = IPR_QUEUEING_MODEL(res);
1206 proto = cfgtew->u.cfgte->proto;
1207 res->res_handle = cfgtew->u.cfgte->res_handle;
1208 }
1209
1210 ipr_update_ata_class(res, proto);
1211}
1212
1213/**
1214 * ipr_clear_res_target - Clear the bit in the bit map representing the target
1215 * for the resource.
1216 * @res: resource entry struct
1217 * @cfgtew: config table entry wrapper struct
1218 *
1219 * Return value:
1220 * none
1221 **/
1222static void ipr_clear_res_target(struct ipr_resource_entry *res)
1223{
1224 struct ipr_resource_entry *gscsi_res = NULL;
1225 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1226
1227 if (!ioa_cfg->sis64)
1228 return;
1229
1230 if (res->bus == IPR_ARRAY_VIRTUAL_BUS)
1231 clear_bit(res->target, ioa_cfg->array_ids);
1232 else if (res->bus == IPR_VSET_VIRTUAL_BUS)
1233 clear_bit(res->target, ioa_cfg->vset_ids);
1234 else if (res->bus == 0 && res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1235 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue)
1236 if (gscsi_res->dev_id == res->dev_id && gscsi_res != res)
1237 return;
1238 clear_bit(res->target, ioa_cfg->target_ids);
1239
1240 } else if (res->bus == 0)
1241 clear_bit(res->target, ioa_cfg->target_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244/**
1245 * ipr_handle_config_change - Handle a config change from the adapter
1246 * @ioa_cfg: ioa config struct
1247 * @hostrcb: hostrcb
1248 *
1249 * Return value:
1250 * none
1251 **/
1252static void ipr_handle_config_change(struct ipr_ioa_cfg *ioa_cfg,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001253 struct ipr_hostrcb *hostrcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 struct ipr_resource_entry *res = NULL;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001256 struct ipr_config_table_entry_wrapper cfgtew;
1257 __be32 cc_res_handle;
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 u32 is_ndn = 1;
1260
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001261 if (ioa_cfg->sis64) {
1262 cfgtew.u.cfgte64 = &hostrcb->hcam.u.ccn.u.cfgte64;
1263 cc_res_handle = cfgtew.u.cfgte64->res_handle;
1264 } else {
1265 cfgtew.u.cfgte = &hostrcb->hcam.u.ccn.u.cfgte;
1266 cc_res_handle = cfgtew.u.cfgte->res_handle;
1267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001270 if (res->res_handle == cc_res_handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 is_ndn = 0;
1272 break;
1273 }
1274 }
1275
1276 if (is_ndn) {
1277 if (list_empty(&ioa_cfg->free_res_q)) {
1278 ipr_send_hcam(ioa_cfg,
1279 IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE,
1280 hostrcb);
1281 return;
1282 }
1283
1284 res = list_entry(ioa_cfg->free_res_q.next,
1285 struct ipr_resource_entry, queue);
1286
1287 list_del(&res->queue);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001288 ipr_init_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 list_add_tail(&res->queue, &ioa_cfg->used_res_q);
1290 }
1291
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001292 ipr_update_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 if (hostrcb->hcam.notify_type == IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY) {
1295 if (res->sdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 res->del_from_ml = 1;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001297 res->res_handle = IPR_INVALID_RES_HANDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (ioa_cfg->allow_ml_add_del)
1299 schedule_work(&ioa_cfg->work_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001300 } else {
1301 ipr_clear_res_target(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001303 }
Kleber Sacilotto de Souza5767a1c2011-02-14 20:19:31 -02001304 } else if (!res->sdev || res->del_from_ml) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 res->add_to_ml = 1;
1306 if (ioa_cfg->allow_ml_add_del)
1307 schedule_work(&ioa_cfg->work_q);
1308 }
1309
1310 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1311}
1312
1313/**
1314 * ipr_process_ccn - Op done function for a CCN.
1315 * @ipr_cmd: ipr command struct
1316 *
1317 * This function is the op done function for a configuration
1318 * change notification host controlled async from the adapter.
1319 *
1320 * Return value:
1321 * none
1322 **/
1323static void ipr_process_ccn(struct ipr_cmnd *ipr_cmd)
1324{
1325 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
1326 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07001327 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 list_del(&hostrcb->queue);
1330 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
1331
1332 if (ioasc) {
1333 if (ioasc != IPR_IOASC_IOA_WAS_RESET)
1334 dev_err(&ioa_cfg->pdev->dev,
1335 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
1336
1337 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1338 } else {
1339 ipr_handle_config_change(ioa_cfg, hostrcb);
1340 }
1341}
1342
1343/**
Brian King8cf093e2007-04-26 16:00:14 -05001344 * strip_and_pad_whitespace - Strip and pad trailing whitespace.
1345 * @i: index into buffer
1346 * @buf: string to modify
1347 *
1348 * This function will strip all trailing whitespace, pad the end
1349 * of the string with a single space, and NULL terminate the string.
1350 *
1351 * Return value:
1352 * new length of string
1353 **/
1354static int strip_and_pad_whitespace(int i, char *buf)
1355{
1356 while (i && buf[i] == ' ')
1357 i--;
1358 buf[i+1] = ' ';
1359 buf[i+2] = '\0';
1360 return i + 2;
1361}
1362
1363/**
1364 * ipr_log_vpd_compact - Log the passed extended VPD compactly.
1365 * @prefix: string to print at start of printk
1366 * @hostrcb: hostrcb pointer
1367 * @vpd: vendor/product id/sn struct
1368 *
1369 * Return value:
1370 * none
1371 **/
1372static void ipr_log_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1373 struct ipr_vpd *vpd)
1374{
1375 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN + IPR_SERIAL_NUM_LEN + 3];
1376 int i = 0;
1377
1378 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1379 i = strip_and_pad_whitespace(IPR_VENDOR_ID_LEN - 1, buffer);
1380
1381 memcpy(&buffer[i], vpd->vpids.product_id, IPR_PROD_ID_LEN);
1382 i = strip_and_pad_whitespace(i + IPR_PROD_ID_LEN - 1, buffer);
1383
1384 memcpy(&buffer[i], vpd->sn, IPR_SERIAL_NUM_LEN);
1385 buffer[IPR_SERIAL_NUM_LEN + i] = '\0';
1386
1387 ipr_hcam_err(hostrcb, "%s VPID/SN: %s\n", prefix, buffer);
1388}
1389
1390/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 * ipr_log_vpd - Log the passed VPD to the error log.
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001392 * @vpd: vendor/product id/sn struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 *
1394 * Return value:
1395 * none
1396 **/
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001397static void ipr_log_vpd(struct ipr_vpd *vpd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN
1400 + IPR_SERIAL_NUM_LEN];
1401
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001402 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1403 memcpy(buffer + IPR_VENDOR_ID_LEN, vpd->vpids.product_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 IPR_PROD_ID_LEN);
1405 buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN] = '\0';
1406 ipr_err("Vendor/Product ID: %s\n", buffer);
1407
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001408 memcpy(buffer, vpd->sn, IPR_SERIAL_NUM_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 buffer[IPR_SERIAL_NUM_LEN] = '\0';
1410 ipr_err(" Serial Number: %s\n", buffer);
1411}
1412
1413/**
Brian King8cf093e2007-04-26 16:00:14 -05001414 * ipr_log_ext_vpd_compact - Log the passed extended VPD compactly.
1415 * @prefix: string to print at start of printk
1416 * @hostrcb: hostrcb pointer
1417 * @vpd: vendor/product id/sn/wwn struct
1418 *
1419 * Return value:
1420 * none
1421 **/
1422static void ipr_log_ext_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1423 struct ipr_ext_vpd *vpd)
1424{
1425 ipr_log_vpd_compact(prefix, hostrcb, &vpd->vpd);
1426 ipr_hcam_err(hostrcb, "%s WWN: %08X%08X\n", prefix,
1427 be32_to_cpu(vpd->wwid[0]), be32_to_cpu(vpd->wwid[1]));
1428}
1429
1430/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001431 * ipr_log_ext_vpd - Log the passed extended VPD to the error log.
1432 * @vpd: vendor/product id/sn/wwn struct
1433 *
1434 * Return value:
1435 * none
1436 **/
1437static void ipr_log_ext_vpd(struct ipr_ext_vpd *vpd)
1438{
1439 ipr_log_vpd(&vpd->vpd);
1440 ipr_err(" WWN: %08X%08X\n", be32_to_cpu(vpd->wwid[0]),
1441 be32_to_cpu(vpd->wwid[1]));
1442}
1443
1444/**
1445 * ipr_log_enhanced_cache_error - Log a cache error.
1446 * @ioa_cfg: ioa config struct
1447 * @hostrcb: hostrcb struct
1448 *
1449 * Return value:
1450 * none
1451 **/
1452static void ipr_log_enhanced_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1453 struct ipr_hostrcb *hostrcb)
1454{
Wayne Boyer4565e372010-02-19 13:24:07 -08001455 struct ipr_hostrcb_type_12_error *error;
1456
1457 if (ioa_cfg->sis64)
1458 error = &hostrcb->hcam.u.error64.u.type_12_error;
1459 else
1460 error = &hostrcb->hcam.u.error.u.type_12_error;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001461
1462 ipr_err("-----Current Configuration-----\n");
1463 ipr_err("Cache Directory Card Information:\n");
1464 ipr_log_ext_vpd(&error->ioa_vpd);
1465 ipr_err("Adapter Card Information:\n");
1466 ipr_log_ext_vpd(&error->cfc_vpd);
1467
1468 ipr_err("-----Expected Configuration-----\n");
1469 ipr_err("Cache Directory Card Information:\n");
1470 ipr_log_ext_vpd(&error->ioa_last_attached_to_cfc_vpd);
1471 ipr_err("Adapter Card Information:\n");
1472 ipr_log_ext_vpd(&error->cfc_last_attached_to_ioa_vpd);
1473
1474 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1475 be32_to_cpu(error->ioa_data[0]),
1476 be32_to_cpu(error->ioa_data[1]),
1477 be32_to_cpu(error->ioa_data[2]));
1478}
1479
1480/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 * ipr_log_cache_error - Log a cache error.
1482 * @ioa_cfg: ioa config struct
1483 * @hostrcb: hostrcb struct
1484 *
1485 * Return value:
1486 * none
1487 **/
1488static void ipr_log_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1489 struct ipr_hostrcb *hostrcb)
1490{
1491 struct ipr_hostrcb_type_02_error *error =
1492 &hostrcb->hcam.u.error.u.type_02_error;
1493
1494 ipr_err("-----Current Configuration-----\n");
1495 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001496 ipr_log_vpd(&error->ioa_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001498 ipr_log_vpd(&error->cfc_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 ipr_err("-----Expected Configuration-----\n");
1501 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001502 ipr_log_vpd(&error->ioa_last_attached_to_cfc_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001504 ipr_log_vpd(&error->cfc_last_attached_to_ioa_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1507 be32_to_cpu(error->ioa_data[0]),
1508 be32_to_cpu(error->ioa_data[1]),
1509 be32_to_cpu(error->ioa_data[2]));
1510}
1511
1512/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001513 * ipr_log_enhanced_config_error - Log a configuration error.
1514 * @ioa_cfg: ioa config struct
1515 * @hostrcb: hostrcb struct
1516 *
1517 * Return value:
1518 * none
1519 **/
1520static void ipr_log_enhanced_config_error(struct ipr_ioa_cfg *ioa_cfg,
1521 struct ipr_hostrcb *hostrcb)
1522{
1523 int errors_logged, i;
1524 struct ipr_hostrcb_device_data_entry_enhanced *dev_entry;
1525 struct ipr_hostrcb_type_13_error *error;
1526
1527 error = &hostrcb->hcam.u.error.u.type_13_error;
1528 errors_logged = be32_to_cpu(error->errors_logged);
1529
1530 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1531 be32_to_cpu(error->errors_detected), errors_logged);
1532
1533 dev_entry = error->dev;
1534
1535 for (i = 0; i < errors_logged; i++, dev_entry++) {
1536 ipr_err_separator;
1537
1538 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
1539 ipr_log_ext_vpd(&dev_entry->vpd);
1540
1541 ipr_err("-----New Device Information-----\n");
1542 ipr_log_ext_vpd(&dev_entry->new_vpd);
1543
1544 ipr_err("Cache Directory Card Information:\n");
1545 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1546
1547 ipr_err("Adapter Card Information:\n");
1548 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1549 }
1550}
1551
1552/**
Wayne Boyer4565e372010-02-19 13:24:07 -08001553 * ipr_log_sis64_config_error - Log a device error.
1554 * @ioa_cfg: ioa config struct
1555 * @hostrcb: hostrcb struct
1556 *
1557 * Return value:
1558 * none
1559 **/
1560static void ipr_log_sis64_config_error(struct ipr_ioa_cfg *ioa_cfg,
1561 struct ipr_hostrcb *hostrcb)
1562{
1563 int errors_logged, i;
1564 struct ipr_hostrcb64_device_data_entry_enhanced *dev_entry;
1565 struct ipr_hostrcb_type_23_error *error;
1566 char buffer[IPR_MAX_RES_PATH_LENGTH];
1567
1568 error = &hostrcb->hcam.u.error64.u.type_23_error;
1569 errors_logged = be32_to_cpu(error->errors_logged);
1570
1571 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1572 be32_to_cpu(error->errors_detected), errors_logged);
1573
1574 dev_entry = error->dev;
1575
1576 for (i = 0; i < errors_logged; i++, dev_entry++) {
1577 ipr_err_separator;
1578
1579 ipr_err("Device %d : %s", i + 1,
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001580 ipr_format_res_path(dev_entry->res_path, buffer,
1581 sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08001582 ipr_log_ext_vpd(&dev_entry->vpd);
1583
1584 ipr_err("-----New Device Information-----\n");
1585 ipr_log_ext_vpd(&dev_entry->new_vpd);
1586
1587 ipr_err("Cache Directory Card Information:\n");
1588 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1589
1590 ipr_err("Adapter Card Information:\n");
1591 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1592 }
1593}
1594
1595/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 * ipr_log_config_error - Log a configuration error.
1597 * @ioa_cfg: ioa config struct
1598 * @hostrcb: hostrcb struct
1599 *
1600 * Return value:
1601 * none
1602 **/
1603static void ipr_log_config_error(struct ipr_ioa_cfg *ioa_cfg,
1604 struct ipr_hostrcb *hostrcb)
1605{
1606 int errors_logged, i;
1607 struct ipr_hostrcb_device_data_entry *dev_entry;
1608 struct ipr_hostrcb_type_03_error *error;
1609
1610 error = &hostrcb->hcam.u.error.u.type_03_error;
1611 errors_logged = be32_to_cpu(error->errors_logged);
1612
1613 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1614 be32_to_cpu(error->errors_detected), errors_logged);
1615
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001616 dev_entry = error->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 for (i = 0; i < errors_logged; i++, dev_entry++) {
1619 ipr_err_separator;
1620
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001621 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001622 ipr_log_vpd(&dev_entry->vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 ipr_err("-----New Device Information-----\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001625 ipr_log_vpd(&dev_entry->new_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001628 ipr_log_vpd(&dev_entry->ioa_last_with_dev_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001631 ipr_log_vpd(&dev_entry->cfc_last_with_dev_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 ipr_err("Additional IOA Data: %08X %08X %08X %08X %08X\n",
1634 be32_to_cpu(dev_entry->ioa_data[0]),
1635 be32_to_cpu(dev_entry->ioa_data[1]),
1636 be32_to_cpu(dev_entry->ioa_data[2]),
1637 be32_to_cpu(dev_entry->ioa_data[3]),
1638 be32_to_cpu(dev_entry->ioa_data[4]));
1639 }
1640}
1641
1642/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001643 * ipr_log_enhanced_array_error - Log an array configuration error.
1644 * @ioa_cfg: ioa config struct
1645 * @hostrcb: hostrcb struct
1646 *
1647 * Return value:
1648 * none
1649 **/
1650static void ipr_log_enhanced_array_error(struct ipr_ioa_cfg *ioa_cfg,
1651 struct ipr_hostrcb *hostrcb)
1652{
1653 int i, num_entries;
1654 struct ipr_hostrcb_type_14_error *error;
1655 struct ipr_hostrcb_array_data_entry_enhanced *array_entry;
1656 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1657
1658 error = &hostrcb->hcam.u.error.u.type_14_error;
1659
1660 ipr_err_separator;
1661
1662 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1663 error->protection_level,
1664 ioa_cfg->host->host_no,
1665 error->last_func_vset_res_addr.bus,
1666 error->last_func_vset_res_addr.target,
1667 error->last_func_vset_res_addr.lun);
1668
1669 ipr_err_separator;
1670
1671 array_entry = error->array_member;
1672 num_entries = min_t(u32, be32_to_cpu(error->num_entries),
Wayne Boyer72620262010-09-27 10:45:28 -07001673 ARRAY_SIZE(error->array_member));
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001674
1675 for (i = 0; i < num_entries; i++, array_entry++) {
1676 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
1677 continue;
1678
1679 if (be32_to_cpu(error->exposed_mode_adn) == i)
1680 ipr_err("Exposed Array Member %d:\n", i);
1681 else
1682 ipr_err("Array Member %d:\n", i);
1683
1684 ipr_log_ext_vpd(&array_entry->vpd);
1685 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1686 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1687 "Expected Location");
1688
1689 ipr_err_separator;
1690 }
1691}
1692
1693/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 * ipr_log_array_error - Log an array configuration error.
1695 * @ioa_cfg: ioa config struct
1696 * @hostrcb: hostrcb struct
1697 *
1698 * Return value:
1699 * none
1700 **/
1701static void ipr_log_array_error(struct ipr_ioa_cfg *ioa_cfg,
1702 struct ipr_hostrcb *hostrcb)
1703{
1704 int i;
1705 struct ipr_hostrcb_type_04_error *error;
1706 struct ipr_hostrcb_array_data_entry *array_entry;
1707 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1708
1709 error = &hostrcb->hcam.u.error.u.type_04_error;
1710
1711 ipr_err_separator;
1712
1713 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1714 error->protection_level,
1715 ioa_cfg->host->host_no,
1716 error->last_func_vset_res_addr.bus,
1717 error->last_func_vset_res_addr.target,
1718 error->last_func_vset_res_addr.lun);
1719
1720 ipr_err_separator;
1721
1722 array_entry = error->array_member;
1723
1724 for (i = 0; i < 18; i++) {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001725 if (!memcmp(array_entry->vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 continue;
1727
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001728 if (be32_to_cpu(error->exposed_mode_adn) == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 ipr_err("Exposed Array Member %d:\n", i);
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001730 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 ipr_err("Array Member %d:\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001733 ipr_log_vpd(&array_entry->vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001735 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1736 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1737 "Expected Location");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 ipr_err_separator;
1740
1741 if (i == 9)
1742 array_entry = error->array_member2;
1743 else
1744 array_entry++;
1745 }
1746}
1747
1748/**
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001749 * ipr_log_hex_data - Log additional hex IOA error data.
Brian Kingac719ab2006-11-21 10:28:42 -06001750 * @ioa_cfg: ioa config struct
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001751 * @data: IOA error data
1752 * @len: data length
1753 *
1754 * Return value:
1755 * none
1756 **/
Brian Kingac719ab2006-11-21 10:28:42 -06001757static void ipr_log_hex_data(struct ipr_ioa_cfg *ioa_cfg, u32 *data, int len)
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001758{
1759 int i;
1760
1761 if (len == 0)
1762 return;
1763
Brian Kingac719ab2006-11-21 10:28:42 -06001764 if (ioa_cfg->log_level <= IPR_DEFAULT_LOG_LEVEL)
1765 len = min_t(int, len, IPR_DEFAULT_MAX_ERROR_DUMP);
1766
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001767 for (i = 0; i < len / 4; i += 4) {
1768 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
1769 be32_to_cpu(data[i]),
1770 be32_to_cpu(data[i+1]),
1771 be32_to_cpu(data[i+2]),
1772 be32_to_cpu(data[i+3]));
1773 }
1774}
1775
1776/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001777 * ipr_log_enhanced_dual_ioa_error - Log an enhanced dual adapter error.
1778 * @ioa_cfg: ioa config struct
1779 * @hostrcb: hostrcb struct
1780 *
1781 * Return value:
1782 * none
1783 **/
1784static void ipr_log_enhanced_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1785 struct ipr_hostrcb *hostrcb)
1786{
1787 struct ipr_hostrcb_type_17_error *error;
1788
Wayne Boyer4565e372010-02-19 13:24:07 -08001789 if (ioa_cfg->sis64)
1790 error = &hostrcb->hcam.u.error64.u.type_17_error;
1791 else
1792 error = &hostrcb->hcam.u.error.u.type_17_error;
1793
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001794 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -08001795 strim(error->failure_reason);
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001796
Brian King8cf093e2007-04-26 16:00:14 -05001797 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1798 be32_to_cpu(hostrcb->hcam.u.error.prc));
1799 ipr_log_ext_vpd_compact("Remote IOA", hostrcb, &error->vpd);
Brian Kingac719ab2006-11-21 10:28:42 -06001800 ipr_log_hex_data(ioa_cfg, error->data,
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001801 be32_to_cpu(hostrcb->hcam.length) -
1802 (offsetof(struct ipr_hostrcb_error, u) +
1803 offsetof(struct ipr_hostrcb_type_17_error, data)));
1804}
1805
1806/**
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001807 * ipr_log_dual_ioa_error - Log a dual adapter error.
1808 * @ioa_cfg: ioa config struct
1809 * @hostrcb: hostrcb struct
1810 *
1811 * Return value:
1812 * none
1813 **/
1814static void ipr_log_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1815 struct ipr_hostrcb *hostrcb)
1816{
1817 struct ipr_hostrcb_type_07_error *error;
1818
1819 error = &hostrcb->hcam.u.error.u.type_07_error;
1820 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -08001821 strim(error->failure_reason);
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001822
Brian King8cf093e2007-04-26 16:00:14 -05001823 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1824 be32_to_cpu(hostrcb->hcam.u.error.prc));
1825 ipr_log_vpd_compact("Remote IOA", hostrcb, &error->vpd);
Brian Kingac719ab2006-11-21 10:28:42 -06001826 ipr_log_hex_data(ioa_cfg, error->data,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001827 be32_to_cpu(hostrcb->hcam.length) -
1828 (offsetof(struct ipr_hostrcb_error, u) +
1829 offsetof(struct ipr_hostrcb_type_07_error, data)));
1830}
1831
Brian King49dc6a12006-11-21 10:28:35 -06001832static const struct {
1833 u8 active;
1834 char *desc;
1835} path_active_desc[] = {
1836 { IPR_PATH_NO_INFO, "Path" },
1837 { IPR_PATH_ACTIVE, "Active path" },
1838 { IPR_PATH_NOT_ACTIVE, "Inactive path" }
1839};
1840
1841static const struct {
1842 u8 state;
1843 char *desc;
1844} path_state_desc[] = {
1845 { IPR_PATH_STATE_NO_INFO, "has no path state information available" },
1846 { IPR_PATH_HEALTHY, "is healthy" },
1847 { IPR_PATH_DEGRADED, "is degraded" },
1848 { IPR_PATH_FAILED, "is failed" }
1849};
1850
1851/**
1852 * ipr_log_fabric_path - Log a fabric path error
1853 * @hostrcb: hostrcb struct
1854 * @fabric: fabric descriptor
1855 *
1856 * Return value:
1857 * none
1858 **/
1859static void ipr_log_fabric_path(struct ipr_hostrcb *hostrcb,
1860 struct ipr_hostrcb_fabric_desc *fabric)
1861{
1862 int i, j;
1863 u8 path_state = fabric->path_state;
1864 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
1865 u8 state = path_state & IPR_PATH_STATE_MASK;
1866
1867 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
1868 if (path_active_desc[i].active != active)
1869 continue;
1870
1871 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
1872 if (path_state_desc[j].state != state)
1873 continue;
1874
1875 if (fabric->cascaded_expander == 0xff && fabric->phy == 0xff) {
1876 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d\n",
1877 path_active_desc[i].desc, path_state_desc[j].desc,
1878 fabric->ioa_port);
1879 } else if (fabric->cascaded_expander == 0xff) {
1880 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Phy=%d\n",
1881 path_active_desc[i].desc, path_state_desc[j].desc,
1882 fabric->ioa_port, fabric->phy);
1883 } else if (fabric->phy == 0xff) {
1884 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d\n",
1885 path_active_desc[i].desc, path_state_desc[j].desc,
1886 fabric->ioa_port, fabric->cascaded_expander);
1887 } else {
1888 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d, Phy=%d\n",
1889 path_active_desc[i].desc, path_state_desc[j].desc,
1890 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
1891 }
1892 return;
1893 }
1894 }
1895
1896 ipr_err("Path state=%02X IOA Port=%d Cascade=%d Phy=%d\n", path_state,
1897 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
1898}
1899
Wayne Boyer4565e372010-02-19 13:24:07 -08001900/**
1901 * ipr_log64_fabric_path - Log a fabric path error
1902 * @hostrcb: hostrcb struct
1903 * @fabric: fabric descriptor
1904 *
1905 * Return value:
1906 * none
1907 **/
1908static void ipr_log64_fabric_path(struct ipr_hostrcb *hostrcb,
1909 struct ipr_hostrcb64_fabric_desc *fabric)
1910{
1911 int i, j;
1912 u8 path_state = fabric->path_state;
1913 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
1914 u8 state = path_state & IPR_PATH_STATE_MASK;
1915 char buffer[IPR_MAX_RES_PATH_LENGTH];
1916
1917 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
1918 if (path_active_desc[i].active != active)
1919 continue;
1920
1921 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
1922 if (path_state_desc[j].state != state)
1923 continue;
1924
1925 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s\n",
1926 path_active_desc[i].desc, path_state_desc[j].desc,
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001927 ipr_format_res_path(fabric->res_path, buffer,
1928 sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08001929 return;
1930 }
1931 }
1932
1933 ipr_err("Path state=%02X Resource Path=%s\n", path_state,
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001934 ipr_format_res_path(fabric->res_path, buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08001935}
1936
Brian King49dc6a12006-11-21 10:28:35 -06001937static const struct {
1938 u8 type;
1939 char *desc;
1940} path_type_desc[] = {
1941 { IPR_PATH_CFG_IOA_PORT, "IOA port" },
1942 { IPR_PATH_CFG_EXP_PORT, "Expander port" },
1943 { IPR_PATH_CFG_DEVICE_PORT, "Device port" },
1944 { IPR_PATH_CFG_DEVICE_LUN, "Device LUN" }
1945};
1946
1947static const struct {
1948 u8 status;
1949 char *desc;
1950} path_status_desc[] = {
1951 { IPR_PATH_CFG_NO_PROB, "Functional" },
1952 { IPR_PATH_CFG_DEGRADED, "Degraded" },
1953 { IPR_PATH_CFG_FAILED, "Failed" },
1954 { IPR_PATH_CFG_SUSPECT, "Suspect" },
1955 { IPR_PATH_NOT_DETECTED, "Missing" },
1956 { IPR_PATH_INCORRECT_CONN, "Incorrectly connected" }
1957};
1958
1959static const char *link_rate[] = {
1960 "unknown",
1961 "disabled",
1962 "phy reset problem",
1963 "spinup hold",
1964 "port selector",
1965 "unknown",
1966 "unknown",
1967 "unknown",
1968 "1.5Gbps",
1969 "3.0Gbps",
1970 "unknown",
1971 "unknown",
1972 "unknown",
1973 "unknown",
1974 "unknown",
1975 "unknown"
1976};
1977
1978/**
1979 * ipr_log_path_elem - Log a fabric path element.
1980 * @hostrcb: hostrcb struct
1981 * @cfg: fabric path element struct
1982 *
1983 * Return value:
1984 * none
1985 **/
1986static void ipr_log_path_elem(struct ipr_hostrcb *hostrcb,
1987 struct ipr_hostrcb_config_element *cfg)
1988{
1989 int i, j;
1990 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
1991 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
1992
1993 if (type == IPR_PATH_CFG_NOT_EXIST)
1994 return;
1995
1996 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
1997 if (path_type_desc[i].type != type)
1998 continue;
1999
2000 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2001 if (path_status_desc[j].status != status)
2002 continue;
2003
2004 if (type == IPR_PATH_CFG_IOA_PORT) {
2005 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, WWN=%08X%08X\n",
2006 path_status_desc[j].desc, path_type_desc[i].desc,
2007 cfg->phy, link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2008 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2009 } else {
2010 if (cfg->cascaded_expander == 0xff && cfg->phy == 0xff) {
2011 ipr_hcam_err(hostrcb, "%s %s: Link rate=%s, WWN=%08X%08X\n",
2012 path_status_desc[j].desc, path_type_desc[i].desc,
2013 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2014 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2015 } else if (cfg->cascaded_expander == 0xff) {
2016 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, "
2017 "WWN=%08X%08X\n", path_status_desc[j].desc,
2018 path_type_desc[i].desc, cfg->phy,
2019 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2020 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2021 } else if (cfg->phy == 0xff) {
2022 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Link rate=%s, "
2023 "WWN=%08X%08X\n", path_status_desc[j].desc,
2024 path_type_desc[i].desc, cfg->cascaded_expander,
2025 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2026 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2027 } else {
2028 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Phy=%d, Link rate=%s "
2029 "WWN=%08X%08X\n", path_status_desc[j].desc,
2030 path_type_desc[i].desc, cfg->cascaded_expander, cfg->phy,
2031 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2032 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2033 }
2034 }
2035 return;
2036 }
2037 }
2038
2039 ipr_hcam_err(hostrcb, "Path element=%02X: Cascade=%d Phy=%d Link rate=%s "
2040 "WWN=%08X%08X\n", cfg->type_status, cfg->cascaded_expander, cfg->phy,
2041 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2042 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2043}
2044
2045/**
Wayne Boyer4565e372010-02-19 13:24:07 -08002046 * ipr_log64_path_elem - Log a fabric path element.
2047 * @hostrcb: hostrcb struct
2048 * @cfg: fabric path element struct
2049 *
2050 * Return value:
2051 * none
2052 **/
2053static void ipr_log64_path_elem(struct ipr_hostrcb *hostrcb,
2054 struct ipr_hostrcb64_config_element *cfg)
2055{
2056 int i, j;
2057 u8 desc_id = cfg->descriptor_id & IPR_DESCRIPTOR_MASK;
2058 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
2059 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
2060 char buffer[IPR_MAX_RES_PATH_LENGTH];
2061
2062 if (type == IPR_PATH_CFG_NOT_EXIST || desc_id != IPR_DESCRIPTOR_SIS64)
2063 return;
2064
2065 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2066 if (path_type_desc[i].type != type)
2067 continue;
2068
2069 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2070 if (path_status_desc[j].status != status)
2071 continue;
2072
2073 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s, Link rate=%s, WWN=%08X%08X\n",
2074 path_status_desc[j].desc, path_type_desc[i].desc,
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07002075 ipr_format_res_path(cfg->res_path, buffer,
2076 sizeof(buffer)),
Wayne Boyer4565e372010-02-19 13:24:07 -08002077 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2078 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2079 return;
2080 }
2081 }
2082 ipr_hcam_err(hostrcb, "Path element=%02X: Resource Path=%s, Link rate=%s "
2083 "WWN=%08X%08X\n", cfg->type_status,
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07002084 ipr_format_res_path(cfg->res_path, buffer, sizeof(buffer)),
Wayne Boyer4565e372010-02-19 13:24:07 -08002085 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2086 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2087}
2088
2089/**
Brian King49dc6a12006-11-21 10:28:35 -06002090 * ipr_log_fabric_error - Log a fabric error.
2091 * @ioa_cfg: ioa config struct
2092 * @hostrcb: hostrcb struct
2093 *
2094 * Return value:
2095 * none
2096 **/
2097static void ipr_log_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2098 struct ipr_hostrcb *hostrcb)
2099{
2100 struct ipr_hostrcb_type_20_error *error;
2101 struct ipr_hostrcb_fabric_desc *fabric;
2102 struct ipr_hostrcb_config_element *cfg;
2103 int i, add_len;
2104
2105 error = &hostrcb->hcam.u.error.u.type_20_error;
2106 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2107 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2108
2109 add_len = be32_to_cpu(hostrcb->hcam.length) -
2110 (offsetof(struct ipr_hostrcb_error, u) +
2111 offsetof(struct ipr_hostrcb_type_20_error, desc));
2112
2113 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2114 ipr_log_fabric_path(hostrcb, fabric);
2115 for_each_fabric_cfg(fabric, cfg)
2116 ipr_log_path_elem(hostrcb, cfg);
2117
2118 add_len -= be16_to_cpu(fabric->length);
2119 fabric = (struct ipr_hostrcb_fabric_desc *)
2120 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2121 }
2122
Brian Kingac719ab2006-11-21 10:28:42 -06002123 ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
Brian King49dc6a12006-11-21 10:28:35 -06002124}
2125
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002126/**
Wayne Boyer4565e372010-02-19 13:24:07 -08002127 * ipr_log_sis64_array_error - Log a sis64 array error.
2128 * @ioa_cfg: ioa config struct
2129 * @hostrcb: hostrcb struct
2130 *
2131 * Return value:
2132 * none
2133 **/
2134static void ipr_log_sis64_array_error(struct ipr_ioa_cfg *ioa_cfg,
2135 struct ipr_hostrcb *hostrcb)
2136{
2137 int i, num_entries;
2138 struct ipr_hostrcb_type_24_error *error;
2139 struct ipr_hostrcb64_array_data_entry *array_entry;
2140 char buffer[IPR_MAX_RES_PATH_LENGTH];
2141 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
2142
2143 error = &hostrcb->hcam.u.error64.u.type_24_error;
2144
2145 ipr_err_separator;
2146
2147 ipr_err("RAID %s Array Configuration: %s\n",
2148 error->protection_level,
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07002149 ipr_format_res_path(error->last_res_path, buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002150
2151 ipr_err_separator;
2152
2153 array_entry = error->array_member;
Wayne Boyer72620262010-09-27 10:45:28 -07002154 num_entries = min_t(u32, error->num_entries,
2155 ARRAY_SIZE(error->array_member));
Wayne Boyer4565e372010-02-19 13:24:07 -08002156
2157 for (i = 0; i < num_entries; i++, array_entry++) {
2158
2159 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
2160 continue;
2161
2162 if (error->exposed_mode_adn == i)
2163 ipr_err("Exposed Array Member %d:\n", i);
2164 else
2165 ipr_err("Array Member %d:\n", i);
2166
2167 ipr_err("Array Member %d:\n", i);
2168 ipr_log_ext_vpd(&array_entry->vpd);
Wayne Boyer72620262010-09-27 10:45:28 -07002169 ipr_err("Current Location: %s\n",
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07002170 ipr_format_res_path(array_entry->res_path, buffer,
2171 sizeof(buffer)));
Wayne Boyer72620262010-09-27 10:45:28 -07002172 ipr_err("Expected Location: %s\n",
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07002173 ipr_format_res_path(array_entry->expected_res_path,
2174 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002175
2176 ipr_err_separator;
2177 }
2178}
2179
2180/**
2181 * ipr_log_sis64_fabric_error - Log a sis64 fabric error.
2182 * @ioa_cfg: ioa config struct
2183 * @hostrcb: hostrcb struct
2184 *
2185 * Return value:
2186 * none
2187 **/
2188static void ipr_log_sis64_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2189 struct ipr_hostrcb *hostrcb)
2190{
2191 struct ipr_hostrcb_type_30_error *error;
2192 struct ipr_hostrcb64_fabric_desc *fabric;
2193 struct ipr_hostrcb64_config_element *cfg;
2194 int i, add_len;
2195
2196 error = &hostrcb->hcam.u.error64.u.type_30_error;
2197
2198 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2199 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2200
2201 add_len = be32_to_cpu(hostrcb->hcam.length) -
2202 (offsetof(struct ipr_hostrcb64_error, u) +
2203 offsetof(struct ipr_hostrcb_type_30_error, desc));
2204
2205 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2206 ipr_log64_fabric_path(hostrcb, fabric);
2207 for_each_fabric_cfg(fabric, cfg)
2208 ipr_log64_path_elem(hostrcb, cfg);
2209
2210 add_len -= be16_to_cpu(fabric->length);
2211 fabric = (struct ipr_hostrcb64_fabric_desc *)
2212 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2213 }
2214
2215 ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
2216}
2217
2218/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 * ipr_log_generic_error - Log an adapter error.
2220 * @ioa_cfg: ioa config struct
2221 * @hostrcb: hostrcb struct
2222 *
2223 * Return value:
2224 * none
2225 **/
2226static void ipr_log_generic_error(struct ipr_ioa_cfg *ioa_cfg,
2227 struct ipr_hostrcb *hostrcb)
2228{
Brian Kingac719ab2006-11-21 10:28:42 -06002229 ipr_log_hex_data(ioa_cfg, hostrcb->hcam.u.raw.data,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002230 be32_to_cpu(hostrcb->hcam.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231}
2232
2233/**
2234 * ipr_get_error - Find the specfied IOASC in the ipr_error_table.
2235 * @ioasc: IOASC
2236 *
2237 * This function will return the index of into the ipr_error_table
2238 * for the specified IOASC. If the IOASC is not in the table,
2239 * 0 will be returned, which points to the entry used for unknown errors.
2240 *
2241 * Return value:
2242 * index into the ipr_error_table
2243 **/
2244static u32 ipr_get_error(u32 ioasc)
2245{
2246 int i;
2247
2248 for (i = 0; i < ARRAY_SIZE(ipr_error_table); i++)
Brian King35a39692006-09-25 12:39:20 -05002249 if (ipr_error_table[i].ioasc == (ioasc & IPR_IOASC_IOASC_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return i;
2251
2252 return 0;
2253}
2254
2255/**
2256 * ipr_handle_log_data - Log an adapter error.
2257 * @ioa_cfg: ioa config struct
2258 * @hostrcb: hostrcb struct
2259 *
2260 * This function logs an adapter error to the system.
2261 *
2262 * Return value:
2263 * none
2264 **/
2265static void ipr_handle_log_data(struct ipr_ioa_cfg *ioa_cfg,
2266 struct ipr_hostrcb *hostrcb)
2267{
2268 u32 ioasc;
2269 int error_index;
2270
2271 if (hostrcb->hcam.notify_type != IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY)
2272 return;
2273
2274 if (hostrcb->hcam.notifications_lost == IPR_HOST_RCB_NOTIFICATIONS_LOST)
2275 dev_err(&ioa_cfg->pdev->dev, "Error notifications lost\n");
2276
Wayne Boyer4565e372010-02-19 13:24:07 -08002277 if (ioa_cfg->sis64)
2278 ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2279 else
2280 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Wayne Boyer4565e372010-02-19 13:24:07 -08002282 if (!ioa_cfg->sis64 && (ioasc == IPR_IOASC_BUS_WAS_RESET ||
2283 ioasc == IPR_IOASC_BUS_WAS_RESET_BY_OTHER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 /* Tell the midlayer we had a bus reset so it will handle the UA properly */
2285 scsi_report_bus_reset(ioa_cfg->host,
Wayne Boyer4565e372010-02-19 13:24:07 -08002286 hostrcb->hcam.u.error.fd_res_addr.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
2288
2289 error_index = ipr_get_error(ioasc);
2290
2291 if (!ipr_error_table[error_index].log_hcam)
2292 return;
2293
Brian King49dc6a12006-11-21 10:28:35 -06002294 ipr_hcam_err(hostrcb, "%s\n", ipr_error_table[error_index].error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 /* Set indication we have logged an error */
2297 ioa_cfg->errors_logged++;
2298
Brian King933916f2007-03-29 12:43:30 -05002299 if (ioa_cfg->log_level < ipr_error_table[error_index].log_hcam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 return;
brking@us.ibm.comcf852032005-11-01 17:00:47 -06002301 if (be32_to_cpu(hostrcb->hcam.length) > sizeof(hostrcb->hcam.u.raw))
2302 hostrcb->hcam.length = cpu_to_be32(sizeof(hostrcb->hcam.u.raw));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 switch (hostrcb->hcam.overlay_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 case IPR_HOST_RCB_OVERLAY_ID_2:
2306 ipr_log_cache_error(ioa_cfg, hostrcb);
2307 break;
2308 case IPR_HOST_RCB_OVERLAY_ID_3:
2309 ipr_log_config_error(ioa_cfg, hostrcb);
2310 break;
2311 case IPR_HOST_RCB_OVERLAY_ID_4:
2312 case IPR_HOST_RCB_OVERLAY_ID_6:
2313 ipr_log_array_error(ioa_cfg, hostrcb);
2314 break;
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002315 case IPR_HOST_RCB_OVERLAY_ID_7:
2316 ipr_log_dual_ioa_error(ioa_cfg, hostrcb);
2317 break;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06002318 case IPR_HOST_RCB_OVERLAY_ID_12:
2319 ipr_log_enhanced_cache_error(ioa_cfg, hostrcb);
2320 break;
2321 case IPR_HOST_RCB_OVERLAY_ID_13:
2322 ipr_log_enhanced_config_error(ioa_cfg, hostrcb);
2323 break;
2324 case IPR_HOST_RCB_OVERLAY_ID_14:
2325 case IPR_HOST_RCB_OVERLAY_ID_16:
2326 ipr_log_enhanced_array_error(ioa_cfg, hostrcb);
2327 break;
2328 case IPR_HOST_RCB_OVERLAY_ID_17:
2329 ipr_log_enhanced_dual_ioa_error(ioa_cfg, hostrcb);
2330 break;
Brian King49dc6a12006-11-21 10:28:35 -06002331 case IPR_HOST_RCB_OVERLAY_ID_20:
2332 ipr_log_fabric_error(ioa_cfg, hostrcb);
2333 break;
Wayne Boyer4565e372010-02-19 13:24:07 -08002334 case IPR_HOST_RCB_OVERLAY_ID_23:
2335 ipr_log_sis64_config_error(ioa_cfg, hostrcb);
2336 break;
2337 case IPR_HOST_RCB_OVERLAY_ID_24:
2338 case IPR_HOST_RCB_OVERLAY_ID_26:
2339 ipr_log_sis64_array_error(ioa_cfg, hostrcb);
2340 break;
2341 case IPR_HOST_RCB_OVERLAY_ID_30:
2342 ipr_log_sis64_fabric_error(ioa_cfg, hostrcb);
2343 break;
brking@us.ibm.comcf852032005-11-01 17:00:47 -06002344 case IPR_HOST_RCB_OVERLAY_ID_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 case IPR_HOST_RCB_OVERLAY_ID_DEFAULT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 default:
brking@us.ibm.coma9cfca92005-11-01 17:00:41 -06002347 ipr_log_generic_error(ioa_cfg, hostrcb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 break;
2349 }
2350}
2351
2352/**
2353 * ipr_process_error - Op done function for an adapter error log.
2354 * @ipr_cmd: ipr command struct
2355 *
2356 * This function is the op done function for an error log host
2357 * controlled async from the adapter. It will log the error and
2358 * send the HCAM back to the adapter.
2359 *
2360 * Return value:
2361 * none
2362 **/
2363static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
2364{
2365 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2366 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07002367 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Wayne Boyer4565e372010-02-19 13:24:07 -08002368 u32 fd_ioasc;
2369
2370 if (ioa_cfg->sis64)
2371 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2372 else
2373 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 list_del(&hostrcb->queue);
2376 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
2377
2378 if (!ioasc) {
2379 ipr_handle_log_data(ioa_cfg, hostrcb);
Brian King65f56472007-04-26 16:00:12 -05002380 if (fd_ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED)
2381 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_ABBREV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 } else if (ioasc != IPR_IOASC_IOA_WAS_RESET) {
2383 dev_err(&ioa_cfg->pdev->dev,
2384 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
2385 }
2386
2387 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
2388}
2389
2390/**
2391 * ipr_timeout - An internally generated op has timed out.
2392 * @ipr_cmd: ipr command struct
2393 *
2394 * This function blocks host requests and initiates an
2395 * adapter reset.
2396 *
2397 * Return value:
2398 * none
2399 **/
2400static void ipr_timeout(struct ipr_cmnd *ipr_cmd)
2401{
2402 unsigned long lock_flags = 0;
2403 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2404
2405 ENTER;
2406 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2407
2408 ioa_cfg->errors_logged++;
2409 dev_err(&ioa_cfg->pdev->dev,
2410 "Adapter being reset due to command timeout.\n");
2411
2412 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2413 ioa_cfg->sdt_state = GET_DUMP;
2414
2415 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd)
2416 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2417
2418 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2419 LEAVE;
2420}
2421
2422/**
2423 * ipr_oper_timeout - Adapter timed out transitioning to operational
2424 * @ipr_cmd: ipr command struct
2425 *
2426 * This function blocks host requests and initiates an
2427 * adapter reset.
2428 *
2429 * Return value:
2430 * none
2431 **/
2432static void ipr_oper_timeout(struct ipr_cmnd *ipr_cmd)
2433{
2434 unsigned long lock_flags = 0;
2435 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2436
2437 ENTER;
2438 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2439
2440 ioa_cfg->errors_logged++;
2441 dev_err(&ioa_cfg->pdev->dev,
2442 "Adapter timed out transitioning to operational.\n");
2443
2444 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2445 ioa_cfg->sdt_state = GET_DUMP;
2446
2447 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd) {
2448 if (ipr_fastfail)
2449 ioa_cfg->reset_retries += IPR_NUM_RESET_RELOAD_RETRIES;
2450 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2451 }
2452
2453 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2454 LEAVE;
2455}
2456
2457/**
2458 * ipr_reset_reload - Reset/Reload the IOA
2459 * @ioa_cfg: ioa config struct
2460 * @shutdown_type: shutdown type
2461 *
2462 * This function resets the adapter and re-initializes it.
2463 * This function assumes that all new host commands have been stopped.
2464 * Return value:
2465 * SUCCESS / FAILED
2466 **/
2467static int ipr_reset_reload(struct ipr_ioa_cfg *ioa_cfg,
2468 enum ipr_shutdown_type shutdown_type)
2469{
2470 if (!ioa_cfg->in_reset_reload)
2471 ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
2472
2473 spin_unlock_irq(ioa_cfg->host->host_lock);
2474 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
2475 spin_lock_irq(ioa_cfg->host->host_lock);
2476
2477 /* If we got hit with a host reset while we were already resetting
2478 the adapter for some reason, and the reset failed. */
2479 if (ioa_cfg->ioa_is_dead) {
2480 ipr_trace;
2481 return FAILED;
2482 }
2483
2484 return SUCCESS;
2485}
2486
2487/**
2488 * ipr_find_ses_entry - Find matching SES in SES table
2489 * @res: resource entry struct of SES
2490 *
2491 * Return value:
2492 * pointer to SES table entry / NULL on failure
2493 **/
2494static const struct ipr_ses_table_entry *
2495ipr_find_ses_entry(struct ipr_resource_entry *res)
2496{
2497 int i, j, matches;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002498 struct ipr_std_inq_vpids *vpids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 const struct ipr_ses_table_entry *ste = ipr_ses_table;
2500
2501 for (i = 0; i < ARRAY_SIZE(ipr_ses_table); i++, ste++) {
2502 for (j = 0, matches = 0; j < IPR_PROD_ID_LEN; j++) {
2503 if (ste->compare_product_id_byte[j] == 'X') {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002504 vpids = &res->std_inq_data.vpids;
2505 if (vpids->product_id[j] == ste->product_id[j])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 matches++;
2507 else
2508 break;
2509 } else
2510 matches++;
2511 }
2512
2513 if (matches == IPR_PROD_ID_LEN)
2514 return ste;
2515 }
2516
2517 return NULL;
2518}
2519
2520/**
2521 * ipr_get_max_scsi_speed - Determine max SCSI speed for a given bus
2522 * @ioa_cfg: ioa config struct
2523 * @bus: SCSI bus
2524 * @bus_width: bus width
2525 *
2526 * Return value:
2527 * SCSI bus speed in units of 100KHz, 1600 is 160 MHz
2528 * For a 2-byte wide SCSI bus, the maximum transfer speed is
2529 * twice the maximum transfer rate (e.g. for a wide enabled bus,
2530 * max 160MHz = max 320MB/sec).
2531 **/
2532static u32 ipr_get_max_scsi_speed(struct ipr_ioa_cfg *ioa_cfg, u8 bus, u8 bus_width)
2533{
2534 struct ipr_resource_entry *res;
2535 const struct ipr_ses_table_entry *ste;
2536 u32 max_xfer_rate = IPR_MAX_SCSI_RATE(bus_width);
2537
2538 /* Loop through each config table entry in the config table buffer */
2539 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002540 if (!(IPR_IS_SES_DEVICE(res->std_inq_data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 continue;
2542
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002543 if (bus != res->bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 continue;
2545
2546 if (!(ste = ipr_find_ses_entry(res)))
2547 continue;
2548
2549 max_xfer_rate = (ste->max_bus_speed_limit * 10) / (bus_width / 8);
2550 }
2551
2552 return max_xfer_rate;
2553}
2554
2555/**
2556 * ipr_wait_iodbg_ack - Wait for an IODEBUG ACK from the IOA
2557 * @ioa_cfg: ioa config struct
2558 * @max_delay: max delay in micro-seconds to wait
2559 *
2560 * Waits for an IODEBUG ACK from the IOA, doing busy looping.
2561 *
2562 * Return value:
2563 * 0 on success / other on failure
2564 **/
2565static int ipr_wait_iodbg_ack(struct ipr_ioa_cfg *ioa_cfg, int max_delay)
2566{
2567 volatile u32 pcii_reg;
2568 int delay = 1;
2569
2570 /* Read interrupt reg until IOA signals IO Debug Acknowledge */
2571 while (delay < max_delay) {
2572 pcii_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
2573
2574 if (pcii_reg & IPR_PCII_IO_DEBUG_ACKNOWLEDGE)
2575 return 0;
2576
2577 /* udelay cannot be used if delay is more than a few milliseconds */
2578 if ((delay / 1000) > MAX_UDELAY_MS)
2579 mdelay(delay / 1000);
2580 else
2581 udelay(delay);
2582
2583 delay += delay;
2584 }
2585 return -EIO;
2586}
2587
2588/**
Wayne Boyerdcbad002010-02-19 13:24:14 -08002589 * ipr_get_sis64_dump_data_section - Dump IOA memory
2590 * @ioa_cfg: ioa config struct
2591 * @start_addr: adapter address to dump
2592 * @dest: destination kernel buffer
2593 * @length_in_words: length to dump in 4 byte words
2594 *
2595 * Return value:
2596 * 0 on success
2597 **/
2598static int ipr_get_sis64_dump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2599 u32 start_addr,
2600 __be32 *dest, u32 length_in_words)
2601{
2602 int i;
2603
2604 for (i = 0; i < length_in_words; i++) {
2605 writel(start_addr+(i*4), ioa_cfg->regs.dump_addr_reg);
2606 *dest = cpu_to_be32(readl(ioa_cfg->regs.dump_data_reg));
2607 dest++;
2608 }
2609
2610 return 0;
2611}
2612
2613/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 * ipr_get_ldump_data_section - Dump IOA memory
2615 * @ioa_cfg: ioa config struct
2616 * @start_addr: adapter address to dump
2617 * @dest: destination kernel buffer
2618 * @length_in_words: length to dump in 4 byte words
2619 *
2620 * Return value:
2621 * 0 on success / -EIO on failure
2622 **/
2623static int ipr_get_ldump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2624 u32 start_addr,
2625 __be32 *dest, u32 length_in_words)
2626{
2627 volatile u32 temp_pcii_reg;
2628 int i, delay = 0;
2629
Wayne Boyerdcbad002010-02-19 13:24:14 -08002630 if (ioa_cfg->sis64)
2631 return ipr_get_sis64_dump_data_section(ioa_cfg, start_addr,
2632 dest, length_in_words);
2633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 /* Write IOA interrupt reg starting LDUMP state */
2635 writel((IPR_UPROCI_RESET_ALERT | IPR_UPROCI_IO_DEBUG_ALERT),
Wayne Boyer214777b2010-02-19 13:24:26 -08002636 ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 /* Wait for IO debug acknowledge */
2639 if (ipr_wait_iodbg_ack(ioa_cfg,
2640 IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC)) {
2641 dev_err(&ioa_cfg->pdev->dev,
2642 "IOA dump long data transfer timeout\n");
2643 return -EIO;
2644 }
2645
2646 /* Signal LDUMP interlocked - clear IO debug ack */
2647 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2648 ioa_cfg->regs.clr_interrupt_reg);
2649
2650 /* Write Mailbox with starting address */
2651 writel(start_addr, ioa_cfg->ioa_mailbox);
2652
2653 /* Signal address valid - clear IOA Reset alert */
2654 writel(IPR_UPROCI_RESET_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002655 ioa_cfg->regs.clr_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 for (i = 0; i < length_in_words; i++) {
2658 /* Wait for IO debug acknowledge */
2659 if (ipr_wait_iodbg_ack(ioa_cfg,
2660 IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC)) {
2661 dev_err(&ioa_cfg->pdev->dev,
2662 "IOA dump short data transfer timeout\n");
2663 return -EIO;
2664 }
2665
2666 /* Read data from mailbox and increment destination pointer */
2667 *dest = cpu_to_be32(readl(ioa_cfg->ioa_mailbox));
2668 dest++;
2669
2670 /* For all but the last word of data, signal data received */
2671 if (i < (length_in_words - 1)) {
2672 /* Signal dump data received - Clear IO debug Ack */
2673 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2674 ioa_cfg->regs.clr_interrupt_reg);
2675 }
2676 }
2677
2678 /* Signal end of block transfer. Set reset alert then clear IO debug ack */
2679 writel(IPR_UPROCI_RESET_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002680 ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 writel(IPR_UPROCI_IO_DEBUG_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002683 ioa_cfg->regs.clr_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685 /* Signal dump data received - Clear IO debug Ack */
2686 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2687 ioa_cfg->regs.clr_interrupt_reg);
2688
2689 /* Wait for IOA to signal LDUMP exit - IOA reset alert will be cleared */
2690 while (delay < IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC) {
2691 temp_pcii_reg =
Wayne Boyer214777b2010-02-19 13:24:26 -08002692 readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694 if (!(temp_pcii_reg & IPR_UPROCI_RESET_ALERT))
2695 return 0;
2696
2697 udelay(10);
2698 delay += 10;
2699 }
2700
2701 return 0;
2702}
2703
2704#ifdef CONFIG_SCSI_IPR_DUMP
2705/**
2706 * ipr_sdt_copy - Copy Smart Dump Table to kernel buffer
2707 * @ioa_cfg: ioa config struct
2708 * @pci_address: adapter address
2709 * @length: length of data to copy
2710 *
2711 * Copy data from PCI adapter to kernel buffer.
2712 * Note: length MUST be a 4 byte multiple
2713 * Return value:
2714 * 0 on success / other on failure
2715 **/
2716static int ipr_sdt_copy(struct ipr_ioa_cfg *ioa_cfg,
2717 unsigned long pci_address, u32 length)
2718{
2719 int bytes_copied = 0;
2720 int cur_len, rc, rem_len, rem_page_len;
2721 __be32 *page;
2722 unsigned long lock_flags = 0;
2723 struct ipr_ioa_dump *ioa_dump = &ioa_cfg->dump->ioa_dump;
2724
2725 while (bytes_copied < length &&
2726 (ioa_dump->hdr.len + bytes_copied) < IPR_MAX_IOA_DUMP_SIZE) {
2727 if (ioa_dump->page_offset >= PAGE_SIZE ||
2728 ioa_dump->page_offset == 0) {
2729 page = (__be32 *)__get_free_page(GFP_ATOMIC);
2730
2731 if (!page) {
2732 ipr_trace;
2733 return bytes_copied;
2734 }
2735
2736 ioa_dump->page_offset = 0;
2737 ioa_dump->ioa_data[ioa_dump->next_page_index] = page;
2738 ioa_dump->next_page_index++;
2739 } else
2740 page = ioa_dump->ioa_data[ioa_dump->next_page_index - 1];
2741
2742 rem_len = length - bytes_copied;
2743 rem_page_len = PAGE_SIZE - ioa_dump->page_offset;
2744 cur_len = min(rem_len, rem_page_len);
2745
2746 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2747 if (ioa_cfg->sdt_state == ABORT_DUMP) {
2748 rc = -EIO;
2749 } else {
2750 rc = ipr_get_ldump_data_section(ioa_cfg,
2751 pci_address + bytes_copied,
2752 &page[ioa_dump->page_offset / 4],
2753 (cur_len / sizeof(u32)));
2754 }
2755 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2756
2757 if (!rc) {
2758 ioa_dump->page_offset += cur_len;
2759 bytes_copied += cur_len;
2760 } else {
2761 ipr_trace;
2762 break;
2763 }
2764 schedule();
2765 }
2766
2767 return bytes_copied;
2768}
2769
2770/**
2771 * ipr_init_dump_entry_hdr - Initialize a dump entry header.
2772 * @hdr: dump entry header struct
2773 *
2774 * Return value:
2775 * nothing
2776 **/
2777static void ipr_init_dump_entry_hdr(struct ipr_dump_entry_header *hdr)
2778{
2779 hdr->eye_catcher = IPR_DUMP_EYE_CATCHER;
2780 hdr->num_elems = 1;
2781 hdr->offset = sizeof(*hdr);
2782 hdr->status = IPR_DUMP_STATUS_SUCCESS;
2783}
2784
2785/**
2786 * ipr_dump_ioa_type_data - Fill in the adapter type in the dump.
2787 * @ioa_cfg: ioa config struct
2788 * @driver_dump: driver dump struct
2789 *
2790 * Return value:
2791 * nothing
2792 **/
2793static void ipr_dump_ioa_type_data(struct ipr_ioa_cfg *ioa_cfg,
2794 struct ipr_driver_dump *driver_dump)
2795{
2796 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
2797
2798 ipr_init_dump_entry_hdr(&driver_dump->ioa_type_entry.hdr);
2799 driver_dump->ioa_type_entry.hdr.len =
2800 sizeof(struct ipr_dump_ioa_type_entry) -
2801 sizeof(struct ipr_dump_entry_header);
2802 driver_dump->ioa_type_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2803 driver_dump->ioa_type_entry.hdr.id = IPR_DUMP_DRIVER_TYPE_ID;
2804 driver_dump->ioa_type_entry.type = ioa_cfg->type;
2805 driver_dump->ioa_type_entry.fw_version = (ucode_vpd->major_release << 24) |
2806 (ucode_vpd->card_type << 16) | (ucode_vpd->minor_release[0] << 8) |
2807 ucode_vpd->minor_release[1];
2808 driver_dump->hdr.num_entries++;
2809}
2810
2811/**
2812 * ipr_dump_version_data - Fill in the driver version in the dump.
2813 * @ioa_cfg: ioa config struct
2814 * @driver_dump: driver dump struct
2815 *
2816 * Return value:
2817 * nothing
2818 **/
2819static void ipr_dump_version_data(struct ipr_ioa_cfg *ioa_cfg,
2820 struct ipr_driver_dump *driver_dump)
2821{
2822 ipr_init_dump_entry_hdr(&driver_dump->version_entry.hdr);
2823 driver_dump->version_entry.hdr.len =
2824 sizeof(struct ipr_dump_version_entry) -
2825 sizeof(struct ipr_dump_entry_header);
2826 driver_dump->version_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
2827 driver_dump->version_entry.hdr.id = IPR_DUMP_DRIVER_VERSION_ID;
2828 strcpy(driver_dump->version_entry.version, IPR_DRIVER_VERSION);
2829 driver_dump->hdr.num_entries++;
2830}
2831
2832/**
2833 * ipr_dump_trace_data - Fill in the IOA trace in the dump.
2834 * @ioa_cfg: ioa config struct
2835 * @driver_dump: driver dump struct
2836 *
2837 * Return value:
2838 * nothing
2839 **/
2840static void ipr_dump_trace_data(struct ipr_ioa_cfg *ioa_cfg,
2841 struct ipr_driver_dump *driver_dump)
2842{
2843 ipr_init_dump_entry_hdr(&driver_dump->trace_entry.hdr);
2844 driver_dump->trace_entry.hdr.len =
2845 sizeof(struct ipr_dump_trace_entry) -
2846 sizeof(struct ipr_dump_entry_header);
2847 driver_dump->trace_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2848 driver_dump->trace_entry.hdr.id = IPR_DUMP_TRACE_ID;
2849 memcpy(driver_dump->trace_entry.trace, ioa_cfg->trace, IPR_TRACE_SIZE);
2850 driver_dump->hdr.num_entries++;
2851}
2852
2853/**
2854 * ipr_dump_location_data - Fill in the IOA location in the dump.
2855 * @ioa_cfg: ioa config struct
2856 * @driver_dump: driver dump struct
2857 *
2858 * Return value:
2859 * nothing
2860 **/
2861static void ipr_dump_location_data(struct ipr_ioa_cfg *ioa_cfg,
2862 struct ipr_driver_dump *driver_dump)
2863{
2864 ipr_init_dump_entry_hdr(&driver_dump->location_entry.hdr);
2865 driver_dump->location_entry.hdr.len =
2866 sizeof(struct ipr_dump_location_entry) -
2867 sizeof(struct ipr_dump_entry_header);
2868 driver_dump->location_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
2869 driver_dump->location_entry.hdr.id = IPR_DUMP_LOCATION_ID;
Kay Sievers71610f52008-12-03 22:41:36 +01002870 strcpy(driver_dump->location_entry.location, dev_name(&ioa_cfg->pdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 driver_dump->hdr.num_entries++;
2872}
2873
2874/**
2875 * ipr_get_ioa_dump - Perform a dump of the driver and adapter.
2876 * @ioa_cfg: ioa config struct
2877 * @dump: dump struct
2878 *
2879 * Return value:
2880 * nothing
2881 **/
2882static void ipr_get_ioa_dump(struct ipr_ioa_cfg *ioa_cfg, struct ipr_dump *dump)
2883{
2884 unsigned long start_addr, sdt_word;
2885 unsigned long lock_flags = 0;
2886 struct ipr_driver_dump *driver_dump = &dump->driver_dump;
2887 struct ipr_ioa_dump *ioa_dump = &dump->ioa_dump;
2888 u32 num_entries, start_off, end_off;
2889 u32 bytes_to_copy, bytes_copied, rc;
2890 struct ipr_sdt *sdt;
Wayne Boyerdcbad002010-02-19 13:24:14 -08002891 int valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 int i;
2893
2894 ENTER;
2895
2896 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2897
2898 if (ioa_cfg->sdt_state != GET_DUMP) {
2899 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2900 return;
2901 }
2902
Wayne Boyer110def82010-11-04 09:36:16 -07002903 if (ioa_cfg->sis64) {
2904 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2905 ssleep(IPR_DUMP_DELAY_SECONDS);
2906 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2907 }
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 start_addr = readl(ioa_cfg->ioa_mailbox);
2910
Wayne Boyerdcbad002010-02-19 13:24:14 -08002911 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(start_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 dev_err(&ioa_cfg->pdev->dev,
2913 "Invalid dump table format: %lx\n", start_addr);
2914 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2915 return;
2916 }
2917
2918 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA initiated\n");
2919
2920 driver_dump->hdr.eye_catcher = IPR_DUMP_EYE_CATCHER;
2921
2922 /* Initialize the overall dump header */
2923 driver_dump->hdr.len = sizeof(struct ipr_driver_dump);
2924 driver_dump->hdr.num_entries = 1;
2925 driver_dump->hdr.first_entry_offset = sizeof(struct ipr_dump_header);
2926 driver_dump->hdr.status = IPR_DUMP_STATUS_SUCCESS;
2927 driver_dump->hdr.os = IPR_DUMP_OS_LINUX;
2928 driver_dump->hdr.driver_name = IPR_DUMP_DRIVER_NAME;
2929
2930 ipr_dump_version_data(ioa_cfg, driver_dump);
2931 ipr_dump_location_data(ioa_cfg, driver_dump);
2932 ipr_dump_ioa_type_data(ioa_cfg, driver_dump);
2933 ipr_dump_trace_data(ioa_cfg, driver_dump);
2934
2935 /* Update dump_header */
2936 driver_dump->hdr.len += sizeof(struct ipr_dump_entry_header);
2937
2938 /* IOA Dump entry */
2939 ipr_init_dump_entry_hdr(&ioa_dump->hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 ioa_dump->hdr.len = 0;
2941 ioa_dump->hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2942 ioa_dump->hdr.id = IPR_DUMP_IOA_DUMP_ID;
2943
2944 /* First entries in sdt are actually a list of dump addresses and
2945 lengths to gather the real dump data. sdt represents the pointer
2946 to the ioa generated dump table. Dump data will be extracted based
2947 on entries in this table */
2948 sdt = &ioa_dump->sdt;
2949
2950 rc = ipr_get_ldump_data_section(ioa_cfg, start_addr, (__be32 *)sdt,
2951 sizeof(struct ipr_sdt) / sizeof(__be32));
2952
2953 /* Smart Dump table is ready to use and the first entry is valid */
Wayne Boyerdcbad002010-02-19 13:24:14 -08002954 if (rc || ((be32_to_cpu(sdt->hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
2955 (be32_to_cpu(sdt->hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 dev_err(&ioa_cfg->pdev->dev,
2957 "Dump of IOA failed. Dump table not valid: %d, %X.\n",
2958 rc, be32_to_cpu(sdt->hdr.state));
2959 driver_dump->hdr.status = IPR_DUMP_STATUS_FAILED;
2960 ioa_cfg->sdt_state = DUMP_OBTAINED;
2961 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2962 return;
2963 }
2964
2965 num_entries = be32_to_cpu(sdt->hdr.num_entries_used);
2966
2967 if (num_entries > IPR_NUM_SDT_ENTRIES)
2968 num_entries = IPR_NUM_SDT_ENTRIES;
2969
2970 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2971
2972 for (i = 0; i < num_entries; i++) {
2973 if (ioa_dump->hdr.len > IPR_MAX_IOA_DUMP_SIZE) {
2974 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
2975 break;
2976 }
2977
2978 if (sdt->entry[i].flags & IPR_SDT_VALID_ENTRY) {
Wayne Boyerdcbad002010-02-19 13:24:14 -08002979 sdt_word = be32_to_cpu(sdt->entry[i].start_token);
2980 if (ioa_cfg->sis64)
2981 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token);
2982 else {
2983 start_off = sdt_word & IPR_FMT2_MBX_ADDR_MASK;
2984 end_off = be32_to_cpu(sdt->entry[i].end_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Wayne Boyerdcbad002010-02-19 13:24:14 -08002986 if (ipr_sdt_is_fmt2(sdt_word) && sdt_word)
2987 bytes_to_copy = end_off - start_off;
2988 else
2989 valid = 0;
2990 }
2991 if (valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 if (bytes_to_copy > IPR_MAX_IOA_DUMP_SIZE) {
2993 sdt->entry[i].flags &= ~IPR_SDT_VALID_ENTRY;
2994 continue;
2995 }
2996
2997 /* Copy data from adapter to driver buffers */
2998 bytes_copied = ipr_sdt_copy(ioa_cfg, sdt_word,
2999 bytes_to_copy);
3000
3001 ioa_dump->hdr.len += bytes_copied;
3002
3003 if (bytes_copied != bytes_to_copy) {
3004 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3005 break;
3006 }
3007 }
3008 }
3009 }
3010
3011 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA completed.\n");
3012
3013 /* Update dump_header */
3014 driver_dump->hdr.len += ioa_dump->hdr.len;
3015 wmb();
3016 ioa_cfg->sdt_state = DUMP_OBTAINED;
3017 LEAVE;
3018}
3019
3020#else
3021#define ipr_get_ioa_dump(ioa_cfg, dump) do { } while(0)
3022#endif
3023
3024/**
3025 * ipr_release_dump - Free adapter dump memory
3026 * @kref: kref struct
3027 *
3028 * Return value:
3029 * nothing
3030 **/
3031static void ipr_release_dump(struct kref *kref)
3032{
3033 struct ipr_dump *dump = container_of(kref,struct ipr_dump,kref);
3034 struct ipr_ioa_cfg *ioa_cfg = dump->ioa_cfg;
3035 unsigned long lock_flags = 0;
3036 int i;
3037
3038 ENTER;
3039 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3040 ioa_cfg->dump = NULL;
3041 ioa_cfg->sdt_state = INACTIVE;
3042 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3043
3044 for (i = 0; i < dump->ioa_dump.next_page_index; i++)
3045 free_page((unsigned long) dump->ioa_dump.ioa_data[i]);
3046
3047 kfree(dump);
3048 LEAVE;
3049}
3050
3051/**
3052 * ipr_worker_thread - Worker thread
David Howellsc4028952006-11-22 14:57:56 +00003053 * @work: ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 *
3055 * Called at task level from a work thread. This function takes care
3056 * of adding and removing device from the mid-layer as configuration
3057 * changes are detected by the adapter.
3058 *
3059 * Return value:
3060 * nothing
3061 **/
David Howellsc4028952006-11-22 14:57:56 +00003062static void ipr_worker_thread(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
3064 unsigned long lock_flags;
3065 struct ipr_resource_entry *res;
3066 struct scsi_device *sdev;
3067 struct ipr_dump *dump;
David Howellsc4028952006-11-22 14:57:56 +00003068 struct ipr_ioa_cfg *ioa_cfg =
3069 container_of(work, struct ipr_ioa_cfg, work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 u8 bus, target, lun;
3071 int did_work;
3072
3073 ENTER;
3074 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3075
3076 if (ioa_cfg->sdt_state == GET_DUMP) {
3077 dump = ioa_cfg->dump;
3078 if (!dump) {
3079 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3080 return;
3081 }
3082 kref_get(&dump->kref);
3083 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3084 ipr_get_ioa_dump(ioa_cfg, dump);
3085 kref_put(&dump->kref, ipr_release_dump);
3086
3087 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3088 if (ioa_cfg->sdt_state == DUMP_OBTAINED)
3089 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3090 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3091 return;
3092 }
3093
3094restart:
3095 do {
3096 did_work = 0;
3097 if (!ioa_cfg->allow_cmds || !ioa_cfg->allow_ml_add_del) {
3098 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3099 return;
3100 }
3101
3102 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3103 if (res->del_from_ml && res->sdev) {
3104 did_work = 1;
3105 sdev = res->sdev;
3106 if (!scsi_device_get(sdev)) {
Kleber Sacilotto de Souza5767a1c2011-02-14 20:19:31 -02003107 if (!res->add_to_ml)
3108 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
3109 else
3110 res->del_from_ml = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3112 scsi_remove_device(sdev);
3113 scsi_device_put(sdev);
3114 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3115 }
3116 break;
3117 }
3118 }
3119 } while(did_work);
3120
3121 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3122 if (res->add_to_ml) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08003123 bus = res->bus;
3124 target = res->target;
3125 lun = res->lun;
Brian King1121b792006-03-29 09:37:16 -06003126 res->add_to_ml = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3128 scsi_add_device(ioa_cfg->host, bus, target, lun);
3129 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3130 goto restart;
3131 }
3132 }
3133
3134 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Tony Jonesee959b02008-02-22 00:13:36 +01003135 kobject_uevent(&ioa_cfg->host->shost_dev.kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 LEAVE;
3137}
3138
3139#ifdef CONFIG_SCSI_IPR_TRACE
3140/**
3141 * ipr_read_trace - Dump the adapter trace
Chris Wright2c3c8be2010-05-12 18:28:57 -07003142 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08003144 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 * @buf: buffer
3146 * @off: offset
3147 * @count: buffer size
3148 *
3149 * Return value:
3150 * number of bytes printed to buffer
3151 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003152static ssize_t ipr_read_trace(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08003153 struct bin_attribute *bin_attr,
3154 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155{
Tony Jonesee959b02008-02-22 00:13:36 +01003156 struct device *dev = container_of(kobj, struct device, kobj);
3157 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3159 unsigned long lock_flags = 0;
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003160 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003163 ret = memory_read_from_buffer(buf, count, &off, ioa_cfg->trace,
3164 IPR_TRACE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003166
3167 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168}
3169
3170static struct bin_attribute ipr_trace_attr = {
3171 .attr = {
3172 .name = "trace",
3173 .mode = S_IRUGO,
3174 },
3175 .size = 0,
3176 .read = ipr_read_trace,
3177};
3178#endif
3179
3180/**
3181 * ipr_show_fw_version - Show the firmware version
Tony Jonesee959b02008-02-22 00:13:36 +01003182 * @dev: class device struct
3183 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 *
3185 * Return value:
3186 * number of bytes printed to buffer
3187 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003188static ssize_t ipr_show_fw_version(struct device *dev,
3189 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190{
Tony Jonesee959b02008-02-22 00:13:36 +01003191 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3193 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
3194 unsigned long lock_flags = 0;
3195 int len;
3196
3197 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3198 len = snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X\n",
3199 ucode_vpd->major_release, ucode_vpd->card_type,
3200 ucode_vpd->minor_release[0],
3201 ucode_vpd->minor_release[1]);
3202 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3203 return len;
3204}
3205
Tony Jonesee959b02008-02-22 00:13:36 +01003206static struct device_attribute ipr_fw_version_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 .attr = {
3208 .name = "fw_version",
3209 .mode = S_IRUGO,
3210 },
3211 .show = ipr_show_fw_version,
3212};
3213
3214/**
3215 * ipr_show_log_level - Show the adapter's error logging level
Tony Jonesee959b02008-02-22 00:13:36 +01003216 * @dev: class device struct
3217 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 *
3219 * Return value:
3220 * number of bytes printed to buffer
3221 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003222static ssize_t ipr_show_log_level(struct device *dev,
3223 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224{
Tony Jonesee959b02008-02-22 00:13:36 +01003225 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3227 unsigned long lock_flags = 0;
3228 int len;
3229
3230 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3231 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->log_level);
3232 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3233 return len;
3234}
3235
3236/**
3237 * ipr_store_log_level - Change the adapter's error logging level
Tony Jonesee959b02008-02-22 00:13:36 +01003238 * @dev: class device struct
3239 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 *
3241 * Return value:
3242 * number of bytes printed to buffer
3243 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003244static ssize_t ipr_store_log_level(struct device *dev,
3245 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 const char *buf, size_t count)
3247{
Tony Jonesee959b02008-02-22 00:13:36 +01003248 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3250 unsigned long lock_flags = 0;
3251
3252 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3253 ioa_cfg->log_level = simple_strtoul(buf, NULL, 10);
3254 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3255 return strlen(buf);
3256}
3257
Tony Jonesee959b02008-02-22 00:13:36 +01003258static struct device_attribute ipr_log_level_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 .attr = {
3260 .name = "log_level",
3261 .mode = S_IRUGO | S_IWUSR,
3262 },
3263 .show = ipr_show_log_level,
3264 .store = ipr_store_log_level
3265};
3266
3267/**
3268 * ipr_store_diagnostics - IOA Diagnostics interface
Tony Jonesee959b02008-02-22 00:13:36 +01003269 * @dev: device struct
3270 * @buf: buffer
3271 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 *
3273 * This function will reset the adapter and wait a reasonable
3274 * amount of time for any errors that the adapter might log.
3275 *
3276 * Return value:
3277 * count on success / other on failure
3278 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003279static ssize_t ipr_store_diagnostics(struct device *dev,
3280 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 const char *buf, size_t count)
3282{
Tony Jonesee959b02008-02-22 00:13:36 +01003283 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3285 unsigned long lock_flags = 0;
3286 int rc = count;
3287
3288 if (!capable(CAP_SYS_ADMIN))
3289 return -EACCES;
3290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Brian King970ea292007-04-26 16:00:06 -05003292 while(ioa_cfg->in_reset_reload) {
3293 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3294 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3295 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3296 }
3297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 ioa_cfg->errors_logged = 0;
3299 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3300
3301 if (ioa_cfg->in_reset_reload) {
3302 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3303 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3304
3305 /* Wait for a second for any errors to be logged */
3306 msleep(1000);
3307 } else {
3308 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3309 return -EIO;
3310 }
3311
3312 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3313 if (ioa_cfg->in_reset_reload || ioa_cfg->errors_logged)
3314 rc = -EIO;
3315 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3316
3317 return rc;
3318}
3319
Tony Jonesee959b02008-02-22 00:13:36 +01003320static struct device_attribute ipr_diagnostics_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 .attr = {
3322 .name = "run_diagnostics",
3323 .mode = S_IWUSR,
3324 },
3325 .store = ipr_store_diagnostics
3326};
3327
3328/**
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003329 * ipr_show_adapter_state - Show the adapter's state
Tony Jonesee959b02008-02-22 00:13:36 +01003330 * @class_dev: device struct
3331 * @buf: buffer
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003332 *
3333 * Return value:
3334 * number of bytes printed to buffer
3335 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003336static ssize_t ipr_show_adapter_state(struct device *dev,
3337 struct device_attribute *attr, char *buf)
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003338{
Tony Jonesee959b02008-02-22 00:13:36 +01003339 struct Scsi_Host *shost = class_to_shost(dev);
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003340 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3341 unsigned long lock_flags = 0;
3342 int len;
3343
3344 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3345 if (ioa_cfg->ioa_is_dead)
3346 len = snprintf(buf, PAGE_SIZE, "offline\n");
3347 else
3348 len = snprintf(buf, PAGE_SIZE, "online\n");
3349 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3350 return len;
3351}
3352
3353/**
3354 * ipr_store_adapter_state - Change adapter state
Tony Jonesee959b02008-02-22 00:13:36 +01003355 * @dev: device struct
3356 * @buf: buffer
3357 * @count: buffer size
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003358 *
3359 * This function will change the adapter's state.
3360 *
3361 * Return value:
3362 * count on success / other on failure
3363 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003364static ssize_t ipr_store_adapter_state(struct device *dev,
3365 struct device_attribute *attr,
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003366 const char *buf, size_t count)
3367{
Tony Jonesee959b02008-02-22 00:13:36 +01003368 struct Scsi_Host *shost = class_to_shost(dev);
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003369 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3370 unsigned long lock_flags;
3371 int result = count;
3372
3373 if (!capable(CAP_SYS_ADMIN))
3374 return -EACCES;
3375
3376 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3377 if (ioa_cfg->ioa_is_dead && !strncmp(buf, "online", 6)) {
3378 ioa_cfg->ioa_is_dead = 0;
3379 ioa_cfg->reset_retries = 0;
3380 ioa_cfg->in_ioa_bringdown = 0;
3381 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3382 }
3383 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3384 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3385
3386 return result;
3387}
3388
Tony Jonesee959b02008-02-22 00:13:36 +01003389static struct device_attribute ipr_ioa_state_attr = {
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003390 .attr = {
Brian King49dd0962008-04-28 17:36:20 -05003391 .name = "online_state",
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003392 .mode = S_IRUGO | S_IWUSR,
3393 },
3394 .show = ipr_show_adapter_state,
3395 .store = ipr_store_adapter_state
3396};
3397
3398/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 * ipr_store_reset_adapter - Reset the adapter
Tony Jonesee959b02008-02-22 00:13:36 +01003400 * @dev: device struct
3401 * @buf: buffer
3402 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 *
3404 * This function will reset the adapter.
3405 *
3406 * Return value:
3407 * count on success / other on failure
3408 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003409static ssize_t ipr_store_reset_adapter(struct device *dev,
3410 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 const char *buf, size_t count)
3412{
Tony Jonesee959b02008-02-22 00:13:36 +01003413 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3415 unsigned long lock_flags;
3416 int result = count;
3417
3418 if (!capable(CAP_SYS_ADMIN))
3419 return -EACCES;
3420
3421 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3422 if (!ioa_cfg->in_reset_reload)
3423 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3424 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3425 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3426
3427 return result;
3428}
3429
Tony Jonesee959b02008-02-22 00:13:36 +01003430static struct device_attribute ipr_ioa_reset_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 .attr = {
3432 .name = "reset_host",
3433 .mode = S_IWUSR,
3434 },
3435 .store = ipr_store_reset_adapter
3436};
3437
3438/**
3439 * ipr_alloc_ucode_buffer - Allocates a microcode download buffer
3440 * @buf_len: buffer length
3441 *
3442 * Allocates a DMA'able buffer in chunks and assembles a scatter/gather
3443 * list to use for microcode download
3444 *
3445 * Return value:
3446 * pointer to sglist / NULL on failure
3447 **/
3448static struct ipr_sglist *ipr_alloc_ucode_buffer(int buf_len)
3449{
3450 int sg_size, order, bsize_elem, num_elem, i, j;
3451 struct ipr_sglist *sglist;
3452 struct scatterlist *scatterlist;
3453 struct page *page;
3454
3455 /* Get the minimum size per scatter/gather element */
3456 sg_size = buf_len / (IPR_MAX_SGLIST - 1);
3457
3458 /* Get the actual size per element */
3459 order = get_order(sg_size);
3460
3461 /* Determine the actual number of bytes per element */
3462 bsize_elem = PAGE_SIZE * (1 << order);
3463
3464 /* Determine the actual number of sg entries needed */
3465 if (buf_len % bsize_elem)
3466 num_elem = (buf_len / bsize_elem) + 1;
3467 else
3468 num_elem = buf_len / bsize_elem;
3469
3470 /* Allocate a scatter/gather list for the DMA */
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06003471 sglist = kzalloc(sizeof(struct ipr_sglist) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 (sizeof(struct scatterlist) * (num_elem - 1)),
3473 GFP_KERNEL);
3474
3475 if (sglist == NULL) {
3476 ipr_trace;
3477 return NULL;
3478 }
3479
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 scatterlist = sglist->scatterlist;
Jens Axboe45711f12007-10-22 21:19:53 +02003481 sg_init_table(scatterlist, num_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
3483 sglist->order = order;
3484 sglist->num_sg = num_elem;
3485
3486 /* Allocate a bunch of sg elements */
3487 for (i = 0; i < num_elem; i++) {
3488 page = alloc_pages(GFP_KERNEL, order);
3489 if (!page) {
3490 ipr_trace;
3491
3492 /* Free up what we already allocated */
3493 for (j = i - 1; j >= 0; j--)
Jens Axboe45711f12007-10-22 21:19:53 +02003494 __free_pages(sg_page(&scatterlist[j]), order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 kfree(sglist);
3496 return NULL;
3497 }
3498
Jens Axboe642f1492007-10-24 11:20:47 +02003499 sg_set_page(&scatterlist[i], page, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 }
3501
3502 return sglist;
3503}
3504
3505/**
3506 * ipr_free_ucode_buffer - Frees a microcode download buffer
3507 * @p_dnld: scatter/gather list pointer
3508 *
3509 * Free a DMA'able ucode download buffer previously allocated with
3510 * ipr_alloc_ucode_buffer
3511 *
3512 * Return value:
3513 * nothing
3514 **/
3515static void ipr_free_ucode_buffer(struct ipr_sglist *sglist)
3516{
3517 int i;
3518
3519 for (i = 0; i < sglist->num_sg; i++)
Jens Axboe45711f12007-10-22 21:19:53 +02003520 __free_pages(sg_page(&sglist->scatterlist[i]), sglist->order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
3522 kfree(sglist);
3523}
3524
3525/**
3526 * ipr_copy_ucode_buffer - Copy user buffer to kernel buffer
3527 * @sglist: scatter/gather list pointer
3528 * @buffer: buffer pointer
3529 * @len: buffer length
3530 *
3531 * Copy a microcode image from a user buffer into a buffer allocated by
3532 * ipr_alloc_ucode_buffer
3533 *
3534 * Return value:
3535 * 0 on success / other on failure
3536 **/
3537static int ipr_copy_ucode_buffer(struct ipr_sglist *sglist,
3538 u8 *buffer, u32 len)
3539{
3540 int bsize_elem, i, result = 0;
3541 struct scatterlist *scatterlist;
3542 void *kaddr;
3543
3544 /* Determine the actual number of bytes per element */
3545 bsize_elem = PAGE_SIZE * (1 << sglist->order);
3546
3547 scatterlist = sglist->scatterlist;
3548
3549 for (i = 0; i < (len / bsize_elem); i++, buffer += bsize_elem) {
Jens Axboe45711f12007-10-22 21:19:53 +02003550 struct page *page = sg_page(&scatterlist[i]);
3551
3552 kaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 memcpy(kaddr, buffer, bsize_elem);
Jens Axboe45711f12007-10-22 21:19:53 +02003554 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
3556 scatterlist[i].length = bsize_elem;
3557
3558 if (result != 0) {
3559 ipr_trace;
3560 return result;
3561 }
3562 }
3563
3564 if (len % bsize_elem) {
Jens Axboe45711f12007-10-22 21:19:53 +02003565 struct page *page = sg_page(&scatterlist[i]);
3566
3567 kaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 memcpy(kaddr, buffer, len % bsize_elem);
Jens Axboe45711f12007-10-22 21:19:53 +02003569 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
3571 scatterlist[i].length = len % bsize_elem;
3572 }
3573
3574 sglist->buffer_len = len;
3575 return result;
3576}
3577
3578/**
Wayne Boyera32c0552010-02-19 13:23:36 -08003579 * ipr_build_ucode_ioadl64 - Build a microcode download IOADL
3580 * @ipr_cmd: ipr command struct
3581 * @sglist: scatter/gather list
3582 *
3583 * Builds a microcode download IOA data list (IOADL).
3584 *
3585 **/
3586static void ipr_build_ucode_ioadl64(struct ipr_cmnd *ipr_cmd,
3587 struct ipr_sglist *sglist)
3588{
3589 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
3590 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
3591 struct scatterlist *scatterlist = sglist->scatterlist;
3592 int i;
3593
3594 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
3595 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
3596 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3597
3598 ioarcb->ioadl_len =
3599 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
3600 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3601 ioadl64[i].flags = cpu_to_be32(IPR_IOADL_FLAGS_WRITE);
3602 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(&scatterlist[i]));
3603 ioadl64[i].address = cpu_to_be64(sg_dma_address(&scatterlist[i]));
3604 }
3605
3606 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3607}
3608
3609/**
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003610 * ipr_build_ucode_ioadl - Build a microcode download IOADL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 * @ipr_cmd: ipr command struct
3612 * @sglist: scatter/gather list
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 *
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003614 * Builds a microcode download IOA data list (IOADL).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 **/
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003617static void ipr_build_ucode_ioadl(struct ipr_cmnd *ipr_cmd,
3618 struct ipr_sglist *sglist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08003621 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 struct scatterlist *scatterlist = sglist->scatterlist;
3623 int i;
3624
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003625 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08003627 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3628
3629 ioarcb->ioadl_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
3631
3632 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3633 ioadl[i].flags_and_data_len =
3634 cpu_to_be32(IPR_IOADL_FLAGS_WRITE | sg_dma_len(&scatterlist[i]));
3635 ioadl[i].address =
3636 cpu_to_be32(sg_dma_address(&scatterlist[i]));
3637 }
3638
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003639 ioadl[i-1].flags_and_data_len |=
3640 cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3641}
3642
3643/**
3644 * ipr_update_ioa_ucode - Update IOA's microcode
3645 * @ioa_cfg: ioa config struct
3646 * @sglist: scatter/gather list
3647 *
3648 * Initiate an adapter reset to update the IOA's microcode
3649 *
3650 * Return value:
3651 * 0 on success / -EIO on failure
3652 **/
3653static int ipr_update_ioa_ucode(struct ipr_ioa_cfg *ioa_cfg,
3654 struct ipr_sglist *sglist)
3655{
3656 unsigned long lock_flags;
3657
3658 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Brian King970ea292007-04-26 16:00:06 -05003659 while(ioa_cfg->in_reset_reload) {
3660 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3661 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3662 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3663 }
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003664
3665 if (ioa_cfg->ucode_sglist) {
3666 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3667 dev_err(&ioa_cfg->pdev->dev,
3668 "Microcode download already in progress\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 return -EIO;
3670 }
3671
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003672 sglist->num_dma_sg = pci_map_sg(ioa_cfg->pdev, sglist->scatterlist,
3673 sglist->num_sg, DMA_TO_DEVICE);
3674
3675 if (!sglist->num_dma_sg) {
3676 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3677 dev_err(&ioa_cfg->pdev->dev,
3678 "Failed to map microcode download buffer!\n");
3679 return -EIO;
3680 }
3681
3682 ioa_cfg->ucode_sglist = sglist;
3683 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3684 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3685 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3686
3687 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3688 ioa_cfg->ucode_sglist = NULL;
3689 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 return 0;
3691}
3692
3693/**
3694 * ipr_store_update_fw - Update the firmware on the adapter
Tony Jonesee959b02008-02-22 00:13:36 +01003695 * @class_dev: device struct
3696 * @buf: buffer
3697 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 *
3699 * This function will update the firmware on the adapter.
3700 *
3701 * Return value:
3702 * count on success / other on failure
3703 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003704static ssize_t ipr_store_update_fw(struct device *dev,
3705 struct device_attribute *attr,
3706 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707{
Tony Jonesee959b02008-02-22 00:13:36 +01003708 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3710 struct ipr_ucode_image_header *image_hdr;
3711 const struct firmware *fw_entry;
3712 struct ipr_sglist *sglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 char fname[100];
3714 char *src;
3715 int len, result, dnld_size;
3716
3717 if (!capable(CAP_SYS_ADMIN))
3718 return -EACCES;
3719
3720 len = snprintf(fname, 99, "%s", buf);
3721 fname[len-1] = '\0';
3722
3723 if(request_firmware(&fw_entry, fname, &ioa_cfg->pdev->dev)) {
3724 dev_err(&ioa_cfg->pdev->dev, "Firmware file %s not found\n", fname);
3725 return -EIO;
3726 }
3727
3728 image_hdr = (struct ipr_ucode_image_header *)fw_entry->data;
3729
3730 if (be32_to_cpu(image_hdr->header_length) > fw_entry->size ||
3731 (ioa_cfg->vpd_cbs->page3_data.card_type &&
3732 ioa_cfg->vpd_cbs->page3_data.card_type != image_hdr->card_type)) {
3733 dev_err(&ioa_cfg->pdev->dev, "Invalid microcode buffer\n");
3734 release_firmware(fw_entry);
3735 return -EINVAL;
3736 }
3737
3738 src = (u8 *)image_hdr + be32_to_cpu(image_hdr->header_length);
3739 dnld_size = fw_entry->size - be32_to_cpu(image_hdr->header_length);
3740 sglist = ipr_alloc_ucode_buffer(dnld_size);
3741
3742 if (!sglist) {
3743 dev_err(&ioa_cfg->pdev->dev, "Microcode buffer allocation failed\n");
3744 release_firmware(fw_entry);
3745 return -ENOMEM;
3746 }
3747
3748 result = ipr_copy_ucode_buffer(sglist, src, dnld_size);
3749
3750 if (result) {
3751 dev_err(&ioa_cfg->pdev->dev,
3752 "Microcode buffer copy to DMA buffer failed\n");
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003753 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 }
3755
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003756 result = ipr_update_ioa_ucode(ioa_cfg, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003758 if (!result)
3759 result = count;
3760out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 ipr_free_ucode_buffer(sglist);
3762 release_firmware(fw_entry);
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003763 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764}
3765
Tony Jonesee959b02008-02-22 00:13:36 +01003766static struct device_attribute ipr_update_fw_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 .attr = {
3768 .name = "update_fw",
3769 .mode = S_IWUSR,
3770 },
3771 .store = ipr_store_update_fw
3772};
3773
Wayne Boyer75576bb2010-07-14 10:50:14 -07003774/**
3775 * ipr_show_fw_type - Show the adapter's firmware type.
3776 * @dev: class device struct
3777 * @buf: buffer
3778 *
3779 * Return value:
3780 * number of bytes printed to buffer
3781 **/
3782static ssize_t ipr_show_fw_type(struct device *dev,
3783 struct device_attribute *attr, char *buf)
3784{
3785 struct Scsi_Host *shost = class_to_shost(dev);
3786 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3787 unsigned long lock_flags = 0;
3788 int len;
3789
3790 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3791 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->sis64);
3792 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3793 return len;
3794}
3795
3796static struct device_attribute ipr_ioa_fw_type_attr = {
3797 .attr = {
3798 .name = "fw_type",
3799 .mode = S_IRUGO,
3800 },
3801 .show = ipr_show_fw_type
3802};
3803
Tony Jonesee959b02008-02-22 00:13:36 +01003804static struct device_attribute *ipr_ioa_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 &ipr_fw_version_attr,
3806 &ipr_log_level_attr,
3807 &ipr_diagnostics_attr,
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003808 &ipr_ioa_state_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 &ipr_ioa_reset_attr,
3810 &ipr_update_fw_attr,
Wayne Boyer75576bb2010-07-14 10:50:14 -07003811 &ipr_ioa_fw_type_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 NULL,
3813};
3814
3815#ifdef CONFIG_SCSI_IPR_DUMP
3816/**
3817 * ipr_read_dump - Dump the adapter
Chris Wright2c3c8be2010-05-12 18:28:57 -07003818 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08003820 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 * @buf: buffer
3822 * @off: offset
3823 * @count: buffer size
3824 *
3825 * Return value:
3826 * number of bytes printed to buffer
3827 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003828static ssize_t ipr_read_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08003829 struct bin_attribute *bin_attr,
3830 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831{
Tony Jonesee959b02008-02-22 00:13:36 +01003832 struct device *cdev = container_of(kobj, struct device, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 struct Scsi_Host *shost = class_to_shost(cdev);
3834 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3835 struct ipr_dump *dump;
3836 unsigned long lock_flags = 0;
3837 char *src;
3838 int len;
3839 size_t rc = count;
3840
3841 if (!capable(CAP_SYS_ADMIN))
3842 return -EACCES;
3843
3844 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3845 dump = ioa_cfg->dump;
3846
3847 if (ioa_cfg->sdt_state != DUMP_OBTAINED || !dump) {
3848 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3849 return 0;
3850 }
3851 kref_get(&dump->kref);
3852 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3853
3854 if (off > dump->driver_dump.hdr.len) {
3855 kref_put(&dump->kref, ipr_release_dump);
3856 return 0;
3857 }
3858
3859 if (off + count > dump->driver_dump.hdr.len) {
3860 count = dump->driver_dump.hdr.len - off;
3861 rc = count;
3862 }
3863
3864 if (count && off < sizeof(dump->driver_dump)) {
3865 if (off + count > sizeof(dump->driver_dump))
3866 len = sizeof(dump->driver_dump) - off;
3867 else
3868 len = count;
3869 src = (u8 *)&dump->driver_dump + off;
3870 memcpy(buf, src, len);
3871 buf += len;
3872 off += len;
3873 count -= len;
3874 }
3875
3876 off -= sizeof(dump->driver_dump);
3877
3878 if (count && off < offsetof(struct ipr_ioa_dump, ioa_data)) {
3879 if (off + count > offsetof(struct ipr_ioa_dump, ioa_data))
3880 len = offsetof(struct ipr_ioa_dump, ioa_data) - off;
3881 else
3882 len = count;
3883 src = (u8 *)&dump->ioa_dump + off;
3884 memcpy(buf, src, len);
3885 buf += len;
3886 off += len;
3887 count -= len;
3888 }
3889
3890 off -= offsetof(struct ipr_ioa_dump, ioa_data);
3891
3892 while (count) {
3893 if ((off & PAGE_MASK) != ((off + count) & PAGE_MASK))
3894 len = PAGE_ALIGN(off) - off;
3895 else
3896 len = count;
3897 src = (u8 *)dump->ioa_dump.ioa_data[(off & PAGE_MASK) >> PAGE_SHIFT];
3898 src += off & ~PAGE_MASK;
3899 memcpy(buf, src, len);
3900 buf += len;
3901 off += len;
3902 count -= len;
3903 }
3904
3905 kref_put(&dump->kref, ipr_release_dump);
3906 return rc;
3907}
3908
3909/**
3910 * ipr_alloc_dump - Prepare for adapter dump
3911 * @ioa_cfg: ioa config struct
3912 *
3913 * Return value:
3914 * 0 on success / other on failure
3915 **/
3916static int ipr_alloc_dump(struct ipr_ioa_cfg *ioa_cfg)
3917{
3918 struct ipr_dump *dump;
3919 unsigned long lock_flags = 0;
3920
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06003921 dump = kzalloc(sizeof(struct ipr_dump), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
3923 if (!dump) {
3924 ipr_err("Dump memory allocation failed\n");
3925 return -ENOMEM;
3926 }
3927
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 kref_init(&dump->kref);
3929 dump->ioa_cfg = ioa_cfg;
3930
3931 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3932
3933 if (INACTIVE != ioa_cfg->sdt_state) {
3934 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3935 kfree(dump);
3936 return 0;
3937 }
3938
3939 ioa_cfg->dump = dump;
3940 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
3941 if (ioa_cfg->ioa_is_dead && !ioa_cfg->dump_taken) {
3942 ioa_cfg->dump_taken = 1;
3943 schedule_work(&ioa_cfg->work_q);
3944 }
3945 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return 0;
3948}
3949
3950/**
3951 * ipr_free_dump - Free adapter dump memory
3952 * @ioa_cfg: ioa config struct
3953 *
3954 * Return value:
3955 * 0 on success / other on failure
3956 **/
3957static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg)
3958{
3959 struct ipr_dump *dump;
3960 unsigned long lock_flags = 0;
3961
3962 ENTER;
3963
3964 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3965 dump = ioa_cfg->dump;
3966 if (!dump) {
3967 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3968 return 0;
3969 }
3970
3971 ioa_cfg->dump = NULL;
3972 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3973
3974 kref_put(&dump->kref, ipr_release_dump);
3975
3976 LEAVE;
3977 return 0;
3978}
3979
3980/**
3981 * ipr_write_dump - Setup dump state of adapter
Chris Wright2c3c8be2010-05-12 18:28:57 -07003982 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08003984 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 * @buf: buffer
3986 * @off: offset
3987 * @count: buffer size
3988 *
3989 * Return value:
3990 * number of bytes printed to buffer
3991 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003992static ssize_t ipr_write_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08003993 struct bin_attribute *bin_attr,
3994 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995{
Tony Jonesee959b02008-02-22 00:13:36 +01003996 struct device *cdev = container_of(kobj, struct device, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 struct Scsi_Host *shost = class_to_shost(cdev);
3998 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3999 int rc;
4000
4001 if (!capable(CAP_SYS_ADMIN))
4002 return -EACCES;
4003
4004 if (buf[0] == '1')
4005 rc = ipr_alloc_dump(ioa_cfg);
4006 else if (buf[0] == '0')
4007 rc = ipr_free_dump(ioa_cfg);
4008 else
4009 return -EINVAL;
4010
4011 if (rc)
4012 return rc;
4013 else
4014 return count;
4015}
4016
4017static struct bin_attribute ipr_dump_attr = {
4018 .attr = {
4019 .name = "dump",
4020 .mode = S_IRUSR | S_IWUSR,
4021 },
4022 .size = 0,
4023 .read = ipr_read_dump,
4024 .write = ipr_write_dump
4025};
4026#else
4027static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg) { return 0; };
4028#endif
4029
4030/**
4031 * ipr_change_queue_depth - Change the device's queue depth
4032 * @sdev: scsi device struct
4033 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07004034 * @reason: calling context
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 *
4036 * Return value:
4037 * actual depth set
4038 **/
Mike Christiee881a172009-10-15 17:46:39 -07004039static int ipr_change_queue_depth(struct scsi_device *sdev, int qdepth,
4040 int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041{
Brian King35a39692006-09-25 12:39:20 -05004042 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4043 struct ipr_resource_entry *res;
4044 unsigned long lock_flags = 0;
4045
Mike Christiee881a172009-10-15 17:46:39 -07004046 if (reason != SCSI_QDEPTH_DEFAULT)
4047 return -EOPNOTSUPP;
4048
Brian King35a39692006-09-25 12:39:20 -05004049 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4050 res = (struct ipr_resource_entry *)sdev->hostdata;
4051
4052 if (res && ipr_is_gata(res) && qdepth > IPR_MAX_CMD_PER_ATA_LUN)
4053 qdepth = IPR_MAX_CMD_PER_ATA_LUN;
4054 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
4057 return sdev->queue_depth;
4058}
4059
4060/**
4061 * ipr_change_queue_type - Change the device's queue type
4062 * @dsev: scsi device struct
4063 * @tag_type: type of tags to use
4064 *
4065 * Return value:
4066 * actual queue type set
4067 **/
4068static int ipr_change_queue_type(struct scsi_device *sdev, int tag_type)
4069{
4070 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4071 struct ipr_resource_entry *res;
4072 unsigned long lock_flags = 0;
4073
4074 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4075 res = (struct ipr_resource_entry *)sdev->hostdata;
4076
4077 if (res) {
4078 if (ipr_is_gscsi(res) && sdev->tagged_supported) {
4079 /*
4080 * We don't bother quiescing the device here since the
4081 * adapter firmware does it for us.
4082 */
4083 scsi_set_tag_type(sdev, tag_type);
4084
4085 if (tag_type)
4086 scsi_activate_tcq(sdev, sdev->queue_depth);
4087 else
4088 scsi_deactivate_tcq(sdev, sdev->queue_depth);
4089 } else
4090 tag_type = 0;
4091 } else
4092 tag_type = 0;
4093
4094 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4095 return tag_type;
4096}
4097
4098/**
4099 * ipr_show_adapter_handle - Show the adapter's resource handle for this device
4100 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004101 * @attr: device attribute structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 * @buf: buffer
4103 *
4104 * Return value:
4105 * number of bytes printed to buffer
4106 **/
Yani Ioannou10523b32005-05-17 06:43:37 -04004107static ssize_t ipr_show_adapter_handle(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108{
4109 struct scsi_device *sdev = to_scsi_device(dev);
4110 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4111 struct ipr_resource_entry *res;
4112 unsigned long lock_flags = 0;
4113 ssize_t len = -ENXIO;
4114
4115 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4116 res = (struct ipr_resource_entry *)sdev->hostdata;
4117 if (res)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004118 len = snprintf(buf, PAGE_SIZE, "%08X\n", res->res_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4120 return len;
4121}
4122
4123static struct device_attribute ipr_adapter_handle_attr = {
4124 .attr = {
4125 .name = "adapter_handle",
4126 .mode = S_IRUSR,
4127 },
4128 .show = ipr_show_adapter_handle
4129};
4130
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004131/**
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004132 * ipr_show_resource_path - Show the resource path or the resource address for
4133 * this device.
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004134 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004135 * @attr: device attribute structure
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004136 * @buf: buffer
4137 *
4138 * Return value:
4139 * number of bytes printed to buffer
4140 **/
4141static ssize_t ipr_show_resource_path(struct device *dev, struct device_attribute *attr, char *buf)
4142{
4143 struct scsi_device *sdev = to_scsi_device(dev);
4144 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4145 struct ipr_resource_entry *res;
4146 unsigned long lock_flags = 0;
4147 ssize_t len = -ENXIO;
4148 char buffer[IPR_MAX_RES_PATH_LENGTH];
4149
4150 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4151 res = (struct ipr_resource_entry *)sdev->hostdata;
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004152 if (res && ioa_cfg->sis64)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004153 len = snprintf(buf, PAGE_SIZE, "%s\n",
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004154 ipr_format_res_path(res->res_path, buffer,
4155 sizeof(buffer)));
4156 else if (res)
4157 len = snprintf(buf, PAGE_SIZE, "%d:%d:%d:%d\n", ioa_cfg->host->host_no,
4158 res->bus, res->target, res->lun);
4159
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004160 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4161 return len;
4162}
4163
4164static struct device_attribute ipr_resource_path_attr = {
4165 .attr = {
4166 .name = "resource_path",
Wayne Boyer75576bb2010-07-14 10:50:14 -07004167 .mode = S_IRUGO,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004168 },
4169 .show = ipr_show_resource_path
4170};
4171
Wayne Boyer75576bb2010-07-14 10:50:14 -07004172/**
Wayne Boyer46d74562010-08-11 07:15:17 -07004173 * ipr_show_device_id - Show the device_id for this device.
4174 * @dev: device struct
4175 * @attr: device attribute structure
4176 * @buf: buffer
4177 *
4178 * Return value:
4179 * number of bytes printed to buffer
4180 **/
4181static ssize_t ipr_show_device_id(struct device *dev, struct device_attribute *attr, char *buf)
4182{
4183 struct scsi_device *sdev = to_scsi_device(dev);
4184 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4185 struct ipr_resource_entry *res;
4186 unsigned long lock_flags = 0;
4187 ssize_t len = -ENXIO;
4188
4189 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4190 res = (struct ipr_resource_entry *)sdev->hostdata;
4191 if (res && ioa_cfg->sis64)
4192 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->dev_id);
4193 else if (res)
4194 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->lun_wwn);
4195
4196 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4197 return len;
4198}
4199
4200static struct device_attribute ipr_device_id_attr = {
4201 .attr = {
4202 .name = "device_id",
4203 .mode = S_IRUGO,
4204 },
4205 .show = ipr_show_device_id
4206};
4207
4208/**
Wayne Boyer75576bb2010-07-14 10:50:14 -07004209 * ipr_show_resource_type - Show the resource type for this device.
4210 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004211 * @attr: device attribute structure
Wayne Boyer75576bb2010-07-14 10:50:14 -07004212 * @buf: buffer
4213 *
4214 * Return value:
4215 * number of bytes printed to buffer
4216 **/
4217static ssize_t ipr_show_resource_type(struct device *dev, struct device_attribute *attr, char *buf)
4218{
4219 struct scsi_device *sdev = to_scsi_device(dev);
4220 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4221 struct ipr_resource_entry *res;
4222 unsigned long lock_flags = 0;
4223 ssize_t len = -ENXIO;
4224
4225 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4226 res = (struct ipr_resource_entry *)sdev->hostdata;
4227
4228 if (res)
4229 len = snprintf(buf, PAGE_SIZE, "%x\n", res->type);
4230
4231 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4232 return len;
4233}
4234
4235static struct device_attribute ipr_resource_type_attr = {
4236 .attr = {
4237 .name = "resource_type",
4238 .mode = S_IRUGO,
4239 },
4240 .show = ipr_show_resource_type
4241};
4242
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243static struct device_attribute *ipr_dev_attrs[] = {
4244 &ipr_adapter_handle_attr,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004245 &ipr_resource_path_attr,
Wayne Boyer46d74562010-08-11 07:15:17 -07004246 &ipr_device_id_attr,
Wayne Boyer75576bb2010-07-14 10:50:14 -07004247 &ipr_resource_type_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 NULL,
4249};
4250
4251/**
4252 * ipr_biosparam - Return the HSC mapping
4253 * @sdev: scsi device struct
4254 * @block_device: block device pointer
4255 * @capacity: capacity of the device
4256 * @parm: Array containing returned HSC values.
4257 *
4258 * This function generates the HSC parms that fdisk uses.
4259 * We want to make sure we return something that places partitions
4260 * on 4k boundaries for best performance with the IOA.
4261 *
4262 * Return value:
4263 * 0 on success
4264 **/
4265static int ipr_biosparam(struct scsi_device *sdev,
4266 struct block_device *block_device,
4267 sector_t capacity, int *parm)
4268{
4269 int heads, sectors;
4270 sector_t cylinders;
4271
4272 heads = 128;
4273 sectors = 32;
4274
4275 cylinders = capacity;
4276 sector_div(cylinders, (128 * 32));
4277
4278 /* return result */
4279 parm[0] = heads;
4280 parm[1] = sectors;
4281 parm[2] = cylinders;
4282
4283 return 0;
4284}
4285
4286/**
Brian King35a39692006-09-25 12:39:20 -05004287 * ipr_find_starget - Find target based on bus/target.
4288 * @starget: scsi target struct
4289 *
4290 * Return value:
4291 * resource entry pointer if found / NULL if not found
4292 **/
4293static struct ipr_resource_entry *ipr_find_starget(struct scsi_target *starget)
4294{
4295 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4296 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4297 struct ipr_resource_entry *res;
4298
4299 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004300 if ((res->bus == starget->channel) &&
4301 (res->target == starget->id) &&
4302 (res->lun == 0)) {
Brian King35a39692006-09-25 12:39:20 -05004303 return res;
4304 }
4305 }
4306
4307 return NULL;
4308}
4309
4310static struct ata_port_info sata_port_info;
4311
4312/**
4313 * ipr_target_alloc - Prepare for commands to a SCSI target
4314 * @starget: scsi target struct
4315 *
4316 * If the device is a SATA device, this function allocates an
4317 * ATA port with libata, else it does nothing.
4318 *
4319 * Return value:
4320 * 0 on success / non-0 on failure
4321 **/
4322static int ipr_target_alloc(struct scsi_target *starget)
4323{
4324 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4325 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4326 struct ipr_sata_port *sata_port;
4327 struct ata_port *ap;
4328 struct ipr_resource_entry *res;
4329 unsigned long lock_flags;
4330
4331 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4332 res = ipr_find_starget(starget);
4333 starget->hostdata = NULL;
4334
4335 if (res && ipr_is_gata(res)) {
4336 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4337 sata_port = kzalloc(sizeof(*sata_port), GFP_KERNEL);
4338 if (!sata_port)
4339 return -ENOMEM;
4340
4341 ap = ata_sas_port_alloc(&ioa_cfg->ata_host, &sata_port_info, shost);
4342 if (ap) {
4343 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4344 sata_port->ioa_cfg = ioa_cfg;
4345 sata_port->ap = ap;
4346 sata_port->res = res;
4347
4348 res->sata_port = sata_port;
4349 ap->private_data = sata_port;
4350 starget->hostdata = sata_port;
4351 } else {
4352 kfree(sata_port);
4353 return -ENOMEM;
4354 }
4355 }
4356 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4357
4358 return 0;
4359}
4360
4361/**
4362 * ipr_target_destroy - Destroy a SCSI target
4363 * @starget: scsi target struct
4364 *
4365 * If the device was a SATA device, this function frees the libata
4366 * ATA port, else it does nothing.
4367 *
4368 **/
4369static void ipr_target_destroy(struct scsi_target *starget)
4370{
4371 struct ipr_sata_port *sata_port = starget->hostdata;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004372 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4373 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4374
4375 if (ioa_cfg->sis64) {
4376 if (starget->channel == IPR_ARRAY_VIRTUAL_BUS)
4377 clear_bit(starget->id, ioa_cfg->array_ids);
4378 else if (starget->channel == IPR_VSET_VIRTUAL_BUS)
4379 clear_bit(starget->id, ioa_cfg->vset_ids);
4380 else if (starget->channel == 0)
4381 clear_bit(starget->id, ioa_cfg->target_ids);
4382 }
Brian King35a39692006-09-25 12:39:20 -05004383
4384 if (sata_port) {
4385 starget->hostdata = NULL;
4386 ata_sas_port_destroy(sata_port->ap);
4387 kfree(sata_port);
4388 }
4389}
4390
4391/**
4392 * ipr_find_sdev - Find device based on bus/target/lun.
4393 * @sdev: scsi device struct
4394 *
4395 * Return value:
4396 * resource entry pointer if found / NULL if not found
4397 **/
4398static struct ipr_resource_entry *ipr_find_sdev(struct scsi_device *sdev)
4399{
4400 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4401 struct ipr_resource_entry *res;
4402
4403 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004404 if ((res->bus == sdev->channel) &&
4405 (res->target == sdev->id) &&
4406 (res->lun == sdev->lun))
Brian King35a39692006-09-25 12:39:20 -05004407 return res;
4408 }
4409
4410 return NULL;
4411}
4412
4413/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 * ipr_slave_destroy - Unconfigure a SCSI device
4415 * @sdev: scsi device struct
4416 *
4417 * Return value:
4418 * nothing
4419 **/
4420static void ipr_slave_destroy(struct scsi_device *sdev)
4421{
4422 struct ipr_resource_entry *res;
4423 struct ipr_ioa_cfg *ioa_cfg;
4424 unsigned long lock_flags = 0;
4425
4426 ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4427
4428 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4429 res = (struct ipr_resource_entry *) sdev->hostdata;
4430 if (res) {
Brian King35a39692006-09-25 12:39:20 -05004431 if (res->sata_port)
Tejun Heo3e4ec342010-05-10 21:41:30 +02004432 res->sata_port->ap->link.device[0].class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 sdev->hostdata = NULL;
4434 res->sdev = NULL;
Brian King35a39692006-09-25 12:39:20 -05004435 res->sata_port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 }
4437 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4438}
4439
4440/**
4441 * ipr_slave_configure - Configure a SCSI device
4442 * @sdev: scsi device struct
4443 *
4444 * This function configures the specified scsi device.
4445 *
4446 * Return value:
4447 * 0 on success
4448 **/
4449static int ipr_slave_configure(struct scsi_device *sdev)
4450{
4451 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4452 struct ipr_resource_entry *res;
Brian Kingdd406ef2009-04-22 08:58:02 -05004453 struct ata_port *ap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 unsigned long lock_flags = 0;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004455 char buffer[IPR_MAX_RES_PATH_LENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4458 res = sdev->hostdata;
4459 if (res) {
4460 if (ipr_is_af_dasd_device(res))
4461 sdev->type = TYPE_RAID;
brking@us.ibm.com0726ce22005-11-01 17:01:01 -06004462 if (ipr_is_af_dasd_device(res) || ipr_is_ioa_resource(res)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 sdev->scsi_level = 4;
brking@us.ibm.com0726ce22005-11-01 17:01:01 -06004464 sdev->no_uld_attach = 1;
4465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 if (ipr_is_vset_device(res)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07004467 blk_queue_rq_timeout(sdev->request_queue,
4468 IPR_VSET_RW_TIMEOUT);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05004469 blk_queue_max_hw_sectors(sdev->request_queue, IPR_VSET_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 }
Brian Kingdd406ef2009-04-22 08:58:02 -05004471 if (ipr_is_gata(res) && res->sata_port)
4472 ap = res->sata_port->ap;
4473 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4474
4475 if (ap) {
Brian King35a39692006-09-25 12:39:20 -05004476 scsi_adjust_queue_depth(sdev, 0, IPR_MAX_CMD_PER_ATA_LUN);
Brian Kingdd406ef2009-04-22 08:58:02 -05004477 ata_sas_slave_configure(sdev, ap);
4478 } else
Brian King35a39692006-09-25 12:39:20 -05004479 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004480 if (ioa_cfg->sis64)
4481 sdev_printk(KERN_INFO, sdev, "Resource path: %s\n",
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004482 ipr_format_res_path(res->res_path, buffer,
4483 sizeof(buffer)));
Brian Kingdd406ef2009-04-22 08:58:02 -05004484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 }
4486 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4487 return 0;
4488}
4489
4490/**
Brian King35a39692006-09-25 12:39:20 -05004491 * ipr_ata_slave_alloc - Prepare for commands to a SATA device
4492 * @sdev: scsi device struct
4493 *
4494 * This function initializes an ATA port so that future commands
4495 * sent through queuecommand will work.
4496 *
4497 * Return value:
4498 * 0 on success
4499 **/
4500static int ipr_ata_slave_alloc(struct scsi_device *sdev)
4501{
4502 struct ipr_sata_port *sata_port = NULL;
4503 int rc = -ENXIO;
4504
4505 ENTER;
4506 if (sdev->sdev_target)
4507 sata_port = sdev->sdev_target->hostdata;
4508 if (sata_port)
4509 rc = ata_sas_port_init(sata_port->ap);
4510 if (rc)
4511 ipr_slave_destroy(sdev);
4512
4513 LEAVE;
4514 return rc;
4515}
4516
4517/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 * ipr_slave_alloc - Prepare for commands to a device.
4519 * @sdev: scsi device struct
4520 *
4521 * This function saves a pointer to the resource entry
4522 * in the scsi device struct if the device exists. We
4523 * can then use this pointer in ipr_queuecommand when
4524 * handling new commands.
4525 *
4526 * Return value:
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004527 * 0 on success / -ENXIO if device does not exist
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 **/
4529static int ipr_slave_alloc(struct scsi_device *sdev)
4530{
4531 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4532 struct ipr_resource_entry *res;
4533 unsigned long lock_flags;
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004534 int rc = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
4536 sdev->hostdata = NULL;
4537
4538 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4539
Brian King35a39692006-09-25 12:39:20 -05004540 res = ipr_find_sdev(sdev);
4541 if (res) {
4542 res->sdev = sdev;
4543 res->add_to_ml = 0;
4544 res->in_erp = 0;
4545 sdev->hostdata = res;
4546 if (!ipr_is_naca_model(res))
4547 res->needs_sync_complete = 1;
4548 rc = 0;
4549 if (ipr_is_gata(res)) {
4550 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4551 return ipr_ata_slave_alloc(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 }
4553 }
4554
4555 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4556
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004557 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558}
4559
4560/**
4561 * ipr_eh_host_reset - Reset the host adapter
4562 * @scsi_cmd: scsi command struct
4563 *
4564 * Return value:
4565 * SUCCESS / FAILED
4566 **/
Jeff Garzik df0ae242005-05-28 07:57:14 -04004567static int __ipr_eh_host_reset(struct scsi_cmnd * scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568{
4569 struct ipr_ioa_cfg *ioa_cfg;
4570 int rc;
4571
4572 ENTER;
4573 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
4574
4575 dev_err(&ioa_cfg->pdev->dev,
4576 "Adapter being reset as a result of error recovery.\n");
4577
4578 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
4579 ioa_cfg->sdt_state = GET_DUMP;
4580
4581 rc = ipr_reset_reload(ioa_cfg, IPR_SHUTDOWN_ABBREV);
4582
4583 LEAVE;
4584 return rc;
4585}
4586
Jeff Garzik df0ae242005-05-28 07:57:14 -04004587static int ipr_eh_host_reset(struct scsi_cmnd * cmd)
4588{
4589 int rc;
4590
4591 spin_lock_irq(cmd->device->host->host_lock);
4592 rc = __ipr_eh_host_reset(cmd);
4593 spin_unlock_irq(cmd->device->host->host_lock);
4594
4595 return rc;
4596}
4597
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598/**
Brian Kingc6513092006-03-29 09:37:43 -06004599 * ipr_device_reset - Reset the device
4600 * @ioa_cfg: ioa config struct
4601 * @res: resource entry struct
4602 *
4603 * This function issues a device reset to the affected device.
4604 * If the device is a SCSI device, a LUN reset will be sent
4605 * to the device first. If that does not work, a target reset
Brian King35a39692006-09-25 12:39:20 -05004606 * will be sent. If the device is a SATA device, a PHY reset will
4607 * be sent.
Brian Kingc6513092006-03-29 09:37:43 -06004608 *
4609 * Return value:
4610 * 0 on success / non-zero on failure
4611 **/
4612static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
4613 struct ipr_resource_entry *res)
4614{
4615 struct ipr_cmnd *ipr_cmd;
4616 struct ipr_ioarcb *ioarcb;
4617 struct ipr_cmd_pkt *cmd_pkt;
Brian King35a39692006-09-25 12:39:20 -05004618 struct ipr_ioarcb_ata_regs *regs;
Brian Kingc6513092006-03-29 09:37:43 -06004619 u32 ioasc;
4620
4621 ENTER;
4622 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
4623 ioarcb = &ipr_cmd->ioarcb;
4624 cmd_pkt = &ioarcb->cmd_pkt;
Wayne Boyera32c0552010-02-19 13:23:36 -08004625
4626 if (ipr_cmd->ioa_cfg->sis64) {
4627 regs = &ipr_cmd->i.ata_ioadl.regs;
4628 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
4629 } else
4630 regs = &ioarcb->u.add_data.u.regs;
Brian Kingc6513092006-03-29 09:37:43 -06004631
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004632 ioarcb->res_handle = res->res_handle;
Brian Kingc6513092006-03-29 09:37:43 -06004633 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4634 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
Brian King35a39692006-09-25 12:39:20 -05004635 if (ipr_is_gata(res)) {
4636 cmd_pkt->cdb[2] = IPR_ATA_PHY_RESET;
Wayne Boyera32c0552010-02-19 13:23:36 -08004637 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(regs->flags));
Brian King35a39692006-09-25 12:39:20 -05004638 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
4639 }
Brian Kingc6513092006-03-29 09:37:43 -06004640
4641 ipr_send_blocking_cmd(ipr_cmd, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
Wayne Boyer96d21f02010-05-10 09:13:27 -07004642 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian Kingc6513092006-03-29 09:37:43 -06004643 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
Wayne Boyer96d21f02010-05-10 09:13:27 -07004644 if (ipr_is_gata(res) && res->sata_port && ioasc != IPR_IOASC_IOA_WAS_RESET) {
4645 if (ipr_cmd->ioa_cfg->sis64)
4646 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
4647 sizeof(struct ipr_ioasa_gata));
4648 else
4649 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
4650 sizeof(struct ipr_ioasa_gata));
4651 }
Brian Kingc6513092006-03-29 09:37:43 -06004652
4653 LEAVE;
4654 return (IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0);
4655}
4656
4657/**
Brian King35a39692006-09-25 12:39:20 -05004658 * ipr_sata_reset - Reset the SATA port
Tejun Heocc0680a2007-08-06 18:36:23 +09004659 * @link: SATA link to reset
Brian King35a39692006-09-25 12:39:20 -05004660 * @classes: class of the attached device
4661 *
Tejun Heocc0680a2007-08-06 18:36:23 +09004662 * This function issues a SATA phy reset to the affected ATA link.
Brian King35a39692006-09-25 12:39:20 -05004663 *
4664 * Return value:
4665 * 0 on success / non-zero on failure
4666 **/
Tejun Heocc0680a2007-08-06 18:36:23 +09004667static int ipr_sata_reset(struct ata_link *link, unsigned int *classes,
Andrew Morton120bda32007-03-26 02:17:43 -07004668 unsigned long deadline)
Brian King35a39692006-09-25 12:39:20 -05004669{
Tejun Heocc0680a2007-08-06 18:36:23 +09004670 struct ipr_sata_port *sata_port = link->ap->private_data;
Brian King35a39692006-09-25 12:39:20 -05004671 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
4672 struct ipr_resource_entry *res;
4673 unsigned long lock_flags = 0;
4674 int rc = -ENXIO;
4675
4676 ENTER;
4677 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Brian King73d98ff2006-11-21 10:27:58 -06004678 while(ioa_cfg->in_reset_reload) {
4679 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4680 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
4681 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4682 }
4683
Brian King35a39692006-09-25 12:39:20 -05004684 res = sata_port->res;
4685 if (res) {
4686 rc = ipr_device_reset(ioa_cfg, res);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004687 *classes = res->ata_class;
Brian King35a39692006-09-25 12:39:20 -05004688 }
4689
4690 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4691 LEAVE;
4692 return rc;
4693}
4694
4695/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 * ipr_eh_dev_reset - Reset the device
4697 * @scsi_cmd: scsi command struct
4698 *
4699 * This function issues a device reset to the affected device.
4700 * A LUN reset will be sent to the device first. If that does
4701 * not work, a target reset will be sent.
4702 *
4703 * Return value:
4704 * SUCCESS / FAILED
4705 **/
Jeff Garzik 94d0e7b2005-05-28 07:55:48 -04004706static int __ipr_eh_dev_reset(struct scsi_cmnd * scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707{
4708 struct ipr_cmnd *ipr_cmd;
4709 struct ipr_ioa_cfg *ioa_cfg;
4710 struct ipr_resource_entry *res;
Brian King35a39692006-09-25 12:39:20 -05004711 struct ata_port *ap;
4712 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
4714 ENTER;
4715 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
4716 res = scsi_cmd->device->hostdata;
4717
brking@us.ibm.comeeb88302005-11-01 17:02:29 -06004718 if (!res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 return FAILED;
4720
4721 /*
4722 * If we are currently going through reset/reload, return failed. This will force the
4723 * mid-layer to call ipr_eh_host_reset, which will then go to sleep and wait for the
4724 * reset to complete
4725 */
4726 if (ioa_cfg->in_reset_reload)
4727 return FAILED;
4728 if (ioa_cfg->ioa_is_dead)
4729 return FAILED;
4730
4731 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004732 if (ipr_cmd->ioarcb.res_handle == res->res_handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 if (ipr_cmd->scsi_cmd)
4734 ipr_cmd->done = ipr_scsi_eh_done;
Brian King24d6f2b2007-03-29 12:43:17 -05004735 if (ipr_cmd->qc)
4736 ipr_cmd->done = ipr_sata_eh_done;
Brian King7402ece2006-11-21 10:28:23 -06004737 if (ipr_cmd->qc && !(ipr_cmd->qc->flags & ATA_QCFLAG_FAILED)) {
4738 ipr_cmd->qc->err_mask |= AC_ERR_TIMEOUT;
4739 ipr_cmd->qc->flags |= ATA_QCFLAG_FAILED;
4740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 }
4742 }
4743
4744 res->resetting_device = 1;
Brian Kingfb3ed3c2006-03-29 09:37:37 -06004745 scmd_printk(KERN_ERR, scsi_cmd, "Resetting device\n");
Brian King35a39692006-09-25 12:39:20 -05004746
4747 if (ipr_is_gata(res) && res->sata_port) {
4748 ap = res->sata_port->ap;
4749 spin_unlock_irq(scsi_cmd->device->host->host_lock);
Tejun Heoa1efdab2008-03-25 12:22:50 +09004750 ata_std_error_handler(ap);
Brian King35a39692006-09-25 12:39:20 -05004751 spin_lock_irq(scsi_cmd->device->host->host_lock);
Brian King5af23d22007-05-09 15:36:35 -05004752
4753 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004754 if (ipr_cmd->ioarcb.res_handle == res->res_handle) {
Brian King5af23d22007-05-09 15:36:35 -05004755 rc = -EIO;
4756 break;
4757 }
4758 }
Brian King35a39692006-09-25 12:39:20 -05004759 } else
4760 rc = ipr_device_reset(ioa_cfg, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 res->resetting_device = 0;
4762
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 LEAVE;
Brian Kingc6513092006-03-29 09:37:43 -06004764 return (rc ? FAILED : SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765}
4766
Jeff Garzik 94d0e7b2005-05-28 07:55:48 -04004767static int ipr_eh_dev_reset(struct scsi_cmnd * cmd)
4768{
4769 int rc;
4770
4771 spin_lock_irq(cmd->device->host->host_lock);
4772 rc = __ipr_eh_dev_reset(cmd);
4773 spin_unlock_irq(cmd->device->host->host_lock);
4774
4775 return rc;
4776}
4777
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778/**
4779 * ipr_bus_reset_done - Op done function for bus reset.
4780 * @ipr_cmd: ipr command struct
4781 *
4782 * This function is the op done function for a bus reset
4783 *
4784 * Return value:
4785 * none
4786 **/
4787static void ipr_bus_reset_done(struct ipr_cmnd *ipr_cmd)
4788{
4789 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
4790 struct ipr_resource_entry *res;
4791
4792 ENTER;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004793 if (!ioa_cfg->sis64)
4794 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
4795 if (res->res_handle == ipr_cmd->ioarcb.res_handle) {
4796 scsi_report_bus_reset(ioa_cfg->host, res->bus);
4797 break;
4798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
4801 /*
4802 * If abort has not completed, indicate the reset has, else call the
4803 * abort's done function to wake the sleeping eh thread
4804 */
4805 if (ipr_cmd->sibling->sibling)
4806 ipr_cmd->sibling->sibling = NULL;
4807 else
4808 ipr_cmd->sibling->done(ipr_cmd->sibling);
4809
4810 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
4811 LEAVE;
4812}
4813
4814/**
4815 * ipr_abort_timeout - An abort task has timed out
4816 * @ipr_cmd: ipr command struct
4817 *
4818 * This function handles when an abort task times out. If this
4819 * happens we issue a bus reset since we have resources tied
4820 * up that must be freed before returning to the midlayer.
4821 *
4822 * Return value:
4823 * none
4824 **/
4825static void ipr_abort_timeout(struct ipr_cmnd *ipr_cmd)
4826{
4827 struct ipr_cmnd *reset_cmd;
4828 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
4829 struct ipr_cmd_pkt *cmd_pkt;
4830 unsigned long lock_flags = 0;
4831
4832 ENTER;
4833 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4834 if (ipr_cmd->completion.done || ioa_cfg->in_reset_reload) {
4835 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4836 return;
4837 }
4838
Brian Kingfb3ed3c2006-03-29 09:37:37 -06004839 sdev_printk(KERN_ERR, ipr_cmd->u.sdev, "Abort timed out. Resetting bus.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 reset_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
4841 ipr_cmd->sibling = reset_cmd;
4842 reset_cmd->sibling = ipr_cmd;
4843 reset_cmd->ioarcb.res_handle = ipr_cmd->ioarcb.res_handle;
4844 cmd_pkt = &reset_cmd->ioarcb.cmd_pkt;
4845 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4846 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
4847 cmd_pkt->cdb[2] = IPR_RESET_TYPE_SELECT | IPR_BUS_RESET;
4848
4849 ipr_do_req(reset_cmd, ipr_bus_reset_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
4850 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4851 LEAVE;
4852}
4853
4854/**
4855 * ipr_cancel_op - Cancel specified op
4856 * @scsi_cmd: scsi command struct
4857 *
4858 * This function cancels specified op.
4859 *
4860 * Return value:
4861 * SUCCESS / FAILED
4862 **/
4863static int ipr_cancel_op(struct scsi_cmnd * scsi_cmd)
4864{
4865 struct ipr_cmnd *ipr_cmd;
4866 struct ipr_ioa_cfg *ioa_cfg;
4867 struct ipr_resource_entry *res;
4868 struct ipr_cmd_pkt *cmd_pkt;
4869 u32 ioasc;
4870 int op_found = 0;
4871
4872 ENTER;
4873 ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
4874 res = scsi_cmd->device->hostdata;
4875
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04004876 /* If we are currently going through reset/reload, return failed.
4877 * This will force the mid-layer to call ipr_eh_host_reset,
4878 * which will then go to sleep and wait for the reset to complete
4879 */
4880 if (ioa_cfg->in_reset_reload || ioa_cfg->ioa_is_dead)
4881 return FAILED;
Brian King04d97682006-11-21 10:28:04 -06004882 if (!res || !ipr_is_gscsi(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 return FAILED;
4884
4885 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
4886 if (ipr_cmd->scsi_cmd == scsi_cmd) {
4887 ipr_cmd->done = ipr_scsi_eh_done;
4888 op_found = 1;
4889 break;
4890 }
4891 }
4892
4893 if (!op_found)
4894 return SUCCESS;
4895
4896 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004897 ipr_cmd->ioarcb.res_handle = res->res_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
4899 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4900 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
4901 ipr_cmd->u.sdev = scsi_cmd->device;
4902
Brian Kingfb3ed3c2006-03-29 09:37:37 -06004903 scmd_printk(KERN_ERR, scsi_cmd, "Aborting command: %02X\n",
4904 scsi_cmd->cmnd[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 ipr_send_blocking_cmd(ipr_cmd, ipr_abort_timeout, IPR_CANCEL_ALL_TIMEOUT);
Wayne Boyer96d21f02010-05-10 09:13:27 -07004906 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
4908 /*
4909 * If the abort task timed out and we sent a bus reset, we will get
4910 * one the following responses to the abort
4911 */
4912 if (ioasc == IPR_IOASC_BUS_WAS_RESET || ioasc == IPR_IOASC_SYNC_REQUIRED) {
4913 ioasc = 0;
4914 ipr_trace;
4915 }
4916
4917 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06004918 if (!ipr_is_naca_model(res))
4919 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
4921 LEAVE;
4922 return (IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS);
4923}
4924
4925/**
4926 * ipr_eh_abort - Abort a single op
4927 * @scsi_cmd: scsi command struct
4928 *
4929 * Return value:
4930 * SUCCESS / FAILED
4931 **/
4932static int ipr_eh_abort(struct scsi_cmnd * scsi_cmd)
4933{
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04004934 unsigned long flags;
4935 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
4937 ENTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04004939 spin_lock_irqsave(scsi_cmd->device->host->host_lock, flags);
4940 rc = ipr_cancel_op(scsi_cmd);
4941 spin_unlock_irqrestore(scsi_cmd->device->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
4943 LEAVE;
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04004944 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945}
4946
4947/**
4948 * ipr_handle_other_interrupt - Handle "other" interrupts
4949 * @ioa_cfg: ioa config struct
Wayne Boyer634651f2010-08-27 14:45:07 -07004950 * @int_reg: interrupt register
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 *
4952 * Return value:
4953 * IRQ_NONE / IRQ_HANDLED
4954 **/
Wayne Boyer634651f2010-08-27 14:45:07 -07004955static irqreturn_t ipr_handle_other_interrupt(struct ipr_ioa_cfg *ioa_cfg,
4956 volatile u32 int_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957{
4958 irqreturn_t rc = IRQ_HANDLED;
4959
4960 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
4961 /* Mask the interrupt */
4962 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.set_interrupt_mask_reg);
4963
4964 /* Clear the interrupt */
4965 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.clr_interrupt_reg);
4966 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
4967
4968 list_del(&ioa_cfg->reset_cmd->queue);
4969 del_timer(&ioa_cfg->reset_cmd->timer);
4970 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
4971 } else {
4972 if (int_reg & IPR_PCII_IOA_UNIT_CHECKED)
4973 ioa_cfg->ioa_unit_checked = 1;
4974 else
4975 dev_err(&ioa_cfg->pdev->dev,
4976 "Permanent IOA failure. 0x%08X\n", int_reg);
4977
4978 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
4979 ioa_cfg->sdt_state = GET_DUMP;
4980
4981 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
4982 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
4983 }
4984
4985 return rc;
4986}
4987
4988/**
Wayne Boyer3feeb892009-10-20 11:09:00 -07004989 * ipr_isr_eh - Interrupt service routine error handler
4990 * @ioa_cfg: ioa config struct
4991 * @msg: message to log
4992 *
4993 * Return value:
4994 * none
4995 **/
4996static void ipr_isr_eh(struct ipr_ioa_cfg *ioa_cfg, char *msg)
4997{
4998 ioa_cfg->errors_logged++;
4999 dev_err(&ioa_cfg->pdev->dev, "%s\n", msg);
5000
5001 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5002 ioa_cfg->sdt_state = GET_DUMP;
5003
5004 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5005}
5006
5007/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008 * ipr_isr - Interrupt service routine
5009 * @irq: irq number
5010 * @devp: pointer to ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 *
5012 * Return value:
5013 * IRQ_NONE / IRQ_HANDLED
5014 **/
David Howells7d12e782006-10-05 14:55:46 +01005015static irqreturn_t ipr_isr(int irq, void *devp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016{
5017 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)devp;
5018 unsigned long lock_flags = 0;
Wayne Boyer634651f2010-08-27 14:45:07 -07005019 volatile u32 int_reg, int_mask_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 u32 ioasc;
5021 u16 cmd_index;
Wayne Boyer3feeb892009-10-20 11:09:00 -07005022 int num_hrrq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 struct ipr_cmnd *ipr_cmd;
5024 irqreturn_t rc = IRQ_NONE;
5025
5026 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
5027
5028 /* If interrupts are disabled, ignore the interrupt */
5029 if (!ioa_cfg->allow_interrupts) {
5030 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5031 return IRQ_NONE;
5032 }
5033
Wayne Boyer634651f2010-08-27 14:45:07 -07005034 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
5035 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32) & ~int_mask_reg;
5036
5037 /* If an interrupt on the adapter did not occur, ignore it.
5038 * Or in the case of SIS 64, check for a stage change interrupt.
5039 */
5040 if (unlikely((int_reg & IPR_PCII_OPER_INTERRUPTS) == 0)) {
5041 if (ioa_cfg->sis64) {
5042 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
5043 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5044 if (int_reg & IPR_PCII_IPL_STAGE_CHANGE) {
5045
5046 /* clear stage change */
5047 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.clr_interrupt_reg);
5048 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5049 list_del(&ioa_cfg->reset_cmd->queue);
5050 del_timer(&ioa_cfg->reset_cmd->timer);
5051 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
5052 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5053 return IRQ_HANDLED;
5054 }
5055 }
5056
5057 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5058 return IRQ_NONE;
5059 }
5060
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 while (1) {
5062 ipr_cmd = NULL;
5063
5064 while ((be32_to_cpu(*ioa_cfg->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5065 ioa_cfg->toggle_bit) {
5066
5067 cmd_index = (be32_to_cpu(*ioa_cfg->hrrq_curr) &
5068 IPR_HRRQ_REQ_RESP_HANDLE_MASK) >> IPR_HRRQ_REQ_RESP_HANDLE_SHIFT;
5069
5070 if (unlikely(cmd_index >= IPR_NUM_CMD_BLKS)) {
Wayne Boyer3feeb892009-10-20 11:09:00 -07005071 ipr_isr_eh(ioa_cfg, "Invalid response handle from IOA");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5073 return IRQ_HANDLED;
5074 }
5075
5076 ipr_cmd = ioa_cfg->ipr_cmnd_list[cmd_index];
5077
Wayne Boyer96d21f02010-05-10 09:13:27 -07005078 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, ioasc);
5081
5082 list_del(&ipr_cmd->queue);
5083 del_timer(&ipr_cmd->timer);
5084 ipr_cmd->done(ipr_cmd);
5085
5086 rc = IRQ_HANDLED;
5087
5088 if (ioa_cfg->hrrq_curr < ioa_cfg->hrrq_end) {
5089 ioa_cfg->hrrq_curr++;
5090 } else {
5091 ioa_cfg->hrrq_curr = ioa_cfg->hrrq_start;
5092 ioa_cfg->toggle_bit ^= 1u;
5093 }
5094 }
5095
5096 if (ipr_cmd != NULL) {
5097 /* Clear the PCI interrupt */
Wayne Boyer3feeb892009-10-20 11:09:00 -07005098 do {
Wayne Boyer214777b2010-02-19 13:24:26 -08005099 writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg32);
Wayne Boyer634651f2010-08-27 14:45:07 -07005100 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32) & ~int_mask_reg;
Wayne Boyer3feeb892009-10-20 11:09:00 -07005101 } while (int_reg & IPR_PCII_HRRQ_UPDATED &&
5102 num_hrrq++ < IPR_MAX_HRRQ_RETRIES);
5103
5104 if (int_reg & IPR_PCII_HRRQ_UPDATED) {
5105 ipr_isr_eh(ioa_cfg, "Error clearing HRRQ");
5106 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5107 return IRQ_HANDLED;
5108 }
5109
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 } else
5111 break;
5112 }
5113
5114 if (unlikely(rc == IRQ_NONE))
Wayne Boyer634651f2010-08-27 14:45:07 -07005115 rc = ipr_handle_other_interrupt(ioa_cfg, int_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
5117 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5118 return rc;
5119}
5120
5121/**
Wayne Boyera32c0552010-02-19 13:23:36 -08005122 * ipr_build_ioadl64 - Build a scatter/gather list and map the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 * @ioa_cfg: ioa config struct
5124 * @ipr_cmd: ipr command struct
5125 *
5126 * Return value:
5127 * 0 on success / -1 on failure
5128 **/
Wayne Boyera32c0552010-02-19 13:23:36 -08005129static int ipr_build_ioadl64(struct ipr_ioa_cfg *ioa_cfg,
5130 struct ipr_cmnd *ipr_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131{
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005132 int i, nseg;
5133 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 u32 length;
5135 u32 ioadl_flags = 0;
5136 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5137 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08005138 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005140 length = scsi_bufflen(scsi_cmd);
5141 if (!length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 return 0;
5143
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005144 nseg = scsi_dma_map(scsi_cmd);
5145 if (nseg < 0) {
5146 dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
5147 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 }
5149
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005150 ipr_cmd->dma_use_sg = nseg;
5151
Wayne Boyer438b0332010-05-10 09:13:00 -07005152 ioarcb->data_transfer_length = cpu_to_be32(length);
Wayne Boyerb8803b12010-05-14 08:55:13 -07005153 ioarcb->ioadl_len =
5154 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
Wayne Boyer438b0332010-05-10 09:13:00 -07005155
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005156 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5157 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5158 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08005159 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE)
5160 ioadl_flags = IPR_IOADL_FLAGS_READ;
5161
5162 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5163 ioadl64[i].flags = cpu_to_be32(ioadl_flags);
5164 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(sg));
5165 ioadl64[i].address = cpu_to_be64(sg_dma_address(sg));
5166 }
5167
5168 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5169 return 0;
5170}
5171
5172/**
5173 * ipr_build_ioadl - Build a scatter/gather list and map the buffer
5174 * @ioa_cfg: ioa config struct
5175 * @ipr_cmd: ipr command struct
5176 *
5177 * Return value:
5178 * 0 on success / -1 on failure
5179 **/
5180static int ipr_build_ioadl(struct ipr_ioa_cfg *ioa_cfg,
5181 struct ipr_cmnd *ipr_cmd)
5182{
5183 int i, nseg;
5184 struct scatterlist *sg;
5185 u32 length;
5186 u32 ioadl_flags = 0;
5187 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5188 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
5189 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
5190
5191 length = scsi_bufflen(scsi_cmd);
5192 if (!length)
5193 return 0;
5194
5195 nseg = scsi_dma_map(scsi_cmd);
5196 if (nseg < 0) {
5197 dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
5198 return -1;
5199 }
5200
5201 ipr_cmd->dma_use_sg = nseg;
5202
5203 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5204 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5205 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
5206 ioarcb->data_transfer_length = cpu_to_be32(length);
5207 ioarcb->ioadl_len =
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005208 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5209 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE) {
5210 ioadl_flags = IPR_IOADL_FLAGS_READ;
5211 ioarcb->read_data_transfer_length = cpu_to_be32(length);
5212 ioarcb->read_ioadl_len =
5213 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5214 }
5215
Wayne Boyera32c0552010-02-19 13:23:36 -08005216 if (ipr_cmd->dma_use_sg <= ARRAY_SIZE(ioarcb->u.add_data.u.ioadl)) {
5217 ioadl = ioarcb->u.add_data.u.ioadl;
5218 ioarcb->write_ioadl_addr = cpu_to_be32((ipr_cmd->dma_addr) +
5219 offsetof(struct ipr_ioarcb, u.add_data));
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005220 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
5221 }
5222
5223 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5224 ioadl[i].flags_and_data_len =
5225 cpu_to_be32(ioadl_flags | sg_dma_len(sg));
5226 ioadl[i].address = cpu_to_be32(sg_dma_address(sg));
5227 }
5228
5229 ioadl[i-1].flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231}
5232
5233/**
5234 * ipr_get_task_attributes - Translate SPI Q-Tag to task attributes
5235 * @scsi_cmd: scsi command struct
5236 *
5237 * Return value:
5238 * task attributes
5239 **/
5240static u8 ipr_get_task_attributes(struct scsi_cmnd *scsi_cmd)
5241{
5242 u8 tag[2];
5243 u8 rc = IPR_FLAGS_LO_UNTAGGED_TASK;
5244
5245 if (scsi_populate_tag_msg(scsi_cmd, tag)) {
5246 switch (tag[0]) {
5247 case MSG_SIMPLE_TAG:
5248 rc = IPR_FLAGS_LO_SIMPLE_TASK;
5249 break;
5250 case MSG_HEAD_TAG:
5251 rc = IPR_FLAGS_LO_HEAD_OF_Q_TASK;
5252 break;
5253 case MSG_ORDERED_TAG:
5254 rc = IPR_FLAGS_LO_ORDERED_TASK;
5255 break;
5256 };
5257 }
5258
5259 return rc;
5260}
5261
5262/**
5263 * ipr_erp_done - Process completion of ERP for a device
5264 * @ipr_cmd: ipr command struct
5265 *
5266 * This function copies the sense buffer into the scsi_cmd
5267 * struct and pushes the scsi_done function.
5268 *
5269 * Return value:
5270 * nothing
5271 **/
5272static void ipr_erp_done(struct ipr_cmnd *ipr_cmd)
5273{
5274 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5275 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
5276 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005277 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
5279 if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
5280 scsi_cmd->result |= (DID_ERROR << 16);
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005281 scmd_printk(KERN_ERR, scsi_cmd,
5282 "Request Sense failed with IOASC: 0x%08X\n", ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 } else {
5284 memcpy(scsi_cmd->sense_buffer, ipr_cmd->sense_buffer,
5285 SCSI_SENSE_BUFFERSIZE);
5286 }
5287
5288 if (res) {
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005289 if (!ipr_is_naca_model(res))
5290 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 res->in_erp = 0;
5292 }
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005293 scsi_dma_unmap(ipr_cmd->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
5295 scsi_cmd->scsi_done(scsi_cmd);
5296}
5297
5298/**
5299 * ipr_reinit_ipr_cmnd_for_erp - Re-initialize a cmnd block to be used for ERP
5300 * @ipr_cmd: ipr command struct
5301 *
5302 * Return value:
5303 * none
5304 **/
5305static void ipr_reinit_ipr_cmnd_for_erp(struct ipr_cmnd *ipr_cmd)
5306{
Brian King51b1c7e2007-03-29 12:43:50 -05005307 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005308 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
Wayne Boyera32c0552010-02-19 13:23:36 -08005309 dma_addr_t dma_addr = ipr_cmd->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310
5311 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
Wayne Boyera32c0552010-02-19 13:23:36 -08005312 ioarcb->data_transfer_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 ioarcb->read_data_transfer_length = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -08005314 ioarcb->ioadl_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 ioarcb->read_ioadl_len = 0;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005316 ioasa->hdr.ioasc = 0;
5317 ioasa->hdr.residual_data_len = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -08005318
5319 if (ipr_cmd->ioa_cfg->sis64)
5320 ioarcb->u.sis64_addr_data.data_ioadl_addr =
5321 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
5322 else {
5323 ioarcb->write_ioadl_addr =
5324 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
5325 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
5326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327}
5328
5329/**
5330 * ipr_erp_request_sense - Send request sense to a device
5331 * @ipr_cmd: ipr command struct
5332 *
5333 * This function sends a request sense to a device as a result
5334 * of a check condition.
5335 *
5336 * Return value:
5337 * nothing
5338 **/
5339static void ipr_erp_request_sense(struct ipr_cmnd *ipr_cmd)
5340{
5341 struct ipr_cmd_pkt *cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005342 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343
5344 if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
5345 ipr_erp_done(ipr_cmd);
5346 return;
5347 }
5348
5349 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
5350
5351 cmd_pkt->request_type = IPR_RQTYPE_SCSICDB;
5352 cmd_pkt->cdb[0] = REQUEST_SENSE;
5353 cmd_pkt->cdb[4] = SCSI_SENSE_BUFFERSIZE;
5354 cmd_pkt->flags_hi |= IPR_FLAGS_HI_SYNC_OVERRIDE;
5355 cmd_pkt->flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
5356 cmd_pkt->timeout = cpu_to_be16(IPR_REQUEST_SENSE_TIMEOUT / HZ);
5357
Wayne Boyera32c0552010-02-19 13:23:36 -08005358 ipr_init_ioadl(ipr_cmd, ipr_cmd->sense_buffer_dma,
5359 SCSI_SENSE_BUFFERSIZE, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
5361 ipr_do_req(ipr_cmd, ipr_erp_done, ipr_timeout,
5362 IPR_REQUEST_SENSE_TIMEOUT * 2);
5363}
5364
5365/**
5366 * ipr_erp_cancel_all - Send cancel all to a device
5367 * @ipr_cmd: ipr command struct
5368 *
5369 * This function sends a cancel all to a device to clear the
5370 * queue. If we are running TCQ on the device, QERR is set to 1,
5371 * which means all outstanding ops have been dropped on the floor.
5372 * Cancel all will return them to us.
5373 *
5374 * Return value:
5375 * nothing
5376 **/
5377static void ipr_erp_cancel_all(struct ipr_cmnd *ipr_cmd)
5378{
5379 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5380 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
5381 struct ipr_cmd_pkt *cmd_pkt;
5382
5383 res->in_erp = 1;
5384
5385 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
5386
5387 if (!scsi_get_tag_type(scsi_cmd->device)) {
5388 ipr_erp_request_sense(ipr_cmd);
5389 return;
5390 }
5391
5392 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
5393 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5394 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
5395
5396 ipr_do_req(ipr_cmd, ipr_erp_request_sense, ipr_timeout,
5397 IPR_CANCEL_ALL_TIMEOUT);
5398}
5399
5400/**
5401 * ipr_dump_ioasa - Dump contents of IOASA
5402 * @ioa_cfg: ioa config struct
5403 * @ipr_cmd: ipr command struct
Brian Kingfe964d02006-03-29 09:37:29 -06005404 * @res: resource entry struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 *
5406 * This function is invoked by the interrupt handler when ops
5407 * fail. It will log the IOASA if appropriate. Only called
5408 * for GPDD ops.
5409 *
5410 * Return value:
5411 * none
5412 **/
5413static void ipr_dump_ioasa(struct ipr_ioa_cfg *ioa_cfg,
Brian Kingfe964d02006-03-29 09:37:29 -06005414 struct ipr_cmnd *ipr_cmd, struct ipr_resource_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415{
5416 int i;
5417 u16 data_len;
Brian Kingb0692dd2007-03-29 12:43:09 -05005418 u32 ioasc, fd_ioasc;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005419 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 __be32 *ioasa_data = (__be32 *)ioasa;
5421 int error_index;
5422
Wayne Boyer96d21f02010-05-10 09:13:27 -07005423 ioasc = be32_to_cpu(ioasa->hdr.ioasc) & IPR_IOASC_IOASC_MASK;
5424 fd_ioasc = be32_to_cpu(ioasa->hdr.fd_ioasc) & IPR_IOASC_IOASC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
5426 if (0 == ioasc)
5427 return;
5428
5429 if (ioa_cfg->log_level < IPR_DEFAULT_LOG_LEVEL)
5430 return;
5431
Brian Kingb0692dd2007-03-29 12:43:09 -05005432 if (ioasc == IPR_IOASC_BUS_WAS_RESET && fd_ioasc)
5433 error_index = ipr_get_error(fd_ioasc);
5434 else
5435 error_index = ipr_get_error(ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436
5437 if (ioa_cfg->log_level < IPR_MAX_LOG_LEVEL) {
5438 /* Don't log an error if the IOA already logged one */
Wayne Boyer96d21f02010-05-10 09:13:27 -07005439 if (ioasa->hdr.ilid != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 return;
5441
Brian Kingcc9bd5d2007-03-29 12:43:01 -05005442 if (!ipr_is_gscsi(res))
5443 return;
5444
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 if (ipr_error_table[error_index].log_ioasa == 0)
5446 return;
5447 }
5448
Brian Kingfe964d02006-03-29 09:37:29 -06005449 ipr_res_err(ioa_cfg, res, "%s\n", ipr_error_table[error_index].error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450
Wayne Boyer96d21f02010-05-10 09:13:27 -07005451 data_len = be16_to_cpu(ioasa->hdr.ret_stat_len);
5452 if (ioa_cfg->sis64 && sizeof(struct ipr_ioasa64) < data_len)
5453 data_len = sizeof(struct ipr_ioasa64);
5454 else if (!ioa_cfg->sis64 && sizeof(struct ipr_ioasa) < data_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455 data_len = sizeof(struct ipr_ioasa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
5457 ipr_err("IOASA Dump:\n");
5458
5459 for (i = 0; i < data_len / 4; i += 4) {
5460 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
5461 be32_to_cpu(ioasa_data[i]),
5462 be32_to_cpu(ioasa_data[i+1]),
5463 be32_to_cpu(ioasa_data[i+2]),
5464 be32_to_cpu(ioasa_data[i+3]));
5465 }
5466}
5467
5468/**
5469 * ipr_gen_sense - Generate SCSI sense data from an IOASA
5470 * @ioasa: IOASA
5471 * @sense_buf: sense data buffer
5472 *
5473 * Return value:
5474 * none
5475 **/
5476static void ipr_gen_sense(struct ipr_cmnd *ipr_cmd)
5477{
5478 u32 failing_lba;
5479 u8 *sense_buf = ipr_cmd->scsi_cmd->sense_buffer;
5480 struct ipr_resource_entry *res = ipr_cmd->scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005481 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
5482 u32 ioasc = be32_to_cpu(ioasa->hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
5484 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
5485
5486 if (ioasc >= IPR_FIRST_DRIVER_IOASC)
5487 return;
5488
5489 ipr_cmd->scsi_cmd->result = SAM_STAT_CHECK_CONDITION;
5490
5491 if (ipr_is_vset_device(res) &&
5492 ioasc == IPR_IOASC_MED_DO_NOT_REALLOC &&
5493 ioasa->u.vset.failing_lba_hi != 0) {
5494 sense_buf[0] = 0x72;
5495 sense_buf[1] = IPR_IOASC_SENSE_KEY(ioasc);
5496 sense_buf[2] = IPR_IOASC_SENSE_CODE(ioasc);
5497 sense_buf[3] = IPR_IOASC_SENSE_QUAL(ioasc);
5498
5499 sense_buf[7] = 12;
5500 sense_buf[8] = 0;
5501 sense_buf[9] = 0x0A;
5502 sense_buf[10] = 0x80;
5503
5504 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_hi);
5505
5506 sense_buf[12] = (failing_lba & 0xff000000) >> 24;
5507 sense_buf[13] = (failing_lba & 0x00ff0000) >> 16;
5508 sense_buf[14] = (failing_lba & 0x0000ff00) >> 8;
5509 sense_buf[15] = failing_lba & 0x000000ff;
5510
5511 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
5512
5513 sense_buf[16] = (failing_lba & 0xff000000) >> 24;
5514 sense_buf[17] = (failing_lba & 0x00ff0000) >> 16;
5515 sense_buf[18] = (failing_lba & 0x0000ff00) >> 8;
5516 sense_buf[19] = failing_lba & 0x000000ff;
5517 } else {
5518 sense_buf[0] = 0x70;
5519 sense_buf[2] = IPR_IOASC_SENSE_KEY(ioasc);
5520 sense_buf[12] = IPR_IOASC_SENSE_CODE(ioasc);
5521 sense_buf[13] = IPR_IOASC_SENSE_QUAL(ioasc);
5522
5523 /* Illegal request */
5524 if ((IPR_IOASC_SENSE_KEY(ioasc) == 0x05) &&
Wayne Boyer96d21f02010-05-10 09:13:27 -07005525 (be32_to_cpu(ioasa->hdr.ioasc_specific) & IPR_FIELD_POINTER_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526 sense_buf[7] = 10; /* additional length */
5527
5528 /* IOARCB was in error */
5529 if (IPR_IOASC_SENSE_CODE(ioasc) == 0x24)
5530 sense_buf[15] = 0xC0;
5531 else /* Parameter data was invalid */
5532 sense_buf[15] = 0x80;
5533
5534 sense_buf[16] =
5535 ((IPR_FIELD_POINTER_MASK &
Wayne Boyer96d21f02010-05-10 09:13:27 -07005536 be32_to_cpu(ioasa->hdr.ioasc_specific)) >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 sense_buf[17] =
5538 (IPR_FIELD_POINTER_MASK &
Wayne Boyer96d21f02010-05-10 09:13:27 -07005539 be32_to_cpu(ioasa->hdr.ioasc_specific)) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 } else {
5541 if (ioasc == IPR_IOASC_MED_DO_NOT_REALLOC) {
5542 if (ipr_is_vset_device(res))
5543 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
5544 else
5545 failing_lba = be32_to_cpu(ioasa->u.dasd.failing_lba);
5546
5547 sense_buf[0] |= 0x80; /* Or in the Valid bit */
5548 sense_buf[3] = (failing_lba & 0xff000000) >> 24;
5549 sense_buf[4] = (failing_lba & 0x00ff0000) >> 16;
5550 sense_buf[5] = (failing_lba & 0x0000ff00) >> 8;
5551 sense_buf[6] = failing_lba & 0x000000ff;
5552 }
5553
5554 sense_buf[7] = 6; /* additional length */
5555 }
5556 }
5557}
5558
5559/**
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005560 * ipr_get_autosense - Copy autosense data to sense buffer
5561 * @ipr_cmd: ipr command struct
5562 *
5563 * This function copies the autosense buffer to the buffer
5564 * in the scsi_cmd, if there is autosense available.
5565 *
5566 * Return value:
5567 * 1 if autosense was available / 0 if not
5568 **/
5569static int ipr_get_autosense(struct ipr_cmnd *ipr_cmd)
5570{
Wayne Boyer96d21f02010-05-10 09:13:27 -07005571 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
5572 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005573
Wayne Boyer96d21f02010-05-10 09:13:27 -07005574 if ((be32_to_cpu(ioasa->hdr.ioasc_specific) & IPR_AUTOSENSE_VALID) == 0)
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005575 return 0;
5576
Wayne Boyer96d21f02010-05-10 09:13:27 -07005577 if (ipr_cmd->ioa_cfg->sis64)
5578 memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa64->auto_sense.data,
5579 min_t(u16, be16_to_cpu(ioasa64->auto_sense.auto_sense_len),
5580 SCSI_SENSE_BUFFERSIZE));
5581 else
5582 memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa->auto_sense.data,
5583 min_t(u16, be16_to_cpu(ioasa->auto_sense.auto_sense_len),
5584 SCSI_SENSE_BUFFERSIZE));
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005585 return 1;
5586}
5587
5588/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 * ipr_erp_start - Process an error response for a SCSI op
5590 * @ioa_cfg: ioa config struct
5591 * @ipr_cmd: ipr command struct
5592 *
5593 * This function determines whether or not to initiate ERP
5594 * on the affected device.
5595 *
5596 * Return value:
5597 * nothing
5598 **/
5599static void ipr_erp_start(struct ipr_ioa_cfg *ioa_cfg,
5600 struct ipr_cmnd *ipr_cmd)
5601{
5602 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5603 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005604 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King8a048992007-04-26 16:00:10 -05005605 u32 masked_ioasc = ioasc & IPR_IOASC_IOASC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
5607 if (!res) {
5608 ipr_scsi_eh_done(ipr_cmd);
5609 return;
5610 }
5611
Brian King8a048992007-04-26 16:00:10 -05005612 if (!ipr_is_gscsi(res) && masked_ioasc != IPR_IOASC_HW_DEV_BUS_STATUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613 ipr_gen_sense(ipr_cmd);
5614
Brian Kingcc9bd5d2007-03-29 12:43:01 -05005615 ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
5616
Brian King8a048992007-04-26 16:00:10 -05005617 switch (masked_ioasc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618 case IPR_IOASC_ABORTED_CMD_TERM_BY_HOST:
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005619 if (ipr_is_naca_model(res))
5620 scsi_cmd->result |= (DID_ABORT << 16);
5621 else
5622 scsi_cmd->result |= (DID_IMM_RETRY << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 break;
5624 case IPR_IOASC_IR_RESOURCE_HANDLE:
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06005625 case IPR_IOASC_IR_NO_CMDS_TO_2ND_IOA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 scsi_cmd->result |= (DID_NO_CONNECT << 16);
5627 break;
5628 case IPR_IOASC_HW_SEL_TIMEOUT:
5629 scsi_cmd->result |= (DID_NO_CONNECT << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005630 if (!ipr_is_naca_model(res))
5631 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632 break;
5633 case IPR_IOASC_SYNC_REQUIRED:
5634 if (!res->in_erp)
5635 res->needs_sync_complete = 1;
5636 scsi_cmd->result |= (DID_IMM_RETRY << 16);
5637 break;
5638 case IPR_IOASC_MED_DO_NOT_REALLOC: /* prevent retries */
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06005639 case IPR_IOASA_IR_DUAL_IOA_DISABLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 scsi_cmd->result |= (DID_PASSTHROUGH << 16);
5641 break;
5642 case IPR_IOASC_BUS_WAS_RESET:
5643 case IPR_IOASC_BUS_WAS_RESET_BY_OTHER:
5644 /*
5645 * Report the bus reset and ask for a retry. The device
5646 * will give CC/UA the next command.
5647 */
5648 if (!res->resetting_device)
5649 scsi_report_bus_reset(ioa_cfg->host, scsi_cmd->device->channel);
5650 scsi_cmd->result |= (DID_ERROR << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005651 if (!ipr_is_naca_model(res))
5652 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653 break;
5654 case IPR_IOASC_HW_DEV_BUS_STATUS:
5655 scsi_cmd->result |= IPR_IOASC_SENSE_STATUS(ioasc);
5656 if (IPR_IOASC_SENSE_STATUS(ioasc) == SAM_STAT_CHECK_CONDITION) {
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005657 if (!ipr_get_autosense(ipr_cmd)) {
5658 if (!ipr_is_naca_model(res)) {
5659 ipr_erp_cancel_all(ipr_cmd);
5660 return;
5661 }
5662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 }
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005664 if (!ipr_is_naca_model(res))
5665 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 break;
5667 case IPR_IOASC_NR_INIT_CMD_REQUIRED:
5668 break;
5669 default:
Brian King5b7304f2006-08-02 14:57:51 -05005670 if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
5671 scsi_cmd->result |= (DID_ERROR << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005672 if (!ipr_is_vset_device(res) && !ipr_is_naca_model(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673 res->needs_sync_complete = 1;
5674 break;
5675 }
5676
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005677 scsi_dma_unmap(ipr_cmd->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
5679 scsi_cmd->scsi_done(scsi_cmd);
5680}
5681
5682/**
5683 * ipr_scsi_done - mid-layer done function
5684 * @ipr_cmd: ipr command struct
5685 *
5686 * This function is invoked by the interrupt handler for
5687 * ops generated by the SCSI mid-layer
5688 *
5689 * Return value:
5690 * none
5691 **/
5692static void ipr_scsi_done(struct ipr_cmnd *ipr_cmd)
5693{
5694 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
5695 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005696 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697
Wayne Boyer96d21f02010-05-10 09:13:27 -07005698 scsi_set_resid(scsi_cmd, be32_to_cpu(ipr_cmd->s.ioasa.hdr.residual_data_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
5700 if (likely(IPR_IOASC_SENSE_KEY(ioasc) == 0)) {
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005701 scsi_dma_unmap(ipr_cmd->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
5703 scsi_cmd->scsi_done(scsi_cmd);
5704 } else
5705 ipr_erp_start(ioa_cfg, ipr_cmd);
5706}
5707
5708/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 * ipr_queuecommand - Queue a mid-layer request
5710 * @scsi_cmd: scsi command struct
5711 * @done: done function
5712 *
5713 * This function queues a request generated by the mid-layer.
5714 *
5715 * Return value:
5716 * 0 on success
5717 * SCSI_MLQUEUE_DEVICE_BUSY if device is busy
5718 * SCSI_MLQUEUE_HOST_BUSY if host is busy
5719 **/
Jeff Garzikf2812332010-11-16 02:10:29 -05005720static int ipr_queuecommand_lck(struct scsi_cmnd *scsi_cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 void (*done) (struct scsi_cmnd *))
5722{
5723 struct ipr_ioa_cfg *ioa_cfg;
5724 struct ipr_resource_entry *res;
5725 struct ipr_ioarcb *ioarcb;
5726 struct ipr_cmnd *ipr_cmd;
5727 int rc = 0;
5728
5729 scsi_cmd->scsi_done = done;
5730 ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
5731 res = scsi_cmd->device->hostdata;
5732 scsi_cmd->result = (DID_OK << 16);
5733
5734 /*
5735 * We are currently blocking all devices due to a host reset
5736 * We have told the host to stop giving us new requests, but
5737 * ERP ops don't count. FIXME
5738 */
5739 if (unlikely(!ioa_cfg->allow_cmds && !ioa_cfg->ioa_is_dead))
5740 return SCSI_MLQUEUE_HOST_BUSY;
5741
5742 /*
5743 * FIXME - Create scsi_set_host_offline interface
5744 * and the ioa_is_dead check can be removed
5745 */
5746 if (unlikely(ioa_cfg->ioa_is_dead || !res)) {
5747 memset(scsi_cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
5748 scsi_cmd->result = (DID_NO_CONNECT << 16);
5749 scsi_cmd->scsi_done(scsi_cmd);
5750 return 0;
5751 }
5752
Brian King35a39692006-09-25 12:39:20 -05005753 if (ipr_is_gata(res) && res->sata_port)
Jeff Garzikb27dcfb2010-11-17 22:56:48 -05005754 return ata_sas_queuecmd(scsi_cmd, res->sata_port->ap);
Brian King35a39692006-09-25 12:39:20 -05005755
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
5757 ioarcb = &ipr_cmd->ioarcb;
5758 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
5759
5760 memcpy(ioarcb->cmd_pkt.cdb, scsi_cmd->cmnd, scsi_cmd->cmd_len);
5761 ipr_cmd->scsi_cmd = scsi_cmd;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005762 ioarcb->res_handle = res->res_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 ipr_cmd->done = ipr_scsi_done;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005764 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_RES_PHYS_LOC(res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
5766 if (ipr_is_gscsi(res) || ipr_is_vset_device(res)) {
5767 if (scsi_cmd->underflow == 0)
5768 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
5769
5770 if (res->needs_sync_complete) {
5771 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_SYNC_COMPLETE;
5772 res->needs_sync_complete = 0;
5773 }
5774
5775 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
5776 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_DELAY_AFTER_RST;
5777 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_ALIGNED_BFR;
5778 ioarcb->cmd_pkt.flags_lo |= ipr_get_task_attributes(scsi_cmd);
5779 }
5780
5781 if (scsi_cmd->cmnd[0] >= 0xC0 &&
5782 (!ipr_is_gscsi(res) || scsi_cmd->cmnd[0] == IPR_QUERY_RSRC_STATE))
5783 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
5784
Wayne Boyera32c0552010-02-19 13:23:36 -08005785 if (likely(rc == 0)) {
5786 if (ioa_cfg->sis64)
5787 rc = ipr_build_ioadl64(ioa_cfg, ipr_cmd);
5788 else
5789 rc = ipr_build_ioadl(ioa_cfg, ipr_cmd);
5790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
5792 if (likely(rc == 0)) {
5793 mb();
Wayne Boyera32c0552010-02-19 13:23:36 -08005794 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 } else {
5796 list_move_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
5797 return SCSI_MLQUEUE_HOST_BUSY;
5798 }
5799
5800 return 0;
5801}
5802
Jeff Garzikf2812332010-11-16 02:10:29 -05005803static DEF_SCSI_QCMD(ipr_queuecommand)
5804
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805/**
Brian King35a39692006-09-25 12:39:20 -05005806 * ipr_ioctl - IOCTL handler
5807 * @sdev: scsi device struct
5808 * @cmd: IOCTL cmd
5809 * @arg: IOCTL arg
5810 *
5811 * Return value:
5812 * 0 on success / other on failure
5813 **/
Adrian Bunkbd705f22006-11-21 10:28:48 -06005814static int ipr_ioctl(struct scsi_device *sdev, int cmd, void __user *arg)
Brian King35a39692006-09-25 12:39:20 -05005815{
5816 struct ipr_resource_entry *res;
5817
5818 res = (struct ipr_resource_entry *)sdev->hostdata;
Brian King0ce3a7e2008-07-11 13:37:50 -05005819 if (res && ipr_is_gata(res)) {
5820 if (cmd == HDIO_GET_IDENTITY)
5821 return -ENOTTY;
Jeff Garzik94be9a52009-01-16 10:17:09 -05005822 return ata_sas_scsi_ioctl(res->sata_port->ap, sdev, cmd, arg);
Brian King0ce3a7e2008-07-11 13:37:50 -05005823 }
Brian King35a39692006-09-25 12:39:20 -05005824
5825 return -EINVAL;
5826}
5827
5828/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829 * ipr_info - Get information about the card/driver
5830 * @scsi_host: scsi host struct
5831 *
5832 * Return value:
5833 * pointer to buffer with description string
5834 **/
5835static const char * ipr_ioa_info(struct Scsi_Host *host)
5836{
5837 static char buffer[512];
5838 struct ipr_ioa_cfg *ioa_cfg;
5839 unsigned long lock_flags = 0;
5840
5841 ioa_cfg = (struct ipr_ioa_cfg *) host->hostdata;
5842
5843 spin_lock_irqsave(host->host_lock, lock_flags);
5844 sprintf(buffer, "IBM %X Storage Adapter", ioa_cfg->type);
5845 spin_unlock_irqrestore(host->host_lock, lock_flags);
5846
5847 return buffer;
5848}
5849
5850static struct scsi_host_template driver_template = {
5851 .module = THIS_MODULE,
5852 .name = "IPR",
5853 .info = ipr_ioa_info,
Brian King35a39692006-09-25 12:39:20 -05005854 .ioctl = ipr_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855 .queuecommand = ipr_queuecommand,
5856 .eh_abort_handler = ipr_eh_abort,
5857 .eh_device_reset_handler = ipr_eh_dev_reset,
5858 .eh_host_reset_handler = ipr_eh_host_reset,
5859 .slave_alloc = ipr_slave_alloc,
5860 .slave_configure = ipr_slave_configure,
5861 .slave_destroy = ipr_slave_destroy,
Brian King35a39692006-09-25 12:39:20 -05005862 .target_alloc = ipr_target_alloc,
5863 .target_destroy = ipr_target_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 .change_queue_depth = ipr_change_queue_depth,
5865 .change_queue_type = ipr_change_queue_type,
5866 .bios_param = ipr_biosparam,
5867 .can_queue = IPR_MAX_COMMANDS,
5868 .this_id = -1,
5869 .sg_tablesize = IPR_MAX_SGLIST,
5870 .max_sectors = IPR_IOA_MAX_SECTORS,
5871 .cmd_per_lun = IPR_MAX_CMD_PER_LUN,
5872 .use_clustering = ENABLE_CLUSTERING,
5873 .shost_attrs = ipr_ioa_attrs,
5874 .sdev_attrs = ipr_dev_attrs,
5875 .proc_name = IPR_NAME
5876};
5877
Brian King35a39692006-09-25 12:39:20 -05005878/**
5879 * ipr_ata_phy_reset - libata phy_reset handler
5880 * @ap: ata port to reset
5881 *
5882 **/
5883static void ipr_ata_phy_reset(struct ata_port *ap)
5884{
5885 unsigned long flags;
5886 struct ipr_sata_port *sata_port = ap->private_data;
5887 struct ipr_resource_entry *res = sata_port->res;
5888 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
5889 int rc;
5890
5891 ENTER;
5892 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
5893 while(ioa_cfg->in_reset_reload) {
5894 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
5895 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
5896 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
5897 }
5898
5899 if (!ioa_cfg->allow_cmds)
5900 goto out_unlock;
5901
5902 rc = ipr_device_reset(ioa_cfg, res);
5903
5904 if (rc) {
Tejun Heo3e4ec342010-05-10 21:41:30 +02005905 ap->link.device[0].class = ATA_DEV_NONE;
Brian King35a39692006-09-25 12:39:20 -05005906 goto out_unlock;
5907 }
5908
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005909 ap->link.device[0].class = res->ata_class;
5910 if (ap->link.device[0].class == ATA_DEV_UNKNOWN)
Tejun Heo3e4ec342010-05-10 21:41:30 +02005911 ap->link.device[0].class = ATA_DEV_NONE;
Brian King35a39692006-09-25 12:39:20 -05005912
5913out_unlock:
5914 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
5915 LEAVE;
5916}
5917
5918/**
5919 * ipr_ata_post_internal - Cleanup after an internal command
5920 * @qc: ATA queued command
5921 *
5922 * Return value:
5923 * none
5924 **/
5925static void ipr_ata_post_internal(struct ata_queued_cmd *qc)
5926{
5927 struct ipr_sata_port *sata_port = qc->ap->private_data;
5928 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
5929 struct ipr_cmnd *ipr_cmd;
5930 unsigned long flags;
5931
5932 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King73d98ff2006-11-21 10:27:58 -06005933 while(ioa_cfg->in_reset_reload) {
5934 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
5935 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
5936 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
5937 }
5938
Brian King35a39692006-09-25 12:39:20 -05005939 list_for_each_entry(ipr_cmd, &ioa_cfg->pending_q, queue) {
5940 if (ipr_cmd->qc == qc) {
5941 ipr_device_reset(ioa_cfg, sata_port->res);
5942 break;
5943 }
5944 }
5945 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
5946}
5947
5948/**
Brian King35a39692006-09-25 12:39:20 -05005949 * ipr_copy_sata_tf - Copy a SATA taskfile to an IOA data structure
5950 * @regs: destination
5951 * @tf: source ATA taskfile
5952 *
5953 * Return value:
5954 * none
5955 **/
5956static void ipr_copy_sata_tf(struct ipr_ioarcb_ata_regs *regs,
5957 struct ata_taskfile *tf)
5958{
5959 regs->feature = tf->feature;
5960 regs->nsect = tf->nsect;
5961 regs->lbal = tf->lbal;
5962 regs->lbam = tf->lbam;
5963 regs->lbah = tf->lbah;
5964 regs->device = tf->device;
5965 regs->command = tf->command;
5966 regs->hob_feature = tf->hob_feature;
5967 regs->hob_nsect = tf->hob_nsect;
5968 regs->hob_lbal = tf->hob_lbal;
5969 regs->hob_lbam = tf->hob_lbam;
5970 regs->hob_lbah = tf->hob_lbah;
5971 regs->ctl = tf->ctl;
5972}
5973
5974/**
5975 * ipr_sata_done - done function for SATA commands
5976 * @ipr_cmd: ipr command struct
5977 *
5978 * This function is invoked by the interrupt handler for
5979 * ops generated by the SCSI mid-layer to SATA devices
5980 *
5981 * Return value:
5982 * none
5983 **/
5984static void ipr_sata_done(struct ipr_cmnd *ipr_cmd)
5985{
5986 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
5987 struct ata_queued_cmd *qc = ipr_cmd->qc;
5988 struct ipr_sata_port *sata_port = qc->ap->private_data;
5989 struct ipr_resource_entry *res = sata_port->res;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005990 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King35a39692006-09-25 12:39:20 -05005991
Wayne Boyer96d21f02010-05-10 09:13:27 -07005992 if (ipr_cmd->ioa_cfg->sis64)
5993 memcpy(&sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
5994 sizeof(struct ipr_ioasa_gata));
5995 else
5996 memcpy(&sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
5997 sizeof(struct ipr_ioasa_gata));
Brian King35a39692006-09-25 12:39:20 -05005998 ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
5999
Wayne Boyer96d21f02010-05-10 09:13:27 -07006000 if (be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc_specific) & IPR_ATA_DEVICE_WAS_RESET)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006001 scsi_report_device_reset(ioa_cfg->host, res->bus, res->target);
Brian King35a39692006-09-25 12:39:20 -05006002
6003 if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
Wayne Boyer96d21f02010-05-10 09:13:27 -07006004 qc->err_mask |= __ac_err_mask(sata_port->ioasa.status);
Brian King35a39692006-09-25 12:39:20 -05006005 else
Wayne Boyer96d21f02010-05-10 09:13:27 -07006006 qc->err_mask |= ac_err_mask(sata_port->ioasa.status);
Brian King35a39692006-09-25 12:39:20 -05006007 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
6008 ata_qc_complete(qc);
6009}
6010
6011/**
Wayne Boyera32c0552010-02-19 13:23:36 -08006012 * ipr_build_ata_ioadl64 - Build an ATA scatter/gather list
6013 * @ipr_cmd: ipr command struct
6014 * @qc: ATA queued command
6015 *
6016 **/
6017static void ipr_build_ata_ioadl64(struct ipr_cmnd *ipr_cmd,
6018 struct ata_queued_cmd *qc)
6019{
6020 u32 ioadl_flags = 0;
6021 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
6022 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
6023 struct ipr_ioadl64_desc *last_ioadl64 = NULL;
6024 int len = qc->nbytes;
6025 struct scatterlist *sg;
6026 unsigned int si;
6027 dma_addr_t dma_addr = ipr_cmd->dma_addr;
6028
6029 if (len == 0)
6030 return;
6031
6032 if (qc->dma_dir == DMA_TO_DEVICE) {
6033 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
6034 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
6035 } else if (qc->dma_dir == DMA_FROM_DEVICE)
6036 ioadl_flags = IPR_IOADL_FLAGS_READ;
6037
6038 ioarcb->data_transfer_length = cpu_to_be32(len);
6039 ioarcb->ioadl_len =
6040 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
6041 ioarcb->u.sis64_addr_data.data_ioadl_addr =
6042 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ata_ioadl));
6043
6044 for_each_sg(qc->sg, sg, qc->n_elem, si) {
6045 ioadl64->flags = cpu_to_be32(ioadl_flags);
6046 ioadl64->data_len = cpu_to_be32(sg_dma_len(sg));
6047 ioadl64->address = cpu_to_be64(sg_dma_address(sg));
6048
6049 last_ioadl64 = ioadl64;
6050 ioadl64++;
6051 }
6052
6053 if (likely(last_ioadl64))
6054 last_ioadl64->flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
6055}
6056
6057/**
Brian King35a39692006-09-25 12:39:20 -05006058 * ipr_build_ata_ioadl - Build an ATA scatter/gather list
6059 * @ipr_cmd: ipr command struct
6060 * @qc: ATA queued command
6061 *
6062 **/
6063static void ipr_build_ata_ioadl(struct ipr_cmnd *ipr_cmd,
6064 struct ata_queued_cmd *qc)
6065{
6066 u32 ioadl_flags = 0;
6067 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08006068 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006069 struct ipr_ioadl_desc *last_ioadl = NULL;
James Bottomleydde20202008-02-19 11:36:56 +01006070 int len = qc->nbytes;
Brian King35a39692006-09-25 12:39:20 -05006071 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09006072 unsigned int si;
Brian King35a39692006-09-25 12:39:20 -05006073
6074 if (len == 0)
6075 return;
6076
6077 if (qc->dma_dir == DMA_TO_DEVICE) {
6078 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
6079 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08006080 ioarcb->data_transfer_length = cpu_to_be32(len);
6081 ioarcb->ioadl_len =
Brian King35a39692006-09-25 12:39:20 -05006082 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
6083 } else if (qc->dma_dir == DMA_FROM_DEVICE) {
6084 ioadl_flags = IPR_IOADL_FLAGS_READ;
6085 ioarcb->read_data_transfer_length = cpu_to_be32(len);
6086 ioarcb->read_ioadl_len =
6087 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
6088 }
6089
Tejun Heoff2aeb12007-12-05 16:43:11 +09006090 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Brian King35a39692006-09-25 12:39:20 -05006091 ioadl->flags_and_data_len = cpu_to_be32(ioadl_flags | sg_dma_len(sg));
6092 ioadl->address = cpu_to_be32(sg_dma_address(sg));
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006093
6094 last_ioadl = ioadl;
6095 ioadl++;
Brian King35a39692006-09-25 12:39:20 -05006096 }
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006097
6098 if (likely(last_ioadl))
6099 last_ioadl->flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
Brian King35a39692006-09-25 12:39:20 -05006100}
6101
6102/**
6103 * ipr_qc_issue - Issue a SATA qc to a device
6104 * @qc: queued command
6105 *
6106 * Return value:
6107 * 0 if success
6108 **/
6109static unsigned int ipr_qc_issue(struct ata_queued_cmd *qc)
6110{
6111 struct ata_port *ap = qc->ap;
6112 struct ipr_sata_port *sata_port = ap->private_data;
6113 struct ipr_resource_entry *res = sata_port->res;
6114 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6115 struct ipr_cmnd *ipr_cmd;
6116 struct ipr_ioarcb *ioarcb;
6117 struct ipr_ioarcb_ata_regs *regs;
6118
6119 if (unlikely(!ioa_cfg->allow_cmds || ioa_cfg->ioa_is_dead))
Brian King0feeed82007-03-29 12:43:43 -05006120 return AC_ERR_SYSTEM;
Brian King35a39692006-09-25 12:39:20 -05006121
6122 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
6123 ioarcb = &ipr_cmd->ioarcb;
Brian King35a39692006-09-25 12:39:20 -05006124
Wayne Boyera32c0552010-02-19 13:23:36 -08006125 if (ioa_cfg->sis64) {
6126 regs = &ipr_cmd->i.ata_ioadl.regs;
6127 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
6128 } else
6129 regs = &ioarcb->u.add_data.u.regs;
6130
6131 memset(regs, 0, sizeof(*regs));
6132 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(*regs));
Brian King35a39692006-09-25 12:39:20 -05006133
6134 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
6135 ipr_cmd->qc = qc;
6136 ipr_cmd->done = ipr_sata_done;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006137 ipr_cmd->ioarcb.res_handle = res->res_handle;
Brian King35a39692006-09-25 12:39:20 -05006138 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_ATA_PASSTHRU;
6139 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
6140 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
James Bottomleydde20202008-02-19 11:36:56 +01006141 ipr_cmd->dma_use_sg = qc->n_elem;
Brian King35a39692006-09-25 12:39:20 -05006142
Wayne Boyera32c0552010-02-19 13:23:36 -08006143 if (ioa_cfg->sis64)
6144 ipr_build_ata_ioadl64(ipr_cmd, qc);
6145 else
6146 ipr_build_ata_ioadl(ipr_cmd, qc);
6147
Brian King35a39692006-09-25 12:39:20 -05006148 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
6149 ipr_copy_sata_tf(regs, &qc->tf);
6150 memcpy(ioarcb->cmd_pkt.cdb, qc->cdb, IPR_MAX_CDB_LEN);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006151 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_RES_PHYS_LOC(res));
Brian King35a39692006-09-25 12:39:20 -05006152
6153 switch (qc->tf.protocol) {
6154 case ATA_PROT_NODATA:
6155 case ATA_PROT_PIO:
6156 break;
6157
6158 case ATA_PROT_DMA:
6159 regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
6160 break;
6161
Tejun Heo0dc36882007-12-18 16:34:43 -05006162 case ATAPI_PROT_PIO:
6163 case ATAPI_PROT_NODATA:
Brian King35a39692006-09-25 12:39:20 -05006164 regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
6165 break;
6166
Tejun Heo0dc36882007-12-18 16:34:43 -05006167 case ATAPI_PROT_DMA:
Brian King35a39692006-09-25 12:39:20 -05006168 regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
6169 regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
6170 break;
6171
6172 default:
6173 WARN_ON(1);
Brian King0feeed82007-03-29 12:43:43 -05006174 return AC_ERR_INVALID;
Brian King35a39692006-09-25 12:39:20 -05006175 }
6176
6177 mb();
Wayne Boyera32c0552010-02-19 13:23:36 -08006178
6179 ipr_send_command(ipr_cmd);
6180
Brian King35a39692006-09-25 12:39:20 -05006181 return 0;
6182}
6183
6184/**
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006185 * ipr_qc_fill_rtf - Read result TF
6186 * @qc: ATA queued command
6187 *
6188 * Return value:
6189 * true
6190 **/
6191static bool ipr_qc_fill_rtf(struct ata_queued_cmd *qc)
6192{
6193 struct ipr_sata_port *sata_port = qc->ap->private_data;
6194 struct ipr_ioasa_gata *g = &sata_port->ioasa;
6195 struct ata_taskfile *tf = &qc->result_tf;
6196
6197 tf->feature = g->error;
6198 tf->nsect = g->nsect;
6199 tf->lbal = g->lbal;
6200 tf->lbam = g->lbam;
6201 tf->lbah = g->lbah;
6202 tf->device = g->device;
6203 tf->command = g->status;
6204 tf->hob_nsect = g->hob_nsect;
6205 tf->hob_lbal = g->hob_lbal;
6206 tf->hob_lbam = g->hob_lbam;
6207 tf->hob_lbah = g->hob_lbah;
6208 tf->ctl = g->alt_status;
6209
6210 return true;
6211}
6212
Brian King35a39692006-09-25 12:39:20 -05006213static struct ata_port_operations ipr_sata_ops = {
Brian King35a39692006-09-25 12:39:20 -05006214 .phy_reset = ipr_ata_phy_reset,
Tejun Heoa1efdab2008-03-25 12:22:50 +09006215 .hardreset = ipr_sata_reset,
Brian King35a39692006-09-25 12:39:20 -05006216 .post_internal_cmd = ipr_ata_post_internal,
Brian King35a39692006-09-25 12:39:20 -05006217 .qc_prep = ata_noop_qc_prep,
6218 .qc_issue = ipr_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006219 .qc_fill_rtf = ipr_qc_fill_rtf,
Brian King35a39692006-09-25 12:39:20 -05006220 .port_start = ata_sas_port_start,
6221 .port_stop = ata_sas_port_stop
6222};
6223
6224static struct ata_port_info sata_port_info = {
Sergei Shtylyov9cbe0562011-02-04 22:05:48 +03006225 .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA,
Sergei Shtylyov0f2e0332011-01-21 20:32:01 +03006226 .pio_mask = ATA_PIO4_ONLY,
6227 .mwdma_mask = ATA_MWDMA2,
6228 .udma_mask = ATA_UDMA6,
Brian King35a39692006-09-25 12:39:20 -05006229 .port_ops = &ipr_sata_ops
6230};
6231
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232#ifdef CONFIG_PPC_PSERIES
6233static const u16 ipr_blocked_processors[] = {
6234 PV_NORTHSTAR,
6235 PV_PULSAR,
6236 PV_POWER4,
6237 PV_ICESTAR,
6238 PV_SSTAR,
6239 PV_POWER4p,
6240 PV_630,
6241 PV_630p
6242};
6243
6244/**
6245 * ipr_invalid_adapter - Determine if this adapter is supported on this hardware
6246 * @ioa_cfg: ioa cfg struct
6247 *
6248 * Adapters that use Gemstone revision < 3.1 do not work reliably on
6249 * certain pSeries hardware. This function determines if the given
6250 * adapter is in one of these confgurations or not.
6251 *
6252 * Return value:
6253 * 1 if adapter is not supported / 0 if adapter is supported
6254 **/
6255static int ipr_invalid_adapter(struct ipr_ioa_cfg *ioa_cfg)
6256{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257 int i;
6258
Auke Kok44c10132007-06-08 15:46:36 -07006259 if ((ioa_cfg->type == 0x5702) && (ioa_cfg->pdev->revision < 4)) {
6260 for (i = 0; i < ARRAY_SIZE(ipr_blocked_processors); i++){
6261 if (__is_processor(ipr_blocked_processors[i]))
6262 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263 }
6264 }
6265 return 0;
6266}
6267#else
6268#define ipr_invalid_adapter(ioa_cfg) 0
6269#endif
6270
6271/**
6272 * ipr_ioa_bringdown_done - IOA bring down completion.
6273 * @ipr_cmd: ipr command struct
6274 *
6275 * This function processes the completion of an adapter bring down.
6276 * It wakes any reset sleepers.
6277 *
6278 * Return value:
6279 * IPR_RC_JOB_RETURN
6280 **/
6281static int ipr_ioa_bringdown_done(struct ipr_cmnd *ipr_cmd)
6282{
6283 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6284
6285 ENTER;
6286 ioa_cfg->in_reset_reload = 0;
6287 ioa_cfg->reset_retries = 0;
6288 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
6289 wake_up_all(&ioa_cfg->reset_wait_q);
6290
6291 spin_unlock_irq(ioa_cfg->host->host_lock);
6292 scsi_unblock_requests(ioa_cfg->host);
6293 spin_lock_irq(ioa_cfg->host->host_lock);
6294 LEAVE;
6295
6296 return IPR_RC_JOB_RETURN;
6297}
6298
6299/**
6300 * ipr_ioa_reset_done - IOA reset completion.
6301 * @ipr_cmd: ipr command struct
6302 *
6303 * This function processes the completion of an adapter reset.
6304 * It schedules any necessary mid-layer add/removes and
6305 * wakes any reset sleepers.
6306 *
6307 * Return value:
6308 * IPR_RC_JOB_RETURN
6309 **/
6310static int ipr_ioa_reset_done(struct ipr_cmnd *ipr_cmd)
6311{
6312 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6313 struct ipr_resource_entry *res;
6314 struct ipr_hostrcb *hostrcb, *temp;
6315 int i = 0;
6316
6317 ENTER;
6318 ioa_cfg->in_reset_reload = 0;
6319 ioa_cfg->allow_cmds = 1;
6320 ioa_cfg->reset_cmd = NULL;
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -06006321 ioa_cfg->doorbell |= IPR_RUNTIME_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
6323 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
6324 if (ioa_cfg->allow_ml_add_del && (res->add_to_ml || res->del_from_ml)) {
6325 ipr_trace;
6326 break;
6327 }
6328 }
6329 schedule_work(&ioa_cfg->work_q);
6330
6331 list_for_each_entry_safe(hostrcb, temp, &ioa_cfg->hostrcb_free_q, queue) {
6332 list_del(&hostrcb->queue);
6333 if (i++ < IPR_NUM_LOG_HCAMS)
6334 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
6335 else
6336 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
6337 }
6338
Brian King6bb04172007-04-26 16:00:08 -05006339 scsi_report_bus_reset(ioa_cfg->host, IPR_VSET_BUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340 dev_info(&ioa_cfg->pdev->dev, "IOA initialized.\n");
6341
6342 ioa_cfg->reset_retries = 0;
6343 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
6344 wake_up_all(&ioa_cfg->reset_wait_q);
6345
Mark Nelson30237852008-12-10 12:23:20 +11006346 spin_unlock(ioa_cfg->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347 scsi_unblock_requests(ioa_cfg->host);
Mark Nelson30237852008-12-10 12:23:20 +11006348 spin_lock(ioa_cfg->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349
6350 if (!ioa_cfg->allow_cmds)
6351 scsi_block_requests(ioa_cfg->host);
6352
6353 LEAVE;
6354 return IPR_RC_JOB_RETURN;
6355}
6356
6357/**
6358 * ipr_set_sup_dev_dflt - Initialize a Set Supported Device buffer
6359 * @supported_dev: supported device struct
6360 * @vpids: vendor product id struct
6361 *
6362 * Return value:
6363 * none
6364 **/
6365static void ipr_set_sup_dev_dflt(struct ipr_supported_device *supported_dev,
6366 struct ipr_std_inq_vpids *vpids)
6367{
6368 memset(supported_dev, 0, sizeof(struct ipr_supported_device));
6369 memcpy(&supported_dev->vpids, vpids, sizeof(struct ipr_std_inq_vpids));
6370 supported_dev->num_records = 1;
6371 supported_dev->data_length =
6372 cpu_to_be16(sizeof(struct ipr_supported_device));
6373 supported_dev->reserved = 0;
6374}
6375
6376/**
6377 * ipr_set_supported_devs - Send Set Supported Devices for a device
6378 * @ipr_cmd: ipr command struct
6379 *
Wayne Boyera32c0552010-02-19 13:23:36 -08006380 * This function sends a Set Supported Devices to the adapter
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381 *
6382 * Return value:
6383 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
6384 **/
6385static int ipr_set_supported_devs(struct ipr_cmnd *ipr_cmd)
6386{
6387 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6388 struct ipr_supported_device *supp_dev = &ioa_cfg->vpd_cbs->supp_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
6390 struct ipr_resource_entry *res = ipr_cmd->u.res;
6391
6392 ipr_cmd->job_step = ipr_ioa_reset_done;
6393
6394 list_for_each_entry_continue(res, &ioa_cfg->used_res_q, queue) {
Brian Kinge4fbf442006-03-29 09:37:22 -06006395 if (!ipr_is_scsi_disk(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 continue;
6397
6398 ipr_cmd->u.res = res;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006399 ipr_set_sup_dev_dflt(supp_dev, &res->std_inq_data.vpids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400
6401 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
6402 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
6403 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
6404
6405 ioarcb->cmd_pkt.cdb[0] = IPR_SET_SUPPORTED_DEVICES;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006406 ioarcb->cmd_pkt.cdb[1] = IPR_SET_ALL_SUPPORTED_DEVICES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 ioarcb->cmd_pkt.cdb[7] = (sizeof(struct ipr_supported_device) >> 8) & 0xff;
6408 ioarcb->cmd_pkt.cdb[8] = sizeof(struct ipr_supported_device) & 0xff;
6409
Wayne Boyera32c0552010-02-19 13:23:36 -08006410 ipr_init_ioadl(ipr_cmd,
6411 ioa_cfg->vpd_cbs_dma +
6412 offsetof(struct ipr_misc_cbs, supp_dev),
6413 sizeof(struct ipr_supported_device),
6414 IPR_IOADL_FLAGS_WRITE_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415
6416 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
6417 IPR_SET_SUP_DEVICE_TIMEOUT);
6418
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006419 if (!ioa_cfg->sis64)
6420 ipr_cmd->job_step = ipr_set_supported_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 return IPR_RC_JOB_RETURN;
6422 }
6423
6424 return IPR_RC_JOB_CONTINUE;
6425}
6426
6427/**
6428 * ipr_get_mode_page - Locate specified mode page
6429 * @mode_pages: mode page buffer
6430 * @page_code: page code to find
6431 * @len: minimum required length for mode page
6432 *
6433 * Return value:
6434 * pointer to mode page / NULL on failure
6435 **/
6436static void *ipr_get_mode_page(struct ipr_mode_pages *mode_pages,
6437 u32 page_code, u32 len)
6438{
6439 struct ipr_mode_page_hdr *mode_hdr;
6440 u32 page_length;
6441 u32 length;
6442
6443 if (!mode_pages || (mode_pages->hdr.length == 0))
6444 return NULL;
6445
6446 length = (mode_pages->hdr.length + 1) - 4 - mode_pages->hdr.block_desc_len;
6447 mode_hdr = (struct ipr_mode_page_hdr *)
6448 (mode_pages->data + mode_pages->hdr.block_desc_len);
6449
6450 while (length) {
6451 if (IPR_GET_MODE_PAGE_CODE(mode_hdr) == page_code) {
6452 if (mode_hdr->page_length >= (len - sizeof(struct ipr_mode_page_hdr)))
6453 return mode_hdr;
6454 break;
6455 } else {
6456 page_length = (sizeof(struct ipr_mode_page_hdr) +
6457 mode_hdr->page_length);
6458 length -= page_length;
6459 mode_hdr = (struct ipr_mode_page_hdr *)
6460 ((unsigned long)mode_hdr + page_length);
6461 }
6462 }
6463 return NULL;
6464}
6465
6466/**
6467 * ipr_check_term_power - Check for term power errors
6468 * @ioa_cfg: ioa config struct
6469 * @mode_pages: IOAFP mode pages buffer
6470 *
6471 * Check the IOAFP's mode page 28 for term power errors
6472 *
6473 * Return value:
6474 * nothing
6475 **/
6476static void ipr_check_term_power(struct ipr_ioa_cfg *ioa_cfg,
6477 struct ipr_mode_pages *mode_pages)
6478{
6479 int i;
6480 int entry_length;
6481 struct ipr_dev_bus_entry *bus;
6482 struct ipr_mode_page28 *mode_page;
6483
6484 mode_page = ipr_get_mode_page(mode_pages, 0x28,
6485 sizeof(struct ipr_mode_page28));
6486
6487 entry_length = mode_page->entry_length;
6488
6489 bus = mode_page->bus;
6490
6491 for (i = 0; i < mode_page->num_entries; i++) {
6492 if (bus->flags & IPR_SCSI_ATTR_NO_TERM_PWR) {
6493 dev_err(&ioa_cfg->pdev->dev,
6494 "Term power is absent on scsi bus %d\n",
6495 bus->res_addr.bus);
6496 }
6497
6498 bus = (struct ipr_dev_bus_entry *)((char *)bus + entry_length);
6499 }
6500}
6501
6502/**
6503 * ipr_scsi_bus_speed_limit - Limit the SCSI speed based on SES table
6504 * @ioa_cfg: ioa config struct
6505 *
6506 * Looks through the config table checking for SES devices. If
6507 * the SES device is in the SES table indicating a maximum SCSI
6508 * bus speed, the speed is limited for the bus.
6509 *
6510 * Return value:
6511 * none
6512 **/
6513static void ipr_scsi_bus_speed_limit(struct ipr_ioa_cfg *ioa_cfg)
6514{
6515 u32 max_xfer_rate;
6516 int i;
6517
6518 for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
6519 max_xfer_rate = ipr_get_max_scsi_speed(ioa_cfg, i,
6520 ioa_cfg->bus_attr[i].bus_width);
6521
6522 if (max_xfer_rate < ioa_cfg->bus_attr[i].max_xfer_rate)
6523 ioa_cfg->bus_attr[i].max_xfer_rate = max_xfer_rate;
6524 }
6525}
6526
6527/**
6528 * ipr_modify_ioafp_mode_page_28 - Modify IOAFP Mode Page 28
6529 * @ioa_cfg: ioa config struct
6530 * @mode_pages: mode page 28 buffer
6531 *
6532 * Updates mode page 28 based on driver configuration
6533 *
6534 * Return value:
6535 * none
6536 **/
6537static void ipr_modify_ioafp_mode_page_28(struct ipr_ioa_cfg *ioa_cfg,
6538 struct ipr_mode_pages *mode_pages)
6539{
6540 int i, entry_length;
6541 struct ipr_dev_bus_entry *bus;
6542 struct ipr_bus_attributes *bus_attr;
6543 struct ipr_mode_page28 *mode_page;
6544
6545 mode_page = ipr_get_mode_page(mode_pages, 0x28,
6546 sizeof(struct ipr_mode_page28));
6547
6548 entry_length = mode_page->entry_length;
6549
6550 /* Loop for each device bus entry */
6551 for (i = 0, bus = mode_page->bus;
6552 i < mode_page->num_entries;
6553 i++, bus = (struct ipr_dev_bus_entry *)((u8 *)bus + entry_length)) {
6554 if (bus->res_addr.bus > IPR_MAX_NUM_BUSES) {
6555 dev_err(&ioa_cfg->pdev->dev,
6556 "Invalid resource address reported: 0x%08X\n",
6557 IPR_GET_PHYS_LOC(bus->res_addr));
6558 continue;
6559 }
6560
6561 bus_attr = &ioa_cfg->bus_attr[i];
6562 bus->extended_reset_delay = IPR_EXTENDED_RESET_DELAY;
6563 bus->bus_width = bus_attr->bus_width;
6564 bus->max_xfer_rate = cpu_to_be32(bus_attr->max_xfer_rate);
6565 bus->flags &= ~IPR_SCSI_ATTR_QAS_MASK;
6566 if (bus_attr->qas_enabled)
6567 bus->flags |= IPR_SCSI_ATTR_ENABLE_QAS;
6568 else
6569 bus->flags |= IPR_SCSI_ATTR_DISABLE_QAS;
6570 }
6571}
6572
6573/**
6574 * ipr_build_mode_select - Build a mode select command
6575 * @ipr_cmd: ipr command struct
6576 * @res_handle: resource handle to send command to
6577 * @parm: Byte 2 of Mode Sense command
6578 * @dma_addr: DMA buffer address
6579 * @xfer_len: data transfer length
6580 *
6581 * Return value:
6582 * none
6583 **/
6584static void ipr_build_mode_select(struct ipr_cmnd *ipr_cmd,
Wayne Boyera32c0552010-02-19 13:23:36 -08006585 __be32 res_handle, u8 parm,
6586 dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
6589
6590 ioarcb->res_handle = res_handle;
6591 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
6592 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
6593 ioarcb->cmd_pkt.cdb[0] = MODE_SELECT;
6594 ioarcb->cmd_pkt.cdb[1] = parm;
6595 ioarcb->cmd_pkt.cdb[4] = xfer_len;
6596
Wayne Boyera32c0552010-02-19 13:23:36 -08006597 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_WRITE_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598}
6599
6600/**
6601 * ipr_ioafp_mode_select_page28 - Issue Mode Select Page 28 to IOA
6602 * @ipr_cmd: ipr command struct
6603 *
6604 * This function sets up the SCSI bus attributes and sends
6605 * a Mode Select for Page 28 to activate them.
6606 *
6607 * Return value:
6608 * IPR_RC_JOB_RETURN
6609 **/
6610static int ipr_ioafp_mode_select_page28(struct ipr_cmnd *ipr_cmd)
6611{
6612 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6613 struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
6614 int length;
6615
6616 ENTER;
Brian King47338042006-02-08 20:57:42 -06006617 ipr_scsi_bus_speed_limit(ioa_cfg);
6618 ipr_check_term_power(ioa_cfg, mode_pages);
6619 ipr_modify_ioafp_mode_page_28(ioa_cfg, mode_pages);
6620 length = mode_pages->hdr.length + 1;
6621 mode_pages->hdr.length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622
6623 ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
6624 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
6625 length);
6626
Wayne Boyerf72919e2010-02-19 13:24:21 -08006627 ipr_cmd->job_step = ipr_set_supported_devs;
6628 ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
6629 struct ipr_resource_entry, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
6631
6632 LEAVE;
6633 return IPR_RC_JOB_RETURN;
6634}
6635
6636/**
6637 * ipr_build_mode_sense - Builds a mode sense command
6638 * @ipr_cmd: ipr command struct
6639 * @res: resource entry struct
6640 * @parm: Byte 2 of mode sense command
6641 * @dma_addr: DMA address of mode sense buffer
6642 * @xfer_len: Size of DMA buffer
6643 *
6644 * Return value:
6645 * none
6646 **/
6647static void ipr_build_mode_sense(struct ipr_cmnd *ipr_cmd,
6648 __be32 res_handle,
Wayne Boyera32c0552010-02-19 13:23:36 -08006649 u8 parm, dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
6652
6653 ioarcb->res_handle = res_handle;
6654 ioarcb->cmd_pkt.cdb[0] = MODE_SENSE;
6655 ioarcb->cmd_pkt.cdb[2] = parm;
6656 ioarcb->cmd_pkt.cdb[4] = xfer_len;
6657 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
6658
Wayne Boyera32c0552010-02-19 13:23:36 -08006659 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660}
6661
6662/**
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06006663 * ipr_reset_cmd_failed - Handle failure of IOA reset command
6664 * @ipr_cmd: ipr command struct
6665 *
6666 * This function handles the failure of an IOA bringup command.
6667 *
6668 * Return value:
6669 * IPR_RC_JOB_RETURN
6670 **/
6671static int ipr_reset_cmd_failed(struct ipr_cmnd *ipr_cmd)
6672{
6673 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006674 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06006675
6676 dev_err(&ioa_cfg->pdev->dev,
6677 "0x%02X failed with IOASC: 0x%08X\n",
6678 ipr_cmd->ioarcb.cmd_pkt.cdb[0], ioasc);
6679
6680 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
6681 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
6682 return IPR_RC_JOB_RETURN;
6683}
6684
6685/**
6686 * ipr_reset_mode_sense_failed - Handle failure of IOAFP mode sense
6687 * @ipr_cmd: ipr command struct
6688 *
6689 * This function handles the failure of a Mode Sense to the IOAFP.
6690 * Some adapters do not handle all mode pages.
6691 *
6692 * Return value:
6693 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
6694 **/
6695static int ipr_reset_mode_sense_failed(struct ipr_cmnd *ipr_cmd)
6696{
Wayne Boyerf72919e2010-02-19 13:24:21 -08006697 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006698 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06006699
6700 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
Wayne Boyerf72919e2010-02-19 13:24:21 -08006701 ipr_cmd->job_step = ipr_set_supported_devs;
6702 ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
6703 struct ipr_resource_entry, queue);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06006704 return IPR_RC_JOB_CONTINUE;
6705 }
6706
6707 return ipr_reset_cmd_failed(ipr_cmd);
6708}
6709
6710/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 * ipr_ioafp_mode_sense_page28 - Issue Mode Sense Page 28 to IOA
6712 * @ipr_cmd: ipr command struct
6713 *
6714 * This function send a Page 28 mode sense to the IOA to
6715 * retrieve SCSI bus attributes.
6716 *
6717 * Return value:
6718 * IPR_RC_JOB_RETURN
6719 **/
6720static int ipr_ioafp_mode_sense_page28(struct ipr_cmnd *ipr_cmd)
6721{
6722 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6723
6724 ENTER;
6725 ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
6726 0x28, ioa_cfg->vpd_cbs_dma +
6727 offsetof(struct ipr_misc_cbs, mode_pages),
6728 sizeof(struct ipr_mode_pages));
6729
6730 ipr_cmd->job_step = ipr_ioafp_mode_select_page28;
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06006731 ipr_cmd->job_step_failed = ipr_reset_mode_sense_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732
6733 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
6734
6735 LEAVE;
6736 return IPR_RC_JOB_RETURN;
6737}
6738
6739/**
Brian Kingac09c342007-04-26 16:00:16 -05006740 * ipr_ioafp_mode_select_page24 - Issue Mode Select to IOA
6741 * @ipr_cmd: ipr command struct
6742 *
6743 * This function enables dual IOA RAID support if possible.
6744 *
6745 * Return value:
6746 * IPR_RC_JOB_RETURN
6747 **/
6748static int ipr_ioafp_mode_select_page24(struct ipr_cmnd *ipr_cmd)
6749{
6750 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6751 struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
6752 struct ipr_mode_page24 *mode_page;
6753 int length;
6754
6755 ENTER;
6756 mode_page = ipr_get_mode_page(mode_pages, 0x24,
6757 sizeof(struct ipr_mode_page24));
6758
6759 if (mode_page)
6760 mode_page->flags |= IPR_ENABLE_DUAL_IOA_AF;
6761
6762 length = mode_pages->hdr.length + 1;
6763 mode_pages->hdr.length = 0;
6764
6765 ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
6766 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
6767 length);
6768
6769 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
6770 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
6771
6772 LEAVE;
6773 return IPR_RC_JOB_RETURN;
6774}
6775
6776/**
6777 * ipr_reset_mode_sense_page24_failed - Handle failure of IOAFP mode sense
6778 * @ipr_cmd: ipr command struct
6779 *
6780 * This function handles the failure of a Mode Sense to the IOAFP.
6781 * Some adapters do not handle all mode pages.
6782 *
6783 * Return value:
6784 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
6785 **/
6786static int ipr_reset_mode_sense_page24_failed(struct ipr_cmnd *ipr_cmd)
6787{
Wayne Boyer96d21f02010-05-10 09:13:27 -07006788 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian Kingac09c342007-04-26 16:00:16 -05006789
6790 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
6791 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
6792 return IPR_RC_JOB_CONTINUE;
6793 }
6794
6795 return ipr_reset_cmd_failed(ipr_cmd);
6796}
6797
6798/**
6799 * ipr_ioafp_mode_sense_page24 - Issue Page 24 Mode Sense to IOA
6800 * @ipr_cmd: ipr command struct
6801 *
6802 * This function send a mode sense to the IOA to retrieve
6803 * the IOA Advanced Function Control mode page.
6804 *
6805 * Return value:
6806 * IPR_RC_JOB_RETURN
6807 **/
6808static int ipr_ioafp_mode_sense_page24(struct ipr_cmnd *ipr_cmd)
6809{
6810 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6811
6812 ENTER;
6813 ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
6814 0x24, ioa_cfg->vpd_cbs_dma +
6815 offsetof(struct ipr_misc_cbs, mode_pages),
6816 sizeof(struct ipr_mode_pages));
6817
6818 ipr_cmd->job_step = ipr_ioafp_mode_select_page24;
6819 ipr_cmd->job_step_failed = ipr_reset_mode_sense_page24_failed;
6820
6821 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
6822
6823 LEAVE;
6824 return IPR_RC_JOB_RETURN;
6825}
6826
6827/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828 * ipr_init_res_table - Initialize the resource table
6829 * @ipr_cmd: ipr command struct
6830 *
6831 * This function looks through the existing resource table, comparing
6832 * it with the config table. This function will take care of old/new
6833 * devices and schedule adding/removing them from the mid-layer
6834 * as appropriate.
6835 *
6836 * Return value:
6837 * IPR_RC_JOB_CONTINUE
6838 **/
6839static int ipr_init_res_table(struct ipr_cmnd *ipr_cmd)
6840{
6841 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6842 struct ipr_resource_entry *res, *temp;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006843 struct ipr_config_table_entry_wrapper cfgtew;
6844 int entries, found, flag, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845 LIST_HEAD(old_res);
6846
6847 ENTER;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006848 if (ioa_cfg->sis64)
6849 flag = ioa_cfg->u.cfg_table64->hdr64.flags;
6850 else
6851 flag = ioa_cfg->u.cfg_table->hdr.flags;
6852
6853 if (flag & IPR_UCODE_DOWNLOAD_REQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854 dev_err(&ioa_cfg->pdev->dev, "Microcode download required\n");
6855
6856 list_for_each_entry_safe(res, temp, &ioa_cfg->used_res_q, queue)
6857 list_move_tail(&res->queue, &old_res);
6858
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006859 if (ioa_cfg->sis64)
Wayne Boyer438b0332010-05-10 09:13:00 -07006860 entries = be16_to_cpu(ioa_cfg->u.cfg_table64->hdr64.num_entries);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006861 else
6862 entries = ioa_cfg->u.cfg_table->hdr.num_entries;
6863
6864 for (i = 0; i < entries; i++) {
6865 if (ioa_cfg->sis64)
6866 cfgtew.u.cfgte64 = &ioa_cfg->u.cfg_table64->dev[i];
6867 else
6868 cfgtew.u.cfgte = &ioa_cfg->u.cfg_table->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869 found = 0;
6870
6871 list_for_each_entry_safe(res, temp, &old_res, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006872 if (ipr_is_same_device(res, &cfgtew)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
6874 found = 1;
6875 break;
6876 }
6877 }
6878
6879 if (!found) {
6880 if (list_empty(&ioa_cfg->free_res_q)) {
6881 dev_err(&ioa_cfg->pdev->dev, "Too many devices attached\n");
6882 break;
6883 }
6884
6885 found = 1;
6886 res = list_entry(ioa_cfg->free_res_q.next,
6887 struct ipr_resource_entry, queue);
6888 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006889 ipr_init_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890 res->add_to_ml = 1;
Wayne Boyer56115592010-06-10 14:46:34 -07006891 } else if (res->sdev && (ipr_is_vset_device(res) || ipr_is_scsi_disk(res)))
6892 res->sdev->allow_restart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893
6894 if (found)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006895 ipr_update_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896 }
6897
6898 list_for_each_entry_safe(res, temp, &old_res, queue) {
6899 if (res->sdev) {
6900 res->del_from_ml = 1;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006901 res->res_handle = IPR_INVALID_RES_HANDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903 }
6904 }
6905
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006906 list_for_each_entry_safe(res, temp, &old_res, queue) {
6907 ipr_clear_res_target(res);
6908 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
6909 }
6910
Brian Kingac09c342007-04-26 16:00:16 -05006911 if (ioa_cfg->dual_raid && ipr_dual_ioa_raid)
6912 ipr_cmd->job_step = ipr_ioafp_mode_sense_page24;
6913 else
6914 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915
6916 LEAVE;
6917 return IPR_RC_JOB_CONTINUE;
6918}
6919
6920/**
6921 * ipr_ioafp_query_ioa_cfg - Send a Query IOA Config to the adapter.
6922 * @ipr_cmd: ipr command struct
6923 *
6924 * This function sends a Query IOA Configuration command
6925 * to the adapter to retrieve the IOA configuration table.
6926 *
6927 * Return value:
6928 * IPR_RC_JOB_RETURN
6929 **/
6930static int ipr_ioafp_query_ioa_cfg(struct ipr_cmnd *ipr_cmd)
6931{
6932 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6933 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
Brian Kingac09c342007-04-26 16:00:16 -05006935 struct ipr_inquiry_cap *cap = &ioa_cfg->vpd_cbs->cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936
6937 ENTER;
Brian Kingac09c342007-04-26 16:00:16 -05006938 if (cap->cap & IPR_CAP_DUAL_IOA_RAID)
6939 ioa_cfg->dual_raid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940 dev_info(&ioa_cfg->pdev->dev, "Adapter firmware version: %02X%02X%02X%02X\n",
6941 ucode_vpd->major_release, ucode_vpd->card_type,
6942 ucode_vpd->minor_release[0], ucode_vpd->minor_release[1]);
6943 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
6944 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
6945
6946 ioarcb->cmd_pkt.cdb[0] = IPR_QUERY_IOA_CONFIG;
Wayne Boyer438b0332010-05-10 09:13:00 -07006947 ioarcb->cmd_pkt.cdb[6] = (ioa_cfg->cfg_table_size >> 16) & 0xff;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006948 ioarcb->cmd_pkt.cdb[7] = (ioa_cfg->cfg_table_size >> 8) & 0xff;
6949 ioarcb->cmd_pkt.cdb[8] = ioa_cfg->cfg_table_size & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006951 ipr_init_ioadl(ipr_cmd, ioa_cfg->cfg_table_dma, ioa_cfg->cfg_table_size,
Wayne Boyera32c0552010-02-19 13:23:36 -08006952 IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953
6954 ipr_cmd->job_step = ipr_init_res_table;
6955
6956 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
6957
6958 LEAVE;
6959 return IPR_RC_JOB_RETURN;
6960}
6961
6962/**
6963 * ipr_ioafp_inquiry - Send an Inquiry to the adapter.
6964 * @ipr_cmd: ipr command struct
6965 *
6966 * This utility function sends an inquiry to the adapter.
6967 *
6968 * Return value:
6969 * none
6970 **/
6971static void ipr_ioafp_inquiry(struct ipr_cmnd *ipr_cmd, u8 flags, u8 page,
Wayne Boyera32c0552010-02-19 13:23:36 -08006972 dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973{
6974 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975
6976 ENTER;
6977 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
6978 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
6979
6980 ioarcb->cmd_pkt.cdb[0] = INQUIRY;
6981 ioarcb->cmd_pkt.cdb[1] = flags;
6982 ioarcb->cmd_pkt.cdb[2] = page;
6983 ioarcb->cmd_pkt.cdb[4] = xfer_len;
6984
Wayne Boyera32c0552010-02-19 13:23:36 -08006985 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986
6987 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
6988 LEAVE;
6989}
6990
6991/**
brking@us.ibm.com62275042005-11-01 17:01:14 -06006992 * ipr_inquiry_page_supported - Is the given inquiry page supported
6993 * @page0: inquiry page 0 buffer
6994 * @page: page code.
6995 *
6996 * This function determines if the specified inquiry page is supported.
6997 *
6998 * Return value:
6999 * 1 if page is supported / 0 if not
7000 **/
7001static int ipr_inquiry_page_supported(struct ipr_inquiry_page0 *page0, u8 page)
7002{
7003 int i;
7004
7005 for (i = 0; i < min_t(u8, page0->len, IPR_INQUIRY_PAGE0_ENTRIES); i++)
7006 if (page0->page[i] == page)
7007 return 1;
7008
7009 return 0;
7010}
7011
7012/**
Brian Kingac09c342007-04-26 16:00:16 -05007013 * ipr_ioafp_cap_inquiry - Send a Page 0xD0 Inquiry to the adapter.
7014 * @ipr_cmd: ipr command struct
7015 *
7016 * This function sends a Page 0xD0 inquiry to the adapter
7017 * to retrieve adapter capabilities.
7018 *
7019 * Return value:
7020 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7021 **/
7022static int ipr_ioafp_cap_inquiry(struct ipr_cmnd *ipr_cmd)
7023{
7024 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7025 struct ipr_inquiry_page0 *page0 = &ioa_cfg->vpd_cbs->page0_data;
7026 struct ipr_inquiry_cap *cap = &ioa_cfg->vpd_cbs->cap;
7027
7028 ENTER;
7029 ipr_cmd->job_step = ipr_ioafp_query_ioa_cfg;
7030 memset(cap, 0, sizeof(*cap));
7031
7032 if (ipr_inquiry_page_supported(page0, 0xD0)) {
7033 ipr_ioafp_inquiry(ipr_cmd, 1, 0xD0,
7034 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, cap),
7035 sizeof(struct ipr_inquiry_cap));
7036 return IPR_RC_JOB_RETURN;
7037 }
7038
7039 LEAVE;
7040 return IPR_RC_JOB_CONTINUE;
7041}
7042
7043/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044 * ipr_ioafp_page3_inquiry - Send a Page 3 Inquiry to the adapter.
7045 * @ipr_cmd: ipr command struct
7046 *
7047 * This function sends a Page 3 inquiry to the adapter
7048 * to retrieve software VPD information.
7049 *
7050 * Return value:
7051 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7052 **/
7053static int ipr_ioafp_page3_inquiry(struct ipr_cmnd *ipr_cmd)
7054{
7055 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007056
7057 ENTER;
7058
Brian Kingac09c342007-04-26 16:00:16 -05007059 ipr_cmd->job_step = ipr_ioafp_cap_inquiry;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007060
7061 ipr_ioafp_inquiry(ipr_cmd, 1, 3,
7062 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page3_data),
7063 sizeof(struct ipr_inquiry_page3));
7064
7065 LEAVE;
7066 return IPR_RC_JOB_RETURN;
7067}
7068
7069/**
7070 * ipr_ioafp_page0_inquiry - Send a Page 0 Inquiry to the adapter.
7071 * @ipr_cmd: ipr command struct
7072 *
7073 * This function sends a Page 0 inquiry to the adapter
7074 * to retrieve supported inquiry pages.
7075 *
7076 * Return value:
7077 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7078 **/
7079static int ipr_ioafp_page0_inquiry(struct ipr_cmnd *ipr_cmd)
7080{
7081 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082 char type[5];
7083
7084 ENTER;
7085
7086 /* Grab the type out of the VPD and store it away */
7087 memcpy(type, ioa_cfg->vpd_cbs->ioa_vpd.std_inq_data.vpids.product_id, 4);
7088 type[4] = '\0';
7089 ioa_cfg->type = simple_strtoul((char *)type, NULL, 16);
7090
brking@us.ibm.com62275042005-11-01 17:01:14 -06007091 ipr_cmd->job_step = ipr_ioafp_page3_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092
brking@us.ibm.com62275042005-11-01 17:01:14 -06007093 ipr_ioafp_inquiry(ipr_cmd, 1, 0,
7094 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page0_data),
7095 sizeof(struct ipr_inquiry_page0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096
7097 LEAVE;
7098 return IPR_RC_JOB_RETURN;
7099}
7100
7101/**
7102 * ipr_ioafp_std_inquiry - Send a Standard Inquiry to the adapter.
7103 * @ipr_cmd: ipr command struct
7104 *
7105 * This function sends a standard inquiry to the adapter.
7106 *
7107 * Return value:
7108 * IPR_RC_JOB_RETURN
7109 **/
7110static int ipr_ioafp_std_inquiry(struct ipr_cmnd *ipr_cmd)
7111{
7112 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7113
7114 ENTER;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007115 ipr_cmd->job_step = ipr_ioafp_page0_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116
7117 ipr_ioafp_inquiry(ipr_cmd, 0, 0,
7118 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, ioa_vpd),
7119 sizeof(struct ipr_ioa_vpd));
7120
7121 LEAVE;
7122 return IPR_RC_JOB_RETURN;
7123}
7124
7125/**
Wayne Boyer214777b2010-02-19 13:24:26 -08007126 * ipr_ioafp_identify_hrrq - Send Identify Host RRQ.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127 * @ipr_cmd: ipr command struct
7128 *
7129 * This function send an Identify Host Request Response Queue
7130 * command to establish the HRRQ with the adapter.
7131 *
7132 * Return value:
7133 * IPR_RC_JOB_RETURN
7134 **/
Wayne Boyer214777b2010-02-19 13:24:26 -08007135static int ipr_ioafp_identify_hrrq(struct ipr_cmnd *ipr_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136{
7137 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7138 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7139
7140 ENTER;
7141 dev_info(&ioa_cfg->pdev->dev, "Starting IOA initialization sequence.\n");
7142
7143 ioarcb->cmd_pkt.cdb[0] = IPR_ID_HOST_RR_Q;
7144 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7145
7146 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
Wayne Boyer214777b2010-02-19 13:24:26 -08007147 if (ioa_cfg->sis64)
7148 ioarcb->cmd_pkt.cdb[1] = 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149 ioarcb->cmd_pkt.cdb[2] =
Wayne Boyer214777b2010-02-19 13:24:26 -08007150 ((u64) ioa_cfg->host_rrq_dma >> 24) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151 ioarcb->cmd_pkt.cdb[3] =
Wayne Boyer214777b2010-02-19 13:24:26 -08007152 ((u64) ioa_cfg->host_rrq_dma >> 16) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153 ioarcb->cmd_pkt.cdb[4] =
Wayne Boyer214777b2010-02-19 13:24:26 -08007154 ((u64) ioa_cfg->host_rrq_dma >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 ioarcb->cmd_pkt.cdb[5] =
Wayne Boyer214777b2010-02-19 13:24:26 -08007156 ((u64) ioa_cfg->host_rrq_dma) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157 ioarcb->cmd_pkt.cdb[7] =
7158 ((sizeof(u32) * IPR_NUM_CMD_BLKS) >> 8) & 0xff;
7159 ioarcb->cmd_pkt.cdb[8] =
7160 (sizeof(u32) * IPR_NUM_CMD_BLKS) & 0xff;
7161
Wayne Boyer214777b2010-02-19 13:24:26 -08007162 if (ioa_cfg->sis64) {
7163 ioarcb->cmd_pkt.cdb[10] =
7164 ((u64) ioa_cfg->host_rrq_dma >> 56) & 0xff;
7165 ioarcb->cmd_pkt.cdb[11] =
7166 ((u64) ioa_cfg->host_rrq_dma >> 48) & 0xff;
7167 ioarcb->cmd_pkt.cdb[12] =
7168 ((u64) ioa_cfg->host_rrq_dma >> 40) & 0xff;
7169 ioarcb->cmd_pkt.cdb[13] =
7170 ((u64) ioa_cfg->host_rrq_dma >> 32) & 0xff;
7171 }
7172
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173 ipr_cmd->job_step = ipr_ioafp_std_inquiry;
7174
7175 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7176
7177 LEAVE;
7178 return IPR_RC_JOB_RETURN;
7179}
7180
7181/**
7182 * ipr_reset_timer_done - Adapter reset timer function
7183 * @ipr_cmd: ipr command struct
7184 *
7185 * Description: This function is used in adapter reset processing
7186 * for timing events. If the reset_cmd pointer in the IOA
7187 * config struct is not this adapter's we are doing nested
7188 * resets and fail_all_ops will take care of freeing the
7189 * command block.
7190 *
7191 * Return value:
7192 * none
7193 **/
7194static void ipr_reset_timer_done(struct ipr_cmnd *ipr_cmd)
7195{
7196 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7197 unsigned long lock_flags = 0;
7198
7199 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
7200
7201 if (ioa_cfg->reset_cmd == ipr_cmd) {
7202 list_del(&ipr_cmd->queue);
7203 ipr_cmd->done(ipr_cmd);
7204 }
7205
7206 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
7207}
7208
7209/**
7210 * ipr_reset_start_timer - Start a timer for adapter reset job
7211 * @ipr_cmd: ipr command struct
7212 * @timeout: timeout value
7213 *
7214 * Description: This function is used in adapter reset processing
7215 * for timing events. If the reset_cmd pointer in the IOA
7216 * config struct is not this adapter's we are doing nested
7217 * resets and fail_all_ops will take care of freeing the
7218 * command block.
7219 *
7220 * Return value:
7221 * none
7222 **/
7223static void ipr_reset_start_timer(struct ipr_cmnd *ipr_cmd,
7224 unsigned long timeout)
7225{
7226 list_add_tail(&ipr_cmd->queue, &ipr_cmd->ioa_cfg->pending_q);
7227 ipr_cmd->done = ipr_reset_ioa_job;
7228
7229 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
7230 ipr_cmd->timer.expires = jiffies + timeout;
7231 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_reset_timer_done;
7232 add_timer(&ipr_cmd->timer);
7233}
7234
7235/**
7236 * ipr_init_ioa_mem - Initialize ioa_cfg control block
7237 * @ioa_cfg: ioa cfg struct
7238 *
7239 * Return value:
7240 * nothing
7241 **/
7242static void ipr_init_ioa_mem(struct ipr_ioa_cfg *ioa_cfg)
7243{
7244 memset(ioa_cfg->host_rrq, 0, sizeof(u32) * IPR_NUM_CMD_BLKS);
7245
7246 /* Initialize Host RRQ pointers */
7247 ioa_cfg->hrrq_start = ioa_cfg->host_rrq;
7248 ioa_cfg->hrrq_end = &ioa_cfg->host_rrq[IPR_NUM_CMD_BLKS - 1];
7249 ioa_cfg->hrrq_curr = ioa_cfg->hrrq_start;
7250 ioa_cfg->toggle_bit = 1;
7251
7252 /* Zero out config table */
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007253 memset(ioa_cfg->u.cfg_table, 0, ioa_cfg->cfg_table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254}
7255
7256/**
Wayne Boyer214777b2010-02-19 13:24:26 -08007257 * ipr_reset_next_stage - Process IPL stage change based on feedback register.
7258 * @ipr_cmd: ipr command struct
7259 *
7260 * Return value:
7261 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7262 **/
7263static int ipr_reset_next_stage(struct ipr_cmnd *ipr_cmd)
7264{
7265 unsigned long stage, stage_time;
7266 u32 feedback;
7267 volatile u32 int_reg;
7268 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7269 u64 maskval = 0;
7270
7271 feedback = readl(ioa_cfg->regs.init_feedback_reg);
7272 stage = feedback & IPR_IPL_INIT_STAGE_MASK;
7273 stage_time = feedback & IPR_IPL_INIT_STAGE_TIME_MASK;
7274
7275 ipr_dbg("IPL stage = 0x%lx, IPL stage time = %ld\n", stage, stage_time);
7276
7277 /* sanity check the stage_time value */
Wayne Boyer438b0332010-05-10 09:13:00 -07007278 if (stage_time == 0)
7279 stage_time = IPR_IPL_INIT_DEFAULT_STAGE_TIME;
7280 else if (stage_time < IPR_IPL_INIT_MIN_STAGE_TIME)
Wayne Boyer214777b2010-02-19 13:24:26 -08007281 stage_time = IPR_IPL_INIT_MIN_STAGE_TIME;
7282 else if (stage_time > IPR_LONG_OPERATIONAL_TIMEOUT)
7283 stage_time = IPR_LONG_OPERATIONAL_TIMEOUT;
7284
7285 if (stage == IPR_IPL_INIT_STAGE_UNKNOWN) {
7286 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.set_interrupt_mask_reg);
7287 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7288 stage_time = ioa_cfg->transop_timeout;
7289 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
7290 } else if (stage == IPR_IPL_INIT_STAGE_TRANSOP) {
Wayne Boyer1df79ca2010-07-14 10:49:43 -07007291 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
7292 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
7293 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
7294 maskval = IPR_PCII_IPL_STAGE_CHANGE;
7295 maskval = (maskval << 32) | IPR_PCII_IOA_TRANS_TO_OPER;
7296 writeq(maskval, ioa_cfg->regs.set_interrupt_mask_reg);
7297 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7298 return IPR_RC_JOB_CONTINUE;
7299 }
Wayne Boyer214777b2010-02-19 13:24:26 -08007300 }
7301
7302 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
7303 ipr_cmd->timer.expires = jiffies + stage_time * HZ;
7304 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
7305 ipr_cmd->done = ipr_reset_ioa_job;
7306 add_timer(&ipr_cmd->timer);
7307 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
7308
7309 return IPR_RC_JOB_RETURN;
7310}
7311
7312/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313 * ipr_reset_enable_ioa - Enable the IOA following a reset.
7314 * @ipr_cmd: ipr command struct
7315 *
7316 * This function reinitializes some control blocks and
7317 * enables destructive diagnostics on the adapter.
7318 *
7319 * Return value:
7320 * IPR_RC_JOB_RETURN
7321 **/
7322static int ipr_reset_enable_ioa(struct ipr_cmnd *ipr_cmd)
7323{
7324 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7325 volatile u32 int_reg;
Wayne Boyer7be96902010-05-10 09:14:07 -07007326 volatile u64 maskval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327
7328 ENTER;
Wayne Boyer214777b2010-02-19 13:24:26 -08007329 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330 ipr_init_ioa_mem(ioa_cfg);
7331
7332 ioa_cfg->allow_interrupts = 1;
Wayne Boyer8701f182010-06-04 10:26:50 -07007333 if (ioa_cfg->sis64) {
7334 /* Set the adapter to the correct endian mode. */
7335 writel(IPR_ENDIAN_SWAP_KEY, ioa_cfg->regs.endian_swap_reg);
7336 int_reg = readl(ioa_cfg->regs.endian_swap_reg);
7337 }
7338
Wayne Boyer7be96902010-05-10 09:14:07 -07007339 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340
7341 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
7342 writel((IPR_PCII_ERROR_INTERRUPTS | IPR_PCII_HRRQ_UPDATED),
Wayne Boyer214777b2010-02-19 13:24:26 -08007343 ioa_cfg->regs.clr_interrupt_mask_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7345 return IPR_RC_JOB_CONTINUE;
7346 }
7347
7348 /* Enable destructive diagnostics on IOA */
Wayne Boyer214777b2010-02-19 13:24:26 -08007349 writel(ioa_cfg->doorbell, ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350
Wayne Boyer7be96902010-05-10 09:14:07 -07007351 if (ioa_cfg->sis64) {
7352 maskval = IPR_PCII_IPL_STAGE_CHANGE;
7353 maskval = (maskval << 32) | IPR_PCII_OPER_INTERRUPTS;
7354 writeq(maskval, ioa_cfg->regs.clr_interrupt_mask_reg);
7355 } else
7356 writel(IPR_PCII_OPER_INTERRUPTS, ioa_cfg->regs.clr_interrupt_mask_reg32);
Wayne Boyer214777b2010-02-19 13:24:26 -08007357
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7359
7360 dev_info(&ioa_cfg->pdev->dev, "Initializing IOA.\n");
7361
Wayne Boyer214777b2010-02-19 13:24:26 -08007362 if (ioa_cfg->sis64) {
7363 ipr_cmd->job_step = ipr_reset_next_stage;
7364 return IPR_RC_JOB_CONTINUE;
7365 }
7366
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
Brian King5469cb52007-03-29 12:42:40 -05007368 ipr_cmd->timer.expires = jiffies + (ioa_cfg->transop_timeout * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
7370 ipr_cmd->done = ipr_reset_ioa_job;
7371 add_timer(&ipr_cmd->timer);
7372 list_add_tail(&ipr_cmd->queue, &ioa_cfg->pending_q);
7373
7374 LEAVE;
7375 return IPR_RC_JOB_RETURN;
7376}
7377
7378/**
7379 * ipr_reset_wait_for_dump - Wait for a dump to timeout.
7380 * @ipr_cmd: ipr command struct
7381 *
7382 * This function is invoked when an adapter dump has run out
7383 * of processing time.
7384 *
7385 * Return value:
7386 * IPR_RC_JOB_CONTINUE
7387 **/
7388static int ipr_reset_wait_for_dump(struct ipr_cmnd *ipr_cmd)
7389{
7390 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7391
7392 if (ioa_cfg->sdt_state == GET_DUMP)
7393 ioa_cfg->sdt_state = ABORT_DUMP;
7394
7395 ipr_cmd->job_step = ipr_reset_alert;
7396
7397 return IPR_RC_JOB_CONTINUE;
7398}
7399
7400/**
7401 * ipr_unit_check_no_data - Log a unit check/no data error log
7402 * @ioa_cfg: ioa config struct
7403 *
7404 * Logs an error indicating the adapter unit checked, but for some
7405 * reason, we were unable to fetch the unit check buffer.
7406 *
7407 * Return value:
7408 * nothing
7409 **/
7410static void ipr_unit_check_no_data(struct ipr_ioa_cfg *ioa_cfg)
7411{
7412 ioa_cfg->errors_logged++;
7413 dev_err(&ioa_cfg->pdev->dev, "IOA unit check with no data\n");
7414}
7415
7416/**
7417 * ipr_get_unit_check_buffer - Get the unit check buffer from the IOA
7418 * @ioa_cfg: ioa config struct
7419 *
7420 * Fetches the unit check buffer from the adapter by clocking the data
7421 * through the mailbox register.
7422 *
7423 * Return value:
7424 * nothing
7425 **/
7426static void ipr_get_unit_check_buffer(struct ipr_ioa_cfg *ioa_cfg)
7427{
7428 unsigned long mailbox;
7429 struct ipr_hostrcb *hostrcb;
7430 struct ipr_uc_sdt sdt;
7431 int rc, length;
Brian King65f56472007-04-26 16:00:12 -05007432 u32 ioasc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433
7434 mailbox = readl(ioa_cfg->ioa_mailbox);
7435
Wayne Boyerdcbad002010-02-19 13:24:14 -08007436 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(mailbox)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437 ipr_unit_check_no_data(ioa_cfg);
7438 return;
7439 }
7440
7441 memset(&sdt, 0, sizeof(struct ipr_uc_sdt));
7442 rc = ipr_get_ldump_data_section(ioa_cfg, mailbox, (__be32 *) &sdt,
7443 (sizeof(struct ipr_uc_sdt)) / sizeof(__be32));
7444
Wayne Boyerdcbad002010-02-19 13:24:14 -08007445 if (rc || !(sdt.entry[0].flags & IPR_SDT_VALID_ENTRY) ||
7446 ((be32_to_cpu(sdt.hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
7447 (be32_to_cpu(sdt.hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448 ipr_unit_check_no_data(ioa_cfg);
7449 return;
7450 }
7451
7452 /* Find length of the first sdt entry (UC buffer) */
Wayne Boyerdcbad002010-02-19 13:24:14 -08007453 if (be32_to_cpu(sdt.hdr.state) == IPR_FMT3_SDT_READY_TO_USE)
7454 length = be32_to_cpu(sdt.entry[0].end_token);
7455 else
7456 length = (be32_to_cpu(sdt.entry[0].end_token) -
7457 be32_to_cpu(sdt.entry[0].start_token)) &
7458 IPR_FMT2_MBX_ADDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459
7460 hostrcb = list_entry(ioa_cfg->hostrcb_free_q.next,
7461 struct ipr_hostrcb, queue);
7462 list_del(&hostrcb->queue);
7463 memset(&hostrcb->hcam, 0, sizeof(hostrcb->hcam));
7464
7465 rc = ipr_get_ldump_data_section(ioa_cfg,
Wayne Boyerdcbad002010-02-19 13:24:14 -08007466 be32_to_cpu(sdt.entry[0].start_token),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 (__be32 *)&hostrcb->hcam,
7468 min(length, (int)sizeof(hostrcb->hcam)) / sizeof(__be32));
7469
Brian King65f56472007-04-26 16:00:12 -05007470 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471 ipr_handle_log_data(ioa_cfg, hostrcb);
Wayne Boyer4565e372010-02-19 13:24:07 -08007472 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Brian King65f56472007-04-26 16:00:12 -05007473 if (ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED &&
7474 ioa_cfg->sdt_state == GET_DUMP)
7475 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
7476 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477 ipr_unit_check_no_data(ioa_cfg);
7478
7479 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
7480}
7481
7482/**
Wayne Boyer110def82010-11-04 09:36:16 -07007483 * ipr_reset_get_unit_check_job - Call to get the unit check buffer.
7484 * @ipr_cmd: ipr command struct
7485 *
7486 * Description: This function will call to get the unit check buffer.
7487 *
7488 * Return value:
7489 * IPR_RC_JOB_RETURN
7490 **/
7491static int ipr_reset_get_unit_check_job(struct ipr_cmnd *ipr_cmd)
7492{
7493 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7494
7495 ENTER;
7496 ioa_cfg->ioa_unit_checked = 0;
7497 ipr_get_unit_check_buffer(ioa_cfg);
7498 ipr_cmd->job_step = ipr_reset_alert;
7499 ipr_reset_start_timer(ipr_cmd, 0);
7500
7501 LEAVE;
7502 return IPR_RC_JOB_RETURN;
7503}
7504
7505/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506 * ipr_reset_restore_cfg_space - Restore PCI config space.
7507 * @ipr_cmd: ipr command struct
7508 *
7509 * Description: This function restores the saved PCI config space of
7510 * the adapter, fails all outstanding ops back to the callers, and
7511 * fetches the dump/unit check if applicable to this reset.
7512 *
7513 * Return value:
7514 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7515 **/
7516static int ipr_reset_restore_cfg_space(struct ipr_cmnd *ipr_cmd)
7517{
7518 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer8701f182010-06-04 10:26:50 -07007519 volatile u32 int_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520
7521 ENTER;
Kleber Sacilotto de Souza99c965d2009-11-25 20:13:43 -02007522 ioa_cfg->pdev->state_saved = true;
Jon Mason1d3c16a2010-11-30 17:43:26 -06007523 pci_restore_state(ioa_cfg->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524
7525 if (ipr_set_pcix_cmd_reg(ioa_cfg)) {
Wayne Boyer96d21f02010-05-10 09:13:27 -07007526 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527 return IPR_RC_JOB_CONTINUE;
7528 }
7529
7530 ipr_fail_all_ops(ioa_cfg);
7531
Wayne Boyer8701f182010-06-04 10:26:50 -07007532 if (ioa_cfg->sis64) {
7533 /* Set the adapter to the correct endian mode. */
7534 writel(IPR_ENDIAN_SWAP_KEY, ioa_cfg->regs.endian_swap_reg);
7535 int_reg = readl(ioa_cfg->regs.endian_swap_reg);
7536 }
7537
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538 if (ioa_cfg->ioa_unit_checked) {
Wayne Boyer110def82010-11-04 09:36:16 -07007539 if (ioa_cfg->sis64) {
7540 ipr_cmd->job_step = ipr_reset_get_unit_check_job;
7541 ipr_reset_start_timer(ipr_cmd, IPR_DUMP_DELAY_TIMEOUT);
7542 return IPR_RC_JOB_RETURN;
7543 } else {
7544 ioa_cfg->ioa_unit_checked = 0;
7545 ipr_get_unit_check_buffer(ioa_cfg);
7546 ipr_cmd->job_step = ipr_reset_alert;
7547 ipr_reset_start_timer(ipr_cmd, 0);
7548 return IPR_RC_JOB_RETURN;
7549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550 }
7551
7552 if (ioa_cfg->in_ioa_bringdown) {
7553 ipr_cmd->job_step = ipr_ioa_bringdown_done;
7554 } else {
7555 ipr_cmd->job_step = ipr_reset_enable_ioa;
7556
7557 if (GET_DUMP == ioa_cfg->sdt_state) {
7558 ipr_reset_start_timer(ipr_cmd, IPR_DUMP_TIMEOUT);
7559 ipr_cmd->job_step = ipr_reset_wait_for_dump;
7560 schedule_work(&ioa_cfg->work_q);
7561 return IPR_RC_JOB_RETURN;
7562 }
7563 }
7564
Wayne Boyer438b0332010-05-10 09:13:00 -07007565 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566 return IPR_RC_JOB_CONTINUE;
7567}
7568
7569/**
Brian Kinge619e1a2007-01-23 11:25:37 -06007570 * ipr_reset_bist_done - BIST has completed on the adapter.
7571 * @ipr_cmd: ipr command struct
7572 *
7573 * Description: Unblock config space and resume the reset process.
7574 *
7575 * Return value:
7576 * IPR_RC_JOB_CONTINUE
7577 **/
7578static int ipr_reset_bist_done(struct ipr_cmnd *ipr_cmd)
7579{
7580 ENTER;
7581 pci_unblock_user_cfg_access(ipr_cmd->ioa_cfg->pdev);
7582 ipr_cmd->job_step = ipr_reset_restore_cfg_space;
7583 LEAVE;
7584 return IPR_RC_JOB_CONTINUE;
7585}
7586
7587/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588 * ipr_reset_start_bist - Run BIST on the adapter.
7589 * @ipr_cmd: ipr command struct
7590 *
7591 * Description: This function runs BIST on the adapter, then delays 2 seconds.
7592 *
7593 * Return value:
7594 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7595 **/
7596static int ipr_reset_start_bist(struct ipr_cmnd *ipr_cmd)
7597{
7598 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyercb237ef2010-06-17 11:51:40 -07007599 int rc = PCIBIOS_SUCCESSFUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600
7601 ENTER;
Brian Kingb30197d2005-09-27 01:21:56 -07007602 pci_block_user_cfg_access(ioa_cfg->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603
Wayne Boyercb237ef2010-06-17 11:51:40 -07007604 if (ioa_cfg->ipr_chip->bist_method == IPR_MMIO)
7605 writel(IPR_UPROCI_SIS64_START_BIST,
7606 ioa_cfg->regs.set_uproc_interrupt_reg32);
7607 else
7608 rc = pci_write_config_byte(ioa_cfg->pdev, PCI_BIST, PCI_BIST_START);
7609
7610 if (rc == PCIBIOS_SUCCESSFUL) {
Brian Kinge619e1a2007-01-23 11:25:37 -06007611 ipr_cmd->job_step = ipr_reset_bist_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612 ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
7613 rc = IPR_RC_JOB_RETURN;
Wayne Boyercb237ef2010-06-17 11:51:40 -07007614 } else {
7615 pci_unblock_user_cfg_access(ipr_cmd->ioa_cfg->pdev);
7616 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
7617 rc = IPR_RC_JOB_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618 }
7619
7620 LEAVE;
7621 return rc;
7622}
7623
7624/**
Brian King463fc692007-05-07 17:09:05 -05007625 * ipr_reset_slot_reset_done - Clear PCI reset to the adapter
7626 * @ipr_cmd: ipr command struct
7627 *
7628 * Description: This clears PCI reset to the adapter and delays two seconds.
7629 *
7630 * Return value:
7631 * IPR_RC_JOB_RETURN
7632 **/
7633static int ipr_reset_slot_reset_done(struct ipr_cmnd *ipr_cmd)
7634{
7635 ENTER;
7636 pci_set_pcie_reset_state(ipr_cmd->ioa_cfg->pdev, pcie_deassert_reset);
7637 ipr_cmd->job_step = ipr_reset_bist_done;
7638 ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
7639 LEAVE;
7640 return IPR_RC_JOB_RETURN;
7641}
7642
7643/**
7644 * ipr_reset_slot_reset - Reset the PCI slot of the adapter.
7645 * @ipr_cmd: ipr command struct
7646 *
7647 * Description: This asserts PCI reset to the adapter.
7648 *
7649 * Return value:
7650 * IPR_RC_JOB_RETURN
7651 **/
7652static int ipr_reset_slot_reset(struct ipr_cmnd *ipr_cmd)
7653{
7654 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7655 struct pci_dev *pdev = ioa_cfg->pdev;
7656
7657 ENTER;
7658 pci_block_user_cfg_access(pdev);
7659 pci_set_pcie_reset_state(pdev, pcie_warm_reset);
7660 ipr_cmd->job_step = ipr_reset_slot_reset_done;
7661 ipr_reset_start_timer(ipr_cmd, IPR_PCI_RESET_TIMEOUT);
7662 LEAVE;
7663 return IPR_RC_JOB_RETURN;
7664}
7665
7666/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667 * ipr_reset_allowed - Query whether or not IOA can be reset
7668 * @ioa_cfg: ioa config struct
7669 *
7670 * Return value:
7671 * 0 if reset not allowed / non-zero if reset is allowed
7672 **/
7673static int ipr_reset_allowed(struct ipr_ioa_cfg *ioa_cfg)
7674{
7675 volatile u32 temp_reg;
7676
7677 temp_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
7678 return ((temp_reg & IPR_PCII_CRITICAL_OPERATION) == 0);
7679}
7680
7681/**
7682 * ipr_reset_wait_to_start_bist - Wait for permission to reset IOA.
7683 * @ipr_cmd: ipr command struct
7684 *
7685 * Description: This function waits for adapter permission to run BIST,
7686 * then runs BIST. If the adapter does not give permission after a
7687 * reasonable time, we will reset the adapter anyway. The impact of
7688 * resetting the adapter without warning the adapter is the risk of
7689 * losing the persistent error log on the adapter. If the adapter is
7690 * reset while it is writing to the flash on the adapter, the flash
7691 * segment will have bad ECC and be zeroed.
7692 *
7693 * Return value:
7694 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7695 **/
7696static int ipr_reset_wait_to_start_bist(struct ipr_cmnd *ipr_cmd)
7697{
7698 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7699 int rc = IPR_RC_JOB_RETURN;
7700
7701 if (!ipr_reset_allowed(ioa_cfg) && ipr_cmd->u.time_left) {
7702 ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
7703 ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
7704 } else {
Brian King463fc692007-05-07 17:09:05 -05007705 ipr_cmd->job_step = ioa_cfg->reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706 rc = IPR_RC_JOB_CONTINUE;
7707 }
7708
7709 return rc;
7710}
7711
7712/**
Wayne Boyer8701f182010-06-04 10:26:50 -07007713 * ipr_reset_alert - Alert the adapter of a pending reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714 * @ipr_cmd: ipr command struct
7715 *
7716 * Description: This function alerts the adapter that it will be reset.
7717 * If memory space is not currently enabled, proceed directly
7718 * to running BIST on the adapter. The timer must always be started
7719 * so we guarantee we do not run BIST from ipr_isr.
7720 *
7721 * Return value:
7722 * IPR_RC_JOB_RETURN
7723 **/
7724static int ipr_reset_alert(struct ipr_cmnd *ipr_cmd)
7725{
7726 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7727 u16 cmd_reg;
7728 int rc;
7729
7730 ENTER;
7731 rc = pci_read_config_word(ioa_cfg->pdev, PCI_COMMAND, &cmd_reg);
7732
7733 if ((rc == PCIBIOS_SUCCESSFUL) && (cmd_reg & PCI_COMMAND_MEMORY)) {
7734 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
Wayne Boyer214777b2010-02-19 13:24:26 -08007735 writel(IPR_UPROCI_RESET_ALERT, ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736 ipr_cmd->job_step = ipr_reset_wait_to_start_bist;
7737 } else {
Brian King463fc692007-05-07 17:09:05 -05007738 ipr_cmd->job_step = ioa_cfg->reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 }
7740
7741 ipr_cmd->u.time_left = IPR_WAIT_FOR_RESET_TIMEOUT;
7742 ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
7743
7744 LEAVE;
7745 return IPR_RC_JOB_RETURN;
7746}
7747
7748/**
7749 * ipr_reset_ucode_download_done - Microcode download completion
7750 * @ipr_cmd: ipr command struct
7751 *
7752 * Description: This function unmaps the microcode download buffer.
7753 *
7754 * Return value:
7755 * IPR_RC_JOB_CONTINUE
7756 **/
7757static int ipr_reset_ucode_download_done(struct ipr_cmnd *ipr_cmd)
7758{
7759 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7760 struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
7761
7762 pci_unmap_sg(ioa_cfg->pdev, sglist->scatterlist,
7763 sglist->num_sg, DMA_TO_DEVICE);
7764
7765 ipr_cmd->job_step = ipr_reset_alert;
7766 return IPR_RC_JOB_CONTINUE;
7767}
7768
7769/**
7770 * ipr_reset_ucode_download - Download microcode to the adapter
7771 * @ipr_cmd: ipr command struct
7772 *
7773 * Description: This function checks to see if it there is microcode
7774 * to download to the adapter. If there is, a download is performed.
7775 *
7776 * Return value:
7777 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7778 **/
7779static int ipr_reset_ucode_download(struct ipr_cmnd *ipr_cmd)
7780{
7781 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7782 struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
7783
7784 ENTER;
7785 ipr_cmd->job_step = ipr_reset_alert;
7786
7787 if (!sglist)
7788 return IPR_RC_JOB_CONTINUE;
7789
7790 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7791 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7792 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = WRITE_BUFFER;
7793 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_WR_BUF_DOWNLOAD_AND_SAVE;
7794 ipr_cmd->ioarcb.cmd_pkt.cdb[6] = (sglist->buffer_len & 0xff0000) >> 16;
7795 ipr_cmd->ioarcb.cmd_pkt.cdb[7] = (sglist->buffer_len & 0x00ff00) >> 8;
7796 ipr_cmd->ioarcb.cmd_pkt.cdb[8] = sglist->buffer_len & 0x0000ff;
7797
Wayne Boyera32c0552010-02-19 13:23:36 -08007798 if (ioa_cfg->sis64)
7799 ipr_build_ucode_ioadl64(ipr_cmd, sglist);
7800 else
7801 ipr_build_ucode_ioadl(ipr_cmd, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802 ipr_cmd->job_step = ipr_reset_ucode_download_done;
7803
7804 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
7805 IPR_WRITE_BUFFER_TIMEOUT);
7806
7807 LEAVE;
7808 return IPR_RC_JOB_RETURN;
7809}
7810
7811/**
7812 * ipr_reset_shutdown_ioa - Shutdown the adapter
7813 * @ipr_cmd: ipr command struct
7814 *
7815 * Description: This function issues an adapter shutdown of the
7816 * specified type to the specified adapter as part of the
7817 * adapter reset job.
7818 *
7819 * Return value:
7820 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7821 **/
7822static int ipr_reset_shutdown_ioa(struct ipr_cmnd *ipr_cmd)
7823{
7824 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7825 enum ipr_shutdown_type shutdown_type = ipr_cmd->u.shutdown_type;
7826 unsigned long timeout;
7827 int rc = IPR_RC_JOB_CONTINUE;
7828
7829 ENTER;
7830 if (shutdown_type != IPR_SHUTDOWN_NONE && !ioa_cfg->ioa_is_dead) {
7831 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7832 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7833 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
7834 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = shutdown_type;
7835
Brian Kingac09c342007-04-26 16:00:16 -05007836 if (shutdown_type == IPR_SHUTDOWN_NORMAL)
7837 timeout = IPR_SHUTDOWN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838 else if (shutdown_type == IPR_SHUTDOWN_PREPARE_FOR_NORMAL)
7839 timeout = IPR_INTERNAL_TIMEOUT;
Brian Kingac09c342007-04-26 16:00:16 -05007840 else if (ioa_cfg->dual_raid && ipr_dual_ioa_raid)
7841 timeout = IPR_DUAL_IOA_ABBR_SHUTDOWN_TO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842 else
Brian Kingac09c342007-04-26 16:00:16 -05007843 timeout = IPR_ABBREV_SHUTDOWN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844
7845 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, timeout);
7846
7847 rc = IPR_RC_JOB_RETURN;
7848 ipr_cmd->job_step = ipr_reset_ucode_download;
7849 } else
7850 ipr_cmd->job_step = ipr_reset_alert;
7851
7852 LEAVE;
7853 return rc;
7854}
7855
7856/**
7857 * ipr_reset_ioa_job - Adapter reset job
7858 * @ipr_cmd: ipr command struct
7859 *
7860 * Description: This function is the job router for the adapter reset job.
7861 *
7862 * Return value:
7863 * none
7864 **/
7865static void ipr_reset_ioa_job(struct ipr_cmnd *ipr_cmd)
7866{
7867 u32 rc, ioasc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7869
7870 do {
Wayne Boyer96d21f02010-05-10 09:13:27 -07007871 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872
7873 if (ioa_cfg->reset_cmd != ipr_cmd) {
7874 /*
7875 * We are doing nested adapter resets and this is
7876 * not the current reset job.
7877 */
7878 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
7879 return;
7880 }
7881
7882 if (IPR_IOASC_SENSE_KEY(ioasc)) {
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007883 rc = ipr_cmd->job_step_failed(ipr_cmd);
7884 if (rc == IPR_RC_JOB_RETURN)
7885 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886 }
7887
7888 ipr_reinit_ipr_cmnd(ipr_cmd);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007889 ipr_cmd->job_step_failed = ipr_reset_cmd_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007890 rc = ipr_cmd->job_step(ipr_cmd);
7891 } while(rc == IPR_RC_JOB_CONTINUE);
7892}
7893
7894/**
7895 * _ipr_initiate_ioa_reset - Initiate an adapter reset
7896 * @ioa_cfg: ioa config struct
7897 * @job_step: first job step of reset job
7898 * @shutdown_type: shutdown type
7899 *
7900 * Description: This function will initiate the reset of the given adapter
7901 * starting at the selected job step.
7902 * If the caller needs to wait on the completion of the reset,
7903 * the caller must sleep on the reset_wait_q.
7904 *
7905 * Return value:
7906 * none
7907 **/
7908static void _ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
7909 int (*job_step) (struct ipr_cmnd *),
7910 enum ipr_shutdown_type shutdown_type)
7911{
7912 struct ipr_cmnd *ipr_cmd;
7913
7914 ioa_cfg->in_reset_reload = 1;
7915 ioa_cfg->allow_cmds = 0;
7916 scsi_block_requests(ioa_cfg->host);
7917
7918 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
7919 ioa_cfg->reset_cmd = ipr_cmd;
7920 ipr_cmd->job_step = job_step;
7921 ipr_cmd->u.shutdown_type = shutdown_type;
7922
7923 ipr_reset_ioa_job(ipr_cmd);
7924}
7925
7926/**
7927 * ipr_initiate_ioa_reset - Initiate an adapter reset
7928 * @ioa_cfg: ioa config struct
7929 * @shutdown_type: shutdown type
7930 *
7931 * Description: This function will initiate the reset of the given adapter.
7932 * If the caller needs to wait on the completion of the reset,
7933 * the caller must sleep on the reset_wait_q.
7934 *
7935 * Return value:
7936 * none
7937 **/
7938static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
7939 enum ipr_shutdown_type shutdown_type)
7940{
7941 if (ioa_cfg->ioa_is_dead)
7942 return;
7943
7944 if (ioa_cfg->in_reset_reload && ioa_cfg->sdt_state == GET_DUMP)
7945 ioa_cfg->sdt_state = ABORT_DUMP;
7946
7947 if (ioa_cfg->reset_retries++ >= IPR_NUM_RESET_RELOAD_RETRIES) {
7948 dev_err(&ioa_cfg->pdev->dev,
7949 "IOA taken offline - error recovery failed\n");
7950
7951 ioa_cfg->reset_retries = 0;
7952 ioa_cfg->ioa_is_dead = 1;
7953
7954 if (ioa_cfg->in_ioa_bringdown) {
7955 ioa_cfg->reset_cmd = NULL;
7956 ioa_cfg->in_reset_reload = 0;
7957 ipr_fail_all_ops(ioa_cfg);
7958 wake_up_all(&ioa_cfg->reset_wait_q);
7959
7960 spin_unlock_irq(ioa_cfg->host->host_lock);
7961 scsi_unblock_requests(ioa_cfg->host);
7962 spin_lock_irq(ioa_cfg->host->host_lock);
7963 return;
7964 } else {
7965 ioa_cfg->in_ioa_bringdown = 1;
7966 shutdown_type = IPR_SHUTDOWN_NONE;
7967 }
7968 }
7969
7970 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_shutdown_ioa,
7971 shutdown_type);
7972}
7973
7974/**
Linas Vepstasf8a88b192006-02-03 16:52:42 -06007975 * ipr_reset_freeze - Hold off all I/O activity
7976 * @ipr_cmd: ipr command struct
7977 *
7978 * Description: If the PCI slot is frozen, hold off all I/O
7979 * activity; then, as soon as the slot is available again,
7980 * initiate an adapter reset.
7981 */
7982static int ipr_reset_freeze(struct ipr_cmnd *ipr_cmd)
7983{
7984 /* Disallow new interrupts, avoid loop */
7985 ipr_cmd->ioa_cfg->allow_interrupts = 0;
7986 list_add_tail(&ipr_cmd->queue, &ipr_cmd->ioa_cfg->pending_q);
7987 ipr_cmd->done = ipr_reset_ioa_job;
7988 return IPR_RC_JOB_RETURN;
7989}
7990
7991/**
7992 * ipr_pci_frozen - Called when slot has experienced a PCI bus error.
7993 * @pdev: PCI device struct
7994 *
7995 * Description: This routine is called to tell us that the PCI bus
7996 * is down. Can't do anything here, except put the device driver
7997 * into a holding pattern, waiting for the PCI bus to come back.
7998 */
7999static void ipr_pci_frozen(struct pci_dev *pdev)
8000{
8001 unsigned long flags = 0;
8002 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8003
8004 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
8005 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_freeze, IPR_SHUTDOWN_NONE);
8006 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
8007}
8008
8009/**
8010 * ipr_pci_slot_reset - Called when PCI slot has been reset.
8011 * @pdev: PCI device struct
8012 *
8013 * Description: This routine is called by the pci error recovery
8014 * code after the PCI slot has been reset, just before we
8015 * should resume normal operations.
8016 */
8017static pci_ers_result_t ipr_pci_slot_reset(struct pci_dev *pdev)
8018{
8019 unsigned long flags = 0;
8020 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8021
8022 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King463fc692007-05-07 17:09:05 -05008023 if (ioa_cfg->needs_warm_reset)
8024 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8025 else
8026 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_restore_cfg_space,
8027 IPR_SHUTDOWN_NONE);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008028 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
8029 return PCI_ERS_RESULT_RECOVERED;
8030}
8031
8032/**
8033 * ipr_pci_perm_failure - Called when PCI slot is dead for good.
8034 * @pdev: PCI device struct
8035 *
8036 * Description: This routine is called when the PCI bus has
8037 * permanently failed.
8038 */
8039static void ipr_pci_perm_failure(struct pci_dev *pdev)
8040{
8041 unsigned long flags = 0;
8042 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8043
8044 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
8045 if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
8046 ioa_cfg->sdt_state = ABORT_DUMP;
8047 ioa_cfg->reset_retries = IPR_NUM_RESET_RELOAD_RETRIES;
8048 ioa_cfg->in_ioa_bringdown = 1;
Kleber S. Souza6ff63892009-05-04 10:41:02 -03008049 ioa_cfg->allow_cmds = 0;
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008050 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8051 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
8052}
8053
8054/**
8055 * ipr_pci_error_detected - Called when a PCI error is detected.
8056 * @pdev: PCI device struct
8057 * @state: PCI channel state
8058 *
8059 * Description: Called when a PCI error is detected.
8060 *
8061 * Return value:
8062 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
8063 */
8064static pci_ers_result_t ipr_pci_error_detected(struct pci_dev *pdev,
8065 pci_channel_state_t state)
8066{
8067 switch (state) {
8068 case pci_channel_io_frozen:
8069 ipr_pci_frozen(pdev);
8070 return PCI_ERS_RESULT_NEED_RESET;
8071 case pci_channel_io_perm_failure:
8072 ipr_pci_perm_failure(pdev);
8073 return PCI_ERS_RESULT_DISCONNECT;
8074 break;
8075 default:
8076 break;
8077 }
8078 return PCI_ERS_RESULT_NEED_RESET;
8079}
8080
8081/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008082 * ipr_probe_ioa_part2 - Initializes IOAs found in ipr_probe_ioa(..)
8083 * @ioa_cfg: ioa cfg struct
8084 *
8085 * Description: This is the second phase of adapter intialization
8086 * This function takes care of initilizing the adapter to the point
8087 * where it can accept new commands.
8088
8089 * Return value:
Joe Perchesb1c11812008-02-03 17:28:22 +02008090 * 0 on success / -EIO on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091 **/
8092static int __devinit ipr_probe_ioa_part2(struct ipr_ioa_cfg *ioa_cfg)
8093{
8094 int rc = 0;
8095 unsigned long host_lock_flags = 0;
8096
8097 ENTER;
8098 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
8099 dev_dbg(&ioa_cfg->pdev->dev, "ioa_cfg adx: 0x%p\n", ioa_cfg);
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06008100 if (ioa_cfg->needs_hard_reset) {
8101 ioa_cfg->needs_hard_reset = 0;
8102 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8103 } else
8104 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_enable_ioa,
8105 IPR_SHUTDOWN_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106
8107 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8108 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
8109 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
8110
8111 if (ioa_cfg->ioa_is_dead) {
8112 rc = -EIO;
8113 } else if (ipr_invalid_adapter(ioa_cfg)) {
8114 if (!ipr_testmode)
8115 rc = -EIO;
8116
8117 dev_err(&ioa_cfg->pdev->dev,
8118 "Adapter not supported in this hardware configuration.\n");
8119 }
8120
8121 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8122
8123 LEAVE;
8124 return rc;
8125}
8126
8127/**
8128 * ipr_free_cmd_blks - Frees command blocks allocated for an adapter
8129 * @ioa_cfg: ioa config struct
8130 *
8131 * Return value:
8132 * none
8133 **/
8134static void ipr_free_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
8135{
8136 int i;
8137
8138 for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
8139 if (ioa_cfg->ipr_cmnd_list[i])
8140 pci_pool_free(ioa_cfg->ipr_cmd_pool,
8141 ioa_cfg->ipr_cmnd_list[i],
8142 ioa_cfg->ipr_cmnd_list_dma[i]);
8143
8144 ioa_cfg->ipr_cmnd_list[i] = NULL;
8145 }
8146
8147 if (ioa_cfg->ipr_cmd_pool)
8148 pci_pool_destroy (ioa_cfg->ipr_cmd_pool);
8149
8150 ioa_cfg->ipr_cmd_pool = NULL;
8151}
8152
8153/**
8154 * ipr_free_mem - Frees memory allocated for an adapter
8155 * @ioa_cfg: ioa cfg struct
8156 *
8157 * Return value:
8158 * nothing
8159 **/
8160static void ipr_free_mem(struct ipr_ioa_cfg *ioa_cfg)
8161{
8162 int i;
8163
8164 kfree(ioa_cfg->res_entries);
8165 pci_free_consistent(ioa_cfg->pdev, sizeof(struct ipr_misc_cbs),
8166 ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
8167 ipr_free_cmd_blks(ioa_cfg);
8168 pci_free_consistent(ioa_cfg->pdev, sizeof(u32) * IPR_NUM_CMD_BLKS,
8169 ioa_cfg->host_rrq, ioa_cfg->host_rrq_dma);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008170 pci_free_consistent(ioa_cfg->pdev, ioa_cfg->cfg_table_size,
8171 ioa_cfg->u.cfg_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172 ioa_cfg->cfg_table_dma);
8173
8174 for (i = 0; i < IPR_NUM_HCAMS; i++) {
8175 pci_free_consistent(ioa_cfg->pdev,
8176 sizeof(struct ipr_hostrcb),
8177 ioa_cfg->hostrcb[i],
8178 ioa_cfg->hostrcb_dma[i]);
8179 }
8180
8181 ipr_free_dump(ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182 kfree(ioa_cfg->trace);
8183}
8184
8185/**
8186 * ipr_free_all_resources - Free all allocated resources for an adapter.
8187 * @ipr_cmd: ipr command struct
8188 *
8189 * This function frees all allocated resources for the
8190 * specified adapter.
8191 *
8192 * Return value:
8193 * none
8194 **/
8195static void ipr_free_all_resources(struct ipr_ioa_cfg *ioa_cfg)
8196{
8197 struct pci_dev *pdev = ioa_cfg->pdev;
8198
8199 ENTER;
8200 free_irq(pdev->irq, ioa_cfg);
Wayne Boyer5a9ef252009-01-23 09:17:35 -08008201 pci_disable_msi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202 iounmap(ioa_cfg->hdw_dma_regs);
8203 pci_release_regions(pdev);
8204 ipr_free_mem(ioa_cfg);
8205 scsi_host_put(ioa_cfg->host);
8206 pci_disable_device(pdev);
8207 LEAVE;
8208}
8209
8210/**
8211 * ipr_alloc_cmd_blks - Allocate command blocks for an adapter
8212 * @ioa_cfg: ioa config struct
8213 *
8214 * Return value:
8215 * 0 on success / -ENOMEM on allocation failure
8216 **/
8217static int __devinit ipr_alloc_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
8218{
8219 struct ipr_cmnd *ipr_cmd;
8220 struct ipr_ioarcb *ioarcb;
8221 dma_addr_t dma_addr;
8222 int i;
8223
8224 ioa_cfg->ipr_cmd_pool = pci_pool_create (IPR_NAME, ioa_cfg->pdev,
Wayne Boyera32c0552010-02-19 13:23:36 -08008225 sizeof(struct ipr_cmnd), 16, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226
8227 if (!ioa_cfg->ipr_cmd_pool)
8228 return -ENOMEM;
8229
8230 for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
Christoph Lametere94b1762006-12-06 20:33:17 -08008231 ipr_cmd = pci_pool_alloc (ioa_cfg->ipr_cmd_pool, GFP_KERNEL, &dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008232
8233 if (!ipr_cmd) {
8234 ipr_free_cmd_blks(ioa_cfg);
8235 return -ENOMEM;
8236 }
8237
8238 memset(ipr_cmd, 0, sizeof(*ipr_cmd));
8239 ioa_cfg->ipr_cmnd_list[i] = ipr_cmd;
8240 ioa_cfg->ipr_cmnd_list_dma[i] = dma_addr;
8241
8242 ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08008243 ipr_cmd->dma_addr = dma_addr;
8244 if (ioa_cfg->sis64)
8245 ioarcb->a.ioarcb_host_pci_addr64 = cpu_to_be64(dma_addr);
8246 else
8247 ioarcb->a.ioarcb_host_pci_addr = cpu_to_be32(dma_addr);
8248
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249 ioarcb->host_response_handle = cpu_to_be32(i << 2);
Wayne Boyera32c0552010-02-19 13:23:36 -08008250 if (ioa_cfg->sis64) {
8251 ioarcb->u.sis64_addr_data.data_ioadl_addr =
8252 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
8253 ioarcb->u.sis64_addr_data.ioasa_host_pci_addr =
Wayne Boyer96d21f02010-05-10 09:13:27 -07008254 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, s.ioasa64));
Wayne Boyera32c0552010-02-19 13:23:36 -08008255 } else {
8256 ioarcb->write_ioadl_addr =
8257 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
8258 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
8259 ioarcb->ioasa_host_pci_addr =
Wayne Boyer96d21f02010-05-10 09:13:27 -07008260 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, s.ioasa));
Wayne Boyera32c0552010-02-19 13:23:36 -08008261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262 ioarcb->ioasa_len = cpu_to_be16(sizeof(struct ipr_ioasa));
8263 ipr_cmd->cmd_index = i;
8264 ipr_cmd->ioa_cfg = ioa_cfg;
8265 ipr_cmd->sense_buffer_dma = dma_addr +
8266 offsetof(struct ipr_cmnd, sense_buffer);
8267
8268 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
8269 }
8270
8271 return 0;
8272}
8273
8274/**
8275 * ipr_alloc_mem - Allocate memory for an adapter
8276 * @ioa_cfg: ioa config struct
8277 *
8278 * Return value:
8279 * 0 on success / non-zero for error
8280 **/
8281static int __devinit ipr_alloc_mem(struct ipr_ioa_cfg *ioa_cfg)
8282{
8283 struct pci_dev *pdev = ioa_cfg->pdev;
8284 int i, rc = -ENOMEM;
8285
8286 ENTER;
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06008287 ioa_cfg->res_entries = kzalloc(sizeof(struct ipr_resource_entry) *
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008288 ioa_cfg->max_devs_supported, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289
8290 if (!ioa_cfg->res_entries)
8291 goto out;
8292
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008293 if (ioa_cfg->sis64) {
8294 ioa_cfg->target_ids = kzalloc(sizeof(unsigned long) *
8295 BITS_TO_LONGS(ioa_cfg->max_devs_supported), GFP_KERNEL);
8296 ioa_cfg->array_ids = kzalloc(sizeof(unsigned long) *
8297 BITS_TO_LONGS(ioa_cfg->max_devs_supported), GFP_KERNEL);
8298 ioa_cfg->vset_ids = kzalloc(sizeof(unsigned long) *
8299 BITS_TO_LONGS(ioa_cfg->max_devs_supported), GFP_KERNEL);
8300 }
8301
8302 for (i = 0; i < ioa_cfg->max_devs_supported; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303 list_add_tail(&ioa_cfg->res_entries[i].queue, &ioa_cfg->free_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008304 ioa_cfg->res_entries[i].ioa_cfg = ioa_cfg;
8305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306
8307 ioa_cfg->vpd_cbs = pci_alloc_consistent(ioa_cfg->pdev,
8308 sizeof(struct ipr_misc_cbs),
8309 &ioa_cfg->vpd_cbs_dma);
8310
8311 if (!ioa_cfg->vpd_cbs)
8312 goto out_free_res_entries;
8313
8314 if (ipr_alloc_cmd_blks(ioa_cfg))
8315 goto out_free_vpd_cbs;
8316
8317 ioa_cfg->host_rrq = pci_alloc_consistent(ioa_cfg->pdev,
8318 sizeof(u32) * IPR_NUM_CMD_BLKS,
8319 &ioa_cfg->host_rrq_dma);
8320
8321 if (!ioa_cfg->host_rrq)
8322 goto out_ipr_free_cmd_blocks;
8323
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008324 ioa_cfg->u.cfg_table = pci_alloc_consistent(ioa_cfg->pdev,
8325 ioa_cfg->cfg_table_size,
8326 &ioa_cfg->cfg_table_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008328 if (!ioa_cfg->u.cfg_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329 goto out_free_host_rrq;
8330
8331 for (i = 0; i < IPR_NUM_HCAMS; i++) {
8332 ioa_cfg->hostrcb[i] = pci_alloc_consistent(ioa_cfg->pdev,
8333 sizeof(struct ipr_hostrcb),
8334 &ioa_cfg->hostrcb_dma[i]);
8335
8336 if (!ioa_cfg->hostrcb[i])
8337 goto out_free_hostrcb_dma;
8338
8339 ioa_cfg->hostrcb[i]->hostrcb_dma =
8340 ioa_cfg->hostrcb_dma[i] + offsetof(struct ipr_hostrcb, hcam);
Brian King49dc6a12006-11-21 10:28:35 -06008341 ioa_cfg->hostrcb[i]->ioa_cfg = ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008342 list_add_tail(&ioa_cfg->hostrcb[i]->queue, &ioa_cfg->hostrcb_free_q);
8343 }
8344
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06008345 ioa_cfg->trace = kzalloc(sizeof(struct ipr_trace_entry) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008346 IPR_NUM_TRACE_ENTRIES, GFP_KERNEL);
8347
8348 if (!ioa_cfg->trace)
8349 goto out_free_hostrcb_dma;
8350
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351 rc = 0;
8352out:
8353 LEAVE;
8354 return rc;
8355
8356out_free_hostrcb_dma:
8357 while (i-- > 0) {
8358 pci_free_consistent(pdev, sizeof(struct ipr_hostrcb),
8359 ioa_cfg->hostrcb[i],
8360 ioa_cfg->hostrcb_dma[i]);
8361 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008362 pci_free_consistent(pdev, ioa_cfg->cfg_table_size,
8363 ioa_cfg->u.cfg_table,
8364 ioa_cfg->cfg_table_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365out_free_host_rrq:
8366 pci_free_consistent(pdev, sizeof(u32) * IPR_NUM_CMD_BLKS,
8367 ioa_cfg->host_rrq, ioa_cfg->host_rrq_dma);
8368out_ipr_free_cmd_blocks:
8369 ipr_free_cmd_blks(ioa_cfg);
8370out_free_vpd_cbs:
8371 pci_free_consistent(pdev, sizeof(struct ipr_misc_cbs),
8372 ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
8373out_free_res_entries:
8374 kfree(ioa_cfg->res_entries);
8375 goto out;
8376}
8377
8378/**
8379 * ipr_initialize_bus_attr - Initialize SCSI bus attributes to default values
8380 * @ioa_cfg: ioa config struct
8381 *
8382 * Return value:
8383 * none
8384 **/
8385static void __devinit ipr_initialize_bus_attr(struct ipr_ioa_cfg *ioa_cfg)
8386{
8387 int i;
8388
8389 for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
8390 ioa_cfg->bus_attr[i].bus = i;
8391 ioa_cfg->bus_attr[i].qas_enabled = 0;
8392 ioa_cfg->bus_attr[i].bus_width = IPR_DEFAULT_BUS_WIDTH;
8393 if (ipr_max_speed < ARRAY_SIZE(ipr_max_bus_speeds))
8394 ioa_cfg->bus_attr[i].max_xfer_rate = ipr_max_bus_speeds[ipr_max_speed];
8395 else
8396 ioa_cfg->bus_attr[i].max_xfer_rate = IPR_U160_SCSI_RATE;
8397 }
8398}
8399
8400/**
8401 * ipr_init_ioa_cfg - Initialize IOA config struct
8402 * @ioa_cfg: ioa config struct
8403 * @host: scsi host struct
8404 * @pdev: PCI dev struct
8405 *
8406 * Return value:
8407 * none
8408 **/
8409static void __devinit ipr_init_ioa_cfg(struct ipr_ioa_cfg *ioa_cfg,
8410 struct Scsi_Host *host, struct pci_dev *pdev)
8411{
8412 const struct ipr_interrupt_offsets *p;
8413 struct ipr_interrupts *t;
8414 void __iomem *base;
8415
8416 ioa_cfg->host = host;
8417 ioa_cfg->pdev = pdev;
8418 ioa_cfg->log_level = ipr_log_level;
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -06008419 ioa_cfg->doorbell = IPR_DOORBELL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420 sprintf(ioa_cfg->eye_catcher, IPR_EYECATCHER);
8421 sprintf(ioa_cfg->trace_start, IPR_TRACE_START_LABEL);
8422 sprintf(ioa_cfg->ipr_free_label, IPR_FREEQ_LABEL);
8423 sprintf(ioa_cfg->ipr_pending_label, IPR_PENDQ_LABEL);
8424 sprintf(ioa_cfg->cfg_table_start, IPR_CFG_TBL_START);
8425 sprintf(ioa_cfg->resource_table_label, IPR_RES_TABLE_LABEL);
8426 sprintf(ioa_cfg->ipr_hcam_label, IPR_HCAM_LABEL);
8427 sprintf(ioa_cfg->ipr_cmd_label, IPR_CMD_LABEL);
8428
8429 INIT_LIST_HEAD(&ioa_cfg->free_q);
8430 INIT_LIST_HEAD(&ioa_cfg->pending_q);
8431 INIT_LIST_HEAD(&ioa_cfg->hostrcb_free_q);
8432 INIT_LIST_HEAD(&ioa_cfg->hostrcb_pending_q);
8433 INIT_LIST_HEAD(&ioa_cfg->free_res_q);
8434 INIT_LIST_HEAD(&ioa_cfg->used_res_q);
David Howellsc4028952006-11-22 14:57:56 +00008435 INIT_WORK(&ioa_cfg->work_q, ipr_worker_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436 init_waitqueue_head(&ioa_cfg->reset_wait_q);
Wayne Boyer95fecd92009-06-16 15:13:28 -07008437 init_waitqueue_head(&ioa_cfg->msi_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438 ioa_cfg->sdt_state = INACTIVE;
8439
8440 ipr_initialize_bus_attr(ioa_cfg);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008441 ioa_cfg->max_devs_supported = ipr_max_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008443 if (ioa_cfg->sis64) {
8444 host->max_id = IPR_MAX_SIS64_TARGETS_PER_BUS;
8445 host->max_lun = IPR_MAX_SIS64_LUNS_PER_TARGET;
8446 if (ipr_max_devs > IPR_MAX_SIS64_DEVS)
8447 ioa_cfg->max_devs_supported = IPR_MAX_SIS64_DEVS;
8448 } else {
8449 host->max_id = IPR_MAX_NUM_TARGETS_PER_BUS;
8450 host->max_lun = IPR_MAX_NUM_LUNS_PER_TARGET;
8451 if (ipr_max_devs > IPR_MAX_PHYSICAL_DEVS)
8452 ioa_cfg->max_devs_supported = IPR_MAX_PHYSICAL_DEVS;
8453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454 host->max_channel = IPR_MAX_BUS_TO_SCAN;
8455 host->unique_id = host->host_no;
8456 host->max_cmd_len = IPR_MAX_CDB_LEN;
8457 pci_set_drvdata(pdev, ioa_cfg);
8458
8459 p = &ioa_cfg->chip_cfg->regs;
8460 t = &ioa_cfg->regs;
8461 base = ioa_cfg->hdw_dma_regs;
8462
8463 t->set_interrupt_mask_reg = base + p->set_interrupt_mask_reg;
8464 t->clr_interrupt_mask_reg = base + p->clr_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008465 t->clr_interrupt_mask_reg32 = base + p->clr_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466 t->sense_interrupt_mask_reg = base + p->sense_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008467 t->sense_interrupt_mask_reg32 = base + p->sense_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008468 t->clr_interrupt_reg = base + p->clr_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008469 t->clr_interrupt_reg32 = base + p->clr_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470 t->sense_interrupt_reg = base + p->sense_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008471 t->sense_interrupt_reg32 = base + p->sense_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472 t->ioarrin_reg = base + p->ioarrin_reg;
8473 t->sense_uproc_interrupt_reg = base + p->sense_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008474 t->sense_uproc_interrupt_reg32 = base + p->sense_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475 t->set_uproc_interrupt_reg = base + p->set_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008476 t->set_uproc_interrupt_reg32 = base + p->set_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477 t->clr_uproc_interrupt_reg = base + p->clr_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08008478 t->clr_uproc_interrupt_reg32 = base + p->clr_uproc_interrupt_reg32;
Wayne Boyerdcbad002010-02-19 13:24:14 -08008479
8480 if (ioa_cfg->sis64) {
Wayne Boyer214777b2010-02-19 13:24:26 -08008481 t->init_feedback_reg = base + p->init_feedback_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08008482 t->dump_addr_reg = base + p->dump_addr_reg;
8483 t->dump_data_reg = base + p->dump_data_reg;
Wayne Boyer8701f182010-06-04 10:26:50 -07008484 t->endian_swap_reg = base + p->endian_swap_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08008485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486}
8487
8488/**
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008489 * ipr_get_chip_info - Find adapter chip information
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490 * @dev_id: PCI device id struct
8491 *
8492 * Return value:
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008493 * ptr to chip information on success / NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494 **/
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008495static const struct ipr_chip_t * __devinit
8496ipr_get_chip_info(const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497{
8498 int i;
8499
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 for (i = 0; i < ARRAY_SIZE(ipr_chip); i++)
8501 if (ipr_chip[i].vendor == dev_id->vendor &&
8502 ipr_chip[i].device == dev_id->device)
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008503 return &ipr_chip[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504 return NULL;
8505}
8506
8507/**
Wayne Boyer95fecd92009-06-16 15:13:28 -07008508 * ipr_test_intr - Handle the interrupt generated in ipr_test_msi().
8509 * @pdev: PCI device struct
8510 *
8511 * Description: Simply set the msi_received flag to 1 indicating that
8512 * Message Signaled Interrupts are supported.
8513 *
8514 * Return value:
8515 * 0 on success / non-zero on failure
8516 **/
8517static irqreturn_t __devinit ipr_test_intr(int irq, void *devp)
8518{
8519 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)devp;
8520 unsigned long lock_flags = 0;
8521 irqreturn_t rc = IRQ_HANDLED;
8522
8523 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
8524
8525 ioa_cfg->msi_received = 1;
8526 wake_up(&ioa_cfg->msi_wait_q);
8527
8528 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8529 return rc;
8530}
8531
8532/**
8533 * ipr_test_msi - Test for Message Signaled Interrupt (MSI) support.
8534 * @pdev: PCI device struct
8535 *
8536 * Description: The return value from pci_enable_msi() can not always be
8537 * trusted. This routine sets up and initiates a test interrupt to determine
8538 * if the interrupt is received via the ipr_test_intr() service routine.
8539 * If the tests fails, the driver will fall back to LSI.
8540 *
8541 * Return value:
8542 * 0 on success / non-zero on failure
8543 **/
8544static int __devinit ipr_test_msi(struct ipr_ioa_cfg *ioa_cfg,
8545 struct pci_dev *pdev)
8546{
8547 int rc;
8548 volatile u32 int_reg;
8549 unsigned long lock_flags = 0;
8550
8551 ENTER;
8552
8553 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
8554 init_waitqueue_head(&ioa_cfg->msi_wait_q);
8555 ioa_cfg->msi_received = 0;
8556 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
Wayne Boyer214777b2010-02-19 13:24:26 -08008557 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE, ioa_cfg->regs.clr_interrupt_mask_reg32);
Wayne Boyer95fecd92009-06-16 15:13:28 -07008558 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
8559 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8560
8561 rc = request_irq(pdev->irq, ipr_test_intr, 0, IPR_NAME, ioa_cfg);
8562 if (rc) {
8563 dev_err(&pdev->dev, "Can not assign irq %d\n", pdev->irq);
8564 return rc;
8565 } else if (ipr_debug)
8566 dev_info(&pdev->dev, "IRQ assigned: %d\n", pdev->irq);
8567
Wayne Boyer214777b2010-02-19 13:24:26 -08008568 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE, ioa_cfg->regs.sense_interrupt_reg32);
Wayne Boyer95fecd92009-06-16 15:13:28 -07008569 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
8570 wait_event_timeout(ioa_cfg->msi_wait_q, ioa_cfg->msi_received, HZ);
8571 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
8572
8573 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
8574 if (!ioa_cfg->msi_received) {
8575 /* MSI test failed */
8576 dev_info(&pdev->dev, "MSI test failed. Falling back to LSI.\n");
8577 rc = -EOPNOTSUPP;
8578 } else if (ipr_debug)
8579 dev_info(&pdev->dev, "MSI test succeeded.\n");
8580
8581 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8582
8583 free_irq(pdev->irq, ioa_cfg);
8584
8585 LEAVE;
8586
8587 return rc;
8588}
8589
8590/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591 * ipr_probe_ioa - Allocates memory and does first stage of initialization
8592 * @pdev: PCI device struct
8593 * @dev_id: PCI device id struct
8594 *
8595 * Return value:
8596 * 0 on success / non-zero on failure
8597 **/
8598static int __devinit ipr_probe_ioa(struct pci_dev *pdev,
8599 const struct pci_device_id *dev_id)
8600{
8601 struct ipr_ioa_cfg *ioa_cfg;
8602 struct Scsi_Host *host;
8603 unsigned long ipr_regs_pci;
8604 void __iomem *ipr_regs;
Eric Sesterhenna2a65a32006-09-25 16:59:07 -07008605 int rc = PCIBIOS_SUCCESSFUL;
Brian King473b1e82007-05-02 10:44:11 -05008606 volatile u32 mask, uproc, interrupts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607
8608 ENTER;
8609
8610 if ((rc = pci_enable_device(pdev))) {
8611 dev_err(&pdev->dev, "Cannot enable adapter\n");
8612 goto out;
8613 }
8614
8615 dev_info(&pdev->dev, "Found IOA with IRQ: %d\n", pdev->irq);
8616
8617 host = scsi_host_alloc(&driver_template, sizeof(*ioa_cfg));
8618
8619 if (!host) {
8620 dev_err(&pdev->dev, "call to scsi_host_alloc failed!\n");
8621 rc = -ENOMEM;
8622 goto out_disable;
8623 }
8624
8625 ioa_cfg = (struct ipr_ioa_cfg *)host->hostdata;
8626 memset(ioa_cfg, 0, sizeof(struct ipr_ioa_cfg));
Brian King35a39692006-09-25 12:39:20 -05008627 ata_host_init(&ioa_cfg->ata_host, &pdev->dev,
8628 sata_port_info.flags, &ipr_sata_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008630 ioa_cfg->ipr_chip = ipr_get_chip_info(dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008631
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008632 if (!ioa_cfg->ipr_chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633 dev_err(&pdev->dev, "Unknown adapter chipset 0x%04X 0x%04X\n",
8634 dev_id->vendor, dev_id->device);
8635 goto out_scsi_host_put;
8636 }
8637
Wayne Boyera32c0552010-02-19 13:23:36 -08008638 /* set SIS 32 or SIS 64 */
8639 ioa_cfg->sis64 = ioa_cfg->ipr_chip->sis_type == IPR_SIS64 ? 1 : 0;
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008640 ioa_cfg->chip_cfg = ioa_cfg->ipr_chip->cfg;
8641
Brian King5469cb52007-03-29 12:42:40 -05008642 if (ipr_transop_timeout)
8643 ioa_cfg->transop_timeout = ipr_transop_timeout;
8644 else if (dev_id->driver_data & IPR_USE_LONG_TRANSOP_TIMEOUT)
8645 ioa_cfg->transop_timeout = IPR_LONG_OPERATIONAL_TIMEOUT;
8646 else
8647 ioa_cfg->transop_timeout = IPR_OPERATIONAL_TIMEOUT;
8648
Auke Kok44c10132007-06-08 15:46:36 -07008649 ioa_cfg->revid = pdev->revision;
Brian King463fc692007-05-07 17:09:05 -05008650
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651 ipr_regs_pci = pci_resource_start(pdev, 0);
8652
8653 rc = pci_request_regions(pdev, IPR_NAME);
8654 if (rc < 0) {
8655 dev_err(&pdev->dev,
8656 "Couldn't register memory range of registers\n");
8657 goto out_scsi_host_put;
8658 }
8659
Arjan van de Ven25729a72008-09-28 16:18:02 -07008660 ipr_regs = pci_ioremap_bar(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661
8662 if (!ipr_regs) {
8663 dev_err(&pdev->dev,
8664 "Couldn't map memory range of registers\n");
8665 rc = -ENOMEM;
8666 goto out_release_regions;
8667 }
8668
8669 ioa_cfg->hdw_dma_regs = ipr_regs;
8670 ioa_cfg->hdw_dma_regs_pci = ipr_regs_pci;
8671 ioa_cfg->ioa_mailbox = ioa_cfg->chip_cfg->mailbox + ipr_regs;
8672
8673 ipr_init_ioa_cfg(ioa_cfg, host, pdev);
8674
8675 pci_set_master(pdev);
8676
Wayne Boyera32c0552010-02-19 13:23:36 -08008677 if (ioa_cfg->sis64) {
8678 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8679 if (rc < 0) {
8680 dev_dbg(&pdev->dev, "Failed to set 64 bit PCI DMA mask\n");
8681 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8682 }
8683
8684 } else
8685 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8686
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687 if (rc < 0) {
8688 dev_err(&pdev->dev, "Failed to set PCI DMA mask\n");
8689 goto cleanup_nomem;
8690 }
8691
8692 rc = pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
8693 ioa_cfg->chip_cfg->cache_line_size);
8694
8695 if (rc != PCIBIOS_SUCCESSFUL) {
8696 dev_err(&pdev->dev, "Write of cache line size failed\n");
8697 rc = -EIO;
8698 goto cleanup_nomem;
8699 }
8700
Wayne Boyer95fecd92009-06-16 15:13:28 -07008701 /* Enable MSI style interrupts if they are supported. */
Wayne Boyer1be7bd82009-06-17 09:55:35 -07008702 if (ioa_cfg->ipr_chip->intr_type == IPR_USE_MSI && !pci_enable_msi(pdev)) {
Wayne Boyer95fecd92009-06-16 15:13:28 -07008703 rc = ipr_test_msi(ioa_cfg, pdev);
8704 if (rc == -EOPNOTSUPP)
8705 pci_disable_msi(pdev);
8706 else if (rc)
8707 goto out_msi_disable;
8708 else
8709 dev_info(&pdev->dev, "MSI enabled with IRQ: %d\n", pdev->irq);
8710 } else if (ipr_debug)
8711 dev_info(&pdev->dev, "Cannot enable MSI.\n");
8712
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713 /* Save away PCI config space for use following IOA reset */
8714 rc = pci_save_state(pdev);
8715
8716 if (rc != PCIBIOS_SUCCESSFUL) {
8717 dev_err(&pdev->dev, "Failed to save PCI config space\n");
8718 rc = -EIO;
8719 goto cleanup_nomem;
8720 }
8721
8722 if ((rc = ipr_save_pcix_cmd_reg(ioa_cfg)))
8723 goto cleanup_nomem;
8724
8725 if ((rc = ipr_set_pcix_cmd_reg(ioa_cfg)))
8726 goto cleanup_nomem;
8727
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008728 if (ioa_cfg->sis64)
8729 ioa_cfg->cfg_table_size = (sizeof(struct ipr_config_table_hdr64)
8730 + ((sizeof(struct ipr_config_table_entry64)
8731 * ioa_cfg->max_devs_supported)));
8732 else
8733 ioa_cfg->cfg_table_size = (sizeof(struct ipr_config_table_hdr)
8734 + ((sizeof(struct ipr_config_table_entry)
8735 * ioa_cfg->max_devs_supported)));
8736
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737 rc = ipr_alloc_mem(ioa_cfg);
8738 if (rc < 0) {
8739 dev_err(&pdev->dev,
8740 "Couldn't allocate enough memory for device driver!\n");
8741 goto cleanup_nomem;
8742 }
8743
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06008744 /*
8745 * If HRRQ updated interrupt is not masked, or reset alert is set,
8746 * the card is in an unknown state and needs a hard reset
8747 */
Wayne Boyer214777b2010-02-19 13:24:26 -08008748 mask = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
8749 interrupts = readl(ioa_cfg->regs.sense_interrupt_reg32);
8750 uproc = readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06008751 if ((mask & IPR_PCII_HRRQ_UPDATED) == 0 || (uproc & IPR_UPROCI_RESET_ALERT))
8752 ioa_cfg->needs_hard_reset = 1;
Brian King473b1e82007-05-02 10:44:11 -05008753 if (interrupts & IPR_PCII_ERROR_INTERRUPTS)
8754 ioa_cfg->needs_hard_reset = 1;
8755 if (interrupts & IPR_PCII_IOA_UNIT_CHECKED)
8756 ioa_cfg->ioa_unit_checked = 1;
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06008757
Linus Torvalds1da177e2005-04-16 15:20:36 -07008758 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
Wayne Boyer95fecd92009-06-16 15:13:28 -07008759 rc = request_irq(pdev->irq, ipr_isr,
8760 ioa_cfg->msi_received ? 0 : IRQF_SHARED,
8761 IPR_NAME, ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008762
8763 if (rc) {
8764 dev_err(&pdev->dev, "Couldn't register IRQ %d! rc=%d\n",
8765 pdev->irq, rc);
8766 goto cleanup_nolog;
8767 }
8768
Brian King463fc692007-05-07 17:09:05 -05008769 if ((dev_id->driver_data & IPR_USE_PCI_WARM_RESET) ||
8770 (dev_id->device == PCI_DEVICE_ID_IBM_OBSIDIAN_E && !ioa_cfg->revid)) {
8771 ioa_cfg->needs_warm_reset = 1;
8772 ioa_cfg->reset = ipr_reset_slot_reset;
8773 } else
8774 ioa_cfg->reset = ipr_reset_start_bist;
8775
Linus Torvalds1da177e2005-04-16 15:20:36 -07008776 spin_lock(&ipr_driver_lock);
8777 list_add_tail(&ioa_cfg->queue, &ipr_ioa_head);
8778 spin_unlock(&ipr_driver_lock);
8779
8780 LEAVE;
8781out:
8782 return rc;
8783
8784cleanup_nolog:
8785 ipr_free_mem(ioa_cfg);
8786cleanup_nomem:
8787 iounmap(ipr_regs);
Wayne Boyer95fecd92009-06-16 15:13:28 -07008788out_msi_disable:
8789 pci_disable_msi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790out_release_regions:
8791 pci_release_regions(pdev);
8792out_scsi_host_put:
8793 scsi_host_put(host);
8794out_disable:
8795 pci_disable_device(pdev);
8796 goto out;
8797}
8798
8799/**
8800 * ipr_scan_vsets - Scans for VSET devices
8801 * @ioa_cfg: ioa config struct
8802 *
8803 * Description: Since the VSET resources do not follow SAM in that we can have
8804 * sparse LUNs with no LUN 0, we have to scan for these ourselves.
8805 *
8806 * Return value:
8807 * none
8808 **/
8809static void ipr_scan_vsets(struct ipr_ioa_cfg *ioa_cfg)
8810{
8811 int target, lun;
8812
8813 for (target = 0; target < IPR_MAX_NUM_TARGETS_PER_BUS; target++)
8814 for (lun = 0; lun < IPR_MAX_NUM_VSET_LUNS_PER_TARGET; lun++ )
8815 scsi_add_device(ioa_cfg->host, IPR_VSET_BUS, target, lun);
8816}
8817
8818/**
8819 * ipr_initiate_ioa_bringdown - Bring down an adapter
8820 * @ioa_cfg: ioa config struct
8821 * @shutdown_type: shutdown type
8822 *
8823 * Description: This function will initiate bringing down the adapter.
8824 * This consists of issuing an IOA shutdown to the adapter
8825 * to flush the cache, and running BIST.
8826 * If the caller needs to wait on the completion of the reset,
8827 * the caller must sleep on the reset_wait_q.
8828 *
8829 * Return value:
8830 * none
8831 **/
8832static void ipr_initiate_ioa_bringdown(struct ipr_ioa_cfg *ioa_cfg,
8833 enum ipr_shutdown_type shutdown_type)
8834{
8835 ENTER;
8836 if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
8837 ioa_cfg->sdt_state = ABORT_DUMP;
8838 ioa_cfg->reset_retries = 0;
8839 ioa_cfg->in_ioa_bringdown = 1;
8840 ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
8841 LEAVE;
8842}
8843
8844/**
8845 * __ipr_remove - Remove a single adapter
8846 * @pdev: pci device struct
8847 *
8848 * Adapter hot plug remove entry point.
8849 *
8850 * Return value:
8851 * none
8852 **/
8853static void __ipr_remove(struct pci_dev *pdev)
8854{
8855 unsigned long host_lock_flags = 0;
8856 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8857 ENTER;
8858
8859 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
Brian King970ea292007-04-26 16:00:06 -05008860 while(ioa_cfg->in_reset_reload) {
8861 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8862 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
8863 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
8864 }
8865
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866 ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
8867
8868 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8869 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
Tejun Heoa684b8d2011-01-24 14:57:28 +01008870 flush_work_sync(&ioa_cfg->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
8872
8873 spin_lock(&ipr_driver_lock);
8874 list_del(&ioa_cfg->queue);
8875 spin_unlock(&ipr_driver_lock);
8876
8877 if (ioa_cfg->sdt_state == ABORT_DUMP)
8878 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
8879 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8880
8881 ipr_free_all_resources(ioa_cfg);
8882
8883 LEAVE;
8884}
8885
8886/**
8887 * ipr_remove - IOA hot plug remove entry point
8888 * @pdev: pci device struct
8889 *
8890 * Adapter hot plug remove entry point.
8891 *
8892 * Return value:
8893 * none
8894 **/
Kleber S. Souzaf3816422009-04-22 10:50:28 -03008895static void __devexit ipr_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896{
8897 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8898
8899 ENTER;
8900
Tony Jonesee959b02008-02-22 00:13:36 +01008901 ipr_remove_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902 &ipr_trace_attr);
Tony Jonesee959b02008-02-22 00:13:36 +01008903 ipr_remove_dump_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008904 &ipr_dump_attr);
8905 scsi_remove_host(ioa_cfg->host);
8906
8907 __ipr_remove(pdev);
8908
8909 LEAVE;
8910}
8911
8912/**
8913 * ipr_probe - Adapter hot plug add entry point
8914 *
8915 * Return value:
8916 * 0 on success / non-zero on failure
8917 **/
8918static int __devinit ipr_probe(struct pci_dev *pdev,
8919 const struct pci_device_id *dev_id)
8920{
8921 struct ipr_ioa_cfg *ioa_cfg;
8922 int rc;
8923
8924 rc = ipr_probe_ioa(pdev, dev_id);
8925
8926 if (rc)
8927 return rc;
8928
8929 ioa_cfg = pci_get_drvdata(pdev);
8930 rc = ipr_probe_ioa_part2(ioa_cfg);
8931
8932 if (rc) {
8933 __ipr_remove(pdev);
8934 return rc;
8935 }
8936
8937 rc = scsi_add_host(ioa_cfg->host, &pdev->dev);
8938
8939 if (rc) {
8940 __ipr_remove(pdev);
8941 return rc;
8942 }
8943
Tony Jonesee959b02008-02-22 00:13:36 +01008944 rc = ipr_create_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008945 &ipr_trace_attr);
8946
8947 if (rc) {
8948 scsi_remove_host(ioa_cfg->host);
8949 __ipr_remove(pdev);
8950 return rc;
8951 }
8952
Tony Jonesee959b02008-02-22 00:13:36 +01008953 rc = ipr_create_dump_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008954 &ipr_dump_attr);
8955
8956 if (rc) {
Tony Jonesee959b02008-02-22 00:13:36 +01008957 ipr_remove_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008958 &ipr_trace_attr);
8959 scsi_remove_host(ioa_cfg->host);
8960 __ipr_remove(pdev);
8961 return rc;
8962 }
8963
8964 scsi_scan_host(ioa_cfg->host);
8965 ipr_scan_vsets(ioa_cfg);
8966 scsi_add_device(ioa_cfg->host, IPR_IOA_BUS, IPR_IOA_TARGET, IPR_IOA_LUN);
8967 ioa_cfg->allow_ml_add_del = 1;
brking@us.ibm.com11cd8f12005-11-01 17:00:11 -06008968 ioa_cfg->host->max_channel = IPR_VSET_BUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008969 schedule_work(&ioa_cfg->work_q);
8970 return 0;
8971}
8972
8973/**
8974 * ipr_shutdown - Shutdown handler.
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07008975 * @pdev: pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976 *
8977 * This function is invoked upon system shutdown/reboot. It will issue
8978 * an adapter shutdown to the adapter to flush the write cache.
8979 *
8980 * Return value:
8981 * none
8982 **/
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07008983static void ipr_shutdown(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008984{
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07008985 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986 unsigned long lock_flags = 0;
8987
8988 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Brian King970ea292007-04-26 16:00:06 -05008989 while(ioa_cfg->in_reset_reload) {
8990 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8991 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
8992 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
8993 }
8994
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995 ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
8996 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8997 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
8998}
8999
9000static struct pci_device_id ipr_pci_table[] __devinitdata = {
9001 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009002 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5702, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009003 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009004 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5703, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009005 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009006 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573D, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009007 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009008 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573E, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009009 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -06009010 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571B, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009011 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -06009012 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572E, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -06009014 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009015 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King5469cb52007-03-29 12:42:40 -05009016 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575B, 0, 0,
9017 IPR_USE_LONG_TRANSOP_TIMEOUT },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009018 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King6d84c942007-01-23 11:25:23 -06009019 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009020 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King22d2e402007-04-26 16:00:13 -05009021 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0,
9022 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -06009023 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King5469cb52007-03-29 12:42:40 -05009024 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0,
9025 IPR_USE_LONG_TRANSOP_TIMEOUT },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009026 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King6d84c942007-01-23 11:25:23 -06009027 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009028 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King22d2e402007-04-26 16:00:13 -05009029 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0,
9030 IPR_USE_LONG_TRANSOP_TIMEOUT},
Brian King60e74862006-11-21 10:28:10 -06009031 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King5469cb52007-03-29 12:42:40 -05009032 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0,
9033 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -06009034 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King22d2e402007-04-26 16:00:13 -05009035 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_574E, 0, 0,
9036 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King185eb312007-03-29 12:42:53 -05009037 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King185eb312007-03-29 12:42:53 -05009038 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B3, 0, 0, 0 },
9039 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Wayne Boyerb0f56d32010-06-24 13:34:14 -07009040 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57CC, 0, 0, 0 },
9041 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King5469cb52007-03-29 12:42:40 -05009042 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B7, 0, 0,
Brian King463fc692007-05-07 17:09:05 -05009043 IPR_USE_LONG_TRANSOP_TIMEOUT | IPR_USE_PCI_WARM_RESET },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009044 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE,
Brian King6d84c942007-01-23 11:25:23 -06009045 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2780, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009046 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King6d84c942007-01-23 11:25:23 -06009047 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571E, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009048 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King5469cb52007-03-29 12:42:40 -05009049 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571F, 0, 0,
9050 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -06009051 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King5469cb52007-03-29 12:42:40 -05009052 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572F, 0, 0,
9053 IPR_USE_LONG_TRANSOP_TIMEOUT },
Wayne Boyerd7b46272010-02-19 13:24:38 -08009054 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9055 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B5, 0, 0, 0 },
9056 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9057 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_574D, 0, 0, 0 },
9058 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9059 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B2, 0, 0, 0 },
Wayne Boyer32622bd2010-10-18 20:24:34 -07009060 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9061 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C4, 0, 0, 0 },
Wayne Boyerd7b46272010-02-19 13:24:38 -08009062 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_ASIC_E2,
9063 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B4, 0, 0, 0 },
9064 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_ASIC_E2,
9065 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B1, 0, 0, 0 },
9066 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_ASIC_E2,
9067 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C6, 0, 0, 0 },
9068 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_ASIC_E2,
9069 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575D, 0, 0, 0 },
9070 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_ASIC_E2,
9071 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57CE, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009072 { }
9073};
9074MODULE_DEVICE_TABLE(pci, ipr_pci_table);
9075
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009076static struct pci_error_handlers ipr_err_handler = {
9077 .error_detected = ipr_pci_error_detected,
9078 .slot_reset = ipr_pci_slot_reset,
9079};
9080
Linus Torvalds1da177e2005-04-16 15:20:36 -07009081static struct pci_driver ipr_driver = {
9082 .name = IPR_NAME,
9083 .id_table = ipr_pci_table,
9084 .probe = ipr_probe,
Kleber S. Souzaf3816422009-04-22 10:50:28 -03009085 .remove = __devexit_p(ipr_remove),
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07009086 .shutdown = ipr_shutdown,
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009087 .err_handler = &ipr_err_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009088};
9089
9090/**
Wayne Boyerf72919e2010-02-19 13:24:21 -08009091 * ipr_halt_done - Shutdown prepare completion
9092 *
9093 * Return value:
9094 * none
9095 **/
9096static void ipr_halt_done(struct ipr_cmnd *ipr_cmd)
9097{
9098 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
9099
9100 list_add_tail(&ipr_cmd->queue, &ioa_cfg->free_q);
9101}
9102
9103/**
9104 * ipr_halt - Issue shutdown prepare to all adapters
9105 *
9106 * Return value:
9107 * NOTIFY_OK on success / NOTIFY_DONE on failure
9108 **/
9109static int ipr_halt(struct notifier_block *nb, ulong event, void *buf)
9110{
9111 struct ipr_cmnd *ipr_cmd;
9112 struct ipr_ioa_cfg *ioa_cfg;
9113 unsigned long flags = 0;
9114
9115 if (event != SYS_RESTART && event != SYS_HALT && event != SYS_POWER_OFF)
9116 return NOTIFY_DONE;
9117
9118 spin_lock(&ipr_driver_lock);
9119
9120 list_for_each_entry(ioa_cfg, &ipr_ioa_head, queue) {
9121 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
9122 if (!ioa_cfg->allow_cmds) {
9123 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
9124 continue;
9125 }
9126
9127 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
9128 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
9129 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
9130 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
9131 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_SHUTDOWN_PREPARE_FOR_NORMAL;
9132
9133 ipr_do_req(ipr_cmd, ipr_halt_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
9134 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
9135 }
9136 spin_unlock(&ipr_driver_lock);
9137
9138 return NOTIFY_OK;
9139}
9140
9141static struct notifier_block ipr_notifier = {
9142 ipr_halt, NULL, 0
9143};
9144
9145/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009146 * ipr_init - Module entry point
9147 *
9148 * Return value:
9149 * 0 on success / negative value on failure
9150 **/
9151static int __init ipr_init(void)
9152{
9153 ipr_info("IBM Power RAID SCSI Device Driver version: %s %s\n",
9154 IPR_DRIVER_VERSION, IPR_DRIVER_DATE);
9155
Wayne Boyerf72919e2010-02-19 13:24:21 -08009156 register_reboot_notifier(&ipr_notifier);
Henrik Kretzschmardcbccbde2006-09-25 16:58:58 -07009157 return pci_register_driver(&ipr_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158}
9159
9160/**
9161 * ipr_exit - Module unload
9162 *
9163 * Module unload entry point.
9164 *
9165 * Return value:
9166 * none
9167 **/
9168static void __exit ipr_exit(void)
9169{
Wayne Boyerf72919e2010-02-19 13:24:21 -08009170 unregister_reboot_notifier(&ipr_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171 pci_unregister_driver(&ipr_driver);
9172}
9173
9174module_init(ipr_init);
9175module_exit(ipr_exit);