blob: bf85974be8621e16a130ffd711e18697231da3da [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>
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -030063#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/ioport.h>
65#include <linux/delay.h>
66#include <linux/pci.h>
67#include <linux/wait.h>
68#include <linux/spinlock.h>
69#include <linux/sched.h>
70#include <linux/interrupt.h>
71#include <linux/blkdev.h>
72#include <linux/firmware.h>
73#include <linux/module.h>
74#include <linux/moduleparam.h>
Brian King35a39692006-09-25 12:39:20 -050075#include <linux/libata.h>
Brian King0ce3a7e2008-07-11 13:37:50 -050076#include <linux/hdreg.h>
Wayne Boyerf72919e2010-02-19 13:24:21 -080077#include <linux/reboot.h>
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -080078#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <asm/io.h>
80#include <asm/irq.h>
81#include <asm/processor.h>
82#include <scsi/scsi.h>
83#include <scsi/scsi_host.h>
84#include <scsi/scsi_tcq.h>
85#include <scsi/scsi_eh.h>
86#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include "ipr.h"
88
89/*
90 * Global Data
91 */
Denis Chengb7d68ca2007-12-13 16:14:27 -080092static LIST_HEAD(ipr_ioa_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static unsigned int ipr_log_level = IPR_DEFAULT_LOG_LEVEL;
94static unsigned int ipr_max_speed = 1;
95static int ipr_testmode = 0;
96static unsigned int ipr_fastfail = 0;
Brian King5469cb52007-03-29 12:42:40 -050097static unsigned int ipr_transop_timeout = 0;
brking@us.ibm.comd3c74872005-11-01 17:01:34 -060098static unsigned int ipr_debug = 0;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -080099static unsigned int ipr_max_devs = IPR_DEFAULT_SIS64_DEVS;
Brian Kingac09c342007-04-26 16:00:16 -0500100static unsigned int ipr_dual_ioa_raid = 1;
Wen Xiongcb05cbb2016-07-12 16:02:08 -0500101static unsigned int ipr_number_of_msix = 16;
Brian King4fdd7c72015-03-26 11:23:50 -0500102static unsigned int ipr_fast_reboot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static DEFINE_SPINLOCK(ipr_driver_lock);
104
105/* This table describes the differences between DMA controller chips */
106static const struct ipr_chip_cfg_t ipr_chip_cfg[] = {
Brian King60e74862006-11-21 10:28:10 -0600107 { /* Gemstone, Citrine, Obsidian, and Obsidian-E */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .mailbox = 0x0042C,
Brian King89aad422012-03-14 21:20:10 -0500109 .max_cmds = 100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 .cache_line_size = 0x20,
Brian King7dd21302012-03-14 21:20:08 -0500111 .clear_isr = 1,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -0600112 .iopoll_weight = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 {
114 .set_interrupt_mask_reg = 0x0022C,
115 .clr_interrupt_mask_reg = 0x00230,
Wayne Boyer214777b2010-02-19 13:24:26 -0800116 .clr_interrupt_mask_reg32 = 0x00230,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .sense_interrupt_mask_reg = 0x0022C,
Wayne Boyer214777b2010-02-19 13:24:26 -0800118 .sense_interrupt_mask_reg32 = 0x0022C,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .clr_interrupt_reg = 0x00228,
Wayne Boyer214777b2010-02-19 13:24:26 -0800120 .clr_interrupt_reg32 = 0x00228,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .sense_interrupt_reg = 0x00224,
Wayne Boyer214777b2010-02-19 13:24:26 -0800122 .sense_interrupt_reg32 = 0x00224,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .ioarrin_reg = 0x00404,
124 .sense_uproc_interrupt_reg = 0x00214,
Wayne Boyer214777b2010-02-19 13:24:26 -0800125 .sense_uproc_interrupt_reg32 = 0x00214,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .set_uproc_interrupt_reg = 0x00214,
Wayne Boyer214777b2010-02-19 13:24:26 -0800127 .set_uproc_interrupt_reg32 = 0x00214,
128 .clr_uproc_interrupt_reg = 0x00218,
129 .clr_uproc_interrupt_reg32 = 0x00218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131 },
132 { /* Snipe and Scamp */
133 .mailbox = 0x0052C,
Brian King89aad422012-03-14 21:20:10 -0500134 .max_cmds = 100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .cache_line_size = 0x20,
Brian King7dd21302012-03-14 21:20:08 -0500136 .clear_isr = 1,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -0600137 .iopoll_weight = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 {
139 .set_interrupt_mask_reg = 0x00288,
140 .clr_interrupt_mask_reg = 0x0028C,
Wayne Boyer214777b2010-02-19 13:24:26 -0800141 .clr_interrupt_mask_reg32 = 0x0028C,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .sense_interrupt_mask_reg = 0x00288,
Wayne Boyer214777b2010-02-19 13:24:26 -0800143 .sense_interrupt_mask_reg32 = 0x00288,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .clr_interrupt_reg = 0x00284,
Wayne Boyer214777b2010-02-19 13:24:26 -0800145 .clr_interrupt_reg32 = 0x00284,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .sense_interrupt_reg = 0x00280,
Wayne Boyer214777b2010-02-19 13:24:26 -0800147 .sense_interrupt_reg32 = 0x00280,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .ioarrin_reg = 0x00504,
149 .sense_uproc_interrupt_reg = 0x00290,
Wayne Boyer214777b2010-02-19 13:24:26 -0800150 .sense_uproc_interrupt_reg32 = 0x00290,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .set_uproc_interrupt_reg = 0x00290,
Wayne Boyer214777b2010-02-19 13:24:26 -0800152 .set_uproc_interrupt_reg32 = 0x00290,
153 .clr_uproc_interrupt_reg = 0x00294,
154 .clr_uproc_interrupt_reg32 = 0x00294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156 },
Wayne Boyera74c1632010-02-19 13:23:51 -0800157 { /* CRoC */
Wayne Boyer110def82010-11-04 09:36:16 -0700158 .mailbox = 0x00044,
Brian King89aad422012-03-14 21:20:10 -0500159 .max_cmds = 1000,
Wayne Boyera74c1632010-02-19 13:23:51 -0800160 .cache_line_size = 0x20,
Brian King7dd21302012-03-14 21:20:08 -0500161 .clear_isr = 0,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -0600162 .iopoll_weight = 64,
Wayne Boyera74c1632010-02-19 13:23:51 -0800163 {
164 .set_interrupt_mask_reg = 0x00010,
165 .clr_interrupt_mask_reg = 0x00018,
Wayne Boyer214777b2010-02-19 13:24:26 -0800166 .clr_interrupt_mask_reg32 = 0x0001C,
Wayne Boyera74c1632010-02-19 13:23:51 -0800167 .sense_interrupt_mask_reg = 0x00010,
Wayne Boyer214777b2010-02-19 13:24:26 -0800168 .sense_interrupt_mask_reg32 = 0x00014,
Wayne Boyera74c1632010-02-19 13:23:51 -0800169 .clr_interrupt_reg = 0x00008,
Wayne Boyer214777b2010-02-19 13:24:26 -0800170 .clr_interrupt_reg32 = 0x0000C,
Wayne Boyera74c1632010-02-19 13:23:51 -0800171 .sense_interrupt_reg = 0x00000,
Wayne Boyer214777b2010-02-19 13:24:26 -0800172 .sense_interrupt_reg32 = 0x00004,
Wayne Boyera74c1632010-02-19 13:23:51 -0800173 .ioarrin_reg = 0x00070,
174 .sense_uproc_interrupt_reg = 0x00020,
Wayne Boyer214777b2010-02-19 13:24:26 -0800175 .sense_uproc_interrupt_reg32 = 0x00024,
Wayne Boyera74c1632010-02-19 13:23:51 -0800176 .set_uproc_interrupt_reg = 0x00020,
Wayne Boyer214777b2010-02-19 13:24:26 -0800177 .set_uproc_interrupt_reg32 = 0x00024,
Wayne Boyerdcbad002010-02-19 13:24:14 -0800178 .clr_uproc_interrupt_reg = 0x00028,
Wayne Boyer214777b2010-02-19 13:24:26 -0800179 .clr_uproc_interrupt_reg32 = 0x0002C,
180 .init_feedback_reg = 0x0005C,
Wayne Boyerdcbad002010-02-19 13:24:14 -0800181 .dump_addr_reg = 0x00064,
Wayne Boyer8701f182010-06-04 10:26:50 -0700182 .dump_data_reg = 0x00068,
183 .endian_swap_reg = 0x00084
Wayne Boyera74c1632010-02-19 13:23:51 -0800184 }
185 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186};
187
188static const struct ipr_chip_t ipr_chip[] = {
Wayne Boyercb237ef2010-06-17 11:51:40 -0700189 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
190 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
191 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
192 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
193 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E, IPR_USE_MSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
194 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
195 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
196 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] },
Wen Xiong00da9ff2016-07-12 16:02:07 -0500197 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] },
198 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_RATTLESNAKE, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -0300201static int ipr_max_bus_speeds[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 IPR_80MBs_SCSI_RATE, IPR_U160_SCSI_RATE, IPR_U320_SCSI_RATE
203};
204
205MODULE_AUTHOR("Brian King <brking@us.ibm.com>");
206MODULE_DESCRIPTION("IBM Power RAID SCSI Adapter Driver");
207module_param_named(max_speed, ipr_max_speed, uint, 0);
208MODULE_PARM_DESC(max_speed, "Maximum bus speed (0-2). Default: 1=U160. Speeds: 0=80 MB/s, 1=U160, 2=U320");
209module_param_named(log_level, ipr_log_level, uint, 0);
210MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver");
211module_param_named(testmode, ipr_testmode, int, 0);
212MODULE_PARM_DESC(testmode, "DANGEROUS!!! Allows unsupported configurations");
Wayne Boyer2cf22be2009-02-24 11:36:00 -0800213module_param_named(fastfail, ipr_fastfail, int, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214MODULE_PARM_DESC(fastfail, "Reduce timeouts and retries");
215module_param_named(transop_timeout, ipr_transop_timeout, int, 0);
216MODULE_PARM_DESC(transop_timeout, "Time in seconds to wait for adapter to come operational (default: 300)");
Wayne Boyer2cf22be2009-02-24 11:36:00 -0800217module_param_named(debug, ipr_debug, int, S_IRUGO | S_IWUSR);
brking@us.ibm.comd3c74872005-11-01 17:01:34 -0600218MODULE_PARM_DESC(debug, "Enable device driver debugging logging. Set to 1 to enable. (default: 0)");
Brian Kingac09c342007-04-26 16:00:16 -0500219module_param_named(dual_ioa_raid, ipr_dual_ioa_raid, int, 0);
220MODULE_PARM_DESC(dual_ioa_raid, "Enable dual adapter RAID support. Set to 1 to enable. (default: 1)");
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800221module_param_named(max_devs, ipr_max_devs, int, 0);
222MODULE_PARM_DESC(max_devs, "Specify the maximum number of physical devices. "
223 "[Default=" __stringify(IPR_DEFAULT_SIS64_DEVS) "]");
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600224module_param_named(number_of_msix, ipr_number_of_msix, int, 0);
Wen Xiongcb05cbb2016-07-12 16:02:08 -0500225MODULE_PARM_DESC(number_of_msix, "Specify the number of MSIX interrupts to use on capable adapters (1 - 16). (default:16)");
Brian King4fdd7c72015-03-26 11:23:50 -0500226module_param_named(fast_reboot, ipr_fast_reboot, int, S_IRUGO | S_IWUSR);
227MODULE_PARM_DESC(fast_reboot, "Skip adapter shutdown during reboot. Set to 1 to enable. (default: 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228MODULE_LICENSE("GPL");
229MODULE_VERSION(IPR_DRIVER_VERSION);
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/* A constant array of IOASCs/URCs/Error Messages */
232static const
233struct ipr_error_table_t ipr_error_table[] = {
Brian King933916f2007-03-29 12:43:30 -0500234 {0x00000000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 "8155: An unknown error was received"},
236 {0x00330000, 0, 0,
237 "Soft underlength error"},
238 {0x005A0000, 0, 0,
239 "Command to be cancelled not found"},
240 {0x00808000, 0, 0,
241 "Qualified success"},
Brian King933916f2007-03-29 12:43:30 -0500242 {0x01080000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 "FFFE: Soft device bus error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500244 {0x01088100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500245 "4101: Soft device bus fabric error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800246 {0x01100100, 0, IPR_DEFAULT_LOG_LEVEL,
247 "FFFC: Logical block guard error recovered by the device"},
248 {0x01100300, 0, IPR_DEFAULT_LOG_LEVEL,
249 "FFFC: Logical block reference tag error recovered by the device"},
250 {0x01108300, 0, IPR_DEFAULT_LOG_LEVEL,
251 "4171: Recovered scatter list tag / sequence number error"},
252 {0x01109000, 0, IPR_DEFAULT_LOG_LEVEL,
253 "FF3D: Recovered logical block CRC error on IOA to Host transfer"},
254 {0x01109200, 0, IPR_DEFAULT_LOG_LEVEL,
255 "4171: Recovered logical block sequence number error on IOA to Host transfer"},
256 {0x0110A000, 0, IPR_DEFAULT_LOG_LEVEL,
257 "FFFD: Recovered logical block reference tag error detected by the IOA"},
258 {0x0110A100, 0, IPR_DEFAULT_LOG_LEVEL,
259 "FFFD: Logical block guard error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500260 {0x01170600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 "FFF9: Device sector reassign successful"},
Brian King933916f2007-03-29 12:43:30 -0500262 {0x01170900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 "FFF7: Media error recovered by device rewrite procedures"},
Brian King933916f2007-03-29 12:43:30 -0500264 {0x01180200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 "7001: IOA sector reassignment successful"},
Brian King933916f2007-03-29 12:43:30 -0500266 {0x01180500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 "FFF9: Soft media error. Sector reassignment recommended"},
Brian King933916f2007-03-29 12:43:30 -0500268 {0x01180600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 "FFF7: Media error recovered by IOA rewrite procedures"},
Brian King933916f2007-03-29 12:43:30 -0500270 {0x01418000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 "FF3D: Soft PCI bus error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500272 {0x01440000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 "FFF6: Device hardware error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500274 {0x01448100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 "FFF6: Device hardware error recovered by the device"},
Brian King933916f2007-03-29 12:43:30 -0500276 {0x01448200, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 "FF3D: Soft IOA error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500278 {0x01448300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 "FFFA: Undefined device response recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500280 {0x014A0000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 "FFF6: Device bus error, message or command phase"},
Brian King933916f2007-03-29 12:43:30 -0500282 {0x014A8000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King35a39692006-09-25 12:39:20 -0500283 "FFFE: Task Management Function failed"},
Brian King933916f2007-03-29 12:43:30 -0500284 {0x015D0000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 "FFF6: Failure prediction threshold exceeded"},
Brian King933916f2007-03-29 12:43:30 -0500286 {0x015D9200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 "8009: Impending cache battery pack failure"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500288 {0x02040100, 0, 0,
289 "Logical Unit in process of becoming ready"},
290 {0x02040200, 0, 0,
291 "Initializing command required"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 {0x02040400, 0, 0,
293 "34FF: Disk device format in progress"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500294 {0x02040C00, 0, 0,
295 "Logical unit not accessible, target port in unavailable state"},
Brian King65f56472007-04-26 16:00:12 -0500296 {0x02048000, 0, IPR_DEFAULT_LOG_LEVEL,
297 "9070: IOA requested reset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 {0x023F0000, 0, 0,
299 "Synchronization required"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500300 {0x02408500, 0, 0,
301 "IOA microcode download required"},
302 {0x02408600, 0, 0,
303 "Device bus connection is prohibited by host"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 {0x024E0000, 0, 0,
305 "No ready, IOA shutdown"},
306 {0x025A0000, 0, 0,
307 "Not ready, IOA has been shutdown"},
Brian King933916f2007-03-29 12:43:30 -0500308 {0x02670100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 "3020: Storage subsystem configuration error"},
310 {0x03110B00, 0, 0,
311 "FFF5: Medium error, data unreadable, recommend reassign"},
312 {0x03110C00, 0, 0,
313 "7000: Medium error, data unreadable, do not reassign"},
Brian King933916f2007-03-29 12:43:30 -0500314 {0x03310000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 "FFF3: Disk media format bad"},
Brian King933916f2007-03-29 12:43:30 -0500316 {0x04050000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 "3002: Addressed device failed to respond to selection"},
Brian King933916f2007-03-29 12:43:30 -0500318 {0x04080000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 "3100: Device bus error"},
Brian King933916f2007-03-29 12:43:30 -0500320 {0x04080100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 "3109: IOA timed out a device command"},
322 {0x04088000, 0, 0,
323 "3120: SCSI bus is not operational"},
Brian King933916f2007-03-29 12:43:30 -0500324 {0x04088100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500325 "4100: Hard device bus fabric error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800326 {0x04100100, 0, IPR_DEFAULT_LOG_LEVEL,
327 "310C: Logical block guard error detected by the device"},
328 {0x04100300, 0, IPR_DEFAULT_LOG_LEVEL,
329 "310C: Logical block reference tag error detected by the device"},
330 {0x04108300, 1, IPR_DEFAULT_LOG_LEVEL,
331 "4170: Scatter list tag / sequence number error"},
332 {0x04109000, 1, IPR_DEFAULT_LOG_LEVEL,
333 "8150: Logical block CRC error on IOA to Host transfer"},
334 {0x04109200, 1, IPR_DEFAULT_LOG_LEVEL,
335 "4170: Logical block sequence number error on IOA to Host transfer"},
336 {0x0410A000, 0, IPR_DEFAULT_LOG_LEVEL,
337 "310D: Logical block reference tag error detected by the IOA"},
338 {0x0410A100, 0, IPR_DEFAULT_LOG_LEVEL,
339 "310D: Logical block guard error detected by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500340 {0x04118000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 "9000: IOA reserved area data check"},
Brian King933916f2007-03-29 12:43:30 -0500342 {0x04118100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 "9001: IOA reserved area invalid data pattern"},
Brian King933916f2007-03-29 12:43:30 -0500344 {0x04118200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 "9002: IOA reserved area LRC error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800346 {0x04118300, 1, IPR_DEFAULT_LOG_LEVEL,
347 "Hardware Error, IOA metadata access error"},
Brian King933916f2007-03-29 12:43:30 -0500348 {0x04320000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 "102E: Out of alternate sectors for disk storage"},
Brian King933916f2007-03-29 12:43:30 -0500350 {0x04330000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 "FFF4: Data transfer underlength error"},
Brian King933916f2007-03-29 12:43:30 -0500352 {0x04338000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 "FFF4: Data transfer overlength error"},
Brian King933916f2007-03-29 12:43:30 -0500354 {0x043E0100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 "3400: Logical unit failure"},
Brian King933916f2007-03-29 12:43:30 -0500356 {0x04408500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 "FFF4: Device microcode is corrupt"},
Brian King933916f2007-03-29 12:43:30 -0500358 {0x04418000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 "8150: PCI bus error"},
360 {0x04430000, 1, 0,
361 "Unsupported device bus message received"},
Brian King933916f2007-03-29 12:43:30 -0500362 {0x04440000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 "FFF4: Disk device problem"},
Brian King933916f2007-03-29 12:43:30 -0500364 {0x04448200, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 "8150: Permanent IOA failure"},
Brian King933916f2007-03-29 12:43:30 -0500366 {0x04448300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 "3010: Disk device returned wrong response to IOA"},
Brian King933916f2007-03-29 12:43:30 -0500368 {0x04448400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 "8151: IOA microcode error"},
370 {0x04448500, 0, 0,
371 "Device bus status error"},
Brian King933916f2007-03-29 12:43:30 -0500372 {0x04448600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 "8157: IOA error requiring IOA reset to recover"},
Brian King35a39692006-09-25 12:39:20 -0500374 {0x04448700, 0, 0,
375 "ATA device status error"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 {0x04490000, 0, 0,
377 "Message reject received from the device"},
Brian King933916f2007-03-29 12:43:30 -0500378 {0x04449200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 "8008: A permanent cache battery pack failure occurred"},
Brian King933916f2007-03-29 12:43:30 -0500380 {0x0444A000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 "9090: Disk unit has been modified after the last known status"},
Brian King933916f2007-03-29 12:43:30 -0500382 {0x0444A200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 "9081: IOA detected device error"},
Brian King933916f2007-03-29 12:43:30 -0500384 {0x0444A300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 "9082: IOA detected device error"},
Brian King933916f2007-03-29 12:43:30 -0500386 {0x044A0000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 "3110: Device bus error, message or command phase"},
Brian King933916f2007-03-29 12:43:30 -0500388 {0x044A8000, 1, IPR_DEFAULT_LOG_LEVEL,
Brian King35a39692006-09-25 12:39:20 -0500389 "3110: SAS Command / Task Management Function failed"},
Brian King933916f2007-03-29 12:43:30 -0500390 {0x04670400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 "9091: Incorrect hardware configuration change has been detected"},
Brian King933916f2007-03-29 12:43:30 -0500392 {0x04678000, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600393 "9073: Invalid multi-adapter configuration"},
Brian King933916f2007-03-29 12:43:30 -0500394 {0x04678100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500395 "4010: Incorrect connection between cascaded expanders"},
Brian King933916f2007-03-29 12:43:30 -0500396 {0x04678200, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500397 "4020: Connections exceed IOA design limits"},
Brian King933916f2007-03-29 12:43:30 -0500398 {0x04678300, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500399 "4030: Incorrect multipath connection"},
Brian King933916f2007-03-29 12:43:30 -0500400 {0x04679000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500401 "4110: Unsupported enclosure function"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500402 {0x04679800, 0, IPR_DEFAULT_LOG_LEVEL,
403 "4120: SAS cable VPD cannot be read"},
Brian King933916f2007-03-29 12:43:30 -0500404 {0x046E0000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 "FFF4: Command to logical unit failed"},
406 {0x05240000, 1, 0,
407 "Illegal request, invalid request type or request packet"},
408 {0x05250000, 0, 0,
409 "Illegal request, invalid resource handle"},
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600410 {0x05258000, 0, 0,
411 "Illegal request, commands not allowed to this device"},
412 {0x05258100, 0, 0,
413 "Illegal request, command not allowed to a secondary adapter"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800414 {0x05258200, 0, 0,
415 "Illegal request, command not allowed to a non-optimized resource"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 {0x05260000, 0, 0,
417 "Illegal request, invalid field in parameter list"},
418 {0x05260100, 0, 0,
419 "Illegal request, parameter not supported"},
420 {0x05260200, 0, 0,
421 "Illegal request, parameter value invalid"},
422 {0x052C0000, 0, 0,
423 "Illegal request, command sequence error"},
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600424 {0x052C8000, 1, 0,
425 "Illegal request, dual adapter support not enabled"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500426 {0x052C8100, 1, 0,
427 "Illegal request, another cable connector was physically disabled"},
428 {0x054E8000, 1, 0,
429 "Illegal request, inconsistent group id/group count"},
Brian King933916f2007-03-29 12:43:30 -0500430 {0x06040500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 "9031: Array protection temporarily suspended, protection resuming"},
Brian King933916f2007-03-29 12:43:30 -0500432 {0x06040600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 "9040: Array protection temporarily suspended, protection resuming"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500434 {0x060B0100, 0, IPR_DEFAULT_LOG_LEVEL,
435 "4080: IOA exceeded maximum operating temperature"},
436 {0x060B8000, 0, IPR_DEFAULT_LOG_LEVEL,
437 "4085: Service required"},
Brian King933916f2007-03-29 12:43:30 -0500438 {0x06288000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500439 "3140: Device bus not ready to ready transition"},
Brian King933916f2007-03-29 12:43:30 -0500440 {0x06290000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 "FFFB: SCSI bus was reset"},
442 {0x06290500, 0, 0,
443 "FFFE: SCSI bus transition to single ended"},
444 {0x06290600, 0, 0,
445 "FFFE: SCSI bus transition to LVD"},
Brian King933916f2007-03-29 12:43:30 -0500446 {0x06298000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 "FFFB: SCSI bus was reset by another initiator"},
Brian King933916f2007-03-29 12:43:30 -0500448 {0x063F0300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 "3029: A device replacement has occurred"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500450 {0x063F8300, 0, IPR_DEFAULT_LOG_LEVEL,
451 "4102: Device bus fabric performance degradation"},
Brian King933916f2007-03-29 12:43:30 -0500452 {0x064C8000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 "9051: IOA cache data exists for a missing or failed device"},
Brian King933916f2007-03-29 12:43:30 -0500454 {0x064C8100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600455 "9055: Auxiliary cache IOA contains cache data needed by the primary IOA"},
Brian King933916f2007-03-29 12:43:30 -0500456 {0x06670100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 "9025: Disk unit is not supported at its physical location"},
Brian King933916f2007-03-29 12:43:30 -0500458 {0x06670600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 "3020: IOA detected a SCSI bus configuration error"},
Brian King933916f2007-03-29 12:43:30 -0500460 {0x06678000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 "3150: SCSI bus configuration error"},
Brian King933916f2007-03-29 12:43:30 -0500462 {0x06678100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600463 "9074: Asymmetric advanced function disk configuration"},
Brian King933916f2007-03-29 12:43:30 -0500464 {0x06678300, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500465 "4040: Incomplete multipath connection between IOA and enclosure"},
Brian King933916f2007-03-29 12:43:30 -0500466 {0x06678400, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500467 "4041: Incomplete multipath connection between enclosure and device"},
Brian King933916f2007-03-29 12:43:30 -0500468 {0x06678500, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500469 "9075: Incomplete multipath connection between IOA and remote IOA"},
Brian King933916f2007-03-29 12:43:30 -0500470 {0x06678600, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500471 "9076: Configuration error, missing remote IOA"},
Brian King933916f2007-03-29 12:43:30 -0500472 {0x06679100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500473 "4050: Enclosure does not support a required multipath function"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500474 {0x06679800, 0, IPR_DEFAULT_LOG_LEVEL,
475 "4121: Configuration error, required cable is missing"},
476 {0x06679900, 0, IPR_DEFAULT_LOG_LEVEL,
477 "4122: Cable is not plugged into the correct location on remote IOA"},
478 {0x06679A00, 0, IPR_DEFAULT_LOG_LEVEL,
479 "4123: Configuration error, invalid cable vital product data"},
480 {0x06679B00, 0, IPR_DEFAULT_LOG_LEVEL,
481 "4124: Configuration error, both cable ends are plugged into the same IOA"},
Wayne Boyerb75424f2009-01-28 08:24:50 -0800482 {0x06690000, 0, IPR_DEFAULT_LOG_LEVEL,
483 "4070: Logically bad block written on device"},
Brian King933916f2007-03-29 12:43:30 -0500484 {0x06690200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 "9041: Array protection temporarily suspended"},
Brian King933916f2007-03-29 12:43:30 -0500486 {0x06698200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 "9042: Corrupt array parity detected on specified device"},
Brian King933916f2007-03-29 12:43:30 -0500488 {0x066B0200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 "9030: Array no longer protected due to missing or failed disk unit"},
Brian King933916f2007-03-29 12:43:30 -0500490 {0x066B8000, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600491 "9071: Link operational transition"},
Brian King933916f2007-03-29 12:43:30 -0500492 {0x066B8100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600493 "9072: Link not operational transition"},
Brian King933916f2007-03-29 12:43:30 -0500494 {0x066B8200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 "9032: Array exposed but still protected"},
Brian Kinge4353402007-03-29 12:43:37 -0500496 {0x066B8300, 0, IPR_DEFAULT_LOG_LEVEL + 1,
497 "70DD: Device forced failed by disrupt device command"},
Brian King933916f2007-03-29 12:43:30 -0500498 {0x066B9100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500499 "4061: Multipath redundancy level got better"},
Brian King933916f2007-03-29 12:43:30 -0500500 {0x066B9200, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500501 "4060: Multipath redundancy level got worse"},
Wen Xiongf8ee25d2015-03-26 11:23:58 -0500502 {0x06808100, 0, IPR_DEFAULT_LOG_LEVEL,
503 "9083: Device raw mode enabled"},
504 {0x06808200, 0, IPR_DEFAULT_LOG_LEVEL,
505 "9084: Device raw mode disabled"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 {0x07270000, 0, 0,
507 "Failure due to other device"},
Brian King933916f2007-03-29 12:43:30 -0500508 {0x07278000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 "9008: IOA does not support functions expected by devices"},
Brian King933916f2007-03-29 12:43:30 -0500510 {0x07278100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 "9010: Cache data associated with attached devices cannot be found"},
Brian King933916f2007-03-29 12:43:30 -0500512 {0x07278200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 "9011: Cache data belongs to devices other than those attached"},
Brian King933916f2007-03-29 12:43:30 -0500514 {0x07278400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 "9020: Array missing 2 or more devices with only 1 device present"},
Brian King933916f2007-03-29 12:43:30 -0500516 {0x07278500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 "9021: Array missing 2 or more devices with 2 or more devices present"},
Brian King933916f2007-03-29 12:43:30 -0500518 {0x07278600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 "9022: Exposed array is missing a required device"},
Brian King933916f2007-03-29 12:43:30 -0500520 {0x07278700, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 "9023: Array member(s) not at required physical locations"},
Brian King933916f2007-03-29 12:43:30 -0500522 {0x07278800, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 "9024: Array not functional due to present hardware configuration"},
Brian King933916f2007-03-29 12:43:30 -0500524 {0x07278900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 "9026: Array not functional due to present hardware configuration"},
Brian King933916f2007-03-29 12:43:30 -0500526 {0x07278A00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 "9027: Array is missing a device and parity is out of sync"},
Brian King933916f2007-03-29 12:43:30 -0500528 {0x07278B00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 "9028: Maximum number of arrays already exist"},
Brian King933916f2007-03-29 12:43:30 -0500530 {0x07278C00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 "9050: Required cache data cannot be located for a disk unit"},
Brian King933916f2007-03-29 12:43:30 -0500532 {0x07278D00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 "9052: Cache data exists for a device that has been modified"},
Brian King933916f2007-03-29 12:43:30 -0500534 {0x07278F00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 "9054: IOA resources not available due to previous problems"},
Brian King933916f2007-03-29 12:43:30 -0500536 {0x07279100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 "9092: Disk unit requires initialization before use"},
Brian King933916f2007-03-29 12:43:30 -0500538 {0x07279200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 "9029: Incorrect hardware configuration change has been detected"},
Brian King933916f2007-03-29 12:43:30 -0500540 {0x07279600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 "9060: One or more disk pairs are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500542 {0x07279700, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 "9061: One or more disks are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500544 {0x07279800, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 "9062: One or more disks are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500546 {0x07279900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 "9063: Maximum number of functional arrays has been exceeded"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500548 {0x07279A00, 0, 0,
549 "Data protect, other volume set problem"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 {0x0B260000, 0, 0,
551 "Aborted command, invalid descriptor"},
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500552 {0x0B3F9000, 0, 0,
553 "Target operating conditions have changed, dual adapter takeover"},
554 {0x0B530200, 0, 0,
555 "Aborted command, medium removal prevented"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 {0x0B5A0000, 0, 0,
wenxiong@linux.vnet.ibm.comed7bd662013-06-04 18:57:35 -0500557 "Command terminated by host"},
558 {0x0B5B8000, 0, 0,
559 "Aborted command, command terminated by host"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560};
561
562static const struct ipr_ses_table_entry ipr_ses_table[] = {
563 { "2104-DL1 ", "XXXXXXXXXXXXXXXX", 80 },
564 { "2104-TL1 ", "XXXXXXXXXXXXXXXX", 80 },
565 { "HSBP07M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 7 slot */
566 { "HSBP05M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 5 slot */
567 { "HSBP05M S U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Bowtie */
568 { "HSBP06E ASU2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* MartinFenning */
569 { "2104-DU3 ", "XXXXXXXXXXXXXXXX", 160 },
570 { "2104-TU3 ", "XXXXXXXXXXXXXXXX", 160 },
571 { "HSBP04C RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
572 { "HSBP06E RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
573 { "St V1S2 ", "XXXXXXXXXXXXXXXX", 160 },
574 { "HSBPD4M PU3SCSI", "XXXXXXX*XXXXXXXX", 160 },
575 { "VSBPD1H U3SCSI", "XXXXXXX*XXXXXXXX", 160 }
576};
577
578/*
579 * Function Prototypes
580 */
581static int ipr_reset_alert(struct ipr_cmnd *);
582static void ipr_process_ccn(struct ipr_cmnd *);
583static void ipr_process_error(struct ipr_cmnd *);
584static void ipr_reset_ioa_job(struct ipr_cmnd *);
585static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *,
586 enum ipr_shutdown_type);
587
588#ifdef CONFIG_SCSI_IPR_TRACE
589/**
590 * ipr_trc_hook - Add a trace entry to the driver trace
591 * @ipr_cmd: ipr command struct
592 * @type: trace type
593 * @add_data: additional data
594 *
595 * Return value:
596 * none
597 **/
598static void ipr_trc_hook(struct ipr_cmnd *ipr_cmd,
599 u8 type, u32 add_data)
600{
601 struct ipr_trace_entry *trace_entry;
602 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Brian Kingbb7c5432015-07-14 11:41:31 -0500603 unsigned int trace_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Brian Kingbb7c5432015-07-14 11:41:31 -0500605 trace_index = atomic_add_return(1, &ioa_cfg->trace_index) & IPR_TRACE_INDEX_MASK;
606 trace_entry = &ioa_cfg->trace[trace_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 trace_entry->time = jiffies;
608 trace_entry->op_code = ipr_cmd->ioarcb.cmd_pkt.cdb[0];
609 trace_entry->type = type;
Wayne Boyera32c0552010-02-19 13:23:36 -0800610 if (ipr_cmd->ioa_cfg->sis64)
611 trace_entry->ata_op_code = ipr_cmd->i.ata_ioadl.regs.command;
612 else
613 trace_entry->ata_op_code = ipr_cmd->ioarcb.u.add_data.u.regs.command;
Brian King35a39692006-09-25 12:39:20 -0500614 trace_entry->cmd_index = ipr_cmd->cmd_index & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 trace_entry->res_handle = ipr_cmd->ioarcb.res_handle;
616 trace_entry->u.add_data = add_data;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600617 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619#else
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -0300620#define ipr_trc_hook(ipr_cmd, type, add_data) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621#endif
622
623/**
Brian King172cd6e2012-07-17 08:14:40 -0500624 * ipr_lock_and_done - Acquire lock and complete command
625 * @ipr_cmd: ipr command struct
626 *
627 * Return value:
628 * none
629 **/
630static void ipr_lock_and_done(struct ipr_cmnd *ipr_cmd)
631{
632 unsigned long lock_flags;
633 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
634
635 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
636 ipr_cmd->done(ipr_cmd);
637 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
638}
639
640/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * ipr_reinit_ipr_cmnd - Re-initialize an IPR Cmnd block for reuse
642 * @ipr_cmd: ipr command struct
643 *
644 * Return value:
645 * none
646 **/
647static void ipr_reinit_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
648{
649 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -0700650 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
651 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
Wayne Boyera32c0552010-02-19 13:23:36 -0800652 dma_addr_t dma_addr = ipr_cmd->dma_addr;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600653 int hrrq_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600655 hrrq_id = ioarcb->cmd_pkt.hrrq_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600657 ioarcb->cmd_pkt.hrrq_id = hrrq_id;
Wayne Boyera32c0552010-02-19 13:23:36 -0800658 ioarcb->data_transfer_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 ioarcb->read_data_transfer_length = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800660 ioarcb->ioadl_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 ioarcb->read_ioadl_len = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800662
Wayne Boyer96d21f02010-05-10 09:13:27 -0700663 if (ipr_cmd->ioa_cfg->sis64) {
Wayne Boyera32c0552010-02-19 13:23:36 -0800664 ioarcb->u.sis64_addr_data.data_ioadl_addr =
665 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
Wayne Boyer96d21f02010-05-10 09:13:27 -0700666 ioasa64->u.gata.status = 0;
667 } else {
Wayne Boyera32c0552010-02-19 13:23:36 -0800668 ioarcb->write_ioadl_addr =
669 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
670 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
Wayne Boyer96d21f02010-05-10 09:13:27 -0700671 ioasa->u.gata.status = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800672 }
673
Wayne Boyer96d21f02010-05-10 09:13:27 -0700674 ioasa->hdr.ioasc = 0;
675 ioasa->hdr.residual_data_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 ipr_cmd->scsi_cmd = NULL;
Brian King35a39692006-09-25 12:39:20 -0500677 ipr_cmd->qc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 ipr_cmd->sense_buffer[0] = 0;
679 ipr_cmd->dma_use_sg = 0;
680}
681
682/**
683 * ipr_init_ipr_cmnd - Initialize an IPR Cmnd block
684 * @ipr_cmd: ipr command struct
685 *
686 * Return value:
687 * none
688 **/
Brian King172cd6e2012-07-17 08:14:40 -0500689static void ipr_init_ipr_cmnd(struct ipr_cmnd *ipr_cmd,
690 void (*fast_done) (struct ipr_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 ipr_reinit_ipr_cmnd(ipr_cmd);
693 ipr_cmd->u.scratch = 0;
694 ipr_cmd->sibling = NULL;
Brian King6cdb0812014-10-30 17:27:10 -0500695 ipr_cmd->eh_comp = NULL;
Brian King172cd6e2012-07-17 08:14:40 -0500696 ipr_cmd->fast_done = fast_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 init_timer(&ipr_cmd->timer);
698}
699
700/**
Brian King00bfef22012-07-17 08:13:52 -0500701 * __ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * @ioa_cfg: ioa config struct
703 *
704 * Return value:
705 * pointer to ipr command struct
706 **/
707static
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600708struct ipr_cmnd *__ipr_get_free_ipr_cmnd(struct ipr_hrr_queue *hrrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600710 struct ipr_cmnd *ipr_cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600712 if (likely(!list_empty(&hrrq->hrrq_free_q))) {
713 ipr_cmd = list_entry(hrrq->hrrq_free_q.next,
714 struct ipr_cmnd, queue);
715 list_del(&ipr_cmd->queue);
716 }
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 return ipr_cmd;
720}
721
722/**
Brian King00bfef22012-07-17 08:13:52 -0500723 * ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block and initialize it
724 * @ioa_cfg: ioa config struct
725 *
726 * Return value:
727 * pointer to ipr command struct
728 **/
729static
730struct ipr_cmnd *ipr_get_free_ipr_cmnd(struct ipr_ioa_cfg *ioa_cfg)
731{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600732 struct ipr_cmnd *ipr_cmd =
733 __ipr_get_free_ipr_cmnd(&ioa_cfg->hrrq[IPR_INIT_HRRQ]);
Brian King172cd6e2012-07-17 08:14:40 -0500734 ipr_init_ipr_cmnd(ipr_cmd, ipr_lock_and_done);
Brian King00bfef22012-07-17 08:13:52 -0500735 return ipr_cmd;
736}
737
738/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * ipr_mask_and_clear_interrupts - Mask all and clear specified interrupts
740 * @ioa_cfg: ioa config struct
741 * @clr_ints: interrupts to clear
742 *
743 * This function masks all interrupts on the adapter, then clears the
744 * interrupts specified in the mask
745 *
746 * Return value:
747 * none
748 **/
749static void ipr_mask_and_clear_interrupts(struct ipr_ioa_cfg *ioa_cfg,
750 u32 clr_ints)
751{
752 volatile u32 int_reg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600753 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /* Stop new interrupts */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600756 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
757 spin_lock(&ioa_cfg->hrrq[i]._lock);
758 ioa_cfg->hrrq[i].allow_interrupts = 0;
759 spin_unlock(&ioa_cfg->hrrq[i]._lock);
760 }
761 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /* Set interrupt mask to stop all new interrupts */
Wayne Boyer214777b2010-02-19 13:24:26 -0800764 if (ioa_cfg->sis64)
765 writeq(~0, ioa_cfg->regs.set_interrupt_mask_reg);
766 else
767 writel(~0, ioa_cfg->regs.set_interrupt_mask_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /* Clear any pending interrupts */
Wayne Boyer214777b2010-02-19 13:24:26 -0800770 if (ioa_cfg->sis64)
771 writel(~0, ioa_cfg->regs.clr_interrupt_reg);
772 writel(clr_ints, ioa_cfg->regs.clr_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
774}
775
776/**
777 * ipr_save_pcix_cmd_reg - Save PCI-X command register
778 * @ioa_cfg: ioa config struct
779 *
780 * Return value:
781 * 0 on success / -EIO on failure
782 **/
783static int ipr_save_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
784{
785 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
786
Brian King7dce0e12007-01-23 11:25:30 -0600787 if (pcix_cmd_reg == 0)
788 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (pci_read_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
791 &ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
792 dev_err(&ioa_cfg->pdev->dev, "Failed to save PCI-X command register\n");
793 return -EIO;
794 }
795
796 ioa_cfg->saved_pcix_cmd_reg |= PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO;
797 return 0;
798}
799
800/**
801 * ipr_set_pcix_cmd_reg - Setup PCI-X command register
802 * @ioa_cfg: ioa config struct
803 *
804 * Return value:
805 * 0 on success / -EIO on failure
806 **/
807static int ipr_set_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
808{
809 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
810
811 if (pcix_cmd_reg) {
812 if (pci_write_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
813 ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
814 dev_err(&ioa_cfg->pdev->dev, "Failed to setup PCI-X command register\n");
815 return -EIO;
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
819 return 0;
820}
821
822/**
Brian King35a39692006-09-25 12:39:20 -0500823 * ipr_sata_eh_done - done function for aborted SATA commands
824 * @ipr_cmd: ipr command struct
825 *
826 * This function is invoked for ops generated to SATA
827 * devices which are being aborted.
828 *
829 * Return value:
830 * none
831 **/
832static void ipr_sata_eh_done(struct ipr_cmnd *ipr_cmd)
833{
Brian King35a39692006-09-25 12:39:20 -0500834 struct ata_queued_cmd *qc = ipr_cmd->qc;
835 struct ipr_sata_port *sata_port = qc->ap->private_data;
836
837 qc->err_mask |= AC_ERR_OTHER;
838 sata_port->ioasa.status |= ATA_BUSY;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600839 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Brian King35a39692006-09-25 12:39:20 -0500840 ata_qc_complete(qc);
841}
842
843/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * ipr_scsi_eh_done - mid-layer done function for aborted ops
845 * @ipr_cmd: ipr command struct
846 *
847 * This function is invoked by the interrupt handler for
848 * ops generated by the SCSI mid-layer which are being aborted.
849 *
850 * Return value:
851 * none
852 **/
853static void ipr_scsi_eh_done(struct ipr_cmnd *ipr_cmd)
854{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
856
857 scsi_cmd->result |= (DID_ERROR << 16);
858
FUJITA Tomonori63015bc2007-05-26 00:26:59 +0900859 scsi_dma_unmap(ipr_cmd->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 scsi_cmd->scsi_done(scsi_cmd);
Brian King6cdb0812014-10-30 17:27:10 -0500861 if (ipr_cmd->eh_comp)
862 complete(ipr_cmd->eh_comp);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600863 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866/**
867 * ipr_fail_all_ops - Fails all outstanding ops.
868 * @ioa_cfg: ioa config struct
869 *
870 * This function fails all outstanding ops.
871 *
872 * Return value:
873 * none
874 **/
875static void ipr_fail_all_ops(struct ipr_ioa_cfg *ioa_cfg)
876{
877 struct ipr_cmnd *ipr_cmd, *temp;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600878 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 ENTER;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600881 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600882 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600883 list_for_each_entry_safe(ipr_cmd,
884 temp, &hrrq->hrrq_pending_q, queue) {
885 list_del(&ipr_cmd->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600887 ipr_cmd->s.ioasa.hdr.ioasc =
888 cpu_to_be32(IPR_IOASC_IOA_WAS_RESET);
889 ipr_cmd->s.ioasa.hdr.ilid =
890 cpu_to_be32(IPR_DRIVER_ILID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600892 if (ipr_cmd->scsi_cmd)
893 ipr_cmd->done = ipr_scsi_eh_done;
894 else if (ipr_cmd->qc)
895 ipr_cmd->done = ipr_sata_eh_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600897 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH,
898 IPR_IOASC_IOA_WAS_RESET);
899 del_timer(&ipr_cmd->timer);
900 ipr_cmd->done(ipr_cmd);
901 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600902 spin_unlock(&hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 LEAVE;
905}
906
907/**
Wayne Boyera32c0552010-02-19 13:23:36 -0800908 * ipr_send_command - Send driver initiated requests.
909 * @ipr_cmd: ipr command struct
910 *
911 * This function sends a command to the adapter using the correct write call.
912 * In the case of sis64, calculate the ioarcb size required. Then or in the
913 * appropriate bits.
914 *
915 * Return value:
916 * none
917 **/
918static void ipr_send_command(struct ipr_cmnd *ipr_cmd)
919{
920 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
921 dma_addr_t send_dma_addr = ipr_cmd->dma_addr;
922
923 if (ioa_cfg->sis64) {
924 /* The default size is 256 bytes */
925 send_dma_addr |= 0x1;
926
927 /* If the number of ioadls * size of ioadl > 128 bytes,
928 then use a 512 byte ioarcb */
929 if (ipr_cmd->dma_use_sg * sizeof(struct ipr_ioadl64_desc) > 128 )
930 send_dma_addr |= 0x4;
931 writeq(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
932 } else
933 writel(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
934}
935
936/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * ipr_do_req - Send driver initiated requests.
938 * @ipr_cmd: ipr command struct
939 * @done: done function
940 * @timeout_func: timeout function
941 * @timeout: timeout value
942 *
943 * This function sends the specified command to the adapter with the
944 * timeout given. The done function is invoked on command completion.
945 *
946 * Return value:
947 * none
948 **/
949static void ipr_do_req(struct ipr_cmnd *ipr_cmd,
950 void (*done) (struct ipr_cmnd *),
951 void (*timeout_func) (struct ipr_cmnd *), u32 timeout)
952{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600953 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 ipr_cmd->done = done;
956
957 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
958 ipr_cmd->timer.expires = jiffies + timeout;
959 ipr_cmd->timer.function = (void (*)(unsigned long))timeout_func;
960
961 add_timer(&ipr_cmd->timer);
962
963 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, 0);
964
Wayne Boyera32c0552010-02-19 13:23:36 -0800965 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968/**
969 * ipr_internal_cmd_done - Op done function for an internally generated op.
970 * @ipr_cmd: ipr command struct
971 *
972 * This function is the op done function for an internally generated,
973 * blocking op. It simply wakes the sleeping thread.
974 *
975 * Return value:
976 * none
977 **/
978static void ipr_internal_cmd_done(struct ipr_cmnd *ipr_cmd)
979{
980 if (ipr_cmd->sibling)
981 ipr_cmd->sibling = NULL;
982 else
983 complete(&ipr_cmd->completion);
984}
985
986/**
Wayne Boyera32c0552010-02-19 13:23:36 -0800987 * ipr_init_ioadl - initialize the ioadl for the correct SIS type
988 * @ipr_cmd: ipr command struct
989 * @dma_addr: dma address
990 * @len: transfer length
991 * @flags: ioadl flag value
992 *
993 * This function initializes an ioadl in the case where there is only a single
994 * descriptor.
995 *
996 * Return value:
997 * nothing
998 **/
999static void ipr_init_ioadl(struct ipr_cmnd *ipr_cmd, dma_addr_t dma_addr,
1000 u32 len, int flags)
1001{
1002 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
1003 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
1004
1005 ipr_cmd->dma_use_sg = 1;
1006
1007 if (ipr_cmd->ioa_cfg->sis64) {
1008 ioadl64->flags = cpu_to_be32(flags);
1009 ioadl64->data_len = cpu_to_be32(len);
1010 ioadl64->address = cpu_to_be64(dma_addr);
1011
1012 ipr_cmd->ioarcb.ioadl_len =
1013 cpu_to_be32(sizeof(struct ipr_ioadl64_desc));
1014 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
1015 } else {
1016 ioadl->flags_and_data_len = cpu_to_be32(flags | len);
1017 ioadl->address = cpu_to_be32(dma_addr);
1018
1019 if (flags == IPR_IOADL_FLAGS_READ_LAST) {
1020 ipr_cmd->ioarcb.read_ioadl_len =
1021 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
1022 ipr_cmd->ioarcb.read_data_transfer_length = cpu_to_be32(len);
1023 } else {
1024 ipr_cmd->ioarcb.ioadl_len =
1025 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
1026 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
1027 }
1028 }
1029}
1030
1031/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 * ipr_send_blocking_cmd - Send command and sleep on its completion.
1033 * @ipr_cmd: ipr command struct
1034 * @timeout_func: function to invoke if command times out
1035 * @timeout: timeout
1036 *
1037 * Return value:
1038 * none
1039 **/
1040static void ipr_send_blocking_cmd(struct ipr_cmnd *ipr_cmd,
1041 void (*timeout_func) (struct ipr_cmnd *ipr_cmd),
1042 u32 timeout)
1043{
1044 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
1045
1046 init_completion(&ipr_cmd->completion);
1047 ipr_do_req(ipr_cmd, ipr_internal_cmd_done, timeout_func, timeout);
1048
1049 spin_unlock_irq(ioa_cfg->host->host_lock);
1050 wait_for_completion(&ipr_cmd->completion);
1051 spin_lock_irq(ioa_cfg->host->host_lock);
1052}
1053
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001054static int ipr_get_hrrq_index(struct ipr_ioa_cfg *ioa_cfg)
1055{
Brian King3f1c0582015-07-14 11:41:33 -05001056 unsigned int hrrq;
1057
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001058 if (ioa_cfg->hrrq_num == 1)
Brian King3f1c0582015-07-14 11:41:33 -05001059 hrrq = 0;
1060 else {
1061 hrrq = atomic_add_return(1, &ioa_cfg->hrrq_index);
1062 hrrq = (hrrq % (ioa_cfg->hrrq_num - 1)) + 1;
1063 }
1064 return hrrq;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001065}
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067/**
1068 * ipr_send_hcam - Send an HCAM to the adapter.
1069 * @ioa_cfg: ioa config struct
1070 * @type: HCAM type
1071 * @hostrcb: hostrcb struct
1072 *
1073 * This function will send a Host Controlled Async command to the adapter.
1074 * If HCAMs are currently not allowed to be issued to the adapter, it will
1075 * place the hostrcb on the free queue.
1076 *
1077 * Return value:
1078 * none
1079 **/
1080static void ipr_send_hcam(struct ipr_ioa_cfg *ioa_cfg, u8 type,
1081 struct ipr_hostrcb *hostrcb)
1082{
1083 struct ipr_cmnd *ipr_cmd;
1084 struct ipr_ioarcb *ioarcb;
1085
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06001086 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001088 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_pending_q);
1090
1091 ipr_cmd->u.hostrcb = hostrcb;
1092 ioarcb = &ipr_cmd->ioarcb;
1093
1094 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
1095 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_HCAM;
1096 ioarcb->cmd_pkt.cdb[0] = IPR_HOST_CONTROLLED_ASYNC;
1097 ioarcb->cmd_pkt.cdb[1] = type;
1098 ioarcb->cmd_pkt.cdb[7] = (sizeof(hostrcb->hcam) >> 8) & 0xff;
1099 ioarcb->cmd_pkt.cdb[8] = sizeof(hostrcb->hcam) & 0xff;
1100
Wayne Boyera32c0552010-02-19 13:23:36 -08001101 ipr_init_ioadl(ipr_cmd, hostrcb->hostrcb_dma,
1102 sizeof(hostrcb->hcam), IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (type == IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE)
1105 ipr_cmd->done = ipr_process_ccn;
1106 else
1107 ipr_cmd->done = ipr_process_error;
1108
1109 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_IOA_RES_ADDR);
1110
Wayne Boyera32c0552010-02-19 13:23:36 -08001111 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 } else {
1113 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
1114 }
1115}
1116
1117/**
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001118 * ipr_update_ata_class - Update the ata class in the resource entry
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * @res: resource entry struct
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001120 * @proto: cfgte device bus protocol value
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 *
1122 * Return value:
1123 * none
1124 **/
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001125static void ipr_update_ata_class(struct ipr_resource_entry *res, unsigned int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03001127 switch (proto) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001128 case IPR_PROTO_SATA:
1129 case IPR_PROTO_SAS_STP:
1130 res->ata_class = ATA_DEV_ATA;
1131 break;
1132 case IPR_PROTO_SATA_ATAPI:
1133 case IPR_PROTO_SAS_STP_ATAPI:
1134 res->ata_class = ATA_DEV_ATAPI;
1135 break;
1136 default:
1137 res->ata_class = ATA_DEV_UNKNOWN;
1138 break;
1139 };
1140}
1141
1142/**
1143 * ipr_init_res_entry - Initialize a resource entry struct.
1144 * @res: resource entry struct
1145 * @cfgtew: config table entry wrapper struct
1146 *
1147 * Return value:
1148 * none
1149 **/
1150static void ipr_init_res_entry(struct ipr_resource_entry *res,
1151 struct ipr_config_table_entry_wrapper *cfgtew)
1152{
1153 int found = 0;
1154 unsigned int proto;
1155 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1156 struct ipr_resource_entry *gscsi_res = NULL;
1157
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06001158 res->needs_sync_complete = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 res->in_erp = 0;
1160 res->add_to_ml = 0;
1161 res->del_from_ml = 0;
1162 res->resetting_device = 0;
Wendy Xiong0b1f8d42014-01-21 12:16:39 -06001163 res->reset_occurred = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 res->sdev = NULL;
Brian King35a39692006-09-25 12:39:20 -05001165 res->sata_port = NULL;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001166
1167 if (ioa_cfg->sis64) {
1168 proto = cfgtew->u.cfgte64->proto;
Brian King359d96e2015-06-11 20:45:20 -05001169 res->flags = be16_to_cpu(cfgtew->u.cfgte64->flags);
1170 res->res_flags = be16_to_cpu(cfgtew->u.cfgte64->res_flags);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001171 res->qmodel = IPR_QUEUEING_MODEL64(res);
Wayne Boyer438b0332010-05-10 09:13:00 -07001172 res->type = cfgtew->u.cfgte64->res_type;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001173
1174 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1175 sizeof(res->res_path));
1176
1177 res->bus = 0;
Wayne Boyer0cb992e2010-11-04 09:35:58 -07001178 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1179 sizeof(res->dev_lun.scsi_lun));
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001180 res->lun = scsilun_to_int(&res->dev_lun);
1181
1182 if (res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1183 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue) {
1184 if (gscsi_res->dev_id == cfgtew->u.cfgte64->dev_id) {
1185 found = 1;
1186 res->target = gscsi_res->target;
1187 break;
1188 }
1189 }
1190 if (!found) {
1191 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1192 ioa_cfg->max_devs_supported);
1193 set_bit(res->target, ioa_cfg->target_ids);
1194 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001195 } else if (res->type == IPR_RES_TYPE_IOAFP) {
1196 res->bus = IPR_IOAFP_VIRTUAL_BUS;
1197 res->target = 0;
1198 } else if (res->type == IPR_RES_TYPE_ARRAY) {
1199 res->bus = IPR_ARRAY_VIRTUAL_BUS;
1200 res->target = find_first_zero_bit(ioa_cfg->array_ids,
1201 ioa_cfg->max_devs_supported);
1202 set_bit(res->target, ioa_cfg->array_ids);
1203 } else if (res->type == IPR_RES_TYPE_VOLUME_SET) {
1204 res->bus = IPR_VSET_VIRTUAL_BUS;
1205 res->target = find_first_zero_bit(ioa_cfg->vset_ids,
1206 ioa_cfg->max_devs_supported);
1207 set_bit(res->target, ioa_cfg->vset_ids);
1208 } else {
1209 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1210 ioa_cfg->max_devs_supported);
1211 set_bit(res->target, ioa_cfg->target_ids);
1212 }
1213 } else {
1214 proto = cfgtew->u.cfgte->proto;
1215 res->qmodel = IPR_QUEUEING_MODEL(res);
1216 res->flags = cfgtew->u.cfgte->flags;
1217 if (res->flags & IPR_IS_IOA_RESOURCE)
1218 res->type = IPR_RES_TYPE_IOAFP;
1219 else
1220 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1221
1222 res->bus = cfgtew->u.cfgte->res_addr.bus;
1223 res->target = cfgtew->u.cfgte->res_addr.target;
1224 res->lun = cfgtew->u.cfgte->res_addr.lun;
Wayne Boyer46d74562010-08-11 07:15:17 -07001225 res->lun_wwn = get_unaligned_be64(cfgtew->u.cfgte->lun_wwn);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001226 }
1227
1228 ipr_update_ata_class(res, proto);
1229}
1230
1231/**
1232 * ipr_is_same_device - Determine if two devices are the same.
1233 * @res: resource entry struct
1234 * @cfgtew: config table entry wrapper struct
1235 *
1236 * Return value:
1237 * 1 if the devices are the same / 0 otherwise
1238 **/
1239static int ipr_is_same_device(struct ipr_resource_entry *res,
1240 struct ipr_config_table_entry_wrapper *cfgtew)
1241{
1242 if (res->ioa_cfg->sis64) {
1243 if (!memcmp(&res->dev_id, &cfgtew->u.cfgte64->dev_id,
1244 sizeof(cfgtew->u.cfgte64->dev_id)) &&
Wayne Boyer0cb992e2010-11-04 09:35:58 -07001245 !memcmp(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001246 sizeof(cfgtew->u.cfgte64->lun))) {
1247 return 1;
1248 }
1249 } else {
1250 if (res->bus == cfgtew->u.cfgte->res_addr.bus &&
1251 res->target == cfgtew->u.cfgte->res_addr.target &&
1252 res->lun == cfgtew->u.cfgte->res_addr.lun)
1253 return 1;
1254 }
1255
1256 return 0;
1257}
1258
1259/**
Brian Kingb3b3b402013-01-11 17:43:49 -06001260 * __ipr_format_res_path - Format the resource path for printing.
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001261 * @res_path: resource path
1262 * @buf: buffer
Brian Kingb3b3b402013-01-11 17:43:49 -06001263 * @len: length of buffer provided
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001264 *
1265 * Return value:
1266 * pointer to buffer
1267 **/
Brian Kingb3b3b402013-01-11 17:43:49 -06001268static char *__ipr_format_res_path(u8 *res_path, char *buffer, int len)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001269{
1270 int i;
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001271 char *p = buffer;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001272
Wayne Boyer46d74562010-08-11 07:15:17 -07001273 *p = '\0';
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001274 p += snprintf(p, buffer + len - p, "%02X", res_path[0]);
1275 for (i = 1; res_path[i] != 0xff && ((i * 3) < len); i++)
1276 p += snprintf(p, buffer + len - p, "-%02X", res_path[i]);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001277
1278 return buffer;
1279}
1280
1281/**
Brian Kingb3b3b402013-01-11 17:43:49 -06001282 * ipr_format_res_path - Format the resource path for printing.
1283 * @ioa_cfg: ioa config struct
1284 * @res_path: resource path
1285 * @buf: buffer
1286 * @len: length of buffer provided
1287 *
1288 * Return value:
1289 * pointer to buffer
1290 **/
1291static char *ipr_format_res_path(struct ipr_ioa_cfg *ioa_cfg,
1292 u8 *res_path, char *buffer, int len)
1293{
1294 char *p = buffer;
1295
1296 *p = '\0';
1297 p += snprintf(p, buffer + len - p, "%d/", ioa_cfg->host->host_no);
1298 __ipr_format_res_path(res_path, p, len - (buffer - p));
1299 return buffer;
1300}
1301
1302/**
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001303 * ipr_update_res_entry - Update the resource entry.
1304 * @res: resource entry struct
1305 * @cfgtew: config table entry wrapper struct
1306 *
1307 * Return value:
1308 * none
1309 **/
1310static void ipr_update_res_entry(struct ipr_resource_entry *res,
1311 struct ipr_config_table_entry_wrapper *cfgtew)
1312{
1313 char buffer[IPR_MAX_RES_PATH_LENGTH];
1314 unsigned int proto;
1315 int new_path = 0;
1316
1317 if (res->ioa_cfg->sis64) {
Brian King359d96e2015-06-11 20:45:20 -05001318 res->flags = be16_to_cpu(cfgtew->u.cfgte64->flags);
1319 res->res_flags = be16_to_cpu(cfgtew->u.cfgte64->res_flags);
Wayne Boyer75576bb2010-07-14 10:50:14 -07001320 res->type = cfgtew->u.cfgte64->res_type;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001321
1322 memcpy(&res->std_inq_data, &cfgtew->u.cfgte64->std_inq_data,
1323 sizeof(struct ipr_std_inq_data));
1324
1325 res->qmodel = IPR_QUEUEING_MODEL64(res);
1326 proto = cfgtew->u.cfgte64->proto;
1327 res->res_handle = cfgtew->u.cfgte64->res_handle;
1328 res->dev_id = cfgtew->u.cfgte64->dev_id;
1329
1330 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1331 sizeof(res->dev_lun.scsi_lun));
1332
1333 if (memcmp(res->res_path, &cfgtew->u.cfgte64->res_path,
1334 sizeof(res->res_path))) {
1335 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1336 sizeof(res->res_path));
1337 new_path = 1;
1338 }
1339
1340 if (res->sdev && new_path)
1341 sdev_printk(KERN_INFO, res->sdev, "Resource path: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06001342 ipr_format_res_path(res->ioa_cfg,
1343 res->res_path, buffer, sizeof(buffer)));
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001344 } else {
1345 res->flags = cfgtew->u.cfgte->flags;
1346 if (res->flags & IPR_IS_IOA_RESOURCE)
1347 res->type = IPR_RES_TYPE_IOAFP;
1348 else
1349 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1350
1351 memcpy(&res->std_inq_data, &cfgtew->u.cfgte->std_inq_data,
1352 sizeof(struct ipr_std_inq_data));
1353
1354 res->qmodel = IPR_QUEUEING_MODEL(res);
1355 proto = cfgtew->u.cfgte->proto;
1356 res->res_handle = cfgtew->u.cfgte->res_handle;
1357 }
1358
1359 ipr_update_ata_class(res, proto);
1360}
1361
1362/**
1363 * ipr_clear_res_target - Clear the bit in the bit map representing the target
1364 * for the resource.
1365 * @res: resource entry struct
1366 * @cfgtew: config table entry wrapper struct
1367 *
1368 * Return value:
1369 * none
1370 **/
1371static void ipr_clear_res_target(struct ipr_resource_entry *res)
1372{
1373 struct ipr_resource_entry *gscsi_res = NULL;
1374 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1375
1376 if (!ioa_cfg->sis64)
1377 return;
1378
1379 if (res->bus == IPR_ARRAY_VIRTUAL_BUS)
1380 clear_bit(res->target, ioa_cfg->array_ids);
1381 else if (res->bus == IPR_VSET_VIRTUAL_BUS)
1382 clear_bit(res->target, ioa_cfg->vset_ids);
1383 else if (res->bus == 0 && res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1384 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue)
1385 if (gscsi_res->dev_id == res->dev_id && gscsi_res != res)
1386 return;
1387 clear_bit(res->target, ioa_cfg->target_ids);
1388
1389 } else if (res->bus == 0)
1390 clear_bit(res->target, ioa_cfg->target_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
1393/**
1394 * ipr_handle_config_change - Handle a config change from the adapter
1395 * @ioa_cfg: ioa config struct
1396 * @hostrcb: hostrcb
1397 *
1398 * Return value:
1399 * none
1400 **/
1401static void ipr_handle_config_change(struct ipr_ioa_cfg *ioa_cfg,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001402 struct ipr_hostrcb *hostrcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
1404 struct ipr_resource_entry *res = NULL;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001405 struct ipr_config_table_entry_wrapper cfgtew;
1406 __be32 cc_res_handle;
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 u32 is_ndn = 1;
1409
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001410 if (ioa_cfg->sis64) {
1411 cfgtew.u.cfgte64 = &hostrcb->hcam.u.ccn.u.cfgte64;
1412 cc_res_handle = cfgtew.u.cfgte64->res_handle;
1413 } else {
1414 cfgtew.u.cfgte = &hostrcb->hcam.u.ccn.u.cfgte;
1415 cc_res_handle = cfgtew.u.cfgte->res_handle;
1416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001419 if (res->res_handle == cc_res_handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 is_ndn = 0;
1421 break;
1422 }
1423 }
1424
1425 if (is_ndn) {
1426 if (list_empty(&ioa_cfg->free_res_q)) {
1427 ipr_send_hcam(ioa_cfg,
1428 IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE,
1429 hostrcb);
1430 return;
1431 }
1432
1433 res = list_entry(ioa_cfg->free_res_q.next,
1434 struct ipr_resource_entry, queue);
1435
1436 list_del(&res->queue);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001437 ipr_init_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 list_add_tail(&res->queue, &ioa_cfg->used_res_q);
1439 }
1440
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001441 ipr_update_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 if (hostrcb->hcam.notify_type == IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY) {
1444 if (res->sdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 res->del_from_ml = 1;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001446 res->res_handle = IPR_INVALID_RES_HANDLE;
Brian Kingf688f962014-12-02 12:47:37 -06001447 schedule_work(&ioa_cfg->work_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001448 } else {
1449 ipr_clear_res_target(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001451 }
Kleber Sacilotto de Souza5767a1c2011-02-14 20:19:31 -02001452 } else if (!res->sdev || res->del_from_ml) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 res->add_to_ml = 1;
Brian Kingf688f962014-12-02 12:47:37 -06001454 schedule_work(&ioa_cfg->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
1457 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1458}
1459
1460/**
1461 * ipr_process_ccn - Op done function for a CCN.
1462 * @ipr_cmd: ipr command struct
1463 *
1464 * This function is the op done function for a configuration
1465 * change notification host controlled async from the adapter.
1466 *
1467 * Return value:
1468 * none
1469 **/
1470static void ipr_process_ccn(struct ipr_cmnd *ipr_cmd)
1471{
1472 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
1473 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07001474 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 list_del(&hostrcb->queue);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001477 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 if (ioasc) {
Brian King4fdd7c72015-03-26 11:23:50 -05001480 if (ioasc != IPR_IOASC_IOA_WAS_RESET &&
1481 ioasc != IPR_IOASC_ABORTED_CMD_TERM_BY_HOST)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 dev_err(&ioa_cfg->pdev->dev,
1483 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
1484
1485 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1486 } else {
1487 ipr_handle_config_change(ioa_cfg, hostrcb);
1488 }
1489}
1490
1491/**
Brian King8cf093e2007-04-26 16:00:14 -05001492 * strip_and_pad_whitespace - Strip and pad trailing whitespace.
1493 * @i: index into buffer
1494 * @buf: string to modify
1495 *
1496 * This function will strip all trailing whitespace, pad the end
1497 * of the string with a single space, and NULL terminate the string.
1498 *
1499 * Return value:
1500 * new length of string
1501 **/
1502static int strip_and_pad_whitespace(int i, char *buf)
1503{
1504 while (i && buf[i] == ' ')
1505 i--;
1506 buf[i+1] = ' ';
1507 buf[i+2] = '\0';
1508 return i + 2;
1509}
1510
1511/**
1512 * ipr_log_vpd_compact - Log the passed extended VPD compactly.
1513 * @prefix: string to print at start of printk
1514 * @hostrcb: hostrcb pointer
1515 * @vpd: vendor/product id/sn struct
1516 *
1517 * Return value:
1518 * none
1519 **/
1520static void ipr_log_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1521 struct ipr_vpd *vpd)
1522{
1523 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN + IPR_SERIAL_NUM_LEN + 3];
1524 int i = 0;
1525
1526 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1527 i = strip_and_pad_whitespace(IPR_VENDOR_ID_LEN - 1, buffer);
1528
1529 memcpy(&buffer[i], vpd->vpids.product_id, IPR_PROD_ID_LEN);
1530 i = strip_and_pad_whitespace(i + IPR_PROD_ID_LEN - 1, buffer);
1531
1532 memcpy(&buffer[i], vpd->sn, IPR_SERIAL_NUM_LEN);
1533 buffer[IPR_SERIAL_NUM_LEN + i] = '\0';
1534
1535 ipr_hcam_err(hostrcb, "%s VPID/SN: %s\n", prefix, buffer);
1536}
1537
1538/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 * ipr_log_vpd - Log the passed VPD to the error log.
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001540 * @vpd: vendor/product id/sn struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 *
1542 * Return value:
1543 * none
1544 **/
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001545static void ipr_log_vpd(struct ipr_vpd *vpd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
1547 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN
1548 + IPR_SERIAL_NUM_LEN];
1549
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001550 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1551 memcpy(buffer + IPR_VENDOR_ID_LEN, vpd->vpids.product_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 IPR_PROD_ID_LEN);
1553 buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN] = '\0';
1554 ipr_err("Vendor/Product ID: %s\n", buffer);
1555
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001556 memcpy(buffer, vpd->sn, IPR_SERIAL_NUM_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 buffer[IPR_SERIAL_NUM_LEN] = '\0';
1558 ipr_err(" Serial Number: %s\n", buffer);
1559}
1560
1561/**
Brian King8cf093e2007-04-26 16:00:14 -05001562 * ipr_log_ext_vpd_compact - Log the passed extended VPD compactly.
1563 * @prefix: string to print at start of printk
1564 * @hostrcb: hostrcb pointer
1565 * @vpd: vendor/product id/sn/wwn struct
1566 *
1567 * Return value:
1568 * none
1569 **/
1570static void ipr_log_ext_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1571 struct ipr_ext_vpd *vpd)
1572{
1573 ipr_log_vpd_compact(prefix, hostrcb, &vpd->vpd);
1574 ipr_hcam_err(hostrcb, "%s WWN: %08X%08X\n", prefix,
1575 be32_to_cpu(vpd->wwid[0]), be32_to_cpu(vpd->wwid[1]));
1576}
1577
1578/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001579 * ipr_log_ext_vpd - Log the passed extended VPD to the error log.
1580 * @vpd: vendor/product id/sn/wwn struct
1581 *
1582 * Return value:
1583 * none
1584 **/
1585static void ipr_log_ext_vpd(struct ipr_ext_vpd *vpd)
1586{
1587 ipr_log_vpd(&vpd->vpd);
1588 ipr_err(" WWN: %08X%08X\n", be32_to_cpu(vpd->wwid[0]),
1589 be32_to_cpu(vpd->wwid[1]));
1590}
1591
1592/**
1593 * ipr_log_enhanced_cache_error - Log a cache error.
1594 * @ioa_cfg: ioa config struct
1595 * @hostrcb: hostrcb struct
1596 *
1597 * Return value:
1598 * none
1599 **/
1600static void ipr_log_enhanced_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1601 struct ipr_hostrcb *hostrcb)
1602{
Wayne Boyer4565e372010-02-19 13:24:07 -08001603 struct ipr_hostrcb_type_12_error *error;
1604
1605 if (ioa_cfg->sis64)
1606 error = &hostrcb->hcam.u.error64.u.type_12_error;
1607 else
1608 error = &hostrcb->hcam.u.error.u.type_12_error;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001609
1610 ipr_err("-----Current Configuration-----\n");
1611 ipr_err("Cache Directory Card Information:\n");
1612 ipr_log_ext_vpd(&error->ioa_vpd);
1613 ipr_err("Adapter Card Information:\n");
1614 ipr_log_ext_vpd(&error->cfc_vpd);
1615
1616 ipr_err("-----Expected Configuration-----\n");
1617 ipr_err("Cache Directory Card Information:\n");
1618 ipr_log_ext_vpd(&error->ioa_last_attached_to_cfc_vpd);
1619 ipr_err("Adapter Card Information:\n");
1620 ipr_log_ext_vpd(&error->cfc_last_attached_to_ioa_vpd);
1621
1622 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1623 be32_to_cpu(error->ioa_data[0]),
1624 be32_to_cpu(error->ioa_data[1]),
1625 be32_to_cpu(error->ioa_data[2]));
1626}
1627
1628/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 * ipr_log_cache_error - Log a cache error.
1630 * @ioa_cfg: ioa config struct
1631 * @hostrcb: hostrcb struct
1632 *
1633 * Return value:
1634 * none
1635 **/
1636static void ipr_log_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1637 struct ipr_hostrcb *hostrcb)
1638{
1639 struct ipr_hostrcb_type_02_error *error =
1640 &hostrcb->hcam.u.error.u.type_02_error;
1641
1642 ipr_err("-----Current Configuration-----\n");
1643 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001644 ipr_log_vpd(&error->ioa_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001646 ipr_log_vpd(&error->cfc_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 ipr_err("-----Expected Configuration-----\n");
1649 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001650 ipr_log_vpd(&error->ioa_last_attached_to_cfc_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001652 ipr_log_vpd(&error->cfc_last_attached_to_ioa_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1655 be32_to_cpu(error->ioa_data[0]),
1656 be32_to_cpu(error->ioa_data[1]),
1657 be32_to_cpu(error->ioa_data[2]));
1658}
1659
1660/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001661 * ipr_log_enhanced_config_error - Log a configuration error.
1662 * @ioa_cfg: ioa config struct
1663 * @hostrcb: hostrcb struct
1664 *
1665 * Return value:
1666 * none
1667 **/
1668static void ipr_log_enhanced_config_error(struct ipr_ioa_cfg *ioa_cfg,
1669 struct ipr_hostrcb *hostrcb)
1670{
1671 int errors_logged, i;
1672 struct ipr_hostrcb_device_data_entry_enhanced *dev_entry;
1673 struct ipr_hostrcb_type_13_error *error;
1674
1675 error = &hostrcb->hcam.u.error.u.type_13_error;
1676 errors_logged = be32_to_cpu(error->errors_logged);
1677
1678 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1679 be32_to_cpu(error->errors_detected), errors_logged);
1680
1681 dev_entry = error->dev;
1682
1683 for (i = 0; i < errors_logged; i++, dev_entry++) {
1684 ipr_err_separator;
1685
1686 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
1687 ipr_log_ext_vpd(&dev_entry->vpd);
1688
1689 ipr_err("-----New Device Information-----\n");
1690 ipr_log_ext_vpd(&dev_entry->new_vpd);
1691
1692 ipr_err("Cache Directory Card Information:\n");
1693 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1694
1695 ipr_err("Adapter Card Information:\n");
1696 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1697 }
1698}
1699
1700/**
Wayne Boyer4565e372010-02-19 13:24:07 -08001701 * ipr_log_sis64_config_error - Log a device error.
1702 * @ioa_cfg: ioa config struct
1703 * @hostrcb: hostrcb struct
1704 *
1705 * Return value:
1706 * none
1707 **/
1708static void ipr_log_sis64_config_error(struct ipr_ioa_cfg *ioa_cfg,
1709 struct ipr_hostrcb *hostrcb)
1710{
1711 int errors_logged, i;
1712 struct ipr_hostrcb64_device_data_entry_enhanced *dev_entry;
1713 struct ipr_hostrcb_type_23_error *error;
1714 char buffer[IPR_MAX_RES_PATH_LENGTH];
1715
1716 error = &hostrcb->hcam.u.error64.u.type_23_error;
1717 errors_logged = be32_to_cpu(error->errors_logged);
1718
1719 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1720 be32_to_cpu(error->errors_detected), errors_logged);
1721
1722 dev_entry = error->dev;
1723
1724 for (i = 0; i < errors_logged; i++, dev_entry++) {
1725 ipr_err_separator;
1726
1727 ipr_err("Device %d : %s", i + 1,
Brian Kingb3b3b402013-01-11 17:43:49 -06001728 __ipr_format_res_path(dev_entry->res_path,
1729 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08001730 ipr_log_ext_vpd(&dev_entry->vpd);
1731
1732 ipr_err("-----New Device Information-----\n");
1733 ipr_log_ext_vpd(&dev_entry->new_vpd);
1734
1735 ipr_err("Cache Directory Card Information:\n");
1736 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1737
1738 ipr_err("Adapter Card Information:\n");
1739 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1740 }
1741}
1742
1743/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * ipr_log_config_error - Log a configuration error.
1745 * @ioa_cfg: ioa config struct
1746 * @hostrcb: hostrcb struct
1747 *
1748 * Return value:
1749 * none
1750 **/
1751static void ipr_log_config_error(struct ipr_ioa_cfg *ioa_cfg,
1752 struct ipr_hostrcb *hostrcb)
1753{
1754 int errors_logged, i;
1755 struct ipr_hostrcb_device_data_entry *dev_entry;
1756 struct ipr_hostrcb_type_03_error *error;
1757
1758 error = &hostrcb->hcam.u.error.u.type_03_error;
1759 errors_logged = be32_to_cpu(error->errors_logged);
1760
1761 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1762 be32_to_cpu(error->errors_detected), errors_logged);
1763
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001764 dev_entry = error->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 for (i = 0; i < errors_logged; i++, dev_entry++) {
1767 ipr_err_separator;
1768
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001769 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001770 ipr_log_vpd(&dev_entry->vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 ipr_err("-----New Device Information-----\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001773 ipr_log_vpd(&dev_entry->new_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001776 ipr_log_vpd(&dev_entry->ioa_last_with_dev_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001779 ipr_log_vpd(&dev_entry->cfc_last_with_dev_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 ipr_err("Additional IOA Data: %08X %08X %08X %08X %08X\n",
1782 be32_to_cpu(dev_entry->ioa_data[0]),
1783 be32_to_cpu(dev_entry->ioa_data[1]),
1784 be32_to_cpu(dev_entry->ioa_data[2]),
1785 be32_to_cpu(dev_entry->ioa_data[3]),
1786 be32_to_cpu(dev_entry->ioa_data[4]));
1787 }
1788}
1789
1790/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001791 * ipr_log_enhanced_array_error - Log an array configuration error.
1792 * @ioa_cfg: ioa config struct
1793 * @hostrcb: hostrcb struct
1794 *
1795 * Return value:
1796 * none
1797 **/
1798static void ipr_log_enhanced_array_error(struct ipr_ioa_cfg *ioa_cfg,
1799 struct ipr_hostrcb *hostrcb)
1800{
1801 int i, num_entries;
1802 struct ipr_hostrcb_type_14_error *error;
1803 struct ipr_hostrcb_array_data_entry_enhanced *array_entry;
1804 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1805
1806 error = &hostrcb->hcam.u.error.u.type_14_error;
1807
1808 ipr_err_separator;
1809
1810 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1811 error->protection_level,
1812 ioa_cfg->host->host_no,
1813 error->last_func_vset_res_addr.bus,
1814 error->last_func_vset_res_addr.target,
1815 error->last_func_vset_res_addr.lun);
1816
1817 ipr_err_separator;
1818
1819 array_entry = error->array_member;
1820 num_entries = min_t(u32, be32_to_cpu(error->num_entries),
Wayne Boyer72620262010-09-27 10:45:28 -07001821 ARRAY_SIZE(error->array_member));
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001822
1823 for (i = 0; i < num_entries; i++, array_entry++) {
1824 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
1825 continue;
1826
1827 if (be32_to_cpu(error->exposed_mode_adn) == i)
1828 ipr_err("Exposed Array Member %d:\n", i);
1829 else
1830 ipr_err("Array Member %d:\n", i);
1831
1832 ipr_log_ext_vpd(&array_entry->vpd);
1833 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1834 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1835 "Expected Location");
1836
1837 ipr_err_separator;
1838 }
1839}
1840
1841/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 * ipr_log_array_error - Log an array configuration error.
1843 * @ioa_cfg: ioa config struct
1844 * @hostrcb: hostrcb struct
1845 *
1846 * Return value:
1847 * none
1848 **/
1849static void ipr_log_array_error(struct ipr_ioa_cfg *ioa_cfg,
1850 struct ipr_hostrcb *hostrcb)
1851{
1852 int i;
1853 struct ipr_hostrcb_type_04_error *error;
1854 struct ipr_hostrcb_array_data_entry *array_entry;
1855 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1856
1857 error = &hostrcb->hcam.u.error.u.type_04_error;
1858
1859 ipr_err_separator;
1860
1861 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1862 error->protection_level,
1863 ioa_cfg->host->host_no,
1864 error->last_func_vset_res_addr.bus,
1865 error->last_func_vset_res_addr.target,
1866 error->last_func_vset_res_addr.lun);
1867
1868 ipr_err_separator;
1869
1870 array_entry = error->array_member;
1871
1872 for (i = 0; i < 18; i++) {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001873 if (!memcmp(array_entry->vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 continue;
1875
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001876 if (be32_to_cpu(error->exposed_mode_adn) == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 ipr_err("Exposed Array Member %d:\n", i);
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001878 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 ipr_err("Array Member %d:\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001881 ipr_log_vpd(&array_entry->vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001883 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1884 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1885 "Expected Location");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 ipr_err_separator;
1888
1889 if (i == 9)
1890 array_entry = error->array_member2;
1891 else
1892 array_entry++;
1893 }
1894}
1895
1896/**
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001897 * ipr_log_hex_data - Log additional hex IOA error data.
Brian Kingac719ab2006-11-21 10:28:42 -06001898 * @ioa_cfg: ioa config struct
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001899 * @data: IOA error data
1900 * @len: data length
1901 *
1902 * Return value:
1903 * none
1904 **/
Brian King359d96e2015-06-11 20:45:20 -05001905static void ipr_log_hex_data(struct ipr_ioa_cfg *ioa_cfg, __be32 *data, int len)
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001906{
1907 int i;
1908
1909 if (len == 0)
1910 return;
1911
Brian Kingac719ab2006-11-21 10:28:42 -06001912 if (ioa_cfg->log_level <= IPR_DEFAULT_LOG_LEVEL)
1913 len = min_t(int, len, IPR_DEFAULT_MAX_ERROR_DUMP);
1914
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001915 for (i = 0; i < len / 4; i += 4) {
1916 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
1917 be32_to_cpu(data[i]),
1918 be32_to_cpu(data[i+1]),
1919 be32_to_cpu(data[i+2]),
1920 be32_to_cpu(data[i+3]));
1921 }
1922}
1923
1924/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001925 * ipr_log_enhanced_dual_ioa_error - Log an enhanced dual adapter error.
1926 * @ioa_cfg: ioa config struct
1927 * @hostrcb: hostrcb struct
1928 *
1929 * Return value:
1930 * none
1931 **/
1932static void ipr_log_enhanced_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1933 struct ipr_hostrcb *hostrcb)
1934{
1935 struct ipr_hostrcb_type_17_error *error;
1936
Wayne Boyer4565e372010-02-19 13:24:07 -08001937 if (ioa_cfg->sis64)
1938 error = &hostrcb->hcam.u.error64.u.type_17_error;
1939 else
1940 error = &hostrcb->hcam.u.error.u.type_17_error;
1941
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001942 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -08001943 strim(error->failure_reason);
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001944
Brian King8cf093e2007-04-26 16:00:14 -05001945 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1946 be32_to_cpu(hostrcb->hcam.u.error.prc));
1947 ipr_log_ext_vpd_compact("Remote IOA", hostrcb, &error->vpd);
Brian Kingac719ab2006-11-21 10:28:42 -06001948 ipr_log_hex_data(ioa_cfg, error->data,
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001949 be32_to_cpu(hostrcb->hcam.length) -
1950 (offsetof(struct ipr_hostrcb_error, u) +
1951 offsetof(struct ipr_hostrcb_type_17_error, data)));
1952}
1953
1954/**
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001955 * ipr_log_dual_ioa_error - Log a dual adapter error.
1956 * @ioa_cfg: ioa config struct
1957 * @hostrcb: hostrcb struct
1958 *
1959 * Return value:
1960 * none
1961 **/
1962static void ipr_log_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1963 struct ipr_hostrcb *hostrcb)
1964{
1965 struct ipr_hostrcb_type_07_error *error;
1966
1967 error = &hostrcb->hcam.u.error.u.type_07_error;
1968 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -08001969 strim(error->failure_reason);
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001970
Brian King8cf093e2007-04-26 16:00:14 -05001971 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1972 be32_to_cpu(hostrcb->hcam.u.error.prc));
1973 ipr_log_vpd_compact("Remote IOA", hostrcb, &error->vpd);
Brian Kingac719ab2006-11-21 10:28:42 -06001974 ipr_log_hex_data(ioa_cfg, error->data,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001975 be32_to_cpu(hostrcb->hcam.length) -
1976 (offsetof(struct ipr_hostrcb_error, u) +
1977 offsetof(struct ipr_hostrcb_type_07_error, data)));
1978}
1979
Brian King49dc6a12006-11-21 10:28:35 -06001980static const struct {
1981 u8 active;
1982 char *desc;
1983} path_active_desc[] = {
1984 { IPR_PATH_NO_INFO, "Path" },
1985 { IPR_PATH_ACTIVE, "Active path" },
1986 { IPR_PATH_NOT_ACTIVE, "Inactive path" }
1987};
1988
1989static const struct {
1990 u8 state;
1991 char *desc;
1992} path_state_desc[] = {
1993 { IPR_PATH_STATE_NO_INFO, "has no path state information available" },
1994 { IPR_PATH_HEALTHY, "is healthy" },
1995 { IPR_PATH_DEGRADED, "is degraded" },
1996 { IPR_PATH_FAILED, "is failed" }
1997};
1998
1999/**
2000 * ipr_log_fabric_path - Log a fabric path error
2001 * @hostrcb: hostrcb struct
2002 * @fabric: fabric descriptor
2003 *
2004 * Return value:
2005 * none
2006 **/
2007static void ipr_log_fabric_path(struct ipr_hostrcb *hostrcb,
2008 struct ipr_hostrcb_fabric_desc *fabric)
2009{
2010 int i, j;
2011 u8 path_state = fabric->path_state;
2012 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
2013 u8 state = path_state & IPR_PATH_STATE_MASK;
2014
2015 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
2016 if (path_active_desc[i].active != active)
2017 continue;
2018
2019 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
2020 if (path_state_desc[j].state != state)
2021 continue;
2022
2023 if (fabric->cascaded_expander == 0xff && fabric->phy == 0xff) {
2024 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d\n",
2025 path_active_desc[i].desc, path_state_desc[j].desc,
2026 fabric->ioa_port);
2027 } else if (fabric->cascaded_expander == 0xff) {
2028 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Phy=%d\n",
2029 path_active_desc[i].desc, path_state_desc[j].desc,
2030 fabric->ioa_port, fabric->phy);
2031 } else if (fabric->phy == 0xff) {
2032 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d\n",
2033 path_active_desc[i].desc, path_state_desc[j].desc,
2034 fabric->ioa_port, fabric->cascaded_expander);
2035 } else {
2036 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d, Phy=%d\n",
2037 path_active_desc[i].desc, path_state_desc[j].desc,
2038 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
2039 }
2040 return;
2041 }
2042 }
2043
2044 ipr_err("Path state=%02X IOA Port=%d Cascade=%d Phy=%d\n", path_state,
2045 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
2046}
2047
Wayne Boyer4565e372010-02-19 13:24:07 -08002048/**
2049 * ipr_log64_fabric_path - Log a fabric path error
2050 * @hostrcb: hostrcb struct
2051 * @fabric: fabric descriptor
2052 *
2053 * Return value:
2054 * none
2055 **/
2056static void ipr_log64_fabric_path(struct ipr_hostrcb *hostrcb,
2057 struct ipr_hostrcb64_fabric_desc *fabric)
2058{
2059 int i, j;
2060 u8 path_state = fabric->path_state;
2061 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
2062 u8 state = path_state & IPR_PATH_STATE_MASK;
2063 char buffer[IPR_MAX_RES_PATH_LENGTH];
2064
2065 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
2066 if (path_active_desc[i].active != active)
2067 continue;
2068
2069 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
2070 if (path_state_desc[j].state != state)
2071 continue;
2072
2073 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s\n",
2074 path_active_desc[i].desc, path_state_desc[j].desc,
Brian Kingb3b3b402013-01-11 17:43:49 -06002075 ipr_format_res_path(hostrcb->ioa_cfg,
2076 fabric->res_path,
2077 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002078 return;
2079 }
2080 }
2081
2082 ipr_err("Path state=%02X Resource Path=%s\n", path_state,
Brian Kingb3b3b402013-01-11 17:43:49 -06002083 ipr_format_res_path(hostrcb->ioa_cfg, fabric->res_path,
2084 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002085}
2086
Brian King49dc6a12006-11-21 10:28:35 -06002087static const struct {
2088 u8 type;
2089 char *desc;
2090} path_type_desc[] = {
2091 { IPR_PATH_CFG_IOA_PORT, "IOA port" },
2092 { IPR_PATH_CFG_EXP_PORT, "Expander port" },
2093 { IPR_PATH_CFG_DEVICE_PORT, "Device port" },
2094 { IPR_PATH_CFG_DEVICE_LUN, "Device LUN" }
2095};
2096
2097static const struct {
2098 u8 status;
2099 char *desc;
2100} path_status_desc[] = {
2101 { IPR_PATH_CFG_NO_PROB, "Functional" },
2102 { IPR_PATH_CFG_DEGRADED, "Degraded" },
2103 { IPR_PATH_CFG_FAILED, "Failed" },
2104 { IPR_PATH_CFG_SUSPECT, "Suspect" },
2105 { IPR_PATH_NOT_DETECTED, "Missing" },
2106 { IPR_PATH_INCORRECT_CONN, "Incorrectly connected" }
2107};
2108
2109static const char *link_rate[] = {
2110 "unknown",
2111 "disabled",
2112 "phy reset problem",
2113 "spinup hold",
2114 "port selector",
2115 "unknown",
2116 "unknown",
2117 "unknown",
2118 "1.5Gbps",
2119 "3.0Gbps",
2120 "unknown",
2121 "unknown",
2122 "unknown",
2123 "unknown",
2124 "unknown",
2125 "unknown"
2126};
2127
2128/**
2129 * ipr_log_path_elem - Log a fabric path element.
2130 * @hostrcb: hostrcb struct
2131 * @cfg: fabric path element struct
2132 *
2133 * Return value:
2134 * none
2135 **/
2136static void ipr_log_path_elem(struct ipr_hostrcb *hostrcb,
2137 struct ipr_hostrcb_config_element *cfg)
2138{
2139 int i, j;
2140 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
2141 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
2142
2143 if (type == IPR_PATH_CFG_NOT_EXIST)
2144 return;
2145
2146 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2147 if (path_type_desc[i].type != type)
2148 continue;
2149
2150 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2151 if (path_status_desc[j].status != status)
2152 continue;
2153
2154 if (type == IPR_PATH_CFG_IOA_PORT) {
2155 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, WWN=%08X%08X\n",
2156 path_status_desc[j].desc, path_type_desc[i].desc,
2157 cfg->phy, link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2158 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2159 } else {
2160 if (cfg->cascaded_expander == 0xff && cfg->phy == 0xff) {
2161 ipr_hcam_err(hostrcb, "%s %s: Link rate=%s, WWN=%08X%08X\n",
2162 path_status_desc[j].desc, path_type_desc[i].desc,
2163 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2164 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2165 } else if (cfg->cascaded_expander == 0xff) {
2166 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, "
2167 "WWN=%08X%08X\n", path_status_desc[j].desc,
2168 path_type_desc[i].desc, cfg->phy,
2169 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2170 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2171 } else if (cfg->phy == 0xff) {
2172 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Link rate=%s, "
2173 "WWN=%08X%08X\n", path_status_desc[j].desc,
2174 path_type_desc[i].desc, cfg->cascaded_expander,
2175 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2176 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2177 } else {
2178 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Phy=%d, Link rate=%s "
2179 "WWN=%08X%08X\n", path_status_desc[j].desc,
2180 path_type_desc[i].desc, cfg->cascaded_expander, cfg->phy,
2181 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2182 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2183 }
2184 }
2185 return;
2186 }
2187 }
2188
2189 ipr_hcam_err(hostrcb, "Path element=%02X: Cascade=%d Phy=%d Link rate=%s "
2190 "WWN=%08X%08X\n", cfg->type_status, cfg->cascaded_expander, cfg->phy,
2191 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2192 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2193}
2194
2195/**
Wayne Boyer4565e372010-02-19 13:24:07 -08002196 * ipr_log64_path_elem - Log a fabric path element.
2197 * @hostrcb: hostrcb struct
2198 * @cfg: fabric path element struct
2199 *
2200 * Return value:
2201 * none
2202 **/
2203static void ipr_log64_path_elem(struct ipr_hostrcb *hostrcb,
2204 struct ipr_hostrcb64_config_element *cfg)
2205{
2206 int i, j;
2207 u8 desc_id = cfg->descriptor_id & IPR_DESCRIPTOR_MASK;
2208 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
2209 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
2210 char buffer[IPR_MAX_RES_PATH_LENGTH];
2211
2212 if (type == IPR_PATH_CFG_NOT_EXIST || desc_id != IPR_DESCRIPTOR_SIS64)
2213 return;
2214
2215 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2216 if (path_type_desc[i].type != type)
2217 continue;
2218
2219 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2220 if (path_status_desc[j].status != status)
2221 continue;
2222
2223 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s, Link rate=%s, WWN=%08X%08X\n",
2224 path_status_desc[j].desc, path_type_desc[i].desc,
Brian Kingb3b3b402013-01-11 17:43:49 -06002225 ipr_format_res_path(hostrcb->ioa_cfg,
2226 cfg->res_path, buffer, sizeof(buffer)),
2227 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2228 be32_to_cpu(cfg->wwid[0]),
2229 be32_to_cpu(cfg->wwid[1]));
Wayne Boyer4565e372010-02-19 13:24:07 -08002230 return;
2231 }
2232 }
2233 ipr_hcam_err(hostrcb, "Path element=%02X: Resource Path=%s, Link rate=%s "
2234 "WWN=%08X%08X\n", cfg->type_status,
Brian Kingb3b3b402013-01-11 17:43:49 -06002235 ipr_format_res_path(hostrcb->ioa_cfg,
2236 cfg->res_path, buffer, sizeof(buffer)),
2237 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2238 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
Wayne Boyer4565e372010-02-19 13:24:07 -08002239}
2240
2241/**
Brian King49dc6a12006-11-21 10:28:35 -06002242 * ipr_log_fabric_error - Log a fabric error.
2243 * @ioa_cfg: ioa config struct
2244 * @hostrcb: hostrcb struct
2245 *
2246 * Return value:
2247 * none
2248 **/
2249static void ipr_log_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2250 struct ipr_hostrcb *hostrcb)
2251{
2252 struct ipr_hostrcb_type_20_error *error;
2253 struct ipr_hostrcb_fabric_desc *fabric;
2254 struct ipr_hostrcb_config_element *cfg;
2255 int i, add_len;
2256
2257 error = &hostrcb->hcam.u.error.u.type_20_error;
2258 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2259 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2260
2261 add_len = be32_to_cpu(hostrcb->hcam.length) -
2262 (offsetof(struct ipr_hostrcb_error, u) +
2263 offsetof(struct ipr_hostrcb_type_20_error, desc));
2264
2265 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2266 ipr_log_fabric_path(hostrcb, fabric);
2267 for_each_fabric_cfg(fabric, cfg)
2268 ipr_log_path_elem(hostrcb, cfg);
2269
2270 add_len -= be16_to_cpu(fabric->length);
2271 fabric = (struct ipr_hostrcb_fabric_desc *)
2272 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2273 }
2274
Brian King359d96e2015-06-11 20:45:20 -05002275 ipr_log_hex_data(ioa_cfg, (__be32 *)fabric, add_len);
Brian King49dc6a12006-11-21 10:28:35 -06002276}
2277
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002278/**
Wayne Boyer4565e372010-02-19 13:24:07 -08002279 * ipr_log_sis64_array_error - Log a sis64 array error.
2280 * @ioa_cfg: ioa config struct
2281 * @hostrcb: hostrcb struct
2282 *
2283 * Return value:
2284 * none
2285 **/
2286static void ipr_log_sis64_array_error(struct ipr_ioa_cfg *ioa_cfg,
2287 struct ipr_hostrcb *hostrcb)
2288{
2289 int i, num_entries;
2290 struct ipr_hostrcb_type_24_error *error;
2291 struct ipr_hostrcb64_array_data_entry *array_entry;
2292 char buffer[IPR_MAX_RES_PATH_LENGTH];
2293 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
2294
2295 error = &hostrcb->hcam.u.error64.u.type_24_error;
2296
2297 ipr_err_separator;
2298
2299 ipr_err("RAID %s Array Configuration: %s\n",
2300 error->protection_level,
Brian Kingb3b3b402013-01-11 17:43:49 -06002301 ipr_format_res_path(ioa_cfg, error->last_res_path,
2302 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002303
2304 ipr_err_separator;
2305
2306 array_entry = error->array_member;
Wayne Boyer72620262010-09-27 10:45:28 -07002307 num_entries = min_t(u32, error->num_entries,
2308 ARRAY_SIZE(error->array_member));
Wayne Boyer4565e372010-02-19 13:24:07 -08002309
2310 for (i = 0; i < num_entries; i++, array_entry++) {
2311
2312 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
2313 continue;
2314
2315 if (error->exposed_mode_adn == i)
2316 ipr_err("Exposed Array Member %d:\n", i);
2317 else
2318 ipr_err("Array Member %d:\n", i);
2319
2320 ipr_err("Array Member %d:\n", i);
2321 ipr_log_ext_vpd(&array_entry->vpd);
Wayne Boyer72620262010-09-27 10:45:28 -07002322 ipr_err("Current Location: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06002323 ipr_format_res_path(ioa_cfg, array_entry->res_path,
2324 buffer, sizeof(buffer)));
Wayne Boyer72620262010-09-27 10:45:28 -07002325 ipr_err("Expected Location: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06002326 ipr_format_res_path(ioa_cfg,
2327 array_entry->expected_res_path,
2328 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002329
2330 ipr_err_separator;
2331 }
2332}
2333
2334/**
2335 * ipr_log_sis64_fabric_error - Log a sis64 fabric error.
2336 * @ioa_cfg: ioa config struct
2337 * @hostrcb: hostrcb struct
2338 *
2339 * Return value:
2340 * none
2341 **/
2342static void ipr_log_sis64_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2343 struct ipr_hostrcb *hostrcb)
2344{
2345 struct ipr_hostrcb_type_30_error *error;
2346 struct ipr_hostrcb64_fabric_desc *fabric;
2347 struct ipr_hostrcb64_config_element *cfg;
2348 int i, add_len;
2349
2350 error = &hostrcb->hcam.u.error64.u.type_30_error;
2351
2352 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2353 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2354
2355 add_len = be32_to_cpu(hostrcb->hcam.length) -
2356 (offsetof(struct ipr_hostrcb64_error, u) +
2357 offsetof(struct ipr_hostrcb_type_30_error, desc));
2358
2359 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2360 ipr_log64_fabric_path(hostrcb, fabric);
2361 for_each_fabric_cfg(fabric, cfg)
2362 ipr_log64_path_elem(hostrcb, cfg);
2363
2364 add_len -= be16_to_cpu(fabric->length);
2365 fabric = (struct ipr_hostrcb64_fabric_desc *)
2366 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2367 }
2368
Brian King359d96e2015-06-11 20:45:20 -05002369 ipr_log_hex_data(ioa_cfg, (__be32 *)fabric, add_len);
Wayne Boyer4565e372010-02-19 13:24:07 -08002370}
2371
2372/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 * ipr_log_generic_error - Log an adapter error.
2374 * @ioa_cfg: ioa config struct
2375 * @hostrcb: hostrcb struct
2376 *
2377 * Return value:
2378 * none
2379 **/
2380static void ipr_log_generic_error(struct ipr_ioa_cfg *ioa_cfg,
2381 struct ipr_hostrcb *hostrcb)
2382{
Brian Kingac719ab2006-11-21 10:28:42 -06002383 ipr_log_hex_data(ioa_cfg, hostrcb->hcam.u.raw.data,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002384 be32_to_cpu(hostrcb->hcam.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
2387/**
Wendy Xiong169b9ec2014-03-12 16:08:51 -05002388 * ipr_log_sis64_device_error - Log a cache error.
2389 * @ioa_cfg: ioa config struct
2390 * @hostrcb: hostrcb struct
2391 *
2392 * Return value:
2393 * none
2394 **/
2395static void ipr_log_sis64_device_error(struct ipr_ioa_cfg *ioa_cfg,
2396 struct ipr_hostrcb *hostrcb)
2397{
2398 struct ipr_hostrcb_type_21_error *error;
2399 char buffer[IPR_MAX_RES_PATH_LENGTH];
2400
2401 error = &hostrcb->hcam.u.error64.u.type_21_error;
2402
2403 ipr_err("-----Failing Device Information-----\n");
2404 ipr_err("World Wide Unique ID: %08X%08X%08X%08X\n",
2405 be32_to_cpu(error->wwn[0]), be32_to_cpu(error->wwn[1]),
2406 be32_to_cpu(error->wwn[2]), be32_to_cpu(error->wwn[3]));
2407 ipr_err("Device Resource Path: %s\n",
2408 __ipr_format_res_path(error->res_path,
2409 buffer, sizeof(buffer)));
2410 error->primary_problem_desc[sizeof(error->primary_problem_desc) - 1] = '\0';
2411 error->second_problem_desc[sizeof(error->second_problem_desc) - 1] = '\0';
2412 ipr_err("Primary Problem Description: %s\n", error->primary_problem_desc);
2413 ipr_err("Secondary Problem Description: %s\n", error->second_problem_desc);
2414 ipr_err("SCSI Sense Data:\n");
2415 ipr_log_hex_data(ioa_cfg, error->sense_data, sizeof(error->sense_data));
2416 ipr_err("SCSI Command Descriptor Block: \n");
2417 ipr_log_hex_data(ioa_cfg, error->cdb, sizeof(error->cdb));
2418
2419 ipr_err("Additional IOA Data:\n");
2420 ipr_log_hex_data(ioa_cfg, error->ioa_data, be32_to_cpu(error->length_of_error));
2421}
2422
2423/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 * ipr_get_error - Find the specfied IOASC in the ipr_error_table.
2425 * @ioasc: IOASC
2426 *
2427 * This function will return the index of into the ipr_error_table
2428 * for the specified IOASC. If the IOASC is not in the table,
2429 * 0 will be returned, which points to the entry used for unknown errors.
2430 *
2431 * Return value:
2432 * index into the ipr_error_table
2433 **/
2434static u32 ipr_get_error(u32 ioasc)
2435{
2436 int i;
2437
2438 for (i = 0; i < ARRAY_SIZE(ipr_error_table); i++)
Brian King35a39692006-09-25 12:39:20 -05002439 if (ipr_error_table[i].ioasc == (ioasc & IPR_IOASC_IOASC_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return i;
2441
2442 return 0;
2443}
2444
2445/**
2446 * ipr_handle_log_data - Log an adapter error.
2447 * @ioa_cfg: ioa config struct
2448 * @hostrcb: hostrcb struct
2449 *
2450 * This function logs an adapter error to the system.
2451 *
2452 * Return value:
2453 * none
2454 **/
2455static void ipr_handle_log_data(struct ipr_ioa_cfg *ioa_cfg,
2456 struct ipr_hostrcb *hostrcb)
2457{
2458 u32 ioasc;
2459 int error_index;
wenxiong@linux.vnet.ibm.com3185ea62014-09-24 16:25:47 -05002460 struct ipr_hostrcb_type_21_error *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
2462 if (hostrcb->hcam.notify_type != IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY)
2463 return;
2464
2465 if (hostrcb->hcam.notifications_lost == IPR_HOST_RCB_NOTIFICATIONS_LOST)
2466 dev_err(&ioa_cfg->pdev->dev, "Error notifications lost\n");
2467
Wayne Boyer4565e372010-02-19 13:24:07 -08002468 if (ioa_cfg->sis64)
2469 ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2470 else
2471 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Wayne Boyer4565e372010-02-19 13:24:07 -08002473 if (!ioa_cfg->sis64 && (ioasc == IPR_IOASC_BUS_WAS_RESET ||
2474 ioasc == IPR_IOASC_BUS_WAS_RESET_BY_OTHER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 /* Tell the midlayer we had a bus reset so it will handle the UA properly */
2476 scsi_report_bus_reset(ioa_cfg->host,
Wayne Boyer4565e372010-02-19 13:24:07 -08002477 hostrcb->hcam.u.error.fd_res_addr.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
2479
2480 error_index = ipr_get_error(ioasc);
2481
2482 if (!ipr_error_table[error_index].log_hcam)
2483 return;
2484
wenxiong@linux.vnet.ibm.com3185ea62014-09-24 16:25:47 -05002485 if (ioasc == IPR_IOASC_HW_CMD_FAILED &&
2486 hostrcb->hcam.overlay_id == IPR_HOST_RCB_OVERLAY_ID_21) {
2487 error = &hostrcb->hcam.u.error64.u.type_21_error;
2488
2489 if (((be32_to_cpu(error->sense_data[0]) & 0x0000ff00) >> 8) == ILLEGAL_REQUEST &&
2490 ioa_cfg->log_level <= IPR_DEFAULT_LOG_LEVEL)
2491 return;
2492 }
2493
Brian King49dc6a12006-11-21 10:28:35 -06002494 ipr_hcam_err(hostrcb, "%s\n", ipr_error_table[error_index].error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 /* Set indication we have logged an error */
2497 ioa_cfg->errors_logged++;
2498
Brian King933916f2007-03-29 12:43:30 -05002499 if (ioa_cfg->log_level < ipr_error_table[error_index].log_hcam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return;
brking@us.ibm.comcf852032005-11-01 17:00:47 -06002501 if (be32_to_cpu(hostrcb->hcam.length) > sizeof(hostrcb->hcam.u.raw))
2502 hostrcb->hcam.length = cpu_to_be32(sizeof(hostrcb->hcam.u.raw));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
2504 switch (hostrcb->hcam.overlay_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 case IPR_HOST_RCB_OVERLAY_ID_2:
2506 ipr_log_cache_error(ioa_cfg, hostrcb);
2507 break;
2508 case IPR_HOST_RCB_OVERLAY_ID_3:
2509 ipr_log_config_error(ioa_cfg, hostrcb);
2510 break;
2511 case IPR_HOST_RCB_OVERLAY_ID_4:
2512 case IPR_HOST_RCB_OVERLAY_ID_6:
2513 ipr_log_array_error(ioa_cfg, hostrcb);
2514 break;
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002515 case IPR_HOST_RCB_OVERLAY_ID_7:
2516 ipr_log_dual_ioa_error(ioa_cfg, hostrcb);
2517 break;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06002518 case IPR_HOST_RCB_OVERLAY_ID_12:
2519 ipr_log_enhanced_cache_error(ioa_cfg, hostrcb);
2520 break;
2521 case IPR_HOST_RCB_OVERLAY_ID_13:
2522 ipr_log_enhanced_config_error(ioa_cfg, hostrcb);
2523 break;
2524 case IPR_HOST_RCB_OVERLAY_ID_14:
2525 case IPR_HOST_RCB_OVERLAY_ID_16:
2526 ipr_log_enhanced_array_error(ioa_cfg, hostrcb);
2527 break;
2528 case IPR_HOST_RCB_OVERLAY_ID_17:
2529 ipr_log_enhanced_dual_ioa_error(ioa_cfg, hostrcb);
2530 break;
Brian King49dc6a12006-11-21 10:28:35 -06002531 case IPR_HOST_RCB_OVERLAY_ID_20:
2532 ipr_log_fabric_error(ioa_cfg, hostrcb);
2533 break;
Wendy Xiong169b9ec2014-03-12 16:08:51 -05002534 case IPR_HOST_RCB_OVERLAY_ID_21:
2535 ipr_log_sis64_device_error(ioa_cfg, hostrcb);
2536 break;
Wayne Boyer4565e372010-02-19 13:24:07 -08002537 case IPR_HOST_RCB_OVERLAY_ID_23:
2538 ipr_log_sis64_config_error(ioa_cfg, hostrcb);
2539 break;
2540 case IPR_HOST_RCB_OVERLAY_ID_24:
2541 case IPR_HOST_RCB_OVERLAY_ID_26:
2542 ipr_log_sis64_array_error(ioa_cfg, hostrcb);
2543 break;
2544 case IPR_HOST_RCB_OVERLAY_ID_30:
2545 ipr_log_sis64_fabric_error(ioa_cfg, hostrcb);
2546 break;
brking@us.ibm.comcf852032005-11-01 17:00:47 -06002547 case IPR_HOST_RCB_OVERLAY_ID_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 case IPR_HOST_RCB_OVERLAY_ID_DEFAULT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 default:
brking@us.ibm.coma9cfca92005-11-01 17:00:41 -06002550 ipr_log_generic_error(ioa_cfg, hostrcb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 break;
2552 }
2553}
2554
2555/**
2556 * ipr_process_error - Op done function for an adapter error log.
2557 * @ipr_cmd: ipr command struct
2558 *
2559 * This function is the op done function for an error log host
2560 * controlled async from the adapter. It will log the error and
2561 * send the HCAM back to the adapter.
2562 *
2563 * Return value:
2564 * none
2565 **/
2566static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
2567{
2568 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2569 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07002570 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Wayne Boyer4565e372010-02-19 13:24:07 -08002571 u32 fd_ioasc;
2572
2573 if (ioa_cfg->sis64)
2574 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2575 else
2576 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 list_del(&hostrcb->queue);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06002579 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 if (!ioasc) {
2582 ipr_handle_log_data(ioa_cfg, hostrcb);
Brian King65f56472007-04-26 16:00:12 -05002583 if (fd_ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED)
2584 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_ABBREV);
Brian King4fdd7c72015-03-26 11:23:50 -05002585 } else if (ioasc != IPR_IOASC_IOA_WAS_RESET &&
2586 ioasc != IPR_IOASC_ABORTED_CMD_TERM_BY_HOST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 dev_err(&ioa_cfg->pdev->dev,
2588 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
2589 }
2590
2591 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
2592}
2593
2594/**
2595 * ipr_timeout - An internally generated op has timed out.
2596 * @ipr_cmd: ipr command struct
2597 *
2598 * This function blocks host requests and initiates an
2599 * adapter reset.
2600 *
2601 * Return value:
2602 * none
2603 **/
2604static void ipr_timeout(struct ipr_cmnd *ipr_cmd)
2605{
2606 unsigned long lock_flags = 0;
2607 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2608
2609 ENTER;
2610 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2611
2612 ioa_cfg->errors_logged++;
2613 dev_err(&ioa_cfg->pdev->dev,
2614 "Adapter being reset due to command timeout.\n");
2615
2616 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2617 ioa_cfg->sdt_state = GET_DUMP;
2618
2619 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd)
2620 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2621
2622 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2623 LEAVE;
2624}
2625
2626/**
2627 * ipr_oper_timeout - Adapter timed out transitioning to operational
2628 * @ipr_cmd: ipr command struct
2629 *
2630 * This function blocks host requests and initiates an
2631 * adapter reset.
2632 *
2633 * Return value:
2634 * none
2635 **/
2636static void ipr_oper_timeout(struct ipr_cmnd *ipr_cmd)
2637{
2638 unsigned long lock_flags = 0;
2639 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2640
2641 ENTER;
2642 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2643
2644 ioa_cfg->errors_logged++;
2645 dev_err(&ioa_cfg->pdev->dev,
2646 "Adapter timed out transitioning to operational.\n");
2647
2648 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2649 ioa_cfg->sdt_state = GET_DUMP;
2650
2651 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd) {
2652 if (ipr_fastfail)
2653 ioa_cfg->reset_retries += IPR_NUM_RESET_RELOAD_RETRIES;
2654 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2655 }
2656
2657 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2658 LEAVE;
2659}
2660
2661/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 * ipr_find_ses_entry - Find matching SES in SES table
2663 * @res: resource entry struct of SES
2664 *
2665 * Return value:
2666 * pointer to SES table entry / NULL on failure
2667 **/
2668static const struct ipr_ses_table_entry *
2669ipr_find_ses_entry(struct ipr_resource_entry *res)
2670{
2671 int i, j, matches;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002672 struct ipr_std_inq_vpids *vpids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 const struct ipr_ses_table_entry *ste = ipr_ses_table;
2674
2675 for (i = 0; i < ARRAY_SIZE(ipr_ses_table); i++, ste++) {
2676 for (j = 0, matches = 0; j < IPR_PROD_ID_LEN; j++) {
2677 if (ste->compare_product_id_byte[j] == 'X') {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002678 vpids = &res->std_inq_data.vpids;
2679 if (vpids->product_id[j] == ste->product_id[j])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 matches++;
2681 else
2682 break;
2683 } else
2684 matches++;
2685 }
2686
2687 if (matches == IPR_PROD_ID_LEN)
2688 return ste;
2689 }
2690
2691 return NULL;
2692}
2693
2694/**
2695 * ipr_get_max_scsi_speed - Determine max SCSI speed for a given bus
2696 * @ioa_cfg: ioa config struct
2697 * @bus: SCSI bus
2698 * @bus_width: bus width
2699 *
2700 * Return value:
2701 * SCSI bus speed in units of 100KHz, 1600 is 160 MHz
2702 * For a 2-byte wide SCSI bus, the maximum transfer speed is
2703 * twice the maximum transfer rate (e.g. for a wide enabled bus,
2704 * max 160MHz = max 320MB/sec).
2705 **/
2706static u32 ipr_get_max_scsi_speed(struct ipr_ioa_cfg *ioa_cfg, u8 bus, u8 bus_width)
2707{
2708 struct ipr_resource_entry *res;
2709 const struct ipr_ses_table_entry *ste;
2710 u32 max_xfer_rate = IPR_MAX_SCSI_RATE(bus_width);
2711
2712 /* Loop through each config table entry in the config table buffer */
2713 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002714 if (!(IPR_IS_SES_DEVICE(res->std_inq_data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 continue;
2716
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002717 if (bus != res->bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 continue;
2719
2720 if (!(ste = ipr_find_ses_entry(res)))
2721 continue;
2722
2723 max_xfer_rate = (ste->max_bus_speed_limit * 10) / (bus_width / 8);
2724 }
2725
2726 return max_xfer_rate;
2727}
2728
2729/**
2730 * ipr_wait_iodbg_ack - Wait for an IODEBUG ACK from the IOA
2731 * @ioa_cfg: ioa config struct
2732 * @max_delay: max delay in micro-seconds to wait
2733 *
2734 * Waits for an IODEBUG ACK from the IOA, doing busy looping.
2735 *
2736 * Return value:
2737 * 0 on success / other on failure
2738 **/
2739static int ipr_wait_iodbg_ack(struct ipr_ioa_cfg *ioa_cfg, int max_delay)
2740{
2741 volatile u32 pcii_reg;
2742 int delay = 1;
2743
2744 /* Read interrupt reg until IOA signals IO Debug Acknowledge */
2745 while (delay < max_delay) {
2746 pcii_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
2747
2748 if (pcii_reg & IPR_PCII_IO_DEBUG_ACKNOWLEDGE)
2749 return 0;
2750
2751 /* udelay cannot be used if delay is more than a few milliseconds */
2752 if ((delay / 1000) > MAX_UDELAY_MS)
2753 mdelay(delay / 1000);
2754 else
2755 udelay(delay);
2756
2757 delay += delay;
2758 }
2759 return -EIO;
2760}
2761
2762/**
Wayne Boyerdcbad002010-02-19 13:24:14 -08002763 * ipr_get_sis64_dump_data_section - Dump IOA memory
2764 * @ioa_cfg: ioa config struct
2765 * @start_addr: adapter address to dump
2766 * @dest: destination kernel buffer
2767 * @length_in_words: length to dump in 4 byte words
2768 *
2769 * Return value:
2770 * 0 on success
2771 **/
2772static int ipr_get_sis64_dump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2773 u32 start_addr,
2774 __be32 *dest, u32 length_in_words)
2775{
2776 int i;
2777
2778 for (i = 0; i < length_in_words; i++) {
2779 writel(start_addr+(i*4), ioa_cfg->regs.dump_addr_reg);
2780 *dest = cpu_to_be32(readl(ioa_cfg->regs.dump_data_reg));
2781 dest++;
2782 }
2783
2784 return 0;
2785}
2786
2787/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 * ipr_get_ldump_data_section - Dump IOA memory
2789 * @ioa_cfg: ioa config struct
2790 * @start_addr: adapter address to dump
2791 * @dest: destination kernel buffer
2792 * @length_in_words: length to dump in 4 byte words
2793 *
2794 * Return value:
2795 * 0 on success / -EIO on failure
2796 **/
2797static int ipr_get_ldump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2798 u32 start_addr,
2799 __be32 *dest, u32 length_in_words)
2800{
2801 volatile u32 temp_pcii_reg;
2802 int i, delay = 0;
2803
Wayne Boyerdcbad002010-02-19 13:24:14 -08002804 if (ioa_cfg->sis64)
2805 return ipr_get_sis64_dump_data_section(ioa_cfg, start_addr,
2806 dest, length_in_words);
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 /* Write IOA interrupt reg starting LDUMP state */
2809 writel((IPR_UPROCI_RESET_ALERT | IPR_UPROCI_IO_DEBUG_ALERT),
Wayne Boyer214777b2010-02-19 13:24:26 -08002810 ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 /* Wait for IO debug acknowledge */
2813 if (ipr_wait_iodbg_ack(ioa_cfg,
2814 IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC)) {
2815 dev_err(&ioa_cfg->pdev->dev,
2816 "IOA dump long data transfer timeout\n");
2817 return -EIO;
2818 }
2819
2820 /* Signal LDUMP interlocked - clear IO debug ack */
2821 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2822 ioa_cfg->regs.clr_interrupt_reg);
2823
2824 /* Write Mailbox with starting address */
2825 writel(start_addr, ioa_cfg->ioa_mailbox);
2826
2827 /* Signal address valid - clear IOA Reset alert */
2828 writel(IPR_UPROCI_RESET_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002829 ioa_cfg->regs.clr_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 for (i = 0; i < length_in_words; i++) {
2832 /* Wait for IO debug acknowledge */
2833 if (ipr_wait_iodbg_ack(ioa_cfg,
2834 IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC)) {
2835 dev_err(&ioa_cfg->pdev->dev,
2836 "IOA dump short data transfer timeout\n");
2837 return -EIO;
2838 }
2839
2840 /* Read data from mailbox and increment destination pointer */
2841 *dest = cpu_to_be32(readl(ioa_cfg->ioa_mailbox));
2842 dest++;
2843
2844 /* For all but the last word of data, signal data received */
2845 if (i < (length_in_words - 1)) {
2846 /* Signal dump data received - Clear IO debug Ack */
2847 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2848 ioa_cfg->regs.clr_interrupt_reg);
2849 }
2850 }
2851
2852 /* Signal end of block transfer. Set reset alert then clear IO debug ack */
2853 writel(IPR_UPROCI_RESET_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002854 ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
2856 writel(IPR_UPROCI_IO_DEBUG_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002857 ioa_cfg->regs.clr_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859 /* Signal dump data received - Clear IO debug Ack */
2860 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2861 ioa_cfg->regs.clr_interrupt_reg);
2862
2863 /* Wait for IOA to signal LDUMP exit - IOA reset alert will be cleared */
2864 while (delay < IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC) {
2865 temp_pcii_reg =
Wayne Boyer214777b2010-02-19 13:24:26 -08002866 readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868 if (!(temp_pcii_reg & IPR_UPROCI_RESET_ALERT))
2869 return 0;
2870
2871 udelay(10);
2872 delay += 10;
2873 }
2874
2875 return 0;
2876}
2877
2878#ifdef CONFIG_SCSI_IPR_DUMP
2879/**
2880 * ipr_sdt_copy - Copy Smart Dump Table to kernel buffer
2881 * @ioa_cfg: ioa config struct
2882 * @pci_address: adapter address
2883 * @length: length of data to copy
2884 *
2885 * Copy data from PCI adapter to kernel buffer.
2886 * Note: length MUST be a 4 byte multiple
2887 * Return value:
2888 * 0 on success / other on failure
2889 **/
2890static int ipr_sdt_copy(struct ipr_ioa_cfg *ioa_cfg,
2891 unsigned long pci_address, u32 length)
2892{
2893 int bytes_copied = 0;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002894 int cur_len, rc, rem_len, rem_page_len, max_dump_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 __be32 *page;
2896 unsigned long lock_flags = 0;
2897 struct ipr_ioa_dump *ioa_dump = &ioa_cfg->dump->ioa_dump;
2898
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002899 if (ioa_cfg->sis64)
2900 max_dump_size = IPR_FMT3_MAX_IOA_DUMP_SIZE;
2901 else
2902 max_dump_size = IPR_FMT2_MAX_IOA_DUMP_SIZE;
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 while (bytes_copied < length &&
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002905 (ioa_dump->hdr.len + bytes_copied) < max_dump_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 if (ioa_dump->page_offset >= PAGE_SIZE ||
2907 ioa_dump->page_offset == 0) {
2908 page = (__be32 *)__get_free_page(GFP_ATOMIC);
2909
2910 if (!page) {
2911 ipr_trace;
2912 return bytes_copied;
2913 }
2914
2915 ioa_dump->page_offset = 0;
2916 ioa_dump->ioa_data[ioa_dump->next_page_index] = page;
2917 ioa_dump->next_page_index++;
2918 } else
2919 page = ioa_dump->ioa_data[ioa_dump->next_page_index - 1];
2920
2921 rem_len = length - bytes_copied;
2922 rem_page_len = PAGE_SIZE - ioa_dump->page_offset;
2923 cur_len = min(rem_len, rem_page_len);
2924
2925 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2926 if (ioa_cfg->sdt_state == ABORT_DUMP) {
2927 rc = -EIO;
2928 } else {
2929 rc = ipr_get_ldump_data_section(ioa_cfg,
2930 pci_address + bytes_copied,
2931 &page[ioa_dump->page_offset / 4],
2932 (cur_len / sizeof(u32)));
2933 }
2934 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2935
2936 if (!rc) {
2937 ioa_dump->page_offset += cur_len;
2938 bytes_copied += cur_len;
2939 } else {
2940 ipr_trace;
2941 break;
2942 }
2943 schedule();
2944 }
2945
2946 return bytes_copied;
2947}
2948
2949/**
2950 * ipr_init_dump_entry_hdr - Initialize a dump entry header.
2951 * @hdr: dump entry header struct
2952 *
2953 * Return value:
2954 * nothing
2955 **/
2956static void ipr_init_dump_entry_hdr(struct ipr_dump_entry_header *hdr)
2957{
2958 hdr->eye_catcher = IPR_DUMP_EYE_CATCHER;
2959 hdr->num_elems = 1;
2960 hdr->offset = sizeof(*hdr);
2961 hdr->status = IPR_DUMP_STATUS_SUCCESS;
2962}
2963
2964/**
2965 * ipr_dump_ioa_type_data - Fill in the adapter type in the dump.
2966 * @ioa_cfg: ioa config struct
2967 * @driver_dump: driver dump struct
2968 *
2969 * Return value:
2970 * nothing
2971 **/
2972static void ipr_dump_ioa_type_data(struct ipr_ioa_cfg *ioa_cfg,
2973 struct ipr_driver_dump *driver_dump)
2974{
2975 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
2976
2977 ipr_init_dump_entry_hdr(&driver_dump->ioa_type_entry.hdr);
2978 driver_dump->ioa_type_entry.hdr.len =
2979 sizeof(struct ipr_dump_ioa_type_entry) -
2980 sizeof(struct ipr_dump_entry_header);
2981 driver_dump->ioa_type_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2982 driver_dump->ioa_type_entry.hdr.id = IPR_DUMP_DRIVER_TYPE_ID;
2983 driver_dump->ioa_type_entry.type = ioa_cfg->type;
2984 driver_dump->ioa_type_entry.fw_version = (ucode_vpd->major_release << 24) |
2985 (ucode_vpd->card_type << 16) | (ucode_vpd->minor_release[0] << 8) |
2986 ucode_vpd->minor_release[1];
2987 driver_dump->hdr.num_entries++;
2988}
2989
2990/**
2991 * ipr_dump_version_data - Fill in the driver version in the dump.
2992 * @ioa_cfg: ioa config struct
2993 * @driver_dump: driver dump struct
2994 *
2995 * Return value:
2996 * nothing
2997 **/
2998static void ipr_dump_version_data(struct ipr_ioa_cfg *ioa_cfg,
2999 struct ipr_driver_dump *driver_dump)
3000{
3001 ipr_init_dump_entry_hdr(&driver_dump->version_entry.hdr);
3002 driver_dump->version_entry.hdr.len =
3003 sizeof(struct ipr_dump_version_entry) -
3004 sizeof(struct ipr_dump_entry_header);
3005 driver_dump->version_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
3006 driver_dump->version_entry.hdr.id = IPR_DUMP_DRIVER_VERSION_ID;
3007 strcpy(driver_dump->version_entry.version, IPR_DRIVER_VERSION);
3008 driver_dump->hdr.num_entries++;
3009}
3010
3011/**
3012 * ipr_dump_trace_data - Fill in the IOA trace in the dump.
3013 * @ioa_cfg: ioa config struct
3014 * @driver_dump: driver dump struct
3015 *
3016 * Return value:
3017 * nothing
3018 **/
3019static void ipr_dump_trace_data(struct ipr_ioa_cfg *ioa_cfg,
3020 struct ipr_driver_dump *driver_dump)
3021{
3022 ipr_init_dump_entry_hdr(&driver_dump->trace_entry.hdr);
3023 driver_dump->trace_entry.hdr.len =
3024 sizeof(struct ipr_dump_trace_entry) -
3025 sizeof(struct ipr_dump_entry_header);
3026 driver_dump->trace_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
3027 driver_dump->trace_entry.hdr.id = IPR_DUMP_TRACE_ID;
3028 memcpy(driver_dump->trace_entry.trace, ioa_cfg->trace, IPR_TRACE_SIZE);
3029 driver_dump->hdr.num_entries++;
3030}
3031
3032/**
3033 * ipr_dump_location_data - Fill in the IOA location in the dump.
3034 * @ioa_cfg: ioa config struct
3035 * @driver_dump: driver dump struct
3036 *
3037 * Return value:
3038 * nothing
3039 **/
3040static void ipr_dump_location_data(struct ipr_ioa_cfg *ioa_cfg,
3041 struct ipr_driver_dump *driver_dump)
3042{
3043 ipr_init_dump_entry_hdr(&driver_dump->location_entry.hdr);
3044 driver_dump->location_entry.hdr.len =
3045 sizeof(struct ipr_dump_location_entry) -
3046 sizeof(struct ipr_dump_entry_header);
3047 driver_dump->location_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
3048 driver_dump->location_entry.hdr.id = IPR_DUMP_LOCATION_ID;
Kay Sievers71610f52008-12-03 22:41:36 +01003049 strcpy(driver_dump->location_entry.location, dev_name(&ioa_cfg->pdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 driver_dump->hdr.num_entries++;
3051}
3052
3053/**
3054 * ipr_get_ioa_dump - Perform a dump of the driver and adapter.
3055 * @ioa_cfg: ioa config struct
3056 * @dump: dump struct
3057 *
3058 * Return value:
3059 * nothing
3060 **/
3061static void ipr_get_ioa_dump(struct ipr_ioa_cfg *ioa_cfg, struct ipr_dump *dump)
3062{
3063 unsigned long start_addr, sdt_word;
3064 unsigned long lock_flags = 0;
3065 struct ipr_driver_dump *driver_dump = &dump->driver_dump;
3066 struct ipr_ioa_dump *ioa_dump = &dump->ioa_dump;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003067 u32 num_entries, max_num_entries, start_off, end_off;
3068 u32 max_dump_size, bytes_to_copy, bytes_copied, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 struct ipr_sdt *sdt;
Wayne Boyerdcbad002010-02-19 13:24:14 -08003070 int valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 int i;
3072
3073 ENTER;
3074
3075 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3076
Brian King41e9a692011-09-21 08:51:11 -05003077 if (ioa_cfg->sdt_state != READ_DUMP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3079 return;
3080 }
3081
Wayne Boyer110def82010-11-04 09:36:16 -07003082 if (ioa_cfg->sis64) {
3083 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3084 ssleep(IPR_DUMP_DELAY_SECONDS);
3085 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3086 }
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 start_addr = readl(ioa_cfg->ioa_mailbox);
3089
Wayne Boyerdcbad002010-02-19 13:24:14 -08003090 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(start_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 dev_err(&ioa_cfg->pdev->dev,
3092 "Invalid dump table format: %lx\n", start_addr);
3093 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3094 return;
3095 }
3096
3097 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA initiated\n");
3098
3099 driver_dump->hdr.eye_catcher = IPR_DUMP_EYE_CATCHER;
3100
3101 /* Initialize the overall dump header */
3102 driver_dump->hdr.len = sizeof(struct ipr_driver_dump);
3103 driver_dump->hdr.num_entries = 1;
3104 driver_dump->hdr.first_entry_offset = sizeof(struct ipr_dump_header);
3105 driver_dump->hdr.status = IPR_DUMP_STATUS_SUCCESS;
3106 driver_dump->hdr.os = IPR_DUMP_OS_LINUX;
3107 driver_dump->hdr.driver_name = IPR_DUMP_DRIVER_NAME;
3108
3109 ipr_dump_version_data(ioa_cfg, driver_dump);
3110 ipr_dump_location_data(ioa_cfg, driver_dump);
3111 ipr_dump_ioa_type_data(ioa_cfg, driver_dump);
3112 ipr_dump_trace_data(ioa_cfg, driver_dump);
3113
3114 /* Update dump_header */
3115 driver_dump->hdr.len += sizeof(struct ipr_dump_entry_header);
3116
3117 /* IOA Dump entry */
3118 ipr_init_dump_entry_hdr(&ioa_dump->hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 ioa_dump->hdr.len = 0;
3120 ioa_dump->hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
3121 ioa_dump->hdr.id = IPR_DUMP_IOA_DUMP_ID;
3122
3123 /* First entries in sdt are actually a list of dump addresses and
3124 lengths to gather the real dump data. sdt represents the pointer
3125 to the ioa generated dump table. Dump data will be extracted based
3126 on entries in this table */
3127 sdt = &ioa_dump->sdt;
3128
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003129 if (ioa_cfg->sis64) {
3130 max_num_entries = IPR_FMT3_NUM_SDT_ENTRIES;
3131 max_dump_size = IPR_FMT3_MAX_IOA_DUMP_SIZE;
3132 } else {
3133 max_num_entries = IPR_FMT2_NUM_SDT_ENTRIES;
3134 max_dump_size = IPR_FMT2_MAX_IOA_DUMP_SIZE;
3135 }
3136
3137 bytes_to_copy = offsetof(struct ipr_sdt, entry) +
3138 (max_num_entries * sizeof(struct ipr_sdt_entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 rc = ipr_get_ldump_data_section(ioa_cfg, start_addr, (__be32 *)sdt,
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003140 bytes_to_copy / sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 /* Smart Dump table is ready to use and the first entry is valid */
Wayne Boyerdcbad002010-02-19 13:24:14 -08003143 if (rc || ((be32_to_cpu(sdt->hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
3144 (be32_to_cpu(sdt->hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 dev_err(&ioa_cfg->pdev->dev,
3146 "Dump of IOA failed. Dump table not valid: %d, %X.\n",
3147 rc, be32_to_cpu(sdt->hdr.state));
3148 driver_dump->hdr.status = IPR_DUMP_STATUS_FAILED;
3149 ioa_cfg->sdt_state = DUMP_OBTAINED;
3150 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3151 return;
3152 }
3153
3154 num_entries = be32_to_cpu(sdt->hdr.num_entries_used);
3155
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003156 if (num_entries > max_num_entries)
3157 num_entries = max_num_entries;
3158
3159 /* Update dump length to the actual data to be copied */
3160 dump->driver_dump.hdr.len += sizeof(struct ipr_sdt_header);
3161 if (ioa_cfg->sis64)
3162 dump->driver_dump.hdr.len += num_entries * sizeof(struct ipr_sdt_entry);
3163 else
3164 dump->driver_dump.hdr.len += max_num_entries * sizeof(struct ipr_sdt_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3167
3168 for (i = 0; i < num_entries; i++) {
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003169 if (ioa_dump->hdr.len > max_dump_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3171 break;
3172 }
3173
3174 if (sdt->entry[i].flags & IPR_SDT_VALID_ENTRY) {
Wayne Boyerdcbad002010-02-19 13:24:14 -08003175 sdt_word = be32_to_cpu(sdt->entry[i].start_token);
3176 if (ioa_cfg->sis64)
3177 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token);
3178 else {
3179 start_off = sdt_word & IPR_FMT2_MBX_ADDR_MASK;
3180 end_off = be32_to_cpu(sdt->entry[i].end_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Wayne Boyerdcbad002010-02-19 13:24:14 -08003182 if (ipr_sdt_is_fmt2(sdt_word) && sdt_word)
3183 bytes_to_copy = end_off - start_off;
3184 else
3185 valid = 0;
3186 }
3187 if (valid) {
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003188 if (bytes_to_copy > max_dump_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 sdt->entry[i].flags &= ~IPR_SDT_VALID_ENTRY;
3190 continue;
3191 }
3192
3193 /* Copy data from adapter to driver buffers */
3194 bytes_copied = ipr_sdt_copy(ioa_cfg, sdt_word,
3195 bytes_to_copy);
3196
3197 ioa_dump->hdr.len += bytes_copied;
3198
3199 if (bytes_copied != bytes_to_copy) {
3200 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3201 break;
3202 }
3203 }
3204 }
3205 }
3206
3207 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA completed.\n");
3208
3209 /* Update dump_header */
3210 driver_dump->hdr.len += ioa_dump->hdr.len;
3211 wmb();
3212 ioa_cfg->sdt_state = DUMP_OBTAINED;
3213 LEAVE;
3214}
3215
3216#else
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003217#define ipr_get_ioa_dump(ioa_cfg, dump) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218#endif
3219
3220/**
3221 * ipr_release_dump - Free adapter dump memory
3222 * @kref: kref struct
3223 *
3224 * Return value:
3225 * nothing
3226 **/
3227static void ipr_release_dump(struct kref *kref)
3228{
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003229 struct ipr_dump *dump = container_of(kref, struct ipr_dump, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 struct ipr_ioa_cfg *ioa_cfg = dump->ioa_cfg;
3231 unsigned long lock_flags = 0;
3232 int i;
3233
3234 ENTER;
3235 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3236 ioa_cfg->dump = NULL;
3237 ioa_cfg->sdt_state = INACTIVE;
3238 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3239
3240 for (i = 0; i < dump->ioa_dump.next_page_index; i++)
3241 free_page((unsigned long) dump->ioa_dump.ioa_data[i]);
3242
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003243 vfree(dump->ioa_dump.ioa_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 kfree(dump);
3245 LEAVE;
3246}
3247
3248/**
3249 * ipr_worker_thread - Worker thread
David Howellsc4028952006-11-22 14:57:56 +00003250 * @work: ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 *
3252 * Called at task level from a work thread. This function takes care
3253 * of adding and removing device from the mid-layer as configuration
3254 * changes are detected by the adapter.
3255 *
3256 * Return value:
3257 * nothing
3258 **/
David Howellsc4028952006-11-22 14:57:56 +00003259static void ipr_worker_thread(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260{
3261 unsigned long lock_flags;
3262 struct ipr_resource_entry *res;
3263 struct scsi_device *sdev;
3264 struct ipr_dump *dump;
David Howellsc4028952006-11-22 14:57:56 +00003265 struct ipr_ioa_cfg *ioa_cfg =
3266 container_of(work, struct ipr_ioa_cfg, work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 u8 bus, target, lun;
3268 int did_work;
3269
3270 ENTER;
3271 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3272
Brian King41e9a692011-09-21 08:51:11 -05003273 if (ioa_cfg->sdt_state == READ_DUMP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 dump = ioa_cfg->dump;
3275 if (!dump) {
3276 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3277 return;
3278 }
3279 kref_get(&dump->kref);
3280 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3281 ipr_get_ioa_dump(ioa_cfg, dump);
3282 kref_put(&dump->kref, ipr_release_dump);
3283
3284 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Brian King4c647e92011-10-15 09:08:56 -05003285 if (ioa_cfg->sdt_state == DUMP_OBTAINED && !ioa_cfg->dump_timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3287 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3288 return;
3289 }
3290
Brian Kingb195d5e2016-07-15 14:48:03 -05003291 if (!ioa_cfg->scan_enabled) {
3292 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3293 return;
3294 }
3295
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296restart:
3297 do {
3298 did_work = 0;
Brian Kingf688f962014-12-02 12:47:37 -06003299 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3301 return;
3302 }
3303
3304 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3305 if (res->del_from_ml && res->sdev) {
3306 did_work = 1;
3307 sdev = res->sdev;
3308 if (!scsi_device_get(sdev)) {
Kleber Sacilotto de Souza5767a1c2011-02-14 20:19:31 -02003309 if (!res->add_to_ml)
3310 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
3311 else
3312 res->del_from_ml = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3314 scsi_remove_device(sdev);
3315 scsi_device_put(sdev);
3316 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3317 }
3318 break;
3319 }
3320 }
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003321 } while (did_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
3323 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3324 if (res->add_to_ml) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08003325 bus = res->bus;
3326 target = res->target;
3327 lun = res->lun;
Brian King1121b792006-03-29 09:37:16 -06003328 res->add_to_ml = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3330 scsi_add_device(ioa_cfg->host, bus, target, lun);
3331 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3332 goto restart;
3333 }
3334 }
3335
Brian Kingf688f962014-12-02 12:47:37 -06003336 ioa_cfg->scan_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Tony Jonesee959b02008-02-22 00:13:36 +01003338 kobject_uevent(&ioa_cfg->host->shost_dev.kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 LEAVE;
3340}
3341
3342#ifdef CONFIG_SCSI_IPR_TRACE
3343/**
3344 * ipr_read_trace - Dump the adapter trace
Chris Wright2c3c8be2010-05-12 18:28:57 -07003345 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08003347 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 * @buf: buffer
3349 * @off: offset
3350 * @count: buffer size
3351 *
3352 * Return value:
3353 * number of bytes printed to buffer
3354 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003355static ssize_t ipr_read_trace(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08003356 struct bin_attribute *bin_attr,
3357 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358{
Tony Jonesee959b02008-02-22 00:13:36 +01003359 struct device *dev = container_of(kobj, struct device, kobj);
3360 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3362 unsigned long lock_flags = 0;
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003363 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
3365 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003366 ret = memory_read_from_buffer(buf, count, &off, ioa_cfg->trace,
3367 IPR_TRACE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003369
3370 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371}
3372
3373static struct bin_attribute ipr_trace_attr = {
3374 .attr = {
3375 .name = "trace",
3376 .mode = S_IRUGO,
3377 },
3378 .size = 0,
3379 .read = ipr_read_trace,
3380};
3381#endif
3382
3383/**
3384 * ipr_show_fw_version - Show the firmware version
Tony Jonesee959b02008-02-22 00:13:36 +01003385 * @dev: class device struct
3386 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 *
3388 * Return value:
3389 * number of bytes printed to buffer
3390 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003391static ssize_t ipr_show_fw_version(struct device *dev,
3392 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393{
Tony Jonesee959b02008-02-22 00:13:36 +01003394 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3396 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
3397 unsigned long lock_flags = 0;
3398 int len;
3399
3400 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3401 len = snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X\n",
3402 ucode_vpd->major_release, ucode_vpd->card_type,
3403 ucode_vpd->minor_release[0],
3404 ucode_vpd->minor_release[1]);
3405 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3406 return len;
3407}
3408
Tony Jonesee959b02008-02-22 00:13:36 +01003409static struct device_attribute ipr_fw_version_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 .attr = {
3411 .name = "fw_version",
3412 .mode = S_IRUGO,
3413 },
3414 .show = ipr_show_fw_version,
3415};
3416
3417/**
3418 * ipr_show_log_level - Show the adapter's error logging level
Tony Jonesee959b02008-02-22 00:13:36 +01003419 * @dev: class device struct
3420 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 *
3422 * Return value:
3423 * number of bytes printed to buffer
3424 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003425static ssize_t ipr_show_log_level(struct device *dev,
3426 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427{
Tony Jonesee959b02008-02-22 00:13:36 +01003428 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3430 unsigned long lock_flags = 0;
3431 int len;
3432
3433 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3434 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->log_level);
3435 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3436 return len;
3437}
3438
3439/**
3440 * ipr_store_log_level - Change the adapter's error logging level
Tony Jonesee959b02008-02-22 00:13:36 +01003441 * @dev: class device struct
3442 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 *
3444 * Return value:
3445 * number of bytes printed to buffer
3446 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003447static ssize_t ipr_store_log_level(struct device *dev,
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003448 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 const char *buf, size_t count)
3450{
Tony Jonesee959b02008-02-22 00:13:36 +01003451 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3453 unsigned long lock_flags = 0;
3454
3455 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3456 ioa_cfg->log_level = simple_strtoul(buf, NULL, 10);
3457 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3458 return strlen(buf);
3459}
3460
Tony Jonesee959b02008-02-22 00:13:36 +01003461static struct device_attribute ipr_log_level_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 .attr = {
3463 .name = "log_level",
3464 .mode = S_IRUGO | S_IWUSR,
3465 },
3466 .show = ipr_show_log_level,
3467 .store = ipr_store_log_level
3468};
3469
3470/**
3471 * ipr_store_diagnostics - IOA Diagnostics interface
Tony Jonesee959b02008-02-22 00:13:36 +01003472 * @dev: device struct
3473 * @buf: buffer
3474 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 *
3476 * This function will reset the adapter and wait a reasonable
3477 * amount of time for any errors that the adapter might log.
3478 *
3479 * Return value:
3480 * count on success / other on failure
3481 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003482static ssize_t ipr_store_diagnostics(struct device *dev,
3483 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 const char *buf, size_t count)
3485{
Tony Jonesee959b02008-02-22 00:13:36 +01003486 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3488 unsigned long lock_flags = 0;
3489 int rc = count;
3490
3491 if (!capable(CAP_SYS_ADMIN))
3492 return -EACCES;
3493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003495 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -05003496 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3497 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3498 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3499 }
3500
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 ioa_cfg->errors_logged = 0;
3502 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3503
3504 if (ioa_cfg->in_reset_reload) {
3505 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3506 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3507
3508 /* Wait for a second for any errors to be logged */
3509 msleep(1000);
3510 } else {
3511 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3512 return -EIO;
3513 }
3514
3515 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3516 if (ioa_cfg->in_reset_reload || ioa_cfg->errors_logged)
3517 rc = -EIO;
3518 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3519
3520 return rc;
3521}
3522
Tony Jonesee959b02008-02-22 00:13:36 +01003523static struct device_attribute ipr_diagnostics_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 .attr = {
3525 .name = "run_diagnostics",
3526 .mode = S_IWUSR,
3527 },
3528 .store = ipr_store_diagnostics
3529};
3530
3531/**
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003532 * ipr_show_adapter_state - Show the adapter's state
Tony Jonesee959b02008-02-22 00:13:36 +01003533 * @class_dev: device struct
3534 * @buf: buffer
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003535 *
3536 * Return value:
3537 * number of bytes printed to buffer
3538 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003539static ssize_t ipr_show_adapter_state(struct device *dev,
3540 struct device_attribute *attr, char *buf)
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003541{
Tony Jonesee959b02008-02-22 00:13:36 +01003542 struct Scsi_Host *shost = class_to_shost(dev);
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003543 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3544 unsigned long lock_flags = 0;
3545 int len;
3546
3547 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003548 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003549 len = snprintf(buf, PAGE_SIZE, "offline\n");
3550 else
3551 len = snprintf(buf, PAGE_SIZE, "online\n");
3552 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3553 return len;
3554}
3555
3556/**
3557 * ipr_store_adapter_state - Change adapter state
Tony Jonesee959b02008-02-22 00:13:36 +01003558 * @dev: device struct
3559 * @buf: buffer
3560 * @count: buffer size
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003561 *
3562 * This function will change the adapter's state.
3563 *
3564 * Return value:
3565 * count on success / other on failure
3566 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003567static ssize_t ipr_store_adapter_state(struct device *dev,
3568 struct device_attribute *attr,
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003569 const char *buf, size_t count)
3570{
Tony Jonesee959b02008-02-22 00:13:36 +01003571 struct Scsi_Host *shost = class_to_shost(dev);
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003572 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3573 unsigned long lock_flags;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003574 int result = count, i;
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003575
3576 if (!capable(CAP_SYS_ADMIN))
3577 return -EACCES;
3578
3579 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003580 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead &&
3581 !strncmp(buf, "online", 6)) {
3582 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
3583 spin_lock(&ioa_cfg->hrrq[i]._lock);
3584 ioa_cfg->hrrq[i].ioa_is_dead = 0;
3585 spin_unlock(&ioa_cfg->hrrq[i]._lock);
3586 }
3587 wmb();
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003588 ioa_cfg->reset_retries = 0;
3589 ioa_cfg->in_ioa_bringdown = 0;
3590 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3591 }
3592 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3593 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3594
3595 return result;
3596}
3597
Tony Jonesee959b02008-02-22 00:13:36 +01003598static struct device_attribute ipr_ioa_state_attr = {
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003599 .attr = {
Brian King49dd0962008-04-28 17:36:20 -05003600 .name = "online_state",
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003601 .mode = S_IRUGO | S_IWUSR,
3602 },
3603 .show = ipr_show_adapter_state,
3604 .store = ipr_store_adapter_state
3605};
3606
3607/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 * ipr_store_reset_adapter - Reset the adapter
Tony Jonesee959b02008-02-22 00:13:36 +01003609 * @dev: device struct
3610 * @buf: buffer
3611 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 *
3613 * This function will reset the adapter.
3614 *
3615 * Return value:
3616 * count on success / other on failure
3617 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003618static ssize_t ipr_store_reset_adapter(struct device *dev,
3619 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 const char *buf, size_t count)
3621{
Tony Jonesee959b02008-02-22 00:13:36 +01003622 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3624 unsigned long lock_flags;
3625 int result = count;
3626
3627 if (!capable(CAP_SYS_ADMIN))
3628 return -EACCES;
3629
3630 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3631 if (!ioa_cfg->in_reset_reload)
3632 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3633 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3634 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3635
3636 return result;
3637}
3638
Tony Jonesee959b02008-02-22 00:13:36 +01003639static struct device_attribute ipr_ioa_reset_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 .attr = {
3641 .name = "reset_host",
3642 .mode = S_IWUSR,
3643 },
3644 .store = ipr_store_reset_adapter
3645};
3646
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003647static int ipr_iopoll(struct irq_poll *iop, int budget);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003648 /**
3649 * ipr_show_iopoll_weight - Show ipr polling mode
3650 * @dev: class device struct
3651 * @buf: buffer
3652 *
3653 * Return value:
3654 * number of bytes printed to buffer
3655 **/
3656static ssize_t ipr_show_iopoll_weight(struct device *dev,
3657 struct device_attribute *attr, char *buf)
3658{
3659 struct Scsi_Host *shost = class_to_shost(dev);
3660 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3661 unsigned long lock_flags = 0;
3662 int len;
3663
3664 spin_lock_irqsave(shost->host_lock, lock_flags);
3665 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->iopoll_weight);
3666 spin_unlock_irqrestore(shost->host_lock, lock_flags);
3667
3668 return len;
3669}
3670
3671/**
3672 * ipr_store_iopoll_weight - Change the adapter's polling mode
3673 * @dev: class device struct
3674 * @buf: buffer
3675 *
3676 * Return value:
3677 * number of bytes printed to buffer
3678 **/
3679static ssize_t ipr_store_iopoll_weight(struct device *dev,
3680 struct device_attribute *attr,
3681 const char *buf, size_t count)
3682{
3683 struct Scsi_Host *shost = class_to_shost(dev);
3684 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3685 unsigned long user_iopoll_weight;
3686 unsigned long lock_flags = 0;
3687 int i;
3688
3689 if (!ioa_cfg->sis64) {
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003690 dev_info(&ioa_cfg->pdev->dev, "irq_poll not supported on this adapter\n");
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003691 return -EINVAL;
3692 }
3693 if (kstrtoul(buf, 10, &user_iopoll_weight))
3694 return -EINVAL;
3695
3696 if (user_iopoll_weight > 256) {
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003697 dev_info(&ioa_cfg->pdev->dev, "Invalid irq_poll weight. It must be less than 256\n");
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003698 return -EINVAL;
3699 }
3700
3701 if (user_iopoll_weight == ioa_cfg->iopoll_weight) {
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003702 dev_info(&ioa_cfg->pdev->dev, "Current irq_poll weight has the same weight\n");
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003703 return strlen(buf);
3704 }
3705
Jens Axboe89f8b332014-03-13 09:38:42 -06003706 if (ioa_cfg->iopoll_weight && ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003707 for (i = 1; i < ioa_cfg->hrrq_num; i++)
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003708 irq_poll_disable(&ioa_cfg->hrrq[i].iopoll);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003709 }
3710
3711 spin_lock_irqsave(shost->host_lock, lock_flags);
3712 ioa_cfg->iopoll_weight = user_iopoll_weight;
Jens Axboe89f8b332014-03-13 09:38:42 -06003713 if (ioa_cfg->iopoll_weight && ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003714 for (i = 1; i < ioa_cfg->hrrq_num; i++) {
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003715 irq_poll_init(&ioa_cfg->hrrq[i].iopoll,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003716 ioa_cfg->iopoll_weight, ipr_iopoll);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003717 }
3718 }
3719 spin_unlock_irqrestore(shost->host_lock, lock_flags);
3720
3721 return strlen(buf);
3722}
3723
3724static struct device_attribute ipr_iopoll_weight_attr = {
3725 .attr = {
3726 .name = "iopoll_weight",
3727 .mode = S_IRUGO | S_IWUSR,
3728 },
3729 .show = ipr_show_iopoll_weight,
3730 .store = ipr_store_iopoll_weight
3731};
3732
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733/**
3734 * ipr_alloc_ucode_buffer - Allocates a microcode download buffer
3735 * @buf_len: buffer length
3736 *
3737 * Allocates a DMA'able buffer in chunks and assembles a scatter/gather
3738 * list to use for microcode download
3739 *
3740 * Return value:
3741 * pointer to sglist / NULL on failure
3742 **/
3743static struct ipr_sglist *ipr_alloc_ucode_buffer(int buf_len)
3744{
3745 int sg_size, order, bsize_elem, num_elem, i, j;
3746 struct ipr_sglist *sglist;
3747 struct scatterlist *scatterlist;
3748 struct page *page;
3749
3750 /* Get the minimum size per scatter/gather element */
3751 sg_size = buf_len / (IPR_MAX_SGLIST - 1);
3752
3753 /* Get the actual size per element */
3754 order = get_order(sg_size);
3755
3756 /* Determine the actual number of bytes per element */
3757 bsize_elem = PAGE_SIZE * (1 << order);
3758
3759 /* Determine the actual number of sg entries needed */
3760 if (buf_len % bsize_elem)
3761 num_elem = (buf_len / bsize_elem) + 1;
3762 else
3763 num_elem = buf_len / bsize_elem;
3764
3765 /* Allocate a scatter/gather list for the DMA */
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06003766 sglist = kzalloc(sizeof(struct ipr_sglist) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 (sizeof(struct scatterlist) * (num_elem - 1)),
3768 GFP_KERNEL);
3769
3770 if (sglist == NULL) {
3771 ipr_trace;
3772 return NULL;
3773 }
3774
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 scatterlist = sglist->scatterlist;
Jens Axboe45711f12007-10-22 21:19:53 +02003776 sg_init_table(scatterlist, num_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
3778 sglist->order = order;
3779 sglist->num_sg = num_elem;
3780
3781 /* Allocate a bunch of sg elements */
3782 for (i = 0; i < num_elem; i++) {
3783 page = alloc_pages(GFP_KERNEL, order);
3784 if (!page) {
3785 ipr_trace;
3786
3787 /* Free up what we already allocated */
3788 for (j = i - 1; j >= 0; j--)
Jens Axboe45711f12007-10-22 21:19:53 +02003789 __free_pages(sg_page(&scatterlist[j]), order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 kfree(sglist);
3791 return NULL;
3792 }
3793
Jens Axboe642f1492007-10-24 11:20:47 +02003794 sg_set_page(&scatterlist[i], page, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 }
3796
3797 return sglist;
3798}
3799
3800/**
3801 * ipr_free_ucode_buffer - Frees a microcode download buffer
3802 * @p_dnld: scatter/gather list pointer
3803 *
3804 * Free a DMA'able ucode download buffer previously allocated with
3805 * ipr_alloc_ucode_buffer
3806 *
3807 * Return value:
3808 * nothing
3809 **/
3810static void ipr_free_ucode_buffer(struct ipr_sglist *sglist)
3811{
3812 int i;
3813
3814 for (i = 0; i < sglist->num_sg; i++)
Jens Axboe45711f12007-10-22 21:19:53 +02003815 __free_pages(sg_page(&sglist->scatterlist[i]), sglist->order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
3817 kfree(sglist);
3818}
3819
3820/**
3821 * ipr_copy_ucode_buffer - Copy user buffer to kernel buffer
3822 * @sglist: scatter/gather list pointer
3823 * @buffer: buffer pointer
3824 * @len: buffer length
3825 *
3826 * Copy a microcode image from a user buffer into a buffer allocated by
3827 * ipr_alloc_ucode_buffer
3828 *
3829 * Return value:
3830 * 0 on success / other on failure
3831 **/
3832static int ipr_copy_ucode_buffer(struct ipr_sglist *sglist,
3833 u8 *buffer, u32 len)
3834{
3835 int bsize_elem, i, result = 0;
3836 struct scatterlist *scatterlist;
3837 void *kaddr;
3838
3839 /* Determine the actual number of bytes per element */
3840 bsize_elem = PAGE_SIZE * (1 << sglist->order);
3841
3842 scatterlist = sglist->scatterlist;
3843
3844 for (i = 0; i < (len / bsize_elem); i++, buffer += bsize_elem) {
Jens Axboe45711f12007-10-22 21:19:53 +02003845 struct page *page = sg_page(&scatterlist[i]);
3846
3847 kaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 memcpy(kaddr, buffer, bsize_elem);
Jens Axboe45711f12007-10-22 21:19:53 +02003849 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
3851 scatterlist[i].length = bsize_elem;
3852
3853 if (result != 0) {
3854 ipr_trace;
3855 return result;
3856 }
3857 }
3858
3859 if (len % bsize_elem) {
Jens Axboe45711f12007-10-22 21:19:53 +02003860 struct page *page = sg_page(&scatterlist[i]);
3861
3862 kaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 memcpy(kaddr, buffer, len % bsize_elem);
Jens Axboe45711f12007-10-22 21:19:53 +02003864 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
3866 scatterlist[i].length = len % bsize_elem;
3867 }
3868
3869 sglist->buffer_len = len;
3870 return result;
3871}
3872
3873/**
Wayne Boyera32c0552010-02-19 13:23:36 -08003874 * ipr_build_ucode_ioadl64 - Build a microcode download IOADL
3875 * @ipr_cmd: ipr command struct
3876 * @sglist: scatter/gather list
3877 *
3878 * Builds a microcode download IOA data list (IOADL).
3879 *
3880 **/
3881static void ipr_build_ucode_ioadl64(struct ipr_cmnd *ipr_cmd,
3882 struct ipr_sglist *sglist)
3883{
3884 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
3885 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
3886 struct scatterlist *scatterlist = sglist->scatterlist;
3887 int i;
3888
3889 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
3890 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
3891 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3892
3893 ioarcb->ioadl_len =
3894 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
3895 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3896 ioadl64[i].flags = cpu_to_be32(IPR_IOADL_FLAGS_WRITE);
3897 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(&scatterlist[i]));
3898 ioadl64[i].address = cpu_to_be64(sg_dma_address(&scatterlist[i]));
3899 }
3900
3901 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3902}
3903
3904/**
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003905 * ipr_build_ucode_ioadl - Build a microcode download IOADL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 * @ipr_cmd: ipr command struct
3907 * @sglist: scatter/gather list
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 *
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003909 * Builds a microcode download IOA data list (IOADL).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 **/
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003912static void ipr_build_ucode_ioadl(struct ipr_cmnd *ipr_cmd,
3913 struct ipr_sglist *sglist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08003916 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 struct scatterlist *scatterlist = sglist->scatterlist;
3918 int i;
3919
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003920 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08003922 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3923
3924 ioarcb->ioadl_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
3926
3927 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3928 ioadl[i].flags_and_data_len =
3929 cpu_to_be32(IPR_IOADL_FLAGS_WRITE | sg_dma_len(&scatterlist[i]));
3930 ioadl[i].address =
3931 cpu_to_be32(sg_dma_address(&scatterlist[i]));
3932 }
3933
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003934 ioadl[i-1].flags_and_data_len |=
3935 cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3936}
3937
3938/**
3939 * ipr_update_ioa_ucode - Update IOA's microcode
3940 * @ioa_cfg: ioa config struct
3941 * @sglist: scatter/gather list
3942 *
3943 * Initiate an adapter reset to update the IOA's microcode
3944 *
3945 * Return value:
3946 * 0 on success / -EIO on failure
3947 **/
3948static int ipr_update_ioa_ucode(struct ipr_ioa_cfg *ioa_cfg,
3949 struct ipr_sglist *sglist)
3950{
3951 unsigned long lock_flags;
3952
3953 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003954 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -05003955 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3956 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3957 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3958 }
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003959
3960 if (ioa_cfg->ucode_sglist) {
3961 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3962 dev_err(&ioa_cfg->pdev->dev,
3963 "Microcode download already in progress\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 return -EIO;
3965 }
3966
Anton Blanchardd73341b2014-10-30 17:27:08 -05003967 sglist->num_dma_sg = dma_map_sg(&ioa_cfg->pdev->dev,
3968 sglist->scatterlist, sglist->num_sg,
3969 DMA_TO_DEVICE);
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003970
3971 if (!sglist->num_dma_sg) {
3972 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3973 dev_err(&ioa_cfg->pdev->dev,
3974 "Failed to map microcode download buffer!\n");
3975 return -EIO;
3976 }
3977
3978 ioa_cfg->ucode_sglist = sglist;
3979 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3980 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3981 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3982
3983 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3984 ioa_cfg->ucode_sglist = NULL;
3985 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 return 0;
3987}
3988
3989/**
3990 * ipr_store_update_fw - Update the firmware on the adapter
Tony Jonesee959b02008-02-22 00:13:36 +01003991 * @class_dev: device struct
3992 * @buf: buffer
3993 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 *
3995 * This function will update the firmware on the adapter.
3996 *
3997 * Return value:
3998 * count on success / other on failure
3999 **/
Tony Jonesee959b02008-02-22 00:13:36 +01004000static ssize_t ipr_store_update_fw(struct device *dev,
4001 struct device_attribute *attr,
4002 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003{
Tony Jonesee959b02008-02-22 00:13:36 +01004004 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4006 struct ipr_ucode_image_header *image_hdr;
4007 const struct firmware *fw_entry;
4008 struct ipr_sglist *sglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 char fname[100];
4010 char *src;
Gabriel Krisman Bertazi21b81712016-02-25 13:54:20 -03004011 char *endline;
Insu Yund63c7dd2016-01-06 12:44:01 -05004012 int result, dnld_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
4014 if (!capable(CAP_SYS_ADMIN))
4015 return -EACCES;
4016
Insu Yund63c7dd2016-01-06 12:44:01 -05004017 snprintf(fname, sizeof(fname), "%s", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Gabriel Krisman Bertazi21b81712016-02-25 13:54:20 -03004019 endline = strchr(fname, '\n');
4020 if (endline)
4021 *endline = '\0';
4022
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03004023 if (request_firmware(&fw_entry, fname, &ioa_cfg->pdev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 dev_err(&ioa_cfg->pdev->dev, "Firmware file %s not found\n", fname);
4025 return -EIO;
4026 }
4027
4028 image_hdr = (struct ipr_ucode_image_header *)fw_entry->data;
4029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 src = (u8 *)image_hdr + be32_to_cpu(image_hdr->header_length);
4031 dnld_size = fw_entry->size - be32_to_cpu(image_hdr->header_length);
4032 sglist = ipr_alloc_ucode_buffer(dnld_size);
4033
4034 if (!sglist) {
4035 dev_err(&ioa_cfg->pdev->dev, "Microcode buffer allocation failed\n");
4036 release_firmware(fw_entry);
4037 return -ENOMEM;
4038 }
4039
4040 result = ipr_copy_ucode_buffer(sglist, src, dnld_size);
4041
4042 if (result) {
4043 dev_err(&ioa_cfg->pdev->dev,
4044 "Microcode buffer copy to DMA buffer failed\n");
brking@us.ibm.com12baa422005-11-01 17:01:27 -06004045 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 }
4047
Wayne Boyer14ed9cc2011-10-03 20:54:37 -07004048 ipr_info("Updating microcode, please be patient. This may take up to 30 minutes.\n");
4049
brking@us.ibm.com12baa422005-11-01 17:01:27 -06004050 result = ipr_update_ioa_ucode(ioa_cfg, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
brking@us.ibm.com12baa422005-11-01 17:01:27 -06004052 if (!result)
4053 result = count;
4054out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 ipr_free_ucode_buffer(sglist);
4056 release_firmware(fw_entry);
brking@us.ibm.com12baa422005-11-01 17:01:27 -06004057 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058}
4059
Tony Jonesee959b02008-02-22 00:13:36 +01004060static struct device_attribute ipr_update_fw_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 .attr = {
4062 .name = "update_fw",
4063 .mode = S_IWUSR,
4064 },
4065 .store = ipr_store_update_fw
4066};
4067
Wayne Boyer75576bb2010-07-14 10:50:14 -07004068/**
4069 * ipr_show_fw_type - Show the adapter's firmware type.
4070 * @dev: class device struct
4071 * @buf: buffer
4072 *
4073 * Return value:
4074 * number of bytes printed to buffer
4075 **/
4076static ssize_t ipr_show_fw_type(struct device *dev,
4077 struct device_attribute *attr, char *buf)
4078{
4079 struct Scsi_Host *shost = class_to_shost(dev);
4080 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4081 unsigned long lock_flags = 0;
4082 int len;
4083
4084 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4085 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->sis64);
4086 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4087 return len;
4088}
4089
4090static struct device_attribute ipr_ioa_fw_type_attr = {
4091 .attr = {
4092 .name = "fw_type",
4093 .mode = S_IRUGO,
4094 },
4095 .show = ipr_show_fw_type
4096};
4097
Tony Jonesee959b02008-02-22 00:13:36 +01004098static struct device_attribute *ipr_ioa_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 &ipr_fw_version_attr,
4100 &ipr_log_level_attr,
4101 &ipr_diagnostics_attr,
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06004102 &ipr_ioa_state_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 &ipr_ioa_reset_attr,
4104 &ipr_update_fw_attr,
Wayne Boyer75576bb2010-07-14 10:50:14 -07004105 &ipr_ioa_fw_type_attr,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06004106 &ipr_iopoll_weight_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 NULL,
4108};
4109
4110#ifdef CONFIG_SCSI_IPR_DUMP
4111/**
4112 * ipr_read_dump - Dump the adapter
Chris Wright2c3c8be2010-05-12 18:28:57 -07004113 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08004115 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 * @buf: buffer
4117 * @off: offset
4118 * @count: buffer size
4119 *
4120 * Return value:
4121 * number of bytes printed to buffer
4122 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07004123static ssize_t ipr_read_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08004124 struct bin_attribute *bin_attr,
4125 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
Tony Jonesee959b02008-02-22 00:13:36 +01004127 struct device *cdev = container_of(kobj, struct device, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 struct Scsi_Host *shost = class_to_shost(cdev);
4129 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4130 struct ipr_dump *dump;
4131 unsigned long lock_flags = 0;
4132 char *src;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004133 int len, sdt_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 size_t rc = count;
4135
4136 if (!capable(CAP_SYS_ADMIN))
4137 return -EACCES;
4138
4139 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4140 dump = ioa_cfg->dump;
4141
4142 if (ioa_cfg->sdt_state != DUMP_OBTAINED || !dump) {
4143 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4144 return 0;
4145 }
4146 kref_get(&dump->kref);
4147 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4148
4149 if (off > dump->driver_dump.hdr.len) {
4150 kref_put(&dump->kref, ipr_release_dump);
4151 return 0;
4152 }
4153
4154 if (off + count > dump->driver_dump.hdr.len) {
4155 count = dump->driver_dump.hdr.len - off;
4156 rc = count;
4157 }
4158
4159 if (count && off < sizeof(dump->driver_dump)) {
4160 if (off + count > sizeof(dump->driver_dump))
4161 len = sizeof(dump->driver_dump) - off;
4162 else
4163 len = count;
4164 src = (u8 *)&dump->driver_dump + off;
4165 memcpy(buf, src, len);
4166 buf += len;
4167 off += len;
4168 count -= len;
4169 }
4170
4171 off -= sizeof(dump->driver_dump);
4172
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004173 if (ioa_cfg->sis64)
4174 sdt_end = offsetof(struct ipr_ioa_dump, sdt.entry) +
4175 (be32_to_cpu(dump->ioa_dump.sdt.hdr.num_entries_used) *
4176 sizeof(struct ipr_sdt_entry));
4177 else
4178 sdt_end = offsetof(struct ipr_ioa_dump, sdt.entry) +
4179 (IPR_FMT2_NUM_SDT_ENTRIES * sizeof(struct ipr_sdt_entry));
4180
4181 if (count && off < sdt_end) {
4182 if (off + count > sdt_end)
4183 len = sdt_end - off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 else
4185 len = count;
4186 src = (u8 *)&dump->ioa_dump + off;
4187 memcpy(buf, src, len);
4188 buf += len;
4189 off += len;
4190 count -= len;
4191 }
4192
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004193 off -= sdt_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
4195 while (count) {
4196 if ((off & PAGE_MASK) != ((off + count) & PAGE_MASK))
4197 len = PAGE_ALIGN(off) - off;
4198 else
4199 len = count;
4200 src = (u8 *)dump->ioa_dump.ioa_data[(off & PAGE_MASK) >> PAGE_SHIFT];
4201 src += off & ~PAGE_MASK;
4202 memcpy(buf, src, len);
4203 buf += len;
4204 off += len;
4205 count -= len;
4206 }
4207
4208 kref_put(&dump->kref, ipr_release_dump);
4209 return rc;
4210}
4211
4212/**
4213 * ipr_alloc_dump - Prepare for adapter dump
4214 * @ioa_cfg: ioa config struct
4215 *
4216 * Return value:
4217 * 0 on success / other on failure
4218 **/
4219static int ipr_alloc_dump(struct ipr_ioa_cfg *ioa_cfg)
4220{
4221 struct ipr_dump *dump;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004222 __be32 **ioa_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 unsigned long lock_flags = 0;
4224
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06004225 dump = kzalloc(sizeof(struct ipr_dump), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
4227 if (!dump) {
4228 ipr_err("Dump memory allocation failed\n");
4229 return -ENOMEM;
4230 }
4231
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004232 if (ioa_cfg->sis64)
4233 ioa_data = vmalloc(IPR_FMT3_MAX_NUM_DUMP_PAGES * sizeof(__be32 *));
4234 else
4235 ioa_data = vmalloc(IPR_FMT2_MAX_NUM_DUMP_PAGES * sizeof(__be32 *));
4236
4237 if (!ioa_data) {
4238 ipr_err("Dump memory allocation failed\n");
4239 kfree(dump);
4240 return -ENOMEM;
4241 }
4242
4243 dump->ioa_dump.ioa_data = ioa_data;
4244
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 kref_init(&dump->kref);
4246 dump->ioa_cfg = ioa_cfg;
4247
4248 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4249
4250 if (INACTIVE != ioa_cfg->sdt_state) {
4251 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004252 vfree(dump->ioa_dump.ioa_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 kfree(dump);
4254 return 0;
4255 }
4256
4257 ioa_cfg->dump = dump;
4258 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004259 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead && !ioa_cfg->dump_taken) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 ioa_cfg->dump_taken = 1;
4261 schedule_work(&ioa_cfg->work_q);
4262 }
4263 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 return 0;
4266}
4267
4268/**
4269 * ipr_free_dump - Free adapter dump memory
4270 * @ioa_cfg: ioa config struct
4271 *
4272 * Return value:
4273 * 0 on success / other on failure
4274 **/
4275static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg)
4276{
4277 struct ipr_dump *dump;
4278 unsigned long lock_flags = 0;
4279
4280 ENTER;
4281
4282 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4283 dump = ioa_cfg->dump;
4284 if (!dump) {
4285 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4286 return 0;
4287 }
4288
4289 ioa_cfg->dump = NULL;
4290 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4291
4292 kref_put(&dump->kref, ipr_release_dump);
4293
4294 LEAVE;
4295 return 0;
4296}
4297
4298/**
4299 * ipr_write_dump - Setup dump state of adapter
Chris Wright2c3c8be2010-05-12 18:28:57 -07004300 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08004302 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 * @buf: buffer
4304 * @off: offset
4305 * @count: buffer size
4306 *
4307 * Return value:
4308 * number of bytes printed to buffer
4309 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07004310static ssize_t ipr_write_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08004311 struct bin_attribute *bin_attr,
4312 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313{
Tony Jonesee959b02008-02-22 00:13:36 +01004314 struct device *cdev = container_of(kobj, struct device, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 struct Scsi_Host *shost = class_to_shost(cdev);
4316 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4317 int rc;
4318
4319 if (!capable(CAP_SYS_ADMIN))
4320 return -EACCES;
4321
4322 if (buf[0] == '1')
4323 rc = ipr_alloc_dump(ioa_cfg);
4324 else if (buf[0] == '0')
4325 rc = ipr_free_dump(ioa_cfg);
4326 else
4327 return -EINVAL;
4328
4329 if (rc)
4330 return rc;
4331 else
4332 return count;
4333}
4334
4335static struct bin_attribute ipr_dump_attr = {
4336 .attr = {
4337 .name = "dump",
4338 .mode = S_IRUSR | S_IWUSR,
4339 },
4340 .size = 0,
4341 .read = ipr_read_dump,
4342 .write = ipr_write_dump
4343};
4344#else
4345static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg) { return 0; };
4346#endif
4347
4348/**
4349 * ipr_change_queue_depth - Change the device's queue depth
4350 * @sdev: scsi device struct
4351 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07004352 * @reason: calling context
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 *
4354 * Return value:
4355 * actual depth set
4356 **/
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004357static int ipr_change_queue_depth(struct scsi_device *sdev, int qdepth)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358{
Brian King35a39692006-09-25 12:39:20 -05004359 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4360 struct ipr_resource_entry *res;
4361 unsigned long lock_flags = 0;
4362
4363 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4364 res = (struct ipr_resource_entry *)sdev->hostdata;
4365
4366 if (res && ipr_is_gata(res) && qdepth > IPR_MAX_CMD_PER_ATA_LUN)
4367 qdepth = IPR_MAX_CMD_PER_ATA_LUN;
4368 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4369
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004370 scsi_change_queue_depth(sdev, qdepth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 return sdev->queue_depth;
4372}
4373
4374/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 * ipr_show_adapter_handle - Show the adapter's resource handle for this device
4376 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004377 * @attr: device attribute structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 * @buf: buffer
4379 *
4380 * Return value:
4381 * number of bytes printed to buffer
4382 **/
Yani Ioannou10523b32005-05-17 06:43:37 -04004383static ssize_t ipr_show_adapter_handle(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384{
4385 struct scsi_device *sdev = to_scsi_device(dev);
4386 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4387 struct ipr_resource_entry *res;
4388 unsigned long lock_flags = 0;
4389 ssize_t len = -ENXIO;
4390
4391 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4392 res = (struct ipr_resource_entry *)sdev->hostdata;
4393 if (res)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004394 len = snprintf(buf, PAGE_SIZE, "%08X\n", res->res_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4396 return len;
4397}
4398
4399static struct device_attribute ipr_adapter_handle_attr = {
4400 .attr = {
4401 .name = "adapter_handle",
4402 .mode = S_IRUSR,
4403 },
4404 .show = ipr_show_adapter_handle
4405};
4406
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004407/**
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004408 * ipr_show_resource_path - Show the resource path or the resource address for
4409 * this device.
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004410 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004411 * @attr: device attribute structure
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004412 * @buf: buffer
4413 *
4414 * Return value:
4415 * number of bytes printed to buffer
4416 **/
4417static ssize_t ipr_show_resource_path(struct device *dev, struct device_attribute *attr, char *buf)
4418{
4419 struct scsi_device *sdev = to_scsi_device(dev);
4420 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4421 struct ipr_resource_entry *res;
4422 unsigned long lock_flags = 0;
4423 ssize_t len = -ENXIO;
4424 char buffer[IPR_MAX_RES_PATH_LENGTH];
4425
4426 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4427 res = (struct ipr_resource_entry *)sdev->hostdata;
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004428 if (res && ioa_cfg->sis64)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004429 len = snprintf(buf, PAGE_SIZE, "%s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06004430 __ipr_format_res_path(res->res_path, buffer,
4431 sizeof(buffer)));
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004432 else if (res)
4433 len = snprintf(buf, PAGE_SIZE, "%d:%d:%d:%d\n", ioa_cfg->host->host_no,
4434 res->bus, res->target, res->lun);
4435
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004436 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4437 return len;
4438}
4439
4440static struct device_attribute ipr_resource_path_attr = {
4441 .attr = {
4442 .name = "resource_path",
Wayne Boyer75576bb2010-07-14 10:50:14 -07004443 .mode = S_IRUGO,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004444 },
4445 .show = ipr_show_resource_path
4446};
4447
Wayne Boyer75576bb2010-07-14 10:50:14 -07004448/**
Wayne Boyer46d74562010-08-11 07:15:17 -07004449 * ipr_show_device_id - Show the device_id for this device.
4450 * @dev: device struct
4451 * @attr: device attribute structure
4452 * @buf: buffer
4453 *
4454 * Return value:
4455 * number of bytes printed to buffer
4456 **/
4457static ssize_t ipr_show_device_id(struct device *dev, struct device_attribute *attr, char *buf)
4458{
4459 struct scsi_device *sdev = to_scsi_device(dev);
4460 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4461 struct ipr_resource_entry *res;
4462 unsigned long lock_flags = 0;
4463 ssize_t len = -ENXIO;
4464
4465 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4466 res = (struct ipr_resource_entry *)sdev->hostdata;
4467 if (res && ioa_cfg->sis64)
Wen Xiongbb8647e2015-06-11 20:45:18 -05004468 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", be64_to_cpu(res->dev_id));
Wayne Boyer46d74562010-08-11 07:15:17 -07004469 else if (res)
4470 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->lun_wwn);
4471
4472 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4473 return len;
4474}
4475
4476static struct device_attribute ipr_device_id_attr = {
4477 .attr = {
4478 .name = "device_id",
4479 .mode = S_IRUGO,
4480 },
4481 .show = ipr_show_device_id
4482};
4483
4484/**
Wayne Boyer75576bb2010-07-14 10:50:14 -07004485 * ipr_show_resource_type - Show the resource type for this device.
4486 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004487 * @attr: device attribute structure
Wayne Boyer75576bb2010-07-14 10:50:14 -07004488 * @buf: buffer
4489 *
4490 * Return value:
4491 * number of bytes printed to buffer
4492 **/
4493static ssize_t ipr_show_resource_type(struct device *dev, struct device_attribute *attr, char *buf)
4494{
4495 struct scsi_device *sdev = to_scsi_device(dev);
4496 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4497 struct ipr_resource_entry *res;
4498 unsigned long lock_flags = 0;
4499 ssize_t len = -ENXIO;
4500
4501 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4502 res = (struct ipr_resource_entry *)sdev->hostdata;
4503
4504 if (res)
4505 len = snprintf(buf, PAGE_SIZE, "%x\n", res->type);
4506
4507 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4508 return len;
4509}
4510
4511static struct device_attribute ipr_resource_type_attr = {
4512 .attr = {
4513 .name = "resource_type",
4514 .mode = S_IRUGO,
4515 },
4516 .show = ipr_show_resource_type
4517};
4518
Wen Xiongf8ee25d2015-03-26 11:23:58 -05004519/**
4520 * ipr_show_raw_mode - Show the adapter's raw mode
4521 * @dev: class device struct
4522 * @buf: buffer
4523 *
4524 * Return value:
4525 * number of bytes printed to buffer
4526 **/
4527static ssize_t ipr_show_raw_mode(struct device *dev,
4528 struct device_attribute *attr, char *buf)
4529{
4530 struct scsi_device *sdev = to_scsi_device(dev);
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 = 0;
4534 ssize_t len;
4535
4536 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4537 res = (struct ipr_resource_entry *)sdev->hostdata;
4538 if (res)
4539 len = snprintf(buf, PAGE_SIZE, "%d\n", res->raw_mode);
4540 else
4541 len = -ENXIO;
4542 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4543 return len;
4544}
4545
4546/**
4547 * ipr_store_raw_mode - Change the adapter's raw mode
4548 * @dev: class device struct
4549 * @buf: buffer
4550 *
4551 * Return value:
4552 * number of bytes printed to buffer
4553 **/
4554static ssize_t ipr_store_raw_mode(struct device *dev,
4555 struct device_attribute *attr,
4556 const char *buf, size_t count)
4557{
4558 struct scsi_device *sdev = to_scsi_device(dev);
4559 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4560 struct ipr_resource_entry *res;
4561 unsigned long lock_flags = 0;
4562 ssize_t len;
4563
4564 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4565 res = (struct ipr_resource_entry *)sdev->hostdata;
4566 if (res) {
Gabriel Krisman Bertazie35d7f272015-08-19 11:47:06 -03004567 if (ipr_is_af_dasd_device(res)) {
Wen Xiongf8ee25d2015-03-26 11:23:58 -05004568 res->raw_mode = simple_strtoul(buf, NULL, 10);
4569 len = strlen(buf);
4570 if (res->sdev)
4571 sdev_printk(KERN_INFO, res->sdev, "raw mode is %s\n",
4572 res->raw_mode ? "enabled" : "disabled");
4573 } else
4574 len = -EINVAL;
4575 } else
4576 len = -ENXIO;
4577 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4578 return len;
4579}
4580
4581static struct device_attribute ipr_raw_mode_attr = {
4582 .attr = {
4583 .name = "raw_mode",
4584 .mode = S_IRUGO | S_IWUSR,
4585 },
4586 .show = ipr_show_raw_mode,
4587 .store = ipr_store_raw_mode
4588};
4589
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590static struct device_attribute *ipr_dev_attrs[] = {
4591 &ipr_adapter_handle_attr,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004592 &ipr_resource_path_attr,
Wayne Boyer46d74562010-08-11 07:15:17 -07004593 &ipr_device_id_attr,
Wayne Boyer75576bb2010-07-14 10:50:14 -07004594 &ipr_resource_type_attr,
Wen Xiongf8ee25d2015-03-26 11:23:58 -05004595 &ipr_raw_mode_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 NULL,
4597};
4598
4599/**
4600 * ipr_biosparam - Return the HSC mapping
4601 * @sdev: scsi device struct
4602 * @block_device: block device pointer
4603 * @capacity: capacity of the device
4604 * @parm: Array containing returned HSC values.
4605 *
4606 * This function generates the HSC parms that fdisk uses.
4607 * We want to make sure we return something that places partitions
4608 * on 4k boundaries for best performance with the IOA.
4609 *
4610 * Return value:
4611 * 0 on success
4612 **/
4613static int ipr_biosparam(struct scsi_device *sdev,
4614 struct block_device *block_device,
4615 sector_t capacity, int *parm)
4616{
4617 int heads, sectors;
4618 sector_t cylinders;
4619
4620 heads = 128;
4621 sectors = 32;
4622
4623 cylinders = capacity;
4624 sector_div(cylinders, (128 * 32));
4625
4626 /* return result */
4627 parm[0] = heads;
4628 parm[1] = sectors;
4629 parm[2] = cylinders;
4630
4631 return 0;
4632}
4633
4634/**
Brian King35a39692006-09-25 12:39:20 -05004635 * ipr_find_starget - Find target based on bus/target.
4636 * @starget: scsi target struct
4637 *
4638 * Return value:
4639 * resource entry pointer if found / NULL if not found
4640 **/
4641static struct ipr_resource_entry *ipr_find_starget(struct scsi_target *starget)
4642{
4643 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4644 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4645 struct ipr_resource_entry *res;
4646
4647 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004648 if ((res->bus == starget->channel) &&
Brian King0ee1d712012-03-14 21:20:06 -05004649 (res->target == starget->id)) {
Brian King35a39692006-09-25 12:39:20 -05004650 return res;
4651 }
4652 }
4653
4654 return NULL;
4655}
4656
4657static struct ata_port_info sata_port_info;
4658
4659/**
4660 * ipr_target_alloc - Prepare for commands to a SCSI target
4661 * @starget: scsi target struct
4662 *
4663 * If the device is a SATA device, this function allocates an
4664 * ATA port with libata, else it does nothing.
4665 *
4666 * Return value:
4667 * 0 on success / non-0 on failure
4668 **/
4669static int ipr_target_alloc(struct scsi_target *starget)
4670{
4671 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4672 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4673 struct ipr_sata_port *sata_port;
4674 struct ata_port *ap;
4675 struct ipr_resource_entry *res;
4676 unsigned long lock_flags;
4677
4678 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4679 res = ipr_find_starget(starget);
4680 starget->hostdata = NULL;
4681
4682 if (res && ipr_is_gata(res)) {
4683 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4684 sata_port = kzalloc(sizeof(*sata_port), GFP_KERNEL);
4685 if (!sata_port)
4686 return -ENOMEM;
4687
4688 ap = ata_sas_port_alloc(&ioa_cfg->ata_host, &sata_port_info, shost);
4689 if (ap) {
4690 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4691 sata_port->ioa_cfg = ioa_cfg;
4692 sata_port->ap = ap;
4693 sata_port->res = res;
4694
4695 res->sata_port = sata_port;
4696 ap->private_data = sata_port;
4697 starget->hostdata = sata_port;
4698 } else {
4699 kfree(sata_port);
4700 return -ENOMEM;
4701 }
4702 }
4703 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4704
4705 return 0;
4706}
4707
4708/**
4709 * ipr_target_destroy - Destroy a SCSI target
4710 * @starget: scsi target struct
4711 *
4712 * If the device was a SATA device, this function frees the libata
4713 * ATA port, else it does nothing.
4714 *
4715 **/
4716static void ipr_target_destroy(struct scsi_target *starget)
4717{
4718 struct ipr_sata_port *sata_port = starget->hostdata;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004719 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4720 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4721
4722 if (ioa_cfg->sis64) {
Brian King0ee1d712012-03-14 21:20:06 -05004723 if (!ipr_find_starget(starget)) {
4724 if (starget->channel == IPR_ARRAY_VIRTUAL_BUS)
4725 clear_bit(starget->id, ioa_cfg->array_ids);
4726 else if (starget->channel == IPR_VSET_VIRTUAL_BUS)
4727 clear_bit(starget->id, ioa_cfg->vset_ids);
4728 else if (starget->channel == 0)
4729 clear_bit(starget->id, ioa_cfg->target_ids);
4730 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004731 }
Brian King35a39692006-09-25 12:39:20 -05004732
4733 if (sata_port) {
4734 starget->hostdata = NULL;
4735 ata_sas_port_destroy(sata_port->ap);
4736 kfree(sata_port);
4737 }
4738}
4739
4740/**
4741 * ipr_find_sdev - Find device based on bus/target/lun.
4742 * @sdev: scsi device struct
4743 *
4744 * Return value:
4745 * resource entry pointer if found / NULL if not found
4746 **/
4747static struct ipr_resource_entry *ipr_find_sdev(struct scsi_device *sdev)
4748{
4749 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4750 struct ipr_resource_entry *res;
4751
4752 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004753 if ((res->bus == sdev->channel) &&
4754 (res->target == sdev->id) &&
4755 (res->lun == sdev->lun))
Brian King35a39692006-09-25 12:39:20 -05004756 return res;
4757 }
4758
4759 return NULL;
4760}
4761
4762/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 * ipr_slave_destroy - Unconfigure a SCSI device
4764 * @sdev: scsi device struct
4765 *
4766 * Return value:
4767 * nothing
4768 **/
4769static void ipr_slave_destroy(struct scsi_device *sdev)
4770{
4771 struct ipr_resource_entry *res;
4772 struct ipr_ioa_cfg *ioa_cfg;
4773 unsigned long lock_flags = 0;
4774
4775 ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4776
4777 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4778 res = (struct ipr_resource_entry *) sdev->hostdata;
4779 if (res) {
Brian King35a39692006-09-25 12:39:20 -05004780 if (res->sata_port)
Tejun Heo3e4ec342010-05-10 21:41:30 +02004781 res->sata_port->ap->link.device[0].class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 sdev->hostdata = NULL;
4783 res->sdev = NULL;
Brian King35a39692006-09-25 12:39:20 -05004784 res->sata_port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 }
4786 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4787}
4788
4789/**
4790 * ipr_slave_configure - Configure a SCSI device
4791 * @sdev: scsi device struct
4792 *
4793 * This function configures the specified scsi device.
4794 *
4795 * Return value:
4796 * 0 on success
4797 **/
4798static int ipr_slave_configure(struct scsi_device *sdev)
4799{
4800 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4801 struct ipr_resource_entry *res;
Brian Kingdd406ef2009-04-22 08:58:02 -05004802 struct ata_port *ap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 unsigned long lock_flags = 0;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004804 char buffer[IPR_MAX_RES_PATH_LENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
4806 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4807 res = sdev->hostdata;
4808 if (res) {
4809 if (ipr_is_af_dasd_device(res))
4810 sdev->type = TYPE_RAID;
brking@us.ibm.com0726ce22005-11-01 17:01:01 -06004811 if (ipr_is_af_dasd_device(res) || ipr_is_ioa_resource(res)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 sdev->scsi_level = 4;
brking@us.ibm.com0726ce22005-11-01 17:01:01 -06004813 sdev->no_uld_attach = 1;
4814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 if (ipr_is_vset_device(res)) {
Brian King60654e22014-12-02 12:47:46 -06004816 sdev->scsi_level = SCSI_SPC_3;
Jens Axboe242f9dc2008-09-14 05:55:09 -07004817 blk_queue_rq_timeout(sdev->request_queue,
4818 IPR_VSET_RW_TIMEOUT);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05004819 blk_queue_max_hw_sectors(sdev->request_queue, IPR_VSET_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 }
Brian Kingdd406ef2009-04-22 08:58:02 -05004821 if (ipr_is_gata(res) && res->sata_port)
4822 ap = res->sata_port->ap;
4823 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4824
4825 if (ap) {
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004826 scsi_change_queue_depth(sdev, IPR_MAX_CMD_PER_ATA_LUN);
Brian Kingdd406ef2009-04-22 08:58:02 -05004827 ata_sas_slave_configure(sdev, ap);
Christoph Hellwigc8b09f62014-11-03 20:15:14 +01004828 }
4829
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004830 if (ioa_cfg->sis64)
4831 sdev_printk(KERN_INFO, sdev, "Resource path: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06004832 ipr_format_res_path(ioa_cfg,
4833 res->res_path, buffer, sizeof(buffer)));
Brian Kingdd406ef2009-04-22 08:58:02 -05004834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 }
4836 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4837 return 0;
4838}
4839
4840/**
Brian King35a39692006-09-25 12:39:20 -05004841 * ipr_ata_slave_alloc - Prepare for commands to a SATA device
4842 * @sdev: scsi device struct
4843 *
4844 * This function initializes an ATA port so that future commands
4845 * sent through queuecommand will work.
4846 *
4847 * Return value:
4848 * 0 on success
4849 **/
4850static int ipr_ata_slave_alloc(struct scsi_device *sdev)
4851{
4852 struct ipr_sata_port *sata_port = NULL;
4853 int rc = -ENXIO;
4854
4855 ENTER;
4856 if (sdev->sdev_target)
4857 sata_port = sdev->sdev_target->hostdata;
Dan Williamsb2024452012-03-21 21:09:07 -07004858 if (sata_port) {
Brian King35a39692006-09-25 12:39:20 -05004859 rc = ata_sas_port_init(sata_port->ap);
Dan Williamsb2024452012-03-21 21:09:07 -07004860 if (rc == 0)
4861 rc = ata_sas_sync_probe(sata_port->ap);
4862 }
4863
Brian King35a39692006-09-25 12:39:20 -05004864 if (rc)
4865 ipr_slave_destroy(sdev);
4866
4867 LEAVE;
4868 return rc;
4869}
4870
4871/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 * ipr_slave_alloc - Prepare for commands to a device.
4873 * @sdev: scsi device struct
4874 *
4875 * This function saves a pointer to the resource entry
4876 * in the scsi device struct if the device exists. We
4877 * can then use this pointer in ipr_queuecommand when
4878 * handling new commands.
4879 *
4880 * Return value:
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004881 * 0 on success / -ENXIO if device does not exist
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 **/
4883static int ipr_slave_alloc(struct scsi_device *sdev)
4884{
4885 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4886 struct ipr_resource_entry *res;
4887 unsigned long lock_flags;
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004888 int rc = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
4890 sdev->hostdata = NULL;
4891
4892 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4893
Brian King35a39692006-09-25 12:39:20 -05004894 res = ipr_find_sdev(sdev);
4895 if (res) {
4896 res->sdev = sdev;
4897 res->add_to_ml = 0;
4898 res->in_erp = 0;
4899 sdev->hostdata = res;
4900 if (!ipr_is_naca_model(res))
4901 res->needs_sync_complete = 1;
4902 rc = 0;
4903 if (ipr_is_gata(res)) {
4904 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4905 return ipr_ata_slave_alloc(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 }
4907 }
4908
4909 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4910
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004911 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912}
4913
Brian King6cdb0812014-10-30 17:27:10 -05004914/**
4915 * ipr_match_lun - Match function for specified LUN
4916 * @ipr_cmd: ipr command struct
4917 * @device: device to match (sdev)
4918 *
4919 * Returns:
4920 * 1 if command matches sdev / 0 if command does not match sdev
4921 **/
4922static int ipr_match_lun(struct ipr_cmnd *ipr_cmd, void *device)
4923{
4924 if (ipr_cmd->scsi_cmd && ipr_cmd->scsi_cmd->device == device)
4925 return 1;
4926 return 0;
4927}
4928
4929/**
4930 * ipr_wait_for_ops - Wait for matching commands to complete
4931 * @ipr_cmd: ipr command struct
4932 * @device: device to match (sdev)
4933 * @match: match function to use
4934 *
4935 * Returns:
4936 * SUCCESS / FAILED
4937 **/
4938static int ipr_wait_for_ops(struct ipr_ioa_cfg *ioa_cfg, void *device,
4939 int (*match)(struct ipr_cmnd *, void *))
4940{
4941 struct ipr_cmnd *ipr_cmd;
4942 int wait;
4943 unsigned long flags;
4944 struct ipr_hrr_queue *hrrq;
4945 signed long timeout = IPR_ABORT_TASK_TIMEOUT;
4946 DECLARE_COMPLETION_ONSTACK(comp);
4947
4948 ENTER;
4949 do {
4950 wait = 0;
4951
4952 for_each_hrrq(hrrq, ioa_cfg) {
4953 spin_lock_irqsave(hrrq->lock, flags);
4954 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
4955 if (match(ipr_cmd, device)) {
4956 ipr_cmd->eh_comp = &comp;
4957 wait++;
4958 }
4959 }
4960 spin_unlock_irqrestore(hrrq->lock, flags);
4961 }
4962
4963 if (wait) {
4964 timeout = wait_for_completion_timeout(&comp, timeout);
4965
4966 if (!timeout) {
4967 wait = 0;
4968
4969 for_each_hrrq(hrrq, ioa_cfg) {
4970 spin_lock_irqsave(hrrq->lock, flags);
4971 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
4972 if (match(ipr_cmd, device)) {
4973 ipr_cmd->eh_comp = NULL;
4974 wait++;
4975 }
4976 }
4977 spin_unlock_irqrestore(hrrq->lock, flags);
4978 }
4979
4980 if (wait)
4981 dev_err(&ioa_cfg->pdev->dev, "Timed out waiting for aborted commands\n");
4982 LEAVE;
4983 return wait ? FAILED : SUCCESS;
4984 }
4985 }
4986 } while (wait);
4987
4988 LEAVE;
4989 return SUCCESS;
4990}
4991
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004992static int ipr_eh_host_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993{
4994 struct ipr_ioa_cfg *ioa_cfg;
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004995 unsigned long lock_flags = 0;
4996 int rc = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
4998 ENTER;
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004999 ioa_cfg = (struct ipr_ioa_cfg *) cmd->device->host->hostdata;
5000 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05005002 if (!ioa_cfg->in_reset_reload && !ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead) {
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06005003 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_ABBREV);
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02005004 dev_err(&ioa_cfg->pdev->dev,
5005 "Adapter being reset as a result of error recovery.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02005007 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5008 ioa_cfg->sdt_state = GET_DUMP;
5009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06005011 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5012 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
5013 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06005015 /* If we got hit with a host reset while we were already resetting
5016 the adapter for some reason, and the reset failed. */
5017 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead) {
5018 ipr_trace;
5019 rc = FAILED;
5020 }
5021
5022 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 LEAVE;
5024 return rc;
5025}
5026
5027/**
Brian Kingc6513092006-03-29 09:37:43 -06005028 * ipr_device_reset - Reset the device
5029 * @ioa_cfg: ioa config struct
5030 * @res: resource entry struct
5031 *
5032 * This function issues a device reset to the affected device.
5033 * If the device is a SCSI device, a LUN reset will be sent
5034 * to the device first. If that does not work, a target reset
Brian King35a39692006-09-25 12:39:20 -05005035 * will be sent. If the device is a SATA device, a PHY reset will
5036 * be sent.
Brian Kingc6513092006-03-29 09:37:43 -06005037 *
5038 * Return value:
5039 * 0 on success / non-zero on failure
5040 **/
5041static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
5042 struct ipr_resource_entry *res)
5043{
5044 struct ipr_cmnd *ipr_cmd;
5045 struct ipr_ioarcb *ioarcb;
5046 struct ipr_cmd_pkt *cmd_pkt;
Brian King35a39692006-09-25 12:39:20 -05005047 struct ipr_ioarcb_ata_regs *regs;
Brian Kingc6513092006-03-29 09:37:43 -06005048 u32 ioasc;
5049
5050 ENTER;
5051 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
5052 ioarcb = &ipr_cmd->ioarcb;
5053 cmd_pkt = &ioarcb->cmd_pkt;
Wayne Boyera32c0552010-02-19 13:23:36 -08005054
5055 if (ipr_cmd->ioa_cfg->sis64) {
5056 regs = &ipr_cmd->i.ata_ioadl.regs;
5057 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
5058 } else
5059 regs = &ioarcb->u.add_data.u.regs;
Brian Kingc6513092006-03-29 09:37:43 -06005060
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005061 ioarcb->res_handle = res->res_handle;
Brian Kingc6513092006-03-29 09:37:43 -06005062 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5063 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
Brian King35a39692006-09-25 12:39:20 -05005064 if (ipr_is_gata(res)) {
5065 cmd_pkt->cdb[2] = IPR_ATA_PHY_RESET;
Wayne Boyera32c0552010-02-19 13:23:36 -08005066 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(regs->flags));
Brian King35a39692006-09-25 12:39:20 -05005067 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
5068 }
Brian Kingc6513092006-03-29 09:37:43 -06005069
5070 ipr_send_blocking_cmd(ipr_cmd, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
Wayne Boyer96d21f02010-05-10 09:13:27 -07005071 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005072 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Wayne Boyer96d21f02010-05-10 09:13:27 -07005073 if (ipr_is_gata(res) && res->sata_port && ioasc != IPR_IOASC_IOA_WAS_RESET) {
5074 if (ipr_cmd->ioa_cfg->sis64)
5075 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
5076 sizeof(struct ipr_ioasa_gata));
5077 else
5078 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
5079 sizeof(struct ipr_ioasa_gata));
5080 }
Brian Kingc6513092006-03-29 09:37:43 -06005081
5082 LEAVE;
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005083 return IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0;
Brian Kingc6513092006-03-29 09:37:43 -06005084}
5085
5086/**
Brian King35a39692006-09-25 12:39:20 -05005087 * ipr_sata_reset - Reset the SATA port
Tejun Heocc0680a2007-08-06 18:36:23 +09005088 * @link: SATA link to reset
Brian King35a39692006-09-25 12:39:20 -05005089 * @classes: class of the attached device
5090 *
Tejun Heocc0680a2007-08-06 18:36:23 +09005091 * This function issues a SATA phy reset to the affected ATA link.
Brian King35a39692006-09-25 12:39:20 -05005092 *
5093 * Return value:
5094 * 0 on success / non-zero on failure
5095 **/
Tejun Heocc0680a2007-08-06 18:36:23 +09005096static int ipr_sata_reset(struct ata_link *link, unsigned int *classes,
Andrew Morton120bda32007-03-26 02:17:43 -07005097 unsigned long deadline)
Brian King35a39692006-09-25 12:39:20 -05005098{
Tejun Heocc0680a2007-08-06 18:36:23 +09005099 struct ipr_sata_port *sata_port = link->ap->private_data;
Brian King35a39692006-09-25 12:39:20 -05005100 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
5101 struct ipr_resource_entry *res;
5102 unsigned long lock_flags = 0;
5103 int rc = -ENXIO;
5104
5105 ENTER;
5106 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005107 while (ioa_cfg->in_reset_reload) {
Brian King73d98ff2006-11-21 10:27:58 -06005108 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5109 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
5110 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
5111 }
5112
Brian King35a39692006-09-25 12:39:20 -05005113 res = sata_port->res;
5114 if (res) {
5115 rc = ipr_device_reset(ioa_cfg, res);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005116 *classes = res->ata_class;
Brian King35a39692006-09-25 12:39:20 -05005117 }
5118
5119 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5120 LEAVE;
5121 return rc;
5122}
5123
5124/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 * ipr_eh_dev_reset - Reset the device
5126 * @scsi_cmd: scsi command struct
5127 *
5128 * This function issues a device reset to the affected device.
5129 * A LUN reset will be sent to the device first. If that does
5130 * not work, a target reset will be sent.
5131 *
5132 * Return value:
5133 * SUCCESS / FAILED
5134 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005135static int __ipr_eh_dev_reset(struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136{
5137 struct ipr_cmnd *ipr_cmd;
5138 struct ipr_ioa_cfg *ioa_cfg;
5139 struct ipr_resource_entry *res;
Brian King35a39692006-09-25 12:39:20 -05005140 struct ata_port *ap;
5141 int rc = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005142 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
5144 ENTER;
5145 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
5146 res = scsi_cmd->device->hostdata;
5147
brking@us.ibm.comeeb883072005-11-01 17:02:29 -06005148 if (!res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 return FAILED;
5150
5151 /*
5152 * If we are currently going through reset/reload, return failed. This will force the
5153 * mid-layer to call ipr_eh_host_reset, which will then go to sleep and wait for the
5154 * reset to complete
5155 */
5156 if (ioa_cfg->in_reset_reload)
5157 return FAILED;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005158 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 return FAILED;
5160
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005161 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005162 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005163 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
5164 if (ipr_cmd->ioarcb.res_handle == res->res_handle) {
5165 if (ipr_cmd->scsi_cmd)
5166 ipr_cmd->done = ipr_scsi_eh_done;
5167 if (ipr_cmd->qc)
5168 ipr_cmd->done = ipr_sata_eh_done;
5169 if (ipr_cmd->qc &&
5170 !(ipr_cmd->qc->flags & ATA_QCFLAG_FAILED)) {
5171 ipr_cmd->qc->err_mask |= AC_ERR_TIMEOUT;
5172 ipr_cmd->qc->flags |= ATA_QCFLAG_FAILED;
5173 }
Brian King7402ece2006-11-21 10:28:23 -06005174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005176 spin_unlock(&hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 res->resetting_device = 1;
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005179 scmd_printk(KERN_ERR, scsi_cmd, "Resetting device\n");
Brian King35a39692006-09-25 12:39:20 -05005180
5181 if (ipr_is_gata(res) && res->sata_port) {
5182 ap = res->sata_port->ap;
5183 spin_unlock_irq(scsi_cmd->device->host->host_lock);
Tejun Heoa1efdab2008-03-25 12:22:50 +09005184 ata_std_error_handler(ap);
Brian King35a39692006-09-25 12:39:20 -05005185 spin_lock_irq(scsi_cmd->device->host->host_lock);
Brian King5af23d22007-05-09 15:36:35 -05005186
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005187 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005188 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005189 list_for_each_entry(ipr_cmd,
5190 &hrrq->hrrq_pending_q, queue) {
5191 if (ipr_cmd->ioarcb.res_handle ==
5192 res->res_handle) {
5193 rc = -EIO;
5194 break;
5195 }
Brian King5af23d22007-05-09 15:36:35 -05005196 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005197 spin_unlock(&hrrq->_lock);
Brian King5af23d22007-05-09 15:36:35 -05005198 }
Brian King35a39692006-09-25 12:39:20 -05005199 } else
5200 rc = ipr_device_reset(ioa_cfg, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 res->resetting_device = 0;
Wendy Xiong0b1f8d42014-01-21 12:16:39 -06005202 res->reset_occurred = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204 LEAVE;
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005205 return rc ? FAILED : SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206}
5207
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005208static int ipr_eh_dev_reset(struct scsi_cmnd *cmd)
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04005209{
5210 int rc;
Brian King6cdb0812014-10-30 17:27:10 -05005211 struct ipr_ioa_cfg *ioa_cfg;
5212
5213 ioa_cfg = (struct ipr_ioa_cfg *) cmd->device->host->hostdata;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04005214
5215 spin_lock_irq(cmd->device->host->host_lock);
5216 rc = __ipr_eh_dev_reset(cmd);
5217 spin_unlock_irq(cmd->device->host->host_lock);
5218
Brian King6cdb0812014-10-30 17:27:10 -05005219 if (rc == SUCCESS)
5220 rc = ipr_wait_for_ops(ioa_cfg, cmd->device, ipr_match_lun);
5221
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04005222 return rc;
5223}
5224
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225/**
5226 * ipr_bus_reset_done - Op done function for bus reset.
5227 * @ipr_cmd: ipr command struct
5228 *
5229 * This function is the op done function for a bus reset
5230 *
5231 * Return value:
5232 * none
5233 **/
5234static void ipr_bus_reset_done(struct ipr_cmnd *ipr_cmd)
5235{
5236 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
5237 struct ipr_resource_entry *res;
5238
5239 ENTER;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005240 if (!ioa_cfg->sis64)
5241 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
5242 if (res->res_handle == ipr_cmd->ioarcb.res_handle) {
5243 scsi_report_bus_reset(ioa_cfg->host, res->bus);
5244 break;
5245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
5248 /*
5249 * If abort has not completed, indicate the reset has, else call the
5250 * abort's done function to wake the sleeping eh thread
5251 */
5252 if (ipr_cmd->sibling->sibling)
5253 ipr_cmd->sibling->sibling = NULL;
5254 else
5255 ipr_cmd->sibling->done(ipr_cmd->sibling);
5256
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005257 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 LEAVE;
5259}
5260
5261/**
5262 * ipr_abort_timeout - An abort task has timed out
5263 * @ipr_cmd: ipr command struct
5264 *
5265 * This function handles when an abort task times out. If this
5266 * happens we issue a bus reset since we have resources tied
5267 * up that must be freed before returning to the midlayer.
5268 *
5269 * Return value:
5270 * none
5271 **/
5272static void ipr_abort_timeout(struct ipr_cmnd *ipr_cmd)
5273{
5274 struct ipr_cmnd *reset_cmd;
5275 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
5276 struct ipr_cmd_pkt *cmd_pkt;
5277 unsigned long lock_flags = 0;
5278
5279 ENTER;
5280 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
5281 if (ipr_cmd->completion.done || ioa_cfg->in_reset_reload) {
5282 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5283 return;
5284 }
5285
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005286 sdev_printk(KERN_ERR, ipr_cmd->u.sdev, "Abort timed out. Resetting bus.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 reset_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
5288 ipr_cmd->sibling = reset_cmd;
5289 reset_cmd->sibling = ipr_cmd;
5290 reset_cmd->ioarcb.res_handle = ipr_cmd->ioarcb.res_handle;
5291 cmd_pkt = &reset_cmd->ioarcb.cmd_pkt;
5292 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5293 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
5294 cmd_pkt->cdb[2] = IPR_RESET_TYPE_SELECT | IPR_BUS_RESET;
5295
5296 ipr_do_req(reset_cmd, ipr_bus_reset_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
5297 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5298 LEAVE;
5299}
5300
5301/**
5302 * ipr_cancel_op - Cancel specified op
5303 * @scsi_cmd: scsi command struct
5304 *
5305 * This function cancels specified op.
5306 *
5307 * Return value:
5308 * SUCCESS / FAILED
5309 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005310static int ipr_cancel_op(struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311{
5312 struct ipr_cmnd *ipr_cmd;
5313 struct ipr_ioa_cfg *ioa_cfg;
5314 struct ipr_resource_entry *res;
5315 struct ipr_cmd_pkt *cmd_pkt;
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02005316 u32 ioasc, int_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317 int op_found = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005318 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319
5320 ENTER;
5321 ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
5322 res = scsi_cmd->device->hostdata;
5323
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005324 /* If we are currently going through reset/reload, return failed.
5325 * This will force the mid-layer to call ipr_eh_host_reset,
5326 * which will then go to sleep and wait for the reset to complete
5327 */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005328 if (ioa_cfg->in_reset_reload ||
5329 ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005330 return FAILED;
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02005331 if (!res)
5332 return FAILED;
5333
5334 /*
5335 * If we are aborting a timed out op, chances are that the timeout was caused
5336 * by a still not detected EEH error. In such cases, reading a register will
5337 * trigger the EEH recovery infrastructure.
5338 */
5339 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
5340
5341 if (!ipr_is_gscsi(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 return FAILED;
5343
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005344 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005345 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005346 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
5347 if (ipr_cmd->scsi_cmd == scsi_cmd) {
5348 ipr_cmd->done = ipr_scsi_eh_done;
5349 op_found = 1;
5350 break;
5351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005353 spin_unlock(&hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 }
5355
5356 if (!op_found)
5357 return SUCCESS;
5358
5359 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005360 ipr_cmd->ioarcb.res_handle = res->res_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
5362 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5363 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
5364 ipr_cmd->u.sdev = scsi_cmd->device;
5365
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005366 scmd_printk(KERN_ERR, scsi_cmd, "Aborting command: %02X\n",
5367 scsi_cmd->cmnd[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368 ipr_send_blocking_cmd(ipr_cmd, ipr_abort_timeout, IPR_CANCEL_ALL_TIMEOUT);
Wayne Boyer96d21f02010-05-10 09:13:27 -07005369 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370
5371 /*
5372 * If the abort task timed out and we sent a bus reset, we will get
5373 * one the following responses to the abort
5374 */
5375 if (ioasc == IPR_IOASC_BUS_WAS_RESET || ioasc == IPR_IOASC_SYNC_REQUIRED) {
5376 ioasc = 0;
5377 ipr_trace;
5378 }
5379
Kleber Sacilotto de Souzac4ee22a2013-03-14 13:52:23 -05005380 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005381 if (!ipr_is_naca_model(res))
5382 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
5384 LEAVE;
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005385 return IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386}
5387
5388/**
5389 * ipr_eh_abort - Abort a single op
5390 * @scsi_cmd: scsi command struct
5391 *
5392 * Return value:
Brian Kingf688f962014-12-02 12:47:37 -06005393 * 0 if scan in progress / 1 if scan is complete
5394 **/
5395static int ipr_scan_finished(struct Scsi_Host *shost, unsigned long elapsed_time)
5396{
5397 unsigned long lock_flags;
5398 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
5399 int rc = 0;
5400
5401 spin_lock_irqsave(shost->host_lock, lock_flags);
5402 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead || ioa_cfg->scan_done)
5403 rc = 1;
5404 if ((elapsed_time/HZ) > (ioa_cfg->transop_timeout * 2))
5405 rc = 1;
5406 spin_unlock_irqrestore(shost->host_lock, lock_flags);
5407 return rc;
5408}
5409
5410/**
5411 * ipr_eh_host_reset - Reset the host adapter
5412 * @scsi_cmd: scsi command struct
5413 *
5414 * Return value:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 * SUCCESS / FAILED
5416 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005417static int ipr_eh_abort(struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418{
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005419 unsigned long flags;
5420 int rc;
Brian King6cdb0812014-10-30 17:27:10 -05005421 struct ipr_ioa_cfg *ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
5423 ENTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
Brian King6cdb0812014-10-30 17:27:10 -05005425 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
5426
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005427 spin_lock_irqsave(scsi_cmd->device->host->host_lock, flags);
5428 rc = ipr_cancel_op(scsi_cmd);
5429 spin_unlock_irqrestore(scsi_cmd->device->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
Brian King6cdb0812014-10-30 17:27:10 -05005431 if (rc == SUCCESS)
5432 rc = ipr_wait_for_ops(ioa_cfg, scsi_cmd->device, ipr_match_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 LEAVE;
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005434 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435}
5436
5437/**
5438 * ipr_handle_other_interrupt - Handle "other" interrupts
5439 * @ioa_cfg: ioa config struct
Wayne Boyer634651f2010-08-27 14:45:07 -07005440 * @int_reg: interrupt register
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 *
5442 * Return value:
5443 * IRQ_NONE / IRQ_HANDLED
5444 **/
Wayne Boyer634651f2010-08-27 14:45:07 -07005445static irqreturn_t ipr_handle_other_interrupt(struct ipr_ioa_cfg *ioa_cfg,
Wayne Boyer630ad8312011-04-07 12:12:30 -07005446 u32 int_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447{
5448 irqreturn_t rc = IRQ_HANDLED;
Wayne Boyer7dacb642011-04-12 10:29:02 -07005449 u32 int_mask_reg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005450
Wayne Boyer7dacb642011-04-12 10:29:02 -07005451 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
5452 int_reg &= ~int_mask_reg;
5453
5454 /* If an interrupt on the adapter did not occur, ignore it.
5455 * Or in the case of SIS 64, check for a stage change interrupt.
5456 */
5457 if ((int_reg & IPR_PCII_OPER_INTERRUPTS) == 0) {
5458 if (ioa_cfg->sis64) {
5459 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
5460 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5461 if (int_reg & IPR_PCII_IPL_STAGE_CHANGE) {
5462
5463 /* clear stage change */
5464 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.clr_interrupt_reg);
5465 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5466 list_del(&ioa_cfg->reset_cmd->queue);
5467 del_timer(&ioa_cfg->reset_cmd->timer);
5468 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
5469 return IRQ_HANDLED;
5470 }
5471 }
5472
5473 return IRQ_NONE;
5474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
5476 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
5477 /* Mask the interrupt */
5478 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.set_interrupt_mask_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
5480
5481 list_del(&ioa_cfg->reset_cmd->queue);
5482 del_timer(&ioa_cfg->reset_cmd->timer);
5483 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
Wayne Boyer7dacb642011-04-12 10:29:02 -07005484 } else if ((int_reg & IPR_PCII_HRRQ_UPDATED) == int_reg) {
Brian King7dd21302012-03-14 21:20:08 -05005485 if (ioa_cfg->clear_isr) {
5486 if (ipr_debug && printk_ratelimit())
5487 dev_err(&ioa_cfg->pdev->dev,
5488 "Spurious interrupt detected. 0x%08X\n", int_reg);
5489 writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg32);
5490 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5491 return IRQ_NONE;
5492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 } else {
5494 if (int_reg & IPR_PCII_IOA_UNIT_CHECKED)
5495 ioa_cfg->ioa_unit_checked = 1;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005496 else if (int_reg & IPR_PCII_NO_HOST_RRQ)
5497 dev_err(&ioa_cfg->pdev->dev,
5498 "No Host RRQ. 0x%08X\n", int_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 else
5500 dev_err(&ioa_cfg->pdev->dev,
5501 "Permanent IOA failure. 0x%08X\n", int_reg);
5502
5503 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5504 ioa_cfg->sdt_state = GET_DUMP;
5505
5506 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
5507 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5508 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005509
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 return rc;
5511}
5512
5513/**
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005514 * ipr_isr_eh - Interrupt service routine error handler
5515 * @ioa_cfg: ioa config struct
5516 * @msg: message to log
5517 *
5518 * Return value:
5519 * none
5520 **/
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005521static void ipr_isr_eh(struct ipr_ioa_cfg *ioa_cfg, char *msg, u16 number)
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005522{
5523 ioa_cfg->errors_logged++;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005524 dev_err(&ioa_cfg->pdev->dev, "%s %d\n", msg, number);
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005525
5526 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5527 ioa_cfg->sdt_state = GET_DUMP;
5528
5529 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5530}
5531
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005532static int ipr_process_hrrq(struct ipr_hrr_queue *hrr_queue, int budget,
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005533 struct list_head *doneq)
5534{
5535 u32 ioasc;
5536 u16 cmd_index;
5537 struct ipr_cmnd *ipr_cmd;
5538 struct ipr_ioa_cfg *ioa_cfg = hrr_queue->ioa_cfg;
5539 int num_hrrq = 0;
5540
5541 /* If interrupts are disabled, ignore the interrupt */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005542 if (!hrr_queue->allow_interrupts)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005543 return 0;
5544
5545 while ((be32_to_cpu(*hrr_queue->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5546 hrr_queue->toggle_bit) {
5547
5548 cmd_index = (be32_to_cpu(*hrr_queue->hrrq_curr) &
5549 IPR_HRRQ_REQ_RESP_HANDLE_MASK) >>
5550 IPR_HRRQ_REQ_RESP_HANDLE_SHIFT;
5551
5552 if (unlikely(cmd_index > hrr_queue->max_cmd_id ||
5553 cmd_index < hrr_queue->min_cmd_id)) {
5554 ipr_isr_eh(ioa_cfg,
5555 "Invalid response handle from IOA: ",
5556 cmd_index);
5557 break;
5558 }
5559
5560 ipr_cmd = ioa_cfg->ipr_cmnd_list[cmd_index];
5561 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
5562
5563 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, ioasc);
5564
5565 list_move_tail(&ipr_cmd->queue, doneq);
5566
5567 if (hrr_queue->hrrq_curr < hrr_queue->hrrq_end) {
5568 hrr_queue->hrrq_curr++;
5569 } else {
5570 hrr_queue->hrrq_curr = hrr_queue->hrrq_start;
5571 hrr_queue->toggle_bit ^= 1u;
5572 }
5573 num_hrrq++;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005574 if (budget > 0 && num_hrrq >= budget)
5575 break;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005576 }
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005577
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005578 return num_hrrq;
5579}
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005580
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005581static int ipr_iopoll(struct irq_poll *iop, int budget)
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005582{
5583 struct ipr_ioa_cfg *ioa_cfg;
5584 struct ipr_hrr_queue *hrrq;
5585 struct ipr_cmnd *ipr_cmd, *temp;
5586 unsigned long hrrq_flags;
5587 int completed_ops;
5588 LIST_HEAD(doneq);
5589
5590 hrrq = container_of(iop, struct ipr_hrr_queue, iopoll);
5591 ioa_cfg = hrrq->ioa_cfg;
5592
5593 spin_lock_irqsave(hrrq->lock, hrrq_flags);
5594 completed_ops = ipr_process_hrrq(hrrq, budget, &doneq);
5595
5596 if (completed_ops < budget)
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005597 irq_poll_complete(iop);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005598 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
5599
5600 list_for_each_entry_safe(ipr_cmd, temp, &doneq, queue) {
5601 list_del(&ipr_cmd->queue);
5602 del_timer(&ipr_cmd->timer);
5603 ipr_cmd->fast_done(ipr_cmd);
5604 }
5605
5606 return completed_ops;
5607}
5608
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005609/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 * ipr_isr - Interrupt service routine
5611 * @irq: irq number
5612 * @devp: pointer to ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613 *
5614 * Return value:
5615 * IRQ_NONE / IRQ_HANDLED
5616 **/
David Howells7d12e782006-10-05 14:55:46 +01005617static irqreturn_t ipr_isr(int irq, void *devp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005619 struct ipr_hrr_queue *hrrq = (struct ipr_hrr_queue *)devp;
5620 struct ipr_ioa_cfg *ioa_cfg = hrrq->ioa_cfg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005621 unsigned long hrrq_flags = 0;
Wayne Boyer7dacb642011-04-12 10:29:02 -07005622 u32 int_reg = 0;
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005623 int num_hrrq = 0;
Wayne Boyer7dacb642011-04-12 10:29:02 -07005624 int irq_none = 0;
Brian King172cd6e2012-07-17 08:14:40 -05005625 struct ipr_cmnd *ipr_cmd, *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 irqreturn_t rc = IRQ_NONE;
Brian King172cd6e2012-07-17 08:14:40 -05005627 LIST_HEAD(doneq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005629 spin_lock_irqsave(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 /* If interrupts are disabled, ignore the interrupt */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005631 if (!hrrq->allow_interrupts) {
5632 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633 return IRQ_NONE;
5634 }
5635
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 while (1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005637 if (ipr_process_hrrq(hrrq, -1, &doneq)) {
5638 rc = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005640 if (!ioa_cfg->clear_isr)
5641 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 /* Clear the PCI interrupt */
Wayne Boyera5442ba2011-05-17 09:18:53 -07005644 num_hrrq = 0;
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005645 do {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005646 writel(IPR_PCII_HRRQ_UPDATED,
5647 ioa_cfg->regs.clr_interrupt_reg32);
Wayne Boyer7dacb642011-04-12 10:29:02 -07005648 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005649 } while (int_reg & IPR_PCII_HRRQ_UPDATED &&
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005650 num_hrrq++ < IPR_MAX_HRRQ_RETRIES);
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005651
Wayne Boyer7dacb642011-04-12 10:29:02 -07005652 } else if (rc == IRQ_NONE && irq_none == 0) {
5653 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5654 irq_none++;
Wayne Boyera5442ba2011-05-17 09:18:53 -07005655 } else if (num_hrrq == IPR_MAX_HRRQ_RETRIES &&
5656 int_reg & IPR_PCII_HRRQ_UPDATED) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005657 ipr_isr_eh(ioa_cfg,
5658 "Error clearing HRRQ: ", num_hrrq);
Brian King172cd6e2012-07-17 08:14:40 -05005659 rc = IRQ_HANDLED;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005660 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 } else
5662 break;
5663 }
5664
5665 if (unlikely(rc == IRQ_NONE))
Wayne Boyer634651f2010-08-27 14:45:07 -07005666 rc = ipr_handle_other_interrupt(ioa_cfg, int_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005668 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King172cd6e2012-07-17 08:14:40 -05005669 list_for_each_entry_safe(ipr_cmd, temp, &doneq, queue) {
5670 list_del(&ipr_cmd->queue);
5671 del_timer(&ipr_cmd->timer);
5672 ipr_cmd->fast_done(ipr_cmd);
5673 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005674 return rc;
5675}
Brian King172cd6e2012-07-17 08:14:40 -05005676
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005677/**
5678 * ipr_isr_mhrrq - Interrupt service routine
5679 * @irq: irq number
5680 * @devp: pointer to ioa config struct
5681 *
5682 * Return value:
5683 * IRQ_NONE / IRQ_HANDLED
5684 **/
5685static irqreturn_t ipr_isr_mhrrq(int irq, void *devp)
5686{
5687 struct ipr_hrr_queue *hrrq = (struct ipr_hrr_queue *)devp;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005688 struct ipr_ioa_cfg *ioa_cfg = hrrq->ioa_cfg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005689 unsigned long hrrq_flags = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005690 struct ipr_cmnd *ipr_cmd, *temp;
5691 irqreturn_t rc = IRQ_NONE;
5692 LIST_HEAD(doneq);
5693
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005694 spin_lock_irqsave(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005695
5696 /* If interrupts are disabled, ignore the interrupt */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005697 if (!hrrq->allow_interrupts) {
5698 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005699 return IRQ_NONE;
5700 }
5701
Jens Axboe89f8b332014-03-13 09:38:42 -06005702 if (ioa_cfg->iopoll_weight && ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005703 if ((be32_to_cpu(*hrrq->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5704 hrrq->toggle_bit) {
Christoph Hellwigea511902015-12-07 06:41:11 -08005705 irq_poll_sched(&hrrq->iopoll);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005706 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
5707 return IRQ_HANDLED;
5708 }
5709 } else {
5710 if ((be32_to_cpu(*hrrq->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5711 hrrq->toggle_bit)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005712
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005713 if (ipr_process_hrrq(hrrq, -1, &doneq))
5714 rc = IRQ_HANDLED;
5715 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005716
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005717 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005718
5719 list_for_each_entry_safe(ipr_cmd, temp, &doneq, queue) {
5720 list_del(&ipr_cmd->queue);
5721 del_timer(&ipr_cmd->timer);
5722 ipr_cmd->fast_done(ipr_cmd);
5723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 return rc;
5725}
5726
5727/**
Wayne Boyera32c0552010-02-19 13:23:36 -08005728 * ipr_build_ioadl64 - Build a scatter/gather list and map the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 * @ioa_cfg: ioa config struct
5730 * @ipr_cmd: ipr command struct
5731 *
5732 * Return value:
5733 * 0 on success / -1 on failure
5734 **/
Wayne Boyera32c0552010-02-19 13:23:36 -08005735static int ipr_build_ioadl64(struct ipr_ioa_cfg *ioa_cfg,
5736 struct ipr_cmnd *ipr_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737{
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005738 int i, nseg;
5739 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 u32 length;
5741 u32 ioadl_flags = 0;
5742 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5743 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08005744 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005746 length = scsi_bufflen(scsi_cmd);
5747 if (!length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 return 0;
5749
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005750 nseg = scsi_dma_map(scsi_cmd);
5751 if (nseg < 0) {
Anton Blanchard51f52a42011-05-09 10:07:40 +10005752 if (printk_ratelimit())
Anton Blanchardd73341b2014-10-30 17:27:08 -05005753 dev_err(&ioa_cfg->pdev->dev, "scsi_dma_map failed!\n");
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005754 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 }
5756
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005757 ipr_cmd->dma_use_sg = nseg;
5758
Wayne Boyer438b0332010-05-10 09:13:00 -07005759 ioarcb->data_transfer_length = cpu_to_be32(length);
Wayne Boyerb8803b12010-05-14 08:55:13 -07005760 ioarcb->ioadl_len =
5761 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
Wayne Boyer438b0332010-05-10 09:13:00 -07005762
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005763 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5764 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5765 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08005766 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE)
5767 ioadl_flags = IPR_IOADL_FLAGS_READ;
5768
5769 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5770 ioadl64[i].flags = cpu_to_be32(ioadl_flags);
5771 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(sg));
5772 ioadl64[i].address = cpu_to_be64(sg_dma_address(sg));
5773 }
5774
5775 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5776 return 0;
5777}
5778
5779/**
5780 * ipr_build_ioadl - Build a scatter/gather list and map the buffer
5781 * @ioa_cfg: ioa config struct
5782 * @ipr_cmd: ipr command struct
5783 *
5784 * Return value:
5785 * 0 on success / -1 on failure
5786 **/
5787static int ipr_build_ioadl(struct ipr_ioa_cfg *ioa_cfg,
5788 struct ipr_cmnd *ipr_cmd)
5789{
5790 int i, nseg;
5791 struct scatterlist *sg;
5792 u32 length;
5793 u32 ioadl_flags = 0;
5794 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5795 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
5796 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
5797
5798 length = scsi_bufflen(scsi_cmd);
5799 if (!length)
5800 return 0;
5801
5802 nseg = scsi_dma_map(scsi_cmd);
5803 if (nseg < 0) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05005804 dev_err(&ioa_cfg->pdev->dev, "scsi_dma_map failed!\n");
Wayne Boyera32c0552010-02-19 13:23:36 -08005805 return -1;
5806 }
5807
5808 ipr_cmd->dma_use_sg = nseg;
5809
5810 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5811 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5812 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
5813 ioarcb->data_transfer_length = cpu_to_be32(length);
5814 ioarcb->ioadl_len =
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005815 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5816 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE) {
5817 ioadl_flags = IPR_IOADL_FLAGS_READ;
5818 ioarcb->read_data_transfer_length = cpu_to_be32(length);
5819 ioarcb->read_ioadl_len =
5820 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5821 }
5822
Wayne Boyera32c0552010-02-19 13:23:36 -08005823 if (ipr_cmd->dma_use_sg <= ARRAY_SIZE(ioarcb->u.add_data.u.ioadl)) {
5824 ioadl = ioarcb->u.add_data.u.ioadl;
5825 ioarcb->write_ioadl_addr = cpu_to_be32((ipr_cmd->dma_addr) +
5826 offsetof(struct ipr_ioarcb, u.add_data));
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005827 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
5828 }
5829
5830 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5831 ioadl[i].flags_and_data_len =
5832 cpu_to_be32(ioadl_flags | sg_dma_len(sg));
5833 ioadl[i].address = cpu_to_be32(sg_dma_address(sg));
5834 }
5835
5836 ioadl[i-1].flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838}
5839
5840/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841 * ipr_erp_done - Process completion of ERP for a device
5842 * @ipr_cmd: ipr command struct
5843 *
5844 * This function copies the sense buffer into the scsi_cmd
5845 * struct and pushes the scsi_done function.
5846 *
5847 * Return value:
5848 * nothing
5849 **/
5850static void ipr_erp_done(struct ipr_cmnd *ipr_cmd)
5851{
5852 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5853 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005854 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
5856 if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
5857 scsi_cmd->result |= (DID_ERROR << 16);
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005858 scmd_printk(KERN_ERR, scsi_cmd,
5859 "Request Sense failed with IOASC: 0x%08X\n", ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 } else {
5861 memcpy(scsi_cmd->sense_buffer, ipr_cmd->sense_buffer,
5862 SCSI_SENSE_BUFFERSIZE);
5863 }
5864
5865 if (res) {
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005866 if (!ipr_is_naca_model(res))
5867 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868 res->in_erp = 0;
5869 }
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005870 scsi_dma_unmap(ipr_cmd->scsi_cmd);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005871 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 scsi_cmd->scsi_done(scsi_cmd);
5873}
5874
5875/**
5876 * ipr_reinit_ipr_cmnd_for_erp - Re-initialize a cmnd block to be used for ERP
5877 * @ipr_cmd: ipr command struct
5878 *
5879 * Return value:
5880 * none
5881 **/
5882static void ipr_reinit_ipr_cmnd_for_erp(struct ipr_cmnd *ipr_cmd)
5883{
Brian King51b1c7e2007-03-29 12:43:50 -05005884 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005885 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
Wayne Boyera32c0552010-02-19 13:23:36 -08005886 dma_addr_t dma_addr = ipr_cmd->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887
5888 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
Wayne Boyera32c0552010-02-19 13:23:36 -08005889 ioarcb->data_transfer_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 ioarcb->read_data_transfer_length = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -08005891 ioarcb->ioadl_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892 ioarcb->read_ioadl_len = 0;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005893 ioasa->hdr.ioasc = 0;
5894 ioasa->hdr.residual_data_len = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -08005895
5896 if (ipr_cmd->ioa_cfg->sis64)
5897 ioarcb->u.sis64_addr_data.data_ioadl_addr =
5898 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
5899 else {
5900 ioarcb->write_ioadl_addr =
5901 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
5902 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
5903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904}
5905
5906/**
5907 * ipr_erp_request_sense - Send request sense to a device
5908 * @ipr_cmd: ipr command struct
5909 *
5910 * This function sends a request sense to a device as a result
5911 * of a check condition.
5912 *
5913 * Return value:
5914 * nothing
5915 **/
5916static void ipr_erp_request_sense(struct ipr_cmnd *ipr_cmd)
5917{
5918 struct ipr_cmd_pkt *cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005919 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920
5921 if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
5922 ipr_erp_done(ipr_cmd);
5923 return;
5924 }
5925
5926 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
5927
5928 cmd_pkt->request_type = IPR_RQTYPE_SCSICDB;
5929 cmd_pkt->cdb[0] = REQUEST_SENSE;
5930 cmd_pkt->cdb[4] = SCSI_SENSE_BUFFERSIZE;
5931 cmd_pkt->flags_hi |= IPR_FLAGS_HI_SYNC_OVERRIDE;
5932 cmd_pkt->flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
5933 cmd_pkt->timeout = cpu_to_be16(IPR_REQUEST_SENSE_TIMEOUT / HZ);
5934
Wayne Boyera32c0552010-02-19 13:23:36 -08005935 ipr_init_ioadl(ipr_cmd, ipr_cmd->sense_buffer_dma,
5936 SCSI_SENSE_BUFFERSIZE, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
5938 ipr_do_req(ipr_cmd, ipr_erp_done, ipr_timeout,
5939 IPR_REQUEST_SENSE_TIMEOUT * 2);
5940}
5941
5942/**
5943 * ipr_erp_cancel_all - Send cancel all to a device
5944 * @ipr_cmd: ipr command struct
5945 *
5946 * This function sends a cancel all to a device to clear the
5947 * queue. If we are running TCQ on the device, QERR is set to 1,
5948 * which means all outstanding ops have been dropped on the floor.
5949 * Cancel all will return them to us.
5950 *
5951 * Return value:
5952 * nothing
5953 **/
5954static void ipr_erp_cancel_all(struct ipr_cmnd *ipr_cmd)
5955{
5956 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5957 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
5958 struct ipr_cmd_pkt *cmd_pkt;
5959
5960 res->in_erp = 1;
5961
5962 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
5963
Christoph Hellwig17ea0122014-11-24 15:36:20 +01005964 if (!scsi_cmd->device->simple_tags) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 ipr_erp_request_sense(ipr_cmd);
5966 return;
5967 }
5968
5969 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
5970 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5971 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
5972
5973 ipr_do_req(ipr_cmd, ipr_erp_request_sense, ipr_timeout,
5974 IPR_CANCEL_ALL_TIMEOUT);
5975}
5976
5977/**
5978 * ipr_dump_ioasa - Dump contents of IOASA
5979 * @ioa_cfg: ioa config struct
5980 * @ipr_cmd: ipr command struct
Brian Kingfe964d02006-03-29 09:37:29 -06005981 * @res: resource entry struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982 *
5983 * This function is invoked by the interrupt handler when ops
5984 * fail. It will log the IOASA if appropriate. Only called
5985 * for GPDD ops.
5986 *
5987 * Return value:
5988 * none
5989 **/
5990static void ipr_dump_ioasa(struct ipr_ioa_cfg *ioa_cfg,
Brian Kingfe964d02006-03-29 09:37:29 -06005991 struct ipr_cmnd *ipr_cmd, struct ipr_resource_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992{
5993 int i;
5994 u16 data_len;
Brian Kingb0692dd2007-03-29 12:43:09 -05005995 u32 ioasc, fd_ioasc;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005996 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 __be32 *ioasa_data = (__be32 *)ioasa;
5998 int error_index;
5999
Wayne Boyer96d21f02010-05-10 09:13:27 -07006000 ioasc = be32_to_cpu(ioasa->hdr.ioasc) & IPR_IOASC_IOASC_MASK;
6001 fd_ioasc = be32_to_cpu(ioasa->hdr.fd_ioasc) & IPR_IOASC_IOASC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
6003 if (0 == ioasc)
6004 return;
6005
6006 if (ioa_cfg->log_level < IPR_DEFAULT_LOG_LEVEL)
6007 return;
6008
Brian Kingb0692dd2007-03-29 12:43:09 -05006009 if (ioasc == IPR_IOASC_BUS_WAS_RESET && fd_ioasc)
6010 error_index = ipr_get_error(fd_ioasc);
6011 else
6012 error_index = ipr_get_error(ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013
6014 if (ioa_cfg->log_level < IPR_MAX_LOG_LEVEL) {
6015 /* Don't log an error if the IOA already logged one */
Wayne Boyer96d21f02010-05-10 09:13:27 -07006016 if (ioasa->hdr.ilid != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 return;
6018
Brian Kingcc9bd5d2007-03-29 12:43:01 -05006019 if (!ipr_is_gscsi(res))
6020 return;
6021
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 if (ipr_error_table[error_index].log_ioasa == 0)
6023 return;
6024 }
6025
Brian Kingfe964d02006-03-29 09:37:29 -06006026 ipr_res_err(ioa_cfg, res, "%s\n", ipr_error_table[error_index].error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
Wayne Boyer96d21f02010-05-10 09:13:27 -07006028 data_len = be16_to_cpu(ioasa->hdr.ret_stat_len);
6029 if (ioa_cfg->sis64 && sizeof(struct ipr_ioasa64) < data_len)
6030 data_len = sizeof(struct ipr_ioasa64);
6031 else if (!ioa_cfg->sis64 && sizeof(struct ipr_ioasa) < data_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032 data_len = sizeof(struct ipr_ioasa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033
6034 ipr_err("IOASA Dump:\n");
6035
6036 for (i = 0; i < data_len / 4; i += 4) {
6037 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
6038 be32_to_cpu(ioasa_data[i]),
6039 be32_to_cpu(ioasa_data[i+1]),
6040 be32_to_cpu(ioasa_data[i+2]),
6041 be32_to_cpu(ioasa_data[i+3]));
6042 }
6043}
6044
6045/**
6046 * ipr_gen_sense - Generate SCSI sense data from an IOASA
6047 * @ioasa: IOASA
6048 * @sense_buf: sense data buffer
6049 *
6050 * Return value:
6051 * none
6052 **/
6053static void ipr_gen_sense(struct ipr_cmnd *ipr_cmd)
6054{
6055 u32 failing_lba;
6056 u8 *sense_buf = ipr_cmd->scsi_cmd->sense_buffer;
6057 struct ipr_resource_entry *res = ipr_cmd->scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006058 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
6059 u32 ioasc = be32_to_cpu(ioasa->hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060
6061 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
6062
6063 if (ioasc >= IPR_FIRST_DRIVER_IOASC)
6064 return;
6065
6066 ipr_cmd->scsi_cmd->result = SAM_STAT_CHECK_CONDITION;
6067
6068 if (ipr_is_vset_device(res) &&
6069 ioasc == IPR_IOASC_MED_DO_NOT_REALLOC &&
6070 ioasa->u.vset.failing_lba_hi != 0) {
6071 sense_buf[0] = 0x72;
6072 sense_buf[1] = IPR_IOASC_SENSE_KEY(ioasc);
6073 sense_buf[2] = IPR_IOASC_SENSE_CODE(ioasc);
6074 sense_buf[3] = IPR_IOASC_SENSE_QUAL(ioasc);
6075
6076 sense_buf[7] = 12;
6077 sense_buf[8] = 0;
6078 sense_buf[9] = 0x0A;
6079 sense_buf[10] = 0x80;
6080
6081 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_hi);
6082
6083 sense_buf[12] = (failing_lba & 0xff000000) >> 24;
6084 sense_buf[13] = (failing_lba & 0x00ff0000) >> 16;
6085 sense_buf[14] = (failing_lba & 0x0000ff00) >> 8;
6086 sense_buf[15] = failing_lba & 0x000000ff;
6087
6088 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
6089
6090 sense_buf[16] = (failing_lba & 0xff000000) >> 24;
6091 sense_buf[17] = (failing_lba & 0x00ff0000) >> 16;
6092 sense_buf[18] = (failing_lba & 0x0000ff00) >> 8;
6093 sense_buf[19] = failing_lba & 0x000000ff;
6094 } else {
6095 sense_buf[0] = 0x70;
6096 sense_buf[2] = IPR_IOASC_SENSE_KEY(ioasc);
6097 sense_buf[12] = IPR_IOASC_SENSE_CODE(ioasc);
6098 sense_buf[13] = IPR_IOASC_SENSE_QUAL(ioasc);
6099
6100 /* Illegal request */
6101 if ((IPR_IOASC_SENSE_KEY(ioasc) == 0x05) &&
Wayne Boyer96d21f02010-05-10 09:13:27 -07006102 (be32_to_cpu(ioasa->hdr.ioasc_specific) & IPR_FIELD_POINTER_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 sense_buf[7] = 10; /* additional length */
6104
6105 /* IOARCB was in error */
6106 if (IPR_IOASC_SENSE_CODE(ioasc) == 0x24)
6107 sense_buf[15] = 0xC0;
6108 else /* Parameter data was invalid */
6109 sense_buf[15] = 0x80;
6110
6111 sense_buf[16] =
6112 ((IPR_FIELD_POINTER_MASK &
Wayne Boyer96d21f02010-05-10 09:13:27 -07006113 be32_to_cpu(ioasa->hdr.ioasc_specific)) >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 sense_buf[17] =
6115 (IPR_FIELD_POINTER_MASK &
Wayne Boyer96d21f02010-05-10 09:13:27 -07006116 be32_to_cpu(ioasa->hdr.ioasc_specific)) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 } else {
6118 if (ioasc == IPR_IOASC_MED_DO_NOT_REALLOC) {
6119 if (ipr_is_vset_device(res))
6120 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
6121 else
6122 failing_lba = be32_to_cpu(ioasa->u.dasd.failing_lba);
6123
6124 sense_buf[0] |= 0x80; /* Or in the Valid bit */
6125 sense_buf[3] = (failing_lba & 0xff000000) >> 24;
6126 sense_buf[4] = (failing_lba & 0x00ff0000) >> 16;
6127 sense_buf[5] = (failing_lba & 0x0000ff00) >> 8;
6128 sense_buf[6] = failing_lba & 0x000000ff;
6129 }
6130
6131 sense_buf[7] = 6; /* additional length */
6132 }
6133 }
6134}
6135
6136/**
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006137 * ipr_get_autosense - Copy autosense data to sense buffer
6138 * @ipr_cmd: ipr command struct
6139 *
6140 * This function copies the autosense buffer to the buffer
6141 * in the scsi_cmd, if there is autosense available.
6142 *
6143 * Return value:
6144 * 1 if autosense was available / 0 if not
6145 **/
6146static int ipr_get_autosense(struct ipr_cmnd *ipr_cmd)
6147{
Wayne Boyer96d21f02010-05-10 09:13:27 -07006148 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
6149 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006150
Wayne Boyer96d21f02010-05-10 09:13:27 -07006151 if ((be32_to_cpu(ioasa->hdr.ioasc_specific) & IPR_AUTOSENSE_VALID) == 0)
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006152 return 0;
6153
Wayne Boyer96d21f02010-05-10 09:13:27 -07006154 if (ipr_cmd->ioa_cfg->sis64)
6155 memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa64->auto_sense.data,
6156 min_t(u16, be16_to_cpu(ioasa64->auto_sense.auto_sense_len),
6157 SCSI_SENSE_BUFFERSIZE));
6158 else
6159 memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa->auto_sense.data,
6160 min_t(u16, be16_to_cpu(ioasa->auto_sense.auto_sense_len),
6161 SCSI_SENSE_BUFFERSIZE));
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006162 return 1;
6163}
6164
6165/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166 * ipr_erp_start - Process an error response for a SCSI op
6167 * @ioa_cfg: ioa config struct
6168 * @ipr_cmd: ipr command struct
6169 *
6170 * This function determines whether or not to initiate ERP
6171 * on the affected device.
6172 *
6173 * Return value:
6174 * nothing
6175 **/
6176static void ipr_erp_start(struct ipr_ioa_cfg *ioa_cfg,
6177 struct ipr_cmnd *ipr_cmd)
6178{
6179 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
6180 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006181 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King8a048992007-04-26 16:00:10 -05006182 u32 masked_ioasc = ioasc & IPR_IOASC_IOASC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183
6184 if (!res) {
6185 ipr_scsi_eh_done(ipr_cmd);
6186 return;
6187 }
6188
Brian King8a048992007-04-26 16:00:10 -05006189 if (!ipr_is_gscsi(res) && masked_ioasc != IPR_IOASC_HW_DEV_BUS_STATUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190 ipr_gen_sense(ipr_cmd);
6191
Brian Kingcc9bd5d2007-03-29 12:43:01 -05006192 ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
6193
Brian King8a048992007-04-26 16:00:10 -05006194 switch (masked_ioasc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195 case IPR_IOASC_ABORTED_CMD_TERM_BY_HOST:
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006196 if (ipr_is_naca_model(res))
6197 scsi_cmd->result |= (DID_ABORT << 16);
6198 else
6199 scsi_cmd->result |= (DID_IMM_RETRY << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200 break;
6201 case IPR_IOASC_IR_RESOURCE_HANDLE:
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06006202 case IPR_IOASC_IR_NO_CMDS_TO_2ND_IOA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203 scsi_cmd->result |= (DID_NO_CONNECT << 16);
6204 break;
6205 case IPR_IOASC_HW_SEL_TIMEOUT:
6206 scsi_cmd->result |= (DID_NO_CONNECT << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006207 if (!ipr_is_naca_model(res))
6208 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 break;
6210 case IPR_IOASC_SYNC_REQUIRED:
6211 if (!res->in_erp)
6212 res->needs_sync_complete = 1;
6213 scsi_cmd->result |= (DID_IMM_RETRY << 16);
6214 break;
6215 case IPR_IOASC_MED_DO_NOT_REALLOC: /* prevent retries */
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06006216 case IPR_IOASA_IR_DUAL_IOA_DISABLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217 scsi_cmd->result |= (DID_PASSTHROUGH << 16);
6218 break;
6219 case IPR_IOASC_BUS_WAS_RESET:
6220 case IPR_IOASC_BUS_WAS_RESET_BY_OTHER:
6221 /*
6222 * Report the bus reset and ask for a retry. The device
6223 * will give CC/UA the next command.
6224 */
6225 if (!res->resetting_device)
6226 scsi_report_bus_reset(ioa_cfg->host, scsi_cmd->device->channel);
6227 scsi_cmd->result |= (DID_ERROR << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006228 if (!ipr_is_naca_model(res))
6229 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230 break;
6231 case IPR_IOASC_HW_DEV_BUS_STATUS:
6232 scsi_cmd->result |= IPR_IOASC_SENSE_STATUS(ioasc);
6233 if (IPR_IOASC_SENSE_STATUS(ioasc) == SAM_STAT_CHECK_CONDITION) {
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006234 if (!ipr_get_autosense(ipr_cmd)) {
6235 if (!ipr_is_naca_model(res)) {
6236 ipr_erp_cancel_all(ipr_cmd);
6237 return;
6238 }
6239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 }
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006241 if (!ipr_is_naca_model(res))
6242 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 break;
6244 case IPR_IOASC_NR_INIT_CMD_REQUIRED:
6245 break;
Wen Xiongf8ee25d2015-03-26 11:23:58 -05006246 case IPR_IOASC_IR_NON_OPTIMIZED:
6247 if (res->raw_mode) {
6248 res->raw_mode = 0;
6249 scsi_cmd->result |= (DID_IMM_RETRY << 16);
6250 } else
6251 scsi_cmd->result |= (DID_ERROR << 16);
6252 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253 default:
Brian King5b7304f2006-08-02 14:57:51 -05006254 if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
6255 scsi_cmd->result |= (DID_ERROR << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006256 if (!ipr_is_vset_device(res) && !ipr_is_naca_model(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257 res->needs_sync_complete = 1;
6258 break;
6259 }
6260
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09006261 scsi_dma_unmap(ipr_cmd->scsi_cmd);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006262 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263 scsi_cmd->scsi_done(scsi_cmd);
6264}
6265
6266/**
6267 * ipr_scsi_done - mid-layer done function
6268 * @ipr_cmd: ipr command struct
6269 *
6270 * This function is invoked by the interrupt handler for
6271 * ops generated by the SCSI mid-layer
6272 *
6273 * Return value:
6274 * none
6275 **/
6276static void ipr_scsi_done(struct ipr_cmnd *ipr_cmd)
6277{
6278 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6279 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006280 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King36b8e182015-07-14 11:41:29 -05006281 unsigned long lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
Wayne Boyer96d21f02010-05-10 09:13:27 -07006283 scsi_set_resid(scsi_cmd, be32_to_cpu(ipr_cmd->s.ioasa.hdr.residual_data_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
6285 if (likely(IPR_IOASC_SENSE_KEY(ioasc) == 0)) {
Brian King172cd6e2012-07-17 08:14:40 -05006286 scsi_dma_unmap(scsi_cmd);
6287
Brian King36b8e182015-07-14 11:41:29 -05006288 spin_lock_irqsave(ipr_cmd->hrrq->lock, lock_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006289 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290 scsi_cmd->scsi_done(scsi_cmd);
Brian King36b8e182015-07-14 11:41:29 -05006291 spin_unlock_irqrestore(ipr_cmd->hrrq->lock, lock_flags);
Brian King172cd6e2012-07-17 08:14:40 -05006292 } else {
Brian King36b8e182015-07-14 11:41:29 -05006293 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
6294 spin_lock(&ipr_cmd->hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 ipr_erp_start(ioa_cfg, ipr_cmd);
Brian King36b8e182015-07-14 11:41:29 -05006296 spin_unlock(&ipr_cmd->hrrq->_lock);
6297 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Brian King172cd6e2012-07-17 08:14:40 -05006298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299}
6300
6301/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302 * ipr_queuecommand - Queue a mid-layer request
Brian King00bfef22012-07-17 08:13:52 -05006303 * @shost: scsi host struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304 * @scsi_cmd: scsi command struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305 *
6306 * This function queues a request generated by the mid-layer.
6307 *
6308 * Return value:
6309 * 0 on success
6310 * SCSI_MLQUEUE_DEVICE_BUSY if device is busy
6311 * SCSI_MLQUEUE_HOST_BUSY if host is busy
6312 **/
Brian King00bfef22012-07-17 08:13:52 -05006313static int ipr_queuecommand(struct Scsi_Host *shost,
6314 struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315{
6316 struct ipr_ioa_cfg *ioa_cfg;
6317 struct ipr_resource_entry *res;
6318 struct ipr_ioarcb *ioarcb;
6319 struct ipr_cmnd *ipr_cmd;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006320 unsigned long hrrq_flags, lock_flags;
Dan Carpenterd12f1572012-07-30 11:18:22 +03006321 int rc;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006322 struct ipr_hrr_queue *hrrq;
6323 int hrrq_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324
Brian King00bfef22012-07-17 08:13:52 -05006325 ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
6326
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327 scsi_cmd->result = (DID_OK << 16);
Brian King00bfef22012-07-17 08:13:52 -05006328 res = scsi_cmd->device->hostdata;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006329
6330 if (ipr_is_gata(res) && res->sata_port) {
6331 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
6332 rc = ata_sas_queuecmd(scsi_cmd, res->sata_port->ap);
6333 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
6334 return rc;
6335 }
6336
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006337 hrrq_id = ipr_get_hrrq_index(ioa_cfg);
6338 hrrq = &ioa_cfg->hrrq[hrrq_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006340 spin_lock_irqsave(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341 /*
6342 * We are currently blocking all devices due to a host reset
6343 * We have told the host to stop giving us new requests, but
6344 * ERP ops don't count. FIXME
6345 */
Brian Kingbfae7822013-01-30 23:45:08 -06006346 if (unlikely(!hrrq->allow_cmds && !hrrq->ioa_is_dead && !hrrq->removing_ioa)) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006347 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348 return SCSI_MLQUEUE_HOST_BUSY;
Brian King00bfef22012-07-17 08:13:52 -05006349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
6351 /*
6352 * FIXME - Create scsi_set_host_offline interface
6353 * and the ioa_is_dead check can be removed
6354 */
Brian Kingbfae7822013-01-30 23:45:08 -06006355 if (unlikely(hrrq->ioa_is_dead || hrrq->removing_ioa || !res)) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006356 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006357 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358 }
6359
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006360 ipr_cmd = __ipr_get_free_ipr_cmnd(hrrq);
6361 if (ipr_cmd == NULL) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006362 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006363 return SCSI_MLQUEUE_HOST_BUSY;
6364 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006365 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006366
Brian King172cd6e2012-07-17 08:14:40 -05006367 ipr_init_ipr_cmnd(ipr_cmd, ipr_scsi_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368 ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369
6370 memcpy(ioarcb->cmd_pkt.cdb, scsi_cmd->cmnd, scsi_cmd->cmd_len);
6371 ipr_cmd->scsi_cmd = scsi_cmd;
Brian King172cd6e2012-07-17 08:14:40 -05006372 ipr_cmd->done = ipr_scsi_eh_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
Gabriel Krisman Bertazi4f92d012015-11-03 16:26:07 -02006374 if (ipr_is_gscsi(res)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375 if (scsi_cmd->underflow == 0)
6376 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
6377
Gabriel Krisman Bertazi4f92d012015-11-03 16:26:07 -02006378 if (res->reset_occurred) {
Wendy Xiong0b1f8d42014-01-21 12:16:39 -06006379 res->reset_occurred = 0;
Wayne Boyerab6c10b2011-03-31 09:56:10 -07006380 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_DELAY_AFTER_RST;
Wendy Xiong0b1f8d42014-01-21 12:16:39 -06006381 }
Gabriel Krisman Bertazi4f92d012015-11-03 16:26:07 -02006382 }
6383
6384 if (ipr_is_gscsi(res) || ipr_is_vset_device(res)) {
6385 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
6386
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_ALIGNED_BFR;
Christoph Hellwig50668632014-10-30 14:30:06 +01006388 if (scsi_cmd->flags & SCMD_TAGGED)
6389 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_SIMPLE_TASK;
6390 else
6391 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_UNTAGGED_TASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392 }
6393
6394 if (scsi_cmd->cmnd[0] >= 0xC0 &&
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006395 (!ipr_is_gscsi(res) || scsi_cmd->cmnd[0] == IPR_QUERY_RSRC_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006397 }
Gabriel Krisman Bertazi3cb4fc12015-08-19 11:47:05 -03006398 if (res->raw_mode && ipr_is_af_dasd_device(res)) {
Wen Xiongf8ee25d2015-03-26 11:23:58 -05006399 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_PIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400
Gabriel Krisman Bertazi3cb4fc12015-08-19 11:47:05 -03006401 if (scsi_cmd->underflow == 0)
6402 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
6403 }
6404
Dan Carpenterd12f1572012-07-30 11:18:22 +03006405 if (ioa_cfg->sis64)
6406 rc = ipr_build_ioadl64(ioa_cfg, ipr_cmd);
6407 else
6408 rc = ipr_build_ioadl(ioa_cfg, ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006410 spin_lock_irqsave(hrrq->lock, hrrq_flags);
6411 if (unlikely(rc || (!hrrq->allow_cmds && !hrrq->ioa_is_dead))) {
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006412 list_add_tail(&ipr_cmd->queue, &hrrq->hrrq_free_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006413 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006414 if (!rc)
6415 scsi_dma_unmap(scsi_cmd);
Brian Kinga5fb4072012-03-14 21:20:09 -05006416 return SCSI_MLQUEUE_HOST_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 }
6418
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006419 if (unlikely(hrrq->ioa_is_dead)) {
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006420 list_add_tail(&ipr_cmd->queue, &hrrq->hrrq_free_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006421 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006422 scsi_dma_unmap(scsi_cmd);
6423 goto err_nodev;
6424 }
6425
6426 ioarcb->res_handle = res->res_handle;
6427 if (res->needs_sync_complete) {
6428 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_SYNC_COMPLETE;
6429 res->needs_sync_complete = 0;
6430 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006431 list_add_tail(&ipr_cmd->queue, &hrrq->hrrq_pending_q);
Brian King00bfef22012-07-17 08:13:52 -05006432 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_RES_PHYS_LOC(res));
Brian Kinga5fb4072012-03-14 21:20:09 -05006433 ipr_send_command(ipr_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006434 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006435 return 0;
6436
6437err_nodev:
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006438 spin_lock_irqsave(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006439 memset(scsi_cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
6440 scsi_cmd->result = (DID_NO_CONNECT << 16);
6441 scsi_cmd->scsi_done(scsi_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006442 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443 return 0;
6444}
6445
6446/**
Brian King35a39692006-09-25 12:39:20 -05006447 * ipr_ioctl - IOCTL handler
6448 * @sdev: scsi device struct
6449 * @cmd: IOCTL cmd
6450 * @arg: IOCTL arg
6451 *
6452 * Return value:
6453 * 0 on success / other on failure
6454 **/
Adrian Bunkbd705f22006-11-21 10:28:48 -06006455static int ipr_ioctl(struct scsi_device *sdev, int cmd, void __user *arg)
Brian King35a39692006-09-25 12:39:20 -05006456{
6457 struct ipr_resource_entry *res;
6458
6459 res = (struct ipr_resource_entry *)sdev->hostdata;
Brian King0ce3a7e2008-07-11 13:37:50 -05006460 if (res && ipr_is_gata(res)) {
6461 if (cmd == HDIO_GET_IDENTITY)
6462 return -ENOTTY;
Jeff Garzik94be9a52009-01-16 10:17:09 -05006463 return ata_sas_scsi_ioctl(res->sata_port->ap, sdev, cmd, arg);
Brian King0ce3a7e2008-07-11 13:37:50 -05006464 }
Brian King35a39692006-09-25 12:39:20 -05006465
6466 return -EINVAL;
6467}
6468
6469/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470 * ipr_info - Get information about the card/driver
6471 * @scsi_host: scsi host struct
6472 *
6473 * Return value:
6474 * pointer to buffer with description string
6475 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006476static const char *ipr_ioa_info(struct Scsi_Host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477{
6478 static char buffer[512];
6479 struct ipr_ioa_cfg *ioa_cfg;
6480 unsigned long lock_flags = 0;
6481
6482 ioa_cfg = (struct ipr_ioa_cfg *) host->hostdata;
6483
6484 spin_lock_irqsave(host->host_lock, lock_flags);
6485 sprintf(buffer, "IBM %X Storage Adapter", ioa_cfg->type);
6486 spin_unlock_irqrestore(host->host_lock, lock_flags);
6487
6488 return buffer;
6489}
6490
6491static struct scsi_host_template driver_template = {
6492 .module = THIS_MODULE,
6493 .name = "IPR",
6494 .info = ipr_ioa_info,
Brian King35a39692006-09-25 12:39:20 -05006495 .ioctl = ipr_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 .queuecommand = ipr_queuecommand,
6497 .eh_abort_handler = ipr_eh_abort,
6498 .eh_device_reset_handler = ipr_eh_dev_reset,
6499 .eh_host_reset_handler = ipr_eh_host_reset,
6500 .slave_alloc = ipr_slave_alloc,
6501 .slave_configure = ipr_slave_configure,
6502 .slave_destroy = ipr_slave_destroy,
Brian Kingf688f962014-12-02 12:47:37 -06006503 .scan_finished = ipr_scan_finished,
Brian King35a39692006-09-25 12:39:20 -05006504 .target_alloc = ipr_target_alloc,
6505 .target_destroy = ipr_target_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506 .change_queue_depth = ipr_change_queue_depth,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507 .bios_param = ipr_biosparam,
6508 .can_queue = IPR_MAX_COMMANDS,
6509 .this_id = -1,
6510 .sg_tablesize = IPR_MAX_SGLIST,
6511 .max_sectors = IPR_IOA_MAX_SECTORS,
6512 .cmd_per_lun = IPR_MAX_CMD_PER_LUN,
6513 .use_clustering = ENABLE_CLUSTERING,
6514 .shost_attrs = ipr_ioa_attrs,
6515 .sdev_attrs = ipr_dev_attrs,
Martin K. Petersen54b2b502013-10-23 06:25:40 -04006516 .proc_name = IPR_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517};
6518
Brian King35a39692006-09-25 12:39:20 -05006519/**
6520 * ipr_ata_phy_reset - libata phy_reset handler
6521 * @ap: ata port to reset
6522 *
6523 **/
6524static void ipr_ata_phy_reset(struct ata_port *ap)
6525{
6526 unsigned long flags;
6527 struct ipr_sata_port *sata_port = ap->private_data;
6528 struct ipr_resource_entry *res = sata_port->res;
6529 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6530 int rc;
6531
6532 ENTER;
6533 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006534 while (ioa_cfg->in_reset_reload) {
Brian King35a39692006-09-25 12:39:20 -05006535 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6536 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
6537 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
6538 }
6539
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006540 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds)
Brian King35a39692006-09-25 12:39:20 -05006541 goto out_unlock;
6542
6543 rc = ipr_device_reset(ioa_cfg, res);
6544
6545 if (rc) {
Tejun Heo3e4ec342010-05-10 21:41:30 +02006546 ap->link.device[0].class = ATA_DEV_NONE;
Brian King35a39692006-09-25 12:39:20 -05006547 goto out_unlock;
6548 }
6549
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006550 ap->link.device[0].class = res->ata_class;
6551 if (ap->link.device[0].class == ATA_DEV_UNKNOWN)
Tejun Heo3e4ec342010-05-10 21:41:30 +02006552 ap->link.device[0].class = ATA_DEV_NONE;
Brian King35a39692006-09-25 12:39:20 -05006553
6554out_unlock:
6555 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6556 LEAVE;
6557}
6558
6559/**
6560 * ipr_ata_post_internal - Cleanup after an internal command
6561 * @qc: ATA queued command
6562 *
6563 * Return value:
6564 * none
6565 **/
6566static void ipr_ata_post_internal(struct ata_queued_cmd *qc)
6567{
6568 struct ipr_sata_port *sata_port = qc->ap->private_data;
6569 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6570 struct ipr_cmnd *ipr_cmd;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006571 struct ipr_hrr_queue *hrrq;
Brian King35a39692006-09-25 12:39:20 -05006572 unsigned long flags;
6573
6574 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006575 while (ioa_cfg->in_reset_reload) {
Brian King73d98ff2006-11-21 10:27:58 -06006576 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6577 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
6578 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
6579 }
6580
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006581 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006582 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006583 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
6584 if (ipr_cmd->qc == qc) {
6585 ipr_device_reset(ioa_cfg, sata_port->res);
6586 break;
6587 }
Brian King35a39692006-09-25 12:39:20 -05006588 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006589 spin_unlock(&hrrq->_lock);
Brian King35a39692006-09-25 12:39:20 -05006590 }
6591 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6592}
6593
6594/**
Brian King35a39692006-09-25 12:39:20 -05006595 * ipr_copy_sata_tf - Copy a SATA taskfile to an IOA data structure
6596 * @regs: destination
6597 * @tf: source ATA taskfile
6598 *
6599 * Return value:
6600 * none
6601 **/
6602static void ipr_copy_sata_tf(struct ipr_ioarcb_ata_regs *regs,
6603 struct ata_taskfile *tf)
6604{
6605 regs->feature = tf->feature;
6606 regs->nsect = tf->nsect;
6607 regs->lbal = tf->lbal;
6608 regs->lbam = tf->lbam;
6609 regs->lbah = tf->lbah;
6610 regs->device = tf->device;
6611 regs->command = tf->command;
6612 regs->hob_feature = tf->hob_feature;
6613 regs->hob_nsect = tf->hob_nsect;
6614 regs->hob_lbal = tf->hob_lbal;
6615 regs->hob_lbam = tf->hob_lbam;
6616 regs->hob_lbah = tf->hob_lbah;
6617 regs->ctl = tf->ctl;
6618}
6619
6620/**
6621 * ipr_sata_done - done function for SATA commands
6622 * @ipr_cmd: ipr command struct
6623 *
6624 * This function is invoked by the interrupt handler for
6625 * ops generated by the SCSI mid-layer to SATA devices
6626 *
6627 * Return value:
6628 * none
6629 **/
6630static void ipr_sata_done(struct ipr_cmnd *ipr_cmd)
6631{
6632 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6633 struct ata_queued_cmd *qc = ipr_cmd->qc;
6634 struct ipr_sata_port *sata_port = qc->ap->private_data;
6635 struct ipr_resource_entry *res = sata_port->res;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006636 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King35a39692006-09-25 12:39:20 -05006637
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006638 spin_lock(&ipr_cmd->hrrq->_lock);
Wayne Boyer96d21f02010-05-10 09:13:27 -07006639 if (ipr_cmd->ioa_cfg->sis64)
6640 memcpy(&sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
6641 sizeof(struct ipr_ioasa_gata));
6642 else
6643 memcpy(&sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
6644 sizeof(struct ipr_ioasa_gata));
Brian King35a39692006-09-25 12:39:20 -05006645 ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
6646
Wayne Boyer96d21f02010-05-10 09:13:27 -07006647 if (be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc_specific) & IPR_ATA_DEVICE_WAS_RESET)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006648 scsi_report_device_reset(ioa_cfg->host, res->bus, res->target);
Brian King35a39692006-09-25 12:39:20 -05006649
6650 if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
Wayne Boyer96d21f02010-05-10 09:13:27 -07006651 qc->err_mask |= __ac_err_mask(sata_port->ioasa.status);
Brian King35a39692006-09-25 12:39:20 -05006652 else
Wayne Boyer96d21f02010-05-10 09:13:27 -07006653 qc->err_mask |= ac_err_mask(sata_port->ioasa.status);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006654 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006655 spin_unlock(&ipr_cmd->hrrq->_lock);
Brian King35a39692006-09-25 12:39:20 -05006656 ata_qc_complete(qc);
6657}
6658
6659/**
Wayne Boyera32c0552010-02-19 13:23:36 -08006660 * ipr_build_ata_ioadl64 - Build an ATA scatter/gather list
6661 * @ipr_cmd: ipr command struct
6662 * @qc: ATA queued command
6663 *
6664 **/
6665static void ipr_build_ata_ioadl64(struct ipr_cmnd *ipr_cmd,
6666 struct ata_queued_cmd *qc)
6667{
6668 u32 ioadl_flags = 0;
6669 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
wenxiong@linux.vnet.ibm.com1ac7c262013-04-18 21:32:48 -05006670 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ata_ioadl.ioadl64;
Wayne Boyera32c0552010-02-19 13:23:36 -08006671 struct ipr_ioadl64_desc *last_ioadl64 = NULL;
6672 int len = qc->nbytes;
6673 struct scatterlist *sg;
6674 unsigned int si;
6675 dma_addr_t dma_addr = ipr_cmd->dma_addr;
6676
6677 if (len == 0)
6678 return;
6679
6680 if (qc->dma_dir == DMA_TO_DEVICE) {
6681 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
6682 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
6683 } else if (qc->dma_dir == DMA_FROM_DEVICE)
6684 ioadl_flags = IPR_IOADL_FLAGS_READ;
6685
6686 ioarcb->data_transfer_length = cpu_to_be32(len);
6687 ioarcb->ioadl_len =
6688 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
6689 ioarcb->u.sis64_addr_data.data_ioadl_addr =
wenxiong@linux.vnet.ibm.com1ac7c262013-04-18 21:32:48 -05006690 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ata_ioadl.ioadl64));
Wayne Boyera32c0552010-02-19 13:23:36 -08006691
6692 for_each_sg(qc->sg, sg, qc->n_elem, si) {
6693 ioadl64->flags = cpu_to_be32(ioadl_flags);
6694 ioadl64->data_len = cpu_to_be32(sg_dma_len(sg));
6695 ioadl64->address = cpu_to_be64(sg_dma_address(sg));
6696
6697 last_ioadl64 = ioadl64;
6698 ioadl64++;
6699 }
6700
6701 if (likely(last_ioadl64))
6702 last_ioadl64->flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
6703}
6704
6705/**
Brian King35a39692006-09-25 12:39:20 -05006706 * ipr_build_ata_ioadl - Build an ATA scatter/gather list
6707 * @ipr_cmd: ipr command struct
6708 * @qc: ATA queued command
6709 *
6710 **/
6711static void ipr_build_ata_ioadl(struct ipr_cmnd *ipr_cmd,
6712 struct ata_queued_cmd *qc)
6713{
6714 u32 ioadl_flags = 0;
6715 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08006716 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006717 struct ipr_ioadl_desc *last_ioadl = NULL;
James Bottomleydde20202008-02-19 11:36:56 +01006718 int len = qc->nbytes;
Brian King35a39692006-09-25 12:39:20 -05006719 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09006720 unsigned int si;
Brian King35a39692006-09-25 12:39:20 -05006721
6722 if (len == 0)
6723 return;
6724
6725 if (qc->dma_dir == DMA_TO_DEVICE) {
6726 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
6727 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08006728 ioarcb->data_transfer_length = cpu_to_be32(len);
6729 ioarcb->ioadl_len =
Brian King35a39692006-09-25 12:39:20 -05006730 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
6731 } else if (qc->dma_dir == DMA_FROM_DEVICE) {
6732 ioadl_flags = IPR_IOADL_FLAGS_READ;
6733 ioarcb->read_data_transfer_length = cpu_to_be32(len);
6734 ioarcb->read_ioadl_len =
6735 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
6736 }
6737
Tejun Heoff2aeb12007-12-05 16:43:11 +09006738 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Brian King35a39692006-09-25 12:39:20 -05006739 ioadl->flags_and_data_len = cpu_to_be32(ioadl_flags | sg_dma_len(sg));
6740 ioadl->address = cpu_to_be32(sg_dma_address(sg));
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006741
6742 last_ioadl = ioadl;
6743 ioadl++;
Brian King35a39692006-09-25 12:39:20 -05006744 }
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006745
6746 if (likely(last_ioadl))
6747 last_ioadl->flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
Brian King35a39692006-09-25 12:39:20 -05006748}
6749
6750/**
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006751 * ipr_qc_defer - Get a free ipr_cmd
6752 * @qc: queued command
6753 *
6754 * Return value:
6755 * 0 if success
6756 **/
6757static int ipr_qc_defer(struct ata_queued_cmd *qc)
6758{
6759 struct ata_port *ap = qc->ap;
6760 struct ipr_sata_port *sata_port = ap->private_data;
6761 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6762 struct ipr_cmnd *ipr_cmd;
6763 struct ipr_hrr_queue *hrrq;
6764 int hrrq_id;
6765
6766 hrrq_id = ipr_get_hrrq_index(ioa_cfg);
6767 hrrq = &ioa_cfg->hrrq[hrrq_id];
6768
6769 qc->lldd_task = NULL;
6770 spin_lock(&hrrq->_lock);
6771 if (unlikely(hrrq->ioa_is_dead)) {
6772 spin_unlock(&hrrq->_lock);
6773 return 0;
6774 }
6775
6776 if (unlikely(!hrrq->allow_cmds)) {
6777 spin_unlock(&hrrq->_lock);
6778 return ATA_DEFER_LINK;
6779 }
6780
6781 ipr_cmd = __ipr_get_free_ipr_cmnd(hrrq);
6782 if (ipr_cmd == NULL) {
6783 spin_unlock(&hrrq->_lock);
6784 return ATA_DEFER_LINK;
6785 }
6786
6787 qc->lldd_task = ipr_cmd;
6788 spin_unlock(&hrrq->_lock);
6789 return 0;
6790}
6791
6792/**
Brian King35a39692006-09-25 12:39:20 -05006793 * ipr_qc_issue - Issue a SATA qc to a device
6794 * @qc: queued command
6795 *
6796 * Return value:
6797 * 0 if success
6798 **/
6799static unsigned int ipr_qc_issue(struct ata_queued_cmd *qc)
6800{
6801 struct ata_port *ap = qc->ap;
6802 struct ipr_sata_port *sata_port = ap->private_data;
6803 struct ipr_resource_entry *res = sata_port->res;
6804 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6805 struct ipr_cmnd *ipr_cmd;
6806 struct ipr_ioarcb *ioarcb;
6807 struct ipr_ioarcb_ata_regs *regs;
6808
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006809 if (qc->lldd_task == NULL)
6810 ipr_qc_defer(qc);
6811
6812 ipr_cmd = qc->lldd_task;
6813 if (ipr_cmd == NULL)
Brian King0feeed82007-03-29 12:43:43 -05006814 return AC_ERR_SYSTEM;
Brian King35a39692006-09-25 12:39:20 -05006815
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006816 qc->lldd_task = NULL;
6817 spin_lock(&ipr_cmd->hrrq->_lock);
6818 if (unlikely(!ipr_cmd->hrrq->allow_cmds ||
6819 ipr_cmd->hrrq->ioa_is_dead)) {
6820 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
6821 spin_unlock(&ipr_cmd->hrrq->_lock);
6822 return AC_ERR_SYSTEM;
6823 }
6824
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006825 ipr_init_ipr_cmnd(ipr_cmd, ipr_lock_and_done);
Brian King35a39692006-09-25 12:39:20 -05006826 ioarcb = &ipr_cmd->ioarcb;
Brian King35a39692006-09-25 12:39:20 -05006827
Wayne Boyera32c0552010-02-19 13:23:36 -08006828 if (ioa_cfg->sis64) {
6829 regs = &ipr_cmd->i.ata_ioadl.regs;
6830 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
6831 } else
6832 regs = &ioarcb->u.add_data.u.regs;
6833
6834 memset(regs, 0, sizeof(*regs));
6835 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(*regs));
Brian King35a39692006-09-25 12:39:20 -05006836
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006837 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Brian King35a39692006-09-25 12:39:20 -05006838 ipr_cmd->qc = qc;
6839 ipr_cmd->done = ipr_sata_done;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006840 ipr_cmd->ioarcb.res_handle = res->res_handle;
Brian King35a39692006-09-25 12:39:20 -05006841 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_ATA_PASSTHRU;
6842 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
6843 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
James Bottomleydde20202008-02-19 11:36:56 +01006844 ipr_cmd->dma_use_sg = qc->n_elem;
Brian King35a39692006-09-25 12:39:20 -05006845
Wayne Boyera32c0552010-02-19 13:23:36 -08006846 if (ioa_cfg->sis64)
6847 ipr_build_ata_ioadl64(ipr_cmd, qc);
6848 else
6849 ipr_build_ata_ioadl(ipr_cmd, qc);
6850
Brian King35a39692006-09-25 12:39:20 -05006851 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
6852 ipr_copy_sata_tf(regs, &qc->tf);
6853 memcpy(ioarcb->cmd_pkt.cdb, qc->cdb, IPR_MAX_CDB_LEN);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006854 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_RES_PHYS_LOC(res));
Brian King35a39692006-09-25 12:39:20 -05006855
6856 switch (qc->tf.protocol) {
6857 case ATA_PROT_NODATA:
6858 case ATA_PROT_PIO:
6859 break;
6860
6861 case ATA_PROT_DMA:
6862 regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
6863 break;
6864
Tejun Heo0dc36882007-12-18 16:34:43 -05006865 case ATAPI_PROT_PIO:
6866 case ATAPI_PROT_NODATA:
Brian King35a39692006-09-25 12:39:20 -05006867 regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
6868 break;
6869
Tejun Heo0dc36882007-12-18 16:34:43 -05006870 case ATAPI_PROT_DMA:
Brian King35a39692006-09-25 12:39:20 -05006871 regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
6872 regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
6873 break;
6874
6875 default:
6876 WARN_ON(1);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006877 spin_unlock(&ipr_cmd->hrrq->_lock);
Brian King0feeed82007-03-29 12:43:43 -05006878 return AC_ERR_INVALID;
Brian King35a39692006-09-25 12:39:20 -05006879 }
6880
Wayne Boyera32c0552010-02-19 13:23:36 -08006881 ipr_send_command(ipr_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006882 spin_unlock(&ipr_cmd->hrrq->_lock);
Wayne Boyera32c0552010-02-19 13:23:36 -08006883
Brian King35a39692006-09-25 12:39:20 -05006884 return 0;
6885}
6886
6887/**
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006888 * ipr_qc_fill_rtf - Read result TF
6889 * @qc: ATA queued command
6890 *
6891 * Return value:
6892 * true
6893 **/
6894static bool ipr_qc_fill_rtf(struct ata_queued_cmd *qc)
6895{
6896 struct ipr_sata_port *sata_port = qc->ap->private_data;
6897 struct ipr_ioasa_gata *g = &sata_port->ioasa;
6898 struct ata_taskfile *tf = &qc->result_tf;
6899
6900 tf->feature = g->error;
6901 tf->nsect = g->nsect;
6902 tf->lbal = g->lbal;
6903 tf->lbam = g->lbam;
6904 tf->lbah = g->lbah;
6905 tf->device = g->device;
6906 tf->command = g->status;
6907 tf->hob_nsect = g->hob_nsect;
6908 tf->hob_lbal = g->hob_lbal;
6909 tf->hob_lbam = g->hob_lbam;
6910 tf->hob_lbah = g->hob_lbah;
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006911
6912 return true;
6913}
6914
Brian King35a39692006-09-25 12:39:20 -05006915static struct ata_port_operations ipr_sata_ops = {
Brian King35a39692006-09-25 12:39:20 -05006916 .phy_reset = ipr_ata_phy_reset,
Tejun Heoa1efdab2008-03-25 12:22:50 +09006917 .hardreset = ipr_sata_reset,
Brian King35a39692006-09-25 12:39:20 -05006918 .post_internal_cmd = ipr_ata_post_internal,
Brian King35a39692006-09-25 12:39:20 -05006919 .qc_prep = ata_noop_qc_prep,
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006920 .qc_defer = ipr_qc_defer,
Brian King35a39692006-09-25 12:39:20 -05006921 .qc_issue = ipr_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006922 .qc_fill_rtf = ipr_qc_fill_rtf,
Brian King35a39692006-09-25 12:39:20 -05006923 .port_start = ata_sas_port_start,
6924 .port_stop = ata_sas_port_stop
6925};
6926
6927static struct ata_port_info sata_port_info = {
Shaohua Li5067c042015-03-12 10:32:18 -07006928 .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA |
6929 ATA_FLAG_SAS_HOST,
Sergei Shtylyov0f2e0332011-01-21 20:32:01 +03006930 .pio_mask = ATA_PIO4_ONLY,
6931 .mwdma_mask = ATA_MWDMA2,
6932 .udma_mask = ATA_UDMA6,
Brian King35a39692006-09-25 12:39:20 -05006933 .port_ops = &ipr_sata_ops
6934};
6935
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936#ifdef CONFIG_PPC_PSERIES
6937static const u16 ipr_blocked_processors[] = {
Michael Ellermand3dbeef2012-08-19 21:44:01 +00006938 PVR_NORTHSTAR,
6939 PVR_PULSAR,
6940 PVR_POWER4,
6941 PVR_ICESTAR,
6942 PVR_SSTAR,
6943 PVR_POWER4p,
6944 PVR_630,
6945 PVR_630p
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946};
6947
6948/**
6949 * ipr_invalid_adapter - Determine if this adapter is supported on this hardware
6950 * @ioa_cfg: ioa cfg struct
6951 *
6952 * Adapters that use Gemstone revision < 3.1 do not work reliably on
6953 * certain pSeries hardware. This function determines if the given
6954 * adapter is in one of these confgurations or not.
6955 *
6956 * Return value:
6957 * 1 if adapter is not supported / 0 if adapter is supported
6958 **/
6959static int ipr_invalid_adapter(struct ipr_ioa_cfg *ioa_cfg)
6960{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961 int i;
6962
Auke Kok44c10132007-06-08 15:46:36 -07006963 if ((ioa_cfg->type == 0x5702) && (ioa_cfg->pdev->revision < 4)) {
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006964 for (i = 0; i < ARRAY_SIZE(ipr_blocked_processors); i++) {
Michael Ellermand3dbeef2012-08-19 21:44:01 +00006965 if (pvr_version_is(ipr_blocked_processors[i]))
Auke Kok44c10132007-06-08 15:46:36 -07006966 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967 }
6968 }
6969 return 0;
6970}
6971#else
6972#define ipr_invalid_adapter(ioa_cfg) 0
6973#endif
6974
6975/**
6976 * ipr_ioa_bringdown_done - IOA bring down completion.
6977 * @ipr_cmd: ipr command struct
6978 *
6979 * This function processes the completion of an adapter bring down.
6980 * It wakes any reset sleepers.
6981 *
6982 * Return value:
6983 * IPR_RC_JOB_RETURN
6984 **/
6985static int ipr_ioa_bringdown_done(struct ipr_cmnd *ipr_cmd)
6986{
6987 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05006988 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989
6990 ENTER;
Brian Kingbfae7822013-01-30 23:45:08 -06006991 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].removing_ioa) {
6992 ipr_trace;
6993 spin_unlock_irq(ioa_cfg->host->host_lock);
6994 scsi_unblock_requests(ioa_cfg->host);
6995 spin_lock_irq(ioa_cfg->host->host_lock);
6996 }
6997
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998 ioa_cfg->in_reset_reload = 0;
6999 ioa_cfg->reset_retries = 0;
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05007000 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
7001 spin_lock(&ioa_cfg->hrrq[i]._lock);
7002 ioa_cfg->hrrq[i].ioa_is_dead = 1;
7003 spin_unlock(&ioa_cfg->hrrq[i]._lock);
7004 }
7005 wmb();
7006
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007007 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008 wake_up_all(&ioa_cfg->reset_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 LEAVE;
7010
7011 return IPR_RC_JOB_RETURN;
7012}
7013
7014/**
7015 * ipr_ioa_reset_done - IOA reset completion.
7016 * @ipr_cmd: ipr command struct
7017 *
7018 * This function processes the completion of an adapter reset.
7019 * It schedules any necessary mid-layer add/removes and
7020 * wakes any reset sleepers.
7021 *
7022 * Return value:
7023 * IPR_RC_JOB_RETURN
7024 **/
7025static int ipr_ioa_reset_done(struct ipr_cmnd *ipr_cmd)
7026{
7027 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7028 struct ipr_resource_entry *res;
7029 struct ipr_hostrcb *hostrcb, *temp;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007030 int i = 0, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
7032 ENTER;
7033 ioa_cfg->in_reset_reload = 0;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007034 for (j = 0; j < ioa_cfg->hrrq_num; j++) {
7035 spin_lock(&ioa_cfg->hrrq[j]._lock);
7036 ioa_cfg->hrrq[j].allow_cmds = 1;
7037 spin_unlock(&ioa_cfg->hrrq[j]._lock);
7038 }
7039 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040 ioa_cfg->reset_cmd = NULL;
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -06007041 ioa_cfg->doorbell |= IPR_RUNTIME_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042
7043 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Brian Kingf688f962014-12-02 12:47:37 -06007044 if (res->add_to_ml || res->del_from_ml) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045 ipr_trace;
7046 break;
7047 }
7048 }
7049 schedule_work(&ioa_cfg->work_q);
7050
7051 list_for_each_entry_safe(hostrcb, temp, &ioa_cfg->hostrcb_free_q, queue) {
7052 list_del(&hostrcb->queue);
7053 if (i++ < IPR_NUM_LOG_HCAMS)
7054 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
7055 else
7056 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
7057 }
7058
Brian King6bb04172007-04-26 16:00:08 -05007059 scsi_report_bus_reset(ioa_cfg->host, IPR_VSET_BUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060 dev_info(&ioa_cfg->pdev->dev, "IOA initialized.\n");
7061
7062 ioa_cfg->reset_retries = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007063 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064 wake_up_all(&ioa_cfg->reset_wait_q);
7065
Mark Nelson30237852008-12-10 12:23:20 +11007066 spin_unlock(ioa_cfg->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067 scsi_unblock_requests(ioa_cfg->host);
Mark Nelson30237852008-12-10 12:23:20 +11007068 spin_lock(ioa_cfg->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007070 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071 scsi_block_requests(ioa_cfg->host);
7072
Brian Kingf688f962014-12-02 12:47:37 -06007073 schedule_work(&ioa_cfg->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074 LEAVE;
7075 return IPR_RC_JOB_RETURN;
7076}
7077
7078/**
7079 * ipr_set_sup_dev_dflt - Initialize a Set Supported Device buffer
7080 * @supported_dev: supported device struct
7081 * @vpids: vendor product id struct
7082 *
7083 * Return value:
7084 * none
7085 **/
7086static void ipr_set_sup_dev_dflt(struct ipr_supported_device *supported_dev,
7087 struct ipr_std_inq_vpids *vpids)
7088{
7089 memset(supported_dev, 0, sizeof(struct ipr_supported_device));
7090 memcpy(&supported_dev->vpids, vpids, sizeof(struct ipr_std_inq_vpids));
7091 supported_dev->num_records = 1;
7092 supported_dev->data_length =
7093 cpu_to_be16(sizeof(struct ipr_supported_device));
7094 supported_dev->reserved = 0;
7095}
7096
7097/**
7098 * ipr_set_supported_devs - Send Set Supported Devices for a device
7099 * @ipr_cmd: ipr command struct
7100 *
Wayne Boyera32c0552010-02-19 13:23:36 -08007101 * This function sends a Set Supported Devices to the adapter
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102 *
7103 * Return value:
7104 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7105 **/
7106static int ipr_set_supported_devs(struct ipr_cmnd *ipr_cmd)
7107{
7108 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7109 struct ipr_supported_device *supp_dev = &ioa_cfg->vpd_cbs->supp_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7111 struct ipr_resource_entry *res = ipr_cmd->u.res;
7112
7113 ipr_cmd->job_step = ipr_ioa_reset_done;
7114
7115 list_for_each_entry_continue(res, &ioa_cfg->used_res_q, queue) {
Brian Kinge4fbf442006-03-29 09:37:22 -06007116 if (!ipr_is_scsi_disk(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 continue;
7118
7119 ipr_cmd->u.res = res;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007120 ipr_set_sup_dev_dflt(supp_dev, &res->std_inq_data.vpids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121
7122 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7123 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
7124 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7125
7126 ioarcb->cmd_pkt.cdb[0] = IPR_SET_SUPPORTED_DEVICES;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007127 ioarcb->cmd_pkt.cdb[1] = IPR_SET_ALL_SUPPORTED_DEVICES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128 ioarcb->cmd_pkt.cdb[7] = (sizeof(struct ipr_supported_device) >> 8) & 0xff;
7129 ioarcb->cmd_pkt.cdb[8] = sizeof(struct ipr_supported_device) & 0xff;
7130
Wayne Boyera32c0552010-02-19 13:23:36 -08007131 ipr_init_ioadl(ipr_cmd,
7132 ioa_cfg->vpd_cbs_dma +
7133 offsetof(struct ipr_misc_cbs, supp_dev),
7134 sizeof(struct ipr_supported_device),
7135 IPR_IOADL_FLAGS_WRITE_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136
7137 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
7138 IPR_SET_SUP_DEVICE_TIMEOUT);
7139
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007140 if (!ioa_cfg->sis64)
7141 ipr_cmd->job_step = ipr_set_supported_devs;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007142 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143 return IPR_RC_JOB_RETURN;
7144 }
7145
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007146 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147 return IPR_RC_JOB_CONTINUE;
7148}
7149
7150/**
7151 * ipr_get_mode_page - Locate specified mode page
7152 * @mode_pages: mode page buffer
7153 * @page_code: page code to find
7154 * @len: minimum required length for mode page
7155 *
7156 * Return value:
7157 * pointer to mode page / NULL on failure
7158 **/
7159static void *ipr_get_mode_page(struct ipr_mode_pages *mode_pages,
7160 u32 page_code, u32 len)
7161{
7162 struct ipr_mode_page_hdr *mode_hdr;
7163 u32 page_length;
7164 u32 length;
7165
7166 if (!mode_pages || (mode_pages->hdr.length == 0))
7167 return NULL;
7168
7169 length = (mode_pages->hdr.length + 1) - 4 - mode_pages->hdr.block_desc_len;
7170 mode_hdr = (struct ipr_mode_page_hdr *)
7171 (mode_pages->data + mode_pages->hdr.block_desc_len);
7172
7173 while (length) {
7174 if (IPR_GET_MODE_PAGE_CODE(mode_hdr) == page_code) {
7175 if (mode_hdr->page_length >= (len - sizeof(struct ipr_mode_page_hdr)))
7176 return mode_hdr;
7177 break;
7178 } else {
7179 page_length = (sizeof(struct ipr_mode_page_hdr) +
7180 mode_hdr->page_length);
7181 length -= page_length;
7182 mode_hdr = (struct ipr_mode_page_hdr *)
7183 ((unsigned long)mode_hdr + page_length);
7184 }
7185 }
7186 return NULL;
7187}
7188
7189/**
7190 * ipr_check_term_power - Check for term power errors
7191 * @ioa_cfg: ioa config struct
7192 * @mode_pages: IOAFP mode pages buffer
7193 *
7194 * Check the IOAFP's mode page 28 for term power errors
7195 *
7196 * Return value:
7197 * nothing
7198 **/
7199static void ipr_check_term_power(struct ipr_ioa_cfg *ioa_cfg,
7200 struct ipr_mode_pages *mode_pages)
7201{
7202 int i;
7203 int entry_length;
7204 struct ipr_dev_bus_entry *bus;
7205 struct ipr_mode_page28 *mode_page;
7206
7207 mode_page = ipr_get_mode_page(mode_pages, 0x28,
7208 sizeof(struct ipr_mode_page28));
7209
7210 entry_length = mode_page->entry_length;
7211
7212 bus = mode_page->bus;
7213
7214 for (i = 0; i < mode_page->num_entries; i++) {
7215 if (bus->flags & IPR_SCSI_ATTR_NO_TERM_PWR) {
7216 dev_err(&ioa_cfg->pdev->dev,
7217 "Term power is absent on scsi bus %d\n",
7218 bus->res_addr.bus);
7219 }
7220
7221 bus = (struct ipr_dev_bus_entry *)((char *)bus + entry_length);
7222 }
7223}
7224
7225/**
7226 * ipr_scsi_bus_speed_limit - Limit the SCSI speed based on SES table
7227 * @ioa_cfg: ioa config struct
7228 *
7229 * Looks through the config table checking for SES devices. If
7230 * the SES device is in the SES table indicating a maximum SCSI
7231 * bus speed, the speed is limited for the bus.
7232 *
7233 * Return value:
7234 * none
7235 **/
7236static void ipr_scsi_bus_speed_limit(struct ipr_ioa_cfg *ioa_cfg)
7237{
7238 u32 max_xfer_rate;
7239 int i;
7240
7241 for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
7242 max_xfer_rate = ipr_get_max_scsi_speed(ioa_cfg, i,
7243 ioa_cfg->bus_attr[i].bus_width);
7244
7245 if (max_xfer_rate < ioa_cfg->bus_attr[i].max_xfer_rate)
7246 ioa_cfg->bus_attr[i].max_xfer_rate = max_xfer_rate;
7247 }
7248}
7249
7250/**
7251 * ipr_modify_ioafp_mode_page_28 - Modify IOAFP Mode Page 28
7252 * @ioa_cfg: ioa config struct
7253 * @mode_pages: mode page 28 buffer
7254 *
7255 * Updates mode page 28 based on driver configuration
7256 *
7257 * Return value:
7258 * none
7259 **/
7260static void ipr_modify_ioafp_mode_page_28(struct ipr_ioa_cfg *ioa_cfg,
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03007261 struct ipr_mode_pages *mode_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262{
7263 int i, entry_length;
7264 struct ipr_dev_bus_entry *bus;
7265 struct ipr_bus_attributes *bus_attr;
7266 struct ipr_mode_page28 *mode_page;
7267
7268 mode_page = ipr_get_mode_page(mode_pages, 0x28,
7269 sizeof(struct ipr_mode_page28));
7270
7271 entry_length = mode_page->entry_length;
7272
7273 /* Loop for each device bus entry */
7274 for (i = 0, bus = mode_page->bus;
7275 i < mode_page->num_entries;
7276 i++, bus = (struct ipr_dev_bus_entry *)((u8 *)bus + entry_length)) {
7277 if (bus->res_addr.bus > IPR_MAX_NUM_BUSES) {
7278 dev_err(&ioa_cfg->pdev->dev,
7279 "Invalid resource address reported: 0x%08X\n",
7280 IPR_GET_PHYS_LOC(bus->res_addr));
7281 continue;
7282 }
7283
7284 bus_attr = &ioa_cfg->bus_attr[i];
7285 bus->extended_reset_delay = IPR_EXTENDED_RESET_DELAY;
7286 bus->bus_width = bus_attr->bus_width;
7287 bus->max_xfer_rate = cpu_to_be32(bus_attr->max_xfer_rate);
7288 bus->flags &= ~IPR_SCSI_ATTR_QAS_MASK;
7289 if (bus_attr->qas_enabled)
7290 bus->flags |= IPR_SCSI_ATTR_ENABLE_QAS;
7291 else
7292 bus->flags |= IPR_SCSI_ATTR_DISABLE_QAS;
7293 }
7294}
7295
7296/**
7297 * ipr_build_mode_select - Build a mode select command
7298 * @ipr_cmd: ipr command struct
7299 * @res_handle: resource handle to send command to
7300 * @parm: Byte 2 of Mode Sense command
7301 * @dma_addr: DMA buffer address
7302 * @xfer_len: data transfer length
7303 *
7304 * Return value:
7305 * none
7306 **/
7307static void ipr_build_mode_select(struct ipr_cmnd *ipr_cmd,
Wayne Boyera32c0552010-02-19 13:23:36 -08007308 __be32 res_handle, u8 parm,
7309 dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7312
7313 ioarcb->res_handle = res_handle;
7314 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7315 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
7316 ioarcb->cmd_pkt.cdb[0] = MODE_SELECT;
7317 ioarcb->cmd_pkt.cdb[1] = parm;
7318 ioarcb->cmd_pkt.cdb[4] = xfer_len;
7319
Wayne Boyera32c0552010-02-19 13:23:36 -08007320 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_WRITE_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321}
7322
7323/**
7324 * ipr_ioafp_mode_select_page28 - Issue Mode Select Page 28 to IOA
7325 * @ipr_cmd: ipr command struct
7326 *
7327 * This function sets up the SCSI bus attributes and sends
7328 * a Mode Select for Page 28 to activate them.
7329 *
7330 * Return value:
7331 * IPR_RC_JOB_RETURN
7332 **/
7333static int ipr_ioafp_mode_select_page28(struct ipr_cmnd *ipr_cmd)
7334{
7335 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7336 struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
7337 int length;
7338
7339 ENTER;
Brian King47338042006-02-08 20:57:42 -06007340 ipr_scsi_bus_speed_limit(ioa_cfg);
7341 ipr_check_term_power(ioa_cfg, mode_pages);
7342 ipr_modify_ioafp_mode_page_28(ioa_cfg, mode_pages);
7343 length = mode_pages->hdr.length + 1;
7344 mode_pages->hdr.length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345
7346 ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
7347 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
7348 length);
7349
Wayne Boyerf72919e2010-02-19 13:24:21 -08007350 ipr_cmd->job_step = ipr_set_supported_devs;
7351 ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
7352 struct ipr_resource_entry, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7354
7355 LEAVE;
7356 return IPR_RC_JOB_RETURN;
7357}
7358
7359/**
7360 * ipr_build_mode_sense - Builds a mode sense command
7361 * @ipr_cmd: ipr command struct
7362 * @res: resource entry struct
7363 * @parm: Byte 2 of mode sense command
7364 * @dma_addr: DMA address of mode sense buffer
7365 * @xfer_len: Size of DMA buffer
7366 *
7367 * Return value:
7368 * none
7369 **/
7370static void ipr_build_mode_sense(struct ipr_cmnd *ipr_cmd,
7371 __be32 res_handle,
Wayne Boyera32c0552010-02-19 13:23:36 -08007372 u8 parm, dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7375
7376 ioarcb->res_handle = res_handle;
7377 ioarcb->cmd_pkt.cdb[0] = MODE_SENSE;
7378 ioarcb->cmd_pkt.cdb[2] = parm;
7379 ioarcb->cmd_pkt.cdb[4] = xfer_len;
7380 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7381
Wayne Boyera32c0552010-02-19 13:23:36 -08007382 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383}
7384
7385/**
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007386 * ipr_reset_cmd_failed - Handle failure of IOA reset command
7387 * @ipr_cmd: ipr command struct
7388 *
7389 * This function handles the failure of an IOA bringup command.
7390 *
7391 * Return value:
7392 * IPR_RC_JOB_RETURN
7393 **/
7394static int ipr_reset_cmd_failed(struct ipr_cmnd *ipr_cmd)
7395{
7396 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07007397 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007398
7399 dev_err(&ioa_cfg->pdev->dev,
7400 "0x%02X failed with IOASC: 0x%08X\n",
7401 ipr_cmd->ioarcb.cmd_pkt.cdb[0], ioasc);
7402
7403 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007404 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007405 return IPR_RC_JOB_RETURN;
7406}
7407
7408/**
7409 * ipr_reset_mode_sense_failed - Handle failure of IOAFP mode sense
7410 * @ipr_cmd: ipr command struct
7411 *
7412 * This function handles the failure of a Mode Sense to the IOAFP.
7413 * Some adapters do not handle all mode pages.
7414 *
7415 * Return value:
7416 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7417 **/
7418static int ipr_reset_mode_sense_failed(struct ipr_cmnd *ipr_cmd)
7419{
Wayne Boyerf72919e2010-02-19 13:24:21 -08007420 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07007421 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007422
7423 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
Wayne Boyerf72919e2010-02-19 13:24:21 -08007424 ipr_cmd->job_step = ipr_set_supported_devs;
7425 ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
7426 struct ipr_resource_entry, queue);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007427 return IPR_RC_JOB_CONTINUE;
7428 }
7429
7430 return ipr_reset_cmd_failed(ipr_cmd);
7431}
7432
7433/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434 * ipr_ioafp_mode_sense_page28 - Issue Mode Sense Page 28 to IOA
7435 * @ipr_cmd: ipr command struct
7436 *
7437 * This function send a Page 28 mode sense to the IOA to
7438 * retrieve SCSI bus attributes.
7439 *
7440 * Return value:
7441 * IPR_RC_JOB_RETURN
7442 **/
7443static int ipr_ioafp_mode_sense_page28(struct ipr_cmnd *ipr_cmd)
7444{
7445 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7446
7447 ENTER;
7448 ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
7449 0x28, ioa_cfg->vpd_cbs_dma +
7450 offsetof(struct ipr_misc_cbs, mode_pages),
7451 sizeof(struct ipr_mode_pages));
7452
7453 ipr_cmd->job_step = ipr_ioafp_mode_select_page28;
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007454 ipr_cmd->job_step_failed = ipr_reset_mode_sense_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455
7456 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7457
7458 LEAVE;
7459 return IPR_RC_JOB_RETURN;
7460}
7461
7462/**
Brian Kingac09c342007-04-26 16:00:16 -05007463 * ipr_ioafp_mode_select_page24 - Issue Mode Select to IOA
7464 * @ipr_cmd: ipr command struct
7465 *
7466 * This function enables dual IOA RAID support if possible.
7467 *
7468 * Return value:
7469 * IPR_RC_JOB_RETURN
7470 **/
7471static int ipr_ioafp_mode_select_page24(struct ipr_cmnd *ipr_cmd)
7472{
7473 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7474 struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
7475 struct ipr_mode_page24 *mode_page;
7476 int length;
7477
7478 ENTER;
7479 mode_page = ipr_get_mode_page(mode_pages, 0x24,
7480 sizeof(struct ipr_mode_page24));
7481
7482 if (mode_page)
7483 mode_page->flags |= IPR_ENABLE_DUAL_IOA_AF;
7484
7485 length = mode_pages->hdr.length + 1;
7486 mode_pages->hdr.length = 0;
7487
7488 ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
7489 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
7490 length);
7491
7492 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
7493 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7494
7495 LEAVE;
7496 return IPR_RC_JOB_RETURN;
7497}
7498
7499/**
7500 * ipr_reset_mode_sense_page24_failed - Handle failure of IOAFP mode sense
7501 * @ipr_cmd: ipr command struct
7502 *
7503 * This function handles the failure of a Mode Sense to the IOAFP.
7504 * Some adapters do not handle all mode pages.
7505 *
7506 * Return value:
7507 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7508 **/
7509static int ipr_reset_mode_sense_page24_failed(struct ipr_cmnd *ipr_cmd)
7510{
Wayne Boyer96d21f02010-05-10 09:13:27 -07007511 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian Kingac09c342007-04-26 16:00:16 -05007512
7513 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
7514 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
7515 return IPR_RC_JOB_CONTINUE;
7516 }
7517
7518 return ipr_reset_cmd_failed(ipr_cmd);
7519}
7520
7521/**
7522 * ipr_ioafp_mode_sense_page24 - Issue Page 24 Mode Sense to IOA
7523 * @ipr_cmd: ipr command struct
7524 *
7525 * This function send a mode sense to the IOA to retrieve
7526 * the IOA Advanced Function Control mode page.
7527 *
7528 * Return value:
7529 * IPR_RC_JOB_RETURN
7530 **/
7531static int ipr_ioafp_mode_sense_page24(struct ipr_cmnd *ipr_cmd)
7532{
7533 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7534
7535 ENTER;
7536 ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
7537 0x24, ioa_cfg->vpd_cbs_dma +
7538 offsetof(struct ipr_misc_cbs, mode_pages),
7539 sizeof(struct ipr_mode_pages));
7540
7541 ipr_cmd->job_step = ipr_ioafp_mode_select_page24;
7542 ipr_cmd->job_step_failed = ipr_reset_mode_sense_page24_failed;
7543
7544 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7545
7546 LEAVE;
7547 return IPR_RC_JOB_RETURN;
7548}
7549
7550/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 * ipr_init_res_table - Initialize the resource table
7552 * @ipr_cmd: ipr command struct
7553 *
7554 * This function looks through the existing resource table, comparing
7555 * it with the config table. This function will take care of old/new
7556 * devices and schedule adding/removing them from the mid-layer
7557 * as appropriate.
7558 *
7559 * Return value:
7560 * IPR_RC_JOB_CONTINUE
7561 **/
7562static int ipr_init_res_table(struct ipr_cmnd *ipr_cmd)
7563{
7564 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7565 struct ipr_resource_entry *res, *temp;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007566 struct ipr_config_table_entry_wrapper cfgtew;
7567 int entries, found, flag, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568 LIST_HEAD(old_res);
7569
7570 ENTER;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007571 if (ioa_cfg->sis64)
7572 flag = ioa_cfg->u.cfg_table64->hdr64.flags;
7573 else
7574 flag = ioa_cfg->u.cfg_table->hdr.flags;
7575
7576 if (flag & IPR_UCODE_DOWNLOAD_REQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577 dev_err(&ioa_cfg->pdev->dev, "Microcode download required\n");
7578
7579 list_for_each_entry_safe(res, temp, &ioa_cfg->used_res_q, queue)
7580 list_move_tail(&res->queue, &old_res);
7581
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007582 if (ioa_cfg->sis64)
Wayne Boyer438b0332010-05-10 09:13:00 -07007583 entries = be16_to_cpu(ioa_cfg->u.cfg_table64->hdr64.num_entries);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007584 else
7585 entries = ioa_cfg->u.cfg_table->hdr.num_entries;
7586
7587 for (i = 0; i < entries; i++) {
7588 if (ioa_cfg->sis64)
7589 cfgtew.u.cfgte64 = &ioa_cfg->u.cfg_table64->dev[i];
7590 else
7591 cfgtew.u.cfgte = &ioa_cfg->u.cfg_table->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592 found = 0;
7593
7594 list_for_each_entry_safe(res, temp, &old_res, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007595 if (ipr_is_same_device(res, &cfgtew)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007596 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
7597 found = 1;
7598 break;
7599 }
7600 }
7601
7602 if (!found) {
7603 if (list_empty(&ioa_cfg->free_res_q)) {
7604 dev_err(&ioa_cfg->pdev->dev, "Too many devices attached\n");
7605 break;
7606 }
7607
7608 found = 1;
7609 res = list_entry(ioa_cfg->free_res_q.next,
7610 struct ipr_resource_entry, queue);
7611 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007612 ipr_init_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613 res->add_to_ml = 1;
Wayne Boyer56115592010-06-10 14:46:34 -07007614 } else if (res->sdev && (ipr_is_vset_device(res) || ipr_is_scsi_disk(res)))
7615 res->sdev->allow_restart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007616
7617 if (found)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007618 ipr_update_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619 }
7620
7621 list_for_each_entry_safe(res, temp, &old_res, queue) {
7622 if (res->sdev) {
7623 res->del_from_ml = 1;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007624 res->res_handle = IPR_INVALID_RES_HANDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 }
7627 }
7628
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007629 list_for_each_entry_safe(res, temp, &old_res, queue) {
7630 ipr_clear_res_target(res);
7631 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
7632 }
7633
Brian Kingac09c342007-04-26 16:00:16 -05007634 if (ioa_cfg->dual_raid && ipr_dual_ioa_raid)
7635 ipr_cmd->job_step = ipr_ioafp_mode_sense_page24;
7636 else
7637 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638
7639 LEAVE;
7640 return IPR_RC_JOB_CONTINUE;
7641}
7642
7643/**
7644 * ipr_ioafp_query_ioa_cfg - Send a Query IOA Config to the adapter.
7645 * @ipr_cmd: ipr command struct
7646 *
7647 * This function sends a Query IOA Configuration command
7648 * to the adapter to retrieve the IOA configuration table.
7649 *
7650 * Return value:
7651 * IPR_RC_JOB_RETURN
7652 **/
7653static int ipr_ioafp_query_ioa_cfg(struct ipr_cmnd *ipr_cmd)
7654{
7655 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7656 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
Brian Kingac09c342007-04-26 16:00:16 -05007658 struct ipr_inquiry_cap *cap = &ioa_cfg->vpd_cbs->cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659
7660 ENTER;
Brian Kingac09c342007-04-26 16:00:16 -05007661 if (cap->cap & IPR_CAP_DUAL_IOA_RAID)
7662 ioa_cfg->dual_raid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 dev_info(&ioa_cfg->pdev->dev, "Adapter firmware version: %02X%02X%02X%02X\n",
7664 ucode_vpd->major_release, ucode_vpd->card_type,
7665 ucode_vpd->minor_release[0], ucode_vpd->minor_release[1]);
7666 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7667 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7668
7669 ioarcb->cmd_pkt.cdb[0] = IPR_QUERY_IOA_CONFIG;
Wayne Boyer438b0332010-05-10 09:13:00 -07007670 ioarcb->cmd_pkt.cdb[6] = (ioa_cfg->cfg_table_size >> 16) & 0xff;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007671 ioarcb->cmd_pkt.cdb[7] = (ioa_cfg->cfg_table_size >> 8) & 0xff;
7672 ioarcb->cmd_pkt.cdb[8] = ioa_cfg->cfg_table_size & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007674 ipr_init_ioadl(ipr_cmd, ioa_cfg->cfg_table_dma, ioa_cfg->cfg_table_size,
Wayne Boyera32c0552010-02-19 13:23:36 -08007675 IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676
7677 ipr_cmd->job_step = ipr_init_res_table;
7678
7679 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7680
7681 LEAVE;
7682 return IPR_RC_JOB_RETURN;
7683}
7684
Gabriel Krisman Bertazi1a47af22015-11-03 16:26:09 -02007685static int ipr_ioa_service_action_failed(struct ipr_cmnd *ipr_cmd)
7686{
7687 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
7688
7689 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT)
7690 return IPR_RC_JOB_CONTINUE;
7691
7692 return ipr_reset_cmd_failed(ipr_cmd);
7693}
7694
7695static void ipr_build_ioa_service_action(struct ipr_cmnd *ipr_cmd,
7696 __be32 res_handle, u8 sa_code)
7697{
7698 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7699
7700 ioarcb->res_handle = res_handle;
7701 ioarcb->cmd_pkt.cdb[0] = IPR_IOA_SERVICE_ACTION;
7702 ioarcb->cmd_pkt.cdb[1] = sa_code;
7703 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7704}
7705
7706/**
7707 * ipr_ioafp_set_caching_parameters - Issue Set Cache parameters service
7708 * action
7709 *
7710 * Return value:
7711 * none
7712 **/
7713static int ipr_ioafp_set_caching_parameters(struct ipr_cmnd *ipr_cmd)
7714{
7715 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7716 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7717 struct ipr_inquiry_pageC4 *pageC4 = &ioa_cfg->vpd_cbs->pageC4_data;
7718
7719 ENTER;
7720
7721 ipr_cmd->job_step = ipr_ioafp_query_ioa_cfg;
7722
7723 if (pageC4->cache_cap[0] & IPR_CAP_SYNC_CACHE) {
7724 ipr_build_ioa_service_action(ipr_cmd,
7725 cpu_to_be32(IPR_IOA_RES_HANDLE),
7726 IPR_IOA_SA_CHANGE_CACHE_PARAMS);
7727
7728 ioarcb->cmd_pkt.cdb[2] = 0x40;
7729
7730 ipr_cmd->job_step_failed = ipr_ioa_service_action_failed;
7731 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
7732 IPR_SET_SUP_DEVICE_TIMEOUT);
7733
7734 LEAVE;
7735 return IPR_RC_JOB_RETURN;
7736 }
7737
7738 LEAVE;
7739 return IPR_RC_JOB_CONTINUE;
7740}
7741
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742/**
7743 * ipr_ioafp_inquiry - Send an Inquiry to the adapter.
7744 * @ipr_cmd: ipr command struct
7745 *
7746 * This utility function sends an inquiry to the adapter.
7747 *
7748 * Return value:
7749 * none
7750 **/
7751static void ipr_ioafp_inquiry(struct ipr_cmnd *ipr_cmd, u8 flags, u8 page,
Wayne Boyera32c0552010-02-19 13:23:36 -08007752 dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753{
7754 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755
7756 ENTER;
7757 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7758 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7759
7760 ioarcb->cmd_pkt.cdb[0] = INQUIRY;
7761 ioarcb->cmd_pkt.cdb[1] = flags;
7762 ioarcb->cmd_pkt.cdb[2] = page;
7763 ioarcb->cmd_pkt.cdb[4] = xfer_len;
7764
Wayne Boyera32c0552010-02-19 13:23:36 -08007765 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766
7767 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7768 LEAVE;
7769}
7770
7771/**
brking@us.ibm.com62275042005-11-01 17:01:14 -06007772 * ipr_inquiry_page_supported - Is the given inquiry page supported
7773 * @page0: inquiry page 0 buffer
7774 * @page: page code.
7775 *
7776 * This function determines if the specified inquiry page is supported.
7777 *
7778 * Return value:
7779 * 1 if page is supported / 0 if not
7780 **/
7781static int ipr_inquiry_page_supported(struct ipr_inquiry_page0 *page0, u8 page)
7782{
7783 int i;
7784
7785 for (i = 0; i < min_t(u8, page0->len, IPR_INQUIRY_PAGE0_ENTRIES); i++)
7786 if (page0->page[i] == page)
7787 return 1;
7788
7789 return 0;
7790}
7791
7792/**
Gabriel Krisman Bertazi1021b3f2015-11-03 16:26:08 -02007793 * ipr_ioafp_pageC4_inquiry - Send a Page 0xC4 Inquiry to the adapter.
7794 * @ipr_cmd: ipr command struct
7795 *
7796 * This function sends a Page 0xC4 inquiry to the adapter
7797 * to retrieve software VPD information.
7798 *
7799 * Return value:
7800 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7801 **/
7802static int ipr_ioafp_pageC4_inquiry(struct ipr_cmnd *ipr_cmd)
7803{
7804 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7805 struct ipr_inquiry_page0 *page0 = &ioa_cfg->vpd_cbs->page0_data;
7806 struct ipr_inquiry_pageC4 *pageC4 = &ioa_cfg->vpd_cbs->pageC4_data;
7807
7808 ENTER;
Gabriel Krisman Bertazi1a47af22015-11-03 16:26:09 -02007809 ipr_cmd->job_step = ipr_ioafp_set_caching_parameters;
Gabriel Krisman Bertazi1021b3f2015-11-03 16:26:08 -02007810 memset(pageC4, 0, sizeof(*pageC4));
7811
7812 if (ipr_inquiry_page_supported(page0, 0xC4)) {
7813 ipr_ioafp_inquiry(ipr_cmd, 1, 0xC4,
7814 (ioa_cfg->vpd_cbs_dma
7815 + offsetof(struct ipr_misc_cbs,
7816 pageC4_data)),
7817 sizeof(struct ipr_inquiry_pageC4));
7818 return IPR_RC_JOB_RETURN;
7819 }
7820
7821 LEAVE;
7822 return IPR_RC_JOB_CONTINUE;
7823}
7824
7825/**
Brian Kingac09c342007-04-26 16:00:16 -05007826 * ipr_ioafp_cap_inquiry - Send a Page 0xD0 Inquiry to the adapter.
7827 * @ipr_cmd: ipr command struct
7828 *
7829 * This function sends a Page 0xD0 inquiry to the adapter
7830 * to retrieve adapter capabilities.
7831 *
7832 * Return value:
7833 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7834 **/
7835static int ipr_ioafp_cap_inquiry(struct ipr_cmnd *ipr_cmd)
7836{
7837 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7838 struct ipr_inquiry_page0 *page0 = &ioa_cfg->vpd_cbs->page0_data;
7839 struct ipr_inquiry_cap *cap = &ioa_cfg->vpd_cbs->cap;
7840
7841 ENTER;
Gabriel Krisman Bertazi1021b3f2015-11-03 16:26:08 -02007842 ipr_cmd->job_step = ipr_ioafp_pageC4_inquiry;
Brian Kingac09c342007-04-26 16:00:16 -05007843 memset(cap, 0, sizeof(*cap));
7844
7845 if (ipr_inquiry_page_supported(page0, 0xD0)) {
7846 ipr_ioafp_inquiry(ipr_cmd, 1, 0xD0,
7847 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, cap),
7848 sizeof(struct ipr_inquiry_cap));
7849 return IPR_RC_JOB_RETURN;
7850 }
7851
7852 LEAVE;
7853 return IPR_RC_JOB_CONTINUE;
7854}
7855
7856/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857 * ipr_ioafp_page3_inquiry - Send a Page 3 Inquiry to the adapter.
7858 * @ipr_cmd: ipr command struct
7859 *
7860 * This function sends a Page 3 inquiry to the adapter
7861 * to retrieve software VPD information.
7862 *
7863 * Return value:
7864 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7865 **/
7866static int ipr_ioafp_page3_inquiry(struct ipr_cmnd *ipr_cmd)
7867{
7868 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007869
7870 ENTER;
7871
Brian Kingac09c342007-04-26 16:00:16 -05007872 ipr_cmd->job_step = ipr_ioafp_cap_inquiry;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007873
7874 ipr_ioafp_inquiry(ipr_cmd, 1, 3,
7875 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page3_data),
7876 sizeof(struct ipr_inquiry_page3));
7877
7878 LEAVE;
7879 return IPR_RC_JOB_RETURN;
7880}
7881
7882/**
7883 * ipr_ioafp_page0_inquiry - Send a Page 0 Inquiry to the adapter.
7884 * @ipr_cmd: ipr command struct
7885 *
7886 * This function sends a Page 0 inquiry to the adapter
7887 * to retrieve supported inquiry pages.
7888 *
7889 * Return value:
7890 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7891 **/
7892static int ipr_ioafp_page0_inquiry(struct ipr_cmnd *ipr_cmd)
7893{
7894 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895 char type[5];
7896
7897 ENTER;
7898
7899 /* Grab the type out of the VPD and store it away */
7900 memcpy(type, ioa_cfg->vpd_cbs->ioa_vpd.std_inq_data.vpids.product_id, 4);
7901 type[4] = '\0';
7902 ioa_cfg->type = simple_strtoul((char *)type, NULL, 16);
7903
Brian Kingf688f962014-12-02 12:47:37 -06007904 if (ipr_invalid_adapter(ioa_cfg)) {
7905 dev_err(&ioa_cfg->pdev->dev,
7906 "Adapter not supported in this hardware configuration.\n");
7907
7908 if (!ipr_testmode) {
7909 ioa_cfg->reset_retries += IPR_NUM_RESET_RELOAD_RETRIES;
7910 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
7911 list_add_tail(&ipr_cmd->queue,
7912 &ioa_cfg->hrrq->hrrq_free_q);
7913 return IPR_RC_JOB_RETURN;
7914 }
7915 }
7916
brking@us.ibm.com62275042005-11-01 17:01:14 -06007917 ipr_cmd->job_step = ipr_ioafp_page3_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918
brking@us.ibm.com62275042005-11-01 17:01:14 -06007919 ipr_ioafp_inquiry(ipr_cmd, 1, 0,
7920 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page0_data),
7921 sizeof(struct ipr_inquiry_page0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922
7923 LEAVE;
7924 return IPR_RC_JOB_RETURN;
7925}
7926
7927/**
7928 * ipr_ioafp_std_inquiry - Send a Standard Inquiry to the adapter.
7929 * @ipr_cmd: ipr command struct
7930 *
7931 * This function sends a standard inquiry to the adapter.
7932 *
7933 * Return value:
7934 * IPR_RC_JOB_RETURN
7935 **/
7936static int ipr_ioafp_std_inquiry(struct ipr_cmnd *ipr_cmd)
7937{
7938 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7939
7940 ENTER;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007941 ipr_cmd->job_step = ipr_ioafp_page0_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942
7943 ipr_ioafp_inquiry(ipr_cmd, 0, 0,
7944 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, ioa_vpd),
7945 sizeof(struct ipr_ioa_vpd));
7946
7947 LEAVE;
7948 return IPR_RC_JOB_RETURN;
7949}
7950
7951/**
Wayne Boyer214777b2010-02-19 13:24:26 -08007952 * ipr_ioafp_identify_hrrq - Send Identify Host RRQ.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 * @ipr_cmd: ipr command struct
7954 *
7955 * This function send an Identify Host Request Response Queue
7956 * command to establish the HRRQ with the adapter.
7957 *
7958 * Return value:
7959 * IPR_RC_JOB_RETURN
7960 **/
Wayne Boyer214777b2010-02-19 13:24:26 -08007961static int ipr_ioafp_identify_hrrq(struct ipr_cmnd *ipr_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962{
7963 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7964 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007965 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966
7967 ENTER;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007968 ipr_cmd->job_step = ipr_ioafp_std_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969 dev_info(&ioa_cfg->pdev->dev, "Starting IOA initialization sequence.\n");
7970
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007971 if (ioa_cfg->identify_hrrq_index < ioa_cfg->hrrq_num) {
7972 hrrq = &ioa_cfg->hrrq[ioa_cfg->identify_hrrq_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007973
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007974 ioarcb->cmd_pkt.cdb[0] = IPR_ID_HOST_RR_Q;
7975 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007977 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7978 if (ioa_cfg->sis64)
7979 ioarcb->cmd_pkt.cdb[1] = 0x1;
7980
7981 if (ioa_cfg->nvectors == 1)
7982 ioarcb->cmd_pkt.cdb[1] &= ~IPR_ID_HRRQ_SELE_ENABLE;
7983 else
7984 ioarcb->cmd_pkt.cdb[1] |= IPR_ID_HRRQ_SELE_ENABLE;
7985
7986 ioarcb->cmd_pkt.cdb[2] =
7987 ((u64) hrrq->host_rrq_dma >> 24) & 0xff;
7988 ioarcb->cmd_pkt.cdb[3] =
7989 ((u64) hrrq->host_rrq_dma >> 16) & 0xff;
7990 ioarcb->cmd_pkt.cdb[4] =
7991 ((u64) hrrq->host_rrq_dma >> 8) & 0xff;
7992 ioarcb->cmd_pkt.cdb[5] =
7993 ((u64) hrrq->host_rrq_dma) & 0xff;
7994 ioarcb->cmd_pkt.cdb[7] =
7995 ((sizeof(u32) * hrrq->size) >> 8) & 0xff;
7996 ioarcb->cmd_pkt.cdb[8] =
7997 (sizeof(u32) * hrrq->size) & 0xff;
7998
7999 if (ioarcb->cmd_pkt.cdb[1] & IPR_ID_HRRQ_SELE_ENABLE)
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008000 ioarcb->cmd_pkt.cdb[9] =
8001 ioa_cfg->identify_hrrq_index;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008002
8003 if (ioa_cfg->sis64) {
8004 ioarcb->cmd_pkt.cdb[10] =
8005 ((u64) hrrq->host_rrq_dma >> 56) & 0xff;
8006 ioarcb->cmd_pkt.cdb[11] =
8007 ((u64) hrrq->host_rrq_dma >> 48) & 0xff;
8008 ioarcb->cmd_pkt.cdb[12] =
8009 ((u64) hrrq->host_rrq_dma >> 40) & 0xff;
8010 ioarcb->cmd_pkt.cdb[13] =
8011 ((u64) hrrq->host_rrq_dma >> 32) & 0xff;
8012 }
8013
8014 if (ioarcb->cmd_pkt.cdb[1] & IPR_ID_HRRQ_SELE_ENABLE)
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008015 ioarcb->cmd_pkt.cdb[14] =
8016 ioa_cfg->identify_hrrq_index;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008017
8018 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
8019 IPR_INTERNAL_TIMEOUT);
8020
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008021 if (++ioa_cfg->identify_hrrq_index < ioa_cfg->hrrq_num)
8022 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008023
8024 LEAVE;
8025 return IPR_RC_JOB_RETURN;
Wayne Boyer214777b2010-02-19 13:24:26 -08008026 }
8027
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 LEAVE;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008029 return IPR_RC_JOB_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030}
8031
8032/**
8033 * ipr_reset_timer_done - Adapter reset timer function
8034 * @ipr_cmd: ipr command struct
8035 *
8036 * Description: This function is used in adapter reset processing
8037 * for timing events. If the reset_cmd pointer in the IOA
8038 * config struct is not this adapter's we are doing nested
8039 * resets and fail_all_ops will take care of freeing the
8040 * command block.
8041 *
8042 * Return value:
8043 * none
8044 **/
8045static void ipr_reset_timer_done(struct ipr_cmnd *ipr_cmd)
8046{
8047 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8048 unsigned long lock_flags = 0;
8049
8050 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
8051
8052 if (ioa_cfg->reset_cmd == ipr_cmd) {
8053 list_del(&ipr_cmd->queue);
8054 ipr_cmd->done(ipr_cmd);
8055 }
8056
8057 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8058}
8059
8060/**
8061 * ipr_reset_start_timer - Start a timer for adapter reset job
8062 * @ipr_cmd: ipr command struct
8063 * @timeout: timeout value
8064 *
8065 * Description: This function is used in adapter reset processing
8066 * for timing events. If the reset_cmd pointer in the IOA
8067 * config struct is not this adapter's we are doing nested
8068 * resets and fail_all_ops will take care of freeing the
8069 * command block.
8070 *
8071 * Return value:
8072 * none
8073 **/
8074static void ipr_reset_start_timer(struct ipr_cmnd *ipr_cmd,
8075 unsigned long timeout)
8076{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008077
8078 ENTER;
8079 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080 ipr_cmd->done = ipr_reset_ioa_job;
8081
8082 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
8083 ipr_cmd->timer.expires = jiffies + timeout;
8084 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_reset_timer_done;
8085 add_timer(&ipr_cmd->timer);
8086}
8087
8088/**
8089 * ipr_init_ioa_mem - Initialize ioa_cfg control block
8090 * @ioa_cfg: ioa cfg struct
8091 *
8092 * Return value:
8093 * nothing
8094 **/
8095static void ipr_init_ioa_mem(struct ipr_ioa_cfg *ioa_cfg)
8096{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008097 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008099 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008100 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008101 memset(hrrq->host_rrq, 0, sizeof(u32) * hrrq->size);
8102
8103 /* Initialize Host RRQ pointers */
8104 hrrq->hrrq_start = hrrq->host_rrq;
8105 hrrq->hrrq_end = &hrrq->host_rrq[hrrq->size - 1];
8106 hrrq->hrrq_curr = hrrq->hrrq_start;
8107 hrrq->toggle_bit = 1;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008108 spin_unlock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008109 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008110 wmb();
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008111
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008112 ioa_cfg->identify_hrrq_index = 0;
8113 if (ioa_cfg->hrrq_num == 1)
8114 atomic_set(&ioa_cfg->hrrq_index, 0);
8115 else
8116 atomic_set(&ioa_cfg->hrrq_index, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117
8118 /* Zero out config table */
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008119 memset(ioa_cfg->u.cfg_table, 0, ioa_cfg->cfg_table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120}
8121
8122/**
Wayne Boyer214777b2010-02-19 13:24:26 -08008123 * ipr_reset_next_stage - Process IPL stage change based on feedback register.
8124 * @ipr_cmd: ipr command struct
8125 *
8126 * Return value:
8127 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8128 **/
8129static int ipr_reset_next_stage(struct ipr_cmnd *ipr_cmd)
8130{
8131 unsigned long stage, stage_time;
8132 u32 feedback;
8133 volatile u32 int_reg;
8134 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8135 u64 maskval = 0;
8136
8137 feedback = readl(ioa_cfg->regs.init_feedback_reg);
8138 stage = feedback & IPR_IPL_INIT_STAGE_MASK;
8139 stage_time = feedback & IPR_IPL_INIT_STAGE_TIME_MASK;
8140
8141 ipr_dbg("IPL stage = 0x%lx, IPL stage time = %ld\n", stage, stage_time);
8142
8143 /* sanity check the stage_time value */
Wayne Boyer438b0332010-05-10 09:13:00 -07008144 if (stage_time == 0)
8145 stage_time = IPR_IPL_INIT_DEFAULT_STAGE_TIME;
8146 else if (stage_time < IPR_IPL_INIT_MIN_STAGE_TIME)
Wayne Boyer214777b2010-02-19 13:24:26 -08008147 stage_time = IPR_IPL_INIT_MIN_STAGE_TIME;
8148 else if (stage_time > IPR_LONG_OPERATIONAL_TIMEOUT)
8149 stage_time = IPR_LONG_OPERATIONAL_TIMEOUT;
8150
8151 if (stage == IPR_IPL_INIT_STAGE_UNKNOWN) {
8152 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.set_interrupt_mask_reg);
8153 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
8154 stage_time = ioa_cfg->transop_timeout;
8155 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
8156 } else if (stage == IPR_IPL_INIT_STAGE_TRANSOP) {
Wayne Boyer1df79ca2010-07-14 10:49:43 -07008157 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
8158 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
8159 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
8160 maskval = IPR_PCII_IPL_STAGE_CHANGE;
8161 maskval = (maskval << 32) | IPR_PCII_IOA_TRANS_TO_OPER;
8162 writeq(maskval, ioa_cfg->regs.set_interrupt_mask_reg);
8163 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
8164 return IPR_RC_JOB_CONTINUE;
8165 }
Wayne Boyer214777b2010-02-19 13:24:26 -08008166 }
8167
8168 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
8169 ipr_cmd->timer.expires = jiffies + stage_time * HZ;
8170 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
8171 ipr_cmd->done = ipr_reset_ioa_job;
8172 add_timer(&ipr_cmd->timer);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008173
8174 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Wayne Boyer214777b2010-02-19 13:24:26 -08008175
8176 return IPR_RC_JOB_RETURN;
8177}
8178
8179/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180 * ipr_reset_enable_ioa - Enable the IOA following a reset.
8181 * @ipr_cmd: ipr command struct
8182 *
8183 * This function reinitializes some control blocks and
8184 * enables destructive diagnostics on the adapter.
8185 *
8186 * Return value:
8187 * IPR_RC_JOB_RETURN
8188 **/
8189static int ipr_reset_enable_ioa(struct ipr_cmnd *ipr_cmd)
8190{
8191 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8192 volatile u32 int_reg;
Wayne Boyer7be96902010-05-10 09:14:07 -07008193 volatile u64 maskval;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008194 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195
8196 ENTER;
Wayne Boyer214777b2010-02-19 13:24:26 -08008197 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198 ipr_init_ioa_mem(ioa_cfg);
8199
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008200 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8201 spin_lock(&ioa_cfg->hrrq[i]._lock);
8202 ioa_cfg->hrrq[i].allow_interrupts = 1;
8203 spin_unlock(&ioa_cfg->hrrq[i]._lock);
8204 }
8205 wmb();
Wayne Boyer8701f182010-06-04 10:26:50 -07008206 if (ioa_cfg->sis64) {
8207 /* Set the adapter to the correct endian mode. */
8208 writel(IPR_ENDIAN_SWAP_KEY, ioa_cfg->regs.endian_swap_reg);
8209 int_reg = readl(ioa_cfg->regs.endian_swap_reg);
8210 }
8211
Wayne Boyer7be96902010-05-10 09:14:07 -07008212 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213
8214 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
8215 writel((IPR_PCII_ERROR_INTERRUPTS | IPR_PCII_HRRQ_UPDATED),
Wayne Boyer214777b2010-02-19 13:24:26 -08008216 ioa_cfg->regs.clr_interrupt_mask_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
8218 return IPR_RC_JOB_CONTINUE;
8219 }
8220
8221 /* Enable destructive diagnostics on IOA */
Wayne Boyer214777b2010-02-19 13:24:26 -08008222 writel(ioa_cfg->doorbell, ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223
Wayne Boyer7be96902010-05-10 09:14:07 -07008224 if (ioa_cfg->sis64) {
8225 maskval = IPR_PCII_IPL_STAGE_CHANGE;
8226 maskval = (maskval << 32) | IPR_PCII_OPER_INTERRUPTS;
8227 writeq(maskval, ioa_cfg->regs.clr_interrupt_mask_reg);
8228 } else
8229 writel(IPR_PCII_OPER_INTERRUPTS, ioa_cfg->regs.clr_interrupt_mask_reg32);
Wayne Boyer214777b2010-02-19 13:24:26 -08008230
Linus Torvalds1da177e2005-04-16 15:20:36 -07008231 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
8232
8233 dev_info(&ioa_cfg->pdev->dev, "Initializing IOA.\n");
8234
Wayne Boyer214777b2010-02-19 13:24:26 -08008235 if (ioa_cfg->sis64) {
8236 ipr_cmd->job_step = ipr_reset_next_stage;
8237 return IPR_RC_JOB_CONTINUE;
8238 }
8239
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
Brian King5469cb52007-03-29 12:42:40 -05008241 ipr_cmd->timer.expires = jiffies + (ioa_cfg->transop_timeout * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
8243 ipr_cmd->done = ipr_reset_ioa_job;
8244 add_timer(&ipr_cmd->timer);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008245 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246
8247 LEAVE;
8248 return IPR_RC_JOB_RETURN;
8249}
8250
8251/**
8252 * ipr_reset_wait_for_dump - Wait for a dump to timeout.
8253 * @ipr_cmd: ipr command struct
8254 *
8255 * This function is invoked when an adapter dump has run out
8256 * of processing time.
8257 *
8258 * Return value:
8259 * IPR_RC_JOB_CONTINUE
8260 **/
8261static int ipr_reset_wait_for_dump(struct ipr_cmnd *ipr_cmd)
8262{
8263 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8264
8265 if (ioa_cfg->sdt_state == GET_DUMP)
Brian King41e9a692011-09-21 08:51:11 -05008266 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
8267 else if (ioa_cfg->sdt_state == READ_DUMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268 ioa_cfg->sdt_state = ABORT_DUMP;
8269
Brian King4c647e92011-10-15 09:08:56 -05008270 ioa_cfg->dump_timeout = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271 ipr_cmd->job_step = ipr_reset_alert;
8272
8273 return IPR_RC_JOB_CONTINUE;
8274}
8275
8276/**
8277 * ipr_unit_check_no_data - Log a unit check/no data error log
8278 * @ioa_cfg: ioa config struct
8279 *
8280 * Logs an error indicating the adapter unit checked, but for some
8281 * reason, we were unable to fetch the unit check buffer.
8282 *
8283 * Return value:
8284 * nothing
8285 **/
8286static void ipr_unit_check_no_data(struct ipr_ioa_cfg *ioa_cfg)
8287{
8288 ioa_cfg->errors_logged++;
8289 dev_err(&ioa_cfg->pdev->dev, "IOA unit check with no data\n");
8290}
8291
8292/**
8293 * ipr_get_unit_check_buffer - Get the unit check buffer from the IOA
8294 * @ioa_cfg: ioa config struct
8295 *
8296 * Fetches the unit check buffer from the adapter by clocking the data
8297 * through the mailbox register.
8298 *
8299 * Return value:
8300 * nothing
8301 **/
8302static void ipr_get_unit_check_buffer(struct ipr_ioa_cfg *ioa_cfg)
8303{
8304 unsigned long mailbox;
8305 struct ipr_hostrcb *hostrcb;
8306 struct ipr_uc_sdt sdt;
8307 int rc, length;
Brian King65f56472007-04-26 16:00:12 -05008308 u32 ioasc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309
8310 mailbox = readl(ioa_cfg->ioa_mailbox);
8311
Wayne Boyerdcbad002010-02-19 13:24:14 -08008312 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(mailbox)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313 ipr_unit_check_no_data(ioa_cfg);
8314 return;
8315 }
8316
8317 memset(&sdt, 0, sizeof(struct ipr_uc_sdt));
8318 rc = ipr_get_ldump_data_section(ioa_cfg, mailbox, (__be32 *) &sdt,
8319 (sizeof(struct ipr_uc_sdt)) / sizeof(__be32));
8320
Wayne Boyerdcbad002010-02-19 13:24:14 -08008321 if (rc || !(sdt.entry[0].flags & IPR_SDT_VALID_ENTRY) ||
8322 ((be32_to_cpu(sdt.hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
8323 (be32_to_cpu(sdt.hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324 ipr_unit_check_no_data(ioa_cfg);
8325 return;
8326 }
8327
8328 /* Find length of the first sdt entry (UC buffer) */
Wayne Boyerdcbad002010-02-19 13:24:14 -08008329 if (be32_to_cpu(sdt.hdr.state) == IPR_FMT3_SDT_READY_TO_USE)
8330 length = be32_to_cpu(sdt.entry[0].end_token);
8331 else
8332 length = (be32_to_cpu(sdt.entry[0].end_token) -
8333 be32_to_cpu(sdt.entry[0].start_token)) &
8334 IPR_FMT2_MBX_ADDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335
8336 hostrcb = list_entry(ioa_cfg->hostrcb_free_q.next,
8337 struct ipr_hostrcb, queue);
8338 list_del(&hostrcb->queue);
8339 memset(&hostrcb->hcam, 0, sizeof(hostrcb->hcam));
8340
8341 rc = ipr_get_ldump_data_section(ioa_cfg,
Wayne Boyerdcbad002010-02-19 13:24:14 -08008342 be32_to_cpu(sdt.entry[0].start_token),
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343 (__be32 *)&hostrcb->hcam,
8344 min(length, (int)sizeof(hostrcb->hcam)) / sizeof(__be32));
8345
Brian King65f56472007-04-26 16:00:12 -05008346 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347 ipr_handle_log_data(ioa_cfg, hostrcb);
Wayne Boyer4565e372010-02-19 13:24:07 -08008348 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Brian King65f56472007-04-26 16:00:12 -05008349 if (ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED &&
8350 ioa_cfg->sdt_state == GET_DUMP)
8351 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
8352 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353 ipr_unit_check_no_data(ioa_cfg);
8354
8355 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
8356}
8357
8358/**
Wayne Boyer110def82010-11-04 09:36:16 -07008359 * ipr_reset_get_unit_check_job - Call to get the unit check buffer.
8360 * @ipr_cmd: ipr command struct
8361 *
8362 * Description: This function will call to get the unit check buffer.
8363 *
8364 * Return value:
8365 * IPR_RC_JOB_RETURN
8366 **/
8367static int ipr_reset_get_unit_check_job(struct ipr_cmnd *ipr_cmd)
8368{
8369 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8370
8371 ENTER;
8372 ioa_cfg->ioa_unit_checked = 0;
8373 ipr_get_unit_check_buffer(ioa_cfg);
8374 ipr_cmd->job_step = ipr_reset_alert;
8375 ipr_reset_start_timer(ipr_cmd, 0);
8376
8377 LEAVE;
8378 return IPR_RC_JOB_RETURN;
8379}
8380
Gabriel Krisman Bertazif41f1d92015-11-03 16:26:06 -02008381static int ipr_dump_mailbox_wait(struct ipr_cmnd *ipr_cmd)
8382{
8383 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8384
8385 ENTER;
8386
8387 if (ioa_cfg->sdt_state != GET_DUMP)
8388 return IPR_RC_JOB_RETURN;
8389
8390 if (!ioa_cfg->sis64 || !ipr_cmd->u.time_left ||
8391 (readl(ioa_cfg->regs.sense_interrupt_reg) &
8392 IPR_PCII_MAILBOX_STABLE)) {
8393
8394 if (!ipr_cmd->u.time_left)
8395 dev_err(&ioa_cfg->pdev->dev,
8396 "Timed out waiting for Mailbox register.\n");
8397
8398 ioa_cfg->sdt_state = READ_DUMP;
8399 ioa_cfg->dump_timeout = 0;
8400 if (ioa_cfg->sis64)
8401 ipr_reset_start_timer(ipr_cmd, IPR_SIS64_DUMP_TIMEOUT);
8402 else
8403 ipr_reset_start_timer(ipr_cmd, IPR_SIS32_DUMP_TIMEOUT);
8404 ipr_cmd->job_step = ipr_reset_wait_for_dump;
8405 schedule_work(&ioa_cfg->work_q);
8406
8407 } else {
8408 ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
8409 ipr_reset_start_timer(ipr_cmd,
8410 IPR_CHECK_FOR_RESET_TIMEOUT);
8411 }
8412
8413 LEAVE;
8414 return IPR_RC_JOB_RETURN;
8415}
8416
Wayne Boyer110def82010-11-04 09:36:16 -07008417/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418 * ipr_reset_restore_cfg_space - Restore PCI config space.
8419 * @ipr_cmd: ipr command struct
8420 *
8421 * Description: This function restores the saved PCI config space of
8422 * the adapter, fails all outstanding ops back to the callers, and
8423 * fetches the dump/unit check if applicable to this reset.
8424 *
8425 * Return value:
8426 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8427 **/
8428static int ipr_reset_restore_cfg_space(struct ipr_cmnd *ipr_cmd)
8429{
8430 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer630ad8312011-04-07 12:12:30 -07008431 u32 int_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432
8433 ENTER;
Kleber Sacilotto de Souza99c965d2009-11-25 20:13:43 -02008434 ioa_cfg->pdev->state_saved = true;
Jon Mason1d3c16a2010-11-30 17:43:26 -06008435 pci_restore_state(ioa_cfg->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436
8437 if (ipr_set_pcix_cmd_reg(ioa_cfg)) {
Wayne Boyer96d21f02010-05-10 09:13:27 -07008438 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439 return IPR_RC_JOB_CONTINUE;
8440 }
8441
8442 ipr_fail_all_ops(ioa_cfg);
8443
Wayne Boyer8701f182010-06-04 10:26:50 -07008444 if (ioa_cfg->sis64) {
8445 /* Set the adapter to the correct endian mode. */
8446 writel(IPR_ENDIAN_SWAP_KEY, ioa_cfg->regs.endian_swap_reg);
8447 int_reg = readl(ioa_cfg->regs.endian_swap_reg);
8448 }
8449
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450 if (ioa_cfg->ioa_unit_checked) {
Wayne Boyer110def82010-11-04 09:36:16 -07008451 if (ioa_cfg->sis64) {
8452 ipr_cmd->job_step = ipr_reset_get_unit_check_job;
8453 ipr_reset_start_timer(ipr_cmd, IPR_DUMP_DELAY_TIMEOUT);
8454 return IPR_RC_JOB_RETURN;
8455 } else {
8456 ioa_cfg->ioa_unit_checked = 0;
8457 ipr_get_unit_check_buffer(ioa_cfg);
8458 ipr_cmd->job_step = ipr_reset_alert;
8459 ipr_reset_start_timer(ipr_cmd, 0);
8460 return IPR_RC_JOB_RETURN;
8461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462 }
8463
8464 if (ioa_cfg->in_ioa_bringdown) {
8465 ipr_cmd->job_step = ipr_ioa_bringdown_done;
Gabriel Krisman Bertazif41f1d92015-11-03 16:26:06 -02008466 } else if (ioa_cfg->sdt_state == GET_DUMP) {
8467 ipr_cmd->job_step = ipr_dump_mailbox_wait;
8468 ipr_cmd->u.time_left = IPR_WAIT_FOR_MAILBOX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469 } else {
8470 ipr_cmd->job_step = ipr_reset_enable_ioa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471 }
8472
Wayne Boyer438b0332010-05-10 09:13:00 -07008473 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474 return IPR_RC_JOB_CONTINUE;
8475}
8476
8477/**
Brian Kinge619e1a2007-01-23 11:25:37 -06008478 * ipr_reset_bist_done - BIST has completed on the adapter.
8479 * @ipr_cmd: ipr command struct
8480 *
8481 * Description: Unblock config space and resume the reset process.
8482 *
8483 * Return value:
8484 * IPR_RC_JOB_CONTINUE
8485 **/
8486static int ipr_reset_bist_done(struct ipr_cmnd *ipr_cmd)
8487{
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008488 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8489
Brian Kinge619e1a2007-01-23 11:25:37 -06008490 ENTER;
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008491 if (ioa_cfg->cfg_locked)
8492 pci_cfg_access_unlock(ioa_cfg->pdev);
8493 ioa_cfg->cfg_locked = 0;
Brian Kinge619e1a2007-01-23 11:25:37 -06008494 ipr_cmd->job_step = ipr_reset_restore_cfg_space;
8495 LEAVE;
8496 return IPR_RC_JOB_CONTINUE;
8497}
8498
8499/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 * ipr_reset_start_bist - Run BIST on the adapter.
8501 * @ipr_cmd: ipr command struct
8502 *
8503 * Description: This function runs BIST on the adapter, then delays 2 seconds.
8504 *
8505 * Return value:
8506 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8507 **/
8508static int ipr_reset_start_bist(struct ipr_cmnd *ipr_cmd)
8509{
8510 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008511 int rc = PCIBIOS_SUCCESSFUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008512
8513 ENTER;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008514 if (ioa_cfg->ipr_chip->bist_method == IPR_MMIO)
8515 writel(IPR_UPROCI_SIS64_START_BIST,
8516 ioa_cfg->regs.set_uproc_interrupt_reg32);
8517 else
8518 rc = pci_write_config_byte(ioa_cfg->pdev, PCI_BIST, PCI_BIST_START);
8519
8520 if (rc == PCIBIOS_SUCCESSFUL) {
Brian Kinge619e1a2007-01-23 11:25:37 -06008521 ipr_cmd->job_step = ipr_reset_bist_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008522 ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
8523 rc = IPR_RC_JOB_RETURN;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008524 } else {
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008525 if (ioa_cfg->cfg_locked)
8526 pci_cfg_access_unlock(ipr_cmd->ioa_cfg->pdev);
8527 ioa_cfg->cfg_locked = 0;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008528 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
8529 rc = IPR_RC_JOB_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530 }
8531
8532 LEAVE;
8533 return rc;
8534}
8535
8536/**
Brian King463fc692007-05-07 17:09:05 -05008537 * ipr_reset_slot_reset_done - Clear PCI reset to the adapter
8538 * @ipr_cmd: ipr command struct
8539 *
8540 * Description: This clears PCI reset to the adapter and delays two seconds.
8541 *
8542 * Return value:
8543 * IPR_RC_JOB_RETURN
8544 **/
8545static int ipr_reset_slot_reset_done(struct ipr_cmnd *ipr_cmd)
8546{
8547 ENTER;
Brian King463fc692007-05-07 17:09:05 -05008548 ipr_cmd->job_step = ipr_reset_bist_done;
8549 ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
8550 LEAVE;
8551 return IPR_RC_JOB_RETURN;
8552}
8553
8554/**
Brian King2796ca52015-03-26 11:23:52 -05008555 * ipr_reset_reset_work - Pulse a PCIe fundamental reset
8556 * @work: work struct
8557 *
8558 * Description: This pulses warm reset to a slot.
8559 *
8560 **/
8561static void ipr_reset_reset_work(struct work_struct *work)
8562{
8563 struct ipr_cmnd *ipr_cmd = container_of(work, struct ipr_cmnd, work);
8564 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8565 struct pci_dev *pdev = ioa_cfg->pdev;
8566 unsigned long lock_flags = 0;
8567
8568 ENTER;
8569 pci_set_pcie_reset_state(pdev, pcie_warm_reset);
8570 msleep(jiffies_to_msecs(IPR_PCI_RESET_TIMEOUT));
8571 pci_set_pcie_reset_state(pdev, pcie_deassert_reset);
8572
8573 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
8574 if (ioa_cfg->reset_cmd == ipr_cmd)
8575 ipr_reset_ioa_job(ipr_cmd);
8576 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
8577 LEAVE;
8578}
8579
8580/**
Brian King463fc692007-05-07 17:09:05 -05008581 * ipr_reset_slot_reset - Reset the PCI slot of the adapter.
8582 * @ipr_cmd: ipr command struct
8583 *
8584 * Description: This asserts PCI reset to the adapter.
8585 *
8586 * Return value:
8587 * IPR_RC_JOB_RETURN
8588 **/
8589static int ipr_reset_slot_reset(struct ipr_cmnd *ipr_cmd)
8590{
8591 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Brian King463fc692007-05-07 17:09:05 -05008592
8593 ENTER;
Brian King2796ca52015-03-26 11:23:52 -05008594 INIT_WORK(&ipr_cmd->work, ipr_reset_reset_work);
8595 queue_work(ioa_cfg->reset_work_q, &ipr_cmd->work);
Brian King463fc692007-05-07 17:09:05 -05008596 ipr_cmd->job_step = ipr_reset_slot_reset_done;
Brian King463fc692007-05-07 17:09:05 -05008597 LEAVE;
8598 return IPR_RC_JOB_RETURN;
8599}
8600
8601/**
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008602 * ipr_reset_block_config_access_wait - Wait for permission to block config access
8603 * @ipr_cmd: ipr command struct
8604 *
8605 * Description: This attempts to block config access to the IOA.
8606 *
8607 * Return value:
8608 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8609 **/
8610static int ipr_reset_block_config_access_wait(struct ipr_cmnd *ipr_cmd)
8611{
8612 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8613 int rc = IPR_RC_JOB_CONTINUE;
8614
8615 if (pci_cfg_access_trylock(ioa_cfg->pdev)) {
8616 ioa_cfg->cfg_locked = 1;
8617 ipr_cmd->job_step = ioa_cfg->reset;
8618 } else {
8619 if (ipr_cmd->u.time_left) {
8620 rc = IPR_RC_JOB_RETURN;
8621 ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
8622 ipr_reset_start_timer(ipr_cmd,
8623 IPR_CHECK_FOR_RESET_TIMEOUT);
8624 } else {
8625 ipr_cmd->job_step = ioa_cfg->reset;
8626 dev_err(&ioa_cfg->pdev->dev,
8627 "Timed out waiting to lock config access. Resetting anyway.\n");
8628 }
8629 }
8630
8631 return rc;
8632}
8633
8634/**
8635 * ipr_reset_block_config_access - Block config access to the IOA
8636 * @ipr_cmd: ipr command struct
8637 *
8638 * Description: This attempts to block config access to the IOA
8639 *
8640 * Return value:
8641 * IPR_RC_JOB_CONTINUE
8642 **/
8643static int ipr_reset_block_config_access(struct ipr_cmnd *ipr_cmd)
8644{
8645 ipr_cmd->ioa_cfg->cfg_locked = 0;
8646 ipr_cmd->job_step = ipr_reset_block_config_access_wait;
8647 ipr_cmd->u.time_left = IPR_WAIT_FOR_RESET_TIMEOUT;
8648 return IPR_RC_JOB_CONTINUE;
8649}
8650
8651/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652 * ipr_reset_allowed - Query whether or not IOA can be reset
8653 * @ioa_cfg: ioa config struct
8654 *
8655 * Return value:
8656 * 0 if reset not allowed / non-zero if reset is allowed
8657 **/
8658static int ipr_reset_allowed(struct ipr_ioa_cfg *ioa_cfg)
8659{
8660 volatile u32 temp_reg;
8661
8662 temp_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
8663 return ((temp_reg & IPR_PCII_CRITICAL_OPERATION) == 0);
8664}
8665
8666/**
8667 * ipr_reset_wait_to_start_bist - Wait for permission to reset IOA.
8668 * @ipr_cmd: ipr command struct
8669 *
8670 * Description: This function waits for adapter permission to run BIST,
8671 * then runs BIST. If the adapter does not give permission after a
8672 * reasonable time, we will reset the adapter anyway. The impact of
8673 * resetting the adapter without warning the adapter is the risk of
8674 * losing the persistent error log on the adapter. If the adapter is
8675 * reset while it is writing to the flash on the adapter, the flash
8676 * segment will have bad ECC and be zeroed.
8677 *
8678 * Return value:
8679 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8680 **/
8681static int ipr_reset_wait_to_start_bist(struct ipr_cmnd *ipr_cmd)
8682{
8683 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8684 int rc = IPR_RC_JOB_RETURN;
8685
8686 if (!ipr_reset_allowed(ioa_cfg) && ipr_cmd->u.time_left) {
8687 ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
8688 ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
8689 } else {
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008690 ipr_cmd->job_step = ipr_reset_block_config_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008691 rc = IPR_RC_JOB_CONTINUE;
8692 }
8693
8694 return rc;
8695}
8696
8697/**
Wayne Boyer8701f182010-06-04 10:26:50 -07008698 * ipr_reset_alert - Alert the adapter of a pending reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699 * @ipr_cmd: ipr command struct
8700 *
8701 * Description: This function alerts the adapter that it will be reset.
8702 * If memory space is not currently enabled, proceed directly
8703 * to running BIST on the adapter. The timer must always be started
8704 * so we guarantee we do not run BIST from ipr_isr.
8705 *
8706 * Return value:
8707 * IPR_RC_JOB_RETURN
8708 **/
8709static int ipr_reset_alert(struct ipr_cmnd *ipr_cmd)
8710{
8711 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8712 u16 cmd_reg;
8713 int rc;
8714
8715 ENTER;
8716 rc = pci_read_config_word(ioa_cfg->pdev, PCI_COMMAND, &cmd_reg);
8717
8718 if ((rc == PCIBIOS_SUCCESSFUL) && (cmd_reg & PCI_COMMAND_MEMORY)) {
8719 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
Wayne Boyer214777b2010-02-19 13:24:26 -08008720 writel(IPR_UPROCI_RESET_ALERT, ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008721 ipr_cmd->job_step = ipr_reset_wait_to_start_bist;
8722 } else {
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008723 ipr_cmd->job_step = ipr_reset_block_config_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008724 }
8725
8726 ipr_cmd->u.time_left = IPR_WAIT_FOR_RESET_TIMEOUT;
8727 ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
8728
8729 LEAVE;
8730 return IPR_RC_JOB_RETURN;
8731}
8732
8733/**
Brian King4fdd7c72015-03-26 11:23:50 -05008734 * ipr_reset_quiesce_done - Complete IOA disconnect
8735 * @ipr_cmd: ipr command struct
8736 *
8737 * Description: Freeze the adapter to complete quiesce processing
8738 *
8739 * Return value:
8740 * IPR_RC_JOB_CONTINUE
8741 **/
8742static int ipr_reset_quiesce_done(struct ipr_cmnd *ipr_cmd)
8743{
8744 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8745
8746 ENTER;
8747 ipr_cmd->job_step = ipr_ioa_bringdown_done;
8748 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
8749 LEAVE;
8750 return IPR_RC_JOB_CONTINUE;
8751}
8752
8753/**
8754 * ipr_reset_cancel_hcam_done - Check for outstanding commands
8755 * @ipr_cmd: ipr command struct
8756 *
8757 * Description: Ensure nothing is outstanding to the IOA and
8758 * proceed with IOA disconnect. Otherwise reset the IOA.
8759 *
8760 * Return value:
8761 * IPR_RC_JOB_RETURN / IPR_RC_JOB_CONTINUE
8762 **/
8763static int ipr_reset_cancel_hcam_done(struct ipr_cmnd *ipr_cmd)
8764{
8765 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8766 struct ipr_cmnd *loop_cmd;
8767 struct ipr_hrr_queue *hrrq;
8768 int rc = IPR_RC_JOB_CONTINUE;
8769 int count = 0;
8770
8771 ENTER;
8772 ipr_cmd->job_step = ipr_reset_quiesce_done;
8773
8774 for_each_hrrq(hrrq, ioa_cfg) {
8775 spin_lock(&hrrq->_lock);
8776 list_for_each_entry(loop_cmd, &hrrq->hrrq_pending_q, queue) {
8777 count++;
8778 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8779 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
8780 rc = IPR_RC_JOB_RETURN;
8781 break;
8782 }
8783 spin_unlock(&hrrq->_lock);
8784
8785 if (count)
8786 break;
8787 }
8788
8789 LEAVE;
8790 return rc;
8791}
8792
8793/**
8794 * ipr_reset_cancel_hcam - Cancel outstanding HCAMs
8795 * @ipr_cmd: ipr command struct
8796 *
8797 * Description: Cancel any oustanding HCAMs to the IOA.
8798 *
8799 * Return value:
8800 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8801 **/
8802static int ipr_reset_cancel_hcam(struct ipr_cmnd *ipr_cmd)
8803{
8804 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8805 int rc = IPR_RC_JOB_CONTINUE;
8806 struct ipr_cmd_pkt *cmd_pkt;
8807 struct ipr_cmnd *hcam_cmd;
8808 struct ipr_hrr_queue *hrrq = &ioa_cfg->hrrq[IPR_INIT_HRRQ];
8809
8810 ENTER;
8811 ipr_cmd->job_step = ipr_reset_cancel_hcam_done;
8812
8813 if (!hrrq->ioa_is_dead) {
8814 if (!list_empty(&ioa_cfg->hostrcb_pending_q)) {
8815 list_for_each_entry(hcam_cmd, &hrrq->hrrq_pending_q, queue) {
8816 if (hcam_cmd->ioarcb.cmd_pkt.cdb[0] != IPR_HOST_CONTROLLED_ASYNC)
8817 continue;
8818
8819 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
8820 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
8821 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
8822 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
8823 cmd_pkt->cdb[0] = IPR_CANCEL_REQUEST;
8824 cmd_pkt->cdb[1] = IPR_CANCEL_64BIT_IOARCB;
8825 cmd_pkt->cdb[10] = ((u64) hcam_cmd->dma_addr >> 56) & 0xff;
8826 cmd_pkt->cdb[11] = ((u64) hcam_cmd->dma_addr >> 48) & 0xff;
8827 cmd_pkt->cdb[12] = ((u64) hcam_cmd->dma_addr >> 40) & 0xff;
8828 cmd_pkt->cdb[13] = ((u64) hcam_cmd->dma_addr >> 32) & 0xff;
8829 cmd_pkt->cdb[2] = ((u64) hcam_cmd->dma_addr >> 24) & 0xff;
8830 cmd_pkt->cdb[3] = ((u64) hcam_cmd->dma_addr >> 16) & 0xff;
8831 cmd_pkt->cdb[4] = ((u64) hcam_cmd->dma_addr >> 8) & 0xff;
8832 cmd_pkt->cdb[5] = ((u64) hcam_cmd->dma_addr) & 0xff;
8833
8834 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
8835 IPR_CANCEL_TIMEOUT);
8836
8837 rc = IPR_RC_JOB_RETURN;
8838 ipr_cmd->job_step = ipr_reset_cancel_hcam;
8839 break;
8840 }
8841 }
8842 } else
8843 ipr_cmd->job_step = ipr_reset_alert;
8844
8845 LEAVE;
8846 return rc;
8847}
8848
8849/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008850 * ipr_reset_ucode_download_done - Microcode download completion
8851 * @ipr_cmd: ipr command struct
8852 *
8853 * Description: This function unmaps the microcode download buffer.
8854 *
8855 * Return value:
8856 * IPR_RC_JOB_CONTINUE
8857 **/
8858static int ipr_reset_ucode_download_done(struct ipr_cmnd *ipr_cmd)
8859{
8860 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8861 struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
8862
Anton Blanchardd73341b2014-10-30 17:27:08 -05008863 dma_unmap_sg(&ioa_cfg->pdev->dev, sglist->scatterlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864 sglist->num_sg, DMA_TO_DEVICE);
8865
8866 ipr_cmd->job_step = ipr_reset_alert;
8867 return IPR_RC_JOB_CONTINUE;
8868}
8869
8870/**
8871 * ipr_reset_ucode_download - Download microcode to the adapter
8872 * @ipr_cmd: ipr command struct
8873 *
8874 * Description: This function checks to see if it there is microcode
8875 * to download to the adapter. If there is, a download is performed.
8876 *
8877 * Return value:
8878 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8879 **/
8880static int ipr_reset_ucode_download(struct ipr_cmnd *ipr_cmd)
8881{
8882 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8883 struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
8884
8885 ENTER;
8886 ipr_cmd->job_step = ipr_reset_alert;
8887
8888 if (!sglist)
8889 return IPR_RC_JOB_CONTINUE;
8890
8891 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
8892 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
8893 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = WRITE_BUFFER;
8894 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_WR_BUF_DOWNLOAD_AND_SAVE;
8895 ipr_cmd->ioarcb.cmd_pkt.cdb[6] = (sglist->buffer_len & 0xff0000) >> 16;
8896 ipr_cmd->ioarcb.cmd_pkt.cdb[7] = (sglist->buffer_len & 0x00ff00) >> 8;
8897 ipr_cmd->ioarcb.cmd_pkt.cdb[8] = sglist->buffer_len & 0x0000ff;
8898
Wayne Boyera32c0552010-02-19 13:23:36 -08008899 if (ioa_cfg->sis64)
8900 ipr_build_ucode_ioadl64(ipr_cmd, sglist);
8901 else
8902 ipr_build_ucode_ioadl(ipr_cmd, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903 ipr_cmd->job_step = ipr_reset_ucode_download_done;
8904
8905 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
8906 IPR_WRITE_BUFFER_TIMEOUT);
8907
8908 LEAVE;
8909 return IPR_RC_JOB_RETURN;
8910}
8911
8912/**
8913 * ipr_reset_shutdown_ioa - Shutdown the adapter
8914 * @ipr_cmd: ipr command struct
8915 *
8916 * Description: This function issues an adapter shutdown of the
8917 * specified type to the specified adapter as part of the
8918 * adapter reset job.
8919 *
8920 * Return value:
8921 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8922 **/
8923static int ipr_reset_shutdown_ioa(struct ipr_cmnd *ipr_cmd)
8924{
8925 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8926 enum ipr_shutdown_type shutdown_type = ipr_cmd->u.shutdown_type;
8927 unsigned long timeout;
8928 int rc = IPR_RC_JOB_CONTINUE;
8929
8930 ENTER;
Brian King4fdd7c72015-03-26 11:23:50 -05008931 if (shutdown_type == IPR_SHUTDOWN_QUIESCE)
8932 ipr_cmd->job_step = ipr_reset_cancel_hcam;
8933 else if (shutdown_type != IPR_SHUTDOWN_NONE &&
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008934 !ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008935 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
8936 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
8937 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
8938 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = shutdown_type;
8939
Brian Kingac09c342007-04-26 16:00:16 -05008940 if (shutdown_type == IPR_SHUTDOWN_NORMAL)
8941 timeout = IPR_SHUTDOWN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008942 else if (shutdown_type == IPR_SHUTDOWN_PREPARE_FOR_NORMAL)
8943 timeout = IPR_INTERNAL_TIMEOUT;
Brian Kingac09c342007-04-26 16:00:16 -05008944 else if (ioa_cfg->dual_raid && ipr_dual_ioa_raid)
8945 timeout = IPR_DUAL_IOA_ABBR_SHUTDOWN_TO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008946 else
Brian Kingac09c342007-04-26 16:00:16 -05008947 timeout = IPR_ABBREV_SHUTDOWN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008948
8949 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, timeout);
8950
8951 rc = IPR_RC_JOB_RETURN;
8952 ipr_cmd->job_step = ipr_reset_ucode_download;
8953 } else
8954 ipr_cmd->job_step = ipr_reset_alert;
8955
8956 LEAVE;
8957 return rc;
8958}
8959
8960/**
8961 * ipr_reset_ioa_job - Adapter reset job
8962 * @ipr_cmd: ipr command struct
8963 *
8964 * Description: This function is the job router for the adapter reset job.
8965 *
8966 * Return value:
8967 * none
8968 **/
8969static void ipr_reset_ioa_job(struct ipr_cmnd *ipr_cmd)
8970{
8971 u32 rc, ioasc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008972 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8973
8974 do {
Wayne Boyer96d21f02010-05-10 09:13:27 -07008975 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976
8977 if (ioa_cfg->reset_cmd != ipr_cmd) {
8978 /*
8979 * We are doing nested adapter resets and this is
8980 * not the current reset job.
8981 */
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008982 list_add_tail(&ipr_cmd->queue,
8983 &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008984 return;
8985 }
8986
8987 if (IPR_IOASC_SENSE_KEY(ioasc)) {
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06008988 rc = ipr_cmd->job_step_failed(ipr_cmd);
8989 if (rc == IPR_RC_JOB_RETURN)
8990 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008991 }
8992
8993 ipr_reinit_ipr_cmnd(ipr_cmd);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06008994 ipr_cmd->job_step_failed = ipr_reset_cmd_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995 rc = ipr_cmd->job_step(ipr_cmd);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03008996 } while (rc == IPR_RC_JOB_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008997}
8998
8999/**
9000 * _ipr_initiate_ioa_reset - Initiate an adapter reset
9001 * @ioa_cfg: ioa config struct
9002 * @job_step: first job step of reset job
9003 * @shutdown_type: shutdown type
9004 *
9005 * Description: This function will initiate the reset of the given adapter
9006 * starting at the selected job step.
9007 * If the caller needs to wait on the completion of the reset,
9008 * the caller must sleep on the reset_wait_q.
9009 *
9010 * Return value:
9011 * none
9012 **/
9013static void _ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
9014 int (*job_step) (struct ipr_cmnd *),
9015 enum ipr_shutdown_type shutdown_type)
9016{
9017 struct ipr_cmnd *ipr_cmd;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009018 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009019
9020 ioa_cfg->in_reset_reload = 1;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009021 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9022 spin_lock(&ioa_cfg->hrrq[i]._lock);
9023 ioa_cfg->hrrq[i].allow_cmds = 0;
9024 spin_unlock(&ioa_cfg->hrrq[i]._lock);
9025 }
9026 wmb();
Brian Kingbfae7822013-01-30 23:45:08 -06009027 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].removing_ioa)
9028 scsi_block_requests(ioa_cfg->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009029
9030 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
9031 ioa_cfg->reset_cmd = ipr_cmd;
9032 ipr_cmd->job_step = job_step;
9033 ipr_cmd->u.shutdown_type = shutdown_type;
9034
9035 ipr_reset_ioa_job(ipr_cmd);
9036}
9037
9038/**
9039 * ipr_initiate_ioa_reset - Initiate an adapter reset
9040 * @ioa_cfg: ioa config struct
9041 * @shutdown_type: shutdown type
9042 *
9043 * Description: This function will initiate the reset of the given adapter.
9044 * If the caller needs to wait on the completion of the reset,
9045 * the caller must sleep on the reset_wait_q.
9046 *
9047 * Return value:
9048 * none
9049 **/
9050static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
9051 enum ipr_shutdown_type shutdown_type)
9052{
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009053 int i;
9054
9055 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009056 return;
9057
Brian King41e9a692011-09-21 08:51:11 -05009058 if (ioa_cfg->in_reset_reload) {
9059 if (ioa_cfg->sdt_state == GET_DUMP)
9060 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
9061 else if (ioa_cfg->sdt_state == READ_DUMP)
9062 ioa_cfg->sdt_state = ABORT_DUMP;
9063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009064
9065 if (ioa_cfg->reset_retries++ >= IPR_NUM_RESET_RELOAD_RETRIES) {
9066 dev_err(&ioa_cfg->pdev->dev,
9067 "IOA taken offline - error recovery failed\n");
9068
9069 ioa_cfg->reset_retries = 0;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009070 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9071 spin_lock(&ioa_cfg->hrrq[i]._lock);
9072 ioa_cfg->hrrq[i].ioa_is_dead = 1;
9073 spin_unlock(&ioa_cfg->hrrq[i]._lock);
9074 }
9075 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009076
9077 if (ioa_cfg->in_ioa_bringdown) {
9078 ioa_cfg->reset_cmd = NULL;
9079 ioa_cfg->in_reset_reload = 0;
9080 ipr_fail_all_ops(ioa_cfg);
9081 wake_up_all(&ioa_cfg->reset_wait_q);
9082
Brian Kingbfae7822013-01-30 23:45:08 -06009083 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].removing_ioa) {
9084 spin_unlock_irq(ioa_cfg->host->host_lock);
9085 scsi_unblock_requests(ioa_cfg->host);
9086 spin_lock_irq(ioa_cfg->host->host_lock);
9087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009088 return;
9089 } else {
9090 ioa_cfg->in_ioa_bringdown = 1;
9091 shutdown_type = IPR_SHUTDOWN_NONE;
9092 }
9093 }
9094
9095 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_shutdown_ioa,
9096 shutdown_type);
9097}
9098
9099/**
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009100 * ipr_reset_freeze - Hold off all I/O activity
9101 * @ipr_cmd: ipr command struct
9102 *
9103 * Description: If the PCI slot is frozen, hold off all I/O
9104 * activity; then, as soon as the slot is available again,
9105 * initiate an adapter reset.
9106 */
9107static int ipr_reset_freeze(struct ipr_cmnd *ipr_cmd)
9108{
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009109 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
9110 int i;
9111
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009112 /* Disallow new interrupts, avoid loop */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009113 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9114 spin_lock(&ioa_cfg->hrrq[i]._lock);
9115 ioa_cfg->hrrq[i].allow_interrupts = 0;
9116 spin_unlock(&ioa_cfg->hrrq[i]._lock);
9117 }
9118 wmb();
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009119 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009120 ipr_cmd->done = ipr_reset_ioa_job;
9121 return IPR_RC_JOB_RETURN;
9122}
9123
9124/**
Brian King6270e592014-01-21 12:16:41 -06009125 * ipr_pci_mmio_enabled - Called when MMIO has been re-enabled
9126 * @pdev: PCI device struct
9127 *
9128 * Description: This routine is called to tell us that the MMIO
9129 * access to the IOA has been restored
9130 */
9131static pci_ers_result_t ipr_pci_mmio_enabled(struct pci_dev *pdev)
9132{
9133 unsigned long flags = 0;
9134 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
9135
9136 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
9137 if (!ioa_cfg->probe_done)
9138 pci_save_state(pdev);
9139 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
9140 return PCI_ERS_RESULT_NEED_RESET;
9141}
9142
9143/**
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009144 * ipr_pci_frozen - Called when slot has experienced a PCI bus error.
9145 * @pdev: PCI device struct
9146 *
9147 * Description: This routine is called to tell us that the PCI bus
9148 * is down. Can't do anything here, except put the device driver
9149 * into a holding pattern, waiting for the PCI bus to come back.
9150 */
9151static void ipr_pci_frozen(struct pci_dev *pdev)
9152{
9153 unsigned long flags = 0;
9154 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
9155
9156 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King6270e592014-01-21 12:16:41 -06009157 if (ioa_cfg->probe_done)
9158 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_freeze, IPR_SHUTDOWN_NONE);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009159 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
9160}
9161
9162/**
9163 * ipr_pci_slot_reset - Called when PCI slot has been reset.
9164 * @pdev: PCI device struct
9165 *
9166 * Description: This routine is called by the pci error recovery
9167 * code after the PCI slot has been reset, just before we
9168 * should resume normal operations.
9169 */
9170static pci_ers_result_t ipr_pci_slot_reset(struct pci_dev *pdev)
9171{
9172 unsigned long flags = 0;
9173 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
9174
9175 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King6270e592014-01-21 12:16:41 -06009176 if (ioa_cfg->probe_done) {
9177 if (ioa_cfg->needs_warm_reset)
9178 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
9179 else
9180 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_restore_cfg_space,
9181 IPR_SHUTDOWN_NONE);
9182 } else
9183 wake_up_all(&ioa_cfg->eeh_wait_q);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009184 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
9185 return PCI_ERS_RESULT_RECOVERED;
9186}
9187
9188/**
9189 * ipr_pci_perm_failure - Called when PCI slot is dead for good.
9190 * @pdev: PCI device struct
9191 *
9192 * Description: This routine is called when the PCI bus has
9193 * permanently failed.
9194 */
9195static void ipr_pci_perm_failure(struct pci_dev *pdev)
9196{
9197 unsigned long flags = 0;
9198 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009199 int i;
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009200
9201 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King6270e592014-01-21 12:16:41 -06009202 if (ioa_cfg->probe_done) {
9203 if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
9204 ioa_cfg->sdt_state = ABORT_DUMP;
9205 ioa_cfg->reset_retries = IPR_NUM_RESET_RELOAD_RETRIES - 1;
9206 ioa_cfg->in_ioa_bringdown = 1;
9207 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9208 spin_lock(&ioa_cfg->hrrq[i]._lock);
9209 ioa_cfg->hrrq[i].allow_cmds = 0;
9210 spin_unlock(&ioa_cfg->hrrq[i]._lock);
9211 }
9212 wmb();
9213 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
9214 } else
9215 wake_up_all(&ioa_cfg->eeh_wait_q);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009216 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
9217}
9218
9219/**
9220 * ipr_pci_error_detected - Called when a PCI error is detected.
9221 * @pdev: PCI device struct
9222 * @state: PCI channel state
9223 *
9224 * Description: Called when a PCI error is detected.
9225 *
9226 * Return value:
9227 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
9228 */
9229static pci_ers_result_t ipr_pci_error_detected(struct pci_dev *pdev,
9230 pci_channel_state_t state)
9231{
9232 switch (state) {
9233 case pci_channel_io_frozen:
9234 ipr_pci_frozen(pdev);
Brian King6270e592014-01-21 12:16:41 -06009235 return PCI_ERS_RESULT_CAN_RECOVER;
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009236 case pci_channel_io_perm_failure:
9237 ipr_pci_perm_failure(pdev);
9238 return PCI_ERS_RESULT_DISCONNECT;
9239 break;
9240 default:
9241 break;
9242 }
9243 return PCI_ERS_RESULT_NEED_RESET;
9244}
9245
9246/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009247 * ipr_probe_ioa_part2 - Initializes IOAs found in ipr_probe_ioa(..)
9248 * @ioa_cfg: ioa cfg struct
9249 *
9250 * Description: This is the second phase of adapter intialization
9251 * This function takes care of initilizing the adapter to the point
9252 * where it can accept new commands.
9253
9254 * Return value:
Joe Perchesb1c11812008-02-03 17:28:22 +02009255 * 0 on success / -EIO on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07009256 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009257static int ipr_probe_ioa_part2(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009258{
9259 int rc = 0;
9260 unsigned long host_lock_flags = 0;
9261
9262 ENTER;
9263 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
9264 dev_dbg(&ioa_cfg->pdev->dev, "ioa_cfg adx: 0x%p\n", ioa_cfg);
Brian King6270e592014-01-21 12:16:41 -06009265 ioa_cfg->probe_done = 1;
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06009266 if (ioa_cfg->needs_hard_reset) {
9267 ioa_cfg->needs_hard_reset = 0;
9268 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
9269 } else
9270 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_enable_ioa,
9271 IPR_SHUTDOWN_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009272 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009273
9274 LEAVE;
9275 return rc;
9276}
9277
9278/**
9279 * ipr_free_cmd_blks - Frees command blocks allocated for an adapter
9280 * @ioa_cfg: ioa config struct
9281 *
9282 * Return value:
9283 * none
9284 **/
9285static void ipr_free_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
9286{
9287 int i;
9288
Brian Kinga65e8f12015-03-26 11:23:55 -05009289 if (ioa_cfg->ipr_cmnd_list) {
9290 for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
9291 if (ioa_cfg->ipr_cmnd_list[i])
9292 dma_pool_free(ioa_cfg->ipr_cmd_pool,
9293 ioa_cfg->ipr_cmnd_list[i],
9294 ioa_cfg->ipr_cmnd_list_dma[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009295
Brian Kinga65e8f12015-03-26 11:23:55 -05009296 ioa_cfg->ipr_cmnd_list[i] = NULL;
9297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009298 }
9299
9300 if (ioa_cfg->ipr_cmd_pool)
Anton Blanchardd73341b2014-10-30 17:27:08 -05009301 dma_pool_destroy(ioa_cfg->ipr_cmd_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009302
Brian King89aad422012-03-14 21:20:10 -05009303 kfree(ioa_cfg->ipr_cmnd_list);
9304 kfree(ioa_cfg->ipr_cmnd_list_dma);
9305 ioa_cfg->ipr_cmnd_list = NULL;
9306 ioa_cfg->ipr_cmnd_list_dma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009307 ioa_cfg->ipr_cmd_pool = NULL;
9308}
9309
9310/**
9311 * ipr_free_mem - Frees memory allocated for an adapter
9312 * @ioa_cfg: ioa cfg struct
9313 *
9314 * Return value:
9315 * nothing
9316 **/
9317static void ipr_free_mem(struct ipr_ioa_cfg *ioa_cfg)
9318{
9319 int i;
9320
9321 kfree(ioa_cfg->res_entries);
Anton Blanchardd73341b2014-10-30 17:27:08 -05009322 dma_free_coherent(&ioa_cfg->pdev->dev, sizeof(struct ipr_misc_cbs),
9323 ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009324 ipr_free_cmd_blks(ioa_cfg);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009325
9326 for (i = 0; i < ioa_cfg->hrrq_num; i++)
Anton Blanchardd73341b2014-10-30 17:27:08 -05009327 dma_free_coherent(&ioa_cfg->pdev->dev,
9328 sizeof(u32) * ioa_cfg->hrrq[i].size,
9329 ioa_cfg->hrrq[i].host_rrq,
9330 ioa_cfg->hrrq[i].host_rrq_dma);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009331
Anton Blanchardd73341b2014-10-30 17:27:08 -05009332 dma_free_coherent(&ioa_cfg->pdev->dev, ioa_cfg->cfg_table_size,
9333 ioa_cfg->u.cfg_table, ioa_cfg->cfg_table_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334
9335 for (i = 0; i < IPR_NUM_HCAMS; i++) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05009336 dma_free_coherent(&ioa_cfg->pdev->dev,
9337 sizeof(struct ipr_hostrcb),
9338 ioa_cfg->hostrcb[i],
9339 ioa_cfg->hostrcb_dma[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009340 }
9341
9342 ipr_free_dump(ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009343 kfree(ioa_cfg->trace);
9344}
9345
9346/**
Brian King2796ca52015-03-26 11:23:52 -05009347 * ipr_free_irqs - Free all allocated IRQs for the adapter.
9348 * @ioa_cfg: ipr cfg struct
9349 *
9350 * This function frees all allocated IRQs for the
9351 * specified adapter.
9352 *
9353 * Return value:
9354 * none
9355 **/
9356static void ipr_free_irqs(struct ipr_ioa_cfg *ioa_cfg)
9357{
9358 struct pci_dev *pdev = ioa_cfg->pdev;
9359
9360 if (ioa_cfg->intr_flag == IPR_USE_MSI ||
9361 ioa_cfg->intr_flag == IPR_USE_MSIX) {
9362 int i;
9363 for (i = 0; i < ioa_cfg->nvectors; i++)
9364 free_irq(ioa_cfg->vectors_info[i].vec,
9365 &ioa_cfg->hrrq[i]);
9366 } else
9367 free_irq(pdev->irq, &ioa_cfg->hrrq[0]);
9368
9369 if (ioa_cfg->intr_flag == IPR_USE_MSI) {
9370 pci_disable_msi(pdev);
9371 ioa_cfg->intr_flag &= ~IPR_USE_MSI;
9372 } else if (ioa_cfg->intr_flag == IPR_USE_MSIX) {
9373 pci_disable_msix(pdev);
9374 ioa_cfg->intr_flag &= ~IPR_USE_MSIX;
9375 }
9376}
9377
9378/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009379 * ipr_free_all_resources - Free all allocated resources for an adapter.
9380 * @ipr_cmd: ipr command struct
9381 *
9382 * This function frees all allocated resources for the
9383 * specified adapter.
9384 *
9385 * Return value:
9386 * none
9387 **/
9388static void ipr_free_all_resources(struct ipr_ioa_cfg *ioa_cfg)
9389{
9390 struct pci_dev *pdev = ioa_cfg->pdev;
9391
9392 ENTER;
Brian King2796ca52015-03-26 11:23:52 -05009393 ipr_free_irqs(ioa_cfg);
9394 if (ioa_cfg->reset_work_q)
9395 destroy_workqueue(ioa_cfg->reset_work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009396 iounmap(ioa_cfg->hdw_dma_regs);
9397 pci_release_regions(pdev);
9398 ipr_free_mem(ioa_cfg);
9399 scsi_host_put(ioa_cfg->host);
9400 pci_disable_device(pdev);
9401 LEAVE;
9402}
9403
9404/**
9405 * ipr_alloc_cmd_blks - Allocate command blocks for an adapter
9406 * @ioa_cfg: ioa config struct
9407 *
9408 * Return value:
9409 * 0 on success / -ENOMEM on allocation failure
9410 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009411static int ipr_alloc_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009412{
9413 struct ipr_cmnd *ipr_cmd;
9414 struct ipr_ioarcb *ioarcb;
9415 dma_addr_t dma_addr;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009416 int i, entries_each_hrrq, hrrq_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009417
Anton Blanchardd73341b2014-10-30 17:27:08 -05009418 ioa_cfg->ipr_cmd_pool = dma_pool_create(IPR_NAME, &ioa_cfg->pdev->dev,
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03009419 sizeof(struct ipr_cmnd), 512, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009420
9421 if (!ioa_cfg->ipr_cmd_pool)
9422 return -ENOMEM;
9423
Brian King89aad422012-03-14 21:20:10 -05009424 ioa_cfg->ipr_cmnd_list = kcalloc(IPR_NUM_CMD_BLKS, sizeof(struct ipr_cmnd *), GFP_KERNEL);
9425 ioa_cfg->ipr_cmnd_list_dma = kcalloc(IPR_NUM_CMD_BLKS, sizeof(dma_addr_t), GFP_KERNEL);
9426
9427 if (!ioa_cfg->ipr_cmnd_list || !ioa_cfg->ipr_cmnd_list_dma) {
9428 ipr_free_cmd_blks(ioa_cfg);
9429 return -ENOMEM;
9430 }
9431
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009432 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9433 if (ioa_cfg->hrrq_num > 1) {
9434 if (i == 0) {
9435 entries_each_hrrq = IPR_NUM_INTERNAL_CMD_BLKS;
9436 ioa_cfg->hrrq[i].min_cmd_id = 0;
9437 ioa_cfg->hrrq[i].max_cmd_id =
9438 (entries_each_hrrq - 1);
9439 } else {
9440 entries_each_hrrq =
9441 IPR_NUM_BASE_CMD_BLKS/
9442 (ioa_cfg->hrrq_num - 1);
9443 ioa_cfg->hrrq[i].min_cmd_id =
9444 IPR_NUM_INTERNAL_CMD_BLKS +
9445 (i - 1) * entries_each_hrrq;
9446 ioa_cfg->hrrq[i].max_cmd_id =
9447 (IPR_NUM_INTERNAL_CMD_BLKS +
9448 i * entries_each_hrrq - 1);
9449 }
9450 } else {
9451 entries_each_hrrq = IPR_NUM_CMD_BLKS;
9452 ioa_cfg->hrrq[i].min_cmd_id = 0;
9453 ioa_cfg->hrrq[i].max_cmd_id = (entries_each_hrrq - 1);
9454 }
9455 ioa_cfg->hrrq[i].size = entries_each_hrrq;
9456 }
9457
9458 BUG_ON(ioa_cfg->hrrq_num == 0);
9459
9460 i = IPR_NUM_CMD_BLKS -
9461 ioa_cfg->hrrq[ioa_cfg->hrrq_num - 1].max_cmd_id - 1;
9462 if (i > 0) {
9463 ioa_cfg->hrrq[ioa_cfg->hrrq_num - 1].size += i;
9464 ioa_cfg->hrrq[ioa_cfg->hrrq_num - 1].max_cmd_id += i;
9465 }
9466
Linus Torvalds1da177e2005-04-16 15:20:36 -07009467 for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05009468 ipr_cmd = dma_pool_alloc(ioa_cfg->ipr_cmd_pool, GFP_KERNEL, &dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469
9470 if (!ipr_cmd) {
9471 ipr_free_cmd_blks(ioa_cfg);
9472 return -ENOMEM;
9473 }
9474
9475 memset(ipr_cmd, 0, sizeof(*ipr_cmd));
9476 ioa_cfg->ipr_cmnd_list[i] = ipr_cmd;
9477 ioa_cfg->ipr_cmnd_list_dma[i] = dma_addr;
9478
9479 ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08009480 ipr_cmd->dma_addr = dma_addr;
9481 if (ioa_cfg->sis64)
9482 ioarcb->a.ioarcb_host_pci_addr64 = cpu_to_be64(dma_addr);
9483 else
9484 ioarcb->a.ioarcb_host_pci_addr = cpu_to_be32(dma_addr);
9485
Linus Torvalds1da177e2005-04-16 15:20:36 -07009486 ioarcb->host_response_handle = cpu_to_be32(i << 2);
Wayne Boyera32c0552010-02-19 13:23:36 -08009487 if (ioa_cfg->sis64) {
9488 ioarcb->u.sis64_addr_data.data_ioadl_addr =
9489 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
9490 ioarcb->u.sis64_addr_data.ioasa_host_pci_addr =
Wayne Boyer96d21f02010-05-10 09:13:27 -07009491 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, s.ioasa64));
Wayne Boyera32c0552010-02-19 13:23:36 -08009492 } else {
9493 ioarcb->write_ioadl_addr =
9494 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
9495 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
9496 ioarcb->ioasa_host_pci_addr =
Wayne Boyer96d21f02010-05-10 09:13:27 -07009497 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, s.ioasa));
Wayne Boyera32c0552010-02-19 13:23:36 -08009498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009499 ioarcb->ioasa_len = cpu_to_be16(sizeof(struct ipr_ioasa));
9500 ipr_cmd->cmd_index = i;
9501 ipr_cmd->ioa_cfg = ioa_cfg;
9502 ipr_cmd->sense_buffer_dma = dma_addr +
9503 offsetof(struct ipr_cmnd, sense_buffer);
9504
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009505 ipr_cmd->ioarcb.cmd_pkt.hrrq_id = hrrq_id;
9506 ipr_cmd->hrrq = &ioa_cfg->hrrq[hrrq_id];
9507 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
9508 if (i >= ioa_cfg->hrrq[hrrq_id].max_cmd_id)
9509 hrrq_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009510 }
9511
9512 return 0;
9513}
9514
9515/**
9516 * ipr_alloc_mem - Allocate memory for an adapter
9517 * @ioa_cfg: ioa config struct
9518 *
9519 * Return value:
9520 * 0 on success / non-zero for error
9521 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009522static int ipr_alloc_mem(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009523{
9524 struct pci_dev *pdev = ioa_cfg->pdev;
9525 int i, rc = -ENOMEM;
9526
9527 ENTER;
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06009528 ioa_cfg->res_entries = kzalloc(sizeof(struct ipr_resource_entry) *
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009529 ioa_cfg->max_devs_supported, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009530
9531 if (!ioa_cfg->res_entries)
9532 goto out;
9533
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009534 for (i = 0; i < ioa_cfg->max_devs_supported; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009535 list_add_tail(&ioa_cfg->res_entries[i].queue, &ioa_cfg->free_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009536 ioa_cfg->res_entries[i].ioa_cfg = ioa_cfg;
9537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009538
Anton Blanchardd73341b2014-10-30 17:27:08 -05009539 ioa_cfg->vpd_cbs = dma_alloc_coherent(&pdev->dev,
9540 sizeof(struct ipr_misc_cbs),
9541 &ioa_cfg->vpd_cbs_dma,
9542 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009543
9544 if (!ioa_cfg->vpd_cbs)
9545 goto out_free_res_entries;
9546
9547 if (ipr_alloc_cmd_blks(ioa_cfg))
9548 goto out_free_vpd_cbs;
9549
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009550 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05009551 ioa_cfg->hrrq[i].host_rrq = dma_alloc_coherent(&pdev->dev,
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009552 sizeof(u32) * ioa_cfg->hrrq[i].size,
Anton Blanchardd73341b2014-10-30 17:27:08 -05009553 &ioa_cfg->hrrq[i].host_rrq_dma,
9554 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009555
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009556 if (!ioa_cfg->hrrq[i].host_rrq) {
9557 while (--i > 0)
Anton Blanchardd73341b2014-10-30 17:27:08 -05009558 dma_free_coherent(&pdev->dev,
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009559 sizeof(u32) * ioa_cfg->hrrq[i].size,
9560 ioa_cfg->hrrq[i].host_rrq,
9561 ioa_cfg->hrrq[i].host_rrq_dma);
9562 goto out_ipr_free_cmd_blocks;
9563 }
9564 ioa_cfg->hrrq[i].ioa_cfg = ioa_cfg;
9565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009566
Anton Blanchardd73341b2014-10-30 17:27:08 -05009567 ioa_cfg->u.cfg_table = dma_alloc_coherent(&pdev->dev,
9568 ioa_cfg->cfg_table_size,
9569 &ioa_cfg->cfg_table_dma,
9570 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009571
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009572 if (!ioa_cfg->u.cfg_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009573 goto out_free_host_rrq;
9574
9575 for (i = 0; i < IPR_NUM_HCAMS; i++) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05009576 ioa_cfg->hostrcb[i] = dma_alloc_coherent(&pdev->dev,
9577 sizeof(struct ipr_hostrcb),
9578 &ioa_cfg->hostrcb_dma[i],
9579 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009580
9581 if (!ioa_cfg->hostrcb[i])
9582 goto out_free_hostrcb_dma;
9583
9584 ioa_cfg->hostrcb[i]->hostrcb_dma =
9585 ioa_cfg->hostrcb_dma[i] + offsetof(struct ipr_hostrcb, hcam);
Brian King49dc6a12006-11-21 10:28:35 -06009586 ioa_cfg->hostrcb[i]->ioa_cfg = ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009587 list_add_tail(&ioa_cfg->hostrcb[i]->queue, &ioa_cfg->hostrcb_free_q);
9588 }
9589
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06009590 ioa_cfg->trace = kzalloc(sizeof(struct ipr_trace_entry) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009591 IPR_NUM_TRACE_ENTRIES, GFP_KERNEL);
9592
9593 if (!ioa_cfg->trace)
9594 goto out_free_hostrcb_dma;
9595
Linus Torvalds1da177e2005-04-16 15:20:36 -07009596 rc = 0;
9597out:
9598 LEAVE;
9599 return rc;
9600
9601out_free_hostrcb_dma:
9602 while (i-- > 0) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05009603 dma_free_coherent(&pdev->dev, sizeof(struct ipr_hostrcb),
9604 ioa_cfg->hostrcb[i],
9605 ioa_cfg->hostrcb_dma[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009606 }
Anton Blanchardd73341b2014-10-30 17:27:08 -05009607 dma_free_coherent(&pdev->dev, ioa_cfg->cfg_table_size,
9608 ioa_cfg->u.cfg_table, ioa_cfg->cfg_table_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009609out_free_host_rrq:
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009610 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
Anton Blanchardd73341b2014-10-30 17:27:08 -05009611 dma_free_coherent(&pdev->dev,
9612 sizeof(u32) * ioa_cfg->hrrq[i].size,
9613 ioa_cfg->hrrq[i].host_rrq,
9614 ioa_cfg->hrrq[i].host_rrq_dma);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009616out_ipr_free_cmd_blocks:
9617 ipr_free_cmd_blks(ioa_cfg);
9618out_free_vpd_cbs:
Anton Blanchardd73341b2014-10-30 17:27:08 -05009619 dma_free_coherent(&pdev->dev, sizeof(struct ipr_misc_cbs),
9620 ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009621out_free_res_entries:
9622 kfree(ioa_cfg->res_entries);
9623 goto out;
9624}
9625
9626/**
9627 * ipr_initialize_bus_attr - Initialize SCSI bus attributes to default values
9628 * @ioa_cfg: ioa config struct
9629 *
9630 * Return value:
9631 * none
9632 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009633static void ipr_initialize_bus_attr(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009634{
9635 int i;
9636
9637 for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
9638 ioa_cfg->bus_attr[i].bus = i;
9639 ioa_cfg->bus_attr[i].qas_enabled = 0;
9640 ioa_cfg->bus_attr[i].bus_width = IPR_DEFAULT_BUS_WIDTH;
9641 if (ipr_max_speed < ARRAY_SIZE(ipr_max_bus_speeds))
9642 ioa_cfg->bus_attr[i].max_xfer_rate = ipr_max_bus_speeds[ipr_max_speed];
9643 else
9644 ioa_cfg->bus_attr[i].max_xfer_rate = IPR_U160_SCSI_RATE;
9645 }
9646}
9647
9648/**
Brian King6270e592014-01-21 12:16:41 -06009649 * ipr_init_regs - Initialize IOA registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07009650 * @ioa_cfg: ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07009651 *
9652 * Return value:
Brian King6270e592014-01-21 12:16:41 -06009653 * none
Linus Torvalds1da177e2005-04-16 15:20:36 -07009654 **/
Brian King6270e592014-01-21 12:16:41 -06009655static void ipr_init_regs(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009656{
9657 const struct ipr_interrupt_offsets *p;
9658 struct ipr_interrupts *t;
9659 void __iomem *base;
9660
Linus Torvalds1da177e2005-04-16 15:20:36 -07009661 p = &ioa_cfg->chip_cfg->regs;
9662 t = &ioa_cfg->regs;
9663 base = ioa_cfg->hdw_dma_regs;
9664
9665 t->set_interrupt_mask_reg = base + p->set_interrupt_mask_reg;
9666 t->clr_interrupt_mask_reg = base + p->clr_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009667 t->clr_interrupt_mask_reg32 = base + p->clr_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009668 t->sense_interrupt_mask_reg = base + p->sense_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009669 t->sense_interrupt_mask_reg32 = base + p->sense_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009670 t->clr_interrupt_reg = base + p->clr_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009671 t->clr_interrupt_reg32 = base + p->clr_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672 t->sense_interrupt_reg = base + p->sense_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009673 t->sense_interrupt_reg32 = base + p->sense_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009674 t->ioarrin_reg = base + p->ioarrin_reg;
9675 t->sense_uproc_interrupt_reg = base + p->sense_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009676 t->sense_uproc_interrupt_reg32 = base + p->sense_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009677 t->set_uproc_interrupt_reg = base + p->set_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009678 t->set_uproc_interrupt_reg32 = base + p->set_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009679 t->clr_uproc_interrupt_reg = base + p->clr_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009680 t->clr_uproc_interrupt_reg32 = base + p->clr_uproc_interrupt_reg32;
Wayne Boyerdcbad002010-02-19 13:24:14 -08009681
9682 if (ioa_cfg->sis64) {
Wayne Boyer214777b2010-02-19 13:24:26 -08009683 t->init_feedback_reg = base + p->init_feedback_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08009684 t->dump_addr_reg = base + p->dump_addr_reg;
9685 t->dump_data_reg = base + p->dump_data_reg;
Wayne Boyer8701f182010-06-04 10:26:50 -07009686 t->endian_swap_reg = base + p->endian_swap_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08009687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688}
9689
9690/**
Brian King6270e592014-01-21 12:16:41 -06009691 * ipr_init_ioa_cfg - Initialize IOA config struct
9692 * @ioa_cfg: ioa config struct
9693 * @host: scsi host struct
9694 * @pdev: PCI dev struct
9695 *
9696 * Return value:
9697 * none
9698 **/
9699static void ipr_init_ioa_cfg(struct ipr_ioa_cfg *ioa_cfg,
9700 struct Scsi_Host *host, struct pci_dev *pdev)
9701{
9702 int i;
9703
9704 ioa_cfg->host = host;
9705 ioa_cfg->pdev = pdev;
9706 ioa_cfg->log_level = ipr_log_level;
9707 ioa_cfg->doorbell = IPR_DOORBELL;
9708 sprintf(ioa_cfg->eye_catcher, IPR_EYECATCHER);
9709 sprintf(ioa_cfg->trace_start, IPR_TRACE_START_LABEL);
9710 sprintf(ioa_cfg->cfg_table_start, IPR_CFG_TBL_START);
9711 sprintf(ioa_cfg->resource_table_label, IPR_RES_TABLE_LABEL);
9712 sprintf(ioa_cfg->ipr_hcam_label, IPR_HCAM_LABEL);
9713 sprintf(ioa_cfg->ipr_cmd_label, IPR_CMD_LABEL);
9714
9715 INIT_LIST_HEAD(&ioa_cfg->hostrcb_free_q);
9716 INIT_LIST_HEAD(&ioa_cfg->hostrcb_pending_q);
9717 INIT_LIST_HEAD(&ioa_cfg->free_res_q);
9718 INIT_LIST_HEAD(&ioa_cfg->used_res_q);
9719 INIT_WORK(&ioa_cfg->work_q, ipr_worker_thread);
9720 init_waitqueue_head(&ioa_cfg->reset_wait_q);
9721 init_waitqueue_head(&ioa_cfg->msi_wait_q);
9722 init_waitqueue_head(&ioa_cfg->eeh_wait_q);
9723 ioa_cfg->sdt_state = INACTIVE;
9724
9725 ipr_initialize_bus_attr(ioa_cfg);
9726 ioa_cfg->max_devs_supported = ipr_max_devs;
9727
9728 if (ioa_cfg->sis64) {
9729 host->max_id = IPR_MAX_SIS64_TARGETS_PER_BUS;
9730 host->max_lun = IPR_MAX_SIS64_LUNS_PER_TARGET;
9731 if (ipr_max_devs > IPR_MAX_SIS64_DEVS)
9732 ioa_cfg->max_devs_supported = IPR_MAX_SIS64_DEVS;
9733 ioa_cfg->cfg_table_size = (sizeof(struct ipr_config_table_hdr64)
9734 + ((sizeof(struct ipr_config_table_entry64)
9735 * ioa_cfg->max_devs_supported)));
9736 } else {
9737 host->max_id = IPR_MAX_NUM_TARGETS_PER_BUS;
9738 host->max_lun = IPR_MAX_NUM_LUNS_PER_TARGET;
9739 if (ipr_max_devs > IPR_MAX_PHYSICAL_DEVS)
9740 ioa_cfg->max_devs_supported = IPR_MAX_PHYSICAL_DEVS;
9741 ioa_cfg->cfg_table_size = (sizeof(struct ipr_config_table_hdr)
9742 + ((sizeof(struct ipr_config_table_entry)
9743 * ioa_cfg->max_devs_supported)));
9744 }
9745
Brian Kingf688f962014-12-02 12:47:37 -06009746 host->max_channel = IPR_VSET_BUS;
Brian King6270e592014-01-21 12:16:41 -06009747 host->unique_id = host->host_no;
9748 host->max_cmd_len = IPR_MAX_CDB_LEN;
9749 host->can_queue = ioa_cfg->max_cmds;
9750 pci_set_drvdata(pdev, ioa_cfg);
9751
9752 for (i = 0; i < ARRAY_SIZE(ioa_cfg->hrrq); i++) {
9753 INIT_LIST_HEAD(&ioa_cfg->hrrq[i].hrrq_free_q);
9754 INIT_LIST_HEAD(&ioa_cfg->hrrq[i].hrrq_pending_q);
9755 spin_lock_init(&ioa_cfg->hrrq[i]._lock);
9756 if (i == 0)
9757 ioa_cfg->hrrq[i].lock = ioa_cfg->host->host_lock;
9758 else
9759 ioa_cfg->hrrq[i].lock = &ioa_cfg->hrrq[i]._lock;
9760 }
9761}
9762
9763/**
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009764 * ipr_get_chip_info - Find adapter chip information
Linus Torvalds1da177e2005-04-16 15:20:36 -07009765 * @dev_id: PCI device id struct
9766 *
9767 * Return value:
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009768 * ptr to chip information on success / NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07009769 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009770static const struct ipr_chip_t *
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009771ipr_get_chip_info(const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009772{
9773 int i;
9774
Linus Torvalds1da177e2005-04-16 15:20:36 -07009775 for (i = 0; i < ARRAY_SIZE(ipr_chip); i++)
9776 if (ipr_chip[i].vendor == dev_id->vendor &&
9777 ipr_chip[i].device == dev_id->device)
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009778 return &ipr_chip[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07009779 return NULL;
9780}
9781
Brian King6270e592014-01-21 12:16:41 -06009782/**
9783 * ipr_wait_for_pci_err_recovery - Wait for any PCI error recovery to complete
9784 * during probe time
9785 * @ioa_cfg: ioa config struct
9786 *
9787 * Return value:
9788 * None
9789 **/
9790static void ipr_wait_for_pci_err_recovery(struct ipr_ioa_cfg *ioa_cfg)
9791{
9792 struct pci_dev *pdev = ioa_cfg->pdev;
9793
9794 if (pci_channel_offline(pdev)) {
9795 wait_event_timeout(ioa_cfg->eeh_wait_q,
9796 !pci_channel_offline(pdev),
9797 IPR_PCI_ERROR_RECOVERY_TIMEOUT);
9798 pci_restore_state(pdev);
9799 }
9800}
9801
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009802static int ipr_enable_msix(struct ipr_ioa_cfg *ioa_cfg)
9803{
9804 struct msix_entry entries[IPR_MAX_MSIX_VECTORS];
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009805 int i, vectors;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009806
9807 for (i = 0; i < ARRAY_SIZE(entries); ++i)
9808 entries[i].entry = i;
9809
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009810 vectors = pci_enable_msix_range(ioa_cfg->pdev,
9811 entries, 1, ipr_number_of_msix);
9812 if (vectors < 0) {
Brian King6270e592014-01-21 12:16:41 -06009813 ipr_wait_for_pci_err_recovery(ioa_cfg);
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009814 return vectors;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009815 }
9816
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009817 for (i = 0; i < vectors; i++)
9818 ioa_cfg->vectors_info[i].vec = entries[i].vector;
9819 ioa_cfg->nvectors = vectors;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009820
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009821 return 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009822}
9823
9824static int ipr_enable_msi(struct ipr_ioa_cfg *ioa_cfg)
9825{
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009826 int i, vectors;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009827
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009828 vectors = pci_enable_msi_range(ioa_cfg->pdev, 1, ipr_number_of_msix);
9829 if (vectors < 0) {
Brian King6270e592014-01-21 12:16:41 -06009830 ipr_wait_for_pci_err_recovery(ioa_cfg);
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009831 return vectors;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009832 }
9833
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009834 for (i = 0; i < vectors; i++)
9835 ioa_cfg->vectors_info[i].vec = ioa_cfg->pdev->irq + i;
9836 ioa_cfg->nvectors = vectors;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009837
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009838 return 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009839}
9840
9841static void name_msi_vectors(struct ipr_ioa_cfg *ioa_cfg)
9842{
9843 int vec_idx, n = sizeof(ioa_cfg->vectors_info[0].desc) - 1;
9844
9845 for (vec_idx = 0; vec_idx < ioa_cfg->nvectors; vec_idx++) {
9846 snprintf(ioa_cfg->vectors_info[vec_idx].desc, n,
9847 "host%d-%d", ioa_cfg->host->host_no, vec_idx);
9848 ioa_cfg->vectors_info[vec_idx].
9849 desc[strlen(ioa_cfg->vectors_info[vec_idx].desc)] = 0;
9850 }
9851}
9852
9853static int ipr_request_other_msi_irqs(struct ipr_ioa_cfg *ioa_cfg)
9854{
9855 int i, rc;
9856
9857 for (i = 1; i < ioa_cfg->nvectors; i++) {
9858 rc = request_irq(ioa_cfg->vectors_info[i].vec,
9859 ipr_isr_mhrrq,
9860 0,
9861 ioa_cfg->vectors_info[i].desc,
9862 &ioa_cfg->hrrq[i]);
9863 if (rc) {
9864 while (--i >= 0)
9865 free_irq(ioa_cfg->vectors_info[i].vec,
9866 &ioa_cfg->hrrq[i]);
9867 return rc;
9868 }
9869 }
9870 return 0;
9871}
9872
Linus Torvalds1da177e2005-04-16 15:20:36 -07009873/**
Wayne Boyer95fecd92009-06-16 15:13:28 -07009874 * ipr_test_intr - Handle the interrupt generated in ipr_test_msi().
9875 * @pdev: PCI device struct
9876 *
9877 * Description: Simply set the msi_received flag to 1 indicating that
9878 * Message Signaled Interrupts are supported.
9879 *
9880 * Return value:
9881 * 0 on success / non-zero on failure
9882 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009883static irqreturn_t ipr_test_intr(int irq, void *devp)
Wayne Boyer95fecd92009-06-16 15:13:28 -07009884{
9885 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)devp;
9886 unsigned long lock_flags = 0;
9887 irqreturn_t rc = IRQ_HANDLED;
9888
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009889 dev_info(&ioa_cfg->pdev->dev, "Received IRQ : %d\n", irq);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009890 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
9891
9892 ioa_cfg->msi_received = 1;
9893 wake_up(&ioa_cfg->msi_wait_q);
9894
9895 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9896 return rc;
9897}
9898
9899/**
9900 * ipr_test_msi - Test for Message Signaled Interrupt (MSI) support.
9901 * @pdev: PCI device struct
9902 *
Alexander Gordeev60e76b72014-03-12 16:08:50 -05009903 * Description: The return value from pci_enable_msi_range() can not always be
Wayne Boyer95fecd92009-06-16 15:13:28 -07009904 * trusted. This routine sets up and initiates a test interrupt to determine
9905 * if the interrupt is received via the ipr_test_intr() service routine.
9906 * If the tests fails, the driver will fall back to LSI.
9907 *
9908 * Return value:
9909 * 0 on success / non-zero on failure
9910 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009911static int ipr_test_msi(struct ipr_ioa_cfg *ioa_cfg, struct pci_dev *pdev)
Wayne Boyer95fecd92009-06-16 15:13:28 -07009912{
9913 int rc;
9914 volatile u32 int_reg;
9915 unsigned long lock_flags = 0;
9916
9917 ENTER;
9918
9919 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
9920 init_waitqueue_head(&ioa_cfg->msi_wait_q);
9921 ioa_cfg->msi_received = 0;
9922 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
Wayne Boyer214777b2010-02-19 13:24:26 -08009923 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE, ioa_cfg->regs.clr_interrupt_mask_reg32);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009924 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
9925 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9926
wenxiong@linux.vnet.ibm.comf19799f2013-02-27 12:37:45 -06009927 if (ioa_cfg->intr_flag == IPR_USE_MSIX)
9928 rc = request_irq(ioa_cfg->vectors_info[0].vec, ipr_test_intr, 0, IPR_NAME, ioa_cfg);
9929 else
9930 rc = request_irq(pdev->irq, ipr_test_intr, 0, IPR_NAME, ioa_cfg);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009931 if (rc) {
9932 dev_err(&pdev->dev, "Can not assign irq %d\n", pdev->irq);
9933 return rc;
9934 } else if (ipr_debug)
9935 dev_info(&pdev->dev, "IRQ assigned: %d\n", pdev->irq);
9936
Wayne Boyer214777b2010-02-19 13:24:26 -08009937 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE, ioa_cfg->regs.sense_interrupt_reg32);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009938 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
9939 wait_event_timeout(ioa_cfg->msi_wait_q, ioa_cfg->msi_received, HZ);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009940 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009941 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
9942
Wayne Boyer95fecd92009-06-16 15:13:28 -07009943 if (!ioa_cfg->msi_received) {
9944 /* MSI test failed */
9945 dev_info(&pdev->dev, "MSI test failed. Falling back to LSI.\n");
9946 rc = -EOPNOTSUPP;
9947 } else if (ipr_debug)
9948 dev_info(&pdev->dev, "MSI test succeeded.\n");
9949
9950 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9951
wenxiong@linux.vnet.ibm.comf19799f2013-02-27 12:37:45 -06009952 if (ioa_cfg->intr_flag == IPR_USE_MSIX)
9953 free_irq(ioa_cfg->vectors_info[0].vec, ioa_cfg);
9954 else
9955 free_irq(pdev->irq, ioa_cfg);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009956
9957 LEAVE;
9958
9959 return rc;
9960}
9961
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009962 /* ipr_probe_ioa - Allocates memory and does first stage of initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -07009963 * @pdev: PCI device struct
9964 * @dev_id: PCI device id struct
9965 *
9966 * Return value:
9967 * 0 on success / non-zero on failure
9968 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009969static int ipr_probe_ioa(struct pci_dev *pdev,
9970 const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009971{
9972 struct ipr_ioa_cfg *ioa_cfg;
9973 struct Scsi_Host *host;
9974 unsigned long ipr_regs_pci;
9975 void __iomem *ipr_regs;
Eric Sesterhenna2a65a32006-09-25 16:59:07 -07009976 int rc = PCIBIOS_SUCCESSFUL;
Brian King473b1e82007-05-02 10:44:11 -05009977 volatile u32 mask, uproc, interrupts;
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -05009978 unsigned long lock_flags, driver_lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009979
9980 ENTER;
9981
Linus Torvalds1da177e2005-04-16 15:20:36 -07009982 dev_info(&pdev->dev, "Found IOA with IRQ: %d\n", pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009983 host = scsi_host_alloc(&driver_template, sizeof(*ioa_cfg));
9984
9985 if (!host) {
9986 dev_err(&pdev->dev, "call to scsi_host_alloc failed!\n");
9987 rc = -ENOMEM;
Brian King6270e592014-01-21 12:16:41 -06009988 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009989 }
9990
9991 ioa_cfg = (struct ipr_ioa_cfg *)host->hostdata;
9992 memset(ioa_cfg, 0, sizeof(struct ipr_ioa_cfg));
Dan Williams8d8e7d132012-07-09 21:06:08 -07009993 ata_host_init(&ioa_cfg->ata_host, &pdev->dev, &ipr_sata_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009994
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009995 ioa_cfg->ipr_chip = ipr_get_chip_info(dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009996
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009997 if (!ioa_cfg->ipr_chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009998 dev_err(&pdev->dev, "Unknown adapter chipset 0x%04X 0x%04X\n",
9999 dev_id->vendor, dev_id->device);
10000 goto out_scsi_host_put;
10001 }
10002
Wayne Boyera32c0552010-02-19 13:23:36 -080010003 /* set SIS 32 or SIS 64 */
10004 ioa_cfg->sis64 = ioa_cfg->ipr_chip->sis_type == IPR_SIS64 ? 1 : 0;
Wayne Boyer1be7bd82009-06-17 09:55:35 -070010005 ioa_cfg->chip_cfg = ioa_cfg->ipr_chip->cfg;
Brian King7dd21302012-03-14 21:20:08 -050010006 ioa_cfg->clear_isr = ioa_cfg->chip_cfg->clear_isr;
Brian King89aad422012-03-14 21:20:10 -050010007 ioa_cfg->max_cmds = ioa_cfg->chip_cfg->max_cmds;
Wayne Boyer1be7bd82009-06-17 09:55:35 -070010008
Brian King5469cb52007-03-29 12:42:40 -050010009 if (ipr_transop_timeout)
10010 ioa_cfg->transop_timeout = ipr_transop_timeout;
10011 else if (dev_id->driver_data & IPR_USE_LONG_TRANSOP_TIMEOUT)
10012 ioa_cfg->transop_timeout = IPR_LONG_OPERATIONAL_TIMEOUT;
10013 else
10014 ioa_cfg->transop_timeout = IPR_OPERATIONAL_TIMEOUT;
10015
Auke Kok44c10132007-06-08 15:46:36 -070010016 ioa_cfg->revid = pdev->revision;
Brian King463fc692007-05-07 17:09:05 -050010017
Brian King6270e592014-01-21 12:16:41 -060010018 ipr_init_ioa_cfg(ioa_cfg, host, pdev);
10019
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020 ipr_regs_pci = pci_resource_start(pdev, 0);
10021
10022 rc = pci_request_regions(pdev, IPR_NAME);
10023 if (rc < 0) {
10024 dev_err(&pdev->dev,
10025 "Couldn't register memory range of registers\n");
10026 goto out_scsi_host_put;
10027 }
10028
Brian King6270e592014-01-21 12:16:41 -060010029 rc = pci_enable_device(pdev);
10030
10031 if (rc || pci_channel_offline(pdev)) {
10032 if (pci_channel_offline(pdev)) {
10033 ipr_wait_for_pci_err_recovery(ioa_cfg);
10034 rc = pci_enable_device(pdev);
10035 }
10036
10037 if (rc) {
10038 dev_err(&pdev->dev, "Cannot enable adapter\n");
10039 ipr_wait_for_pci_err_recovery(ioa_cfg);
10040 goto out_release_regions;
10041 }
10042 }
10043
Arjan van de Ven25729a72008-09-28 16:18:02 -070010044 ipr_regs = pci_ioremap_bar(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010045
10046 if (!ipr_regs) {
10047 dev_err(&pdev->dev,
10048 "Couldn't map memory range of registers\n");
10049 rc = -ENOMEM;
Brian King6270e592014-01-21 12:16:41 -060010050 goto out_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010051 }
10052
10053 ioa_cfg->hdw_dma_regs = ipr_regs;
10054 ioa_cfg->hdw_dma_regs_pci = ipr_regs_pci;
10055 ioa_cfg->ioa_mailbox = ioa_cfg->chip_cfg->mailbox + ipr_regs;
10056
Brian King6270e592014-01-21 12:16:41 -060010057 ipr_init_regs(ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010058
Wayne Boyera32c0552010-02-19 13:23:36 -080010059 if (ioa_cfg->sis64) {
Anton Blanchard869404c2014-10-30 17:27:09 -050010060 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Wayne Boyera32c0552010-02-19 13:23:36 -080010061 if (rc < 0) {
Anton Blanchard869404c2014-10-30 17:27:09 -050010062 dev_dbg(&pdev->dev, "Failed to set 64 bit DMA mask\n");
10063 rc = dma_set_mask_and_coherent(&pdev->dev,
10064 DMA_BIT_MASK(32));
Wayne Boyera32c0552010-02-19 13:23:36 -080010065 }
Wayne Boyera32c0552010-02-19 13:23:36 -080010066 } else
Anton Blanchard869404c2014-10-30 17:27:09 -050010067 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Wayne Boyera32c0552010-02-19 13:23:36 -080010068
Linus Torvalds1da177e2005-04-16 15:20:36 -070010069 if (rc < 0) {
Anton Blanchard869404c2014-10-30 17:27:09 -050010070 dev_err(&pdev->dev, "Failed to set DMA mask\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070010071 goto cleanup_nomem;
10072 }
10073
10074 rc = pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
10075 ioa_cfg->chip_cfg->cache_line_size);
10076
10077 if (rc != PCIBIOS_SUCCESSFUL) {
10078 dev_err(&pdev->dev, "Write of cache line size failed\n");
Brian King6270e592014-01-21 12:16:41 -060010079 ipr_wait_for_pci_err_recovery(ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010080 rc = -EIO;
10081 goto cleanup_nomem;
10082 }
10083
Brian King6270e592014-01-21 12:16:41 -060010084 /* Issue MMIO read to ensure card is not in EEH */
10085 interrupts = readl(ioa_cfg->regs.sense_interrupt_reg);
10086 ipr_wait_for_pci_err_recovery(ioa_cfg);
10087
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010088 if (ipr_number_of_msix > IPR_MAX_MSIX_VECTORS) {
10089 dev_err(&pdev->dev, "The max number of MSIX is %d\n",
10090 IPR_MAX_MSIX_VECTORS);
10091 ipr_number_of_msix = IPR_MAX_MSIX_VECTORS;
10092 }
10093
10094 if (ioa_cfg->ipr_chip->intr_type == IPR_USE_MSI &&
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -060010095 ipr_enable_msix(ioa_cfg) == 0)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010096 ioa_cfg->intr_flag = IPR_USE_MSIX;
10097 else if (ioa_cfg->ipr_chip->intr_type == IPR_USE_MSI &&
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -060010098 ipr_enable_msi(ioa_cfg) == 0)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010099 ioa_cfg->intr_flag = IPR_USE_MSI;
10100 else {
10101 ioa_cfg->intr_flag = IPR_USE_LSI;
Brian King54e430b2016-06-27 09:09:40 -050010102 ioa_cfg->clear_isr = 1;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010103 ioa_cfg->nvectors = 1;
10104 dev_info(&pdev->dev, "Cannot enable MSI.\n");
10105 }
10106
Brian King6270e592014-01-21 12:16:41 -060010107 pci_set_master(pdev);
10108
10109 if (pci_channel_offline(pdev)) {
10110 ipr_wait_for_pci_err_recovery(ioa_cfg);
10111 pci_set_master(pdev);
10112 if (pci_channel_offline(pdev)) {
10113 rc = -EIO;
10114 goto out_msi_disable;
10115 }
10116 }
10117
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010118 if (ioa_cfg->intr_flag == IPR_USE_MSI ||
10119 ioa_cfg->intr_flag == IPR_USE_MSIX) {
Wayne Boyer95fecd92009-06-16 15:13:28 -070010120 rc = ipr_test_msi(ioa_cfg, pdev);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010121 if (rc == -EOPNOTSUPP) {
Brian King6270e592014-01-21 12:16:41 -060010122 ipr_wait_for_pci_err_recovery(ioa_cfg);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010123 if (ioa_cfg->intr_flag == IPR_USE_MSI) {
10124 ioa_cfg->intr_flag &= ~IPR_USE_MSI;
10125 pci_disable_msi(pdev);
10126 } else if (ioa_cfg->intr_flag == IPR_USE_MSIX) {
10127 ioa_cfg->intr_flag &= ~IPR_USE_MSIX;
10128 pci_disable_msix(pdev);
10129 }
10130
10131 ioa_cfg->intr_flag = IPR_USE_LSI;
10132 ioa_cfg->nvectors = 1;
10133 }
Wayne Boyer95fecd92009-06-16 15:13:28 -070010134 else if (rc)
10135 goto out_msi_disable;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010136 else {
10137 if (ioa_cfg->intr_flag == IPR_USE_MSI)
10138 dev_info(&pdev->dev,
10139 "Request for %d MSIs succeeded with starting IRQ: %d\n",
10140 ioa_cfg->nvectors, pdev->irq);
10141 else if (ioa_cfg->intr_flag == IPR_USE_MSIX)
10142 dev_info(&pdev->dev,
10143 "Request for %d MSIXs succeeded.",
10144 ioa_cfg->nvectors);
10145 }
10146 }
10147
10148 ioa_cfg->hrrq_num = min3(ioa_cfg->nvectors,
10149 (unsigned int)num_online_cpus(),
10150 (unsigned int)IPR_MAX_HRRQ_NUM);
Wayne Boyer95fecd92009-06-16 15:13:28 -070010151
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152 if ((rc = ipr_save_pcix_cmd_reg(ioa_cfg)))
Julia Lawallf170c682011-07-11 14:08:25 -070010153 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154
10155 if ((rc = ipr_set_pcix_cmd_reg(ioa_cfg)))
Julia Lawallf170c682011-07-11 14:08:25 -070010156 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010157
10158 rc = ipr_alloc_mem(ioa_cfg);
10159 if (rc < 0) {
10160 dev_err(&pdev->dev,
10161 "Couldn't allocate enough memory for device driver!\n");
Julia Lawallf170c682011-07-11 14:08:25 -070010162 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010163 }
10164
Brian King6270e592014-01-21 12:16:41 -060010165 /* Save away PCI config space for use following IOA reset */
10166 rc = pci_save_state(pdev);
10167
10168 if (rc != PCIBIOS_SUCCESSFUL) {
10169 dev_err(&pdev->dev, "Failed to save PCI config space\n");
10170 rc = -EIO;
10171 goto cleanup_nolog;
10172 }
10173
brking@us.ibm.comce155cc2005-11-17 09:35:12 -060010174 /*
10175 * If HRRQ updated interrupt is not masked, or reset alert is set,
10176 * the card is in an unknown state and needs a hard reset
10177 */
Wayne Boyer214777b2010-02-19 13:24:26 -080010178 mask = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
10179 interrupts = readl(ioa_cfg->regs.sense_interrupt_reg32);
10180 uproc = readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
brking@us.ibm.comce155cc2005-11-17 09:35:12 -060010181 if ((mask & IPR_PCII_HRRQ_UPDATED) == 0 || (uproc & IPR_UPROCI_RESET_ALERT))
10182 ioa_cfg->needs_hard_reset = 1;
Anton Blanchard5d7c20b2011-08-01 19:43:45 +100010183 if ((interrupts & IPR_PCII_ERROR_INTERRUPTS) || reset_devices)
Brian King473b1e82007-05-02 10:44:11 -050010184 ioa_cfg->needs_hard_reset = 1;
10185 if (interrupts & IPR_PCII_IOA_UNIT_CHECKED)
10186 ioa_cfg->ioa_unit_checked = 1;
brking@us.ibm.comce155cc2005-11-17 09:35:12 -060010187
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -060010188 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010189 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -060010190 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010192 if (ioa_cfg->intr_flag == IPR_USE_MSI
10193 || ioa_cfg->intr_flag == IPR_USE_MSIX) {
10194 name_msi_vectors(ioa_cfg);
10195 rc = request_irq(ioa_cfg->vectors_info[0].vec, ipr_isr,
10196 0,
10197 ioa_cfg->vectors_info[0].desc,
10198 &ioa_cfg->hrrq[0]);
10199 if (!rc)
10200 rc = ipr_request_other_msi_irqs(ioa_cfg);
10201 } else {
10202 rc = request_irq(pdev->irq, ipr_isr,
10203 IRQF_SHARED,
10204 IPR_NAME, &ioa_cfg->hrrq[0]);
10205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010206 if (rc) {
10207 dev_err(&pdev->dev, "Couldn't register IRQ %d! rc=%d\n",
10208 pdev->irq, rc);
10209 goto cleanup_nolog;
10210 }
10211
Brian King463fc692007-05-07 17:09:05 -050010212 if ((dev_id->driver_data & IPR_USE_PCI_WARM_RESET) ||
10213 (dev_id->device == PCI_DEVICE_ID_IBM_OBSIDIAN_E && !ioa_cfg->revid)) {
10214 ioa_cfg->needs_warm_reset = 1;
10215 ioa_cfg->reset = ipr_reset_slot_reset;
Brian King2796ca52015-03-26 11:23:52 -050010216
10217 ioa_cfg->reset_work_q = alloc_ordered_workqueue("ipr_reset_%d",
10218 WQ_MEM_RECLAIM, host->host_no);
10219
10220 if (!ioa_cfg->reset_work_q) {
10221 dev_err(&pdev->dev, "Couldn't register reset workqueue\n");
Wei Yongjunc8e18ac2016-07-29 16:00:45 +000010222 rc = -ENOMEM;
Brian King2796ca52015-03-26 11:23:52 -050010223 goto out_free_irq;
10224 }
Brian King463fc692007-05-07 17:09:05 -050010225 } else
10226 ioa_cfg->reset = ipr_reset_start_bist;
10227
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010228 spin_lock_irqsave(&ipr_driver_lock, driver_lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010229 list_add_tail(&ioa_cfg->queue, &ipr_ioa_head);
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010230 spin_unlock_irqrestore(&ipr_driver_lock, driver_lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010231
10232 LEAVE;
10233out:
10234 return rc;
10235
Brian King2796ca52015-03-26 11:23:52 -050010236out_free_irq:
10237 ipr_free_irqs(ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010238cleanup_nolog:
10239 ipr_free_mem(ioa_cfg);
Wayne Boyer95fecd92009-06-16 15:13:28 -070010240out_msi_disable:
Brian King6270e592014-01-21 12:16:41 -060010241 ipr_wait_for_pci_err_recovery(ioa_cfg);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010242 if (ioa_cfg->intr_flag == IPR_USE_MSI)
10243 pci_disable_msi(pdev);
10244 else if (ioa_cfg->intr_flag == IPR_USE_MSIX)
10245 pci_disable_msix(pdev);
Julia Lawallf170c682011-07-11 14:08:25 -070010246cleanup_nomem:
10247 iounmap(ipr_regs);
Brian King6270e592014-01-21 12:16:41 -060010248out_disable:
10249 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010250out_release_regions:
10251 pci_release_regions(pdev);
10252out_scsi_host_put:
10253 scsi_host_put(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010254 goto out;
10255}
10256
10257/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010258 * ipr_initiate_ioa_bringdown - Bring down an adapter
10259 * @ioa_cfg: ioa config struct
10260 * @shutdown_type: shutdown type
10261 *
10262 * Description: This function will initiate bringing down the adapter.
10263 * This consists of issuing an IOA shutdown to the adapter
10264 * to flush the cache, and running BIST.
10265 * If the caller needs to wait on the completion of the reset,
10266 * the caller must sleep on the reset_wait_q.
10267 *
10268 * Return value:
10269 * none
10270 **/
10271static void ipr_initiate_ioa_bringdown(struct ipr_ioa_cfg *ioa_cfg,
10272 enum ipr_shutdown_type shutdown_type)
10273{
10274 ENTER;
10275 if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
10276 ioa_cfg->sdt_state = ABORT_DUMP;
10277 ioa_cfg->reset_retries = 0;
10278 ioa_cfg->in_ioa_bringdown = 1;
10279 ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
10280 LEAVE;
10281}
10282
10283/**
10284 * __ipr_remove - Remove a single adapter
10285 * @pdev: pci device struct
10286 *
10287 * Adapter hot plug remove entry point.
10288 *
10289 * Return value:
10290 * none
10291 **/
10292static void __ipr_remove(struct pci_dev *pdev)
10293{
10294 unsigned long host_lock_flags = 0;
10295 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
Brian Kingbfae7822013-01-30 23:45:08 -060010296 int i;
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010297 unsigned long driver_lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010298 ENTER;
10299
10300 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -030010301 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -050010302 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
10303 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
10304 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
10305 }
10306
Brian Kingbfae7822013-01-30 23:45:08 -060010307 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
10308 spin_lock(&ioa_cfg->hrrq[i]._lock);
10309 ioa_cfg->hrrq[i].removing_ioa = 1;
10310 spin_unlock(&ioa_cfg->hrrq[i]._lock);
10311 }
10312 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010313 ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
10314
10315 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
10316 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
Tejun Heo43829732012-08-20 14:51:24 -070010317 flush_work(&ioa_cfg->work_q);
Brian King2796ca52015-03-26 11:23:52 -050010318 if (ioa_cfg->reset_work_q)
10319 flush_workqueue(ioa_cfg->reset_work_q);
wenxiong@linux.vnet.ibm.com9077a942013-03-14 13:52:24 -050010320 INIT_LIST_HEAD(&ioa_cfg->used_res_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010321 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
10322
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010323 spin_lock_irqsave(&ipr_driver_lock, driver_lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010324 list_del(&ioa_cfg->queue);
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010325 spin_unlock_irqrestore(&ipr_driver_lock, driver_lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010326
10327 if (ioa_cfg->sdt_state == ABORT_DUMP)
10328 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
10329 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
10330
10331 ipr_free_all_resources(ioa_cfg);
10332
10333 LEAVE;
10334}
10335
10336/**
10337 * ipr_remove - IOA hot plug remove entry point
10338 * @pdev: pci device struct
10339 *
10340 * Adapter hot plug remove entry point.
10341 *
10342 * Return value:
10343 * none
10344 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010345static void ipr_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010346{
10347 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
10348
10349 ENTER;
10350
Tony Jonesee959b02008-02-22 00:13:36 +010010351 ipr_remove_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010352 &ipr_trace_attr);
Tony Jonesee959b02008-02-22 00:13:36 +010010353 ipr_remove_dump_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010354 &ipr_dump_attr);
10355 scsi_remove_host(ioa_cfg->host);
10356
10357 __ipr_remove(pdev);
10358
10359 LEAVE;
10360}
10361
10362/**
10363 * ipr_probe - Adapter hot plug add entry point
10364 *
10365 * Return value:
10366 * 0 on success / non-zero on failure
10367 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010368static int ipr_probe(struct pci_dev *pdev, const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010369{
10370 struct ipr_ioa_cfg *ioa_cfg;
Brian Kingb195d5e2016-07-15 14:48:03 -050010371 unsigned long flags;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010372 int rc, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010373
10374 rc = ipr_probe_ioa(pdev, dev_id);
10375
10376 if (rc)
10377 return rc;
10378
10379 ioa_cfg = pci_get_drvdata(pdev);
10380 rc = ipr_probe_ioa_part2(ioa_cfg);
10381
10382 if (rc) {
10383 __ipr_remove(pdev);
10384 return rc;
10385 }
10386
10387 rc = scsi_add_host(ioa_cfg->host, &pdev->dev);
10388
10389 if (rc) {
10390 __ipr_remove(pdev);
10391 return rc;
10392 }
10393
Tony Jonesee959b02008-02-22 00:13:36 +010010394 rc = ipr_create_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010395 &ipr_trace_attr);
10396
10397 if (rc) {
10398 scsi_remove_host(ioa_cfg->host);
10399 __ipr_remove(pdev);
10400 return rc;
10401 }
10402
Tony Jonesee959b02008-02-22 00:13:36 +010010403 rc = ipr_create_dump_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010404 &ipr_dump_attr);
10405
10406 if (rc) {
Tony Jonesee959b02008-02-22 00:13:36 +010010407 ipr_remove_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010408 &ipr_trace_attr);
10409 scsi_remove_host(ioa_cfg->host);
10410 __ipr_remove(pdev);
10411 return rc;
10412 }
10413
10414 scsi_scan_host(ioa_cfg->host);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010415 ioa_cfg->iopoll_weight = ioa_cfg->chip_cfg->iopoll_weight;
10416
Jens Axboe89f8b332014-03-13 09:38:42 -060010417 if (ioa_cfg->iopoll_weight && ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010418 for (i = 1; i < ioa_cfg->hrrq_num; i++) {
Christoph Hellwig511cbce2015-11-10 14:56:14 +010010419 irq_poll_init(&ioa_cfg->hrrq[i].iopoll,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010420 ioa_cfg->iopoll_weight, ipr_iopoll);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010421 }
10422 }
10423
Brian Kingb195d5e2016-07-15 14:48:03 -050010424 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
10425 ioa_cfg->scan_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010426 schedule_work(&ioa_cfg->work_q);
Brian Kingb195d5e2016-07-15 14:48:03 -050010427 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010428 return 0;
10429}
10430
10431/**
10432 * ipr_shutdown - Shutdown handler.
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -070010433 * @pdev: pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -070010434 *
10435 * This function is invoked upon system shutdown/reboot. It will issue
10436 * an adapter shutdown to the adapter to flush the write cache.
10437 *
10438 * Return value:
10439 * none
10440 **/
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -070010441static void ipr_shutdown(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010442{
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -070010443 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010444 unsigned long lock_flags = 0;
Brian King4fdd7c72015-03-26 11:23:50 -050010445 enum ipr_shutdown_type shutdown_type = IPR_SHUTDOWN_NORMAL;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010446 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010447
10448 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Jens Axboe89f8b332014-03-13 09:38:42 -060010449 if (ioa_cfg->iopoll_weight && ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010450 ioa_cfg->iopoll_weight = 0;
10451 for (i = 1; i < ioa_cfg->hrrq_num; i++)
Christoph Hellwig511cbce2015-11-10 14:56:14 +010010452 irq_poll_disable(&ioa_cfg->hrrq[i].iopoll);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -060010453 }
10454
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -030010455 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -050010456 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
10457 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
10458 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
10459 }
10460
Brian King4fdd7c72015-03-26 11:23:50 -050010461 if (ipr_fast_reboot && system_state == SYSTEM_RESTART && ioa_cfg->sis64)
10462 shutdown_type = IPR_SHUTDOWN_QUIESCE;
10463
10464 ipr_initiate_ioa_bringdown(ioa_cfg, shutdown_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010465 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
10466 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
Brian King4fdd7c72015-03-26 11:23:50 -050010467 if (ipr_fast_reboot && system_state == SYSTEM_RESTART && ioa_cfg->sis64) {
Brian King2796ca52015-03-26 11:23:52 -050010468 ipr_free_irqs(ioa_cfg);
Brian King4fdd7c72015-03-26 11:23:50 -050010469 pci_disable_device(ioa_cfg->pdev);
10470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010471}
10472
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010473static struct pci_device_id ipr_pci_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010474 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -060010475 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5702, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010476 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -060010477 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5703, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010478 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -060010479 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573D, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010480 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -060010481 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573E, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010482 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -060010483 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571B, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010484 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -060010485 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572E, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010486 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -060010487 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -060010488 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King5469cb52007-03-29 12:42:40 -050010489 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575B, 0, 0,
10490 IPR_USE_LONG_TRANSOP_TIMEOUT },
brking@us.ibm.com86f51432005-11-01 17:02:42 -060010491 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King6d84c942007-01-23 11:25:23 -060010492 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -060010493 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King22d2e402007-04-26 16:00:13 -050010494 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0,
10495 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -060010496 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King5469cb52007-03-29 12:42:40 -050010497 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0,
10498 IPR_USE_LONG_TRANSOP_TIMEOUT },
brking@us.ibm.com86f51432005-11-01 17:02:42 -060010499 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King6d84c942007-01-23 11:25:23 -060010500 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -060010501 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King22d2e402007-04-26 16:00:13 -050010502 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0,
10503 IPR_USE_LONG_TRANSOP_TIMEOUT},
Brian King60e74862006-11-21 10:28:10 -060010504 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King5469cb52007-03-29 12:42:40 -050010505 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0,
10506 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -060010507 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King22d2e402007-04-26 16:00:13 -050010508 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_574E, 0, 0,
10509 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King185eb312007-03-29 12:42:53 -050010510 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King185eb312007-03-29 12:42:53 -050010511 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B3, 0, 0, 0 },
10512 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Wayne Boyerb0f56d32010-06-24 13:34:14 -070010513 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57CC, 0, 0, 0 },
10514 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King5469cb52007-03-29 12:42:40 -050010515 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B7, 0, 0,
Brian King463fc692007-05-07 17:09:05 -050010516 IPR_USE_LONG_TRANSOP_TIMEOUT | IPR_USE_PCI_WARM_RESET },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010517 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE,
Brian King6d84c942007-01-23 11:25:23 -060010518 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2780, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010519 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King6d84c942007-01-23 11:25:23 -060010520 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571E, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -060010521 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King5469cb52007-03-29 12:42:40 -050010522 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571F, 0, 0,
10523 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -060010524 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King5469cb52007-03-29 12:42:40 -050010525 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572F, 0, 0,
10526 IPR_USE_LONG_TRANSOP_TIMEOUT },
Wayne Boyerd7b46272010-02-19 13:24:38 -080010527 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
10528 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B5, 0, 0, 0 },
10529 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
10530 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_574D, 0, 0, 0 },
10531 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
10532 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B2, 0, 0, 0 },
Wayne Boyer32622bd2010-10-18 20:24:34 -070010533 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
wenxiong@linux.vnet.ibm.comb8d5d562013-01-11 17:43:47 -060010534 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C0, 0, 0, 0 },
10535 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
Wayne Boyer5a918352011-10-27 11:58:21 -070010536 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C3, 0, 0, 0 },
10537 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
Wayne Boyer32622bd2010-10-18 20:24:34 -070010538 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C4, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -080010539 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -080010540 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B4, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -080010541 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -080010542 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B1, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -080010543 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -080010544 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C6, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -080010545 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10546 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C8, 0, 0, 0 },
10547 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -080010548 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57CE, 0, 0, 0 },
wenxiong@linux.vnet.ibm.comb8d5d562013-01-11 17:43:47 -060010549 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10550 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D5, 0, 0, 0 },
10551 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10552 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D6, 0, 0, 0 },
10553 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10554 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D7, 0, 0, 0 },
10555 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10556 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D8, 0, 0, 0 },
wenxiong@linux.vnet.ibm.com43c5fda2013-07-10 10:46:27 -050010557 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10558 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D9, 0, 0, 0 },
10559 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wendy Xiongf94d9962014-01-21 12:16:40 -060010560 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57DA, 0, 0, 0 },
10561 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
wenxiong@linux.vnet.ibm.com43c5fda2013-07-10 10:46:27 -050010562 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57EB, 0, 0, 0 },
10563 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10564 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57EC, 0, 0, 0 },
10565 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10566 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57ED, 0, 0, 0 },
10567 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10568 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57EE, 0, 0, 0 },
10569 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10570 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57EF, 0, 0, 0 },
10571 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10572 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57F0, 0, 0, 0 },
Wendy Xiong5eeac3e2014-03-12 16:08:52 -050010573 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10574 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2CCA, 0, 0, 0 },
10575 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10576 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2CD2, 0, 0, 0 },
10577 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
10578 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2CCD, 0, 0, 0 },
Wen Xiong00da9ff2016-07-12 16:02:07 -050010579 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_RATTLESNAKE,
10580 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_580A, 0, 0, 0 },
10581 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_RATTLESNAKE,
10582 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_580B, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070010583 { }
10584};
10585MODULE_DEVICE_TABLE(pci, ipr_pci_table);
10586
Stephen Hemmingera55b2d22012-09-07 09:33:16 -070010587static const struct pci_error_handlers ipr_err_handler = {
Linas Vepstasf8a88b192006-02-03 16:52:42 -060010588 .error_detected = ipr_pci_error_detected,
Brian King6270e592014-01-21 12:16:41 -060010589 .mmio_enabled = ipr_pci_mmio_enabled,
Linas Vepstasf8a88b192006-02-03 16:52:42 -060010590 .slot_reset = ipr_pci_slot_reset,
10591};
10592
Linus Torvalds1da177e2005-04-16 15:20:36 -070010593static struct pci_driver ipr_driver = {
10594 .name = IPR_NAME,
10595 .id_table = ipr_pci_table,
10596 .probe = ipr_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010597 .remove = ipr_remove,
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -070010598 .shutdown = ipr_shutdown,
Linas Vepstasf8a88b192006-02-03 16:52:42 -060010599 .err_handler = &ipr_err_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010600};
10601
10602/**
Wayne Boyerf72919e2010-02-19 13:24:21 -080010603 * ipr_halt_done - Shutdown prepare completion
10604 *
10605 * Return value:
10606 * none
10607 **/
10608static void ipr_halt_done(struct ipr_cmnd *ipr_cmd)
10609{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -060010610 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Wayne Boyerf72919e2010-02-19 13:24:21 -080010611}
10612
10613/**
10614 * ipr_halt - Issue shutdown prepare to all adapters
10615 *
10616 * Return value:
10617 * NOTIFY_OK on success / NOTIFY_DONE on failure
10618 **/
10619static int ipr_halt(struct notifier_block *nb, ulong event, void *buf)
10620{
10621 struct ipr_cmnd *ipr_cmd;
10622 struct ipr_ioa_cfg *ioa_cfg;
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010623 unsigned long flags = 0, driver_lock_flags;
Wayne Boyerf72919e2010-02-19 13:24:21 -080010624
10625 if (event != SYS_RESTART && event != SYS_HALT && event != SYS_POWER_OFF)
10626 return NOTIFY_DONE;
10627
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010628 spin_lock_irqsave(&ipr_driver_lock, driver_lock_flags);
Wayne Boyerf72919e2010-02-19 13:24:21 -080010629
10630 list_for_each_entry(ioa_cfg, &ipr_ioa_head, queue) {
10631 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King4fdd7c72015-03-26 11:23:50 -050010632 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds ||
10633 (ipr_fast_reboot && event == SYS_RESTART && ioa_cfg->sis64)) {
Wayne Boyerf72919e2010-02-19 13:24:21 -080010634 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
10635 continue;
10636 }
10637
10638 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
10639 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
10640 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
10641 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
10642 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_SHUTDOWN_PREPARE_FOR_NORMAL;
10643
10644 ipr_do_req(ipr_cmd, ipr_halt_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
10645 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
10646 }
wenxiong@linux.vnet.ibm.comfeccada2013-05-24 09:59:13 -050010647 spin_unlock_irqrestore(&ipr_driver_lock, driver_lock_flags);
Wayne Boyerf72919e2010-02-19 13:24:21 -080010648
10649 return NOTIFY_OK;
10650}
10651
10652static struct notifier_block ipr_notifier = {
10653 ipr_halt, NULL, 0
10654};
10655
10656/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010657 * ipr_init - Module entry point
10658 *
10659 * Return value:
10660 * 0 on success / negative value on failure
10661 **/
10662static int __init ipr_init(void)
10663{
10664 ipr_info("IBM Power RAID SCSI Device Driver version: %s %s\n",
10665 IPR_DRIVER_VERSION, IPR_DRIVER_DATE);
10666
Wayne Boyerf72919e2010-02-19 13:24:21 -080010667 register_reboot_notifier(&ipr_notifier);
Henrik Kretzschmardcbccbde2006-09-25 16:58:58 -070010668 return pci_register_driver(&ipr_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010669}
10670
10671/**
10672 * ipr_exit - Module unload
10673 *
10674 * Module unload entry point.
10675 *
10676 * Return value:
10677 * none
10678 **/
10679static void __exit ipr_exit(void)
10680{
Wayne Boyerf72919e2010-02-19 13:24:21 -080010681 unregister_reboot_notifier(&ipr_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010682 pci_unregister_driver(&ipr_driver);
10683}
10684
10685module_init(ipr_init);
10686module_exit(ipr_exit);