blob: 0ff37a5e286cfa60bfb378ef758bbc8983eb953f [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;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600101static unsigned int ipr_number_of_msix = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static DEFINE_SPINLOCK(ipr_driver_lock);
103
104/* This table describes the differences between DMA controller chips */
105static const struct ipr_chip_cfg_t ipr_chip_cfg[] = {
Brian King60e74862006-11-21 10:28:10 -0600106 { /* Gemstone, Citrine, Obsidian, and Obsidian-E */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 .mailbox = 0x0042C,
Brian King89aad422012-03-14 21:20:10 -0500108 .max_cmds = 100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .cache_line_size = 0x20,
Brian King7dd21302012-03-14 21:20:08 -0500110 .clear_isr = 1,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -0600111 .iopoll_weight = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 {
113 .set_interrupt_mask_reg = 0x0022C,
114 .clr_interrupt_mask_reg = 0x00230,
Wayne Boyer214777b2010-02-19 13:24:26 -0800115 .clr_interrupt_mask_reg32 = 0x00230,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .sense_interrupt_mask_reg = 0x0022C,
Wayne Boyer214777b2010-02-19 13:24:26 -0800117 .sense_interrupt_mask_reg32 = 0x0022C,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .clr_interrupt_reg = 0x00228,
Wayne Boyer214777b2010-02-19 13:24:26 -0800119 .clr_interrupt_reg32 = 0x00228,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .sense_interrupt_reg = 0x00224,
Wayne Boyer214777b2010-02-19 13:24:26 -0800121 .sense_interrupt_reg32 = 0x00224,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .ioarrin_reg = 0x00404,
123 .sense_uproc_interrupt_reg = 0x00214,
Wayne Boyer214777b2010-02-19 13:24:26 -0800124 .sense_uproc_interrupt_reg32 = 0x00214,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .set_uproc_interrupt_reg = 0x00214,
Wayne Boyer214777b2010-02-19 13:24:26 -0800126 .set_uproc_interrupt_reg32 = 0x00214,
127 .clr_uproc_interrupt_reg = 0x00218,
128 .clr_uproc_interrupt_reg32 = 0x00218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130 },
131 { /* Snipe and Scamp */
132 .mailbox = 0x0052C,
Brian King89aad422012-03-14 21:20:10 -0500133 .max_cmds = 100,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .cache_line_size = 0x20,
Brian King7dd21302012-03-14 21:20:08 -0500135 .clear_isr = 1,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -0600136 .iopoll_weight = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 {
138 .set_interrupt_mask_reg = 0x00288,
139 .clr_interrupt_mask_reg = 0x0028C,
Wayne Boyer214777b2010-02-19 13:24:26 -0800140 .clr_interrupt_mask_reg32 = 0x0028C,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .sense_interrupt_mask_reg = 0x00288,
Wayne Boyer214777b2010-02-19 13:24:26 -0800142 .sense_interrupt_mask_reg32 = 0x00288,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .clr_interrupt_reg = 0x00284,
Wayne Boyer214777b2010-02-19 13:24:26 -0800144 .clr_interrupt_reg32 = 0x00284,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .sense_interrupt_reg = 0x00280,
Wayne Boyer214777b2010-02-19 13:24:26 -0800146 .sense_interrupt_reg32 = 0x00280,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .ioarrin_reg = 0x00504,
148 .sense_uproc_interrupt_reg = 0x00290,
Wayne Boyer214777b2010-02-19 13:24:26 -0800149 .sense_uproc_interrupt_reg32 = 0x00290,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .set_uproc_interrupt_reg = 0x00290,
Wayne Boyer214777b2010-02-19 13:24:26 -0800151 .set_uproc_interrupt_reg32 = 0x00290,
152 .clr_uproc_interrupt_reg = 0x00294,
153 .clr_uproc_interrupt_reg32 = 0x00294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 },
Wayne Boyera74c1632010-02-19 13:23:51 -0800156 { /* CRoC */
Wayne Boyer110def82010-11-04 09:36:16 -0700157 .mailbox = 0x00044,
Brian King89aad422012-03-14 21:20:10 -0500158 .max_cmds = 1000,
Wayne Boyera74c1632010-02-19 13:23:51 -0800159 .cache_line_size = 0x20,
Brian King7dd21302012-03-14 21:20:08 -0500160 .clear_isr = 0,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -0600161 .iopoll_weight = 64,
Wayne Boyera74c1632010-02-19 13:23:51 -0800162 {
163 .set_interrupt_mask_reg = 0x00010,
164 .clr_interrupt_mask_reg = 0x00018,
Wayne Boyer214777b2010-02-19 13:24:26 -0800165 .clr_interrupt_mask_reg32 = 0x0001C,
Wayne Boyera74c1632010-02-19 13:23:51 -0800166 .sense_interrupt_mask_reg = 0x00010,
Wayne Boyer214777b2010-02-19 13:24:26 -0800167 .sense_interrupt_mask_reg32 = 0x00014,
Wayne Boyera74c1632010-02-19 13:23:51 -0800168 .clr_interrupt_reg = 0x00008,
Wayne Boyer214777b2010-02-19 13:24:26 -0800169 .clr_interrupt_reg32 = 0x0000C,
Wayne Boyera74c1632010-02-19 13:23:51 -0800170 .sense_interrupt_reg = 0x00000,
Wayne Boyer214777b2010-02-19 13:24:26 -0800171 .sense_interrupt_reg32 = 0x00004,
Wayne Boyera74c1632010-02-19 13:23:51 -0800172 .ioarrin_reg = 0x00070,
173 .sense_uproc_interrupt_reg = 0x00020,
Wayne Boyer214777b2010-02-19 13:24:26 -0800174 .sense_uproc_interrupt_reg32 = 0x00024,
Wayne Boyera74c1632010-02-19 13:23:51 -0800175 .set_uproc_interrupt_reg = 0x00020,
Wayne Boyer214777b2010-02-19 13:24:26 -0800176 .set_uproc_interrupt_reg32 = 0x00024,
Wayne Boyerdcbad002010-02-19 13:24:14 -0800177 .clr_uproc_interrupt_reg = 0x00028,
Wayne Boyer214777b2010-02-19 13:24:26 -0800178 .clr_uproc_interrupt_reg32 = 0x0002C,
179 .init_feedback_reg = 0x0005C,
Wayne Boyerdcbad002010-02-19 13:24:14 -0800180 .dump_addr_reg = 0x00064,
Wayne Boyer8701f182010-06-04 10:26:50 -0700181 .dump_data_reg = 0x00068,
182 .endian_swap_reg = 0x00084
Wayne Boyera74c1632010-02-19 13:23:51 -0800183 }
184 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187static const struct ipr_chip_t ipr_chip[] = {
Wayne Boyercb237ef2010-06-17 11:51:40 -0700188 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
189 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
190 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
191 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
192 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E, IPR_USE_MSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[0] },
193 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
194 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP, IPR_USE_LSI, IPR_SIS32, IPR_PCI_CFG, &ipr_chip_cfg[1] },
195 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] },
Wayne Boyercd9b3d02012-02-23 11:54:55 -0800196 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE, IPR_USE_MSI, IPR_SIS64, IPR_MMIO, &ipr_chip_cfg[2] }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -0300199static int ipr_max_bus_speeds[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 IPR_80MBs_SCSI_RATE, IPR_U160_SCSI_RATE, IPR_U320_SCSI_RATE
201};
202
203MODULE_AUTHOR("Brian King <brking@us.ibm.com>");
204MODULE_DESCRIPTION("IBM Power RAID SCSI Adapter Driver");
205module_param_named(max_speed, ipr_max_speed, uint, 0);
206MODULE_PARM_DESC(max_speed, "Maximum bus speed (0-2). Default: 1=U160. Speeds: 0=80 MB/s, 1=U160, 2=U320");
207module_param_named(log_level, ipr_log_level, uint, 0);
208MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver");
209module_param_named(testmode, ipr_testmode, int, 0);
210MODULE_PARM_DESC(testmode, "DANGEROUS!!! Allows unsupported configurations");
Wayne Boyer2cf22be2009-02-24 11:36:00 -0800211module_param_named(fastfail, ipr_fastfail, int, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212MODULE_PARM_DESC(fastfail, "Reduce timeouts and retries");
213module_param_named(transop_timeout, ipr_transop_timeout, int, 0);
214MODULE_PARM_DESC(transop_timeout, "Time in seconds to wait for adapter to come operational (default: 300)");
Wayne Boyer2cf22be2009-02-24 11:36:00 -0800215module_param_named(debug, ipr_debug, int, S_IRUGO | S_IWUSR);
brking@us.ibm.comd3c74872005-11-01 17:01:34 -0600216MODULE_PARM_DESC(debug, "Enable device driver debugging logging. Set to 1 to enable. (default: 0)");
Brian Kingac09c342007-04-26 16:00:16 -0500217module_param_named(dual_ioa_raid, ipr_dual_ioa_raid, int, 0);
218MODULE_PARM_DESC(dual_ioa_raid, "Enable dual adapter RAID support. Set to 1 to enable. (default: 1)");
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800219module_param_named(max_devs, ipr_max_devs, int, 0);
220MODULE_PARM_DESC(max_devs, "Specify the maximum number of physical devices. "
221 "[Default=" __stringify(IPR_DEFAULT_SIS64_DEVS) "]");
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600222module_param_named(number_of_msix, ipr_number_of_msix, int, 0);
223MODULE_PARM_DESC(number_of_msix, "Specify the number of MSIX interrupts to use on capable adapters (1 - 5). (default:2)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224MODULE_LICENSE("GPL");
225MODULE_VERSION(IPR_DRIVER_VERSION);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/* A constant array of IOASCs/URCs/Error Messages */
228static const
229struct ipr_error_table_t ipr_error_table[] = {
Brian King933916f2007-03-29 12:43:30 -0500230 {0x00000000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 "8155: An unknown error was received"},
232 {0x00330000, 0, 0,
233 "Soft underlength error"},
234 {0x005A0000, 0, 0,
235 "Command to be cancelled not found"},
236 {0x00808000, 0, 0,
237 "Qualified success"},
Brian King933916f2007-03-29 12:43:30 -0500238 {0x01080000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 "FFFE: Soft device bus error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500240 {0x01088100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500241 "4101: Soft device bus fabric error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800242 {0x01100100, 0, IPR_DEFAULT_LOG_LEVEL,
243 "FFFC: Logical block guard error recovered by the device"},
244 {0x01100300, 0, IPR_DEFAULT_LOG_LEVEL,
245 "FFFC: Logical block reference tag error recovered by the device"},
246 {0x01108300, 0, IPR_DEFAULT_LOG_LEVEL,
247 "4171: Recovered scatter list tag / sequence number error"},
248 {0x01109000, 0, IPR_DEFAULT_LOG_LEVEL,
249 "FF3D: Recovered logical block CRC error on IOA to Host transfer"},
250 {0x01109200, 0, IPR_DEFAULT_LOG_LEVEL,
251 "4171: Recovered logical block sequence number error on IOA to Host transfer"},
252 {0x0110A000, 0, IPR_DEFAULT_LOG_LEVEL,
253 "FFFD: Recovered logical block reference tag error detected by the IOA"},
254 {0x0110A100, 0, IPR_DEFAULT_LOG_LEVEL,
255 "FFFD: Logical block guard error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500256 {0x01170600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 "FFF9: Device sector reassign successful"},
Brian King933916f2007-03-29 12:43:30 -0500258 {0x01170900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 "FFF7: Media error recovered by device rewrite procedures"},
Brian King933916f2007-03-29 12:43:30 -0500260 {0x01180200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 "7001: IOA sector reassignment successful"},
Brian King933916f2007-03-29 12:43:30 -0500262 {0x01180500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 "FFF9: Soft media error. Sector reassignment recommended"},
Brian King933916f2007-03-29 12:43:30 -0500264 {0x01180600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 "FFF7: Media error recovered by IOA rewrite procedures"},
Brian King933916f2007-03-29 12:43:30 -0500266 {0x01418000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 "FF3D: Soft PCI bus error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500268 {0x01440000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 "FFF6: Device hardware error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500270 {0x01448100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 "FFF6: Device hardware error recovered by the device"},
Brian King933916f2007-03-29 12:43:30 -0500272 {0x01448200, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 "FF3D: Soft IOA error recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500274 {0x01448300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 "FFFA: Undefined device response recovered by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500276 {0x014A0000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 "FFF6: Device bus error, message or command phase"},
Brian King933916f2007-03-29 12:43:30 -0500278 {0x014A8000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King35a39692006-09-25 12:39:20 -0500279 "FFFE: Task Management Function failed"},
Brian King933916f2007-03-29 12:43:30 -0500280 {0x015D0000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 "FFF6: Failure prediction threshold exceeded"},
Brian King933916f2007-03-29 12:43:30 -0500282 {0x015D9200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 "8009: Impending cache battery pack failure"},
284 {0x02040400, 0, 0,
285 "34FF: Disk device format in progress"},
Brian King65f56472007-04-26 16:00:12 -0500286 {0x02048000, 0, IPR_DEFAULT_LOG_LEVEL,
287 "9070: IOA requested reset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 {0x023F0000, 0, 0,
289 "Synchronization required"},
290 {0x024E0000, 0, 0,
291 "No ready, IOA shutdown"},
292 {0x025A0000, 0, 0,
293 "Not ready, IOA has been shutdown"},
Brian King933916f2007-03-29 12:43:30 -0500294 {0x02670100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 "3020: Storage subsystem configuration error"},
296 {0x03110B00, 0, 0,
297 "FFF5: Medium error, data unreadable, recommend reassign"},
298 {0x03110C00, 0, 0,
299 "7000: Medium error, data unreadable, do not reassign"},
Brian King933916f2007-03-29 12:43:30 -0500300 {0x03310000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 "FFF3: Disk media format bad"},
Brian King933916f2007-03-29 12:43:30 -0500302 {0x04050000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 "3002: Addressed device failed to respond to selection"},
Brian King933916f2007-03-29 12:43:30 -0500304 {0x04080000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 "3100: Device bus error"},
Brian King933916f2007-03-29 12:43:30 -0500306 {0x04080100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 "3109: IOA timed out a device command"},
308 {0x04088000, 0, 0,
309 "3120: SCSI bus is not operational"},
Brian King933916f2007-03-29 12:43:30 -0500310 {0x04088100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500311 "4100: Hard device bus fabric error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800312 {0x04100100, 0, IPR_DEFAULT_LOG_LEVEL,
313 "310C: Logical block guard error detected by the device"},
314 {0x04100300, 0, IPR_DEFAULT_LOG_LEVEL,
315 "310C: Logical block reference tag error detected by the device"},
316 {0x04108300, 1, IPR_DEFAULT_LOG_LEVEL,
317 "4170: Scatter list tag / sequence number error"},
318 {0x04109000, 1, IPR_DEFAULT_LOG_LEVEL,
319 "8150: Logical block CRC error on IOA to Host transfer"},
320 {0x04109200, 1, IPR_DEFAULT_LOG_LEVEL,
321 "4170: Logical block sequence number error on IOA to Host transfer"},
322 {0x0410A000, 0, IPR_DEFAULT_LOG_LEVEL,
323 "310D: Logical block reference tag error detected by the IOA"},
324 {0x0410A100, 0, IPR_DEFAULT_LOG_LEVEL,
325 "310D: Logical block guard error detected by the IOA"},
Brian King933916f2007-03-29 12:43:30 -0500326 {0x04118000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 "9000: IOA reserved area data check"},
Brian King933916f2007-03-29 12:43:30 -0500328 {0x04118100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 "9001: IOA reserved area invalid data pattern"},
Brian King933916f2007-03-29 12:43:30 -0500330 {0x04118200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 "9002: IOA reserved area LRC error"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800332 {0x04118300, 1, IPR_DEFAULT_LOG_LEVEL,
333 "Hardware Error, IOA metadata access error"},
Brian King933916f2007-03-29 12:43:30 -0500334 {0x04320000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 "102E: Out of alternate sectors for disk storage"},
Brian King933916f2007-03-29 12:43:30 -0500336 {0x04330000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 "FFF4: Data transfer underlength error"},
Brian King933916f2007-03-29 12:43:30 -0500338 {0x04338000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 "FFF4: Data transfer overlength error"},
Brian King933916f2007-03-29 12:43:30 -0500340 {0x043E0100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 "3400: Logical unit failure"},
Brian King933916f2007-03-29 12:43:30 -0500342 {0x04408500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 "FFF4: Device microcode is corrupt"},
Brian King933916f2007-03-29 12:43:30 -0500344 {0x04418000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 "8150: PCI bus error"},
346 {0x04430000, 1, 0,
347 "Unsupported device bus message received"},
Brian King933916f2007-03-29 12:43:30 -0500348 {0x04440000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 "FFF4: Disk device problem"},
Brian King933916f2007-03-29 12:43:30 -0500350 {0x04448200, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 "8150: Permanent IOA failure"},
Brian King933916f2007-03-29 12:43:30 -0500352 {0x04448300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 "3010: Disk device returned wrong response to IOA"},
Brian King933916f2007-03-29 12:43:30 -0500354 {0x04448400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 "8151: IOA microcode error"},
356 {0x04448500, 0, 0,
357 "Device bus status error"},
Brian King933916f2007-03-29 12:43:30 -0500358 {0x04448600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 "8157: IOA error requiring IOA reset to recover"},
Brian King35a39692006-09-25 12:39:20 -0500360 {0x04448700, 0, 0,
361 "ATA device status error"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 {0x04490000, 0, 0,
363 "Message reject received from the device"},
Brian King933916f2007-03-29 12:43:30 -0500364 {0x04449200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 "8008: A permanent cache battery pack failure occurred"},
Brian King933916f2007-03-29 12:43:30 -0500366 {0x0444A000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 "9090: Disk unit has been modified after the last known status"},
Brian King933916f2007-03-29 12:43:30 -0500368 {0x0444A200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 "9081: IOA detected device error"},
Brian King933916f2007-03-29 12:43:30 -0500370 {0x0444A300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 "9082: IOA detected device error"},
Brian King933916f2007-03-29 12:43:30 -0500372 {0x044A0000, 1, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 "3110: Device bus error, message or command phase"},
Brian King933916f2007-03-29 12:43:30 -0500374 {0x044A8000, 1, IPR_DEFAULT_LOG_LEVEL,
Brian King35a39692006-09-25 12:39:20 -0500375 "3110: SAS Command / Task Management Function failed"},
Brian King933916f2007-03-29 12:43:30 -0500376 {0x04670400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 "9091: Incorrect hardware configuration change has been detected"},
Brian King933916f2007-03-29 12:43:30 -0500378 {0x04678000, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600379 "9073: Invalid multi-adapter configuration"},
Brian King933916f2007-03-29 12:43:30 -0500380 {0x04678100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500381 "4010: Incorrect connection between cascaded expanders"},
Brian King933916f2007-03-29 12:43:30 -0500382 {0x04678200, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500383 "4020: Connections exceed IOA design limits"},
Brian King933916f2007-03-29 12:43:30 -0500384 {0x04678300, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500385 "4030: Incorrect multipath connection"},
Brian King933916f2007-03-29 12:43:30 -0500386 {0x04679000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500387 "4110: Unsupported enclosure function"},
Brian King933916f2007-03-29 12:43:30 -0500388 {0x046E0000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 "FFF4: Command to logical unit failed"},
390 {0x05240000, 1, 0,
391 "Illegal request, invalid request type or request packet"},
392 {0x05250000, 0, 0,
393 "Illegal request, invalid resource handle"},
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600394 {0x05258000, 0, 0,
395 "Illegal request, commands not allowed to this device"},
396 {0x05258100, 0, 0,
397 "Illegal request, command not allowed to a secondary adapter"},
Wayne Boyer5aa3a332010-02-19 13:24:32 -0800398 {0x05258200, 0, 0,
399 "Illegal request, command not allowed to a non-optimized resource"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 {0x05260000, 0, 0,
401 "Illegal request, invalid field in parameter list"},
402 {0x05260100, 0, 0,
403 "Illegal request, parameter not supported"},
404 {0x05260200, 0, 0,
405 "Illegal request, parameter value invalid"},
406 {0x052C0000, 0, 0,
407 "Illegal request, command sequence error"},
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600408 {0x052C8000, 1, 0,
409 "Illegal request, dual adapter support not enabled"},
Brian King933916f2007-03-29 12:43:30 -0500410 {0x06040500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 "9031: Array protection temporarily suspended, protection resuming"},
Brian King933916f2007-03-29 12:43:30 -0500412 {0x06040600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 "9040: Array protection temporarily suspended, protection resuming"},
Brian King933916f2007-03-29 12:43:30 -0500414 {0x06288000, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500415 "3140: Device bus not ready to ready transition"},
Brian King933916f2007-03-29 12:43:30 -0500416 {0x06290000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 "FFFB: SCSI bus was reset"},
418 {0x06290500, 0, 0,
419 "FFFE: SCSI bus transition to single ended"},
420 {0x06290600, 0, 0,
421 "FFFE: SCSI bus transition to LVD"},
Brian King933916f2007-03-29 12:43:30 -0500422 {0x06298000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 "FFFB: SCSI bus was reset by another initiator"},
Brian King933916f2007-03-29 12:43:30 -0500424 {0x063F0300, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 "3029: A device replacement has occurred"},
Brian King933916f2007-03-29 12:43:30 -0500426 {0x064C8000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 "9051: IOA cache data exists for a missing or failed device"},
Brian King933916f2007-03-29 12:43:30 -0500428 {0x064C8100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600429 "9055: Auxiliary cache IOA contains cache data needed by the primary IOA"},
Brian King933916f2007-03-29 12:43:30 -0500430 {0x06670100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 "9025: Disk unit is not supported at its physical location"},
Brian King933916f2007-03-29 12:43:30 -0500432 {0x06670600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 "3020: IOA detected a SCSI bus configuration error"},
Brian King933916f2007-03-29 12:43:30 -0500434 {0x06678000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 "3150: SCSI bus configuration error"},
Brian King933916f2007-03-29 12:43:30 -0500436 {0x06678100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600437 "9074: Asymmetric advanced function disk configuration"},
Brian King933916f2007-03-29 12:43:30 -0500438 {0x06678300, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500439 "4040: Incomplete multipath connection between IOA and enclosure"},
Brian King933916f2007-03-29 12:43:30 -0500440 {0x06678400, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500441 "4041: Incomplete multipath connection between enclosure and device"},
Brian King933916f2007-03-29 12:43:30 -0500442 {0x06678500, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500443 "9075: Incomplete multipath connection between IOA and remote IOA"},
Brian King933916f2007-03-29 12:43:30 -0500444 {0x06678600, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500445 "9076: Configuration error, missing remote IOA"},
Brian King933916f2007-03-29 12:43:30 -0500446 {0x06679100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500447 "4050: Enclosure does not support a required multipath function"},
Wayne Boyerb75424f2009-01-28 08:24:50 -0800448 {0x06690000, 0, IPR_DEFAULT_LOG_LEVEL,
449 "4070: Logically bad block written on device"},
Brian King933916f2007-03-29 12:43:30 -0500450 {0x06690200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 "9041: Array protection temporarily suspended"},
Brian King933916f2007-03-29 12:43:30 -0500452 {0x06698200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 "9042: Corrupt array parity detected on specified device"},
Brian King933916f2007-03-29 12:43:30 -0500454 {0x066B0200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 "9030: Array no longer protected due to missing or failed disk unit"},
Brian King933916f2007-03-29 12:43:30 -0500456 {0x066B8000, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600457 "9071: Link operational transition"},
Brian King933916f2007-03-29 12:43:30 -0500458 {0x066B8100, 0, IPR_DEFAULT_LOG_LEVEL,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600459 "9072: Link not operational transition"},
Brian King933916f2007-03-29 12:43:30 -0500460 {0x066B8200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 "9032: Array exposed but still protected"},
Brian Kinge4353402007-03-29 12:43:37 -0500462 {0x066B8300, 0, IPR_DEFAULT_LOG_LEVEL + 1,
463 "70DD: Device forced failed by disrupt device command"},
Brian King933916f2007-03-29 12:43:30 -0500464 {0x066B9100, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500465 "4061: Multipath redundancy level got better"},
Brian King933916f2007-03-29 12:43:30 -0500466 {0x066B9200, 0, IPR_DEFAULT_LOG_LEVEL,
Brian King896bbd22006-08-02 14:57:44 -0500467 "4060: Multipath redundancy level got worse"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 {0x07270000, 0, 0,
469 "Failure due to other device"},
Brian King933916f2007-03-29 12:43:30 -0500470 {0x07278000, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 "9008: IOA does not support functions expected by devices"},
Brian King933916f2007-03-29 12:43:30 -0500472 {0x07278100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 "9010: Cache data associated with attached devices cannot be found"},
Brian King933916f2007-03-29 12:43:30 -0500474 {0x07278200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 "9011: Cache data belongs to devices other than those attached"},
Brian King933916f2007-03-29 12:43:30 -0500476 {0x07278400, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 "9020: Array missing 2 or more devices with only 1 device present"},
Brian King933916f2007-03-29 12:43:30 -0500478 {0x07278500, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 "9021: Array missing 2 or more devices with 2 or more devices present"},
Brian King933916f2007-03-29 12:43:30 -0500480 {0x07278600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 "9022: Exposed array is missing a required device"},
Brian King933916f2007-03-29 12:43:30 -0500482 {0x07278700, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 "9023: Array member(s) not at required physical locations"},
Brian King933916f2007-03-29 12:43:30 -0500484 {0x07278800, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 "9024: Array not functional due to present hardware configuration"},
Brian King933916f2007-03-29 12:43:30 -0500486 {0x07278900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 "9026: Array not functional due to present hardware configuration"},
Brian King933916f2007-03-29 12:43:30 -0500488 {0x07278A00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 "9027: Array is missing a device and parity is out of sync"},
Brian King933916f2007-03-29 12:43:30 -0500490 {0x07278B00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 "9028: Maximum number of arrays already exist"},
Brian King933916f2007-03-29 12:43:30 -0500492 {0x07278C00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 "9050: Required cache data cannot be located for a disk unit"},
Brian King933916f2007-03-29 12:43:30 -0500494 {0x07278D00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 "9052: Cache data exists for a device that has been modified"},
Brian King933916f2007-03-29 12:43:30 -0500496 {0x07278F00, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 "9054: IOA resources not available due to previous problems"},
Brian King933916f2007-03-29 12:43:30 -0500498 {0x07279100, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 "9092: Disk unit requires initialization before use"},
Brian King933916f2007-03-29 12:43:30 -0500500 {0x07279200, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 "9029: Incorrect hardware configuration change has been detected"},
Brian King933916f2007-03-29 12:43:30 -0500502 {0x07279600, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 "9060: One or more disk pairs are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500504 {0x07279700, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 "9061: One or more disks are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500506 {0x07279800, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 "9062: One or more disks are missing from an array"},
Brian King933916f2007-03-29 12:43:30 -0500508 {0x07279900, 0, IPR_DEFAULT_LOG_LEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 "9063: Maximum number of functional arrays has been exceeded"},
510 {0x0B260000, 0, 0,
511 "Aborted command, invalid descriptor"},
512 {0x0B5A0000, 0, 0,
513 "Command terminated by host"}
514};
515
516static const struct ipr_ses_table_entry ipr_ses_table[] = {
517 { "2104-DL1 ", "XXXXXXXXXXXXXXXX", 80 },
518 { "2104-TL1 ", "XXXXXXXXXXXXXXXX", 80 },
519 { "HSBP07M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 7 slot */
520 { "HSBP05M P U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Hidive 5 slot */
521 { "HSBP05M S U2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* Bowtie */
522 { "HSBP06E ASU2SCSI", "XXXXXXXXXXXXXXXX", 80 }, /* MartinFenning */
523 { "2104-DU3 ", "XXXXXXXXXXXXXXXX", 160 },
524 { "2104-TU3 ", "XXXXXXXXXXXXXXXX", 160 },
525 { "HSBP04C RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
526 { "HSBP06E RSU2SCSI", "XXXXXXX*XXXXXXXX", 160 },
527 { "St V1S2 ", "XXXXXXXXXXXXXXXX", 160 },
528 { "HSBPD4M PU3SCSI", "XXXXXXX*XXXXXXXX", 160 },
529 { "VSBPD1H U3SCSI", "XXXXXXX*XXXXXXXX", 160 }
530};
531
532/*
533 * Function Prototypes
534 */
535static int ipr_reset_alert(struct ipr_cmnd *);
536static void ipr_process_ccn(struct ipr_cmnd *);
537static void ipr_process_error(struct ipr_cmnd *);
538static void ipr_reset_ioa_job(struct ipr_cmnd *);
539static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *,
540 enum ipr_shutdown_type);
541
542#ifdef CONFIG_SCSI_IPR_TRACE
543/**
544 * ipr_trc_hook - Add a trace entry to the driver trace
545 * @ipr_cmd: ipr command struct
546 * @type: trace type
547 * @add_data: additional data
548 *
549 * Return value:
550 * none
551 **/
552static void ipr_trc_hook(struct ipr_cmnd *ipr_cmd,
553 u8 type, u32 add_data)
554{
555 struct ipr_trace_entry *trace_entry;
556 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
557
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600558 trace_entry = &ioa_cfg->trace[atomic_add_return
559 (1, &ioa_cfg->trace_index)%IPR_NUM_TRACE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 trace_entry->time = jiffies;
561 trace_entry->op_code = ipr_cmd->ioarcb.cmd_pkt.cdb[0];
562 trace_entry->type = type;
Wayne Boyera32c0552010-02-19 13:23:36 -0800563 if (ipr_cmd->ioa_cfg->sis64)
564 trace_entry->ata_op_code = ipr_cmd->i.ata_ioadl.regs.command;
565 else
566 trace_entry->ata_op_code = ipr_cmd->ioarcb.u.add_data.u.regs.command;
Brian King35a39692006-09-25 12:39:20 -0500567 trace_entry->cmd_index = ipr_cmd->cmd_index & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 trace_entry->res_handle = ipr_cmd->ioarcb.res_handle;
569 trace_entry->u.add_data = add_data;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600570 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572#else
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -0300573#define ipr_trc_hook(ipr_cmd, type, add_data) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574#endif
575
576/**
Brian King172cd6e2012-07-17 08:14:40 -0500577 * ipr_lock_and_done - Acquire lock and complete command
578 * @ipr_cmd: ipr command struct
579 *
580 * Return value:
581 * none
582 **/
583static void ipr_lock_and_done(struct ipr_cmnd *ipr_cmd)
584{
585 unsigned long lock_flags;
586 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
587
588 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
589 ipr_cmd->done(ipr_cmd);
590 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
591}
592
593/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * ipr_reinit_ipr_cmnd - Re-initialize an IPR Cmnd block for reuse
595 * @ipr_cmd: ipr command struct
596 *
597 * Return value:
598 * none
599 **/
600static void ipr_reinit_ipr_cmnd(struct ipr_cmnd *ipr_cmd)
601{
602 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -0700603 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
604 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
Wayne Boyera32c0552010-02-19 13:23:36 -0800605 dma_addr_t dma_addr = ipr_cmd->dma_addr;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600606 int hrrq_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600608 hrrq_id = ioarcb->cmd_pkt.hrrq_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600610 ioarcb->cmd_pkt.hrrq_id = hrrq_id;
Wayne Boyera32c0552010-02-19 13:23:36 -0800611 ioarcb->data_transfer_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 ioarcb->read_data_transfer_length = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800613 ioarcb->ioadl_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 ioarcb->read_ioadl_len = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800615
Wayne Boyer96d21f02010-05-10 09:13:27 -0700616 if (ipr_cmd->ioa_cfg->sis64) {
Wayne Boyera32c0552010-02-19 13:23:36 -0800617 ioarcb->u.sis64_addr_data.data_ioadl_addr =
618 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
Wayne Boyer96d21f02010-05-10 09:13:27 -0700619 ioasa64->u.gata.status = 0;
620 } else {
Wayne Boyera32c0552010-02-19 13:23:36 -0800621 ioarcb->write_ioadl_addr =
622 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
623 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
Wayne Boyer96d21f02010-05-10 09:13:27 -0700624 ioasa->u.gata.status = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -0800625 }
626
Wayne Boyer96d21f02010-05-10 09:13:27 -0700627 ioasa->hdr.ioasc = 0;
628 ioasa->hdr.residual_data_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 ipr_cmd->scsi_cmd = NULL;
Brian King35a39692006-09-25 12:39:20 -0500630 ipr_cmd->qc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 ipr_cmd->sense_buffer[0] = 0;
632 ipr_cmd->dma_use_sg = 0;
633}
634
635/**
636 * ipr_init_ipr_cmnd - Initialize an IPR Cmnd block
637 * @ipr_cmd: ipr command struct
638 *
639 * Return value:
640 * none
641 **/
Brian King172cd6e2012-07-17 08:14:40 -0500642static void ipr_init_ipr_cmnd(struct ipr_cmnd *ipr_cmd,
643 void (*fast_done) (struct ipr_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 ipr_reinit_ipr_cmnd(ipr_cmd);
646 ipr_cmd->u.scratch = 0;
647 ipr_cmd->sibling = NULL;
Brian King172cd6e2012-07-17 08:14:40 -0500648 ipr_cmd->fast_done = fast_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 init_timer(&ipr_cmd->timer);
650}
651
652/**
Brian King00bfef22012-07-17 08:13:52 -0500653 * __ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * @ioa_cfg: ioa config struct
655 *
656 * Return value:
657 * pointer to ipr command struct
658 **/
659static
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600660struct ipr_cmnd *__ipr_get_free_ipr_cmnd(struct ipr_hrr_queue *hrrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600662 struct ipr_cmnd *ipr_cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600664 if (likely(!list_empty(&hrrq->hrrq_free_q))) {
665 ipr_cmd = list_entry(hrrq->hrrq_free_q.next,
666 struct ipr_cmnd, queue);
667 list_del(&ipr_cmd->queue);
668 }
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 return ipr_cmd;
672}
673
674/**
Brian King00bfef22012-07-17 08:13:52 -0500675 * ipr_get_free_ipr_cmnd - Get a free IPR Cmnd block and initialize it
676 * @ioa_cfg: ioa config struct
677 *
678 * Return value:
679 * pointer to ipr command struct
680 **/
681static
682struct ipr_cmnd *ipr_get_free_ipr_cmnd(struct ipr_ioa_cfg *ioa_cfg)
683{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600684 struct ipr_cmnd *ipr_cmd =
685 __ipr_get_free_ipr_cmnd(&ioa_cfg->hrrq[IPR_INIT_HRRQ]);
Brian King172cd6e2012-07-17 08:14:40 -0500686 ipr_init_ipr_cmnd(ipr_cmd, ipr_lock_and_done);
Brian King00bfef22012-07-17 08:13:52 -0500687 return ipr_cmd;
688}
689
690/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * ipr_mask_and_clear_interrupts - Mask all and clear specified interrupts
692 * @ioa_cfg: ioa config struct
693 * @clr_ints: interrupts to clear
694 *
695 * This function masks all interrupts on the adapter, then clears the
696 * interrupts specified in the mask
697 *
698 * Return value:
699 * none
700 **/
701static void ipr_mask_and_clear_interrupts(struct ipr_ioa_cfg *ioa_cfg,
702 u32 clr_ints)
703{
704 volatile u32 int_reg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600705 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /* Stop new interrupts */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600708 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
709 spin_lock(&ioa_cfg->hrrq[i]._lock);
710 ioa_cfg->hrrq[i].allow_interrupts = 0;
711 spin_unlock(&ioa_cfg->hrrq[i]._lock);
712 }
713 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /* Set interrupt mask to stop all new interrupts */
Wayne Boyer214777b2010-02-19 13:24:26 -0800716 if (ioa_cfg->sis64)
717 writeq(~0, ioa_cfg->regs.set_interrupt_mask_reg);
718 else
719 writel(~0, ioa_cfg->regs.set_interrupt_mask_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 /* Clear any pending interrupts */
Wayne Boyer214777b2010-02-19 13:24:26 -0800722 if (ioa_cfg->sis64)
723 writel(~0, ioa_cfg->regs.clr_interrupt_reg);
724 writel(clr_ints, ioa_cfg->regs.clr_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
726}
727
728/**
729 * ipr_save_pcix_cmd_reg - Save PCI-X command register
730 * @ioa_cfg: ioa config struct
731 *
732 * Return value:
733 * 0 on success / -EIO on failure
734 **/
735static int ipr_save_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
736{
737 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
738
Brian King7dce0e12007-01-23 11:25:30 -0600739 if (pcix_cmd_reg == 0)
740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (pci_read_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
743 &ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
744 dev_err(&ioa_cfg->pdev->dev, "Failed to save PCI-X command register\n");
745 return -EIO;
746 }
747
748 ioa_cfg->saved_pcix_cmd_reg |= PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO;
749 return 0;
750}
751
752/**
753 * ipr_set_pcix_cmd_reg - Setup PCI-X command register
754 * @ioa_cfg: ioa config struct
755 *
756 * Return value:
757 * 0 on success / -EIO on failure
758 **/
759static int ipr_set_pcix_cmd_reg(struct ipr_ioa_cfg *ioa_cfg)
760{
761 int pcix_cmd_reg = pci_find_capability(ioa_cfg->pdev, PCI_CAP_ID_PCIX);
762
763 if (pcix_cmd_reg) {
764 if (pci_write_config_word(ioa_cfg->pdev, pcix_cmd_reg + PCI_X_CMD,
765 ioa_cfg->saved_pcix_cmd_reg) != PCIBIOS_SUCCESSFUL) {
766 dev_err(&ioa_cfg->pdev->dev, "Failed to setup PCI-X command register\n");
767 return -EIO;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
771 return 0;
772}
773
774/**
Brian King35a39692006-09-25 12:39:20 -0500775 * ipr_sata_eh_done - done function for aborted SATA commands
776 * @ipr_cmd: ipr command struct
777 *
778 * This function is invoked for ops generated to SATA
779 * devices which are being aborted.
780 *
781 * Return value:
782 * none
783 **/
784static void ipr_sata_eh_done(struct ipr_cmnd *ipr_cmd)
785{
Brian King35a39692006-09-25 12:39:20 -0500786 struct ata_queued_cmd *qc = ipr_cmd->qc;
787 struct ipr_sata_port *sata_port = qc->ap->private_data;
788
789 qc->err_mask |= AC_ERR_OTHER;
790 sata_port->ioasa.status |= ATA_BUSY;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600791 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Brian King35a39692006-09-25 12:39:20 -0500792 ata_qc_complete(qc);
793}
794
795/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * ipr_scsi_eh_done - mid-layer done function for aborted ops
797 * @ipr_cmd: ipr command struct
798 *
799 * This function is invoked by the interrupt handler for
800 * ops generated by the SCSI mid-layer which are being aborted.
801 *
802 * Return value:
803 * none
804 **/
805static void ipr_scsi_eh_done(struct ipr_cmnd *ipr_cmd)
806{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
808
809 scsi_cmd->result |= (DID_ERROR << 16);
810
FUJITA Tomonori63015bc2007-05-26 00:26:59 +0900811 scsi_dma_unmap(ipr_cmd->scsi_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 scsi_cmd->scsi_done(scsi_cmd);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600813 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
816/**
817 * ipr_fail_all_ops - Fails all outstanding ops.
818 * @ioa_cfg: ioa config struct
819 *
820 * This function fails all outstanding ops.
821 *
822 * Return value:
823 * none
824 **/
825static void ipr_fail_all_ops(struct ipr_ioa_cfg *ioa_cfg)
826{
827 struct ipr_cmnd *ipr_cmd, *temp;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600828 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 ENTER;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600831 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600832 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600833 list_for_each_entry_safe(ipr_cmd,
834 temp, &hrrq->hrrq_pending_q, queue) {
835 list_del(&ipr_cmd->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600837 ipr_cmd->s.ioasa.hdr.ioasc =
838 cpu_to_be32(IPR_IOASC_IOA_WAS_RESET);
839 ipr_cmd->s.ioasa.hdr.ilid =
840 cpu_to_be32(IPR_DRIVER_ILID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600842 if (ipr_cmd->scsi_cmd)
843 ipr_cmd->done = ipr_scsi_eh_done;
844 else if (ipr_cmd->qc)
845 ipr_cmd->done = ipr_sata_eh_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600847 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH,
848 IPR_IOASC_IOA_WAS_RESET);
849 del_timer(&ipr_cmd->timer);
850 ipr_cmd->done(ipr_cmd);
851 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -0600852 spin_unlock(&hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 LEAVE;
855}
856
857/**
Wayne Boyera32c0552010-02-19 13:23:36 -0800858 * ipr_send_command - Send driver initiated requests.
859 * @ipr_cmd: ipr command struct
860 *
861 * This function sends a command to the adapter using the correct write call.
862 * In the case of sis64, calculate the ioarcb size required. Then or in the
863 * appropriate bits.
864 *
865 * Return value:
866 * none
867 **/
868static void ipr_send_command(struct ipr_cmnd *ipr_cmd)
869{
870 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
871 dma_addr_t send_dma_addr = ipr_cmd->dma_addr;
872
873 if (ioa_cfg->sis64) {
874 /* The default size is 256 bytes */
875 send_dma_addr |= 0x1;
876
877 /* If the number of ioadls * size of ioadl > 128 bytes,
878 then use a 512 byte ioarcb */
879 if (ipr_cmd->dma_use_sg * sizeof(struct ipr_ioadl64_desc) > 128 )
880 send_dma_addr |= 0x4;
881 writeq(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
882 } else
883 writel(send_dma_addr, ioa_cfg->regs.ioarrin_reg);
884}
885
886/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * ipr_do_req - Send driver initiated requests.
888 * @ipr_cmd: ipr command struct
889 * @done: done function
890 * @timeout_func: timeout function
891 * @timeout: timeout value
892 *
893 * This function sends the specified command to the adapter with the
894 * timeout given. The done function is invoked on command completion.
895 *
896 * Return value:
897 * none
898 **/
899static void ipr_do_req(struct ipr_cmnd *ipr_cmd,
900 void (*done) (struct ipr_cmnd *),
901 void (*timeout_func) (struct ipr_cmnd *), u32 timeout)
902{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -0600903 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 ipr_cmd->done = done;
906
907 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
908 ipr_cmd->timer.expires = jiffies + timeout;
909 ipr_cmd->timer.function = (void (*)(unsigned long))timeout_func;
910
911 add_timer(&ipr_cmd->timer);
912
913 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, 0);
914
Wayne Boyera32c0552010-02-19 13:23:36 -0800915 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918/**
919 * ipr_internal_cmd_done - Op done function for an internally generated op.
920 * @ipr_cmd: ipr command struct
921 *
922 * This function is the op done function for an internally generated,
923 * blocking op. It simply wakes the sleeping thread.
924 *
925 * Return value:
926 * none
927 **/
928static void ipr_internal_cmd_done(struct ipr_cmnd *ipr_cmd)
929{
930 if (ipr_cmd->sibling)
931 ipr_cmd->sibling = NULL;
932 else
933 complete(&ipr_cmd->completion);
934}
935
936/**
Wayne Boyera32c0552010-02-19 13:23:36 -0800937 * ipr_init_ioadl - initialize the ioadl for the correct SIS type
938 * @ipr_cmd: ipr command struct
939 * @dma_addr: dma address
940 * @len: transfer length
941 * @flags: ioadl flag value
942 *
943 * This function initializes an ioadl in the case where there is only a single
944 * descriptor.
945 *
946 * Return value:
947 * nothing
948 **/
949static void ipr_init_ioadl(struct ipr_cmnd *ipr_cmd, dma_addr_t dma_addr,
950 u32 len, int flags)
951{
952 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
953 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
954
955 ipr_cmd->dma_use_sg = 1;
956
957 if (ipr_cmd->ioa_cfg->sis64) {
958 ioadl64->flags = cpu_to_be32(flags);
959 ioadl64->data_len = cpu_to_be32(len);
960 ioadl64->address = cpu_to_be64(dma_addr);
961
962 ipr_cmd->ioarcb.ioadl_len =
963 cpu_to_be32(sizeof(struct ipr_ioadl64_desc));
964 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
965 } else {
966 ioadl->flags_and_data_len = cpu_to_be32(flags | len);
967 ioadl->address = cpu_to_be32(dma_addr);
968
969 if (flags == IPR_IOADL_FLAGS_READ_LAST) {
970 ipr_cmd->ioarcb.read_ioadl_len =
971 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
972 ipr_cmd->ioarcb.read_data_transfer_length = cpu_to_be32(len);
973 } else {
974 ipr_cmd->ioarcb.ioadl_len =
975 cpu_to_be32(sizeof(struct ipr_ioadl_desc));
976 ipr_cmd->ioarcb.data_transfer_length = cpu_to_be32(len);
977 }
978 }
979}
980
981/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 * ipr_send_blocking_cmd - Send command and sleep on its completion.
983 * @ipr_cmd: ipr command struct
984 * @timeout_func: function to invoke if command times out
985 * @timeout: timeout
986 *
987 * Return value:
988 * none
989 **/
990static void ipr_send_blocking_cmd(struct ipr_cmnd *ipr_cmd,
991 void (*timeout_func) (struct ipr_cmnd *ipr_cmd),
992 u32 timeout)
993{
994 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
995
996 init_completion(&ipr_cmd->completion);
997 ipr_do_req(ipr_cmd, ipr_internal_cmd_done, timeout_func, timeout);
998
999 spin_unlock_irq(ioa_cfg->host->host_lock);
1000 wait_for_completion(&ipr_cmd->completion);
1001 spin_lock_irq(ioa_cfg->host->host_lock);
1002}
1003
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001004static int ipr_get_hrrq_index(struct ipr_ioa_cfg *ioa_cfg)
1005{
1006 if (ioa_cfg->hrrq_num == 1)
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06001007 return 0;
1008 else
1009 return (atomic_add_return(1, &ioa_cfg->hrrq_index) % (ioa_cfg->hrrq_num - 1)) + 1;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001010}
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012/**
1013 * ipr_send_hcam - Send an HCAM to the adapter.
1014 * @ioa_cfg: ioa config struct
1015 * @type: HCAM type
1016 * @hostrcb: hostrcb struct
1017 *
1018 * This function will send a Host Controlled Async command to the adapter.
1019 * If HCAMs are currently not allowed to be issued to the adapter, it will
1020 * place the hostrcb on the free queue.
1021 *
1022 * Return value:
1023 * none
1024 **/
1025static void ipr_send_hcam(struct ipr_ioa_cfg *ioa_cfg, u8 type,
1026 struct ipr_hostrcb *hostrcb)
1027{
1028 struct ipr_cmnd *ipr_cmd;
1029 struct ipr_ioarcb *ioarcb;
1030
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06001031 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001033 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_pending_q);
1035
1036 ipr_cmd->u.hostrcb = hostrcb;
1037 ioarcb = &ipr_cmd->ioarcb;
1038
1039 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
1040 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_HCAM;
1041 ioarcb->cmd_pkt.cdb[0] = IPR_HOST_CONTROLLED_ASYNC;
1042 ioarcb->cmd_pkt.cdb[1] = type;
1043 ioarcb->cmd_pkt.cdb[7] = (sizeof(hostrcb->hcam) >> 8) & 0xff;
1044 ioarcb->cmd_pkt.cdb[8] = sizeof(hostrcb->hcam) & 0xff;
1045
Wayne Boyera32c0552010-02-19 13:23:36 -08001046 ipr_init_ioadl(ipr_cmd, hostrcb->hostrcb_dma,
1047 sizeof(hostrcb->hcam), IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 if (type == IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE)
1050 ipr_cmd->done = ipr_process_ccn;
1051 else
1052 ipr_cmd->done = ipr_process_error;
1053
1054 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_IOA_RES_ADDR);
1055
Wayne Boyera32c0552010-02-19 13:23:36 -08001056 ipr_send_command(ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 } else {
1058 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
1059 }
1060}
1061
1062/**
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001063 * ipr_update_ata_class - Update the ata class in the resource entry
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * @res: resource entry struct
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001065 * @proto: cfgte device bus protocol value
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 *
1067 * Return value:
1068 * none
1069 **/
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001070static void ipr_update_ata_class(struct ipr_resource_entry *res, unsigned int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03001072 switch (proto) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001073 case IPR_PROTO_SATA:
1074 case IPR_PROTO_SAS_STP:
1075 res->ata_class = ATA_DEV_ATA;
1076 break;
1077 case IPR_PROTO_SATA_ATAPI:
1078 case IPR_PROTO_SAS_STP_ATAPI:
1079 res->ata_class = ATA_DEV_ATAPI;
1080 break;
1081 default:
1082 res->ata_class = ATA_DEV_UNKNOWN;
1083 break;
1084 };
1085}
1086
1087/**
1088 * ipr_init_res_entry - Initialize a resource entry struct.
1089 * @res: resource entry struct
1090 * @cfgtew: config table entry wrapper struct
1091 *
1092 * Return value:
1093 * none
1094 **/
1095static void ipr_init_res_entry(struct ipr_resource_entry *res,
1096 struct ipr_config_table_entry_wrapper *cfgtew)
1097{
1098 int found = 0;
1099 unsigned int proto;
1100 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1101 struct ipr_resource_entry *gscsi_res = NULL;
1102
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06001103 res->needs_sync_complete = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 res->in_erp = 0;
1105 res->add_to_ml = 0;
1106 res->del_from_ml = 0;
1107 res->resetting_device = 0;
1108 res->sdev = NULL;
Brian King35a39692006-09-25 12:39:20 -05001109 res->sata_port = NULL;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001110
1111 if (ioa_cfg->sis64) {
1112 proto = cfgtew->u.cfgte64->proto;
1113 res->res_flags = cfgtew->u.cfgte64->res_flags;
1114 res->qmodel = IPR_QUEUEING_MODEL64(res);
Wayne Boyer438b0332010-05-10 09:13:00 -07001115 res->type = cfgtew->u.cfgte64->res_type;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001116
1117 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1118 sizeof(res->res_path));
1119
1120 res->bus = 0;
Wayne Boyer0cb992e2010-11-04 09:35:58 -07001121 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1122 sizeof(res->dev_lun.scsi_lun));
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001123 res->lun = scsilun_to_int(&res->dev_lun);
1124
1125 if (res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1126 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue) {
1127 if (gscsi_res->dev_id == cfgtew->u.cfgte64->dev_id) {
1128 found = 1;
1129 res->target = gscsi_res->target;
1130 break;
1131 }
1132 }
1133 if (!found) {
1134 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1135 ioa_cfg->max_devs_supported);
1136 set_bit(res->target, ioa_cfg->target_ids);
1137 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001138 } else if (res->type == IPR_RES_TYPE_IOAFP) {
1139 res->bus = IPR_IOAFP_VIRTUAL_BUS;
1140 res->target = 0;
1141 } else if (res->type == IPR_RES_TYPE_ARRAY) {
1142 res->bus = IPR_ARRAY_VIRTUAL_BUS;
1143 res->target = find_first_zero_bit(ioa_cfg->array_ids,
1144 ioa_cfg->max_devs_supported);
1145 set_bit(res->target, ioa_cfg->array_ids);
1146 } else if (res->type == IPR_RES_TYPE_VOLUME_SET) {
1147 res->bus = IPR_VSET_VIRTUAL_BUS;
1148 res->target = find_first_zero_bit(ioa_cfg->vset_ids,
1149 ioa_cfg->max_devs_supported);
1150 set_bit(res->target, ioa_cfg->vset_ids);
1151 } else {
1152 res->target = find_first_zero_bit(ioa_cfg->target_ids,
1153 ioa_cfg->max_devs_supported);
1154 set_bit(res->target, ioa_cfg->target_ids);
1155 }
1156 } else {
1157 proto = cfgtew->u.cfgte->proto;
1158 res->qmodel = IPR_QUEUEING_MODEL(res);
1159 res->flags = cfgtew->u.cfgte->flags;
1160 if (res->flags & IPR_IS_IOA_RESOURCE)
1161 res->type = IPR_RES_TYPE_IOAFP;
1162 else
1163 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1164
1165 res->bus = cfgtew->u.cfgte->res_addr.bus;
1166 res->target = cfgtew->u.cfgte->res_addr.target;
1167 res->lun = cfgtew->u.cfgte->res_addr.lun;
Wayne Boyer46d74562010-08-11 07:15:17 -07001168 res->lun_wwn = get_unaligned_be64(cfgtew->u.cfgte->lun_wwn);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001169 }
1170
1171 ipr_update_ata_class(res, proto);
1172}
1173
1174/**
1175 * ipr_is_same_device - Determine if two devices are the same.
1176 * @res: resource entry struct
1177 * @cfgtew: config table entry wrapper struct
1178 *
1179 * Return value:
1180 * 1 if the devices are the same / 0 otherwise
1181 **/
1182static int ipr_is_same_device(struct ipr_resource_entry *res,
1183 struct ipr_config_table_entry_wrapper *cfgtew)
1184{
1185 if (res->ioa_cfg->sis64) {
1186 if (!memcmp(&res->dev_id, &cfgtew->u.cfgte64->dev_id,
1187 sizeof(cfgtew->u.cfgte64->dev_id)) &&
Wayne Boyer0cb992e2010-11-04 09:35:58 -07001188 !memcmp(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001189 sizeof(cfgtew->u.cfgte64->lun))) {
1190 return 1;
1191 }
1192 } else {
1193 if (res->bus == cfgtew->u.cfgte->res_addr.bus &&
1194 res->target == cfgtew->u.cfgte->res_addr.target &&
1195 res->lun == cfgtew->u.cfgte->res_addr.lun)
1196 return 1;
1197 }
1198
1199 return 0;
1200}
1201
1202/**
Brian Kingb3b3b402013-01-11 17:43:49 -06001203 * __ipr_format_res_path - Format the resource path for printing.
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001204 * @res_path: resource path
1205 * @buf: buffer
Brian Kingb3b3b402013-01-11 17:43:49 -06001206 * @len: length of buffer provided
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001207 *
1208 * Return value:
1209 * pointer to buffer
1210 **/
Brian Kingb3b3b402013-01-11 17:43:49 -06001211static char *__ipr_format_res_path(u8 *res_path, char *buffer, int len)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001212{
1213 int i;
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001214 char *p = buffer;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001215
Wayne Boyer46d74562010-08-11 07:15:17 -07001216 *p = '\0';
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07001217 p += snprintf(p, buffer + len - p, "%02X", res_path[0]);
1218 for (i = 1; res_path[i] != 0xff && ((i * 3) < len); i++)
1219 p += snprintf(p, buffer + len - p, "-%02X", res_path[i]);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001220
1221 return buffer;
1222}
1223
1224/**
Brian Kingb3b3b402013-01-11 17:43:49 -06001225 * ipr_format_res_path - Format the resource path for printing.
1226 * @ioa_cfg: ioa config struct
1227 * @res_path: resource path
1228 * @buf: buffer
1229 * @len: length of buffer provided
1230 *
1231 * Return value:
1232 * pointer to buffer
1233 **/
1234static char *ipr_format_res_path(struct ipr_ioa_cfg *ioa_cfg,
1235 u8 *res_path, char *buffer, int len)
1236{
1237 char *p = buffer;
1238
1239 *p = '\0';
1240 p += snprintf(p, buffer + len - p, "%d/", ioa_cfg->host->host_no);
1241 __ipr_format_res_path(res_path, p, len - (buffer - p));
1242 return buffer;
1243}
1244
1245/**
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001246 * ipr_update_res_entry - Update the resource entry.
1247 * @res: resource entry struct
1248 * @cfgtew: config table entry wrapper struct
1249 *
1250 * Return value:
1251 * none
1252 **/
1253static void ipr_update_res_entry(struct ipr_resource_entry *res,
1254 struct ipr_config_table_entry_wrapper *cfgtew)
1255{
1256 char buffer[IPR_MAX_RES_PATH_LENGTH];
1257 unsigned int proto;
1258 int new_path = 0;
1259
1260 if (res->ioa_cfg->sis64) {
1261 res->flags = cfgtew->u.cfgte64->flags;
1262 res->res_flags = cfgtew->u.cfgte64->res_flags;
Wayne Boyer75576bb2010-07-14 10:50:14 -07001263 res->type = cfgtew->u.cfgte64->res_type;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001264
1265 memcpy(&res->std_inq_data, &cfgtew->u.cfgte64->std_inq_data,
1266 sizeof(struct ipr_std_inq_data));
1267
1268 res->qmodel = IPR_QUEUEING_MODEL64(res);
1269 proto = cfgtew->u.cfgte64->proto;
1270 res->res_handle = cfgtew->u.cfgte64->res_handle;
1271 res->dev_id = cfgtew->u.cfgte64->dev_id;
1272
1273 memcpy(&res->dev_lun.scsi_lun, &cfgtew->u.cfgte64->lun,
1274 sizeof(res->dev_lun.scsi_lun));
1275
1276 if (memcmp(res->res_path, &cfgtew->u.cfgte64->res_path,
1277 sizeof(res->res_path))) {
1278 memcpy(res->res_path, &cfgtew->u.cfgte64->res_path,
1279 sizeof(res->res_path));
1280 new_path = 1;
1281 }
1282
1283 if (res->sdev && new_path)
1284 sdev_printk(KERN_INFO, res->sdev, "Resource path: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06001285 ipr_format_res_path(res->ioa_cfg,
1286 res->res_path, buffer, sizeof(buffer)));
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001287 } else {
1288 res->flags = cfgtew->u.cfgte->flags;
1289 if (res->flags & IPR_IS_IOA_RESOURCE)
1290 res->type = IPR_RES_TYPE_IOAFP;
1291 else
1292 res->type = cfgtew->u.cfgte->rsvd_subtype & 0x0f;
1293
1294 memcpy(&res->std_inq_data, &cfgtew->u.cfgte->std_inq_data,
1295 sizeof(struct ipr_std_inq_data));
1296
1297 res->qmodel = IPR_QUEUEING_MODEL(res);
1298 proto = cfgtew->u.cfgte->proto;
1299 res->res_handle = cfgtew->u.cfgte->res_handle;
1300 }
1301
1302 ipr_update_ata_class(res, proto);
1303}
1304
1305/**
1306 * ipr_clear_res_target - Clear the bit in the bit map representing the target
1307 * for the resource.
1308 * @res: resource entry struct
1309 * @cfgtew: config table entry wrapper struct
1310 *
1311 * Return value:
1312 * none
1313 **/
1314static void ipr_clear_res_target(struct ipr_resource_entry *res)
1315{
1316 struct ipr_resource_entry *gscsi_res = NULL;
1317 struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
1318
1319 if (!ioa_cfg->sis64)
1320 return;
1321
1322 if (res->bus == IPR_ARRAY_VIRTUAL_BUS)
1323 clear_bit(res->target, ioa_cfg->array_ids);
1324 else if (res->bus == IPR_VSET_VIRTUAL_BUS)
1325 clear_bit(res->target, ioa_cfg->vset_ids);
1326 else if (res->bus == 0 && res->type == IPR_RES_TYPE_GENERIC_SCSI) {
1327 list_for_each_entry(gscsi_res, &ioa_cfg->used_res_q, queue)
1328 if (gscsi_res->dev_id == res->dev_id && gscsi_res != res)
1329 return;
1330 clear_bit(res->target, ioa_cfg->target_ids);
1331
1332 } else if (res->bus == 0)
1333 clear_bit(res->target, ioa_cfg->target_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336/**
1337 * ipr_handle_config_change - Handle a config change from the adapter
1338 * @ioa_cfg: ioa config struct
1339 * @hostrcb: hostrcb
1340 *
1341 * Return value:
1342 * none
1343 **/
1344static void ipr_handle_config_change(struct ipr_ioa_cfg *ioa_cfg,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001345 struct ipr_hostrcb *hostrcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 struct ipr_resource_entry *res = NULL;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001348 struct ipr_config_table_entry_wrapper cfgtew;
1349 __be32 cc_res_handle;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 u32 is_ndn = 1;
1352
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001353 if (ioa_cfg->sis64) {
1354 cfgtew.u.cfgte64 = &hostrcb->hcam.u.ccn.u.cfgte64;
1355 cc_res_handle = cfgtew.u.cfgte64->res_handle;
1356 } else {
1357 cfgtew.u.cfgte = &hostrcb->hcam.u.ccn.u.cfgte;
1358 cc_res_handle = cfgtew.u.cfgte->res_handle;
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001362 if (res->res_handle == cc_res_handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 is_ndn = 0;
1364 break;
1365 }
1366 }
1367
1368 if (is_ndn) {
1369 if (list_empty(&ioa_cfg->free_res_q)) {
1370 ipr_send_hcam(ioa_cfg,
1371 IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE,
1372 hostrcb);
1373 return;
1374 }
1375
1376 res = list_entry(ioa_cfg->free_res_q.next,
1377 struct ipr_resource_entry, queue);
1378
1379 list_del(&res->queue);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001380 ipr_init_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 list_add_tail(&res->queue, &ioa_cfg->used_res_q);
1382 }
1383
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001384 ipr_update_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 if (hostrcb->hcam.notify_type == IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY) {
1387 if (res->sdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 res->del_from_ml = 1;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001389 res->res_handle = IPR_INVALID_RES_HANDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (ioa_cfg->allow_ml_add_del)
1391 schedule_work(&ioa_cfg->work_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001392 } else {
1393 ipr_clear_res_target(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001395 }
Kleber Sacilotto de Souza5767a1c2011-02-14 20:19:31 -02001396 } else if (!res->sdev || res->del_from_ml) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 res->add_to_ml = 1;
1398 if (ioa_cfg->allow_ml_add_del)
1399 schedule_work(&ioa_cfg->work_q);
1400 }
1401
1402 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1403}
1404
1405/**
1406 * ipr_process_ccn - Op done function for a CCN.
1407 * @ipr_cmd: ipr command struct
1408 *
1409 * This function is the op done function for a configuration
1410 * change notification host controlled async from the adapter.
1411 *
1412 * Return value:
1413 * none
1414 **/
1415static void ipr_process_ccn(struct ipr_cmnd *ipr_cmd)
1416{
1417 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
1418 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07001419 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 list_del(&hostrcb->queue);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06001422 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 if (ioasc) {
1425 if (ioasc != IPR_IOASC_IOA_WAS_RESET)
1426 dev_err(&ioa_cfg->pdev->dev,
1427 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
1428
1429 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
1430 } else {
1431 ipr_handle_config_change(ioa_cfg, hostrcb);
1432 }
1433}
1434
1435/**
Brian King8cf093e2007-04-26 16:00:14 -05001436 * strip_and_pad_whitespace - Strip and pad trailing whitespace.
1437 * @i: index into buffer
1438 * @buf: string to modify
1439 *
1440 * This function will strip all trailing whitespace, pad the end
1441 * of the string with a single space, and NULL terminate the string.
1442 *
1443 * Return value:
1444 * new length of string
1445 **/
1446static int strip_and_pad_whitespace(int i, char *buf)
1447{
1448 while (i && buf[i] == ' ')
1449 i--;
1450 buf[i+1] = ' ';
1451 buf[i+2] = '\0';
1452 return i + 2;
1453}
1454
1455/**
1456 * ipr_log_vpd_compact - Log the passed extended VPD compactly.
1457 * @prefix: string to print at start of printk
1458 * @hostrcb: hostrcb pointer
1459 * @vpd: vendor/product id/sn struct
1460 *
1461 * Return value:
1462 * none
1463 **/
1464static void ipr_log_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1465 struct ipr_vpd *vpd)
1466{
1467 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN + IPR_SERIAL_NUM_LEN + 3];
1468 int i = 0;
1469
1470 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1471 i = strip_and_pad_whitespace(IPR_VENDOR_ID_LEN - 1, buffer);
1472
1473 memcpy(&buffer[i], vpd->vpids.product_id, IPR_PROD_ID_LEN);
1474 i = strip_and_pad_whitespace(i + IPR_PROD_ID_LEN - 1, buffer);
1475
1476 memcpy(&buffer[i], vpd->sn, IPR_SERIAL_NUM_LEN);
1477 buffer[IPR_SERIAL_NUM_LEN + i] = '\0';
1478
1479 ipr_hcam_err(hostrcb, "%s VPID/SN: %s\n", prefix, buffer);
1480}
1481
1482/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 * ipr_log_vpd - Log the passed VPD to the error log.
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001484 * @vpd: vendor/product id/sn struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 *
1486 * Return value:
1487 * none
1488 **/
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001489static void ipr_log_vpd(struct ipr_vpd *vpd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
1491 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN
1492 + IPR_SERIAL_NUM_LEN];
1493
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001494 memcpy(buffer, vpd->vpids.vendor_id, IPR_VENDOR_ID_LEN);
1495 memcpy(buffer + IPR_VENDOR_ID_LEN, vpd->vpids.product_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 IPR_PROD_ID_LEN);
1497 buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN] = '\0';
1498 ipr_err("Vendor/Product ID: %s\n", buffer);
1499
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001500 memcpy(buffer, vpd->sn, IPR_SERIAL_NUM_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 buffer[IPR_SERIAL_NUM_LEN] = '\0';
1502 ipr_err(" Serial Number: %s\n", buffer);
1503}
1504
1505/**
Brian King8cf093e2007-04-26 16:00:14 -05001506 * ipr_log_ext_vpd_compact - Log the passed extended VPD compactly.
1507 * @prefix: string to print at start of printk
1508 * @hostrcb: hostrcb pointer
1509 * @vpd: vendor/product id/sn/wwn struct
1510 *
1511 * Return value:
1512 * none
1513 **/
1514static void ipr_log_ext_vpd_compact(char *prefix, struct ipr_hostrcb *hostrcb,
1515 struct ipr_ext_vpd *vpd)
1516{
1517 ipr_log_vpd_compact(prefix, hostrcb, &vpd->vpd);
1518 ipr_hcam_err(hostrcb, "%s WWN: %08X%08X\n", prefix,
1519 be32_to_cpu(vpd->wwid[0]), be32_to_cpu(vpd->wwid[1]));
1520}
1521
1522/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001523 * ipr_log_ext_vpd - Log the passed extended VPD to the error log.
1524 * @vpd: vendor/product id/sn/wwn struct
1525 *
1526 * Return value:
1527 * none
1528 **/
1529static void ipr_log_ext_vpd(struct ipr_ext_vpd *vpd)
1530{
1531 ipr_log_vpd(&vpd->vpd);
1532 ipr_err(" WWN: %08X%08X\n", be32_to_cpu(vpd->wwid[0]),
1533 be32_to_cpu(vpd->wwid[1]));
1534}
1535
1536/**
1537 * ipr_log_enhanced_cache_error - Log a cache error.
1538 * @ioa_cfg: ioa config struct
1539 * @hostrcb: hostrcb struct
1540 *
1541 * Return value:
1542 * none
1543 **/
1544static void ipr_log_enhanced_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1545 struct ipr_hostrcb *hostrcb)
1546{
Wayne Boyer4565e372010-02-19 13:24:07 -08001547 struct ipr_hostrcb_type_12_error *error;
1548
1549 if (ioa_cfg->sis64)
1550 error = &hostrcb->hcam.u.error64.u.type_12_error;
1551 else
1552 error = &hostrcb->hcam.u.error.u.type_12_error;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001553
1554 ipr_err("-----Current Configuration-----\n");
1555 ipr_err("Cache Directory Card Information:\n");
1556 ipr_log_ext_vpd(&error->ioa_vpd);
1557 ipr_err("Adapter Card Information:\n");
1558 ipr_log_ext_vpd(&error->cfc_vpd);
1559
1560 ipr_err("-----Expected Configuration-----\n");
1561 ipr_err("Cache Directory Card Information:\n");
1562 ipr_log_ext_vpd(&error->ioa_last_attached_to_cfc_vpd);
1563 ipr_err("Adapter Card Information:\n");
1564 ipr_log_ext_vpd(&error->cfc_last_attached_to_ioa_vpd);
1565
1566 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1567 be32_to_cpu(error->ioa_data[0]),
1568 be32_to_cpu(error->ioa_data[1]),
1569 be32_to_cpu(error->ioa_data[2]));
1570}
1571
1572/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 * ipr_log_cache_error - Log a cache error.
1574 * @ioa_cfg: ioa config struct
1575 * @hostrcb: hostrcb struct
1576 *
1577 * Return value:
1578 * none
1579 **/
1580static void ipr_log_cache_error(struct ipr_ioa_cfg *ioa_cfg,
1581 struct ipr_hostrcb *hostrcb)
1582{
1583 struct ipr_hostrcb_type_02_error *error =
1584 &hostrcb->hcam.u.error.u.type_02_error;
1585
1586 ipr_err("-----Current Configuration-----\n");
1587 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001588 ipr_log_vpd(&error->ioa_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001590 ipr_log_vpd(&error->cfc_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 ipr_err("-----Expected Configuration-----\n");
1593 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001594 ipr_log_vpd(&error->ioa_last_attached_to_cfc_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001596 ipr_log_vpd(&error->cfc_last_attached_to_ioa_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 ipr_err("Additional IOA Data: %08X %08X %08X\n",
1599 be32_to_cpu(error->ioa_data[0]),
1600 be32_to_cpu(error->ioa_data[1]),
1601 be32_to_cpu(error->ioa_data[2]));
1602}
1603
1604/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001605 * ipr_log_enhanced_config_error - Log a configuration error.
1606 * @ioa_cfg: ioa config struct
1607 * @hostrcb: hostrcb struct
1608 *
1609 * Return value:
1610 * none
1611 **/
1612static void ipr_log_enhanced_config_error(struct ipr_ioa_cfg *ioa_cfg,
1613 struct ipr_hostrcb *hostrcb)
1614{
1615 int errors_logged, i;
1616 struct ipr_hostrcb_device_data_entry_enhanced *dev_entry;
1617 struct ipr_hostrcb_type_13_error *error;
1618
1619 error = &hostrcb->hcam.u.error.u.type_13_error;
1620 errors_logged = be32_to_cpu(error->errors_logged);
1621
1622 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1623 be32_to_cpu(error->errors_detected), errors_logged);
1624
1625 dev_entry = error->dev;
1626
1627 for (i = 0; i < errors_logged; i++, dev_entry++) {
1628 ipr_err_separator;
1629
1630 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
1631 ipr_log_ext_vpd(&dev_entry->vpd);
1632
1633 ipr_err("-----New Device Information-----\n");
1634 ipr_log_ext_vpd(&dev_entry->new_vpd);
1635
1636 ipr_err("Cache Directory Card Information:\n");
1637 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1638
1639 ipr_err("Adapter Card Information:\n");
1640 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1641 }
1642}
1643
1644/**
Wayne Boyer4565e372010-02-19 13:24:07 -08001645 * ipr_log_sis64_config_error - Log a device error.
1646 * @ioa_cfg: ioa config struct
1647 * @hostrcb: hostrcb struct
1648 *
1649 * Return value:
1650 * none
1651 **/
1652static void ipr_log_sis64_config_error(struct ipr_ioa_cfg *ioa_cfg,
1653 struct ipr_hostrcb *hostrcb)
1654{
1655 int errors_logged, i;
1656 struct ipr_hostrcb64_device_data_entry_enhanced *dev_entry;
1657 struct ipr_hostrcb_type_23_error *error;
1658 char buffer[IPR_MAX_RES_PATH_LENGTH];
1659
1660 error = &hostrcb->hcam.u.error64.u.type_23_error;
1661 errors_logged = be32_to_cpu(error->errors_logged);
1662
1663 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1664 be32_to_cpu(error->errors_detected), errors_logged);
1665
1666 dev_entry = error->dev;
1667
1668 for (i = 0; i < errors_logged; i++, dev_entry++) {
1669 ipr_err_separator;
1670
1671 ipr_err("Device %d : %s", i + 1,
Brian Kingb3b3b402013-01-11 17:43:49 -06001672 __ipr_format_res_path(dev_entry->res_path,
1673 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08001674 ipr_log_ext_vpd(&dev_entry->vpd);
1675
1676 ipr_err("-----New Device Information-----\n");
1677 ipr_log_ext_vpd(&dev_entry->new_vpd);
1678
1679 ipr_err("Cache Directory Card Information:\n");
1680 ipr_log_ext_vpd(&dev_entry->ioa_last_with_dev_vpd);
1681
1682 ipr_err("Adapter Card Information:\n");
1683 ipr_log_ext_vpd(&dev_entry->cfc_last_with_dev_vpd);
1684 }
1685}
1686
1687/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 * ipr_log_config_error - Log a configuration error.
1689 * @ioa_cfg: ioa config struct
1690 * @hostrcb: hostrcb struct
1691 *
1692 * Return value:
1693 * none
1694 **/
1695static void ipr_log_config_error(struct ipr_ioa_cfg *ioa_cfg,
1696 struct ipr_hostrcb *hostrcb)
1697{
1698 int errors_logged, i;
1699 struct ipr_hostrcb_device_data_entry *dev_entry;
1700 struct ipr_hostrcb_type_03_error *error;
1701
1702 error = &hostrcb->hcam.u.error.u.type_03_error;
1703 errors_logged = be32_to_cpu(error->errors_logged);
1704
1705 ipr_err("Device Errors Detected/Logged: %d/%d\n",
1706 be32_to_cpu(error->errors_detected), errors_logged);
1707
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001708 dev_entry = error->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 for (i = 0; i < errors_logged; i++, dev_entry++) {
1711 ipr_err_separator;
1712
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001713 ipr_phys_res_err(ioa_cfg, dev_entry->dev_res_addr, "Device %d", i + 1);
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001714 ipr_log_vpd(&dev_entry->vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 ipr_err("-----New Device Information-----\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001717 ipr_log_vpd(&dev_entry->new_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 ipr_err("Cache Directory Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001720 ipr_log_vpd(&dev_entry->ioa_last_with_dev_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 ipr_err("Adapter Card Information:\n");
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001723 ipr_log_vpd(&dev_entry->cfc_last_with_dev_vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 ipr_err("Additional IOA Data: %08X %08X %08X %08X %08X\n",
1726 be32_to_cpu(dev_entry->ioa_data[0]),
1727 be32_to_cpu(dev_entry->ioa_data[1]),
1728 be32_to_cpu(dev_entry->ioa_data[2]),
1729 be32_to_cpu(dev_entry->ioa_data[3]),
1730 be32_to_cpu(dev_entry->ioa_data[4]));
1731 }
1732}
1733
1734/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001735 * ipr_log_enhanced_array_error - Log an array configuration error.
1736 * @ioa_cfg: ioa config struct
1737 * @hostrcb: hostrcb struct
1738 *
1739 * Return value:
1740 * none
1741 **/
1742static void ipr_log_enhanced_array_error(struct ipr_ioa_cfg *ioa_cfg,
1743 struct ipr_hostrcb *hostrcb)
1744{
1745 int i, num_entries;
1746 struct ipr_hostrcb_type_14_error *error;
1747 struct ipr_hostrcb_array_data_entry_enhanced *array_entry;
1748 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1749
1750 error = &hostrcb->hcam.u.error.u.type_14_error;
1751
1752 ipr_err_separator;
1753
1754 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1755 error->protection_level,
1756 ioa_cfg->host->host_no,
1757 error->last_func_vset_res_addr.bus,
1758 error->last_func_vset_res_addr.target,
1759 error->last_func_vset_res_addr.lun);
1760
1761 ipr_err_separator;
1762
1763 array_entry = error->array_member;
1764 num_entries = min_t(u32, be32_to_cpu(error->num_entries),
Wayne Boyer72620262010-09-27 10:45:28 -07001765 ARRAY_SIZE(error->array_member));
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001766
1767 for (i = 0; i < num_entries; i++, array_entry++) {
1768 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
1769 continue;
1770
1771 if (be32_to_cpu(error->exposed_mode_adn) == i)
1772 ipr_err("Exposed Array Member %d:\n", i);
1773 else
1774 ipr_err("Array Member %d:\n", i);
1775
1776 ipr_log_ext_vpd(&array_entry->vpd);
1777 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1778 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1779 "Expected Location");
1780
1781 ipr_err_separator;
1782 }
1783}
1784
1785/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 * ipr_log_array_error - Log an array configuration error.
1787 * @ioa_cfg: ioa config struct
1788 * @hostrcb: hostrcb struct
1789 *
1790 * Return value:
1791 * none
1792 **/
1793static void ipr_log_array_error(struct ipr_ioa_cfg *ioa_cfg,
1794 struct ipr_hostrcb *hostrcb)
1795{
1796 int i;
1797 struct ipr_hostrcb_type_04_error *error;
1798 struct ipr_hostrcb_array_data_entry *array_entry;
1799 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
1800
1801 error = &hostrcb->hcam.u.error.u.type_04_error;
1802
1803 ipr_err_separator;
1804
1805 ipr_err("RAID %s Array Configuration: %d:%d:%d:%d\n",
1806 error->protection_level,
1807 ioa_cfg->host->host_no,
1808 error->last_func_vset_res_addr.bus,
1809 error->last_func_vset_res_addr.target,
1810 error->last_func_vset_res_addr.lun);
1811
1812 ipr_err_separator;
1813
1814 array_entry = error->array_member;
1815
1816 for (i = 0; i < 18; i++) {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001817 if (!memcmp(array_entry->vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 continue;
1819
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001820 if (be32_to_cpu(error->exposed_mode_adn) == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 ipr_err("Exposed Array Member %d:\n", i);
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001822 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ipr_err("Array Member %d:\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
brking@us.ibm.comcfc32132005-11-01 17:00:18 -06001825 ipr_log_vpd(&array_entry->vpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001827 ipr_phys_res_err(ioa_cfg, array_entry->dev_res_addr, "Current Location");
1828 ipr_phys_res_err(ioa_cfg, array_entry->expected_dev_res_addr,
1829 "Expected Location");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 ipr_err_separator;
1832
1833 if (i == 9)
1834 array_entry = error->array_member2;
1835 else
1836 array_entry++;
1837 }
1838}
1839
1840/**
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001841 * ipr_log_hex_data - Log additional hex IOA error data.
Brian Kingac719ab2006-11-21 10:28:42 -06001842 * @ioa_cfg: ioa config struct
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001843 * @data: IOA error data
1844 * @len: data length
1845 *
1846 * Return value:
1847 * none
1848 **/
Brian Kingac719ab2006-11-21 10:28:42 -06001849static void ipr_log_hex_data(struct ipr_ioa_cfg *ioa_cfg, u32 *data, int len)
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001850{
1851 int i;
1852
1853 if (len == 0)
1854 return;
1855
Brian Kingac719ab2006-11-21 10:28:42 -06001856 if (ioa_cfg->log_level <= IPR_DEFAULT_LOG_LEVEL)
1857 len = min_t(int, len, IPR_DEFAULT_MAX_ERROR_DUMP);
1858
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001859 for (i = 0; i < len / 4; i += 4) {
1860 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
1861 be32_to_cpu(data[i]),
1862 be32_to_cpu(data[i+1]),
1863 be32_to_cpu(data[i+2]),
1864 be32_to_cpu(data[i+3]));
1865 }
1866}
1867
1868/**
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001869 * ipr_log_enhanced_dual_ioa_error - Log an enhanced dual adapter error.
1870 * @ioa_cfg: ioa config struct
1871 * @hostrcb: hostrcb struct
1872 *
1873 * Return value:
1874 * none
1875 **/
1876static void ipr_log_enhanced_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1877 struct ipr_hostrcb *hostrcb)
1878{
1879 struct ipr_hostrcb_type_17_error *error;
1880
Wayne Boyer4565e372010-02-19 13:24:07 -08001881 if (ioa_cfg->sis64)
1882 error = &hostrcb->hcam.u.error64.u.type_17_error;
1883 else
1884 error = &hostrcb->hcam.u.error.u.type_17_error;
1885
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001886 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -08001887 strim(error->failure_reason);
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001888
Brian King8cf093e2007-04-26 16:00:14 -05001889 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1890 be32_to_cpu(hostrcb->hcam.u.error.prc));
1891 ipr_log_ext_vpd_compact("Remote IOA", hostrcb, &error->vpd);
Brian Kingac719ab2006-11-21 10:28:42 -06001892 ipr_log_hex_data(ioa_cfg, error->data,
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001893 be32_to_cpu(hostrcb->hcam.length) -
1894 (offsetof(struct ipr_hostrcb_error, u) +
1895 offsetof(struct ipr_hostrcb_type_17_error, data)));
1896}
1897
1898/**
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001899 * ipr_log_dual_ioa_error - Log a dual adapter error.
1900 * @ioa_cfg: ioa config struct
1901 * @hostrcb: hostrcb struct
1902 *
1903 * Return value:
1904 * none
1905 **/
1906static void ipr_log_dual_ioa_error(struct ipr_ioa_cfg *ioa_cfg,
1907 struct ipr_hostrcb *hostrcb)
1908{
1909 struct ipr_hostrcb_type_07_error *error;
1910
1911 error = &hostrcb->hcam.u.error.u.type_07_error;
1912 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -08001913 strim(error->failure_reason);
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001914
Brian King8cf093e2007-04-26 16:00:14 -05001915 ipr_hcam_err(hostrcb, "%s [PRC: %08X]\n", error->failure_reason,
1916 be32_to_cpu(hostrcb->hcam.u.error.prc));
1917 ipr_log_vpd_compact("Remote IOA", hostrcb, &error->vpd);
Brian Kingac719ab2006-11-21 10:28:42 -06001918 ipr_log_hex_data(ioa_cfg, error->data,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001919 be32_to_cpu(hostrcb->hcam.length) -
1920 (offsetof(struct ipr_hostrcb_error, u) +
1921 offsetof(struct ipr_hostrcb_type_07_error, data)));
1922}
1923
Brian King49dc6a12006-11-21 10:28:35 -06001924static const struct {
1925 u8 active;
1926 char *desc;
1927} path_active_desc[] = {
1928 { IPR_PATH_NO_INFO, "Path" },
1929 { IPR_PATH_ACTIVE, "Active path" },
1930 { IPR_PATH_NOT_ACTIVE, "Inactive path" }
1931};
1932
1933static const struct {
1934 u8 state;
1935 char *desc;
1936} path_state_desc[] = {
1937 { IPR_PATH_STATE_NO_INFO, "has no path state information available" },
1938 { IPR_PATH_HEALTHY, "is healthy" },
1939 { IPR_PATH_DEGRADED, "is degraded" },
1940 { IPR_PATH_FAILED, "is failed" }
1941};
1942
1943/**
1944 * ipr_log_fabric_path - Log a fabric path error
1945 * @hostrcb: hostrcb struct
1946 * @fabric: fabric descriptor
1947 *
1948 * Return value:
1949 * none
1950 **/
1951static void ipr_log_fabric_path(struct ipr_hostrcb *hostrcb,
1952 struct ipr_hostrcb_fabric_desc *fabric)
1953{
1954 int i, j;
1955 u8 path_state = fabric->path_state;
1956 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
1957 u8 state = path_state & IPR_PATH_STATE_MASK;
1958
1959 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
1960 if (path_active_desc[i].active != active)
1961 continue;
1962
1963 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
1964 if (path_state_desc[j].state != state)
1965 continue;
1966
1967 if (fabric->cascaded_expander == 0xff && fabric->phy == 0xff) {
1968 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d\n",
1969 path_active_desc[i].desc, path_state_desc[j].desc,
1970 fabric->ioa_port);
1971 } else if (fabric->cascaded_expander == 0xff) {
1972 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Phy=%d\n",
1973 path_active_desc[i].desc, path_state_desc[j].desc,
1974 fabric->ioa_port, fabric->phy);
1975 } else if (fabric->phy == 0xff) {
1976 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d\n",
1977 path_active_desc[i].desc, path_state_desc[j].desc,
1978 fabric->ioa_port, fabric->cascaded_expander);
1979 } else {
1980 ipr_hcam_err(hostrcb, "%s %s: IOA Port=%d, Cascade=%d, Phy=%d\n",
1981 path_active_desc[i].desc, path_state_desc[j].desc,
1982 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
1983 }
1984 return;
1985 }
1986 }
1987
1988 ipr_err("Path state=%02X IOA Port=%d Cascade=%d Phy=%d\n", path_state,
1989 fabric->ioa_port, fabric->cascaded_expander, fabric->phy);
1990}
1991
Wayne Boyer4565e372010-02-19 13:24:07 -08001992/**
1993 * ipr_log64_fabric_path - Log a fabric path error
1994 * @hostrcb: hostrcb struct
1995 * @fabric: fabric descriptor
1996 *
1997 * Return value:
1998 * none
1999 **/
2000static void ipr_log64_fabric_path(struct ipr_hostrcb *hostrcb,
2001 struct ipr_hostrcb64_fabric_desc *fabric)
2002{
2003 int i, j;
2004 u8 path_state = fabric->path_state;
2005 u8 active = path_state & IPR_PATH_ACTIVE_MASK;
2006 u8 state = path_state & IPR_PATH_STATE_MASK;
2007 char buffer[IPR_MAX_RES_PATH_LENGTH];
2008
2009 for (i = 0; i < ARRAY_SIZE(path_active_desc); i++) {
2010 if (path_active_desc[i].active != active)
2011 continue;
2012
2013 for (j = 0; j < ARRAY_SIZE(path_state_desc); j++) {
2014 if (path_state_desc[j].state != state)
2015 continue;
2016
2017 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s\n",
2018 path_active_desc[i].desc, path_state_desc[j].desc,
Brian Kingb3b3b402013-01-11 17:43:49 -06002019 ipr_format_res_path(hostrcb->ioa_cfg,
2020 fabric->res_path,
2021 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002022 return;
2023 }
2024 }
2025
2026 ipr_err("Path state=%02X Resource Path=%s\n", path_state,
Brian Kingb3b3b402013-01-11 17:43:49 -06002027 ipr_format_res_path(hostrcb->ioa_cfg, fabric->res_path,
2028 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002029}
2030
Brian King49dc6a12006-11-21 10:28:35 -06002031static const struct {
2032 u8 type;
2033 char *desc;
2034} path_type_desc[] = {
2035 { IPR_PATH_CFG_IOA_PORT, "IOA port" },
2036 { IPR_PATH_CFG_EXP_PORT, "Expander port" },
2037 { IPR_PATH_CFG_DEVICE_PORT, "Device port" },
2038 { IPR_PATH_CFG_DEVICE_LUN, "Device LUN" }
2039};
2040
2041static const struct {
2042 u8 status;
2043 char *desc;
2044} path_status_desc[] = {
2045 { IPR_PATH_CFG_NO_PROB, "Functional" },
2046 { IPR_PATH_CFG_DEGRADED, "Degraded" },
2047 { IPR_PATH_CFG_FAILED, "Failed" },
2048 { IPR_PATH_CFG_SUSPECT, "Suspect" },
2049 { IPR_PATH_NOT_DETECTED, "Missing" },
2050 { IPR_PATH_INCORRECT_CONN, "Incorrectly connected" }
2051};
2052
2053static const char *link_rate[] = {
2054 "unknown",
2055 "disabled",
2056 "phy reset problem",
2057 "spinup hold",
2058 "port selector",
2059 "unknown",
2060 "unknown",
2061 "unknown",
2062 "1.5Gbps",
2063 "3.0Gbps",
2064 "unknown",
2065 "unknown",
2066 "unknown",
2067 "unknown",
2068 "unknown",
2069 "unknown"
2070};
2071
2072/**
2073 * ipr_log_path_elem - Log a fabric path element.
2074 * @hostrcb: hostrcb struct
2075 * @cfg: fabric path element struct
2076 *
2077 * Return value:
2078 * none
2079 **/
2080static void ipr_log_path_elem(struct ipr_hostrcb *hostrcb,
2081 struct ipr_hostrcb_config_element *cfg)
2082{
2083 int i, j;
2084 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
2085 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
2086
2087 if (type == IPR_PATH_CFG_NOT_EXIST)
2088 return;
2089
2090 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2091 if (path_type_desc[i].type != type)
2092 continue;
2093
2094 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2095 if (path_status_desc[j].status != status)
2096 continue;
2097
2098 if (type == IPR_PATH_CFG_IOA_PORT) {
2099 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, WWN=%08X%08X\n",
2100 path_status_desc[j].desc, path_type_desc[i].desc,
2101 cfg->phy, link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2102 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2103 } else {
2104 if (cfg->cascaded_expander == 0xff && cfg->phy == 0xff) {
2105 ipr_hcam_err(hostrcb, "%s %s: Link rate=%s, WWN=%08X%08X\n",
2106 path_status_desc[j].desc, path_type_desc[i].desc,
2107 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2108 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2109 } else if (cfg->cascaded_expander == 0xff) {
2110 ipr_hcam_err(hostrcb, "%s %s: Phy=%d, Link rate=%s, "
2111 "WWN=%08X%08X\n", path_status_desc[j].desc,
2112 path_type_desc[i].desc, cfg->phy,
2113 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2114 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2115 } else if (cfg->phy == 0xff) {
2116 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Link rate=%s, "
2117 "WWN=%08X%08X\n", path_status_desc[j].desc,
2118 path_type_desc[i].desc, cfg->cascaded_expander,
2119 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2120 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2121 } else {
2122 ipr_hcam_err(hostrcb, "%s %s: Cascade=%d, Phy=%d, Link rate=%s "
2123 "WWN=%08X%08X\n", path_status_desc[j].desc,
2124 path_type_desc[i].desc, cfg->cascaded_expander, cfg->phy,
2125 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2126 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2127 }
2128 }
2129 return;
2130 }
2131 }
2132
2133 ipr_hcam_err(hostrcb, "Path element=%02X: Cascade=%d Phy=%d Link rate=%s "
2134 "WWN=%08X%08X\n", cfg->type_status, cfg->cascaded_expander, cfg->phy,
2135 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2136 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
2137}
2138
2139/**
Wayne Boyer4565e372010-02-19 13:24:07 -08002140 * ipr_log64_path_elem - Log a fabric path element.
2141 * @hostrcb: hostrcb struct
2142 * @cfg: fabric path element struct
2143 *
2144 * Return value:
2145 * none
2146 **/
2147static void ipr_log64_path_elem(struct ipr_hostrcb *hostrcb,
2148 struct ipr_hostrcb64_config_element *cfg)
2149{
2150 int i, j;
2151 u8 desc_id = cfg->descriptor_id & IPR_DESCRIPTOR_MASK;
2152 u8 type = cfg->type_status & IPR_PATH_CFG_TYPE_MASK;
2153 u8 status = cfg->type_status & IPR_PATH_CFG_STATUS_MASK;
2154 char buffer[IPR_MAX_RES_PATH_LENGTH];
2155
2156 if (type == IPR_PATH_CFG_NOT_EXIST || desc_id != IPR_DESCRIPTOR_SIS64)
2157 return;
2158
2159 for (i = 0; i < ARRAY_SIZE(path_type_desc); i++) {
2160 if (path_type_desc[i].type != type)
2161 continue;
2162
2163 for (j = 0; j < ARRAY_SIZE(path_status_desc); j++) {
2164 if (path_status_desc[j].status != status)
2165 continue;
2166
2167 ipr_hcam_err(hostrcb, "%s %s: Resource Path=%s, Link rate=%s, WWN=%08X%08X\n",
2168 path_status_desc[j].desc, path_type_desc[i].desc,
Brian Kingb3b3b402013-01-11 17:43:49 -06002169 ipr_format_res_path(hostrcb->ioa_cfg,
2170 cfg->res_path, buffer, sizeof(buffer)),
2171 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2172 be32_to_cpu(cfg->wwid[0]),
2173 be32_to_cpu(cfg->wwid[1]));
Wayne Boyer4565e372010-02-19 13:24:07 -08002174 return;
2175 }
2176 }
2177 ipr_hcam_err(hostrcb, "Path element=%02X: Resource Path=%s, Link rate=%s "
2178 "WWN=%08X%08X\n", cfg->type_status,
Brian Kingb3b3b402013-01-11 17:43:49 -06002179 ipr_format_res_path(hostrcb->ioa_cfg,
2180 cfg->res_path, buffer, sizeof(buffer)),
2181 link_rate[cfg->link_rate & IPR_PHY_LINK_RATE_MASK],
2182 be32_to_cpu(cfg->wwid[0]), be32_to_cpu(cfg->wwid[1]));
Wayne Boyer4565e372010-02-19 13:24:07 -08002183}
2184
2185/**
Brian King49dc6a12006-11-21 10:28:35 -06002186 * ipr_log_fabric_error - Log a fabric error.
2187 * @ioa_cfg: ioa config struct
2188 * @hostrcb: hostrcb struct
2189 *
2190 * Return value:
2191 * none
2192 **/
2193static void ipr_log_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2194 struct ipr_hostrcb *hostrcb)
2195{
2196 struct ipr_hostrcb_type_20_error *error;
2197 struct ipr_hostrcb_fabric_desc *fabric;
2198 struct ipr_hostrcb_config_element *cfg;
2199 int i, add_len;
2200
2201 error = &hostrcb->hcam.u.error.u.type_20_error;
2202 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2203 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2204
2205 add_len = be32_to_cpu(hostrcb->hcam.length) -
2206 (offsetof(struct ipr_hostrcb_error, u) +
2207 offsetof(struct ipr_hostrcb_type_20_error, desc));
2208
2209 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2210 ipr_log_fabric_path(hostrcb, fabric);
2211 for_each_fabric_cfg(fabric, cfg)
2212 ipr_log_path_elem(hostrcb, cfg);
2213
2214 add_len -= be16_to_cpu(fabric->length);
2215 fabric = (struct ipr_hostrcb_fabric_desc *)
2216 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2217 }
2218
Brian Kingac719ab2006-11-21 10:28:42 -06002219 ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
Brian King49dc6a12006-11-21 10:28:35 -06002220}
2221
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002222/**
Wayne Boyer4565e372010-02-19 13:24:07 -08002223 * ipr_log_sis64_array_error - Log a sis64 array error.
2224 * @ioa_cfg: ioa config struct
2225 * @hostrcb: hostrcb struct
2226 *
2227 * Return value:
2228 * none
2229 **/
2230static void ipr_log_sis64_array_error(struct ipr_ioa_cfg *ioa_cfg,
2231 struct ipr_hostrcb *hostrcb)
2232{
2233 int i, num_entries;
2234 struct ipr_hostrcb_type_24_error *error;
2235 struct ipr_hostrcb64_array_data_entry *array_entry;
2236 char buffer[IPR_MAX_RES_PATH_LENGTH];
2237 const u8 zero_sn[IPR_SERIAL_NUM_LEN] = { [0 ... IPR_SERIAL_NUM_LEN-1] = '0' };
2238
2239 error = &hostrcb->hcam.u.error64.u.type_24_error;
2240
2241 ipr_err_separator;
2242
2243 ipr_err("RAID %s Array Configuration: %s\n",
2244 error->protection_level,
Brian Kingb3b3b402013-01-11 17:43:49 -06002245 ipr_format_res_path(ioa_cfg, error->last_res_path,
2246 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002247
2248 ipr_err_separator;
2249
2250 array_entry = error->array_member;
Wayne Boyer72620262010-09-27 10:45:28 -07002251 num_entries = min_t(u32, error->num_entries,
2252 ARRAY_SIZE(error->array_member));
Wayne Boyer4565e372010-02-19 13:24:07 -08002253
2254 for (i = 0; i < num_entries; i++, array_entry++) {
2255
2256 if (!memcmp(array_entry->vpd.vpd.sn, zero_sn, IPR_SERIAL_NUM_LEN))
2257 continue;
2258
2259 if (error->exposed_mode_adn == i)
2260 ipr_err("Exposed Array Member %d:\n", i);
2261 else
2262 ipr_err("Array Member %d:\n", i);
2263
2264 ipr_err("Array Member %d:\n", i);
2265 ipr_log_ext_vpd(&array_entry->vpd);
Wayne Boyer72620262010-09-27 10:45:28 -07002266 ipr_err("Current Location: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06002267 ipr_format_res_path(ioa_cfg, array_entry->res_path,
2268 buffer, sizeof(buffer)));
Wayne Boyer72620262010-09-27 10:45:28 -07002269 ipr_err("Expected Location: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06002270 ipr_format_res_path(ioa_cfg,
2271 array_entry->expected_res_path,
2272 buffer, sizeof(buffer)));
Wayne Boyer4565e372010-02-19 13:24:07 -08002273
2274 ipr_err_separator;
2275 }
2276}
2277
2278/**
2279 * ipr_log_sis64_fabric_error - Log a sis64 fabric error.
2280 * @ioa_cfg: ioa config struct
2281 * @hostrcb: hostrcb struct
2282 *
2283 * Return value:
2284 * none
2285 **/
2286static void ipr_log_sis64_fabric_error(struct ipr_ioa_cfg *ioa_cfg,
2287 struct ipr_hostrcb *hostrcb)
2288{
2289 struct ipr_hostrcb_type_30_error *error;
2290 struct ipr_hostrcb64_fabric_desc *fabric;
2291 struct ipr_hostrcb64_config_element *cfg;
2292 int i, add_len;
2293
2294 error = &hostrcb->hcam.u.error64.u.type_30_error;
2295
2296 error->failure_reason[sizeof(error->failure_reason) - 1] = '\0';
2297 ipr_hcam_err(hostrcb, "%s\n", error->failure_reason);
2298
2299 add_len = be32_to_cpu(hostrcb->hcam.length) -
2300 (offsetof(struct ipr_hostrcb64_error, u) +
2301 offsetof(struct ipr_hostrcb_type_30_error, desc));
2302
2303 for (i = 0, fabric = error->desc; i < error->num_entries; i++) {
2304 ipr_log64_fabric_path(hostrcb, fabric);
2305 for_each_fabric_cfg(fabric, cfg)
2306 ipr_log64_path_elem(hostrcb, cfg);
2307
2308 add_len -= be16_to_cpu(fabric->length);
2309 fabric = (struct ipr_hostrcb64_fabric_desc *)
2310 ((unsigned long)fabric + be16_to_cpu(fabric->length));
2311 }
2312
2313 ipr_log_hex_data(ioa_cfg, (u32 *)fabric, add_len);
2314}
2315
2316/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 * ipr_log_generic_error - Log an adapter error.
2318 * @ioa_cfg: ioa config struct
2319 * @hostrcb: hostrcb struct
2320 *
2321 * Return value:
2322 * none
2323 **/
2324static void ipr_log_generic_error(struct ipr_ioa_cfg *ioa_cfg,
2325 struct ipr_hostrcb *hostrcb)
2326{
Brian Kingac719ab2006-11-21 10:28:42 -06002327 ipr_log_hex_data(ioa_cfg, hostrcb->hcam.u.raw.data,
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002328 be32_to_cpu(hostrcb->hcam.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330
2331/**
2332 * ipr_get_error - Find the specfied IOASC in the ipr_error_table.
2333 * @ioasc: IOASC
2334 *
2335 * This function will return the index of into the ipr_error_table
2336 * for the specified IOASC. If the IOASC is not in the table,
2337 * 0 will be returned, which points to the entry used for unknown errors.
2338 *
2339 * Return value:
2340 * index into the ipr_error_table
2341 **/
2342static u32 ipr_get_error(u32 ioasc)
2343{
2344 int i;
2345
2346 for (i = 0; i < ARRAY_SIZE(ipr_error_table); i++)
Brian King35a39692006-09-25 12:39:20 -05002347 if (ipr_error_table[i].ioasc == (ioasc & IPR_IOASC_IOASC_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return i;
2349
2350 return 0;
2351}
2352
2353/**
2354 * ipr_handle_log_data - Log an adapter error.
2355 * @ioa_cfg: ioa config struct
2356 * @hostrcb: hostrcb struct
2357 *
2358 * This function logs an adapter error to the system.
2359 *
2360 * Return value:
2361 * none
2362 **/
2363static void ipr_handle_log_data(struct ipr_ioa_cfg *ioa_cfg,
2364 struct ipr_hostrcb *hostrcb)
2365{
2366 u32 ioasc;
2367 int error_index;
2368
2369 if (hostrcb->hcam.notify_type != IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY)
2370 return;
2371
2372 if (hostrcb->hcam.notifications_lost == IPR_HOST_RCB_NOTIFICATIONS_LOST)
2373 dev_err(&ioa_cfg->pdev->dev, "Error notifications lost\n");
2374
Wayne Boyer4565e372010-02-19 13:24:07 -08002375 if (ioa_cfg->sis64)
2376 ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2377 else
2378 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Wayne Boyer4565e372010-02-19 13:24:07 -08002380 if (!ioa_cfg->sis64 && (ioasc == IPR_IOASC_BUS_WAS_RESET ||
2381 ioasc == IPR_IOASC_BUS_WAS_RESET_BY_OTHER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 /* Tell the midlayer we had a bus reset so it will handle the UA properly */
2383 scsi_report_bus_reset(ioa_cfg->host,
Wayne Boyer4565e372010-02-19 13:24:07 -08002384 hostrcb->hcam.u.error.fd_res_addr.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
2386
2387 error_index = ipr_get_error(ioasc);
2388
2389 if (!ipr_error_table[error_index].log_hcam)
2390 return;
2391
Brian King49dc6a12006-11-21 10:28:35 -06002392 ipr_hcam_err(hostrcb, "%s\n", ipr_error_table[error_index].error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /* Set indication we have logged an error */
2395 ioa_cfg->errors_logged++;
2396
Brian King933916f2007-03-29 12:43:30 -05002397 if (ioa_cfg->log_level < ipr_error_table[error_index].log_hcam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return;
brking@us.ibm.comcf852032005-11-01 17:00:47 -06002399 if (be32_to_cpu(hostrcb->hcam.length) > sizeof(hostrcb->hcam.u.raw))
2400 hostrcb->hcam.length = cpu_to_be32(sizeof(hostrcb->hcam.u.raw));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 switch (hostrcb->hcam.overlay_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 case IPR_HOST_RCB_OVERLAY_ID_2:
2404 ipr_log_cache_error(ioa_cfg, hostrcb);
2405 break;
2406 case IPR_HOST_RCB_OVERLAY_ID_3:
2407 ipr_log_config_error(ioa_cfg, hostrcb);
2408 break;
2409 case IPR_HOST_RCB_OVERLAY_ID_4:
2410 case IPR_HOST_RCB_OVERLAY_ID_6:
2411 ipr_log_array_error(ioa_cfg, hostrcb);
2412 break;
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06002413 case IPR_HOST_RCB_OVERLAY_ID_7:
2414 ipr_log_dual_ioa_error(ioa_cfg, hostrcb);
2415 break;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06002416 case IPR_HOST_RCB_OVERLAY_ID_12:
2417 ipr_log_enhanced_cache_error(ioa_cfg, hostrcb);
2418 break;
2419 case IPR_HOST_RCB_OVERLAY_ID_13:
2420 ipr_log_enhanced_config_error(ioa_cfg, hostrcb);
2421 break;
2422 case IPR_HOST_RCB_OVERLAY_ID_14:
2423 case IPR_HOST_RCB_OVERLAY_ID_16:
2424 ipr_log_enhanced_array_error(ioa_cfg, hostrcb);
2425 break;
2426 case IPR_HOST_RCB_OVERLAY_ID_17:
2427 ipr_log_enhanced_dual_ioa_error(ioa_cfg, hostrcb);
2428 break;
Brian King49dc6a12006-11-21 10:28:35 -06002429 case IPR_HOST_RCB_OVERLAY_ID_20:
2430 ipr_log_fabric_error(ioa_cfg, hostrcb);
2431 break;
Wayne Boyer4565e372010-02-19 13:24:07 -08002432 case IPR_HOST_RCB_OVERLAY_ID_23:
2433 ipr_log_sis64_config_error(ioa_cfg, hostrcb);
2434 break;
2435 case IPR_HOST_RCB_OVERLAY_ID_24:
2436 case IPR_HOST_RCB_OVERLAY_ID_26:
2437 ipr_log_sis64_array_error(ioa_cfg, hostrcb);
2438 break;
2439 case IPR_HOST_RCB_OVERLAY_ID_30:
2440 ipr_log_sis64_fabric_error(ioa_cfg, hostrcb);
2441 break;
brking@us.ibm.comcf852032005-11-01 17:00:47 -06002442 case IPR_HOST_RCB_OVERLAY_ID_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 case IPR_HOST_RCB_OVERLAY_ID_DEFAULT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 default:
brking@us.ibm.coma9cfca92005-11-01 17:00:41 -06002445 ipr_log_generic_error(ioa_cfg, hostrcb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 break;
2447 }
2448}
2449
2450/**
2451 * ipr_process_error - Op done function for an adapter error log.
2452 * @ipr_cmd: ipr command struct
2453 *
2454 * This function is the op done function for an error log host
2455 * controlled async from the adapter. It will log the error and
2456 * send the HCAM back to the adapter.
2457 *
2458 * Return value:
2459 * none
2460 **/
2461static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
2462{
2463 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2464 struct ipr_hostrcb *hostrcb = ipr_cmd->u.hostrcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07002465 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Wayne Boyer4565e372010-02-19 13:24:07 -08002466 u32 fd_ioasc;
2467
2468 if (ioa_cfg->sis64)
2469 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error64.fd_ioasc);
2470 else
2471 fd_ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 list_del(&hostrcb->queue);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06002474 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
2476 if (!ioasc) {
2477 ipr_handle_log_data(ioa_cfg, hostrcb);
Brian King65f56472007-04-26 16:00:12 -05002478 if (fd_ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED)
2479 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_ABBREV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 } else if (ioasc != IPR_IOASC_IOA_WAS_RESET) {
2481 dev_err(&ioa_cfg->pdev->dev,
2482 "Host RCB failed with IOASC: 0x%08X\n", ioasc);
2483 }
2484
2485 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
2486}
2487
2488/**
2489 * ipr_timeout - An internally generated op has timed out.
2490 * @ipr_cmd: ipr command struct
2491 *
2492 * This function blocks host requests and initiates an
2493 * adapter reset.
2494 *
2495 * Return value:
2496 * none
2497 **/
2498static void ipr_timeout(struct ipr_cmnd *ipr_cmd)
2499{
2500 unsigned long lock_flags = 0;
2501 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2502
2503 ENTER;
2504 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2505
2506 ioa_cfg->errors_logged++;
2507 dev_err(&ioa_cfg->pdev->dev,
2508 "Adapter being reset due to command timeout.\n");
2509
2510 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2511 ioa_cfg->sdt_state = GET_DUMP;
2512
2513 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd)
2514 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2515
2516 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2517 LEAVE;
2518}
2519
2520/**
2521 * ipr_oper_timeout - Adapter timed out transitioning to operational
2522 * @ipr_cmd: ipr command struct
2523 *
2524 * This function blocks host requests and initiates an
2525 * adapter reset.
2526 *
2527 * Return value:
2528 * none
2529 **/
2530static void ipr_oper_timeout(struct ipr_cmnd *ipr_cmd)
2531{
2532 unsigned long lock_flags = 0;
2533 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
2534
2535 ENTER;
2536 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2537
2538 ioa_cfg->errors_logged++;
2539 dev_err(&ioa_cfg->pdev->dev,
2540 "Adapter timed out transitioning to operational.\n");
2541
2542 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
2543 ioa_cfg->sdt_state = GET_DUMP;
2544
2545 if (!ioa_cfg->in_reset_reload || ioa_cfg->reset_cmd == ipr_cmd) {
2546 if (ipr_fastfail)
2547 ioa_cfg->reset_retries += IPR_NUM_RESET_RELOAD_RETRIES;
2548 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
2549 }
2550
2551 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2552 LEAVE;
2553}
2554
2555/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 * ipr_find_ses_entry - Find matching SES in SES table
2557 * @res: resource entry struct of SES
2558 *
2559 * Return value:
2560 * pointer to SES table entry / NULL on failure
2561 **/
2562static const struct ipr_ses_table_entry *
2563ipr_find_ses_entry(struct ipr_resource_entry *res)
2564{
2565 int i, j, matches;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002566 struct ipr_std_inq_vpids *vpids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 const struct ipr_ses_table_entry *ste = ipr_ses_table;
2568
2569 for (i = 0; i < ARRAY_SIZE(ipr_ses_table); i++, ste++) {
2570 for (j = 0, matches = 0; j < IPR_PROD_ID_LEN; j++) {
2571 if (ste->compare_product_id_byte[j] == 'X') {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002572 vpids = &res->std_inq_data.vpids;
2573 if (vpids->product_id[j] == ste->product_id[j])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 matches++;
2575 else
2576 break;
2577 } else
2578 matches++;
2579 }
2580
2581 if (matches == IPR_PROD_ID_LEN)
2582 return ste;
2583 }
2584
2585 return NULL;
2586}
2587
2588/**
2589 * ipr_get_max_scsi_speed - Determine max SCSI speed for a given bus
2590 * @ioa_cfg: ioa config struct
2591 * @bus: SCSI bus
2592 * @bus_width: bus width
2593 *
2594 * Return value:
2595 * SCSI bus speed in units of 100KHz, 1600 is 160 MHz
2596 * For a 2-byte wide SCSI bus, the maximum transfer speed is
2597 * twice the maximum transfer rate (e.g. for a wide enabled bus,
2598 * max 160MHz = max 320MB/sec).
2599 **/
2600static u32 ipr_get_max_scsi_speed(struct ipr_ioa_cfg *ioa_cfg, u8 bus, u8 bus_width)
2601{
2602 struct ipr_resource_entry *res;
2603 const struct ipr_ses_table_entry *ste;
2604 u32 max_xfer_rate = IPR_MAX_SCSI_RATE(bus_width);
2605
2606 /* Loop through each config table entry in the config table buffer */
2607 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002608 if (!(IPR_IS_SES_DEVICE(res->std_inq_data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 continue;
2610
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08002611 if (bus != res->bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 continue;
2613
2614 if (!(ste = ipr_find_ses_entry(res)))
2615 continue;
2616
2617 max_xfer_rate = (ste->max_bus_speed_limit * 10) / (bus_width / 8);
2618 }
2619
2620 return max_xfer_rate;
2621}
2622
2623/**
2624 * ipr_wait_iodbg_ack - Wait for an IODEBUG ACK from the IOA
2625 * @ioa_cfg: ioa config struct
2626 * @max_delay: max delay in micro-seconds to wait
2627 *
2628 * Waits for an IODEBUG ACK from the IOA, doing busy looping.
2629 *
2630 * Return value:
2631 * 0 on success / other on failure
2632 **/
2633static int ipr_wait_iodbg_ack(struct ipr_ioa_cfg *ioa_cfg, int max_delay)
2634{
2635 volatile u32 pcii_reg;
2636 int delay = 1;
2637
2638 /* Read interrupt reg until IOA signals IO Debug Acknowledge */
2639 while (delay < max_delay) {
2640 pcii_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
2641
2642 if (pcii_reg & IPR_PCII_IO_DEBUG_ACKNOWLEDGE)
2643 return 0;
2644
2645 /* udelay cannot be used if delay is more than a few milliseconds */
2646 if ((delay / 1000) > MAX_UDELAY_MS)
2647 mdelay(delay / 1000);
2648 else
2649 udelay(delay);
2650
2651 delay += delay;
2652 }
2653 return -EIO;
2654}
2655
2656/**
Wayne Boyerdcbad002010-02-19 13:24:14 -08002657 * ipr_get_sis64_dump_data_section - Dump IOA memory
2658 * @ioa_cfg: ioa config struct
2659 * @start_addr: adapter address to dump
2660 * @dest: destination kernel buffer
2661 * @length_in_words: length to dump in 4 byte words
2662 *
2663 * Return value:
2664 * 0 on success
2665 **/
2666static int ipr_get_sis64_dump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2667 u32 start_addr,
2668 __be32 *dest, u32 length_in_words)
2669{
2670 int i;
2671
2672 for (i = 0; i < length_in_words; i++) {
2673 writel(start_addr+(i*4), ioa_cfg->regs.dump_addr_reg);
2674 *dest = cpu_to_be32(readl(ioa_cfg->regs.dump_data_reg));
2675 dest++;
2676 }
2677
2678 return 0;
2679}
2680
2681/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 * ipr_get_ldump_data_section - Dump IOA memory
2683 * @ioa_cfg: ioa config struct
2684 * @start_addr: adapter address to dump
2685 * @dest: destination kernel buffer
2686 * @length_in_words: length to dump in 4 byte words
2687 *
2688 * Return value:
2689 * 0 on success / -EIO on failure
2690 **/
2691static int ipr_get_ldump_data_section(struct ipr_ioa_cfg *ioa_cfg,
2692 u32 start_addr,
2693 __be32 *dest, u32 length_in_words)
2694{
2695 volatile u32 temp_pcii_reg;
2696 int i, delay = 0;
2697
Wayne Boyerdcbad002010-02-19 13:24:14 -08002698 if (ioa_cfg->sis64)
2699 return ipr_get_sis64_dump_data_section(ioa_cfg, start_addr,
2700 dest, length_in_words);
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 /* Write IOA interrupt reg starting LDUMP state */
2703 writel((IPR_UPROCI_RESET_ALERT | IPR_UPROCI_IO_DEBUG_ALERT),
Wayne Boyer214777b2010-02-19 13:24:26 -08002704 ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 /* Wait for IO debug acknowledge */
2707 if (ipr_wait_iodbg_ack(ioa_cfg,
2708 IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC)) {
2709 dev_err(&ioa_cfg->pdev->dev,
2710 "IOA dump long data transfer timeout\n");
2711 return -EIO;
2712 }
2713
2714 /* Signal LDUMP interlocked - clear IO debug ack */
2715 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2716 ioa_cfg->regs.clr_interrupt_reg);
2717
2718 /* Write Mailbox with starting address */
2719 writel(start_addr, ioa_cfg->ioa_mailbox);
2720
2721 /* Signal address valid - clear IOA Reset alert */
2722 writel(IPR_UPROCI_RESET_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002723 ioa_cfg->regs.clr_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
2725 for (i = 0; i < length_in_words; i++) {
2726 /* Wait for IO debug acknowledge */
2727 if (ipr_wait_iodbg_ack(ioa_cfg,
2728 IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC)) {
2729 dev_err(&ioa_cfg->pdev->dev,
2730 "IOA dump short data transfer timeout\n");
2731 return -EIO;
2732 }
2733
2734 /* Read data from mailbox and increment destination pointer */
2735 *dest = cpu_to_be32(readl(ioa_cfg->ioa_mailbox));
2736 dest++;
2737
2738 /* For all but the last word of data, signal data received */
2739 if (i < (length_in_words - 1)) {
2740 /* Signal dump data received - Clear IO debug Ack */
2741 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2742 ioa_cfg->regs.clr_interrupt_reg);
2743 }
2744 }
2745
2746 /* Signal end of block transfer. Set reset alert then clear IO debug ack */
2747 writel(IPR_UPROCI_RESET_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002748 ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 writel(IPR_UPROCI_IO_DEBUG_ALERT,
Wayne Boyer214777b2010-02-19 13:24:26 -08002751 ioa_cfg->regs.clr_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 /* Signal dump data received - Clear IO debug Ack */
2754 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE,
2755 ioa_cfg->regs.clr_interrupt_reg);
2756
2757 /* Wait for IOA to signal LDUMP exit - IOA reset alert will be cleared */
2758 while (delay < IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC) {
2759 temp_pcii_reg =
Wayne Boyer214777b2010-02-19 13:24:26 -08002760 readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 if (!(temp_pcii_reg & IPR_UPROCI_RESET_ALERT))
2763 return 0;
2764
2765 udelay(10);
2766 delay += 10;
2767 }
2768
2769 return 0;
2770}
2771
2772#ifdef CONFIG_SCSI_IPR_DUMP
2773/**
2774 * ipr_sdt_copy - Copy Smart Dump Table to kernel buffer
2775 * @ioa_cfg: ioa config struct
2776 * @pci_address: adapter address
2777 * @length: length of data to copy
2778 *
2779 * Copy data from PCI adapter to kernel buffer.
2780 * Note: length MUST be a 4 byte multiple
2781 * Return value:
2782 * 0 on success / other on failure
2783 **/
2784static int ipr_sdt_copy(struct ipr_ioa_cfg *ioa_cfg,
2785 unsigned long pci_address, u32 length)
2786{
2787 int bytes_copied = 0;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002788 int cur_len, rc, rem_len, rem_page_len, max_dump_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 __be32 *page;
2790 unsigned long lock_flags = 0;
2791 struct ipr_ioa_dump *ioa_dump = &ioa_cfg->dump->ioa_dump;
2792
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002793 if (ioa_cfg->sis64)
2794 max_dump_size = IPR_FMT3_MAX_IOA_DUMP_SIZE;
2795 else
2796 max_dump_size = IPR_FMT2_MAX_IOA_DUMP_SIZE;
2797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 while (bytes_copied < length &&
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002799 (ioa_dump->hdr.len + bytes_copied) < max_dump_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (ioa_dump->page_offset >= PAGE_SIZE ||
2801 ioa_dump->page_offset == 0) {
2802 page = (__be32 *)__get_free_page(GFP_ATOMIC);
2803
2804 if (!page) {
2805 ipr_trace;
2806 return bytes_copied;
2807 }
2808
2809 ioa_dump->page_offset = 0;
2810 ioa_dump->ioa_data[ioa_dump->next_page_index] = page;
2811 ioa_dump->next_page_index++;
2812 } else
2813 page = ioa_dump->ioa_data[ioa_dump->next_page_index - 1];
2814
2815 rem_len = length - bytes_copied;
2816 rem_page_len = PAGE_SIZE - ioa_dump->page_offset;
2817 cur_len = min(rem_len, rem_page_len);
2818
2819 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2820 if (ioa_cfg->sdt_state == ABORT_DUMP) {
2821 rc = -EIO;
2822 } else {
2823 rc = ipr_get_ldump_data_section(ioa_cfg,
2824 pci_address + bytes_copied,
2825 &page[ioa_dump->page_offset / 4],
2826 (cur_len / sizeof(u32)));
2827 }
2828 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2829
2830 if (!rc) {
2831 ioa_dump->page_offset += cur_len;
2832 bytes_copied += cur_len;
2833 } else {
2834 ipr_trace;
2835 break;
2836 }
2837 schedule();
2838 }
2839
2840 return bytes_copied;
2841}
2842
2843/**
2844 * ipr_init_dump_entry_hdr - Initialize a dump entry header.
2845 * @hdr: dump entry header struct
2846 *
2847 * Return value:
2848 * nothing
2849 **/
2850static void ipr_init_dump_entry_hdr(struct ipr_dump_entry_header *hdr)
2851{
2852 hdr->eye_catcher = IPR_DUMP_EYE_CATCHER;
2853 hdr->num_elems = 1;
2854 hdr->offset = sizeof(*hdr);
2855 hdr->status = IPR_DUMP_STATUS_SUCCESS;
2856}
2857
2858/**
2859 * ipr_dump_ioa_type_data - Fill in the adapter type in the dump.
2860 * @ioa_cfg: ioa config struct
2861 * @driver_dump: driver dump struct
2862 *
2863 * Return value:
2864 * nothing
2865 **/
2866static void ipr_dump_ioa_type_data(struct ipr_ioa_cfg *ioa_cfg,
2867 struct ipr_driver_dump *driver_dump)
2868{
2869 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
2870
2871 ipr_init_dump_entry_hdr(&driver_dump->ioa_type_entry.hdr);
2872 driver_dump->ioa_type_entry.hdr.len =
2873 sizeof(struct ipr_dump_ioa_type_entry) -
2874 sizeof(struct ipr_dump_entry_header);
2875 driver_dump->ioa_type_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2876 driver_dump->ioa_type_entry.hdr.id = IPR_DUMP_DRIVER_TYPE_ID;
2877 driver_dump->ioa_type_entry.type = ioa_cfg->type;
2878 driver_dump->ioa_type_entry.fw_version = (ucode_vpd->major_release << 24) |
2879 (ucode_vpd->card_type << 16) | (ucode_vpd->minor_release[0] << 8) |
2880 ucode_vpd->minor_release[1];
2881 driver_dump->hdr.num_entries++;
2882}
2883
2884/**
2885 * ipr_dump_version_data - Fill in the driver version in the dump.
2886 * @ioa_cfg: ioa config struct
2887 * @driver_dump: driver dump struct
2888 *
2889 * Return value:
2890 * nothing
2891 **/
2892static void ipr_dump_version_data(struct ipr_ioa_cfg *ioa_cfg,
2893 struct ipr_driver_dump *driver_dump)
2894{
2895 ipr_init_dump_entry_hdr(&driver_dump->version_entry.hdr);
2896 driver_dump->version_entry.hdr.len =
2897 sizeof(struct ipr_dump_version_entry) -
2898 sizeof(struct ipr_dump_entry_header);
2899 driver_dump->version_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
2900 driver_dump->version_entry.hdr.id = IPR_DUMP_DRIVER_VERSION_ID;
2901 strcpy(driver_dump->version_entry.version, IPR_DRIVER_VERSION);
2902 driver_dump->hdr.num_entries++;
2903}
2904
2905/**
2906 * ipr_dump_trace_data - Fill in the IOA trace in the dump.
2907 * @ioa_cfg: ioa config struct
2908 * @driver_dump: driver dump struct
2909 *
2910 * Return value:
2911 * nothing
2912 **/
2913static void ipr_dump_trace_data(struct ipr_ioa_cfg *ioa_cfg,
2914 struct ipr_driver_dump *driver_dump)
2915{
2916 ipr_init_dump_entry_hdr(&driver_dump->trace_entry.hdr);
2917 driver_dump->trace_entry.hdr.len =
2918 sizeof(struct ipr_dump_trace_entry) -
2919 sizeof(struct ipr_dump_entry_header);
2920 driver_dump->trace_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
2921 driver_dump->trace_entry.hdr.id = IPR_DUMP_TRACE_ID;
2922 memcpy(driver_dump->trace_entry.trace, ioa_cfg->trace, IPR_TRACE_SIZE);
2923 driver_dump->hdr.num_entries++;
2924}
2925
2926/**
2927 * ipr_dump_location_data - Fill in the IOA location in the dump.
2928 * @ioa_cfg: ioa config struct
2929 * @driver_dump: driver dump struct
2930 *
2931 * Return value:
2932 * nothing
2933 **/
2934static void ipr_dump_location_data(struct ipr_ioa_cfg *ioa_cfg,
2935 struct ipr_driver_dump *driver_dump)
2936{
2937 ipr_init_dump_entry_hdr(&driver_dump->location_entry.hdr);
2938 driver_dump->location_entry.hdr.len =
2939 sizeof(struct ipr_dump_location_entry) -
2940 sizeof(struct ipr_dump_entry_header);
2941 driver_dump->location_entry.hdr.data_type = IPR_DUMP_DATA_TYPE_ASCII;
2942 driver_dump->location_entry.hdr.id = IPR_DUMP_LOCATION_ID;
Kay Sievers71610f52008-12-03 22:41:36 +01002943 strcpy(driver_dump->location_entry.location, dev_name(&ioa_cfg->pdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 driver_dump->hdr.num_entries++;
2945}
2946
2947/**
2948 * ipr_get_ioa_dump - Perform a dump of the driver and adapter.
2949 * @ioa_cfg: ioa config struct
2950 * @dump: dump struct
2951 *
2952 * Return value:
2953 * nothing
2954 **/
2955static void ipr_get_ioa_dump(struct ipr_ioa_cfg *ioa_cfg, struct ipr_dump *dump)
2956{
2957 unsigned long start_addr, sdt_word;
2958 unsigned long lock_flags = 0;
2959 struct ipr_driver_dump *driver_dump = &dump->driver_dump;
2960 struct ipr_ioa_dump *ioa_dump = &dump->ioa_dump;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03002961 u32 num_entries, max_num_entries, start_off, end_off;
2962 u32 max_dump_size, bytes_to_copy, bytes_copied, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 struct ipr_sdt *sdt;
Wayne Boyerdcbad002010-02-19 13:24:14 -08002964 int valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 int i;
2966
2967 ENTER;
2968
2969 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2970
Brian King41e9a692011-09-21 08:51:11 -05002971 if (ioa_cfg->sdt_state != READ_DUMP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2973 return;
2974 }
2975
Wayne Boyer110def82010-11-04 09:36:16 -07002976 if (ioa_cfg->sis64) {
2977 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2978 ssleep(IPR_DUMP_DELAY_SECONDS);
2979 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
2980 }
2981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 start_addr = readl(ioa_cfg->ioa_mailbox);
2983
Wayne Boyerdcbad002010-02-19 13:24:14 -08002984 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(start_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 dev_err(&ioa_cfg->pdev->dev,
2986 "Invalid dump table format: %lx\n", start_addr);
2987 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
2988 return;
2989 }
2990
2991 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA initiated\n");
2992
2993 driver_dump->hdr.eye_catcher = IPR_DUMP_EYE_CATCHER;
2994
2995 /* Initialize the overall dump header */
2996 driver_dump->hdr.len = sizeof(struct ipr_driver_dump);
2997 driver_dump->hdr.num_entries = 1;
2998 driver_dump->hdr.first_entry_offset = sizeof(struct ipr_dump_header);
2999 driver_dump->hdr.status = IPR_DUMP_STATUS_SUCCESS;
3000 driver_dump->hdr.os = IPR_DUMP_OS_LINUX;
3001 driver_dump->hdr.driver_name = IPR_DUMP_DRIVER_NAME;
3002
3003 ipr_dump_version_data(ioa_cfg, driver_dump);
3004 ipr_dump_location_data(ioa_cfg, driver_dump);
3005 ipr_dump_ioa_type_data(ioa_cfg, driver_dump);
3006 ipr_dump_trace_data(ioa_cfg, driver_dump);
3007
3008 /* Update dump_header */
3009 driver_dump->hdr.len += sizeof(struct ipr_dump_entry_header);
3010
3011 /* IOA Dump entry */
3012 ipr_init_dump_entry_hdr(&ioa_dump->hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 ioa_dump->hdr.len = 0;
3014 ioa_dump->hdr.data_type = IPR_DUMP_DATA_TYPE_BINARY;
3015 ioa_dump->hdr.id = IPR_DUMP_IOA_DUMP_ID;
3016
3017 /* First entries in sdt are actually a list of dump addresses and
3018 lengths to gather the real dump data. sdt represents the pointer
3019 to the ioa generated dump table. Dump data will be extracted based
3020 on entries in this table */
3021 sdt = &ioa_dump->sdt;
3022
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003023 if (ioa_cfg->sis64) {
3024 max_num_entries = IPR_FMT3_NUM_SDT_ENTRIES;
3025 max_dump_size = IPR_FMT3_MAX_IOA_DUMP_SIZE;
3026 } else {
3027 max_num_entries = IPR_FMT2_NUM_SDT_ENTRIES;
3028 max_dump_size = IPR_FMT2_MAX_IOA_DUMP_SIZE;
3029 }
3030
3031 bytes_to_copy = offsetof(struct ipr_sdt, entry) +
3032 (max_num_entries * sizeof(struct ipr_sdt_entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 rc = ipr_get_ldump_data_section(ioa_cfg, start_addr, (__be32 *)sdt,
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003034 bytes_to_copy / sizeof(__be32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 /* Smart Dump table is ready to use and the first entry is valid */
Wayne Boyerdcbad002010-02-19 13:24:14 -08003037 if (rc || ((be32_to_cpu(sdt->hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
3038 (be32_to_cpu(sdt->hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 dev_err(&ioa_cfg->pdev->dev,
3040 "Dump of IOA failed. Dump table not valid: %d, %X.\n",
3041 rc, be32_to_cpu(sdt->hdr.state));
3042 driver_dump->hdr.status = IPR_DUMP_STATUS_FAILED;
3043 ioa_cfg->sdt_state = DUMP_OBTAINED;
3044 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3045 return;
3046 }
3047
3048 num_entries = be32_to_cpu(sdt->hdr.num_entries_used);
3049
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003050 if (num_entries > max_num_entries)
3051 num_entries = max_num_entries;
3052
3053 /* Update dump length to the actual data to be copied */
3054 dump->driver_dump.hdr.len += sizeof(struct ipr_sdt_header);
3055 if (ioa_cfg->sis64)
3056 dump->driver_dump.hdr.len += num_entries * sizeof(struct ipr_sdt_entry);
3057 else
3058 dump->driver_dump.hdr.len += max_num_entries * sizeof(struct ipr_sdt_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3061
3062 for (i = 0; i < num_entries; i++) {
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003063 if (ioa_dump->hdr.len > max_dump_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3065 break;
3066 }
3067
3068 if (sdt->entry[i].flags & IPR_SDT_VALID_ENTRY) {
Wayne Boyerdcbad002010-02-19 13:24:14 -08003069 sdt_word = be32_to_cpu(sdt->entry[i].start_token);
3070 if (ioa_cfg->sis64)
3071 bytes_to_copy = be32_to_cpu(sdt->entry[i].end_token);
3072 else {
3073 start_off = sdt_word & IPR_FMT2_MBX_ADDR_MASK;
3074 end_off = be32_to_cpu(sdt->entry[i].end_token);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Wayne Boyerdcbad002010-02-19 13:24:14 -08003076 if (ipr_sdt_is_fmt2(sdt_word) && sdt_word)
3077 bytes_to_copy = end_off - start_off;
3078 else
3079 valid = 0;
3080 }
3081 if (valid) {
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003082 if (bytes_to_copy > max_dump_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 sdt->entry[i].flags &= ~IPR_SDT_VALID_ENTRY;
3084 continue;
3085 }
3086
3087 /* Copy data from adapter to driver buffers */
3088 bytes_copied = ipr_sdt_copy(ioa_cfg, sdt_word,
3089 bytes_to_copy);
3090
3091 ioa_dump->hdr.len += bytes_copied;
3092
3093 if (bytes_copied != bytes_to_copy) {
3094 driver_dump->hdr.status = IPR_DUMP_STATUS_QUAL_SUCCESS;
3095 break;
3096 }
3097 }
3098 }
3099 }
3100
3101 dev_err(&ioa_cfg->pdev->dev, "Dump of IOA completed.\n");
3102
3103 /* Update dump_header */
3104 driver_dump->hdr.len += ioa_dump->hdr.len;
3105 wmb();
3106 ioa_cfg->sdt_state = DUMP_OBTAINED;
3107 LEAVE;
3108}
3109
3110#else
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003111#define ipr_get_ioa_dump(ioa_cfg, dump) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112#endif
3113
3114/**
3115 * ipr_release_dump - Free adapter dump memory
3116 * @kref: kref struct
3117 *
3118 * Return value:
3119 * nothing
3120 **/
3121static void ipr_release_dump(struct kref *kref)
3122{
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003123 struct ipr_dump *dump = container_of(kref, struct ipr_dump, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 struct ipr_ioa_cfg *ioa_cfg = dump->ioa_cfg;
3125 unsigned long lock_flags = 0;
3126 int i;
3127
3128 ENTER;
3129 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3130 ioa_cfg->dump = NULL;
3131 ioa_cfg->sdt_state = INACTIVE;
3132 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3133
3134 for (i = 0; i < dump->ioa_dump.next_page_index; i++)
3135 free_page((unsigned long) dump->ioa_dump.ioa_data[i]);
3136
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03003137 vfree(dump->ioa_dump.ioa_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 kfree(dump);
3139 LEAVE;
3140}
3141
3142/**
3143 * ipr_worker_thread - Worker thread
David Howellsc4028952006-11-22 14:57:56 +00003144 * @work: ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 *
3146 * Called at task level from a work thread. This function takes care
3147 * of adding and removing device from the mid-layer as configuration
3148 * changes are detected by the adapter.
3149 *
3150 * Return value:
3151 * nothing
3152 **/
David Howellsc4028952006-11-22 14:57:56 +00003153static void ipr_worker_thread(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
3155 unsigned long lock_flags;
3156 struct ipr_resource_entry *res;
3157 struct scsi_device *sdev;
3158 struct ipr_dump *dump;
David Howellsc4028952006-11-22 14:57:56 +00003159 struct ipr_ioa_cfg *ioa_cfg =
3160 container_of(work, struct ipr_ioa_cfg, work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 u8 bus, target, lun;
3162 int did_work;
3163
3164 ENTER;
3165 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3166
Brian King41e9a692011-09-21 08:51:11 -05003167 if (ioa_cfg->sdt_state == READ_DUMP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 dump = ioa_cfg->dump;
3169 if (!dump) {
3170 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3171 return;
3172 }
3173 kref_get(&dump->kref);
3174 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3175 ipr_get_ioa_dump(ioa_cfg, dump);
3176 kref_put(&dump->kref, ipr_release_dump);
3177
3178 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Brian King4c647e92011-10-15 09:08:56 -05003179 if (ioa_cfg->sdt_state == DUMP_OBTAINED && !ioa_cfg->dump_timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3181 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3182 return;
3183 }
3184
3185restart:
3186 do {
3187 did_work = 0;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003188 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds ||
3189 !ioa_cfg->allow_ml_add_del) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3191 return;
3192 }
3193
3194 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3195 if (res->del_from_ml && res->sdev) {
3196 did_work = 1;
3197 sdev = res->sdev;
3198 if (!scsi_device_get(sdev)) {
Kleber Sacilotto de Souza5767a1c2011-02-14 20:19:31 -02003199 if (!res->add_to_ml)
3200 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
3201 else
3202 res->del_from_ml = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3204 scsi_remove_device(sdev);
3205 scsi_device_put(sdev);
3206 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3207 }
3208 break;
3209 }
3210 }
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003211 } while (did_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
3214 if (res->add_to_ml) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08003215 bus = res->bus;
3216 target = res->target;
3217 lun = res->lun;
Brian King1121b792006-03-29 09:37:16 -06003218 res->add_to_ml = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3220 scsi_add_device(ioa_cfg->host, bus, target, lun);
3221 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3222 goto restart;
3223 }
3224 }
3225
3226 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Tony Jonesee959b02008-02-22 00:13:36 +01003227 kobject_uevent(&ioa_cfg->host->shost_dev.kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 LEAVE;
3229}
3230
3231#ifdef CONFIG_SCSI_IPR_TRACE
3232/**
3233 * ipr_read_trace - Dump the adapter trace
Chris Wright2c3c8be2010-05-12 18:28:57 -07003234 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08003236 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 * @buf: buffer
3238 * @off: offset
3239 * @count: buffer size
3240 *
3241 * Return value:
3242 * number of bytes printed to buffer
3243 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003244static ssize_t ipr_read_trace(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08003245 struct bin_attribute *bin_attr,
3246 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
Tony Jonesee959b02008-02-22 00:13:36 +01003248 struct device *dev = container_of(kobj, struct device, kobj);
3249 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3251 unsigned long lock_flags = 0;
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003252 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003255 ret = memory_read_from_buffer(buf, count, &off, ioa_cfg->trace,
3256 IPR_TRACE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Akinobu Mitad777aaf2008-09-22 14:56:47 -07003258
3259 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260}
3261
3262static struct bin_attribute ipr_trace_attr = {
3263 .attr = {
3264 .name = "trace",
3265 .mode = S_IRUGO,
3266 },
3267 .size = 0,
3268 .read = ipr_read_trace,
3269};
3270#endif
3271
3272/**
3273 * ipr_show_fw_version - Show the firmware version
Tony Jonesee959b02008-02-22 00:13:36 +01003274 * @dev: class device struct
3275 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 *
3277 * Return value:
3278 * number of bytes printed to buffer
3279 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003280static ssize_t ipr_show_fw_version(struct device *dev,
3281 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Tony Jonesee959b02008-02-22 00:13:36 +01003283 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3285 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
3286 unsigned long lock_flags = 0;
3287 int len;
3288
3289 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3290 len = snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X\n",
3291 ucode_vpd->major_release, ucode_vpd->card_type,
3292 ucode_vpd->minor_release[0],
3293 ucode_vpd->minor_release[1]);
3294 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3295 return len;
3296}
3297
Tony Jonesee959b02008-02-22 00:13:36 +01003298static struct device_attribute ipr_fw_version_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 .attr = {
3300 .name = "fw_version",
3301 .mode = S_IRUGO,
3302 },
3303 .show = ipr_show_fw_version,
3304};
3305
3306/**
3307 * ipr_show_log_level - Show the adapter's error logging level
Tony Jonesee959b02008-02-22 00:13:36 +01003308 * @dev: class device struct
3309 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 *
3311 * Return value:
3312 * number of bytes printed to buffer
3313 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003314static ssize_t ipr_show_log_level(struct device *dev,
3315 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
Tony Jonesee959b02008-02-22 00:13:36 +01003317 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3319 unsigned long lock_flags = 0;
3320 int len;
3321
3322 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3323 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->log_level);
3324 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3325 return len;
3326}
3327
3328/**
3329 * ipr_store_log_level - Change the adapter's error logging level
Tony Jonesee959b02008-02-22 00:13:36 +01003330 * @dev: class device struct
3331 * @buf: buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 *
3333 * Return value:
3334 * number of bytes printed to buffer
3335 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003336static ssize_t ipr_store_log_level(struct device *dev,
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003337 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 const char *buf, size_t count)
3339{
Tony Jonesee959b02008-02-22 00:13:36 +01003340 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3342 unsigned long lock_flags = 0;
3343
3344 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3345 ioa_cfg->log_level = simple_strtoul(buf, NULL, 10);
3346 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3347 return strlen(buf);
3348}
3349
Tony Jonesee959b02008-02-22 00:13:36 +01003350static struct device_attribute ipr_log_level_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 .attr = {
3352 .name = "log_level",
3353 .mode = S_IRUGO | S_IWUSR,
3354 },
3355 .show = ipr_show_log_level,
3356 .store = ipr_store_log_level
3357};
3358
3359/**
3360 * ipr_store_diagnostics - IOA Diagnostics interface
Tony Jonesee959b02008-02-22 00:13:36 +01003361 * @dev: device struct
3362 * @buf: buffer
3363 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 *
3365 * This function will reset the adapter and wait a reasonable
3366 * amount of time for any errors that the adapter might log.
3367 *
3368 * Return value:
3369 * count on success / other on failure
3370 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003371static ssize_t ipr_store_diagnostics(struct device *dev,
3372 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 const char *buf, size_t count)
3374{
Tony Jonesee959b02008-02-22 00:13:36 +01003375 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3377 unsigned long lock_flags = 0;
3378 int rc = count;
3379
3380 if (!capable(CAP_SYS_ADMIN))
3381 return -EACCES;
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003384 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -05003385 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3386 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3387 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3388 }
3389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 ioa_cfg->errors_logged = 0;
3391 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3392
3393 if (ioa_cfg->in_reset_reload) {
3394 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3395 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3396
3397 /* Wait for a second for any errors to be logged */
3398 msleep(1000);
3399 } else {
3400 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3401 return -EIO;
3402 }
3403
3404 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3405 if (ioa_cfg->in_reset_reload || ioa_cfg->errors_logged)
3406 rc = -EIO;
3407 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3408
3409 return rc;
3410}
3411
Tony Jonesee959b02008-02-22 00:13:36 +01003412static struct device_attribute ipr_diagnostics_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 .attr = {
3414 .name = "run_diagnostics",
3415 .mode = S_IWUSR,
3416 },
3417 .store = ipr_store_diagnostics
3418};
3419
3420/**
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003421 * ipr_show_adapter_state - Show the adapter's state
Tony Jonesee959b02008-02-22 00:13:36 +01003422 * @class_dev: device struct
3423 * @buf: buffer
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003424 *
3425 * Return value:
3426 * number of bytes printed to buffer
3427 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003428static ssize_t ipr_show_adapter_state(struct device *dev,
3429 struct device_attribute *attr, char *buf)
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003430{
Tony Jonesee959b02008-02-22 00:13:36 +01003431 struct Scsi_Host *shost = class_to_shost(dev);
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003432 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3433 unsigned long lock_flags = 0;
3434 int len;
3435
3436 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003437 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003438 len = snprintf(buf, PAGE_SIZE, "offline\n");
3439 else
3440 len = snprintf(buf, PAGE_SIZE, "online\n");
3441 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3442 return len;
3443}
3444
3445/**
3446 * ipr_store_adapter_state - Change adapter state
Tony Jonesee959b02008-02-22 00:13:36 +01003447 * @dev: device struct
3448 * @buf: buffer
3449 * @count: buffer size
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003450 *
3451 * This function will change the adapter's state.
3452 *
3453 * Return value:
3454 * count on success / other on failure
3455 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003456static ssize_t ipr_store_adapter_state(struct device *dev,
3457 struct device_attribute *attr,
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003458 const char *buf, size_t count)
3459{
Tony Jonesee959b02008-02-22 00:13:36 +01003460 struct Scsi_Host *shost = class_to_shost(dev);
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003461 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3462 unsigned long lock_flags;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003463 int result = count, i;
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003464
3465 if (!capable(CAP_SYS_ADMIN))
3466 return -EACCES;
3467
3468 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06003469 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead &&
3470 !strncmp(buf, "online", 6)) {
3471 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
3472 spin_lock(&ioa_cfg->hrrq[i]._lock);
3473 ioa_cfg->hrrq[i].ioa_is_dead = 0;
3474 spin_unlock(&ioa_cfg->hrrq[i]._lock);
3475 }
3476 wmb();
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003477 ioa_cfg->reset_retries = 0;
3478 ioa_cfg->in_ioa_bringdown = 0;
3479 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
3480 }
3481 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3482 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3483
3484 return result;
3485}
3486
Tony Jonesee959b02008-02-22 00:13:36 +01003487static struct device_attribute ipr_ioa_state_attr = {
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003488 .attr = {
Brian King49dd0962008-04-28 17:36:20 -05003489 .name = "online_state",
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003490 .mode = S_IRUGO | S_IWUSR,
3491 },
3492 .show = ipr_show_adapter_state,
3493 .store = ipr_store_adapter_state
3494};
3495
3496/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 * ipr_store_reset_adapter - Reset the adapter
Tony Jonesee959b02008-02-22 00:13:36 +01003498 * @dev: device struct
3499 * @buf: buffer
3500 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 *
3502 * This function will reset the adapter.
3503 *
3504 * Return value:
3505 * count on success / other on failure
3506 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003507static ssize_t ipr_store_reset_adapter(struct device *dev,
3508 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 const char *buf, size_t count)
3510{
Tony Jonesee959b02008-02-22 00:13:36 +01003511 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3513 unsigned long lock_flags;
3514 int result = count;
3515
3516 if (!capable(CAP_SYS_ADMIN))
3517 return -EACCES;
3518
3519 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3520 if (!ioa_cfg->in_reset_reload)
3521 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3522 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3523 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3524
3525 return result;
3526}
3527
Tony Jonesee959b02008-02-22 00:13:36 +01003528static struct device_attribute ipr_ioa_reset_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 .attr = {
3530 .name = "reset_host",
3531 .mode = S_IWUSR,
3532 },
3533 .store = ipr_store_reset_adapter
3534};
3535
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003536static int ipr_iopoll(struct blk_iopoll *iop, int budget);
3537 /**
3538 * ipr_show_iopoll_weight - Show ipr polling mode
3539 * @dev: class device struct
3540 * @buf: buffer
3541 *
3542 * Return value:
3543 * number of bytes printed to buffer
3544 **/
3545static ssize_t ipr_show_iopoll_weight(struct device *dev,
3546 struct device_attribute *attr, char *buf)
3547{
3548 struct Scsi_Host *shost = class_to_shost(dev);
3549 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3550 unsigned long lock_flags = 0;
3551 int len;
3552
3553 spin_lock_irqsave(shost->host_lock, lock_flags);
3554 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->iopoll_weight);
3555 spin_unlock_irqrestore(shost->host_lock, lock_flags);
3556
3557 return len;
3558}
3559
3560/**
3561 * ipr_store_iopoll_weight - Change the adapter's polling mode
3562 * @dev: class device struct
3563 * @buf: buffer
3564 *
3565 * Return value:
3566 * number of bytes printed to buffer
3567 **/
3568static ssize_t ipr_store_iopoll_weight(struct device *dev,
3569 struct device_attribute *attr,
3570 const char *buf, size_t count)
3571{
3572 struct Scsi_Host *shost = class_to_shost(dev);
3573 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3574 unsigned long user_iopoll_weight;
3575 unsigned long lock_flags = 0;
3576 int i;
3577
3578 if (!ioa_cfg->sis64) {
3579 dev_info(&ioa_cfg->pdev->dev, "blk-iopoll not supported on this adapter\n");
3580 return -EINVAL;
3581 }
3582 if (kstrtoul(buf, 10, &user_iopoll_weight))
3583 return -EINVAL;
3584
3585 if (user_iopoll_weight > 256) {
3586 dev_info(&ioa_cfg->pdev->dev, "Invalid blk-iopoll weight. It must be less than 256\n");
3587 return -EINVAL;
3588 }
3589
3590 if (user_iopoll_weight == ioa_cfg->iopoll_weight) {
3591 dev_info(&ioa_cfg->pdev->dev, "Current blk-iopoll weight has the same weight\n");
3592 return strlen(buf);
3593 }
3594
3595 if (blk_iopoll_enabled && ioa_cfg->iopoll_weight &&
3596 ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
3597 for (i = 1; i < ioa_cfg->hrrq_num; i++)
3598 blk_iopoll_disable(&ioa_cfg->hrrq[i].iopoll);
3599 }
3600
3601 spin_lock_irqsave(shost->host_lock, lock_flags);
3602 ioa_cfg->iopoll_weight = user_iopoll_weight;
3603 if (blk_iopoll_enabled && ioa_cfg->iopoll_weight &&
3604 ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
3605 for (i = 1; i < ioa_cfg->hrrq_num; i++) {
3606 blk_iopoll_init(&ioa_cfg->hrrq[i].iopoll,
3607 ioa_cfg->iopoll_weight, ipr_iopoll);
3608 blk_iopoll_enable(&ioa_cfg->hrrq[i].iopoll);
3609 }
3610 }
3611 spin_unlock_irqrestore(shost->host_lock, lock_flags);
3612
3613 return strlen(buf);
3614}
3615
3616static struct device_attribute ipr_iopoll_weight_attr = {
3617 .attr = {
3618 .name = "iopoll_weight",
3619 .mode = S_IRUGO | S_IWUSR,
3620 },
3621 .show = ipr_show_iopoll_weight,
3622 .store = ipr_store_iopoll_weight
3623};
3624
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625/**
3626 * ipr_alloc_ucode_buffer - Allocates a microcode download buffer
3627 * @buf_len: buffer length
3628 *
3629 * Allocates a DMA'able buffer in chunks and assembles a scatter/gather
3630 * list to use for microcode download
3631 *
3632 * Return value:
3633 * pointer to sglist / NULL on failure
3634 **/
3635static struct ipr_sglist *ipr_alloc_ucode_buffer(int buf_len)
3636{
3637 int sg_size, order, bsize_elem, num_elem, i, j;
3638 struct ipr_sglist *sglist;
3639 struct scatterlist *scatterlist;
3640 struct page *page;
3641
3642 /* Get the minimum size per scatter/gather element */
3643 sg_size = buf_len / (IPR_MAX_SGLIST - 1);
3644
3645 /* Get the actual size per element */
3646 order = get_order(sg_size);
3647
3648 /* Determine the actual number of bytes per element */
3649 bsize_elem = PAGE_SIZE * (1 << order);
3650
3651 /* Determine the actual number of sg entries needed */
3652 if (buf_len % bsize_elem)
3653 num_elem = (buf_len / bsize_elem) + 1;
3654 else
3655 num_elem = buf_len / bsize_elem;
3656
3657 /* Allocate a scatter/gather list for the DMA */
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06003658 sglist = kzalloc(sizeof(struct ipr_sglist) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 (sizeof(struct scatterlist) * (num_elem - 1)),
3660 GFP_KERNEL);
3661
3662 if (sglist == NULL) {
3663 ipr_trace;
3664 return NULL;
3665 }
3666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 scatterlist = sglist->scatterlist;
Jens Axboe45711f12007-10-22 21:19:53 +02003668 sg_init_table(scatterlist, num_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
3670 sglist->order = order;
3671 sglist->num_sg = num_elem;
3672
3673 /* Allocate a bunch of sg elements */
3674 for (i = 0; i < num_elem; i++) {
3675 page = alloc_pages(GFP_KERNEL, order);
3676 if (!page) {
3677 ipr_trace;
3678
3679 /* Free up what we already allocated */
3680 for (j = i - 1; j >= 0; j--)
Jens Axboe45711f12007-10-22 21:19:53 +02003681 __free_pages(sg_page(&scatterlist[j]), order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 kfree(sglist);
3683 return NULL;
3684 }
3685
Jens Axboe642f1492007-10-24 11:20:47 +02003686 sg_set_page(&scatterlist[i], page, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 }
3688
3689 return sglist;
3690}
3691
3692/**
3693 * ipr_free_ucode_buffer - Frees a microcode download buffer
3694 * @p_dnld: scatter/gather list pointer
3695 *
3696 * Free a DMA'able ucode download buffer previously allocated with
3697 * ipr_alloc_ucode_buffer
3698 *
3699 * Return value:
3700 * nothing
3701 **/
3702static void ipr_free_ucode_buffer(struct ipr_sglist *sglist)
3703{
3704 int i;
3705
3706 for (i = 0; i < sglist->num_sg; i++)
Jens Axboe45711f12007-10-22 21:19:53 +02003707 __free_pages(sg_page(&sglist->scatterlist[i]), sglist->order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
3709 kfree(sglist);
3710}
3711
3712/**
3713 * ipr_copy_ucode_buffer - Copy user buffer to kernel buffer
3714 * @sglist: scatter/gather list pointer
3715 * @buffer: buffer pointer
3716 * @len: buffer length
3717 *
3718 * Copy a microcode image from a user buffer into a buffer allocated by
3719 * ipr_alloc_ucode_buffer
3720 *
3721 * Return value:
3722 * 0 on success / other on failure
3723 **/
3724static int ipr_copy_ucode_buffer(struct ipr_sglist *sglist,
3725 u8 *buffer, u32 len)
3726{
3727 int bsize_elem, i, result = 0;
3728 struct scatterlist *scatterlist;
3729 void *kaddr;
3730
3731 /* Determine the actual number of bytes per element */
3732 bsize_elem = PAGE_SIZE * (1 << sglist->order);
3733
3734 scatterlist = sglist->scatterlist;
3735
3736 for (i = 0; i < (len / bsize_elem); i++, buffer += bsize_elem) {
Jens Axboe45711f12007-10-22 21:19:53 +02003737 struct page *page = sg_page(&scatterlist[i]);
3738
3739 kaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 memcpy(kaddr, buffer, bsize_elem);
Jens Axboe45711f12007-10-22 21:19:53 +02003741 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
3743 scatterlist[i].length = bsize_elem;
3744
3745 if (result != 0) {
3746 ipr_trace;
3747 return result;
3748 }
3749 }
3750
3751 if (len % bsize_elem) {
Jens Axboe45711f12007-10-22 21:19:53 +02003752 struct page *page = sg_page(&scatterlist[i]);
3753
3754 kaddr = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 memcpy(kaddr, buffer, len % bsize_elem);
Jens Axboe45711f12007-10-22 21:19:53 +02003756 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
3758 scatterlist[i].length = len % bsize_elem;
3759 }
3760
3761 sglist->buffer_len = len;
3762 return result;
3763}
3764
3765/**
Wayne Boyera32c0552010-02-19 13:23:36 -08003766 * ipr_build_ucode_ioadl64 - Build a microcode download IOADL
3767 * @ipr_cmd: ipr command struct
3768 * @sglist: scatter/gather list
3769 *
3770 * Builds a microcode download IOA data list (IOADL).
3771 *
3772 **/
3773static void ipr_build_ucode_ioadl64(struct ipr_cmnd *ipr_cmd,
3774 struct ipr_sglist *sglist)
3775{
3776 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
3777 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
3778 struct scatterlist *scatterlist = sglist->scatterlist;
3779 int i;
3780
3781 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
3782 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
3783 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3784
3785 ioarcb->ioadl_len =
3786 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
3787 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3788 ioadl64[i].flags = cpu_to_be32(IPR_IOADL_FLAGS_WRITE);
3789 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(&scatterlist[i]));
3790 ioadl64[i].address = cpu_to_be64(sg_dma_address(&scatterlist[i]));
3791 }
3792
3793 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3794}
3795
3796/**
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003797 * ipr_build_ucode_ioadl - Build a microcode download IOADL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 * @ipr_cmd: ipr command struct
3799 * @sglist: scatter/gather list
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 *
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003801 * Builds a microcode download IOA data list (IOADL).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 **/
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003804static void ipr_build_ucode_ioadl(struct ipr_cmnd *ipr_cmd,
3805 struct ipr_sglist *sglist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08003808 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 struct scatterlist *scatterlist = sglist->scatterlist;
3810 int i;
3811
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003812 ipr_cmd->dma_use_sg = sglist->num_dma_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08003814 ioarcb->data_transfer_length = cpu_to_be32(sglist->buffer_len);
3815
3816 ioarcb->ioadl_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
3818
3819 for (i = 0; i < ipr_cmd->dma_use_sg; i++) {
3820 ioadl[i].flags_and_data_len =
3821 cpu_to_be32(IPR_IOADL_FLAGS_WRITE | sg_dma_len(&scatterlist[i]));
3822 ioadl[i].address =
3823 cpu_to_be32(sg_dma_address(&scatterlist[i]));
3824 }
3825
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003826 ioadl[i-1].flags_and_data_len |=
3827 cpu_to_be32(IPR_IOADL_FLAGS_LAST);
3828}
3829
3830/**
3831 * ipr_update_ioa_ucode - Update IOA's microcode
3832 * @ioa_cfg: ioa config struct
3833 * @sglist: scatter/gather list
3834 *
3835 * Initiate an adapter reset to update the IOA's microcode
3836 *
3837 * Return value:
3838 * 0 on success / -EIO on failure
3839 **/
3840static int ipr_update_ioa_ucode(struct ipr_ioa_cfg *ioa_cfg,
3841 struct ipr_sglist *sglist)
3842{
3843 unsigned long lock_flags;
3844
3845 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003846 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -05003847 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3848 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3849 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3850 }
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003851
3852 if (ioa_cfg->ucode_sglist) {
3853 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3854 dev_err(&ioa_cfg->pdev->dev,
3855 "Microcode download already in progress\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 return -EIO;
3857 }
3858
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003859 sglist->num_dma_sg = pci_map_sg(ioa_cfg->pdev, sglist->scatterlist,
3860 sglist->num_sg, DMA_TO_DEVICE);
3861
3862 if (!sglist->num_dma_sg) {
3863 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3864 dev_err(&ioa_cfg->pdev->dev,
3865 "Failed to map microcode download buffer!\n");
3866 return -EIO;
3867 }
3868
3869 ioa_cfg->ucode_sglist = sglist;
3870 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NORMAL);
3871 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3872 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
3873
3874 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3875 ioa_cfg->ucode_sglist = NULL;
3876 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 return 0;
3878}
3879
3880/**
3881 * ipr_store_update_fw - Update the firmware on the adapter
Tony Jonesee959b02008-02-22 00:13:36 +01003882 * @class_dev: device struct
3883 * @buf: buffer
3884 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 *
3886 * This function will update the firmware on the adapter.
3887 *
3888 * Return value:
3889 * count on success / other on failure
3890 **/
Tony Jonesee959b02008-02-22 00:13:36 +01003891static ssize_t ipr_store_update_fw(struct device *dev,
3892 struct device_attribute *attr,
3893 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894{
Tony Jonesee959b02008-02-22 00:13:36 +01003895 struct Scsi_Host *shost = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3897 struct ipr_ucode_image_header *image_hdr;
3898 const struct firmware *fw_entry;
3899 struct ipr_sglist *sglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 char fname[100];
3901 char *src;
3902 int len, result, dnld_size;
3903
3904 if (!capable(CAP_SYS_ADMIN))
3905 return -EACCES;
3906
3907 len = snprintf(fname, 99, "%s", buf);
3908 fname[len-1] = '\0';
3909
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03003910 if (request_firmware(&fw_entry, fname, &ioa_cfg->pdev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 dev_err(&ioa_cfg->pdev->dev, "Firmware file %s not found\n", fname);
3912 return -EIO;
3913 }
3914
3915 image_hdr = (struct ipr_ucode_image_header *)fw_entry->data;
3916
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 src = (u8 *)image_hdr + be32_to_cpu(image_hdr->header_length);
3918 dnld_size = fw_entry->size - be32_to_cpu(image_hdr->header_length);
3919 sglist = ipr_alloc_ucode_buffer(dnld_size);
3920
3921 if (!sglist) {
3922 dev_err(&ioa_cfg->pdev->dev, "Microcode buffer allocation failed\n");
3923 release_firmware(fw_entry);
3924 return -ENOMEM;
3925 }
3926
3927 result = ipr_copy_ucode_buffer(sglist, src, dnld_size);
3928
3929 if (result) {
3930 dev_err(&ioa_cfg->pdev->dev,
3931 "Microcode buffer copy to DMA buffer failed\n");
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003932 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 }
3934
Wayne Boyer14ed9cc2011-10-03 20:54:37 -07003935 ipr_info("Updating microcode, please be patient. This may take up to 30 minutes.\n");
3936
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003937 result = ipr_update_ioa_ucode(ioa_cfg, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003939 if (!result)
3940 result = count;
3941out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 ipr_free_ucode_buffer(sglist);
3943 release_firmware(fw_entry);
brking@us.ibm.com12baa422005-11-01 17:01:27 -06003944 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945}
3946
Tony Jonesee959b02008-02-22 00:13:36 +01003947static struct device_attribute ipr_update_fw_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 .attr = {
3949 .name = "update_fw",
3950 .mode = S_IWUSR,
3951 },
3952 .store = ipr_store_update_fw
3953};
3954
Wayne Boyer75576bb2010-07-14 10:50:14 -07003955/**
3956 * ipr_show_fw_type - Show the adapter's firmware type.
3957 * @dev: class device struct
3958 * @buf: buffer
3959 *
3960 * Return value:
3961 * number of bytes printed to buffer
3962 **/
3963static ssize_t ipr_show_fw_type(struct device *dev,
3964 struct device_attribute *attr, char *buf)
3965{
3966 struct Scsi_Host *shost = class_to_shost(dev);
3967 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
3968 unsigned long lock_flags = 0;
3969 int len;
3970
3971 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
3972 len = snprintf(buf, PAGE_SIZE, "%d\n", ioa_cfg->sis64);
3973 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
3974 return len;
3975}
3976
3977static struct device_attribute ipr_ioa_fw_type_attr = {
3978 .attr = {
3979 .name = "fw_type",
3980 .mode = S_IRUGO,
3981 },
3982 .show = ipr_show_fw_type
3983};
3984
Tony Jonesee959b02008-02-22 00:13:36 +01003985static struct device_attribute *ipr_ioa_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 &ipr_fw_version_attr,
3987 &ipr_log_level_attr,
3988 &ipr_diagnostics_attr,
brking@us.ibm.comf37eb542005-11-01 17:01:40 -06003989 &ipr_ioa_state_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 &ipr_ioa_reset_attr,
3991 &ipr_update_fw_attr,
Wayne Boyer75576bb2010-07-14 10:50:14 -07003992 &ipr_ioa_fw_type_attr,
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06003993 &ipr_iopoll_weight_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 NULL,
3995};
3996
3997#ifdef CONFIG_SCSI_IPR_DUMP
3998/**
3999 * ipr_read_dump - Dump the adapter
Chris Wright2c3c8be2010-05-12 18:28:57 -07004000 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08004002 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 * @buf: buffer
4004 * @off: offset
4005 * @count: buffer size
4006 *
4007 * Return value:
4008 * number of bytes printed to buffer
4009 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07004010static ssize_t ipr_read_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08004011 struct bin_attribute *bin_attr,
4012 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013{
Tony Jonesee959b02008-02-22 00:13:36 +01004014 struct device *cdev = container_of(kobj, struct device, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 struct Scsi_Host *shost = class_to_shost(cdev);
4016 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4017 struct ipr_dump *dump;
4018 unsigned long lock_flags = 0;
4019 char *src;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004020 int len, sdt_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 size_t rc = count;
4022
4023 if (!capable(CAP_SYS_ADMIN))
4024 return -EACCES;
4025
4026 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4027 dump = ioa_cfg->dump;
4028
4029 if (ioa_cfg->sdt_state != DUMP_OBTAINED || !dump) {
4030 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4031 return 0;
4032 }
4033 kref_get(&dump->kref);
4034 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4035
4036 if (off > dump->driver_dump.hdr.len) {
4037 kref_put(&dump->kref, ipr_release_dump);
4038 return 0;
4039 }
4040
4041 if (off + count > dump->driver_dump.hdr.len) {
4042 count = dump->driver_dump.hdr.len - off;
4043 rc = count;
4044 }
4045
4046 if (count && off < sizeof(dump->driver_dump)) {
4047 if (off + count > sizeof(dump->driver_dump))
4048 len = sizeof(dump->driver_dump) - off;
4049 else
4050 len = count;
4051 src = (u8 *)&dump->driver_dump + off;
4052 memcpy(buf, src, len);
4053 buf += len;
4054 off += len;
4055 count -= len;
4056 }
4057
4058 off -= sizeof(dump->driver_dump);
4059
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004060 if (ioa_cfg->sis64)
4061 sdt_end = offsetof(struct ipr_ioa_dump, sdt.entry) +
4062 (be32_to_cpu(dump->ioa_dump.sdt.hdr.num_entries_used) *
4063 sizeof(struct ipr_sdt_entry));
4064 else
4065 sdt_end = offsetof(struct ipr_ioa_dump, sdt.entry) +
4066 (IPR_FMT2_NUM_SDT_ENTRIES * sizeof(struct ipr_sdt_entry));
4067
4068 if (count && off < sdt_end) {
4069 if (off + count > sdt_end)
4070 len = sdt_end - off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 else
4072 len = count;
4073 src = (u8 *)&dump->ioa_dump + off;
4074 memcpy(buf, src, len);
4075 buf += len;
4076 off += len;
4077 count -= len;
4078 }
4079
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004080 off -= sdt_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
4082 while (count) {
4083 if ((off & PAGE_MASK) != ((off + count) & PAGE_MASK))
4084 len = PAGE_ALIGN(off) - off;
4085 else
4086 len = count;
4087 src = (u8 *)dump->ioa_dump.ioa_data[(off & PAGE_MASK) >> PAGE_SHIFT];
4088 src += off & ~PAGE_MASK;
4089 memcpy(buf, src, len);
4090 buf += len;
4091 off += len;
4092 count -= len;
4093 }
4094
4095 kref_put(&dump->kref, ipr_release_dump);
4096 return rc;
4097}
4098
4099/**
4100 * ipr_alloc_dump - Prepare for adapter dump
4101 * @ioa_cfg: ioa config struct
4102 *
4103 * Return value:
4104 * 0 on success / other on failure
4105 **/
4106static int ipr_alloc_dump(struct ipr_ioa_cfg *ioa_cfg)
4107{
4108 struct ipr_dump *dump;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004109 __be32 **ioa_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 unsigned long lock_flags = 0;
4111
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06004112 dump = kzalloc(sizeof(struct ipr_dump), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
4114 if (!dump) {
4115 ipr_err("Dump memory allocation failed\n");
4116 return -ENOMEM;
4117 }
4118
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004119 if (ioa_cfg->sis64)
4120 ioa_data = vmalloc(IPR_FMT3_MAX_NUM_DUMP_PAGES * sizeof(__be32 *));
4121 else
4122 ioa_data = vmalloc(IPR_FMT2_MAX_NUM_DUMP_PAGES * sizeof(__be32 *));
4123
4124 if (!ioa_data) {
4125 ipr_err("Dump memory allocation failed\n");
4126 kfree(dump);
4127 return -ENOMEM;
4128 }
4129
4130 dump->ioa_dump.ioa_data = ioa_data;
4131
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 kref_init(&dump->kref);
4133 dump->ioa_cfg = ioa_cfg;
4134
4135 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4136
4137 if (INACTIVE != ioa_cfg->sdt_state) {
4138 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03004139 vfree(dump->ioa_dump.ioa_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 kfree(dump);
4141 return 0;
4142 }
4143
4144 ioa_cfg->dump = dump;
4145 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004146 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead && !ioa_cfg->dump_taken) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 ioa_cfg->dump_taken = 1;
4148 schedule_work(&ioa_cfg->work_q);
4149 }
4150 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4151
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 return 0;
4153}
4154
4155/**
4156 * ipr_free_dump - Free adapter dump memory
4157 * @ioa_cfg: ioa config struct
4158 *
4159 * Return value:
4160 * 0 on success / other on failure
4161 **/
4162static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg)
4163{
4164 struct ipr_dump *dump;
4165 unsigned long lock_flags = 0;
4166
4167 ENTER;
4168
4169 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4170 dump = ioa_cfg->dump;
4171 if (!dump) {
4172 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4173 return 0;
4174 }
4175
4176 ioa_cfg->dump = NULL;
4177 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4178
4179 kref_put(&dump->kref, ipr_release_dump);
4180
4181 LEAVE;
4182 return 0;
4183}
4184
4185/**
4186 * ipr_write_dump - Setup dump state of adapter
Chris Wright2c3c8be2010-05-12 18:28:57 -07004187 * @filp: open sysfs file
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 * @kobj: kobject struct
Zhang Rui91a69022007-06-09 13:57:22 +08004189 * @bin_attr: bin_attribute struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 * @buf: buffer
4191 * @off: offset
4192 * @count: buffer size
4193 *
4194 * Return value:
4195 * number of bytes printed to buffer
4196 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07004197static ssize_t ipr_write_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +08004198 struct bin_attribute *bin_attr,
4199 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200{
Tony Jonesee959b02008-02-22 00:13:36 +01004201 struct device *cdev = container_of(kobj, struct device, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 struct Scsi_Host *shost = class_to_shost(cdev);
4203 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
4204 int rc;
4205
4206 if (!capable(CAP_SYS_ADMIN))
4207 return -EACCES;
4208
4209 if (buf[0] == '1')
4210 rc = ipr_alloc_dump(ioa_cfg);
4211 else if (buf[0] == '0')
4212 rc = ipr_free_dump(ioa_cfg);
4213 else
4214 return -EINVAL;
4215
4216 if (rc)
4217 return rc;
4218 else
4219 return count;
4220}
4221
4222static struct bin_attribute ipr_dump_attr = {
4223 .attr = {
4224 .name = "dump",
4225 .mode = S_IRUSR | S_IWUSR,
4226 },
4227 .size = 0,
4228 .read = ipr_read_dump,
4229 .write = ipr_write_dump
4230};
4231#else
4232static int ipr_free_dump(struct ipr_ioa_cfg *ioa_cfg) { return 0; };
4233#endif
4234
4235/**
4236 * ipr_change_queue_depth - Change the device's queue depth
4237 * @sdev: scsi device struct
4238 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07004239 * @reason: calling context
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 *
4241 * Return value:
4242 * actual depth set
4243 **/
Mike Christiee881a172009-10-15 17:46:39 -07004244static int ipr_change_queue_depth(struct scsi_device *sdev, int qdepth,
4245 int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Brian King35a39692006-09-25 12:39:20 -05004247 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4248 struct ipr_resource_entry *res;
4249 unsigned long lock_flags = 0;
4250
Mike Christiee881a172009-10-15 17:46:39 -07004251 if (reason != SCSI_QDEPTH_DEFAULT)
4252 return -EOPNOTSUPP;
4253
Brian King35a39692006-09-25 12:39:20 -05004254 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4255 res = (struct ipr_resource_entry *)sdev->hostdata;
4256
4257 if (res && ipr_is_gata(res) && qdepth > IPR_MAX_CMD_PER_ATA_LUN)
4258 qdepth = IPR_MAX_CMD_PER_ATA_LUN;
4259 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
4262 return sdev->queue_depth;
4263}
4264
4265/**
4266 * ipr_change_queue_type - Change the device's queue type
4267 * @dsev: scsi device struct
4268 * @tag_type: type of tags to use
4269 *
4270 * Return value:
4271 * actual queue type set
4272 **/
4273static int ipr_change_queue_type(struct scsi_device *sdev, int tag_type)
4274{
4275 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4276 struct ipr_resource_entry *res;
4277 unsigned long lock_flags = 0;
4278
4279 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4280 res = (struct ipr_resource_entry *)sdev->hostdata;
4281
4282 if (res) {
4283 if (ipr_is_gscsi(res) && sdev->tagged_supported) {
4284 /*
4285 * We don't bother quiescing the device here since the
4286 * adapter firmware does it for us.
4287 */
4288 scsi_set_tag_type(sdev, tag_type);
4289
4290 if (tag_type)
4291 scsi_activate_tcq(sdev, sdev->queue_depth);
4292 else
4293 scsi_deactivate_tcq(sdev, sdev->queue_depth);
4294 } else
4295 tag_type = 0;
4296 } else
4297 tag_type = 0;
4298
4299 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4300 return tag_type;
4301}
4302
4303/**
4304 * ipr_show_adapter_handle - Show the adapter's resource handle for this device
4305 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004306 * @attr: device attribute structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 * @buf: buffer
4308 *
4309 * Return value:
4310 * number of bytes printed to buffer
4311 **/
Yani Ioannou10523b32005-05-17 06:43:37 -04004312static ssize_t ipr_show_adapter_handle(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313{
4314 struct scsi_device *sdev = to_scsi_device(dev);
4315 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4316 struct ipr_resource_entry *res;
4317 unsigned long lock_flags = 0;
4318 ssize_t len = -ENXIO;
4319
4320 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4321 res = (struct ipr_resource_entry *)sdev->hostdata;
4322 if (res)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004323 len = snprintf(buf, PAGE_SIZE, "%08X\n", res->res_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4325 return len;
4326}
4327
4328static struct device_attribute ipr_adapter_handle_attr = {
4329 .attr = {
4330 .name = "adapter_handle",
4331 .mode = S_IRUSR,
4332 },
4333 .show = ipr_show_adapter_handle
4334};
4335
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004336/**
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004337 * ipr_show_resource_path - Show the resource path or the resource address for
4338 * this device.
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004339 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004340 * @attr: device attribute structure
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004341 * @buf: buffer
4342 *
4343 * Return value:
4344 * number of bytes printed to buffer
4345 **/
4346static ssize_t ipr_show_resource_path(struct device *dev, struct device_attribute *attr, char *buf)
4347{
4348 struct scsi_device *sdev = to_scsi_device(dev);
4349 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4350 struct ipr_resource_entry *res;
4351 unsigned long lock_flags = 0;
4352 ssize_t len = -ENXIO;
4353 char buffer[IPR_MAX_RES_PATH_LENGTH];
4354
4355 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4356 res = (struct ipr_resource_entry *)sdev->hostdata;
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004357 if (res && ioa_cfg->sis64)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004358 len = snprintf(buf, PAGE_SIZE, "%s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06004359 __ipr_format_res_path(res->res_path, buffer,
4360 sizeof(buffer)));
Wayne Boyer5adcbeb2010-06-03 16:02:21 -07004361 else if (res)
4362 len = snprintf(buf, PAGE_SIZE, "%d:%d:%d:%d\n", ioa_cfg->host->host_no,
4363 res->bus, res->target, res->lun);
4364
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004365 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4366 return len;
4367}
4368
4369static struct device_attribute ipr_resource_path_attr = {
4370 .attr = {
4371 .name = "resource_path",
Wayne Boyer75576bb2010-07-14 10:50:14 -07004372 .mode = S_IRUGO,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004373 },
4374 .show = ipr_show_resource_path
4375};
4376
Wayne Boyer75576bb2010-07-14 10:50:14 -07004377/**
Wayne Boyer46d74562010-08-11 07:15:17 -07004378 * ipr_show_device_id - Show the device_id for this device.
4379 * @dev: device struct
4380 * @attr: device attribute structure
4381 * @buf: buffer
4382 *
4383 * Return value:
4384 * number of bytes printed to buffer
4385 **/
4386static ssize_t ipr_show_device_id(struct device *dev, struct device_attribute *attr, char *buf)
4387{
4388 struct scsi_device *sdev = to_scsi_device(dev);
4389 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4390 struct ipr_resource_entry *res;
4391 unsigned long lock_flags = 0;
4392 ssize_t len = -ENXIO;
4393
4394 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4395 res = (struct ipr_resource_entry *)sdev->hostdata;
4396 if (res && ioa_cfg->sis64)
4397 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->dev_id);
4398 else if (res)
4399 len = snprintf(buf, PAGE_SIZE, "0x%llx\n", res->lun_wwn);
4400
4401 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4402 return len;
4403}
4404
4405static struct device_attribute ipr_device_id_attr = {
4406 .attr = {
4407 .name = "device_id",
4408 .mode = S_IRUGO,
4409 },
4410 .show = ipr_show_device_id
4411};
4412
4413/**
Wayne Boyer75576bb2010-07-14 10:50:14 -07004414 * ipr_show_resource_type - Show the resource type for this device.
4415 * @dev: device struct
Wayne Boyer46d74562010-08-11 07:15:17 -07004416 * @attr: device attribute structure
Wayne Boyer75576bb2010-07-14 10:50:14 -07004417 * @buf: buffer
4418 *
4419 * Return value:
4420 * number of bytes printed to buffer
4421 **/
4422static ssize_t ipr_show_resource_type(struct device *dev, struct device_attribute *attr, char *buf)
4423{
4424 struct scsi_device *sdev = to_scsi_device(dev);
4425 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
4426 struct ipr_resource_entry *res;
4427 unsigned long lock_flags = 0;
4428 ssize_t len = -ENXIO;
4429
4430 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4431 res = (struct ipr_resource_entry *)sdev->hostdata;
4432
4433 if (res)
4434 len = snprintf(buf, PAGE_SIZE, "%x\n", res->type);
4435
4436 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4437 return len;
4438}
4439
4440static struct device_attribute ipr_resource_type_attr = {
4441 .attr = {
4442 .name = "resource_type",
4443 .mode = S_IRUGO,
4444 },
4445 .show = ipr_show_resource_type
4446};
4447
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448static struct device_attribute *ipr_dev_attrs[] = {
4449 &ipr_adapter_handle_attr,
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004450 &ipr_resource_path_attr,
Wayne Boyer46d74562010-08-11 07:15:17 -07004451 &ipr_device_id_attr,
Wayne Boyer75576bb2010-07-14 10:50:14 -07004452 &ipr_resource_type_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 NULL,
4454};
4455
4456/**
4457 * ipr_biosparam - Return the HSC mapping
4458 * @sdev: scsi device struct
4459 * @block_device: block device pointer
4460 * @capacity: capacity of the device
4461 * @parm: Array containing returned HSC values.
4462 *
4463 * This function generates the HSC parms that fdisk uses.
4464 * We want to make sure we return something that places partitions
4465 * on 4k boundaries for best performance with the IOA.
4466 *
4467 * Return value:
4468 * 0 on success
4469 **/
4470static int ipr_biosparam(struct scsi_device *sdev,
4471 struct block_device *block_device,
4472 sector_t capacity, int *parm)
4473{
4474 int heads, sectors;
4475 sector_t cylinders;
4476
4477 heads = 128;
4478 sectors = 32;
4479
4480 cylinders = capacity;
4481 sector_div(cylinders, (128 * 32));
4482
4483 /* return result */
4484 parm[0] = heads;
4485 parm[1] = sectors;
4486 parm[2] = cylinders;
4487
4488 return 0;
4489}
4490
4491/**
Brian King35a39692006-09-25 12:39:20 -05004492 * ipr_find_starget - Find target based on bus/target.
4493 * @starget: scsi target struct
4494 *
4495 * Return value:
4496 * resource entry pointer if found / NULL if not found
4497 **/
4498static struct ipr_resource_entry *ipr_find_starget(struct scsi_target *starget)
4499{
4500 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4501 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4502 struct ipr_resource_entry *res;
4503
4504 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004505 if ((res->bus == starget->channel) &&
Brian King0ee1d712012-03-14 21:20:06 -05004506 (res->target == starget->id)) {
Brian King35a39692006-09-25 12:39:20 -05004507 return res;
4508 }
4509 }
4510
4511 return NULL;
4512}
4513
4514static struct ata_port_info sata_port_info;
4515
4516/**
4517 * ipr_target_alloc - Prepare for commands to a SCSI target
4518 * @starget: scsi target struct
4519 *
4520 * If the device is a SATA device, this function allocates an
4521 * ATA port with libata, else it does nothing.
4522 *
4523 * Return value:
4524 * 0 on success / non-0 on failure
4525 **/
4526static int ipr_target_alloc(struct scsi_target *starget)
4527{
4528 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4529 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4530 struct ipr_sata_port *sata_port;
4531 struct ata_port *ap;
4532 struct ipr_resource_entry *res;
4533 unsigned long lock_flags;
4534
4535 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4536 res = ipr_find_starget(starget);
4537 starget->hostdata = NULL;
4538
4539 if (res && ipr_is_gata(res)) {
4540 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4541 sata_port = kzalloc(sizeof(*sata_port), GFP_KERNEL);
4542 if (!sata_port)
4543 return -ENOMEM;
4544
4545 ap = ata_sas_port_alloc(&ioa_cfg->ata_host, &sata_port_info, shost);
4546 if (ap) {
4547 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4548 sata_port->ioa_cfg = ioa_cfg;
4549 sata_port->ap = ap;
4550 sata_port->res = res;
4551
4552 res->sata_port = sata_port;
4553 ap->private_data = sata_port;
4554 starget->hostdata = sata_port;
4555 } else {
4556 kfree(sata_port);
4557 return -ENOMEM;
4558 }
4559 }
4560 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4561
4562 return 0;
4563}
4564
4565/**
4566 * ipr_target_destroy - Destroy a SCSI target
4567 * @starget: scsi target struct
4568 *
4569 * If the device was a SATA device, this function frees the libata
4570 * ATA port, else it does nothing.
4571 *
4572 **/
4573static void ipr_target_destroy(struct scsi_target *starget)
4574{
4575 struct ipr_sata_port *sata_port = starget->hostdata;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004576 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
4577 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) shost->hostdata;
4578
4579 if (ioa_cfg->sis64) {
Brian King0ee1d712012-03-14 21:20:06 -05004580 if (!ipr_find_starget(starget)) {
4581 if (starget->channel == IPR_ARRAY_VIRTUAL_BUS)
4582 clear_bit(starget->id, ioa_cfg->array_ids);
4583 else if (starget->channel == IPR_VSET_VIRTUAL_BUS)
4584 clear_bit(starget->id, ioa_cfg->vset_ids);
4585 else if (starget->channel == 0)
4586 clear_bit(starget->id, ioa_cfg->target_ids);
4587 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004588 }
Brian King35a39692006-09-25 12:39:20 -05004589
4590 if (sata_port) {
4591 starget->hostdata = NULL;
4592 ata_sas_port_destroy(sata_port->ap);
4593 kfree(sata_port);
4594 }
4595}
4596
4597/**
4598 * ipr_find_sdev - Find device based on bus/target/lun.
4599 * @sdev: scsi device struct
4600 *
4601 * Return value:
4602 * resource entry pointer if found / NULL if not found
4603 **/
4604static struct ipr_resource_entry *ipr_find_sdev(struct scsi_device *sdev)
4605{
4606 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4607 struct ipr_resource_entry *res;
4608
4609 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004610 if ((res->bus == sdev->channel) &&
4611 (res->target == sdev->id) &&
4612 (res->lun == sdev->lun))
Brian King35a39692006-09-25 12:39:20 -05004613 return res;
4614 }
4615
4616 return NULL;
4617}
4618
4619/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 * ipr_slave_destroy - Unconfigure a SCSI device
4621 * @sdev: scsi device struct
4622 *
4623 * Return value:
4624 * nothing
4625 **/
4626static void ipr_slave_destroy(struct scsi_device *sdev)
4627{
4628 struct ipr_resource_entry *res;
4629 struct ipr_ioa_cfg *ioa_cfg;
4630 unsigned long lock_flags = 0;
4631
4632 ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4633
4634 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4635 res = (struct ipr_resource_entry *) sdev->hostdata;
4636 if (res) {
Brian King35a39692006-09-25 12:39:20 -05004637 if (res->sata_port)
Tejun Heo3e4ec342010-05-10 21:41:30 +02004638 res->sata_port->ap->link.device[0].class = ATA_DEV_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 sdev->hostdata = NULL;
4640 res->sdev = NULL;
Brian King35a39692006-09-25 12:39:20 -05004641 res->sata_port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 }
4643 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4644}
4645
4646/**
4647 * ipr_slave_configure - Configure a SCSI device
4648 * @sdev: scsi device struct
4649 *
4650 * This function configures the specified scsi device.
4651 *
4652 * Return value:
4653 * 0 on success
4654 **/
4655static int ipr_slave_configure(struct scsi_device *sdev)
4656{
4657 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4658 struct ipr_resource_entry *res;
Brian Kingdd406ef2009-04-22 08:58:02 -05004659 struct ata_port *ap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 unsigned long lock_flags = 0;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004661 char buffer[IPR_MAX_RES_PATH_LENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
4663 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4664 res = sdev->hostdata;
4665 if (res) {
4666 if (ipr_is_af_dasd_device(res))
4667 sdev->type = TYPE_RAID;
brking@us.ibm.com0726ce22005-11-01 17:01:01 -06004668 if (ipr_is_af_dasd_device(res) || ipr_is_ioa_resource(res)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 sdev->scsi_level = 4;
brking@us.ibm.com0726ce22005-11-01 17:01:01 -06004670 sdev->no_uld_attach = 1;
4671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 if (ipr_is_vset_device(res)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07004673 blk_queue_rq_timeout(sdev->request_queue,
4674 IPR_VSET_RW_TIMEOUT);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05004675 blk_queue_max_hw_sectors(sdev->request_queue, IPR_VSET_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 }
Brian Kingdd406ef2009-04-22 08:58:02 -05004677 if (ipr_is_gata(res) && res->sata_port)
4678 ap = res->sata_port->ap;
4679 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4680
4681 if (ap) {
Brian King35a39692006-09-25 12:39:20 -05004682 scsi_adjust_queue_depth(sdev, 0, IPR_MAX_CMD_PER_ATA_LUN);
Brian Kingdd406ef2009-04-22 08:58:02 -05004683 ata_sas_slave_configure(sdev, ap);
4684 } else
Brian King35a39692006-09-25 12:39:20 -05004685 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004686 if (ioa_cfg->sis64)
4687 sdev_printk(KERN_INFO, sdev, "Resource path: %s\n",
Brian Kingb3b3b402013-01-11 17:43:49 -06004688 ipr_format_res_path(ioa_cfg,
4689 res->res_path, buffer, sizeof(buffer)));
Brian Kingdd406ef2009-04-22 08:58:02 -05004690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 }
4692 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4693 return 0;
4694}
4695
4696/**
Brian King35a39692006-09-25 12:39:20 -05004697 * ipr_ata_slave_alloc - Prepare for commands to a SATA device
4698 * @sdev: scsi device struct
4699 *
4700 * This function initializes an ATA port so that future commands
4701 * sent through queuecommand will work.
4702 *
4703 * Return value:
4704 * 0 on success
4705 **/
4706static int ipr_ata_slave_alloc(struct scsi_device *sdev)
4707{
4708 struct ipr_sata_port *sata_port = NULL;
4709 int rc = -ENXIO;
4710
4711 ENTER;
4712 if (sdev->sdev_target)
4713 sata_port = sdev->sdev_target->hostdata;
Dan Williamsb2024452012-03-21 21:09:07 -07004714 if (sata_port) {
Brian King35a39692006-09-25 12:39:20 -05004715 rc = ata_sas_port_init(sata_port->ap);
Dan Williamsb2024452012-03-21 21:09:07 -07004716 if (rc == 0)
4717 rc = ata_sas_sync_probe(sata_port->ap);
4718 }
4719
Brian King35a39692006-09-25 12:39:20 -05004720 if (rc)
4721 ipr_slave_destroy(sdev);
4722
4723 LEAVE;
4724 return rc;
4725}
4726
4727/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 * ipr_slave_alloc - Prepare for commands to a device.
4729 * @sdev: scsi device struct
4730 *
4731 * This function saves a pointer to the resource entry
4732 * in the scsi device struct if the device exists. We
4733 * can then use this pointer in ipr_queuecommand when
4734 * handling new commands.
4735 *
4736 * Return value:
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004737 * 0 on success / -ENXIO if device does not exist
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 **/
4739static int ipr_slave_alloc(struct scsi_device *sdev)
4740{
4741 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *) sdev->host->hostdata;
4742 struct ipr_resource_entry *res;
4743 unsigned long lock_flags;
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004744 int rc = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
4746 sdev->hostdata = NULL;
4747
4748 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4749
Brian King35a39692006-09-25 12:39:20 -05004750 res = ipr_find_sdev(sdev);
4751 if (res) {
4752 res->sdev = sdev;
4753 res->add_to_ml = 0;
4754 res->in_erp = 0;
4755 sdev->hostdata = res;
4756 if (!ipr_is_naca_model(res))
4757 res->needs_sync_complete = 1;
4758 rc = 0;
4759 if (ipr_is_gata(res)) {
4760 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4761 return ipr_ata_slave_alloc(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 }
4763 }
4764
4765 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4766
brking@us.ibm.com692aebf2005-11-01 17:01:07 -06004767 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768}
4769
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004770static int ipr_eh_host_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771{
4772 struct ipr_ioa_cfg *ioa_cfg;
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004773 unsigned long lock_flags = 0;
4774 int rc = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775
4776 ENTER;
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004777 ioa_cfg = (struct ipr_ioa_cfg *) cmd->device->host->hostdata;
4778 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05004780 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 -06004781 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_ABBREV);
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02004782 dev_err(&ioa_cfg->pdev->dev,
4783 "Adapter being reset as a result of error recovery.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02004785 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
4786 ioa_cfg->sdt_state = GET_DUMP;
4787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004789 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4790 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
4791 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
wenxiong@linux.vnet.ibm.com70233ac2013-01-11 17:43:54 -06004793 /* If we got hit with a host reset while we were already resetting
4794 the adapter for some reason, and the reset failed. */
4795 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead) {
4796 ipr_trace;
4797 rc = FAILED;
4798 }
4799
4800 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 LEAVE;
4802 return rc;
4803}
4804
4805/**
Brian Kingc6513092006-03-29 09:37:43 -06004806 * ipr_device_reset - Reset the device
4807 * @ioa_cfg: ioa config struct
4808 * @res: resource entry struct
4809 *
4810 * This function issues a device reset to the affected device.
4811 * If the device is a SCSI device, a LUN reset will be sent
4812 * to the device first. If that does not work, a target reset
Brian King35a39692006-09-25 12:39:20 -05004813 * will be sent. If the device is a SATA device, a PHY reset will
4814 * be sent.
Brian Kingc6513092006-03-29 09:37:43 -06004815 *
4816 * Return value:
4817 * 0 on success / non-zero on failure
4818 **/
4819static int ipr_device_reset(struct ipr_ioa_cfg *ioa_cfg,
4820 struct ipr_resource_entry *res)
4821{
4822 struct ipr_cmnd *ipr_cmd;
4823 struct ipr_ioarcb *ioarcb;
4824 struct ipr_cmd_pkt *cmd_pkt;
Brian King35a39692006-09-25 12:39:20 -05004825 struct ipr_ioarcb_ata_regs *regs;
Brian Kingc6513092006-03-29 09:37:43 -06004826 u32 ioasc;
4827
4828 ENTER;
4829 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
4830 ioarcb = &ipr_cmd->ioarcb;
4831 cmd_pkt = &ioarcb->cmd_pkt;
Wayne Boyera32c0552010-02-19 13:23:36 -08004832
4833 if (ipr_cmd->ioa_cfg->sis64) {
4834 regs = &ipr_cmd->i.ata_ioadl.regs;
4835 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
4836 } else
4837 regs = &ioarcb->u.add_data.u.regs;
Brian Kingc6513092006-03-29 09:37:43 -06004838
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004839 ioarcb->res_handle = res->res_handle;
Brian Kingc6513092006-03-29 09:37:43 -06004840 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
4841 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
Brian King35a39692006-09-25 12:39:20 -05004842 if (ipr_is_gata(res)) {
4843 cmd_pkt->cdb[2] = IPR_ATA_PHY_RESET;
Wayne Boyera32c0552010-02-19 13:23:36 -08004844 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(regs->flags));
Brian King35a39692006-09-25 12:39:20 -05004845 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
4846 }
Brian Kingc6513092006-03-29 09:37:43 -06004847
4848 ipr_send_blocking_cmd(ipr_cmd, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
Wayne Boyer96d21f02010-05-10 09:13:27 -07004849 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06004850 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Wayne Boyer96d21f02010-05-10 09:13:27 -07004851 if (ipr_is_gata(res) && res->sata_port && ioasc != IPR_IOASC_IOA_WAS_RESET) {
4852 if (ipr_cmd->ioa_cfg->sis64)
4853 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
4854 sizeof(struct ipr_ioasa_gata));
4855 else
4856 memcpy(&res->sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
4857 sizeof(struct ipr_ioasa_gata));
4858 }
Brian Kingc6513092006-03-29 09:37:43 -06004859
4860 LEAVE;
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03004861 return IPR_IOASC_SENSE_KEY(ioasc) ? -EIO : 0;
Brian Kingc6513092006-03-29 09:37:43 -06004862}
4863
4864/**
Brian King35a39692006-09-25 12:39:20 -05004865 * ipr_sata_reset - Reset the SATA port
Tejun Heocc0680a2007-08-06 18:36:23 +09004866 * @link: SATA link to reset
Brian King35a39692006-09-25 12:39:20 -05004867 * @classes: class of the attached device
4868 *
Tejun Heocc0680a2007-08-06 18:36:23 +09004869 * This function issues a SATA phy reset to the affected ATA link.
Brian King35a39692006-09-25 12:39:20 -05004870 *
4871 * Return value:
4872 * 0 on success / non-zero on failure
4873 **/
Tejun Heocc0680a2007-08-06 18:36:23 +09004874static int ipr_sata_reset(struct ata_link *link, unsigned int *classes,
Andrew Morton120bda32007-03-26 02:17:43 -07004875 unsigned long deadline)
Brian King35a39692006-09-25 12:39:20 -05004876{
Tejun Heocc0680a2007-08-06 18:36:23 +09004877 struct ipr_sata_port *sata_port = link->ap->private_data;
Brian King35a39692006-09-25 12:39:20 -05004878 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
4879 struct ipr_resource_entry *res;
4880 unsigned long lock_flags = 0;
4881 int rc = -ENXIO;
4882
4883 ENTER;
4884 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03004885 while (ioa_cfg->in_reset_reload) {
Brian King73d98ff2006-11-21 10:27:58 -06004886 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4887 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
4888 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
4889 }
4890
Brian King35a39692006-09-25 12:39:20 -05004891 res = sata_port->res;
4892 if (res) {
4893 rc = ipr_device_reset(ioa_cfg, res);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08004894 *classes = res->ata_class;
Brian King35a39692006-09-25 12:39:20 -05004895 }
4896
4897 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
4898 LEAVE;
4899 return rc;
4900}
4901
4902/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 * ipr_eh_dev_reset - Reset the device
4904 * @scsi_cmd: scsi command struct
4905 *
4906 * This function issues a device reset to the affected device.
4907 * A LUN reset will be sent to the device first. If that does
4908 * not work, a target reset will be sent.
4909 *
4910 * Return value:
4911 * SUCCESS / FAILED
4912 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03004913static int __ipr_eh_dev_reset(struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914{
4915 struct ipr_cmnd *ipr_cmd;
4916 struct ipr_ioa_cfg *ioa_cfg;
4917 struct ipr_resource_entry *res;
Brian King35a39692006-09-25 12:39:20 -05004918 struct ata_port *ap;
4919 int rc = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06004920 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
4922 ENTER;
4923 ioa_cfg = (struct ipr_ioa_cfg *) scsi_cmd->device->host->hostdata;
4924 res = scsi_cmd->device->hostdata;
4925
brking@us.ibm.comeeb883072005-11-01 17:02:29 -06004926 if (!res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 return FAILED;
4928
4929 /*
4930 * If we are currently going through reset/reload, return failed. This will force the
4931 * mid-layer to call ipr_eh_host_reset, which will then go to sleep and wait for the
4932 * reset to complete
4933 */
4934 if (ioa_cfg->in_reset_reload)
4935 return FAILED;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004936 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 return FAILED;
4938
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06004939 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004940 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06004941 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
4942 if (ipr_cmd->ioarcb.res_handle == res->res_handle) {
4943 if (ipr_cmd->scsi_cmd)
4944 ipr_cmd->done = ipr_scsi_eh_done;
4945 if (ipr_cmd->qc)
4946 ipr_cmd->done = ipr_sata_eh_done;
4947 if (ipr_cmd->qc &&
4948 !(ipr_cmd->qc->flags & ATA_QCFLAG_FAILED)) {
4949 ipr_cmd->qc->err_mask |= AC_ERR_TIMEOUT;
4950 ipr_cmd->qc->flags |= ATA_QCFLAG_FAILED;
4951 }
Brian King7402ece2006-11-21 10:28:23 -06004952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004954 spin_unlock(&hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 res->resetting_device = 1;
Brian Kingfb3ed3c2006-03-29 09:37:37 -06004957 scmd_printk(KERN_ERR, scsi_cmd, "Resetting device\n");
Brian King35a39692006-09-25 12:39:20 -05004958
4959 if (ipr_is_gata(res) && res->sata_port) {
4960 ap = res->sata_port->ap;
4961 spin_unlock_irq(scsi_cmd->device->host->host_lock);
Tejun Heoa1efdab2008-03-25 12:22:50 +09004962 ata_std_error_handler(ap);
Brian King35a39692006-09-25 12:39:20 -05004963 spin_lock_irq(scsi_cmd->device->host->host_lock);
Brian King5af23d22007-05-09 15:36:35 -05004964
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06004965 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004966 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06004967 list_for_each_entry(ipr_cmd,
4968 &hrrq->hrrq_pending_q, queue) {
4969 if (ipr_cmd->ioarcb.res_handle ==
4970 res->res_handle) {
4971 rc = -EIO;
4972 break;
4973 }
Brian King5af23d22007-05-09 15:36:35 -05004974 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06004975 spin_unlock(&hrrq->_lock);
Brian King5af23d22007-05-09 15:36:35 -05004976 }
Brian King35a39692006-09-25 12:39:20 -05004977 } else
4978 rc = ipr_device_reset(ioa_cfg, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 res->resetting_device = 0;
4980
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 LEAVE;
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03004982 return rc ? FAILED : SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983}
4984
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03004985static int ipr_eh_dev_reset(struct scsi_cmnd *cmd)
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04004986{
4987 int rc;
4988
4989 spin_lock_irq(cmd->device->host->host_lock);
4990 rc = __ipr_eh_dev_reset(cmd);
4991 spin_unlock_irq(cmd->device->host->host_lock);
4992
4993 return rc;
4994}
4995
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996/**
4997 * ipr_bus_reset_done - Op done function for bus reset.
4998 * @ipr_cmd: ipr command struct
4999 *
5000 * This function is the op done function for a bus reset
5001 *
5002 * Return value:
5003 * none
5004 **/
5005static void ipr_bus_reset_done(struct ipr_cmnd *ipr_cmd)
5006{
5007 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
5008 struct ipr_resource_entry *res;
5009
5010 ENTER;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005011 if (!ioa_cfg->sis64)
5012 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
5013 if (res->res_handle == ipr_cmd->ioarcb.res_handle) {
5014 scsi_report_bus_reset(ioa_cfg->host, res->bus);
5015 break;
5016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
5019 /*
5020 * If abort has not completed, indicate the reset has, else call the
5021 * abort's done function to wake the sleeping eh thread
5022 */
5023 if (ipr_cmd->sibling->sibling)
5024 ipr_cmd->sibling->sibling = NULL;
5025 else
5026 ipr_cmd->sibling->done(ipr_cmd->sibling);
5027
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005028 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 LEAVE;
5030}
5031
5032/**
5033 * ipr_abort_timeout - An abort task has timed out
5034 * @ipr_cmd: ipr command struct
5035 *
5036 * This function handles when an abort task times out. If this
5037 * happens we issue a bus reset since we have resources tied
5038 * up that must be freed before returning to the midlayer.
5039 *
5040 * Return value:
5041 * none
5042 **/
5043static void ipr_abort_timeout(struct ipr_cmnd *ipr_cmd)
5044{
5045 struct ipr_cmnd *reset_cmd;
5046 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
5047 struct ipr_cmd_pkt *cmd_pkt;
5048 unsigned long lock_flags = 0;
5049
5050 ENTER;
5051 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
5052 if (ipr_cmd->completion.done || ioa_cfg->in_reset_reload) {
5053 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5054 return;
5055 }
5056
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005057 sdev_printk(KERN_ERR, ipr_cmd->u.sdev, "Abort timed out. Resetting bus.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 reset_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
5059 ipr_cmd->sibling = reset_cmd;
5060 reset_cmd->sibling = ipr_cmd;
5061 reset_cmd->ioarcb.res_handle = ipr_cmd->ioarcb.res_handle;
5062 cmd_pkt = &reset_cmd->ioarcb.cmd_pkt;
5063 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5064 cmd_pkt->cdb[0] = IPR_RESET_DEVICE;
5065 cmd_pkt->cdb[2] = IPR_RESET_TYPE_SELECT | IPR_BUS_RESET;
5066
5067 ipr_do_req(reset_cmd, ipr_bus_reset_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
5068 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
5069 LEAVE;
5070}
5071
5072/**
5073 * ipr_cancel_op - Cancel specified op
5074 * @scsi_cmd: scsi command struct
5075 *
5076 * This function cancels specified op.
5077 *
5078 * Return value:
5079 * SUCCESS / FAILED
5080 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005081static int ipr_cancel_op(struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082{
5083 struct ipr_cmnd *ipr_cmd;
5084 struct ipr_ioa_cfg *ioa_cfg;
5085 struct ipr_resource_entry *res;
5086 struct ipr_cmd_pkt *cmd_pkt;
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02005087 u32 ioasc, int_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 int op_found = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005089 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
5091 ENTER;
5092 ioa_cfg = (struct ipr_ioa_cfg *)scsi_cmd->device->host->hostdata;
5093 res = scsi_cmd->device->hostdata;
5094
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005095 /* If we are currently going through reset/reload, return failed.
5096 * This will force the mid-layer to call ipr_eh_host_reset,
5097 * which will then go to sleep and wait for the reset to complete
5098 */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005099 if (ioa_cfg->in_reset_reload ||
5100 ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005101 return FAILED;
Kleber Sacilotto de Souzaa92fa252012-01-16 19:30:25 -02005102 if (!res)
5103 return FAILED;
5104
5105 /*
5106 * If we are aborting a timed out op, chances are that the timeout was caused
5107 * by a still not detected EEH error. In such cases, reading a register will
5108 * trigger the EEH recovery infrastructure.
5109 */
5110 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
5111
5112 if (!ipr_is_gscsi(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 return FAILED;
5114
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005115 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005116 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005117 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
5118 if (ipr_cmd->scsi_cmd == scsi_cmd) {
5119 ipr_cmd->done = ipr_scsi_eh_done;
5120 op_found = 1;
5121 break;
5122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005124 spin_unlock(&hrrq->_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 }
5126
5127 if (!op_found)
5128 return SUCCESS;
5129
5130 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08005131 ipr_cmd->ioarcb.res_handle = res->res_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
5133 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5134 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
5135 ipr_cmd->u.sdev = scsi_cmd->device;
5136
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005137 scmd_printk(KERN_ERR, scsi_cmd, "Aborting command: %02X\n",
5138 scsi_cmd->cmnd[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 ipr_send_blocking_cmd(ipr_cmd, ipr_abort_timeout, IPR_CANCEL_ALL_TIMEOUT);
Wayne Boyer96d21f02010-05-10 09:13:27 -07005140 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141
5142 /*
5143 * If the abort task timed out and we sent a bus reset, we will get
5144 * one the following responses to the abort
5145 */
5146 if (ioasc == IPR_IOASC_BUS_WAS_RESET || ioasc == IPR_IOASC_SYNC_REQUIRED) {
5147 ioasc = 0;
5148 ipr_trace;
5149 }
5150
Kleber Sacilotto de Souzac4ee22a2013-03-14 13:52:23 -05005151 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005152 if (!ipr_is_naca_model(res))
5153 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154
5155 LEAVE;
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005156 return IPR_IOASC_SENSE_KEY(ioasc) ? FAILED : SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157}
5158
5159/**
5160 * ipr_eh_abort - Abort a single op
5161 * @scsi_cmd: scsi command struct
5162 *
5163 * Return value:
5164 * SUCCESS / FAILED
5165 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03005166static int ipr_eh_abort(struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167{
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005168 unsigned long flags;
5169 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
5171 ENTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005173 spin_lock_irqsave(scsi_cmd->device->host->host_lock, flags);
5174 rc = ipr_cancel_op(scsi_cmd);
5175 spin_unlock_irqrestore(scsi_cmd->device->host->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
5177 LEAVE;
Jeff Garzik 8fa728a2005-05-28 07:54:40 -04005178 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179}
5180
5181/**
5182 * ipr_handle_other_interrupt - Handle "other" interrupts
5183 * @ioa_cfg: ioa config struct
Wayne Boyer634651f2010-08-27 14:45:07 -07005184 * @int_reg: interrupt register
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 *
5186 * Return value:
5187 * IRQ_NONE / IRQ_HANDLED
5188 **/
Wayne Boyer634651f2010-08-27 14:45:07 -07005189static irqreturn_t ipr_handle_other_interrupt(struct ipr_ioa_cfg *ioa_cfg,
Wayne Boyer630ad8312011-04-07 12:12:30 -07005190 u32 int_reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191{
5192 irqreturn_t rc = IRQ_HANDLED;
Wayne Boyer7dacb642011-04-12 10:29:02 -07005193 u32 int_mask_reg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005194
Wayne Boyer7dacb642011-04-12 10:29:02 -07005195 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
5196 int_reg &= ~int_mask_reg;
5197
5198 /* If an interrupt on the adapter did not occur, ignore it.
5199 * Or in the case of SIS 64, check for a stage change interrupt.
5200 */
5201 if ((int_reg & IPR_PCII_OPER_INTERRUPTS) == 0) {
5202 if (ioa_cfg->sis64) {
5203 int_mask_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
5204 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5205 if (int_reg & IPR_PCII_IPL_STAGE_CHANGE) {
5206
5207 /* clear stage change */
5208 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.clr_interrupt_reg);
5209 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg;
5210 list_del(&ioa_cfg->reset_cmd->queue);
5211 del_timer(&ioa_cfg->reset_cmd->timer);
5212 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
5213 return IRQ_HANDLED;
5214 }
5215 }
5216
5217 return IRQ_NONE;
5218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
5220 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
5221 /* Mask the interrupt */
5222 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.set_interrupt_mask_reg);
5223
5224 /* Clear the interrupt */
5225 writel(IPR_PCII_IOA_TRANS_TO_OPER, ioa_cfg->regs.clr_interrupt_reg);
5226 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
5227
5228 list_del(&ioa_cfg->reset_cmd->queue);
5229 del_timer(&ioa_cfg->reset_cmd->timer);
5230 ipr_reset_ioa_job(ioa_cfg->reset_cmd);
Wayne Boyer7dacb642011-04-12 10:29:02 -07005231 } else if ((int_reg & IPR_PCII_HRRQ_UPDATED) == int_reg) {
Brian King7dd21302012-03-14 21:20:08 -05005232 if (ioa_cfg->clear_isr) {
5233 if (ipr_debug && printk_ratelimit())
5234 dev_err(&ioa_cfg->pdev->dev,
5235 "Spurious interrupt detected. 0x%08X\n", int_reg);
5236 writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg32);
5237 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5238 return IRQ_NONE;
5239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 } else {
5241 if (int_reg & IPR_PCII_IOA_UNIT_CHECKED)
5242 ioa_cfg->ioa_unit_checked = 1;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005243 else if (int_reg & IPR_PCII_NO_HOST_RRQ)
5244 dev_err(&ioa_cfg->pdev->dev,
5245 "No Host RRQ. 0x%08X\n", int_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 else
5247 dev_err(&ioa_cfg->pdev->dev,
5248 "Permanent IOA failure. 0x%08X\n", int_reg);
5249
5250 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5251 ioa_cfg->sdt_state = GET_DUMP;
5252
5253 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
5254 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5255 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005256
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 return rc;
5258}
5259
5260/**
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005261 * ipr_isr_eh - Interrupt service routine error handler
5262 * @ioa_cfg: ioa config struct
5263 * @msg: message to log
5264 *
5265 * Return value:
5266 * none
5267 **/
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005268static void ipr_isr_eh(struct ipr_ioa_cfg *ioa_cfg, char *msg, u16 number)
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005269{
5270 ioa_cfg->errors_logged++;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005271 dev_err(&ioa_cfg->pdev->dev, "%s %d\n", msg, number);
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005272
5273 if (WAIT_FOR_DUMP == ioa_cfg->sdt_state)
5274 ioa_cfg->sdt_state = GET_DUMP;
5275
5276 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
5277}
5278
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005279static int ipr_process_hrrq(struct ipr_hrr_queue *hrr_queue, int budget,
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005280 struct list_head *doneq)
5281{
5282 u32 ioasc;
5283 u16 cmd_index;
5284 struct ipr_cmnd *ipr_cmd;
5285 struct ipr_ioa_cfg *ioa_cfg = hrr_queue->ioa_cfg;
5286 int num_hrrq = 0;
5287
5288 /* If interrupts are disabled, ignore the interrupt */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005289 if (!hrr_queue->allow_interrupts)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005290 return 0;
5291
5292 while ((be32_to_cpu(*hrr_queue->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5293 hrr_queue->toggle_bit) {
5294
5295 cmd_index = (be32_to_cpu(*hrr_queue->hrrq_curr) &
5296 IPR_HRRQ_REQ_RESP_HANDLE_MASK) >>
5297 IPR_HRRQ_REQ_RESP_HANDLE_SHIFT;
5298
5299 if (unlikely(cmd_index > hrr_queue->max_cmd_id ||
5300 cmd_index < hrr_queue->min_cmd_id)) {
5301 ipr_isr_eh(ioa_cfg,
5302 "Invalid response handle from IOA: ",
5303 cmd_index);
5304 break;
5305 }
5306
5307 ipr_cmd = ioa_cfg->ipr_cmnd_list[cmd_index];
5308 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
5309
5310 ipr_trc_hook(ipr_cmd, IPR_TRACE_FINISH, ioasc);
5311
5312 list_move_tail(&ipr_cmd->queue, doneq);
5313
5314 if (hrr_queue->hrrq_curr < hrr_queue->hrrq_end) {
5315 hrr_queue->hrrq_curr++;
5316 } else {
5317 hrr_queue->hrrq_curr = hrr_queue->hrrq_start;
5318 hrr_queue->toggle_bit ^= 1u;
5319 }
5320 num_hrrq++;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005321 if (budget > 0 && num_hrrq >= budget)
5322 break;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005323 }
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005324
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005325 return num_hrrq;
5326}
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005327
5328static int ipr_iopoll(struct blk_iopoll *iop, int budget)
5329{
5330 struct ipr_ioa_cfg *ioa_cfg;
5331 struct ipr_hrr_queue *hrrq;
5332 struct ipr_cmnd *ipr_cmd, *temp;
5333 unsigned long hrrq_flags;
5334 int completed_ops;
5335 LIST_HEAD(doneq);
5336
5337 hrrq = container_of(iop, struct ipr_hrr_queue, iopoll);
5338 ioa_cfg = hrrq->ioa_cfg;
5339
5340 spin_lock_irqsave(hrrq->lock, hrrq_flags);
5341 completed_ops = ipr_process_hrrq(hrrq, budget, &doneq);
5342
5343 if (completed_ops < budget)
5344 blk_iopoll_complete(iop);
5345 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
5346
5347 list_for_each_entry_safe(ipr_cmd, temp, &doneq, queue) {
5348 list_del(&ipr_cmd->queue);
5349 del_timer(&ipr_cmd->timer);
5350 ipr_cmd->fast_done(ipr_cmd);
5351 }
5352
5353 return completed_ops;
5354}
5355
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005356/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 * ipr_isr - Interrupt service routine
5358 * @irq: irq number
5359 * @devp: pointer to ioa config struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 *
5361 * Return value:
5362 * IRQ_NONE / IRQ_HANDLED
5363 **/
David Howells7d12e782006-10-05 14:55:46 +01005364static irqreturn_t ipr_isr(int irq, void *devp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005366 struct ipr_hrr_queue *hrrq = (struct ipr_hrr_queue *)devp;
5367 struct ipr_ioa_cfg *ioa_cfg = hrrq->ioa_cfg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005368 unsigned long hrrq_flags = 0;
Wayne Boyer7dacb642011-04-12 10:29:02 -07005369 u32 int_reg = 0;
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005370 int num_hrrq = 0;
Wayne Boyer7dacb642011-04-12 10:29:02 -07005371 int irq_none = 0;
Brian King172cd6e2012-07-17 08:14:40 -05005372 struct ipr_cmnd *ipr_cmd, *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 irqreturn_t rc = IRQ_NONE;
Brian King172cd6e2012-07-17 08:14:40 -05005374 LIST_HEAD(doneq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005376 spin_lock_irqsave(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 /* If interrupts are disabled, ignore the interrupt */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005378 if (!hrrq->allow_interrupts) {
5379 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 return IRQ_NONE;
5381 }
5382
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 while (1) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005384 if (ipr_process_hrrq(hrrq, -1, &doneq)) {
5385 rc = IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005387 if (!ioa_cfg->clear_isr)
5388 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 /* Clear the PCI interrupt */
Wayne Boyera5442ba2011-05-17 09:18:53 -07005391 num_hrrq = 0;
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005392 do {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005393 writel(IPR_PCII_HRRQ_UPDATED,
5394 ioa_cfg->regs.clr_interrupt_reg32);
Wayne Boyer7dacb642011-04-12 10:29:02 -07005395 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005396 } while (int_reg & IPR_PCII_HRRQ_UPDATED &&
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005397 num_hrrq++ < IPR_MAX_HRRQ_RETRIES);
Wayne Boyer3feeb89d2009-10-20 11:09:00 -07005398
Wayne Boyer7dacb642011-04-12 10:29:02 -07005399 } else if (rc == IRQ_NONE && irq_none == 0) {
5400 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
5401 irq_none++;
Wayne Boyera5442ba2011-05-17 09:18:53 -07005402 } else if (num_hrrq == IPR_MAX_HRRQ_RETRIES &&
5403 int_reg & IPR_PCII_HRRQ_UPDATED) {
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005404 ipr_isr_eh(ioa_cfg,
5405 "Error clearing HRRQ: ", num_hrrq);
Brian King172cd6e2012-07-17 08:14:40 -05005406 rc = IRQ_HANDLED;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005407 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 } else
5409 break;
5410 }
5411
5412 if (unlikely(rc == IRQ_NONE))
Wayne Boyer634651f2010-08-27 14:45:07 -07005413 rc = ipr_handle_other_interrupt(ioa_cfg, int_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005415 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King172cd6e2012-07-17 08:14:40 -05005416 list_for_each_entry_safe(ipr_cmd, temp, &doneq, queue) {
5417 list_del(&ipr_cmd->queue);
5418 del_timer(&ipr_cmd->timer);
5419 ipr_cmd->fast_done(ipr_cmd);
5420 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005421 return rc;
5422}
Brian King172cd6e2012-07-17 08:14:40 -05005423
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005424/**
5425 * ipr_isr_mhrrq - Interrupt service routine
5426 * @irq: irq number
5427 * @devp: pointer to ioa config struct
5428 *
5429 * Return value:
5430 * IRQ_NONE / IRQ_HANDLED
5431 **/
5432static irqreturn_t ipr_isr_mhrrq(int irq, void *devp)
5433{
5434 struct ipr_hrr_queue *hrrq = (struct ipr_hrr_queue *)devp;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005435 struct ipr_ioa_cfg *ioa_cfg = hrrq->ioa_cfg;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005436 unsigned long hrrq_flags = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005437 struct ipr_cmnd *ipr_cmd, *temp;
5438 irqreturn_t rc = IRQ_NONE;
5439 LIST_HEAD(doneq);
5440
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005441 spin_lock_irqsave(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005442
5443 /* If interrupts are disabled, ignore the interrupt */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005444 if (!hrrq->allow_interrupts) {
5445 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005446 return IRQ_NONE;
5447 }
5448
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005449 if (blk_iopoll_enabled && ioa_cfg->iopoll_weight &&
5450 ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
5451 if ((be32_to_cpu(*hrrq->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5452 hrrq->toggle_bit) {
5453 if (!blk_iopoll_sched_prep(&hrrq->iopoll))
5454 blk_iopoll_sched(&hrrq->iopoll);
5455 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
5456 return IRQ_HANDLED;
5457 }
5458 } else {
5459 if ((be32_to_cpu(*hrrq->hrrq_curr) & IPR_HRRQ_TOGGLE_BIT) ==
5460 hrrq->toggle_bit)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005461
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06005462 if (ipr_process_hrrq(hrrq, -1, &doneq))
5463 rc = IRQ_HANDLED;
5464 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005465
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06005466 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005467
5468 list_for_each_entry_safe(ipr_cmd, temp, &doneq, queue) {
5469 list_del(&ipr_cmd->queue);
5470 del_timer(&ipr_cmd->timer);
5471 ipr_cmd->fast_done(ipr_cmd);
5472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 return rc;
5474}
5475
5476/**
Wayne Boyera32c0552010-02-19 13:23:36 -08005477 * ipr_build_ioadl64 - Build a scatter/gather list and map the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 * @ioa_cfg: ioa config struct
5479 * @ipr_cmd: ipr command struct
5480 *
5481 * Return value:
5482 * 0 on success / -1 on failure
5483 **/
Wayne Boyera32c0552010-02-19 13:23:36 -08005484static int ipr_build_ioadl64(struct ipr_ioa_cfg *ioa_cfg,
5485 struct ipr_cmnd *ipr_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486{
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005487 int i, nseg;
5488 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 u32 length;
5490 u32 ioadl_flags = 0;
5491 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5492 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08005493 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ioadl64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005495 length = scsi_bufflen(scsi_cmd);
5496 if (!length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 return 0;
5498
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005499 nseg = scsi_dma_map(scsi_cmd);
5500 if (nseg < 0) {
Anton Blanchard51f52a42011-05-09 10:07:40 +10005501 if (printk_ratelimit())
5502 dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005503 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504 }
5505
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005506 ipr_cmd->dma_use_sg = nseg;
5507
Wayne Boyer438b0332010-05-10 09:13:00 -07005508 ioarcb->data_transfer_length = cpu_to_be32(length);
Wayne Boyerb8803b12010-05-14 08:55:13 -07005509 ioarcb->ioadl_len =
5510 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
Wayne Boyer438b0332010-05-10 09:13:00 -07005511
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005512 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5513 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5514 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08005515 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE)
5516 ioadl_flags = IPR_IOADL_FLAGS_READ;
5517
5518 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5519 ioadl64[i].flags = cpu_to_be32(ioadl_flags);
5520 ioadl64[i].data_len = cpu_to_be32(sg_dma_len(sg));
5521 ioadl64[i].address = cpu_to_be64(sg_dma_address(sg));
5522 }
5523
5524 ioadl64[i-1].flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5525 return 0;
5526}
5527
5528/**
5529 * ipr_build_ioadl - Build a scatter/gather list and map the buffer
5530 * @ioa_cfg: ioa config struct
5531 * @ipr_cmd: ipr command struct
5532 *
5533 * Return value:
5534 * 0 on success / -1 on failure
5535 **/
5536static int ipr_build_ioadl(struct ipr_ioa_cfg *ioa_cfg,
5537 struct ipr_cmnd *ipr_cmd)
5538{
5539 int i, nseg;
5540 struct scatterlist *sg;
5541 u32 length;
5542 u32 ioadl_flags = 0;
5543 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5544 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
5545 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
5546
5547 length = scsi_bufflen(scsi_cmd);
5548 if (!length)
5549 return 0;
5550
5551 nseg = scsi_dma_map(scsi_cmd);
5552 if (nseg < 0) {
5553 dev_err(&ioa_cfg->pdev->dev, "pci_map_sg failed!\n");
5554 return -1;
5555 }
5556
5557 ipr_cmd->dma_use_sg = nseg;
5558
5559 if (scsi_cmd->sc_data_direction == DMA_TO_DEVICE) {
5560 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
5561 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
5562 ioarcb->data_transfer_length = cpu_to_be32(length);
5563 ioarcb->ioadl_len =
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005564 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5565 } else if (scsi_cmd->sc_data_direction == DMA_FROM_DEVICE) {
5566 ioadl_flags = IPR_IOADL_FLAGS_READ;
5567 ioarcb->read_data_transfer_length = cpu_to_be32(length);
5568 ioarcb->read_ioadl_len =
5569 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
5570 }
5571
Wayne Boyera32c0552010-02-19 13:23:36 -08005572 if (ipr_cmd->dma_use_sg <= ARRAY_SIZE(ioarcb->u.add_data.u.ioadl)) {
5573 ioadl = ioarcb->u.add_data.u.ioadl;
5574 ioarcb->write_ioadl_addr = cpu_to_be32((ipr_cmd->dma_addr) +
5575 offsetof(struct ipr_ioarcb, u.add_data));
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005576 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
5577 }
5578
5579 scsi_for_each_sg(scsi_cmd, sg, ipr_cmd->dma_use_sg, i) {
5580 ioadl[i].flags_and_data_len =
5581 cpu_to_be32(ioadl_flags | sg_dma_len(sg));
5582 ioadl[i].address = cpu_to_be32(sg_dma_address(sg));
5583 }
5584
5585 ioadl[i-1].flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
5586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587}
5588
5589/**
5590 * ipr_get_task_attributes - Translate SPI Q-Tag to task attributes
5591 * @scsi_cmd: scsi command struct
5592 *
5593 * Return value:
5594 * task attributes
5595 **/
5596static u8 ipr_get_task_attributes(struct scsi_cmnd *scsi_cmd)
5597{
5598 u8 tag[2];
5599 u8 rc = IPR_FLAGS_LO_UNTAGGED_TASK;
5600
5601 if (scsi_populate_tag_msg(scsi_cmd, tag)) {
5602 switch (tag[0]) {
5603 case MSG_SIMPLE_TAG:
5604 rc = IPR_FLAGS_LO_SIMPLE_TASK;
5605 break;
5606 case MSG_HEAD_TAG:
5607 rc = IPR_FLAGS_LO_HEAD_OF_Q_TASK;
5608 break;
5609 case MSG_ORDERED_TAG:
5610 rc = IPR_FLAGS_LO_ORDERED_TASK;
5611 break;
5612 };
5613 }
5614
5615 return rc;
5616}
5617
5618/**
5619 * ipr_erp_done - Process completion of ERP for a device
5620 * @ipr_cmd: ipr command struct
5621 *
5622 * This function copies the sense buffer into the scsi_cmd
5623 * struct and pushes the scsi_done function.
5624 *
5625 * Return value:
5626 * nothing
5627 **/
5628static void ipr_erp_done(struct ipr_cmnd *ipr_cmd)
5629{
5630 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5631 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005632 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
5634 if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
5635 scsi_cmd->result |= (DID_ERROR << 16);
Brian Kingfb3ed3c2006-03-29 09:37:37 -06005636 scmd_printk(KERN_ERR, scsi_cmd,
5637 "Request Sense failed with IOASC: 0x%08X\n", ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638 } else {
5639 memcpy(scsi_cmd->sense_buffer, ipr_cmd->sense_buffer,
5640 SCSI_SENSE_BUFFERSIZE);
5641 }
5642
5643 if (res) {
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005644 if (!ipr_is_naca_model(res))
5645 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 res->in_erp = 0;
5647 }
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09005648 scsi_dma_unmap(ipr_cmd->scsi_cmd);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06005649 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650 scsi_cmd->scsi_done(scsi_cmd);
5651}
5652
5653/**
5654 * ipr_reinit_ipr_cmnd_for_erp - Re-initialize a cmnd block to be used for ERP
5655 * @ipr_cmd: ipr command struct
5656 *
5657 * Return value:
5658 * none
5659 **/
5660static void ipr_reinit_ipr_cmnd_for_erp(struct ipr_cmnd *ipr_cmd)
5661{
Brian King51b1c7e2007-03-29 12:43:50 -05005662 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005663 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
Wayne Boyera32c0552010-02-19 13:23:36 -08005664 dma_addr_t dma_addr = ipr_cmd->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
5666 memset(&ioarcb->cmd_pkt, 0, sizeof(struct ipr_cmd_pkt));
Wayne Boyera32c0552010-02-19 13:23:36 -08005667 ioarcb->data_transfer_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 ioarcb->read_data_transfer_length = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -08005669 ioarcb->ioadl_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 ioarcb->read_ioadl_len = 0;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005671 ioasa->hdr.ioasc = 0;
5672 ioasa->hdr.residual_data_len = 0;
Wayne Boyera32c0552010-02-19 13:23:36 -08005673
5674 if (ipr_cmd->ioa_cfg->sis64)
5675 ioarcb->u.sis64_addr_data.data_ioadl_addr =
5676 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
5677 else {
5678 ioarcb->write_ioadl_addr =
5679 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
5680 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
5681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682}
5683
5684/**
5685 * ipr_erp_request_sense - Send request sense to a device
5686 * @ipr_cmd: ipr command struct
5687 *
5688 * This function sends a request sense to a device as a result
5689 * of a check condition.
5690 *
5691 * Return value:
5692 * nothing
5693 **/
5694static void ipr_erp_request_sense(struct ipr_cmnd *ipr_cmd)
5695{
5696 struct ipr_cmd_pkt *cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005697 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
5699 if (IPR_IOASC_SENSE_KEY(ioasc) > 0) {
5700 ipr_erp_done(ipr_cmd);
5701 return;
5702 }
5703
5704 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
5705
5706 cmd_pkt->request_type = IPR_RQTYPE_SCSICDB;
5707 cmd_pkt->cdb[0] = REQUEST_SENSE;
5708 cmd_pkt->cdb[4] = SCSI_SENSE_BUFFERSIZE;
5709 cmd_pkt->flags_hi |= IPR_FLAGS_HI_SYNC_OVERRIDE;
5710 cmd_pkt->flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
5711 cmd_pkt->timeout = cpu_to_be16(IPR_REQUEST_SENSE_TIMEOUT / HZ);
5712
Wayne Boyera32c0552010-02-19 13:23:36 -08005713 ipr_init_ioadl(ipr_cmd, ipr_cmd->sense_buffer_dma,
5714 SCSI_SENSE_BUFFERSIZE, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
5716 ipr_do_req(ipr_cmd, ipr_erp_done, ipr_timeout,
5717 IPR_REQUEST_SENSE_TIMEOUT * 2);
5718}
5719
5720/**
5721 * ipr_erp_cancel_all - Send cancel all to a device
5722 * @ipr_cmd: ipr command struct
5723 *
5724 * This function sends a cancel all to a device to clear the
5725 * queue. If we are running TCQ on the device, QERR is set to 1,
5726 * which means all outstanding ops have been dropped on the floor.
5727 * Cancel all will return them to us.
5728 *
5729 * Return value:
5730 * nothing
5731 **/
5732static void ipr_erp_cancel_all(struct ipr_cmnd *ipr_cmd)
5733{
5734 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5735 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
5736 struct ipr_cmd_pkt *cmd_pkt;
5737
5738 res->in_erp = 1;
5739
5740 ipr_reinit_ipr_cmnd_for_erp(ipr_cmd);
5741
5742 if (!scsi_get_tag_type(scsi_cmd->device)) {
5743 ipr_erp_request_sense(ipr_cmd);
5744 return;
5745 }
5746
5747 cmd_pkt = &ipr_cmd->ioarcb.cmd_pkt;
5748 cmd_pkt->request_type = IPR_RQTYPE_IOACMD;
5749 cmd_pkt->cdb[0] = IPR_CANCEL_ALL_REQUESTS;
5750
5751 ipr_do_req(ipr_cmd, ipr_erp_request_sense, ipr_timeout,
5752 IPR_CANCEL_ALL_TIMEOUT);
5753}
5754
5755/**
5756 * ipr_dump_ioasa - Dump contents of IOASA
5757 * @ioa_cfg: ioa config struct
5758 * @ipr_cmd: ipr command struct
Brian Kingfe964d02006-03-29 09:37:29 -06005759 * @res: resource entry struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 *
5761 * This function is invoked by the interrupt handler when ops
5762 * fail. It will log the IOASA if appropriate. Only called
5763 * for GPDD ops.
5764 *
5765 * Return value:
5766 * none
5767 **/
5768static void ipr_dump_ioasa(struct ipr_ioa_cfg *ioa_cfg,
Brian Kingfe964d02006-03-29 09:37:29 -06005769 struct ipr_cmnd *ipr_cmd, struct ipr_resource_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770{
5771 int i;
5772 u16 data_len;
Brian Kingb0692dd2007-03-29 12:43:09 -05005773 u32 ioasc, fd_ioasc;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005774 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775 __be32 *ioasa_data = (__be32 *)ioasa;
5776 int error_index;
5777
Wayne Boyer96d21f02010-05-10 09:13:27 -07005778 ioasc = be32_to_cpu(ioasa->hdr.ioasc) & IPR_IOASC_IOASC_MASK;
5779 fd_ioasc = be32_to_cpu(ioasa->hdr.fd_ioasc) & IPR_IOASC_IOASC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
5781 if (0 == ioasc)
5782 return;
5783
5784 if (ioa_cfg->log_level < IPR_DEFAULT_LOG_LEVEL)
5785 return;
5786
Brian Kingb0692dd2007-03-29 12:43:09 -05005787 if (ioasc == IPR_IOASC_BUS_WAS_RESET && fd_ioasc)
5788 error_index = ipr_get_error(fd_ioasc);
5789 else
5790 error_index = ipr_get_error(ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
5792 if (ioa_cfg->log_level < IPR_MAX_LOG_LEVEL) {
5793 /* Don't log an error if the IOA already logged one */
Wayne Boyer96d21f02010-05-10 09:13:27 -07005794 if (ioasa->hdr.ilid != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 return;
5796
Brian Kingcc9bd5d2007-03-29 12:43:01 -05005797 if (!ipr_is_gscsi(res))
5798 return;
5799
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 if (ipr_error_table[error_index].log_ioasa == 0)
5801 return;
5802 }
5803
Brian Kingfe964d02006-03-29 09:37:29 -06005804 ipr_res_err(ioa_cfg, res, "%s\n", ipr_error_table[error_index].error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805
Wayne Boyer96d21f02010-05-10 09:13:27 -07005806 data_len = be16_to_cpu(ioasa->hdr.ret_stat_len);
5807 if (ioa_cfg->sis64 && sizeof(struct ipr_ioasa64) < data_len)
5808 data_len = sizeof(struct ipr_ioasa64);
5809 else if (!ioa_cfg->sis64 && sizeof(struct ipr_ioasa) < data_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 data_len = sizeof(struct ipr_ioasa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
5812 ipr_err("IOASA Dump:\n");
5813
5814 for (i = 0; i < data_len / 4; i += 4) {
5815 ipr_err("%08X: %08X %08X %08X %08X\n", i*4,
5816 be32_to_cpu(ioasa_data[i]),
5817 be32_to_cpu(ioasa_data[i+1]),
5818 be32_to_cpu(ioasa_data[i+2]),
5819 be32_to_cpu(ioasa_data[i+3]));
5820 }
5821}
5822
5823/**
5824 * ipr_gen_sense - Generate SCSI sense data from an IOASA
5825 * @ioasa: IOASA
5826 * @sense_buf: sense data buffer
5827 *
5828 * Return value:
5829 * none
5830 **/
5831static void ipr_gen_sense(struct ipr_cmnd *ipr_cmd)
5832{
5833 u32 failing_lba;
5834 u8 *sense_buf = ipr_cmd->scsi_cmd->sense_buffer;
5835 struct ipr_resource_entry *res = ipr_cmd->scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005836 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
5837 u32 ioasc = be32_to_cpu(ioasa->hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838
5839 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
5840
5841 if (ioasc >= IPR_FIRST_DRIVER_IOASC)
5842 return;
5843
5844 ipr_cmd->scsi_cmd->result = SAM_STAT_CHECK_CONDITION;
5845
5846 if (ipr_is_vset_device(res) &&
5847 ioasc == IPR_IOASC_MED_DO_NOT_REALLOC &&
5848 ioasa->u.vset.failing_lba_hi != 0) {
5849 sense_buf[0] = 0x72;
5850 sense_buf[1] = IPR_IOASC_SENSE_KEY(ioasc);
5851 sense_buf[2] = IPR_IOASC_SENSE_CODE(ioasc);
5852 sense_buf[3] = IPR_IOASC_SENSE_QUAL(ioasc);
5853
5854 sense_buf[7] = 12;
5855 sense_buf[8] = 0;
5856 sense_buf[9] = 0x0A;
5857 sense_buf[10] = 0x80;
5858
5859 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_hi);
5860
5861 sense_buf[12] = (failing_lba & 0xff000000) >> 24;
5862 sense_buf[13] = (failing_lba & 0x00ff0000) >> 16;
5863 sense_buf[14] = (failing_lba & 0x0000ff00) >> 8;
5864 sense_buf[15] = failing_lba & 0x000000ff;
5865
5866 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
5867
5868 sense_buf[16] = (failing_lba & 0xff000000) >> 24;
5869 sense_buf[17] = (failing_lba & 0x00ff0000) >> 16;
5870 sense_buf[18] = (failing_lba & 0x0000ff00) >> 8;
5871 sense_buf[19] = failing_lba & 0x000000ff;
5872 } else {
5873 sense_buf[0] = 0x70;
5874 sense_buf[2] = IPR_IOASC_SENSE_KEY(ioasc);
5875 sense_buf[12] = IPR_IOASC_SENSE_CODE(ioasc);
5876 sense_buf[13] = IPR_IOASC_SENSE_QUAL(ioasc);
5877
5878 /* Illegal request */
5879 if ((IPR_IOASC_SENSE_KEY(ioasc) == 0x05) &&
Wayne Boyer96d21f02010-05-10 09:13:27 -07005880 (be32_to_cpu(ioasa->hdr.ioasc_specific) & IPR_FIELD_POINTER_VALID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 sense_buf[7] = 10; /* additional length */
5882
5883 /* IOARCB was in error */
5884 if (IPR_IOASC_SENSE_CODE(ioasc) == 0x24)
5885 sense_buf[15] = 0xC0;
5886 else /* Parameter data was invalid */
5887 sense_buf[15] = 0x80;
5888
5889 sense_buf[16] =
5890 ((IPR_FIELD_POINTER_MASK &
Wayne Boyer96d21f02010-05-10 09:13:27 -07005891 be32_to_cpu(ioasa->hdr.ioasc_specific)) >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892 sense_buf[17] =
5893 (IPR_FIELD_POINTER_MASK &
Wayne Boyer96d21f02010-05-10 09:13:27 -07005894 be32_to_cpu(ioasa->hdr.ioasc_specific)) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 } else {
5896 if (ioasc == IPR_IOASC_MED_DO_NOT_REALLOC) {
5897 if (ipr_is_vset_device(res))
5898 failing_lba = be32_to_cpu(ioasa->u.vset.failing_lba_lo);
5899 else
5900 failing_lba = be32_to_cpu(ioasa->u.dasd.failing_lba);
5901
5902 sense_buf[0] |= 0x80; /* Or in the Valid bit */
5903 sense_buf[3] = (failing_lba & 0xff000000) >> 24;
5904 sense_buf[4] = (failing_lba & 0x00ff0000) >> 16;
5905 sense_buf[5] = (failing_lba & 0x0000ff00) >> 8;
5906 sense_buf[6] = failing_lba & 0x000000ff;
5907 }
5908
5909 sense_buf[7] = 6; /* additional length */
5910 }
5911 }
5912}
5913
5914/**
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005915 * ipr_get_autosense - Copy autosense data to sense buffer
5916 * @ipr_cmd: ipr command struct
5917 *
5918 * This function copies the autosense buffer to the buffer
5919 * in the scsi_cmd, if there is autosense available.
5920 *
5921 * Return value:
5922 * 1 if autosense was available / 0 if not
5923 **/
5924static int ipr_get_autosense(struct ipr_cmnd *ipr_cmd)
5925{
Wayne Boyer96d21f02010-05-10 09:13:27 -07005926 struct ipr_ioasa *ioasa = &ipr_cmd->s.ioasa;
5927 struct ipr_ioasa64 *ioasa64 = &ipr_cmd->s.ioasa64;
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005928
Wayne Boyer96d21f02010-05-10 09:13:27 -07005929 if ((be32_to_cpu(ioasa->hdr.ioasc_specific) & IPR_AUTOSENSE_VALID) == 0)
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005930 return 0;
5931
Wayne Boyer96d21f02010-05-10 09:13:27 -07005932 if (ipr_cmd->ioa_cfg->sis64)
5933 memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa64->auto_sense.data,
5934 min_t(u16, be16_to_cpu(ioasa64->auto_sense.auto_sense_len),
5935 SCSI_SENSE_BUFFERSIZE));
5936 else
5937 memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa->auto_sense.data,
5938 min_t(u16, be16_to_cpu(ioasa->auto_sense.auto_sense_len),
5939 SCSI_SENSE_BUFFERSIZE));
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005940 return 1;
5941}
5942
5943/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944 * ipr_erp_start - Process an error response for a SCSI op
5945 * @ioa_cfg: ioa config struct
5946 * @ipr_cmd: ipr command struct
5947 *
5948 * This function determines whether or not to initiate ERP
5949 * on the affected device.
5950 *
5951 * Return value:
5952 * nothing
5953 **/
5954static void ipr_erp_start(struct ipr_ioa_cfg *ioa_cfg,
5955 struct ipr_cmnd *ipr_cmd)
5956{
5957 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
5958 struct ipr_resource_entry *res = scsi_cmd->device->hostdata;
Wayne Boyer96d21f02010-05-10 09:13:27 -07005959 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King8a048992007-04-26 16:00:10 -05005960 u32 masked_ioasc = ioasc & IPR_IOASC_IOASC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
5962 if (!res) {
5963 ipr_scsi_eh_done(ipr_cmd);
5964 return;
5965 }
5966
Brian King8a048992007-04-26 16:00:10 -05005967 if (!ipr_is_gscsi(res) && masked_ioasc != IPR_IOASC_HW_DEV_BUS_STATUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 ipr_gen_sense(ipr_cmd);
5969
Brian Kingcc9bd5d2007-03-29 12:43:01 -05005970 ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
5971
Brian King8a048992007-04-26 16:00:10 -05005972 switch (masked_ioasc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 case IPR_IOASC_ABORTED_CMD_TERM_BY_HOST:
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005974 if (ipr_is_naca_model(res))
5975 scsi_cmd->result |= (DID_ABORT << 16);
5976 else
5977 scsi_cmd->result |= (DID_IMM_RETRY << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 break;
5979 case IPR_IOASC_IR_RESOURCE_HANDLE:
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06005980 case IPR_IOASC_IR_NO_CMDS_TO_2ND_IOA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 scsi_cmd->result |= (DID_NO_CONNECT << 16);
5982 break;
5983 case IPR_IOASC_HW_SEL_TIMEOUT:
5984 scsi_cmd->result |= (DID_NO_CONNECT << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06005985 if (!ipr_is_naca_model(res))
5986 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 break;
5988 case IPR_IOASC_SYNC_REQUIRED:
5989 if (!res->in_erp)
5990 res->needs_sync_complete = 1;
5991 scsi_cmd->result |= (DID_IMM_RETRY << 16);
5992 break;
5993 case IPR_IOASC_MED_DO_NOT_REALLOC: /* prevent retries */
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06005994 case IPR_IOASA_IR_DUAL_IOA_DISABLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995 scsi_cmd->result |= (DID_PASSTHROUGH << 16);
5996 break;
5997 case IPR_IOASC_BUS_WAS_RESET:
5998 case IPR_IOASC_BUS_WAS_RESET_BY_OTHER:
5999 /*
6000 * Report the bus reset and ask for a retry. The device
6001 * will give CC/UA the next command.
6002 */
6003 if (!res->resetting_device)
6004 scsi_report_bus_reset(ioa_cfg->host, scsi_cmd->device->channel);
6005 scsi_cmd->result |= (DID_ERROR << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006006 if (!ipr_is_naca_model(res))
6007 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 break;
6009 case IPR_IOASC_HW_DEV_BUS_STATUS:
6010 scsi_cmd->result |= IPR_IOASC_SENSE_STATUS(ioasc);
6011 if (IPR_IOASC_SENSE_STATUS(ioasc) == SAM_STAT_CHECK_CONDITION) {
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006012 if (!ipr_get_autosense(ipr_cmd)) {
6013 if (!ipr_is_naca_model(res)) {
6014 ipr_erp_cancel_all(ipr_cmd);
6015 return;
6016 }
6017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 }
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006019 if (!ipr_is_naca_model(res))
6020 res->needs_sync_complete = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 break;
6022 case IPR_IOASC_NR_INIT_CMD_REQUIRED:
6023 break;
6024 default:
Brian King5b7304f2006-08-02 14:57:51 -05006025 if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
6026 scsi_cmd->result |= (DID_ERROR << 16);
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06006027 if (!ipr_is_vset_device(res) && !ipr_is_naca_model(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028 res->needs_sync_complete = 1;
6029 break;
6030 }
6031
FUJITA Tomonori63015bc2007-05-26 00:26:59 +09006032 scsi_dma_unmap(ipr_cmd->scsi_cmd);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006033 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034 scsi_cmd->scsi_done(scsi_cmd);
6035}
6036
6037/**
6038 * ipr_scsi_done - mid-layer done function
6039 * @ipr_cmd: ipr command struct
6040 *
6041 * This function is invoked by the interrupt handler for
6042 * ops generated by the SCSI mid-layer
6043 *
6044 * Return value:
6045 * none
6046 **/
6047static void ipr_scsi_done(struct ipr_cmnd *ipr_cmd)
6048{
6049 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6050 struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006051 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006052 unsigned long hrrq_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
Wayne Boyer96d21f02010-05-10 09:13:27 -07006054 scsi_set_resid(scsi_cmd, be32_to_cpu(ipr_cmd->s.ioasa.hdr.residual_data_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055
6056 if (likely(IPR_IOASC_SENSE_KEY(ioasc) == 0)) {
Brian King172cd6e2012-07-17 08:14:40 -05006057 scsi_dma_unmap(scsi_cmd);
6058
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006059 spin_lock_irqsave(ipr_cmd->hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006060 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 scsi_cmd->scsi_done(scsi_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006062 spin_unlock_irqrestore(ipr_cmd->hrrq->lock, hrrq_flags);
Brian King172cd6e2012-07-17 08:14:40 -05006063 } else {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006064 spin_lock_irqsave(ipr_cmd->hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 ipr_erp_start(ioa_cfg, ipr_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006066 spin_unlock_irqrestore(ipr_cmd->hrrq->lock, hrrq_flags);
Brian King172cd6e2012-07-17 08:14:40 -05006067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068}
6069
6070/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071 * ipr_queuecommand - Queue a mid-layer request
Brian King00bfef22012-07-17 08:13:52 -05006072 * @shost: scsi host struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073 * @scsi_cmd: scsi command struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 *
6075 * This function queues a request generated by the mid-layer.
6076 *
6077 * Return value:
6078 * 0 on success
6079 * SCSI_MLQUEUE_DEVICE_BUSY if device is busy
6080 * SCSI_MLQUEUE_HOST_BUSY if host is busy
6081 **/
Brian King00bfef22012-07-17 08:13:52 -05006082static int ipr_queuecommand(struct Scsi_Host *shost,
6083 struct scsi_cmnd *scsi_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084{
6085 struct ipr_ioa_cfg *ioa_cfg;
6086 struct ipr_resource_entry *res;
6087 struct ipr_ioarcb *ioarcb;
6088 struct ipr_cmnd *ipr_cmd;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006089 unsigned long hrrq_flags, lock_flags;
Dan Carpenterd12f1572012-07-30 11:18:22 +03006090 int rc;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006091 struct ipr_hrr_queue *hrrq;
6092 int hrrq_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093
Brian King00bfef22012-07-17 08:13:52 -05006094 ioa_cfg = (struct ipr_ioa_cfg *)shost->hostdata;
6095
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096 scsi_cmd->result = (DID_OK << 16);
Brian King00bfef22012-07-17 08:13:52 -05006097 res = scsi_cmd->device->hostdata;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006098
6099 if (ipr_is_gata(res) && res->sata_port) {
6100 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
6101 rc = ata_sas_queuecmd(scsi_cmd, res->sata_port->ap);
6102 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
6103 return rc;
6104 }
6105
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006106 hrrq_id = ipr_get_hrrq_index(ioa_cfg);
6107 hrrq = &ioa_cfg->hrrq[hrrq_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006109 spin_lock_irqsave(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110 /*
6111 * We are currently blocking all devices due to a host reset
6112 * We have told the host to stop giving us new requests, but
6113 * ERP ops don't count. FIXME
6114 */
Brian Kingbfae7822013-01-30 23:45:08 -06006115 if (unlikely(!hrrq->allow_cmds && !hrrq->ioa_is_dead && !hrrq->removing_ioa)) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006116 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 return SCSI_MLQUEUE_HOST_BUSY;
Brian King00bfef22012-07-17 08:13:52 -05006118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119
6120 /*
6121 * FIXME - Create scsi_set_host_offline interface
6122 * and the ioa_is_dead check can be removed
6123 */
Brian Kingbfae7822013-01-30 23:45:08 -06006124 if (unlikely(hrrq->ioa_is_dead || hrrq->removing_ioa || !res)) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006125 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006126 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127 }
6128
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006129 ipr_cmd = __ipr_get_free_ipr_cmnd(hrrq);
6130 if (ipr_cmd == NULL) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006131 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006132 return SCSI_MLQUEUE_HOST_BUSY;
6133 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006134 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006135
Brian King172cd6e2012-07-17 08:14:40 -05006136 ipr_init_ipr_cmnd(ipr_cmd, ipr_scsi_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137 ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138
6139 memcpy(ioarcb->cmd_pkt.cdb, scsi_cmd->cmnd, scsi_cmd->cmd_len);
6140 ipr_cmd->scsi_cmd = scsi_cmd;
Brian King172cd6e2012-07-17 08:14:40 -05006141 ipr_cmd->done = ipr_scsi_eh_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142
6143 if (ipr_is_gscsi(res) || ipr_is_vset_device(res)) {
6144 if (scsi_cmd->underflow == 0)
6145 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
6146
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
Wayne Boyerab6c10b2011-03-31 09:56:10 -07006148 if (ipr_is_gscsi(res))
6149 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_DELAY_AFTER_RST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150 ioarcb->cmd_pkt.flags_lo |= IPR_FLAGS_LO_ALIGNED_BFR;
6151 ioarcb->cmd_pkt.flags_lo |= ipr_get_task_attributes(scsi_cmd);
6152 }
6153
6154 if (scsi_cmd->cmnd[0] >= 0xC0 &&
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006155 (!ipr_is_gscsi(res) || scsi_cmd->cmnd[0] == IPR_QUERY_RSRC_STATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Dan Carpenterd12f1572012-07-30 11:18:22 +03006159 if (ioa_cfg->sis64)
6160 rc = ipr_build_ioadl64(ioa_cfg, ipr_cmd);
6161 else
6162 rc = ipr_build_ioadl(ioa_cfg, ipr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006164 spin_lock_irqsave(hrrq->lock, hrrq_flags);
6165 if (unlikely(rc || (!hrrq->allow_cmds && !hrrq->ioa_is_dead))) {
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006166 list_add_tail(&ipr_cmd->queue, &hrrq->hrrq_free_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006167 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006168 if (!rc)
6169 scsi_dma_unmap(scsi_cmd);
Brian Kinga5fb4072012-03-14 21:20:09 -05006170 return SCSI_MLQUEUE_HOST_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171 }
6172
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006173 if (unlikely(hrrq->ioa_is_dead)) {
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006174 list_add_tail(&ipr_cmd->queue, &hrrq->hrrq_free_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006175 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006176 scsi_dma_unmap(scsi_cmd);
6177 goto err_nodev;
6178 }
6179
6180 ioarcb->res_handle = res->res_handle;
6181 if (res->needs_sync_complete) {
6182 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_SYNC_COMPLETE;
6183 res->needs_sync_complete = 0;
6184 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006185 list_add_tail(&ipr_cmd->queue, &hrrq->hrrq_pending_q);
Brian King00bfef22012-07-17 08:13:52 -05006186 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_RES_PHYS_LOC(res));
Brian Kinga5fb4072012-03-14 21:20:09 -05006187 ipr_send_command(ipr_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006188 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006189 return 0;
6190
6191err_nodev:
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006192 spin_lock_irqsave(hrrq->lock, hrrq_flags);
Brian King00bfef22012-07-17 08:13:52 -05006193 memset(scsi_cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
6194 scsi_cmd->result = (DID_NO_CONNECT << 16);
6195 scsi_cmd->scsi_done(scsi_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006196 spin_unlock_irqrestore(hrrq->lock, hrrq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197 return 0;
6198}
6199
6200/**
Brian King35a39692006-09-25 12:39:20 -05006201 * ipr_ioctl - IOCTL handler
6202 * @sdev: scsi device struct
6203 * @cmd: IOCTL cmd
6204 * @arg: IOCTL arg
6205 *
6206 * Return value:
6207 * 0 on success / other on failure
6208 **/
Adrian Bunkbd705f22006-11-21 10:28:48 -06006209static int ipr_ioctl(struct scsi_device *sdev, int cmd, void __user *arg)
Brian King35a39692006-09-25 12:39:20 -05006210{
6211 struct ipr_resource_entry *res;
6212
6213 res = (struct ipr_resource_entry *)sdev->hostdata;
Brian King0ce3a7e2008-07-11 13:37:50 -05006214 if (res && ipr_is_gata(res)) {
6215 if (cmd == HDIO_GET_IDENTITY)
6216 return -ENOTTY;
Jeff Garzik94be9a52009-01-16 10:17:09 -05006217 return ata_sas_scsi_ioctl(res->sata_port->ap, sdev, cmd, arg);
Brian King0ce3a7e2008-07-11 13:37:50 -05006218 }
Brian King35a39692006-09-25 12:39:20 -05006219
6220 return -EINVAL;
6221}
6222
6223/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 * ipr_info - Get information about the card/driver
6225 * @scsi_host: scsi host struct
6226 *
6227 * Return value:
6228 * pointer to buffer with description string
6229 **/
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006230static const char *ipr_ioa_info(struct Scsi_Host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231{
6232 static char buffer[512];
6233 struct ipr_ioa_cfg *ioa_cfg;
6234 unsigned long lock_flags = 0;
6235
6236 ioa_cfg = (struct ipr_ioa_cfg *) host->hostdata;
6237
6238 spin_lock_irqsave(host->host_lock, lock_flags);
6239 sprintf(buffer, "IBM %X Storage Adapter", ioa_cfg->type);
6240 spin_unlock_irqrestore(host->host_lock, lock_flags);
6241
6242 return buffer;
6243}
6244
6245static struct scsi_host_template driver_template = {
6246 .module = THIS_MODULE,
6247 .name = "IPR",
6248 .info = ipr_ioa_info,
Brian King35a39692006-09-25 12:39:20 -05006249 .ioctl = ipr_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250 .queuecommand = ipr_queuecommand,
6251 .eh_abort_handler = ipr_eh_abort,
6252 .eh_device_reset_handler = ipr_eh_dev_reset,
6253 .eh_host_reset_handler = ipr_eh_host_reset,
6254 .slave_alloc = ipr_slave_alloc,
6255 .slave_configure = ipr_slave_configure,
6256 .slave_destroy = ipr_slave_destroy,
Brian King35a39692006-09-25 12:39:20 -05006257 .target_alloc = ipr_target_alloc,
6258 .target_destroy = ipr_target_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259 .change_queue_depth = ipr_change_queue_depth,
6260 .change_queue_type = ipr_change_queue_type,
6261 .bios_param = ipr_biosparam,
6262 .can_queue = IPR_MAX_COMMANDS,
6263 .this_id = -1,
6264 .sg_tablesize = IPR_MAX_SGLIST,
6265 .max_sectors = IPR_IOA_MAX_SECTORS,
6266 .cmd_per_lun = IPR_MAX_CMD_PER_LUN,
6267 .use_clustering = ENABLE_CLUSTERING,
6268 .shost_attrs = ipr_ioa_attrs,
6269 .sdev_attrs = ipr_dev_attrs,
Martin K. Petersen8562d022013-10-23 06:25:40 -04006270 .proc_name = IPR_NAME,
6271 .no_write_same = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272};
6273
Brian King35a39692006-09-25 12:39:20 -05006274/**
6275 * ipr_ata_phy_reset - libata phy_reset handler
6276 * @ap: ata port to reset
6277 *
6278 **/
6279static void ipr_ata_phy_reset(struct ata_port *ap)
6280{
6281 unsigned long flags;
6282 struct ipr_sata_port *sata_port = ap->private_data;
6283 struct ipr_resource_entry *res = sata_port->res;
6284 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6285 int rc;
6286
6287 ENTER;
6288 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006289 while (ioa_cfg->in_reset_reload) {
Brian King35a39692006-09-25 12:39:20 -05006290 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6291 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
6292 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
6293 }
6294
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006295 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds)
Brian King35a39692006-09-25 12:39:20 -05006296 goto out_unlock;
6297
6298 rc = ipr_device_reset(ioa_cfg, res);
6299
6300 if (rc) {
Tejun Heo3e4ec342010-05-10 21:41:30 +02006301 ap->link.device[0].class = ATA_DEV_NONE;
Brian King35a39692006-09-25 12:39:20 -05006302 goto out_unlock;
6303 }
6304
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006305 ap->link.device[0].class = res->ata_class;
6306 if (ap->link.device[0].class == ATA_DEV_UNKNOWN)
Tejun Heo3e4ec342010-05-10 21:41:30 +02006307 ap->link.device[0].class = ATA_DEV_NONE;
Brian King35a39692006-09-25 12:39:20 -05006308
6309out_unlock:
6310 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6311 LEAVE;
6312}
6313
6314/**
6315 * ipr_ata_post_internal - Cleanup after an internal command
6316 * @qc: ATA queued command
6317 *
6318 * Return value:
6319 * none
6320 **/
6321static void ipr_ata_post_internal(struct ata_queued_cmd *qc)
6322{
6323 struct ipr_sata_port *sata_port = qc->ap->private_data;
6324 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6325 struct ipr_cmnd *ipr_cmd;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006326 struct ipr_hrr_queue *hrrq;
Brian King35a39692006-09-25 12:39:20 -05006327 unsigned long flags;
6328
6329 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006330 while (ioa_cfg->in_reset_reload) {
Brian King73d98ff2006-11-21 10:27:58 -06006331 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6332 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
6333 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
6334 }
6335
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006336 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006337 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006338 list_for_each_entry(ipr_cmd, &hrrq->hrrq_pending_q, queue) {
6339 if (ipr_cmd->qc == qc) {
6340 ipr_device_reset(ioa_cfg, sata_port->res);
6341 break;
6342 }
Brian King35a39692006-09-25 12:39:20 -05006343 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006344 spin_unlock(&hrrq->_lock);
Brian King35a39692006-09-25 12:39:20 -05006345 }
6346 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
6347}
6348
6349/**
Brian King35a39692006-09-25 12:39:20 -05006350 * ipr_copy_sata_tf - Copy a SATA taskfile to an IOA data structure
6351 * @regs: destination
6352 * @tf: source ATA taskfile
6353 *
6354 * Return value:
6355 * none
6356 **/
6357static void ipr_copy_sata_tf(struct ipr_ioarcb_ata_regs *regs,
6358 struct ata_taskfile *tf)
6359{
6360 regs->feature = tf->feature;
6361 regs->nsect = tf->nsect;
6362 regs->lbal = tf->lbal;
6363 regs->lbam = tf->lbam;
6364 regs->lbah = tf->lbah;
6365 regs->device = tf->device;
6366 regs->command = tf->command;
6367 regs->hob_feature = tf->hob_feature;
6368 regs->hob_nsect = tf->hob_nsect;
6369 regs->hob_lbal = tf->hob_lbal;
6370 regs->hob_lbam = tf->hob_lbam;
6371 regs->hob_lbah = tf->hob_lbah;
6372 regs->ctl = tf->ctl;
6373}
6374
6375/**
6376 * ipr_sata_done - done function for SATA commands
6377 * @ipr_cmd: ipr command struct
6378 *
6379 * This function is invoked by the interrupt handler for
6380 * ops generated by the SCSI mid-layer to SATA devices
6381 *
6382 * Return value:
6383 * none
6384 **/
6385static void ipr_sata_done(struct ipr_cmnd *ipr_cmd)
6386{
6387 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6388 struct ata_queued_cmd *qc = ipr_cmd->qc;
6389 struct ipr_sata_port *sata_port = qc->ap->private_data;
6390 struct ipr_resource_entry *res = sata_port->res;
Wayne Boyer96d21f02010-05-10 09:13:27 -07006391 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian King35a39692006-09-25 12:39:20 -05006392
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006393 spin_lock(&ipr_cmd->hrrq->_lock);
Wayne Boyer96d21f02010-05-10 09:13:27 -07006394 if (ipr_cmd->ioa_cfg->sis64)
6395 memcpy(&sata_port->ioasa, &ipr_cmd->s.ioasa64.u.gata,
6396 sizeof(struct ipr_ioasa_gata));
6397 else
6398 memcpy(&sata_port->ioasa, &ipr_cmd->s.ioasa.u.gata,
6399 sizeof(struct ipr_ioasa_gata));
Brian King35a39692006-09-25 12:39:20 -05006400 ipr_dump_ioasa(ioa_cfg, ipr_cmd, res);
6401
Wayne Boyer96d21f02010-05-10 09:13:27 -07006402 if (be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc_specific) & IPR_ATA_DEVICE_WAS_RESET)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006403 scsi_report_device_reset(ioa_cfg->host, res->bus, res->target);
Brian King35a39692006-09-25 12:39:20 -05006404
6405 if (IPR_IOASC_SENSE_KEY(ioasc) > RECOVERED_ERROR)
Wayne Boyer96d21f02010-05-10 09:13:27 -07006406 qc->err_mask |= __ac_err_mask(sata_port->ioasa.status);
Brian King35a39692006-09-25 12:39:20 -05006407 else
Wayne Boyer96d21f02010-05-10 09:13:27 -07006408 qc->err_mask |= ac_err_mask(sata_port->ioasa.status);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006409 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006410 spin_unlock(&ipr_cmd->hrrq->_lock);
Brian King35a39692006-09-25 12:39:20 -05006411 ata_qc_complete(qc);
6412}
6413
6414/**
Wayne Boyera32c0552010-02-19 13:23:36 -08006415 * ipr_build_ata_ioadl64 - Build an ATA scatter/gather list
6416 * @ipr_cmd: ipr command struct
6417 * @qc: ATA queued command
6418 *
6419 **/
6420static void ipr_build_ata_ioadl64(struct ipr_cmnd *ipr_cmd,
6421 struct ata_queued_cmd *qc)
6422{
6423 u32 ioadl_flags = 0;
6424 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
wenxiong@linux.vnet.ibm.com1ac7c262013-04-18 21:32:48 -05006425 struct ipr_ioadl64_desc *ioadl64 = ipr_cmd->i.ata_ioadl.ioadl64;
Wayne Boyera32c0552010-02-19 13:23:36 -08006426 struct ipr_ioadl64_desc *last_ioadl64 = NULL;
6427 int len = qc->nbytes;
6428 struct scatterlist *sg;
6429 unsigned int si;
6430 dma_addr_t dma_addr = ipr_cmd->dma_addr;
6431
6432 if (len == 0)
6433 return;
6434
6435 if (qc->dma_dir == DMA_TO_DEVICE) {
6436 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
6437 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
6438 } else if (qc->dma_dir == DMA_FROM_DEVICE)
6439 ioadl_flags = IPR_IOADL_FLAGS_READ;
6440
6441 ioarcb->data_transfer_length = cpu_to_be32(len);
6442 ioarcb->ioadl_len =
6443 cpu_to_be32(sizeof(struct ipr_ioadl64_desc) * ipr_cmd->dma_use_sg);
6444 ioarcb->u.sis64_addr_data.data_ioadl_addr =
wenxiong@linux.vnet.ibm.com1ac7c262013-04-18 21:32:48 -05006445 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ata_ioadl.ioadl64));
Wayne Boyera32c0552010-02-19 13:23:36 -08006446
6447 for_each_sg(qc->sg, sg, qc->n_elem, si) {
6448 ioadl64->flags = cpu_to_be32(ioadl_flags);
6449 ioadl64->data_len = cpu_to_be32(sg_dma_len(sg));
6450 ioadl64->address = cpu_to_be64(sg_dma_address(sg));
6451
6452 last_ioadl64 = ioadl64;
6453 ioadl64++;
6454 }
6455
6456 if (likely(last_ioadl64))
6457 last_ioadl64->flags |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
6458}
6459
6460/**
Brian King35a39692006-09-25 12:39:20 -05006461 * ipr_build_ata_ioadl - Build an ATA scatter/gather list
6462 * @ipr_cmd: ipr command struct
6463 * @qc: ATA queued command
6464 *
6465 **/
6466static void ipr_build_ata_ioadl(struct ipr_cmnd *ipr_cmd,
6467 struct ata_queued_cmd *qc)
6468{
6469 u32 ioadl_flags = 0;
6470 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08006471 struct ipr_ioadl_desc *ioadl = ipr_cmd->i.ioadl;
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006472 struct ipr_ioadl_desc *last_ioadl = NULL;
James Bottomleydde20202008-02-19 11:36:56 +01006473 int len = qc->nbytes;
Brian King35a39692006-09-25 12:39:20 -05006474 struct scatterlist *sg;
Tejun Heoff2aeb12007-12-05 16:43:11 +09006475 unsigned int si;
Brian King35a39692006-09-25 12:39:20 -05006476
6477 if (len == 0)
6478 return;
6479
6480 if (qc->dma_dir == DMA_TO_DEVICE) {
6481 ioadl_flags = IPR_IOADL_FLAGS_WRITE;
6482 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
Wayne Boyera32c0552010-02-19 13:23:36 -08006483 ioarcb->data_transfer_length = cpu_to_be32(len);
6484 ioarcb->ioadl_len =
Brian King35a39692006-09-25 12:39:20 -05006485 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
6486 } else if (qc->dma_dir == DMA_FROM_DEVICE) {
6487 ioadl_flags = IPR_IOADL_FLAGS_READ;
6488 ioarcb->read_data_transfer_length = cpu_to_be32(len);
6489 ioarcb->read_ioadl_len =
6490 cpu_to_be32(sizeof(struct ipr_ioadl_desc) * ipr_cmd->dma_use_sg);
6491 }
6492
Tejun Heoff2aeb12007-12-05 16:43:11 +09006493 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Brian King35a39692006-09-25 12:39:20 -05006494 ioadl->flags_and_data_len = cpu_to_be32(ioadl_flags | sg_dma_len(sg));
6495 ioadl->address = cpu_to_be32(sg_dma_address(sg));
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006496
6497 last_ioadl = ioadl;
6498 ioadl++;
Brian King35a39692006-09-25 12:39:20 -05006499 }
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04006500
6501 if (likely(last_ioadl))
6502 last_ioadl->flags_and_data_len |= cpu_to_be32(IPR_IOADL_FLAGS_LAST);
Brian King35a39692006-09-25 12:39:20 -05006503}
6504
6505/**
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006506 * ipr_qc_defer - Get a free ipr_cmd
6507 * @qc: queued command
6508 *
6509 * Return value:
6510 * 0 if success
6511 **/
6512static int ipr_qc_defer(struct ata_queued_cmd *qc)
6513{
6514 struct ata_port *ap = qc->ap;
6515 struct ipr_sata_port *sata_port = ap->private_data;
6516 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6517 struct ipr_cmnd *ipr_cmd;
6518 struct ipr_hrr_queue *hrrq;
6519 int hrrq_id;
6520
6521 hrrq_id = ipr_get_hrrq_index(ioa_cfg);
6522 hrrq = &ioa_cfg->hrrq[hrrq_id];
6523
6524 qc->lldd_task = NULL;
6525 spin_lock(&hrrq->_lock);
6526 if (unlikely(hrrq->ioa_is_dead)) {
6527 spin_unlock(&hrrq->_lock);
6528 return 0;
6529 }
6530
6531 if (unlikely(!hrrq->allow_cmds)) {
6532 spin_unlock(&hrrq->_lock);
6533 return ATA_DEFER_LINK;
6534 }
6535
6536 ipr_cmd = __ipr_get_free_ipr_cmnd(hrrq);
6537 if (ipr_cmd == NULL) {
6538 spin_unlock(&hrrq->_lock);
6539 return ATA_DEFER_LINK;
6540 }
6541
6542 qc->lldd_task = ipr_cmd;
6543 spin_unlock(&hrrq->_lock);
6544 return 0;
6545}
6546
6547/**
Brian King35a39692006-09-25 12:39:20 -05006548 * ipr_qc_issue - Issue a SATA qc to a device
6549 * @qc: queued command
6550 *
6551 * Return value:
6552 * 0 if success
6553 **/
6554static unsigned int ipr_qc_issue(struct ata_queued_cmd *qc)
6555{
6556 struct ata_port *ap = qc->ap;
6557 struct ipr_sata_port *sata_port = ap->private_data;
6558 struct ipr_resource_entry *res = sata_port->res;
6559 struct ipr_ioa_cfg *ioa_cfg = sata_port->ioa_cfg;
6560 struct ipr_cmnd *ipr_cmd;
6561 struct ipr_ioarcb *ioarcb;
6562 struct ipr_ioarcb_ata_regs *regs;
6563
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006564 if (qc->lldd_task == NULL)
6565 ipr_qc_defer(qc);
6566
6567 ipr_cmd = qc->lldd_task;
6568 if (ipr_cmd == NULL)
Brian King0feeed82007-03-29 12:43:43 -05006569 return AC_ERR_SYSTEM;
Brian King35a39692006-09-25 12:39:20 -05006570
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006571 qc->lldd_task = NULL;
6572 spin_lock(&ipr_cmd->hrrq->_lock);
6573 if (unlikely(!ipr_cmd->hrrq->allow_cmds ||
6574 ipr_cmd->hrrq->ioa_is_dead)) {
6575 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
6576 spin_unlock(&ipr_cmd->hrrq->_lock);
6577 return AC_ERR_SYSTEM;
6578 }
6579
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006580 ipr_init_ipr_cmnd(ipr_cmd, ipr_lock_and_done);
Brian King35a39692006-09-25 12:39:20 -05006581 ioarcb = &ipr_cmd->ioarcb;
Brian King35a39692006-09-25 12:39:20 -05006582
Wayne Boyera32c0552010-02-19 13:23:36 -08006583 if (ioa_cfg->sis64) {
6584 regs = &ipr_cmd->i.ata_ioadl.regs;
6585 ioarcb->add_cmd_parms_offset = cpu_to_be16(sizeof(*ioarcb));
6586 } else
6587 regs = &ioarcb->u.add_data.u.regs;
6588
6589 memset(regs, 0, sizeof(*regs));
6590 ioarcb->add_cmd_parms_len = cpu_to_be16(sizeof(*regs));
Brian King35a39692006-09-25 12:39:20 -05006591
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006592 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Brian King35a39692006-09-25 12:39:20 -05006593 ipr_cmd->qc = qc;
6594 ipr_cmd->done = ipr_sata_done;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006595 ipr_cmd->ioarcb.res_handle = res->res_handle;
Brian King35a39692006-09-25 12:39:20 -05006596 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_ATA_PASSTHRU;
6597 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_LINK_DESC;
6598 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_NO_ULEN_CHK;
James Bottomleydde20202008-02-19 11:36:56 +01006599 ipr_cmd->dma_use_sg = qc->n_elem;
Brian King35a39692006-09-25 12:39:20 -05006600
Wayne Boyera32c0552010-02-19 13:23:36 -08006601 if (ioa_cfg->sis64)
6602 ipr_build_ata_ioadl64(ipr_cmd, qc);
6603 else
6604 ipr_build_ata_ioadl(ipr_cmd, qc);
6605
Brian King35a39692006-09-25 12:39:20 -05006606 regs->flags |= IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION;
6607 ipr_copy_sata_tf(regs, &qc->tf);
6608 memcpy(ioarcb->cmd_pkt.cdb, qc->cdb, IPR_MAX_CDB_LEN);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006609 ipr_trc_hook(ipr_cmd, IPR_TRACE_START, IPR_GET_RES_PHYS_LOC(res));
Brian King35a39692006-09-25 12:39:20 -05006610
6611 switch (qc->tf.protocol) {
6612 case ATA_PROT_NODATA:
6613 case ATA_PROT_PIO:
6614 break;
6615
6616 case ATA_PROT_DMA:
6617 regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
6618 break;
6619
Tejun Heo0dc36882007-12-18 16:34:43 -05006620 case ATAPI_PROT_PIO:
6621 case ATAPI_PROT_NODATA:
Brian King35a39692006-09-25 12:39:20 -05006622 regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
6623 break;
6624
Tejun Heo0dc36882007-12-18 16:34:43 -05006625 case ATAPI_PROT_DMA:
Brian King35a39692006-09-25 12:39:20 -05006626 regs->flags |= IPR_ATA_FLAG_PACKET_CMD;
6627 regs->flags |= IPR_ATA_FLAG_XFER_TYPE_DMA;
6628 break;
6629
6630 default:
6631 WARN_ON(1);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006632 spin_unlock(&ipr_cmd->hrrq->_lock);
Brian King0feeed82007-03-29 12:43:43 -05006633 return AC_ERR_INVALID;
Brian King35a39692006-09-25 12:39:20 -05006634 }
6635
Wayne Boyera32c0552010-02-19 13:23:36 -08006636 ipr_send_command(ipr_cmd);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006637 spin_unlock(&ipr_cmd->hrrq->_lock);
Wayne Boyera32c0552010-02-19 13:23:36 -08006638
Brian King35a39692006-09-25 12:39:20 -05006639 return 0;
6640}
6641
6642/**
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006643 * ipr_qc_fill_rtf - Read result TF
6644 * @qc: ATA queued command
6645 *
6646 * Return value:
6647 * true
6648 **/
6649static bool ipr_qc_fill_rtf(struct ata_queued_cmd *qc)
6650{
6651 struct ipr_sata_port *sata_port = qc->ap->private_data;
6652 struct ipr_ioasa_gata *g = &sata_port->ioasa;
6653 struct ata_taskfile *tf = &qc->result_tf;
6654
6655 tf->feature = g->error;
6656 tf->nsect = g->nsect;
6657 tf->lbal = g->lbal;
6658 tf->lbam = g->lbam;
6659 tf->lbah = g->lbah;
6660 tf->device = g->device;
6661 tf->command = g->status;
6662 tf->hob_nsect = g->hob_nsect;
6663 tf->hob_lbal = g->hob_lbal;
6664 tf->hob_lbam = g->hob_lbam;
6665 tf->hob_lbah = g->hob_lbah;
6666 tf->ctl = g->alt_status;
6667
6668 return true;
6669}
6670
Brian King35a39692006-09-25 12:39:20 -05006671static struct ata_port_operations ipr_sata_ops = {
Brian King35a39692006-09-25 12:39:20 -05006672 .phy_reset = ipr_ata_phy_reset,
Tejun Heoa1efdab2008-03-25 12:22:50 +09006673 .hardreset = ipr_sata_reset,
Brian King35a39692006-09-25 12:39:20 -05006674 .post_internal_cmd = ipr_ata_post_internal,
Brian King35a39692006-09-25 12:39:20 -05006675 .qc_prep = ata_noop_qc_prep,
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006676 .qc_defer = ipr_qc_defer,
Brian King35a39692006-09-25 12:39:20 -05006677 .qc_issue = ipr_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +09006678 .qc_fill_rtf = ipr_qc_fill_rtf,
Brian King35a39692006-09-25 12:39:20 -05006679 .port_start = ata_sas_port_start,
6680 .port_stop = ata_sas_port_stop
6681};
6682
6683static struct ata_port_info sata_port_info = {
Sergei Shtylyov9cbe0562011-02-04 22:05:48 +03006684 .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA,
Sergei Shtylyov0f2e0332011-01-21 20:32:01 +03006685 .pio_mask = ATA_PIO4_ONLY,
6686 .mwdma_mask = ATA_MWDMA2,
6687 .udma_mask = ATA_UDMA6,
Brian King35a39692006-09-25 12:39:20 -05006688 .port_ops = &ipr_sata_ops
6689};
6690
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691#ifdef CONFIG_PPC_PSERIES
6692static const u16 ipr_blocked_processors[] = {
Michael Ellermand3dbeef2012-08-19 21:44:01 +00006693 PVR_NORTHSTAR,
6694 PVR_PULSAR,
6695 PVR_POWER4,
6696 PVR_ICESTAR,
6697 PVR_SSTAR,
6698 PVR_POWER4p,
6699 PVR_630,
6700 PVR_630p
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701};
6702
6703/**
6704 * ipr_invalid_adapter - Determine if this adapter is supported on this hardware
6705 * @ioa_cfg: ioa cfg struct
6706 *
6707 * Adapters that use Gemstone revision < 3.1 do not work reliably on
6708 * certain pSeries hardware. This function determines if the given
6709 * adapter is in one of these confgurations or not.
6710 *
6711 * Return value:
6712 * 1 if adapter is not supported / 0 if adapter is supported
6713 **/
6714static int ipr_invalid_adapter(struct ipr_ioa_cfg *ioa_cfg)
6715{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716 int i;
6717
Auke Kok44c10132007-06-08 15:46:36 -07006718 if ((ioa_cfg->type == 0x5702) && (ioa_cfg->pdev->revision < 4)) {
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03006719 for (i = 0; i < ARRAY_SIZE(ipr_blocked_processors); i++) {
Michael Ellermand3dbeef2012-08-19 21:44:01 +00006720 if (pvr_version_is(ipr_blocked_processors[i]))
Auke Kok44c10132007-06-08 15:46:36 -07006721 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722 }
6723 }
6724 return 0;
6725}
6726#else
6727#define ipr_invalid_adapter(ioa_cfg) 0
6728#endif
6729
6730/**
6731 * ipr_ioa_bringdown_done - IOA bring down completion.
6732 * @ipr_cmd: ipr command struct
6733 *
6734 * This function processes the completion of an adapter bring down.
6735 * It wakes any reset sleepers.
6736 *
6737 * Return value:
6738 * IPR_RC_JOB_RETURN
6739 **/
6740static int ipr_ioa_bringdown_done(struct ipr_cmnd *ipr_cmd)
6741{
6742 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05006743 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744
6745 ENTER;
Brian Kingbfae7822013-01-30 23:45:08 -06006746 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].removing_ioa) {
6747 ipr_trace;
6748 spin_unlock_irq(ioa_cfg->host->host_lock);
6749 scsi_unblock_requests(ioa_cfg->host);
6750 spin_lock_irq(ioa_cfg->host->host_lock);
6751 }
6752
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753 ioa_cfg->in_reset_reload = 0;
6754 ioa_cfg->reset_retries = 0;
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05006755 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
6756 spin_lock(&ioa_cfg->hrrq[i]._lock);
6757 ioa_cfg->hrrq[i].ioa_is_dead = 1;
6758 spin_unlock(&ioa_cfg->hrrq[i]._lock);
6759 }
6760 wmb();
6761
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006762 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 wake_up_all(&ioa_cfg->reset_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 LEAVE;
6765
6766 return IPR_RC_JOB_RETURN;
6767}
6768
6769/**
6770 * ipr_ioa_reset_done - IOA reset completion.
6771 * @ipr_cmd: ipr command struct
6772 *
6773 * This function processes the completion of an adapter reset.
6774 * It schedules any necessary mid-layer add/removes and
6775 * wakes any reset sleepers.
6776 *
6777 * Return value:
6778 * IPR_RC_JOB_RETURN
6779 **/
6780static int ipr_ioa_reset_done(struct ipr_cmnd *ipr_cmd)
6781{
6782 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6783 struct ipr_resource_entry *res;
6784 struct ipr_hostrcb *hostrcb, *temp;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006785 int i = 0, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786
6787 ENTER;
6788 ioa_cfg->in_reset_reload = 0;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006789 for (j = 0; j < ioa_cfg->hrrq_num; j++) {
6790 spin_lock(&ioa_cfg->hrrq[j]._lock);
6791 ioa_cfg->hrrq[j].allow_cmds = 1;
6792 spin_unlock(&ioa_cfg->hrrq[j]._lock);
6793 }
6794 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795 ioa_cfg->reset_cmd = NULL;
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -06006796 ioa_cfg->doorbell |= IPR_RUNTIME_RESET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797
6798 list_for_each_entry(res, &ioa_cfg->used_res_q, queue) {
6799 if (ioa_cfg->allow_ml_add_del && (res->add_to_ml || res->del_from_ml)) {
6800 ipr_trace;
6801 break;
6802 }
6803 }
6804 schedule_work(&ioa_cfg->work_q);
6805
6806 list_for_each_entry_safe(hostrcb, temp, &ioa_cfg->hostrcb_free_q, queue) {
6807 list_del(&hostrcb->queue);
6808 if (i++ < IPR_NUM_LOG_HCAMS)
6809 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_LOG_DATA, hostrcb);
6810 else
6811 ipr_send_hcam(ioa_cfg, IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE, hostrcb);
6812 }
6813
Brian King6bb04172007-04-26 16:00:08 -05006814 scsi_report_bus_reset(ioa_cfg->host, IPR_VSET_BUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815 dev_info(&ioa_cfg->pdev->dev, "IOA initialized.\n");
6816
6817 ioa_cfg->reset_retries = 0;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006818 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819 wake_up_all(&ioa_cfg->reset_wait_q);
6820
Mark Nelson30237852008-12-10 12:23:20 +11006821 spin_unlock(ioa_cfg->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822 scsi_unblock_requests(ioa_cfg->host);
Mark Nelson30237852008-12-10 12:23:20 +11006823 spin_lock(ioa_cfg->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06006825 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826 scsi_block_requests(ioa_cfg->host);
6827
6828 LEAVE;
6829 return IPR_RC_JOB_RETURN;
6830}
6831
6832/**
6833 * ipr_set_sup_dev_dflt - Initialize a Set Supported Device buffer
6834 * @supported_dev: supported device struct
6835 * @vpids: vendor product id struct
6836 *
6837 * Return value:
6838 * none
6839 **/
6840static void ipr_set_sup_dev_dflt(struct ipr_supported_device *supported_dev,
6841 struct ipr_std_inq_vpids *vpids)
6842{
6843 memset(supported_dev, 0, sizeof(struct ipr_supported_device));
6844 memcpy(&supported_dev->vpids, vpids, sizeof(struct ipr_std_inq_vpids));
6845 supported_dev->num_records = 1;
6846 supported_dev->data_length =
6847 cpu_to_be16(sizeof(struct ipr_supported_device));
6848 supported_dev->reserved = 0;
6849}
6850
6851/**
6852 * ipr_set_supported_devs - Send Set Supported Devices for a device
6853 * @ipr_cmd: ipr command struct
6854 *
Wayne Boyera32c0552010-02-19 13:23:36 -08006855 * This function sends a Set Supported Devices to the adapter
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856 *
6857 * Return value:
6858 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
6859 **/
6860static int ipr_set_supported_devs(struct ipr_cmnd *ipr_cmd)
6861{
6862 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
6863 struct ipr_supported_device *supp_dev = &ioa_cfg->vpd_cbs->supp_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
6865 struct ipr_resource_entry *res = ipr_cmd->u.res;
6866
6867 ipr_cmd->job_step = ipr_ioa_reset_done;
6868
6869 list_for_each_entry_continue(res, &ioa_cfg->used_res_q, queue) {
Brian Kinge4fbf442006-03-29 09:37:22 -06006870 if (!ipr_is_scsi_disk(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 continue;
6872
6873 ipr_cmd->u.res = res;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006874 ipr_set_sup_dev_dflt(supp_dev, &res->std_inq_data.vpids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875
6876 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
6877 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
6878 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
6879
6880 ioarcb->cmd_pkt.cdb[0] = IPR_SET_SUPPORTED_DEVICES;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006881 ioarcb->cmd_pkt.cdb[1] = IPR_SET_ALL_SUPPORTED_DEVICES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882 ioarcb->cmd_pkt.cdb[7] = (sizeof(struct ipr_supported_device) >> 8) & 0xff;
6883 ioarcb->cmd_pkt.cdb[8] = sizeof(struct ipr_supported_device) & 0xff;
6884
Wayne Boyera32c0552010-02-19 13:23:36 -08006885 ipr_init_ioadl(ipr_cmd,
6886 ioa_cfg->vpd_cbs_dma +
6887 offsetof(struct ipr_misc_cbs, supp_dev),
6888 sizeof(struct ipr_supported_device),
6889 IPR_IOADL_FLAGS_WRITE_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890
6891 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
6892 IPR_SET_SUP_DEVICE_TIMEOUT);
6893
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08006894 if (!ioa_cfg->sis64)
6895 ipr_cmd->job_step = ipr_set_supported_devs;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006896 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897 return IPR_RC_JOB_RETURN;
6898 }
6899
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06006900 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901 return IPR_RC_JOB_CONTINUE;
6902}
6903
6904/**
6905 * ipr_get_mode_page - Locate specified mode page
6906 * @mode_pages: mode page buffer
6907 * @page_code: page code to find
6908 * @len: minimum required length for mode page
6909 *
6910 * Return value:
6911 * pointer to mode page / NULL on failure
6912 **/
6913static void *ipr_get_mode_page(struct ipr_mode_pages *mode_pages,
6914 u32 page_code, u32 len)
6915{
6916 struct ipr_mode_page_hdr *mode_hdr;
6917 u32 page_length;
6918 u32 length;
6919
6920 if (!mode_pages || (mode_pages->hdr.length == 0))
6921 return NULL;
6922
6923 length = (mode_pages->hdr.length + 1) - 4 - mode_pages->hdr.block_desc_len;
6924 mode_hdr = (struct ipr_mode_page_hdr *)
6925 (mode_pages->data + mode_pages->hdr.block_desc_len);
6926
6927 while (length) {
6928 if (IPR_GET_MODE_PAGE_CODE(mode_hdr) == page_code) {
6929 if (mode_hdr->page_length >= (len - sizeof(struct ipr_mode_page_hdr)))
6930 return mode_hdr;
6931 break;
6932 } else {
6933 page_length = (sizeof(struct ipr_mode_page_hdr) +
6934 mode_hdr->page_length);
6935 length -= page_length;
6936 mode_hdr = (struct ipr_mode_page_hdr *)
6937 ((unsigned long)mode_hdr + page_length);
6938 }
6939 }
6940 return NULL;
6941}
6942
6943/**
6944 * ipr_check_term_power - Check for term power errors
6945 * @ioa_cfg: ioa config struct
6946 * @mode_pages: IOAFP mode pages buffer
6947 *
6948 * Check the IOAFP's mode page 28 for term power errors
6949 *
6950 * Return value:
6951 * nothing
6952 **/
6953static void ipr_check_term_power(struct ipr_ioa_cfg *ioa_cfg,
6954 struct ipr_mode_pages *mode_pages)
6955{
6956 int i;
6957 int entry_length;
6958 struct ipr_dev_bus_entry *bus;
6959 struct ipr_mode_page28 *mode_page;
6960
6961 mode_page = ipr_get_mode_page(mode_pages, 0x28,
6962 sizeof(struct ipr_mode_page28));
6963
6964 entry_length = mode_page->entry_length;
6965
6966 bus = mode_page->bus;
6967
6968 for (i = 0; i < mode_page->num_entries; i++) {
6969 if (bus->flags & IPR_SCSI_ATTR_NO_TERM_PWR) {
6970 dev_err(&ioa_cfg->pdev->dev,
6971 "Term power is absent on scsi bus %d\n",
6972 bus->res_addr.bus);
6973 }
6974
6975 bus = (struct ipr_dev_bus_entry *)((char *)bus + entry_length);
6976 }
6977}
6978
6979/**
6980 * ipr_scsi_bus_speed_limit - Limit the SCSI speed based on SES table
6981 * @ioa_cfg: ioa config struct
6982 *
6983 * Looks through the config table checking for SES devices. If
6984 * the SES device is in the SES table indicating a maximum SCSI
6985 * bus speed, the speed is limited for the bus.
6986 *
6987 * Return value:
6988 * none
6989 **/
6990static void ipr_scsi_bus_speed_limit(struct ipr_ioa_cfg *ioa_cfg)
6991{
6992 u32 max_xfer_rate;
6993 int i;
6994
6995 for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
6996 max_xfer_rate = ipr_get_max_scsi_speed(ioa_cfg, i,
6997 ioa_cfg->bus_attr[i].bus_width);
6998
6999 if (max_xfer_rate < ioa_cfg->bus_attr[i].max_xfer_rate)
7000 ioa_cfg->bus_attr[i].max_xfer_rate = max_xfer_rate;
7001 }
7002}
7003
7004/**
7005 * ipr_modify_ioafp_mode_page_28 - Modify IOAFP Mode Page 28
7006 * @ioa_cfg: ioa config struct
7007 * @mode_pages: mode page 28 buffer
7008 *
7009 * Updates mode page 28 based on driver configuration
7010 *
7011 * Return value:
7012 * none
7013 **/
7014static void ipr_modify_ioafp_mode_page_28(struct ipr_ioa_cfg *ioa_cfg,
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03007015 struct ipr_mode_pages *mode_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016{
7017 int i, entry_length;
7018 struct ipr_dev_bus_entry *bus;
7019 struct ipr_bus_attributes *bus_attr;
7020 struct ipr_mode_page28 *mode_page;
7021
7022 mode_page = ipr_get_mode_page(mode_pages, 0x28,
7023 sizeof(struct ipr_mode_page28));
7024
7025 entry_length = mode_page->entry_length;
7026
7027 /* Loop for each device bus entry */
7028 for (i = 0, bus = mode_page->bus;
7029 i < mode_page->num_entries;
7030 i++, bus = (struct ipr_dev_bus_entry *)((u8 *)bus + entry_length)) {
7031 if (bus->res_addr.bus > IPR_MAX_NUM_BUSES) {
7032 dev_err(&ioa_cfg->pdev->dev,
7033 "Invalid resource address reported: 0x%08X\n",
7034 IPR_GET_PHYS_LOC(bus->res_addr));
7035 continue;
7036 }
7037
7038 bus_attr = &ioa_cfg->bus_attr[i];
7039 bus->extended_reset_delay = IPR_EXTENDED_RESET_DELAY;
7040 bus->bus_width = bus_attr->bus_width;
7041 bus->max_xfer_rate = cpu_to_be32(bus_attr->max_xfer_rate);
7042 bus->flags &= ~IPR_SCSI_ATTR_QAS_MASK;
7043 if (bus_attr->qas_enabled)
7044 bus->flags |= IPR_SCSI_ATTR_ENABLE_QAS;
7045 else
7046 bus->flags |= IPR_SCSI_ATTR_DISABLE_QAS;
7047 }
7048}
7049
7050/**
7051 * ipr_build_mode_select - Build a mode select command
7052 * @ipr_cmd: ipr command struct
7053 * @res_handle: resource handle to send command to
7054 * @parm: Byte 2 of Mode Sense command
7055 * @dma_addr: DMA buffer address
7056 * @xfer_len: data transfer length
7057 *
7058 * Return value:
7059 * none
7060 **/
7061static void ipr_build_mode_select(struct ipr_cmnd *ipr_cmd,
Wayne Boyera32c0552010-02-19 13:23:36 -08007062 __be32 res_handle, u8 parm,
7063 dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7066
7067 ioarcb->res_handle = res_handle;
7068 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7069 ioarcb->cmd_pkt.flags_hi |= IPR_FLAGS_HI_WRITE_NOT_READ;
7070 ioarcb->cmd_pkt.cdb[0] = MODE_SELECT;
7071 ioarcb->cmd_pkt.cdb[1] = parm;
7072 ioarcb->cmd_pkt.cdb[4] = xfer_len;
7073
Wayne Boyera32c0552010-02-19 13:23:36 -08007074 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_WRITE_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075}
7076
7077/**
7078 * ipr_ioafp_mode_select_page28 - Issue Mode Select Page 28 to IOA
7079 * @ipr_cmd: ipr command struct
7080 *
7081 * This function sets up the SCSI bus attributes and sends
7082 * a Mode Select for Page 28 to activate them.
7083 *
7084 * Return value:
7085 * IPR_RC_JOB_RETURN
7086 **/
7087static int ipr_ioafp_mode_select_page28(struct ipr_cmnd *ipr_cmd)
7088{
7089 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7090 struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
7091 int length;
7092
7093 ENTER;
Brian King47338042006-02-08 20:57:42 -06007094 ipr_scsi_bus_speed_limit(ioa_cfg);
7095 ipr_check_term_power(ioa_cfg, mode_pages);
7096 ipr_modify_ioafp_mode_page_28(ioa_cfg, mode_pages);
7097 length = mode_pages->hdr.length + 1;
7098 mode_pages->hdr.length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099
7100 ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
7101 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
7102 length);
7103
Wayne Boyerf72919e2010-02-19 13:24:21 -08007104 ipr_cmd->job_step = ipr_set_supported_devs;
7105 ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
7106 struct ipr_resource_entry, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7108
7109 LEAVE;
7110 return IPR_RC_JOB_RETURN;
7111}
7112
7113/**
7114 * ipr_build_mode_sense - Builds a mode sense command
7115 * @ipr_cmd: ipr command struct
7116 * @res: resource entry struct
7117 * @parm: Byte 2 of mode sense command
7118 * @dma_addr: DMA address of mode sense buffer
7119 * @xfer_len: Size of DMA buffer
7120 *
7121 * Return value:
7122 * none
7123 **/
7124static void ipr_build_mode_sense(struct ipr_cmnd *ipr_cmd,
7125 __be32 res_handle,
Wayne Boyera32c0552010-02-19 13:23:36 -08007126 u8 parm, dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
7129
7130 ioarcb->res_handle = res_handle;
7131 ioarcb->cmd_pkt.cdb[0] = MODE_SENSE;
7132 ioarcb->cmd_pkt.cdb[2] = parm;
7133 ioarcb->cmd_pkt.cdb[4] = xfer_len;
7134 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7135
Wayne Boyera32c0552010-02-19 13:23:36 -08007136 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137}
7138
7139/**
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007140 * ipr_reset_cmd_failed - Handle failure of IOA reset command
7141 * @ipr_cmd: ipr command struct
7142 *
7143 * This function handles the failure of an IOA bringup command.
7144 *
7145 * Return value:
7146 * IPR_RC_JOB_RETURN
7147 **/
7148static int ipr_reset_cmd_failed(struct ipr_cmnd *ipr_cmd)
7149{
7150 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07007151 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007152
7153 dev_err(&ioa_cfg->pdev->dev,
7154 "0x%02X failed with IOASC: 0x%08X\n",
7155 ipr_cmd->ioarcb.cmd_pkt.cdb[0], ioasc);
7156
7157 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007158 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007159 return IPR_RC_JOB_RETURN;
7160}
7161
7162/**
7163 * ipr_reset_mode_sense_failed - Handle failure of IOAFP mode sense
7164 * @ipr_cmd: ipr command struct
7165 *
7166 * This function handles the failure of a Mode Sense to the IOAFP.
7167 * Some adapters do not handle all mode pages.
7168 *
7169 * Return value:
7170 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7171 **/
7172static int ipr_reset_mode_sense_failed(struct ipr_cmnd *ipr_cmd)
7173{
Wayne Boyerf72919e2010-02-19 13:24:21 -08007174 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer96d21f02010-05-10 09:13:27 -07007175 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007176
7177 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
Wayne Boyerf72919e2010-02-19 13:24:21 -08007178 ipr_cmd->job_step = ipr_set_supported_devs;
7179 ipr_cmd->u.res = list_entry(ioa_cfg->used_res_q.next,
7180 struct ipr_resource_entry, queue);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007181 return IPR_RC_JOB_CONTINUE;
7182 }
7183
7184 return ipr_reset_cmd_failed(ipr_cmd);
7185}
7186
7187/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188 * ipr_ioafp_mode_sense_page28 - Issue Mode Sense Page 28 to IOA
7189 * @ipr_cmd: ipr command struct
7190 *
7191 * This function send a Page 28 mode sense to the IOA to
7192 * retrieve SCSI bus attributes.
7193 *
7194 * Return value:
7195 * IPR_RC_JOB_RETURN
7196 **/
7197static int ipr_ioafp_mode_sense_page28(struct ipr_cmnd *ipr_cmd)
7198{
7199 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7200
7201 ENTER;
7202 ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
7203 0x28, ioa_cfg->vpd_cbs_dma +
7204 offsetof(struct ipr_misc_cbs, mode_pages),
7205 sizeof(struct ipr_mode_pages));
7206
7207 ipr_cmd->job_step = ipr_ioafp_mode_select_page28;
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06007208 ipr_cmd->job_step_failed = ipr_reset_mode_sense_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209
7210 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7211
7212 LEAVE;
7213 return IPR_RC_JOB_RETURN;
7214}
7215
7216/**
Brian Kingac09c342007-04-26 16:00:16 -05007217 * ipr_ioafp_mode_select_page24 - Issue Mode Select to IOA
7218 * @ipr_cmd: ipr command struct
7219 *
7220 * This function enables dual IOA RAID support if possible.
7221 *
7222 * Return value:
7223 * IPR_RC_JOB_RETURN
7224 **/
7225static int ipr_ioafp_mode_select_page24(struct ipr_cmnd *ipr_cmd)
7226{
7227 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7228 struct ipr_mode_pages *mode_pages = &ioa_cfg->vpd_cbs->mode_pages;
7229 struct ipr_mode_page24 *mode_page;
7230 int length;
7231
7232 ENTER;
7233 mode_page = ipr_get_mode_page(mode_pages, 0x24,
7234 sizeof(struct ipr_mode_page24));
7235
7236 if (mode_page)
7237 mode_page->flags |= IPR_ENABLE_DUAL_IOA_AF;
7238
7239 length = mode_pages->hdr.length + 1;
7240 mode_pages->hdr.length = 0;
7241
7242 ipr_build_mode_select(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE), 0x11,
7243 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, mode_pages),
7244 length);
7245
7246 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
7247 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7248
7249 LEAVE;
7250 return IPR_RC_JOB_RETURN;
7251}
7252
7253/**
7254 * ipr_reset_mode_sense_page24_failed - Handle failure of IOAFP mode sense
7255 * @ipr_cmd: ipr command struct
7256 *
7257 * This function handles the failure of a Mode Sense to the IOAFP.
7258 * Some adapters do not handle all mode pages.
7259 *
7260 * Return value:
7261 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7262 **/
7263static int ipr_reset_mode_sense_page24_failed(struct ipr_cmnd *ipr_cmd)
7264{
Wayne Boyer96d21f02010-05-10 09:13:27 -07007265 u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Brian Kingac09c342007-04-26 16:00:16 -05007266
7267 if (ioasc == IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT) {
7268 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
7269 return IPR_RC_JOB_CONTINUE;
7270 }
7271
7272 return ipr_reset_cmd_failed(ipr_cmd);
7273}
7274
7275/**
7276 * ipr_ioafp_mode_sense_page24 - Issue Page 24 Mode Sense to IOA
7277 * @ipr_cmd: ipr command struct
7278 *
7279 * This function send a mode sense to the IOA to retrieve
7280 * the IOA Advanced Function Control mode page.
7281 *
7282 * Return value:
7283 * IPR_RC_JOB_RETURN
7284 **/
7285static int ipr_ioafp_mode_sense_page24(struct ipr_cmnd *ipr_cmd)
7286{
7287 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7288
7289 ENTER;
7290 ipr_build_mode_sense(ipr_cmd, cpu_to_be32(IPR_IOA_RES_HANDLE),
7291 0x24, ioa_cfg->vpd_cbs_dma +
7292 offsetof(struct ipr_misc_cbs, mode_pages),
7293 sizeof(struct ipr_mode_pages));
7294
7295 ipr_cmd->job_step = ipr_ioafp_mode_select_page24;
7296 ipr_cmd->job_step_failed = ipr_reset_mode_sense_page24_failed;
7297
7298 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7299
7300 LEAVE;
7301 return IPR_RC_JOB_RETURN;
7302}
7303
7304/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305 * ipr_init_res_table - Initialize the resource table
7306 * @ipr_cmd: ipr command struct
7307 *
7308 * This function looks through the existing resource table, comparing
7309 * it with the config table. This function will take care of old/new
7310 * devices and schedule adding/removing them from the mid-layer
7311 * as appropriate.
7312 *
7313 * Return value:
7314 * IPR_RC_JOB_CONTINUE
7315 **/
7316static int ipr_init_res_table(struct ipr_cmnd *ipr_cmd)
7317{
7318 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7319 struct ipr_resource_entry *res, *temp;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007320 struct ipr_config_table_entry_wrapper cfgtew;
7321 int entries, found, flag, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322 LIST_HEAD(old_res);
7323
7324 ENTER;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007325 if (ioa_cfg->sis64)
7326 flag = ioa_cfg->u.cfg_table64->hdr64.flags;
7327 else
7328 flag = ioa_cfg->u.cfg_table->hdr.flags;
7329
7330 if (flag & IPR_UCODE_DOWNLOAD_REQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331 dev_err(&ioa_cfg->pdev->dev, "Microcode download required\n");
7332
7333 list_for_each_entry_safe(res, temp, &ioa_cfg->used_res_q, queue)
7334 list_move_tail(&res->queue, &old_res);
7335
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007336 if (ioa_cfg->sis64)
Wayne Boyer438b0332010-05-10 09:13:00 -07007337 entries = be16_to_cpu(ioa_cfg->u.cfg_table64->hdr64.num_entries);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007338 else
7339 entries = ioa_cfg->u.cfg_table->hdr.num_entries;
7340
7341 for (i = 0; i < entries; i++) {
7342 if (ioa_cfg->sis64)
7343 cfgtew.u.cfgte64 = &ioa_cfg->u.cfg_table64->dev[i];
7344 else
7345 cfgtew.u.cfgte = &ioa_cfg->u.cfg_table->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346 found = 0;
7347
7348 list_for_each_entry_safe(res, temp, &old_res, queue) {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007349 if (ipr_is_same_device(res, &cfgtew)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
7351 found = 1;
7352 break;
7353 }
7354 }
7355
7356 if (!found) {
7357 if (list_empty(&ioa_cfg->free_res_q)) {
7358 dev_err(&ioa_cfg->pdev->dev, "Too many devices attached\n");
7359 break;
7360 }
7361
7362 found = 1;
7363 res = list_entry(ioa_cfg->free_res_q.next,
7364 struct ipr_resource_entry, queue);
7365 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007366 ipr_init_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367 res->add_to_ml = 1;
Wayne Boyer56115592010-06-10 14:46:34 -07007368 } else if (res->sdev && (ipr_is_vset_device(res) || ipr_is_scsi_disk(res)))
7369 res->sdev->allow_restart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370
7371 if (found)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007372 ipr_update_res_entry(res, &cfgtew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373 }
7374
7375 list_for_each_entry_safe(res, temp, &old_res, queue) {
7376 if (res->sdev) {
7377 res->del_from_ml = 1;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007378 res->res_handle = IPR_INVALID_RES_HANDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 list_move_tail(&res->queue, &ioa_cfg->used_res_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 }
7381 }
7382
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007383 list_for_each_entry_safe(res, temp, &old_res, queue) {
7384 ipr_clear_res_target(res);
7385 list_move_tail(&res->queue, &ioa_cfg->free_res_q);
7386 }
7387
Brian Kingac09c342007-04-26 16:00:16 -05007388 if (ioa_cfg->dual_raid && ipr_dual_ioa_raid)
7389 ipr_cmd->job_step = ipr_ioafp_mode_sense_page24;
7390 else
7391 ipr_cmd->job_step = ipr_ioafp_mode_sense_page28;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392
7393 LEAVE;
7394 return IPR_RC_JOB_CONTINUE;
7395}
7396
7397/**
7398 * ipr_ioafp_query_ioa_cfg - Send a Query IOA Config to the adapter.
7399 * @ipr_cmd: ipr command struct
7400 *
7401 * This function sends a Query IOA Configuration command
7402 * to the adapter to retrieve the IOA configuration table.
7403 *
7404 * Return value:
7405 * IPR_RC_JOB_RETURN
7406 **/
7407static int ipr_ioafp_query_ioa_cfg(struct ipr_cmnd *ipr_cmd)
7408{
7409 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7410 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411 struct ipr_inquiry_page3 *ucode_vpd = &ioa_cfg->vpd_cbs->page3_data;
Brian Kingac09c342007-04-26 16:00:16 -05007412 struct ipr_inquiry_cap *cap = &ioa_cfg->vpd_cbs->cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413
7414 ENTER;
Brian Kingac09c342007-04-26 16:00:16 -05007415 if (cap->cap & IPR_CAP_DUAL_IOA_RAID)
7416 ioa_cfg->dual_raid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417 dev_info(&ioa_cfg->pdev->dev, "Adapter firmware version: %02X%02X%02X%02X\n",
7418 ucode_vpd->major_release, ucode_vpd->card_type,
7419 ucode_vpd->minor_release[0], ucode_vpd->minor_release[1]);
7420 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7421 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7422
7423 ioarcb->cmd_pkt.cdb[0] = IPR_QUERY_IOA_CONFIG;
Wayne Boyer438b0332010-05-10 09:13:00 -07007424 ioarcb->cmd_pkt.cdb[6] = (ioa_cfg->cfg_table_size >> 16) & 0xff;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007425 ioarcb->cmd_pkt.cdb[7] = (ioa_cfg->cfg_table_size >> 8) & 0xff;
7426 ioarcb->cmd_pkt.cdb[8] = ioa_cfg->cfg_table_size & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007428 ipr_init_ioadl(ipr_cmd, ioa_cfg->cfg_table_dma, ioa_cfg->cfg_table_size,
Wayne Boyera32c0552010-02-19 13:23:36 -08007429 IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007430
7431 ipr_cmd->job_step = ipr_init_res_table;
7432
7433 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7434
7435 LEAVE;
7436 return IPR_RC_JOB_RETURN;
7437}
7438
7439/**
7440 * ipr_ioafp_inquiry - Send an Inquiry to the adapter.
7441 * @ipr_cmd: ipr command struct
7442 *
7443 * This utility function sends an inquiry to the adapter.
7444 *
7445 * Return value:
7446 * none
7447 **/
7448static void ipr_ioafp_inquiry(struct ipr_cmnd *ipr_cmd, u8 flags, u8 page,
Wayne Boyera32c0552010-02-19 13:23:36 -08007449 dma_addr_t dma_addr, u8 xfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450{
7451 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
7453 ENTER;
7454 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
7455 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
7456
7457 ioarcb->cmd_pkt.cdb[0] = INQUIRY;
7458 ioarcb->cmd_pkt.cdb[1] = flags;
7459 ioarcb->cmd_pkt.cdb[2] = page;
7460 ioarcb->cmd_pkt.cdb[4] = xfer_len;
7461
Wayne Boyera32c0552010-02-19 13:23:36 -08007462 ipr_init_ioadl(ipr_cmd, dma_addr, xfer_len, IPR_IOADL_FLAGS_READ_LAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463
7464 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, IPR_INTERNAL_TIMEOUT);
7465 LEAVE;
7466}
7467
7468/**
brking@us.ibm.com62275042005-11-01 17:01:14 -06007469 * ipr_inquiry_page_supported - Is the given inquiry page supported
7470 * @page0: inquiry page 0 buffer
7471 * @page: page code.
7472 *
7473 * This function determines if the specified inquiry page is supported.
7474 *
7475 * Return value:
7476 * 1 if page is supported / 0 if not
7477 **/
7478static int ipr_inquiry_page_supported(struct ipr_inquiry_page0 *page0, u8 page)
7479{
7480 int i;
7481
7482 for (i = 0; i < min_t(u8, page0->len, IPR_INQUIRY_PAGE0_ENTRIES); i++)
7483 if (page0->page[i] == page)
7484 return 1;
7485
7486 return 0;
7487}
7488
7489/**
Brian Kingac09c342007-04-26 16:00:16 -05007490 * ipr_ioafp_cap_inquiry - Send a Page 0xD0 Inquiry to the adapter.
7491 * @ipr_cmd: ipr command struct
7492 *
7493 * This function sends a Page 0xD0 inquiry to the adapter
7494 * to retrieve adapter capabilities.
7495 *
7496 * Return value:
7497 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7498 **/
7499static int ipr_ioafp_cap_inquiry(struct ipr_cmnd *ipr_cmd)
7500{
7501 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7502 struct ipr_inquiry_page0 *page0 = &ioa_cfg->vpd_cbs->page0_data;
7503 struct ipr_inquiry_cap *cap = &ioa_cfg->vpd_cbs->cap;
7504
7505 ENTER;
7506 ipr_cmd->job_step = ipr_ioafp_query_ioa_cfg;
7507 memset(cap, 0, sizeof(*cap));
7508
7509 if (ipr_inquiry_page_supported(page0, 0xD0)) {
7510 ipr_ioafp_inquiry(ipr_cmd, 1, 0xD0,
7511 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, cap),
7512 sizeof(struct ipr_inquiry_cap));
7513 return IPR_RC_JOB_RETURN;
7514 }
7515
7516 LEAVE;
7517 return IPR_RC_JOB_CONTINUE;
7518}
7519
7520/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521 * ipr_ioafp_page3_inquiry - Send a Page 3 Inquiry to the adapter.
7522 * @ipr_cmd: ipr command struct
7523 *
7524 * This function sends a Page 3 inquiry to the adapter
7525 * to retrieve software VPD information.
7526 *
7527 * Return value:
7528 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7529 **/
7530static int ipr_ioafp_page3_inquiry(struct ipr_cmnd *ipr_cmd)
7531{
7532 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007533
7534 ENTER;
7535
Brian Kingac09c342007-04-26 16:00:16 -05007536 ipr_cmd->job_step = ipr_ioafp_cap_inquiry;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007537
7538 ipr_ioafp_inquiry(ipr_cmd, 1, 3,
7539 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page3_data),
7540 sizeof(struct ipr_inquiry_page3));
7541
7542 LEAVE;
7543 return IPR_RC_JOB_RETURN;
7544}
7545
7546/**
7547 * ipr_ioafp_page0_inquiry - Send a Page 0 Inquiry to the adapter.
7548 * @ipr_cmd: ipr command struct
7549 *
7550 * This function sends a Page 0 inquiry to the adapter
7551 * to retrieve supported inquiry pages.
7552 *
7553 * Return value:
7554 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7555 **/
7556static int ipr_ioafp_page0_inquiry(struct ipr_cmnd *ipr_cmd)
7557{
7558 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 char type[5];
7560
7561 ENTER;
7562
7563 /* Grab the type out of the VPD and store it away */
7564 memcpy(type, ioa_cfg->vpd_cbs->ioa_vpd.std_inq_data.vpids.product_id, 4);
7565 type[4] = '\0';
7566 ioa_cfg->type = simple_strtoul((char *)type, NULL, 16);
7567
brking@us.ibm.com62275042005-11-01 17:01:14 -06007568 ipr_cmd->job_step = ipr_ioafp_page3_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569
brking@us.ibm.com62275042005-11-01 17:01:14 -06007570 ipr_ioafp_inquiry(ipr_cmd, 1, 0,
7571 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, page0_data),
7572 sizeof(struct ipr_inquiry_page0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007573
7574 LEAVE;
7575 return IPR_RC_JOB_RETURN;
7576}
7577
7578/**
7579 * ipr_ioafp_std_inquiry - Send a Standard Inquiry to the adapter.
7580 * @ipr_cmd: ipr command struct
7581 *
7582 * This function sends a standard inquiry to the adapter.
7583 *
7584 * Return value:
7585 * IPR_RC_JOB_RETURN
7586 **/
7587static int ipr_ioafp_std_inquiry(struct ipr_cmnd *ipr_cmd)
7588{
7589 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7590
7591 ENTER;
brking@us.ibm.com62275042005-11-01 17:01:14 -06007592 ipr_cmd->job_step = ipr_ioafp_page0_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593
7594 ipr_ioafp_inquiry(ipr_cmd, 0, 0,
7595 ioa_cfg->vpd_cbs_dma + offsetof(struct ipr_misc_cbs, ioa_vpd),
7596 sizeof(struct ipr_ioa_vpd));
7597
7598 LEAVE;
7599 return IPR_RC_JOB_RETURN;
7600}
7601
7602/**
Wayne Boyer214777b2010-02-19 13:24:26 -08007603 * ipr_ioafp_identify_hrrq - Send Identify Host RRQ.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604 * @ipr_cmd: ipr command struct
7605 *
7606 * This function send an Identify Host Request Response Queue
7607 * command to establish the HRRQ with the adapter.
7608 *
7609 * Return value:
7610 * IPR_RC_JOB_RETURN
7611 **/
Wayne Boyer214777b2010-02-19 13:24:26 -08007612static int ipr_ioafp_identify_hrrq(struct ipr_cmnd *ipr_cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613{
7614 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7615 struct ipr_ioarcb *ioarcb = &ipr_cmd->ioarcb;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007616 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617
7618 ENTER;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007619 ipr_cmd->job_step = ipr_ioafp_std_inquiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620 dev_info(&ioa_cfg->pdev->dev, "Starting IOA initialization sequence.\n");
7621
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007622 if (ioa_cfg->identify_hrrq_index < ioa_cfg->hrrq_num) {
7623 hrrq = &ioa_cfg->hrrq[ioa_cfg->identify_hrrq_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007625 ioarcb->cmd_pkt.cdb[0] = IPR_ID_HOST_RR_Q;
7626 ioarcb->res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007628 ioarcb->cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
7629 if (ioa_cfg->sis64)
7630 ioarcb->cmd_pkt.cdb[1] = 0x1;
7631
7632 if (ioa_cfg->nvectors == 1)
7633 ioarcb->cmd_pkt.cdb[1] &= ~IPR_ID_HRRQ_SELE_ENABLE;
7634 else
7635 ioarcb->cmd_pkt.cdb[1] |= IPR_ID_HRRQ_SELE_ENABLE;
7636
7637 ioarcb->cmd_pkt.cdb[2] =
7638 ((u64) hrrq->host_rrq_dma >> 24) & 0xff;
7639 ioarcb->cmd_pkt.cdb[3] =
7640 ((u64) hrrq->host_rrq_dma >> 16) & 0xff;
7641 ioarcb->cmd_pkt.cdb[4] =
7642 ((u64) hrrq->host_rrq_dma >> 8) & 0xff;
7643 ioarcb->cmd_pkt.cdb[5] =
7644 ((u64) hrrq->host_rrq_dma) & 0xff;
7645 ioarcb->cmd_pkt.cdb[7] =
7646 ((sizeof(u32) * hrrq->size) >> 8) & 0xff;
7647 ioarcb->cmd_pkt.cdb[8] =
7648 (sizeof(u32) * hrrq->size) & 0xff;
7649
7650 if (ioarcb->cmd_pkt.cdb[1] & IPR_ID_HRRQ_SELE_ENABLE)
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007651 ioarcb->cmd_pkt.cdb[9] =
7652 ioa_cfg->identify_hrrq_index;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007653
7654 if (ioa_cfg->sis64) {
7655 ioarcb->cmd_pkt.cdb[10] =
7656 ((u64) hrrq->host_rrq_dma >> 56) & 0xff;
7657 ioarcb->cmd_pkt.cdb[11] =
7658 ((u64) hrrq->host_rrq_dma >> 48) & 0xff;
7659 ioarcb->cmd_pkt.cdb[12] =
7660 ((u64) hrrq->host_rrq_dma >> 40) & 0xff;
7661 ioarcb->cmd_pkt.cdb[13] =
7662 ((u64) hrrq->host_rrq_dma >> 32) & 0xff;
7663 }
7664
7665 if (ioarcb->cmd_pkt.cdb[1] & IPR_ID_HRRQ_SELE_ENABLE)
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007666 ioarcb->cmd_pkt.cdb[14] =
7667 ioa_cfg->identify_hrrq_index;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007668
7669 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
7670 IPR_INTERNAL_TIMEOUT);
7671
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007672 if (++ioa_cfg->identify_hrrq_index < ioa_cfg->hrrq_num)
7673 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007674
7675 LEAVE;
7676 return IPR_RC_JOB_RETURN;
Wayne Boyer214777b2010-02-19 13:24:26 -08007677 }
7678
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679 LEAVE;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007680 return IPR_RC_JOB_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681}
7682
7683/**
7684 * ipr_reset_timer_done - Adapter reset timer function
7685 * @ipr_cmd: ipr command struct
7686 *
7687 * Description: This function is used in adapter reset processing
7688 * for timing events. If the reset_cmd pointer in the IOA
7689 * config struct is not this adapter's we are doing nested
7690 * resets and fail_all_ops will take care of freeing the
7691 * command block.
7692 *
7693 * Return value:
7694 * none
7695 **/
7696static void ipr_reset_timer_done(struct ipr_cmnd *ipr_cmd)
7697{
7698 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7699 unsigned long lock_flags = 0;
7700
7701 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
7702
7703 if (ioa_cfg->reset_cmd == ipr_cmd) {
7704 list_del(&ipr_cmd->queue);
7705 ipr_cmd->done(ipr_cmd);
7706 }
7707
7708 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
7709}
7710
7711/**
7712 * ipr_reset_start_timer - Start a timer for adapter reset job
7713 * @ipr_cmd: ipr command struct
7714 * @timeout: timeout value
7715 *
7716 * Description: This function is used in adapter reset processing
7717 * for timing events. If the reset_cmd pointer in the IOA
7718 * config struct is not this adapter's we are doing nested
7719 * resets and fail_all_ops will take care of freeing the
7720 * command block.
7721 *
7722 * Return value:
7723 * none
7724 **/
7725static void ipr_reset_start_timer(struct ipr_cmnd *ipr_cmd,
7726 unsigned long timeout)
7727{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007728
7729 ENTER;
7730 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731 ipr_cmd->done = ipr_reset_ioa_job;
7732
7733 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
7734 ipr_cmd->timer.expires = jiffies + timeout;
7735 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_reset_timer_done;
7736 add_timer(&ipr_cmd->timer);
7737}
7738
7739/**
7740 * ipr_init_ioa_mem - Initialize ioa_cfg control block
7741 * @ioa_cfg: ioa cfg struct
7742 *
7743 * Return value:
7744 * nothing
7745 **/
7746static void ipr_init_ioa_mem(struct ipr_ioa_cfg *ioa_cfg)
7747{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007748 struct ipr_hrr_queue *hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007750 for_each_hrrq(hrrq, ioa_cfg) {
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007751 spin_lock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007752 memset(hrrq->host_rrq, 0, sizeof(u32) * hrrq->size);
7753
7754 /* Initialize Host RRQ pointers */
7755 hrrq->hrrq_start = hrrq->host_rrq;
7756 hrrq->hrrq_end = &hrrq->host_rrq[hrrq->size - 1];
7757 hrrq->hrrq_curr = hrrq->hrrq_start;
7758 hrrq->toggle_bit = 1;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007759 spin_unlock(&hrrq->_lock);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007760 }
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007761 wmb();
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007762
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007763 ioa_cfg->identify_hrrq_index = 0;
7764 if (ioa_cfg->hrrq_num == 1)
7765 atomic_set(&ioa_cfg->hrrq_index, 0);
7766 else
7767 atomic_set(&ioa_cfg->hrrq_index, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768
7769 /* Zero out config table */
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08007770 memset(ioa_cfg->u.cfg_table, 0, ioa_cfg->cfg_table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771}
7772
7773/**
Wayne Boyer214777b2010-02-19 13:24:26 -08007774 * ipr_reset_next_stage - Process IPL stage change based on feedback register.
7775 * @ipr_cmd: ipr command struct
7776 *
7777 * Return value:
7778 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
7779 **/
7780static int ipr_reset_next_stage(struct ipr_cmnd *ipr_cmd)
7781{
7782 unsigned long stage, stage_time;
7783 u32 feedback;
7784 volatile u32 int_reg;
7785 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7786 u64 maskval = 0;
7787
7788 feedback = readl(ioa_cfg->regs.init_feedback_reg);
7789 stage = feedback & IPR_IPL_INIT_STAGE_MASK;
7790 stage_time = feedback & IPR_IPL_INIT_STAGE_TIME_MASK;
7791
7792 ipr_dbg("IPL stage = 0x%lx, IPL stage time = %ld\n", stage, stage_time);
7793
7794 /* sanity check the stage_time value */
Wayne Boyer438b0332010-05-10 09:13:00 -07007795 if (stage_time == 0)
7796 stage_time = IPR_IPL_INIT_DEFAULT_STAGE_TIME;
7797 else if (stage_time < IPR_IPL_INIT_MIN_STAGE_TIME)
Wayne Boyer214777b2010-02-19 13:24:26 -08007798 stage_time = IPR_IPL_INIT_MIN_STAGE_TIME;
7799 else if (stage_time > IPR_LONG_OPERATIONAL_TIMEOUT)
7800 stage_time = IPR_LONG_OPERATIONAL_TIMEOUT;
7801
7802 if (stage == IPR_IPL_INIT_STAGE_UNKNOWN) {
7803 writel(IPR_PCII_IPL_STAGE_CHANGE, ioa_cfg->regs.set_interrupt_mask_reg);
7804 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7805 stage_time = ioa_cfg->transop_timeout;
7806 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
7807 } else if (stage == IPR_IPL_INIT_STAGE_TRANSOP) {
Wayne Boyer1df79ca2010-07-14 10:49:43 -07007808 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
7809 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
7810 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
7811 maskval = IPR_PCII_IPL_STAGE_CHANGE;
7812 maskval = (maskval << 32) | IPR_PCII_IOA_TRANS_TO_OPER;
7813 writeq(maskval, ioa_cfg->regs.set_interrupt_mask_reg);
7814 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7815 return IPR_RC_JOB_CONTINUE;
7816 }
Wayne Boyer214777b2010-02-19 13:24:26 -08007817 }
7818
7819 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
7820 ipr_cmd->timer.expires = jiffies + stage_time * HZ;
7821 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
7822 ipr_cmd->done = ipr_reset_ioa_job;
7823 add_timer(&ipr_cmd->timer);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007824
7825 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Wayne Boyer214777b2010-02-19 13:24:26 -08007826
7827 return IPR_RC_JOB_RETURN;
7828}
7829
7830/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831 * ipr_reset_enable_ioa - Enable the IOA following a reset.
7832 * @ipr_cmd: ipr command struct
7833 *
7834 * This function reinitializes some control blocks and
7835 * enables destructive diagnostics on the adapter.
7836 *
7837 * Return value:
7838 * IPR_RC_JOB_RETURN
7839 **/
7840static int ipr_reset_enable_ioa(struct ipr_cmnd *ipr_cmd)
7841{
7842 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7843 volatile u32 int_reg;
Wayne Boyer7be96902010-05-10 09:14:07 -07007844 volatile u64 maskval;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007845 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846
7847 ENTER;
Wayne Boyer214777b2010-02-19 13:24:26 -08007848 ipr_cmd->job_step = ipr_ioafp_identify_hrrq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849 ipr_init_ioa_mem(ioa_cfg);
7850
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06007851 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
7852 spin_lock(&ioa_cfg->hrrq[i]._lock);
7853 ioa_cfg->hrrq[i].allow_interrupts = 1;
7854 spin_unlock(&ioa_cfg->hrrq[i]._lock);
7855 }
7856 wmb();
Wayne Boyer8701f182010-06-04 10:26:50 -07007857 if (ioa_cfg->sis64) {
7858 /* Set the adapter to the correct endian mode. */
7859 writel(IPR_ENDIAN_SWAP_KEY, ioa_cfg->regs.endian_swap_reg);
7860 int_reg = readl(ioa_cfg->regs.endian_swap_reg);
7861 }
7862
Wayne Boyer7be96902010-05-10 09:14:07 -07007863 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864
7865 if (int_reg & IPR_PCII_IOA_TRANS_TO_OPER) {
7866 writel((IPR_PCII_ERROR_INTERRUPTS | IPR_PCII_HRRQ_UPDATED),
Wayne Boyer214777b2010-02-19 13:24:26 -08007867 ioa_cfg->regs.clr_interrupt_mask_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7869 return IPR_RC_JOB_CONTINUE;
7870 }
7871
7872 /* Enable destructive diagnostics on IOA */
Wayne Boyer214777b2010-02-19 13:24:26 -08007873 writel(ioa_cfg->doorbell, ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874
Wayne Boyer7be96902010-05-10 09:14:07 -07007875 if (ioa_cfg->sis64) {
7876 maskval = IPR_PCII_IPL_STAGE_CHANGE;
7877 maskval = (maskval << 32) | IPR_PCII_OPER_INTERRUPTS;
7878 writeq(maskval, ioa_cfg->regs.clr_interrupt_mask_reg);
7879 } else
7880 writel(IPR_PCII_OPER_INTERRUPTS, ioa_cfg->regs.clr_interrupt_mask_reg32);
Wayne Boyer214777b2010-02-19 13:24:26 -08007881
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
7883
7884 dev_info(&ioa_cfg->pdev->dev, "Initializing IOA.\n");
7885
Wayne Boyer214777b2010-02-19 13:24:26 -08007886 if (ioa_cfg->sis64) {
7887 ipr_cmd->job_step = ipr_reset_next_stage;
7888 return IPR_RC_JOB_CONTINUE;
7889 }
7890
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891 ipr_cmd->timer.data = (unsigned long) ipr_cmd;
Brian King5469cb52007-03-29 12:42:40 -05007892 ipr_cmd->timer.expires = jiffies + (ioa_cfg->transop_timeout * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893 ipr_cmd->timer.function = (void (*)(unsigned long))ipr_oper_timeout;
7894 ipr_cmd->done = ipr_reset_ioa_job;
7895 add_timer(&ipr_cmd->timer);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06007896 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897
7898 LEAVE;
7899 return IPR_RC_JOB_RETURN;
7900}
7901
7902/**
7903 * ipr_reset_wait_for_dump - Wait for a dump to timeout.
7904 * @ipr_cmd: ipr command struct
7905 *
7906 * This function is invoked when an adapter dump has run out
7907 * of processing time.
7908 *
7909 * Return value:
7910 * IPR_RC_JOB_CONTINUE
7911 **/
7912static int ipr_reset_wait_for_dump(struct ipr_cmnd *ipr_cmd)
7913{
7914 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
7915
7916 if (ioa_cfg->sdt_state == GET_DUMP)
Brian King41e9a692011-09-21 08:51:11 -05007917 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
7918 else if (ioa_cfg->sdt_state == READ_DUMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919 ioa_cfg->sdt_state = ABORT_DUMP;
7920
Brian King4c647e92011-10-15 09:08:56 -05007921 ioa_cfg->dump_timeout = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922 ipr_cmd->job_step = ipr_reset_alert;
7923
7924 return IPR_RC_JOB_CONTINUE;
7925}
7926
7927/**
7928 * ipr_unit_check_no_data - Log a unit check/no data error log
7929 * @ioa_cfg: ioa config struct
7930 *
7931 * Logs an error indicating the adapter unit checked, but for some
7932 * reason, we were unable to fetch the unit check buffer.
7933 *
7934 * Return value:
7935 * nothing
7936 **/
7937static void ipr_unit_check_no_data(struct ipr_ioa_cfg *ioa_cfg)
7938{
7939 ioa_cfg->errors_logged++;
7940 dev_err(&ioa_cfg->pdev->dev, "IOA unit check with no data\n");
7941}
7942
7943/**
7944 * ipr_get_unit_check_buffer - Get the unit check buffer from the IOA
7945 * @ioa_cfg: ioa config struct
7946 *
7947 * Fetches the unit check buffer from the adapter by clocking the data
7948 * through the mailbox register.
7949 *
7950 * Return value:
7951 * nothing
7952 **/
7953static void ipr_get_unit_check_buffer(struct ipr_ioa_cfg *ioa_cfg)
7954{
7955 unsigned long mailbox;
7956 struct ipr_hostrcb *hostrcb;
7957 struct ipr_uc_sdt sdt;
7958 int rc, length;
Brian King65f56472007-04-26 16:00:12 -05007959 u32 ioasc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007960
7961 mailbox = readl(ioa_cfg->ioa_mailbox);
7962
Wayne Boyerdcbad002010-02-19 13:24:14 -08007963 if (!ioa_cfg->sis64 && !ipr_sdt_is_fmt2(mailbox)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964 ipr_unit_check_no_data(ioa_cfg);
7965 return;
7966 }
7967
7968 memset(&sdt, 0, sizeof(struct ipr_uc_sdt));
7969 rc = ipr_get_ldump_data_section(ioa_cfg, mailbox, (__be32 *) &sdt,
7970 (sizeof(struct ipr_uc_sdt)) / sizeof(__be32));
7971
Wayne Boyerdcbad002010-02-19 13:24:14 -08007972 if (rc || !(sdt.entry[0].flags & IPR_SDT_VALID_ENTRY) ||
7973 ((be32_to_cpu(sdt.hdr.state) != IPR_FMT3_SDT_READY_TO_USE) &&
7974 (be32_to_cpu(sdt.hdr.state) != IPR_FMT2_SDT_READY_TO_USE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975 ipr_unit_check_no_data(ioa_cfg);
7976 return;
7977 }
7978
7979 /* Find length of the first sdt entry (UC buffer) */
Wayne Boyerdcbad002010-02-19 13:24:14 -08007980 if (be32_to_cpu(sdt.hdr.state) == IPR_FMT3_SDT_READY_TO_USE)
7981 length = be32_to_cpu(sdt.entry[0].end_token);
7982 else
7983 length = (be32_to_cpu(sdt.entry[0].end_token) -
7984 be32_to_cpu(sdt.entry[0].start_token)) &
7985 IPR_FMT2_MBX_ADDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986
7987 hostrcb = list_entry(ioa_cfg->hostrcb_free_q.next,
7988 struct ipr_hostrcb, queue);
7989 list_del(&hostrcb->queue);
7990 memset(&hostrcb->hcam, 0, sizeof(hostrcb->hcam));
7991
7992 rc = ipr_get_ldump_data_section(ioa_cfg,
Wayne Boyerdcbad002010-02-19 13:24:14 -08007993 be32_to_cpu(sdt.entry[0].start_token),
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994 (__be32 *)&hostrcb->hcam,
7995 min(length, (int)sizeof(hostrcb->hcam)) / sizeof(__be32));
7996
Brian King65f56472007-04-26 16:00:12 -05007997 if (!rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998 ipr_handle_log_data(ioa_cfg, hostrcb);
Wayne Boyer4565e372010-02-19 13:24:07 -08007999 ioasc = be32_to_cpu(hostrcb->hcam.u.error.fd_ioasc);
Brian King65f56472007-04-26 16:00:12 -05008000 if (ioasc == IPR_IOASC_NR_IOA_RESET_REQUIRED &&
8001 ioa_cfg->sdt_state == GET_DUMP)
8002 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
8003 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004 ipr_unit_check_no_data(ioa_cfg);
8005
8006 list_add_tail(&hostrcb->queue, &ioa_cfg->hostrcb_free_q);
8007}
8008
8009/**
Wayne Boyer110def82010-11-04 09:36:16 -07008010 * ipr_reset_get_unit_check_job - Call to get the unit check buffer.
8011 * @ipr_cmd: ipr command struct
8012 *
8013 * Description: This function will call to get the unit check buffer.
8014 *
8015 * Return value:
8016 * IPR_RC_JOB_RETURN
8017 **/
8018static int ipr_reset_get_unit_check_job(struct ipr_cmnd *ipr_cmd)
8019{
8020 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8021
8022 ENTER;
8023 ioa_cfg->ioa_unit_checked = 0;
8024 ipr_get_unit_check_buffer(ioa_cfg);
8025 ipr_cmd->job_step = ipr_reset_alert;
8026 ipr_reset_start_timer(ipr_cmd, 0);
8027
8028 LEAVE;
8029 return IPR_RC_JOB_RETURN;
8030}
8031
8032/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033 * ipr_reset_restore_cfg_space - Restore PCI config space.
8034 * @ipr_cmd: ipr command struct
8035 *
8036 * Description: This function restores the saved PCI config space of
8037 * the adapter, fails all outstanding ops back to the callers, and
8038 * fetches the dump/unit check if applicable to this reset.
8039 *
8040 * Return value:
8041 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8042 **/
8043static int ipr_reset_restore_cfg_space(struct ipr_cmnd *ipr_cmd)
8044{
8045 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyer630ad8312011-04-07 12:12:30 -07008046 u32 int_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047
8048 ENTER;
Kleber Sacilotto de Souza99c965d2009-11-25 20:13:43 -02008049 ioa_cfg->pdev->state_saved = true;
Jon Mason1d3c16a2010-11-30 17:43:26 -06008050 pci_restore_state(ioa_cfg->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051
8052 if (ipr_set_pcix_cmd_reg(ioa_cfg)) {
Wayne Boyer96d21f02010-05-10 09:13:27 -07008053 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054 return IPR_RC_JOB_CONTINUE;
8055 }
8056
8057 ipr_fail_all_ops(ioa_cfg);
8058
Wayne Boyer8701f182010-06-04 10:26:50 -07008059 if (ioa_cfg->sis64) {
8060 /* Set the adapter to the correct endian mode. */
8061 writel(IPR_ENDIAN_SWAP_KEY, ioa_cfg->regs.endian_swap_reg);
8062 int_reg = readl(ioa_cfg->regs.endian_swap_reg);
8063 }
8064
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065 if (ioa_cfg->ioa_unit_checked) {
Wayne Boyer110def82010-11-04 09:36:16 -07008066 if (ioa_cfg->sis64) {
8067 ipr_cmd->job_step = ipr_reset_get_unit_check_job;
8068 ipr_reset_start_timer(ipr_cmd, IPR_DUMP_DELAY_TIMEOUT);
8069 return IPR_RC_JOB_RETURN;
8070 } else {
8071 ioa_cfg->ioa_unit_checked = 0;
8072 ipr_get_unit_check_buffer(ioa_cfg);
8073 ipr_cmd->job_step = ipr_reset_alert;
8074 ipr_reset_start_timer(ipr_cmd, 0);
8075 return IPR_RC_JOB_RETURN;
8076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077 }
8078
8079 if (ioa_cfg->in_ioa_bringdown) {
8080 ipr_cmd->job_step = ipr_ioa_bringdown_done;
8081 } else {
8082 ipr_cmd->job_step = ipr_reset_enable_ioa;
8083
8084 if (GET_DUMP == ioa_cfg->sdt_state) {
Brian King41e9a692011-09-21 08:51:11 -05008085 ioa_cfg->sdt_state = READ_DUMP;
Brian King4c647e92011-10-15 09:08:56 -05008086 ioa_cfg->dump_timeout = 0;
Kleber Sacilotto de Souza4d4dd702011-04-26 19:23:29 -03008087 if (ioa_cfg->sis64)
8088 ipr_reset_start_timer(ipr_cmd, IPR_SIS64_DUMP_TIMEOUT);
8089 else
8090 ipr_reset_start_timer(ipr_cmd, IPR_SIS32_DUMP_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091 ipr_cmd->job_step = ipr_reset_wait_for_dump;
8092 schedule_work(&ioa_cfg->work_q);
8093 return IPR_RC_JOB_RETURN;
8094 }
8095 }
8096
Wayne Boyer438b0332010-05-10 09:13:00 -07008097 LEAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098 return IPR_RC_JOB_CONTINUE;
8099}
8100
8101/**
Brian Kinge619e1a2007-01-23 11:25:37 -06008102 * ipr_reset_bist_done - BIST has completed on the adapter.
8103 * @ipr_cmd: ipr command struct
8104 *
8105 * Description: Unblock config space and resume the reset process.
8106 *
8107 * Return value:
8108 * IPR_RC_JOB_CONTINUE
8109 **/
8110static int ipr_reset_bist_done(struct ipr_cmnd *ipr_cmd)
8111{
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008112 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8113
Brian Kinge619e1a2007-01-23 11:25:37 -06008114 ENTER;
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008115 if (ioa_cfg->cfg_locked)
8116 pci_cfg_access_unlock(ioa_cfg->pdev);
8117 ioa_cfg->cfg_locked = 0;
Brian Kinge619e1a2007-01-23 11:25:37 -06008118 ipr_cmd->job_step = ipr_reset_restore_cfg_space;
8119 LEAVE;
8120 return IPR_RC_JOB_CONTINUE;
8121}
8122
8123/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124 * ipr_reset_start_bist - Run BIST on the adapter.
8125 * @ipr_cmd: ipr command struct
8126 *
8127 * Description: This function runs BIST on the adapter, then delays 2 seconds.
8128 *
8129 * Return value:
8130 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8131 **/
8132static int ipr_reset_start_bist(struct ipr_cmnd *ipr_cmd)
8133{
8134 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008135 int rc = PCIBIOS_SUCCESSFUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136
8137 ENTER;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008138 if (ioa_cfg->ipr_chip->bist_method == IPR_MMIO)
8139 writel(IPR_UPROCI_SIS64_START_BIST,
8140 ioa_cfg->regs.set_uproc_interrupt_reg32);
8141 else
8142 rc = pci_write_config_byte(ioa_cfg->pdev, PCI_BIST, PCI_BIST_START);
8143
8144 if (rc == PCIBIOS_SUCCESSFUL) {
Brian Kinge619e1a2007-01-23 11:25:37 -06008145 ipr_cmd->job_step = ipr_reset_bist_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146 ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
8147 rc = IPR_RC_JOB_RETURN;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008148 } else {
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008149 if (ioa_cfg->cfg_locked)
8150 pci_cfg_access_unlock(ipr_cmd->ioa_cfg->pdev);
8151 ioa_cfg->cfg_locked = 0;
Wayne Boyercb237ef2010-06-17 11:51:40 -07008152 ipr_cmd->s.ioasa.hdr.ioasc = cpu_to_be32(IPR_IOASC_PCI_ACCESS_ERROR);
8153 rc = IPR_RC_JOB_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154 }
8155
8156 LEAVE;
8157 return rc;
8158}
8159
8160/**
Brian King463fc692007-05-07 17:09:05 -05008161 * ipr_reset_slot_reset_done - Clear PCI reset to the adapter
8162 * @ipr_cmd: ipr command struct
8163 *
8164 * Description: This clears PCI reset to the adapter and delays two seconds.
8165 *
8166 * Return value:
8167 * IPR_RC_JOB_RETURN
8168 **/
8169static int ipr_reset_slot_reset_done(struct ipr_cmnd *ipr_cmd)
8170{
8171 ENTER;
8172 pci_set_pcie_reset_state(ipr_cmd->ioa_cfg->pdev, pcie_deassert_reset);
8173 ipr_cmd->job_step = ipr_reset_bist_done;
8174 ipr_reset_start_timer(ipr_cmd, IPR_WAIT_FOR_BIST_TIMEOUT);
8175 LEAVE;
8176 return IPR_RC_JOB_RETURN;
8177}
8178
8179/**
8180 * ipr_reset_slot_reset - Reset the PCI slot of the adapter.
8181 * @ipr_cmd: ipr command struct
8182 *
8183 * Description: This asserts PCI reset to the adapter.
8184 *
8185 * Return value:
8186 * IPR_RC_JOB_RETURN
8187 **/
8188static int ipr_reset_slot_reset(struct ipr_cmnd *ipr_cmd)
8189{
8190 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8191 struct pci_dev *pdev = ioa_cfg->pdev;
8192
8193 ENTER;
Brian King463fc692007-05-07 17:09:05 -05008194 pci_set_pcie_reset_state(pdev, pcie_warm_reset);
8195 ipr_cmd->job_step = ipr_reset_slot_reset_done;
8196 ipr_reset_start_timer(ipr_cmd, IPR_PCI_RESET_TIMEOUT);
8197 LEAVE;
8198 return IPR_RC_JOB_RETURN;
8199}
8200
8201/**
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008202 * ipr_reset_block_config_access_wait - Wait for permission to block config access
8203 * @ipr_cmd: ipr command struct
8204 *
8205 * Description: This attempts to block config access to the IOA.
8206 *
8207 * Return value:
8208 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8209 **/
8210static int ipr_reset_block_config_access_wait(struct ipr_cmnd *ipr_cmd)
8211{
8212 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8213 int rc = IPR_RC_JOB_CONTINUE;
8214
8215 if (pci_cfg_access_trylock(ioa_cfg->pdev)) {
8216 ioa_cfg->cfg_locked = 1;
8217 ipr_cmd->job_step = ioa_cfg->reset;
8218 } else {
8219 if (ipr_cmd->u.time_left) {
8220 rc = IPR_RC_JOB_RETURN;
8221 ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
8222 ipr_reset_start_timer(ipr_cmd,
8223 IPR_CHECK_FOR_RESET_TIMEOUT);
8224 } else {
8225 ipr_cmd->job_step = ioa_cfg->reset;
8226 dev_err(&ioa_cfg->pdev->dev,
8227 "Timed out waiting to lock config access. Resetting anyway.\n");
8228 }
8229 }
8230
8231 return rc;
8232}
8233
8234/**
8235 * ipr_reset_block_config_access - Block config access to the IOA
8236 * @ipr_cmd: ipr command struct
8237 *
8238 * Description: This attempts to block config access to the IOA
8239 *
8240 * Return value:
8241 * IPR_RC_JOB_CONTINUE
8242 **/
8243static int ipr_reset_block_config_access(struct ipr_cmnd *ipr_cmd)
8244{
8245 ipr_cmd->ioa_cfg->cfg_locked = 0;
8246 ipr_cmd->job_step = ipr_reset_block_config_access_wait;
8247 ipr_cmd->u.time_left = IPR_WAIT_FOR_RESET_TIMEOUT;
8248 return IPR_RC_JOB_CONTINUE;
8249}
8250
8251/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252 * ipr_reset_allowed - Query whether or not IOA can be reset
8253 * @ioa_cfg: ioa config struct
8254 *
8255 * Return value:
8256 * 0 if reset not allowed / non-zero if reset is allowed
8257 **/
8258static int ipr_reset_allowed(struct ipr_ioa_cfg *ioa_cfg)
8259{
8260 volatile u32 temp_reg;
8261
8262 temp_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
8263 return ((temp_reg & IPR_PCII_CRITICAL_OPERATION) == 0);
8264}
8265
8266/**
8267 * ipr_reset_wait_to_start_bist - Wait for permission to reset IOA.
8268 * @ipr_cmd: ipr command struct
8269 *
8270 * Description: This function waits for adapter permission to run BIST,
8271 * then runs BIST. If the adapter does not give permission after a
8272 * reasonable time, we will reset the adapter anyway. The impact of
8273 * resetting the adapter without warning the adapter is the risk of
8274 * losing the persistent error log on the adapter. If the adapter is
8275 * reset while it is writing to the flash on the adapter, the flash
8276 * segment will have bad ECC and be zeroed.
8277 *
8278 * Return value:
8279 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8280 **/
8281static int ipr_reset_wait_to_start_bist(struct ipr_cmnd *ipr_cmd)
8282{
8283 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8284 int rc = IPR_RC_JOB_RETURN;
8285
8286 if (!ipr_reset_allowed(ioa_cfg) && ipr_cmd->u.time_left) {
8287 ipr_cmd->u.time_left -= IPR_CHECK_FOR_RESET_TIMEOUT;
8288 ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
8289 } else {
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008290 ipr_cmd->job_step = ipr_reset_block_config_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291 rc = IPR_RC_JOB_CONTINUE;
8292 }
8293
8294 return rc;
8295}
8296
8297/**
Wayne Boyer8701f182010-06-04 10:26:50 -07008298 * ipr_reset_alert - Alert the adapter of a pending reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07008299 * @ipr_cmd: ipr command struct
8300 *
8301 * Description: This function alerts the adapter that it will be reset.
8302 * If memory space is not currently enabled, proceed directly
8303 * to running BIST on the adapter. The timer must always be started
8304 * so we guarantee we do not run BIST from ipr_isr.
8305 *
8306 * Return value:
8307 * IPR_RC_JOB_RETURN
8308 **/
8309static int ipr_reset_alert(struct ipr_cmnd *ipr_cmd)
8310{
8311 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8312 u16 cmd_reg;
8313 int rc;
8314
8315 ENTER;
8316 rc = pci_read_config_word(ioa_cfg->pdev, PCI_COMMAND, &cmd_reg);
8317
8318 if ((rc == PCIBIOS_SUCCESSFUL) && (cmd_reg & PCI_COMMAND_MEMORY)) {
8319 ipr_mask_and_clear_interrupts(ioa_cfg, ~0);
Wayne Boyer214777b2010-02-19 13:24:26 -08008320 writel(IPR_UPROCI_RESET_ALERT, ioa_cfg->regs.set_uproc_interrupt_reg32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321 ipr_cmd->job_step = ipr_reset_wait_to_start_bist;
8322 } else {
Jan Kiszkafb51ccb2011-11-04 09:45:59 +01008323 ipr_cmd->job_step = ipr_reset_block_config_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324 }
8325
8326 ipr_cmd->u.time_left = IPR_WAIT_FOR_RESET_TIMEOUT;
8327 ipr_reset_start_timer(ipr_cmd, IPR_CHECK_FOR_RESET_TIMEOUT);
8328
8329 LEAVE;
8330 return IPR_RC_JOB_RETURN;
8331}
8332
8333/**
8334 * ipr_reset_ucode_download_done - Microcode download completion
8335 * @ipr_cmd: ipr command struct
8336 *
8337 * Description: This function unmaps the microcode download buffer.
8338 *
8339 * Return value:
8340 * IPR_RC_JOB_CONTINUE
8341 **/
8342static int ipr_reset_ucode_download_done(struct ipr_cmnd *ipr_cmd)
8343{
8344 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8345 struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
8346
8347 pci_unmap_sg(ioa_cfg->pdev, sglist->scatterlist,
8348 sglist->num_sg, DMA_TO_DEVICE);
8349
8350 ipr_cmd->job_step = ipr_reset_alert;
8351 return IPR_RC_JOB_CONTINUE;
8352}
8353
8354/**
8355 * ipr_reset_ucode_download - Download microcode to the adapter
8356 * @ipr_cmd: ipr command struct
8357 *
8358 * Description: This function checks to see if it there is microcode
8359 * to download to the adapter. If there is, a download is performed.
8360 *
8361 * Return value:
8362 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8363 **/
8364static int ipr_reset_ucode_download(struct ipr_cmnd *ipr_cmd)
8365{
8366 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8367 struct ipr_sglist *sglist = ioa_cfg->ucode_sglist;
8368
8369 ENTER;
8370 ipr_cmd->job_step = ipr_reset_alert;
8371
8372 if (!sglist)
8373 return IPR_RC_JOB_CONTINUE;
8374
8375 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
8376 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_SCSICDB;
8377 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = WRITE_BUFFER;
8378 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_WR_BUF_DOWNLOAD_AND_SAVE;
8379 ipr_cmd->ioarcb.cmd_pkt.cdb[6] = (sglist->buffer_len & 0xff0000) >> 16;
8380 ipr_cmd->ioarcb.cmd_pkt.cdb[7] = (sglist->buffer_len & 0x00ff00) >> 8;
8381 ipr_cmd->ioarcb.cmd_pkt.cdb[8] = sglist->buffer_len & 0x0000ff;
8382
Wayne Boyera32c0552010-02-19 13:23:36 -08008383 if (ioa_cfg->sis64)
8384 ipr_build_ucode_ioadl64(ipr_cmd, sglist);
8385 else
8386 ipr_build_ucode_ioadl(ipr_cmd, sglist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387 ipr_cmd->job_step = ipr_reset_ucode_download_done;
8388
8389 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout,
8390 IPR_WRITE_BUFFER_TIMEOUT);
8391
8392 LEAVE;
8393 return IPR_RC_JOB_RETURN;
8394}
8395
8396/**
8397 * ipr_reset_shutdown_ioa - Shutdown the adapter
8398 * @ipr_cmd: ipr command struct
8399 *
8400 * Description: This function issues an adapter shutdown of the
8401 * specified type to the specified adapter as part of the
8402 * adapter reset job.
8403 *
8404 * Return value:
8405 * IPR_RC_JOB_CONTINUE / IPR_RC_JOB_RETURN
8406 **/
8407static int ipr_reset_shutdown_ioa(struct ipr_cmnd *ipr_cmd)
8408{
8409 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8410 enum ipr_shutdown_type shutdown_type = ipr_cmd->u.shutdown_type;
8411 unsigned long timeout;
8412 int rc = IPR_RC_JOB_CONTINUE;
8413
8414 ENTER;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008415 if (shutdown_type != IPR_SHUTDOWN_NONE &&
8416 !ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
8418 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
8419 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
8420 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = shutdown_type;
8421
Brian Kingac09c342007-04-26 16:00:16 -05008422 if (shutdown_type == IPR_SHUTDOWN_NORMAL)
8423 timeout = IPR_SHUTDOWN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424 else if (shutdown_type == IPR_SHUTDOWN_PREPARE_FOR_NORMAL)
8425 timeout = IPR_INTERNAL_TIMEOUT;
Brian Kingac09c342007-04-26 16:00:16 -05008426 else if (ioa_cfg->dual_raid && ipr_dual_ioa_raid)
8427 timeout = IPR_DUAL_IOA_ABBR_SHUTDOWN_TO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428 else
Brian Kingac09c342007-04-26 16:00:16 -05008429 timeout = IPR_ABBREV_SHUTDOWN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430
8431 ipr_do_req(ipr_cmd, ipr_reset_ioa_job, ipr_timeout, timeout);
8432
8433 rc = IPR_RC_JOB_RETURN;
8434 ipr_cmd->job_step = ipr_reset_ucode_download;
8435 } else
8436 ipr_cmd->job_step = ipr_reset_alert;
8437
8438 LEAVE;
8439 return rc;
8440}
8441
8442/**
8443 * ipr_reset_ioa_job - Adapter reset job
8444 * @ipr_cmd: ipr command struct
8445 *
8446 * Description: This function is the job router for the adapter reset job.
8447 *
8448 * Return value:
8449 * none
8450 **/
8451static void ipr_reset_ioa_job(struct ipr_cmnd *ipr_cmd)
8452{
8453 u32 rc, ioasc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8455
8456 do {
Wayne Boyer96d21f02010-05-10 09:13:27 -07008457 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458
8459 if (ioa_cfg->reset_cmd != ipr_cmd) {
8460 /*
8461 * We are doing nested adapter resets and this is
8462 * not the current reset job.
8463 */
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008464 list_add_tail(&ipr_cmd->queue,
8465 &ipr_cmd->hrrq->hrrq_free_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466 return;
8467 }
8468
8469 if (IPR_IOASC_SENSE_KEY(ioasc)) {
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06008470 rc = ipr_cmd->job_step_failed(ipr_cmd);
8471 if (rc == IPR_RC_JOB_RETURN)
8472 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008473 }
8474
8475 ipr_reinit_ipr_cmnd(ipr_cmd);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06008476 ipr_cmd->job_step_failed = ipr_reset_cmd_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477 rc = ipr_cmd->job_step(ipr_cmd);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03008478 } while (rc == IPR_RC_JOB_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479}
8480
8481/**
8482 * _ipr_initiate_ioa_reset - Initiate an adapter reset
8483 * @ioa_cfg: ioa config struct
8484 * @job_step: first job step of reset job
8485 * @shutdown_type: shutdown type
8486 *
8487 * Description: This function will initiate the reset of the given adapter
8488 * starting at the selected job step.
8489 * If the caller needs to wait on the completion of the reset,
8490 * the caller must sleep on the reset_wait_q.
8491 *
8492 * Return value:
8493 * none
8494 **/
8495static void _ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
8496 int (*job_step) (struct ipr_cmnd *),
8497 enum ipr_shutdown_type shutdown_type)
8498{
8499 struct ipr_cmnd *ipr_cmd;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008500 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501
8502 ioa_cfg->in_reset_reload = 1;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008503 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8504 spin_lock(&ioa_cfg->hrrq[i]._lock);
8505 ioa_cfg->hrrq[i].allow_cmds = 0;
8506 spin_unlock(&ioa_cfg->hrrq[i]._lock);
8507 }
8508 wmb();
Brian Kingbfae7822013-01-30 23:45:08 -06008509 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].removing_ioa)
8510 scsi_block_requests(ioa_cfg->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511
8512 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
8513 ioa_cfg->reset_cmd = ipr_cmd;
8514 ipr_cmd->job_step = job_step;
8515 ipr_cmd->u.shutdown_type = shutdown_type;
8516
8517 ipr_reset_ioa_job(ipr_cmd);
8518}
8519
8520/**
8521 * ipr_initiate_ioa_reset - Initiate an adapter reset
8522 * @ioa_cfg: ioa config struct
8523 * @shutdown_type: shutdown type
8524 *
8525 * Description: This function will initiate the reset of the given adapter.
8526 * If the caller needs to wait on the completion of the reset,
8527 * the caller must sleep on the reset_wait_q.
8528 *
8529 * Return value:
8530 * none
8531 **/
8532static void ipr_initiate_ioa_reset(struct ipr_ioa_cfg *ioa_cfg,
8533 enum ipr_shutdown_type shutdown_type)
8534{
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008535 int i;
8536
8537 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538 return;
8539
Brian King41e9a692011-09-21 08:51:11 -05008540 if (ioa_cfg->in_reset_reload) {
8541 if (ioa_cfg->sdt_state == GET_DUMP)
8542 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
8543 else if (ioa_cfg->sdt_state == READ_DUMP)
8544 ioa_cfg->sdt_state = ABORT_DUMP;
8545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546
8547 if (ioa_cfg->reset_retries++ >= IPR_NUM_RESET_RELOAD_RETRIES) {
8548 dev_err(&ioa_cfg->pdev->dev,
8549 "IOA taken offline - error recovery failed\n");
8550
8551 ioa_cfg->reset_retries = 0;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008552 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8553 spin_lock(&ioa_cfg->hrrq[i]._lock);
8554 ioa_cfg->hrrq[i].ioa_is_dead = 1;
8555 spin_unlock(&ioa_cfg->hrrq[i]._lock);
8556 }
8557 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558
8559 if (ioa_cfg->in_ioa_bringdown) {
8560 ioa_cfg->reset_cmd = NULL;
8561 ioa_cfg->in_reset_reload = 0;
8562 ipr_fail_all_ops(ioa_cfg);
8563 wake_up_all(&ioa_cfg->reset_wait_q);
8564
Brian Kingbfae7822013-01-30 23:45:08 -06008565 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].removing_ioa) {
8566 spin_unlock_irq(ioa_cfg->host->host_lock);
8567 scsi_unblock_requests(ioa_cfg->host);
8568 spin_lock_irq(ioa_cfg->host->host_lock);
8569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570 return;
8571 } else {
8572 ioa_cfg->in_ioa_bringdown = 1;
8573 shutdown_type = IPR_SHUTDOWN_NONE;
8574 }
8575 }
8576
8577 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_shutdown_ioa,
8578 shutdown_type);
8579}
8580
8581/**
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008582 * ipr_reset_freeze - Hold off all I/O activity
8583 * @ipr_cmd: ipr command struct
8584 *
8585 * Description: If the PCI slot is frozen, hold off all I/O
8586 * activity; then, as soon as the slot is available again,
8587 * initiate an adapter reset.
8588 */
8589static int ipr_reset_freeze(struct ipr_cmnd *ipr_cmd)
8590{
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008591 struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
8592 int i;
8593
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008594 /* Disallow new interrupts, avoid loop */
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008595 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8596 spin_lock(&ioa_cfg->hrrq[i]._lock);
8597 ioa_cfg->hrrq[i].allow_interrupts = 0;
8598 spin_unlock(&ioa_cfg->hrrq[i]._lock);
8599 }
8600 wmb();
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008601 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_pending_q);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008602 ipr_cmd->done = ipr_reset_ioa_job;
8603 return IPR_RC_JOB_RETURN;
8604}
8605
8606/**
8607 * ipr_pci_frozen - Called when slot has experienced a PCI bus error.
8608 * @pdev: PCI device struct
8609 *
8610 * Description: This routine is called to tell us that the PCI bus
8611 * is down. Can't do anything here, except put the device driver
8612 * into a holding pattern, waiting for the PCI bus to come back.
8613 */
8614static void ipr_pci_frozen(struct pci_dev *pdev)
8615{
8616 unsigned long flags = 0;
8617 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8618
8619 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
8620 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_freeze, IPR_SHUTDOWN_NONE);
8621 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
8622}
8623
8624/**
8625 * ipr_pci_slot_reset - Called when PCI slot has been reset.
8626 * @pdev: PCI device struct
8627 *
8628 * Description: This routine is called by the pci error recovery
8629 * code after the PCI slot has been reset, just before we
8630 * should resume normal operations.
8631 */
8632static pci_ers_result_t ipr_pci_slot_reset(struct pci_dev *pdev)
8633{
8634 unsigned long flags = 0;
8635 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
8636
8637 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
Brian King463fc692007-05-07 17:09:05 -05008638 if (ioa_cfg->needs_warm_reset)
8639 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8640 else
8641 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_restore_cfg_space,
8642 IPR_SHUTDOWN_NONE);
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008643 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
8644 return PCI_ERS_RESULT_RECOVERED;
8645}
8646
8647/**
8648 * ipr_pci_perm_failure - Called when PCI slot is dead for good.
8649 * @pdev: PCI device struct
8650 *
8651 * Description: This routine is called when the PCI bus has
8652 * permanently failed.
8653 */
8654static void ipr_pci_perm_failure(struct pci_dev *pdev)
8655{
8656 unsigned long flags = 0;
8657 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008658 int i;
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008659
8660 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
8661 if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
8662 ioa_cfg->sdt_state = ABORT_DUMP;
wenxiong@linux.vnet.ibm.com96b04db2013-04-17 09:34:06 -05008663 ioa_cfg->reset_retries = IPR_NUM_RESET_RELOAD_RETRIES - 1;
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008664 ioa_cfg->in_ioa_bringdown = 1;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008665 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8666 spin_lock(&ioa_cfg->hrrq[i]._lock);
8667 ioa_cfg->hrrq[i].allow_cmds = 0;
8668 spin_unlock(&ioa_cfg->hrrq[i]._lock);
8669 }
8670 wmb();
Linas Vepstasf8a88b192006-02-03 16:52:42 -06008671 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8672 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
8673}
8674
8675/**
8676 * ipr_pci_error_detected - Called when a PCI error is detected.
8677 * @pdev: PCI device struct
8678 * @state: PCI channel state
8679 *
8680 * Description: Called when a PCI error is detected.
8681 *
8682 * Return value:
8683 * PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
8684 */
8685static pci_ers_result_t ipr_pci_error_detected(struct pci_dev *pdev,
8686 pci_channel_state_t state)
8687{
8688 switch (state) {
8689 case pci_channel_io_frozen:
8690 ipr_pci_frozen(pdev);
8691 return PCI_ERS_RESULT_NEED_RESET;
8692 case pci_channel_io_perm_failure:
8693 ipr_pci_perm_failure(pdev);
8694 return PCI_ERS_RESULT_DISCONNECT;
8695 break;
8696 default:
8697 break;
8698 }
8699 return PCI_ERS_RESULT_NEED_RESET;
8700}
8701
8702/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703 * ipr_probe_ioa_part2 - Initializes IOAs found in ipr_probe_ioa(..)
8704 * @ioa_cfg: ioa cfg struct
8705 *
8706 * Description: This is the second phase of adapter intialization
8707 * This function takes care of initilizing the adapter to the point
8708 * where it can accept new commands.
8709
8710 * Return value:
Joe Perchesb1c11812008-02-03 17:28:22 +02008711 * 0 on success / -EIO on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008713static int ipr_probe_ioa_part2(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008714{
8715 int rc = 0;
8716 unsigned long host_lock_flags = 0;
8717
8718 ENTER;
8719 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
8720 dev_dbg(&ioa_cfg->pdev->dev, "ioa_cfg adx: 0x%p\n", ioa_cfg);
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06008721 if (ioa_cfg->needs_hard_reset) {
8722 ioa_cfg->needs_hard_reset = 0;
8723 ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE);
8724 } else
8725 _ipr_initiate_ioa_reset(ioa_cfg, ipr_reset_enable_ioa,
8726 IPR_SHUTDOWN_NONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008727 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8728 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
8729 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
8730
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008731 if (ioa_cfg->hrrq[IPR_INIT_HRRQ].ioa_is_dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008732 rc = -EIO;
8733 } else if (ipr_invalid_adapter(ioa_cfg)) {
8734 if (!ipr_testmode)
8735 rc = -EIO;
8736
8737 dev_err(&ioa_cfg->pdev->dev,
8738 "Adapter not supported in this hardware configuration.\n");
8739 }
8740
8741 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
8742
8743 LEAVE;
8744 return rc;
8745}
8746
8747/**
8748 * ipr_free_cmd_blks - Frees command blocks allocated for an adapter
8749 * @ioa_cfg: ioa config struct
8750 *
8751 * Return value:
8752 * none
8753 **/
8754static void ipr_free_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
8755{
8756 int i;
8757
8758 for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
8759 if (ioa_cfg->ipr_cmnd_list[i])
8760 pci_pool_free(ioa_cfg->ipr_cmd_pool,
8761 ioa_cfg->ipr_cmnd_list[i],
8762 ioa_cfg->ipr_cmnd_list_dma[i]);
8763
8764 ioa_cfg->ipr_cmnd_list[i] = NULL;
8765 }
8766
8767 if (ioa_cfg->ipr_cmd_pool)
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03008768 pci_pool_destroy(ioa_cfg->ipr_cmd_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008769
Brian King89aad422012-03-14 21:20:10 -05008770 kfree(ioa_cfg->ipr_cmnd_list);
8771 kfree(ioa_cfg->ipr_cmnd_list_dma);
8772 ioa_cfg->ipr_cmnd_list = NULL;
8773 ioa_cfg->ipr_cmnd_list_dma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774 ioa_cfg->ipr_cmd_pool = NULL;
8775}
8776
8777/**
8778 * ipr_free_mem - Frees memory allocated for an adapter
8779 * @ioa_cfg: ioa cfg struct
8780 *
8781 * Return value:
8782 * nothing
8783 **/
8784static void ipr_free_mem(struct ipr_ioa_cfg *ioa_cfg)
8785{
8786 int i;
8787
8788 kfree(ioa_cfg->res_entries);
8789 pci_free_consistent(ioa_cfg->pdev, sizeof(struct ipr_misc_cbs),
8790 ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
8791 ipr_free_cmd_blks(ioa_cfg);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008792
8793 for (i = 0; i < ioa_cfg->hrrq_num; i++)
8794 pci_free_consistent(ioa_cfg->pdev,
8795 sizeof(u32) * ioa_cfg->hrrq[i].size,
8796 ioa_cfg->hrrq[i].host_rrq,
8797 ioa_cfg->hrrq[i].host_rrq_dma);
8798
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008799 pci_free_consistent(ioa_cfg->pdev, ioa_cfg->cfg_table_size,
8800 ioa_cfg->u.cfg_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008801 ioa_cfg->cfg_table_dma);
8802
8803 for (i = 0; i < IPR_NUM_HCAMS; i++) {
8804 pci_free_consistent(ioa_cfg->pdev,
8805 sizeof(struct ipr_hostrcb),
8806 ioa_cfg->hostrcb[i],
8807 ioa_cfg->hostrcb_dma[i]);
8808 }
8809
8810 ipr_free_dump(ioa_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008811 kfree(ioa_cfg->trace);
8812}
8813
8814/**
8815 * ipr_free_all_resources - Free all allocated resources for an adapter.
8816 * @ipr_cmd: ipr command struct
8817 *
8818 * This function frees all allocated resources for the
8819 * specified adapter.
8820 *
8821 * Return value:
8822 * none
8823 **/
8824static void ipr_free_all_resources(struct ipr_ioa_cfg *ioa_cfg)
8825{
8826 struct pci_dev *pdev = ioa_cfg->pdev;
8827
8828 ENTER;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008829 if (ioa_cfg->intr_flag == IPR_USE_MSI ||
8830 ioa_cfg->intr_flag == IPR_USE_MSIX) {
8831 int i;
8832 for (i = 0; i < ioa_cfg->nvectors; i++)
8833 free_irq(ioa_cfg->vectors_info[i].vec,
8834 &ioa_cfg->hrrq[i]);
8835 } else
8836 free_irq(pdev->irq, &ioa_cfg->hrrq[0]);
8837
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008838 if (ioa_cfg->intr_flag == IPR_USE_MSI) {
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008839 pci_disable_msi(pdev);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008840 ioa_cfg->intr_flag &= ~IPR_USE_MSI;
8841 } else if (ioa_cfg->intr_flag == IPR_USE_MSIX) {
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008842 pci_disable_msix(pdev);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008843 ioa_cfg->intr_flag &= ~IPR_USE_MSIX;
8844 }
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008845
Linus Torvalds1da177e2005-04-16 15:20:36 -07008846 iounmap(ioa_cfg->hdw_dma_regs);
8847 pci_release_regions(pdev);
8848 ipr_free_mem(ioa_cfg);
8849 scsi_host_put(ioa_cfg->host);
8850 pci_disable_device(pdev);
8851 LEAVE;
8852}
8853
8854/**
8855 * ipr_alloc_cmd_blks - Allocate command blocks for an adapter
8856 * @ioa_cfg: ioa config struct
8857 *
8858 * Return value:
8859 * 0 on success / -ENOMEM on allocation failure
8860 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008861static int ipr_alloc_cmd_blks(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008862{
8863 struct ipr_cmnd *ipr_cmd;
8864 struct ipr_ioarcb *ioarcb;
8865 dma_addr_t dma_addr;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008866 int i, entries_each_hrrq, hrrq_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03008868 ioa_cfg->ipr_cmd_pool = pci_pool_create(IPR_NAME, ioa_cfg->pdev,
8869 sizeof(struct ipr_cmnd), 512, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008870
8871 if (!ioa_cfg->ipr_cmd_pool)
8872 return -ENOMEM;
8873
Brian King89aad422012-03-14 21:20:10 -05008874 ioa_cfg->ipr_cmnd_list = kcalloc(IPR_NUM_CMD_BLKS, sizeof(struct ipr_cmnd *), GFP_KERNEL);
8875 ioa_cfg->ipr_cmnd_list_dma = kcalloc(IPR_NUM_CMD_BLKS, sizeof(dma_addr_t), GFP_KERNEL);
8876
8877 if (!ioa_cfg->ipr_cmnd_list || !ioa_cfg->ipr_cmnd_list_dma) {
8878 ipr_free_cmd_blks(ioa_cfg);
8879 return -ENOMEM;
8880 }
8881
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008882 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8883 if (ioa_cfg->hrrq_num > 1) {
8884 if (i == 0) {
8885 entries_each_hrrq = IPR_NUM_INTERNAL_CMD_BLKS;
8886 ioa_cfg->hrrq[i].min_cmd_id = 0;
8887 ioa_cfg->hrrq[i].max_cmd_id =
8888 (entries_each_hrrq - 1);
8889 } else {
8890 entries_each_hrrq =
8891 IPR_NUM_BASE_CMD_BLKS/
8892 (ioa_cfg->hrrq_num - 1);
8893 ioa_cfg->hrrq[i].min_cmd_id =
8894 IPR_NUM_INTERNAL_CMD_BLKS +
8895 (i - 1) * entries_each_hrrq;
8896 ioa_cfg->hrrq[i].max_cmd_id =
8897 (IPR_NUM_INTERNAL_CMD_BLKS +
8898 i * entries_each_hrrq - 1);
8899 }
8900 } else {
8901 entries_each_hrrq = IPR_NUM_CMD_BLKS;
8902 ioa_cfg->hrrq[i].min_cmd_id = 0;
8903 ioa_cfg->hrrq[i].max_cmd_id = (entries_each_hrrq - 1);
8904 }
8905 ioa_cfg->hrrq[i].size = entries_each_hrrq;
8906 }
8907
8908 BUG_ON(ioa_cfg->hrrq_num == 0);
8909
8910 i = IPR_NUM_CMD_BLKS -
8911 ioa_cfg->hrrq[ioa_cfg->hrrq_num - 1].max_cmd_id - 1;
8912 if (i > 0) {
8913 ioa_cfg->hrrq[ioa_cfg->hrrq_num - 1].size += i;
8914 ioa_cfg->hrrq[ioa_cfg->hrrq_num - 1].max_cmd_id += i;
8915 }
8916
Linus Torvalds1da177e2005-04-16 15:20:36 -07008917 for (i = 0; i < IPR_NUM_CMD_BLKS; i++) {
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03008918 ipr_cmd = pci_pool_alloc(ioa_cfg->ipr_cmd_pool, GFP_KERNEL, &dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008919
8920 if (!ipr_cmd) {
8921 ipr_free_cmd_blks(ioa_cfg);
8922 return -ENOMEM;
8923 }
8924
8925 memset(ipr_cmd, 0, sizeof(*ipr_cmd));
8926 ioa_cfg->ipr_cmnd_list[i] = ipr_cmd;
8927 ioa_cfg->ipr_cmnd_list_dma[i] = dma_addr;
8928
8929 ioarcb = &ipr_cmd->ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08008930 ipr_cmd->dma_addr = dma_addr;
8931 if (ioa_cfg->sis64)
8932 ioarcb->a.ioarcb_host_pci_addr64 = cpu_to_be64(dma_addr);
8933 else
8934 ioarcb->a.ioarcb_host_pci_addr = cpu_to_be32(dma_addr);
8935
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936 ioarcb->host_response_handle = cpu_to_be32(i << 2);
Wayne Boyera32c0552010-02-19 13:23:36 -08008937 if (ioa_cfg->sis64) {
8938 ioarcb->u.sis64_addr_data.data_ioadl_addr =
8939 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, i.ioadl64));
8940 ioarcb->u.sis64_addr_data.ioasa_host_pci_addr =
Wayne Boyer96d21f02010-05-10 09:13:27 -07008941 cpu_to_be64(dma_addr + offsetof(struct ipr_cmnd, s.ioasa64));
Wayne Boyera32c0552010-02-19 13:23:36 -08008942 } else {
8943 ioarcb->write_ioadl_addr =
8944 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, i.ioadl));
8945 ioarcb->read_ioadl_addr = ioarcb->write_ioadl_addr;
8946 ioarcb->ioasa_host_pci_addr =
Wayne Boyer96d21f02010-05-10 09:13:27 -07008947 cpu_to_be32(dma_addr + offsetof(struct ipr_cmnd, s.ioasa));
Wayne Boyera32c0552010-02-19 13:23:36 -08008948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949 ioarcb->ioasa_len = cpu_to_be16(sizeof(struct ipr_ioasa));
8950 ipr_cmd->cmd_index = i;
8951 ipr_cmd->ioa_cfg = ioa_cfg;
8952 ipr_cmd->sense_buffer_dma = dma_addr +
8953 offsetof(struct ipr_cmnd, sense_buffer);
8954
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008955 ipr_cmd->ioarcb.cmd_pkt.hrrq_id = hrrq_id;
8956 ipr_cmd->hrrq = &ioa_cfg->hrrq[hrrq_id];
8957 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
8958 if (i >= ioa_cfg->hrrq[hrrq_id].max_cmd_id)
8959 hrrq_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960 }
8961
8962 return 0;
8963}
8964
8965/**
8966 * ipr_alloc_mem - Allocate memory for an adapter
8967 * @ioa_cfg: ioa config struct
8968 *
8969 * Return value:
8970 * 0 on success / non-zero for error
8971 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008972static int ipr_alloc_mem(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008973{
8974 struct pci_dev *pdev = ioa_cfg->pdev;
8975 int i, rc = -ENOMEM;
8976
8977 ENTER;
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06008978 ioa_cfg->res_entries = kzalloc(sizeof(struct ipr_resource_entry) *
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008979 ioa_cfg->max_devs_supported, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008980
8981 if (!ioa_cfg->res_entries)
8982 goto out;
8983
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008984 for (i = 0; i < ioa_cfg->max_devs_supported; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985 list_add_tail(&ioa_cfg->res_entries[i].queue, &ioa_cfg->free_res_q);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08008986 ioa_cfg->res_entries[i].ioa_cfg = ioa_cfg;
8987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988
8989 ioa_cfg->vpd_cbs = pci_alloc_consistent(ioa_cfg->pdev,
8990 sizeof(struct ipr_misc_cbs),
8991 &ioa_cfg->vpd_cbs_dma);
8992
8993 if (!ioa_cfg->vpd_cbs)
8994 goto out_free_res_entries;
8995
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06008996 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
8997 INIT_LIST_HEAD(&ioa_cfg->hrrq[i].hrrq_free_q);
8998 INIT_LIST_HEAD(&ioa_cfg->hrrq[i].hrrq_pending_q);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06008999 spin_lock_init(&ioa_cfg->hrrq[i]._lock);
9000 if (i == 0)
9001 ioa_cfg->hrrq[i].lock = ioa_cfg->host->host_lock;
9002 else
9003 ioa_cfg->hrrq[i].lock = &ioa_cfg->hrrq[i]._lock;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009004 }
9005
Linus Torvalds1da177e2005-04-16 15:20:36 -07009006 if (ipr_alloc_cmd_blks(ioa_cfg))
9007 goto out_free_vpd_cbs;
9008
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009009 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9010 ioa_cfg->hrrq[i].host_rrq = pci_alloc_consistent(ioa_cfg->pdev,
9011 sizeof(u32) * ioa_cfg->hrrq[i].size,
9012 &ioa_cfg->hrrq[i].host_rrq_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009014 if (!ioa_cfg->hrrq[i].host_rrq) {
9015 while (--i > 0)
9016 pci_free_consistent(pdev,
9017 sizeof(u32) * ioa_cfg->hrrq[i].size,
9018 ioa_cfg->hrrq[i].host_rrq,
9019 ioa_cfg->hrrq[i].host_rrq_dma);
9020 goto out_ipr_free_cmd_blocks;
9021 }
9022 ioa_cfg->hrrq[i].ioa_cfg = ioa_cfg;
9023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009024
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009025 ioa_cfg->u.cfg_table = pci_alloc_consistent(ioa_cfg->pdev,
9026 ioa_cfg->cfg_table_size,
9027 &ioa_cfg->cfg_table_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009029 if (!ioa_cfg->u.cfg_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030 goto out_free_host_rrq;
9031
9032 for (i = 0; i < IPR_NUM_HCAMS; i++) {
9033 ioa_cfg->hostrcb[i] = pci_alloc_consistent(ioa_cfg->pdev,
9034 sizeof(struct ipr_hostrcb),
9035 &ioa_cfg->hostrcb_dma[i]);
9036
9037 if (!ioa_cfg->hostrcb[i])
9038 goto out_free_hostrcb_dma;
9039
9040 ioa_cfg->hostrcb[i]->hostrcb_dma =
9041 ioa_cfg->hostrcb_dma[i] + offsetof(struct ipr_hostrcb, hcam);
Brian King49dc6a12006-11-21 10:28:35 -06009042 ioa_cfg->hostrcb[i]->ioa_cfg = ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009043 list_add_tail(&ioa_cfg->hostrcb[i]->queue, &ioa_cfg->hostrcb_free_q);
9044 }
9045
brking@us.ibm.com0bc42e32005-11-01 17:01:20 -06009046 ioa_cfg->trace = kzalloc(sizeof(struct ipr_trace_entry) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009047 IPR_NUM_TRACE_ENTRIES, GFP_KERNEL);
9048
9049 if (!ioa_cfg->trace)
9050 goto out_free_hostrcb_dma;
9051
Linus Torvalds1da177e2005-04-16 15:20:36 -07009052 rc = 0;
9053out:
9054 LEAVE;
9055 return rc;
9056
9057out_free_hostrcb_dma:
9058 while (i-- > 0) {
9059 pci_free_consistent(pdev, sizeof(struct ipr_hostrcb),
9060 ioa_cfg->hostrcb[i],
9061 ioa_cfg->hostrcb_dma[i]);
9062 }
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009063 pci_free_consistent(pdev, ioa_cfg->cfg_table_size,
9064 ioa_cfg->u.cfg_table,
9065 ioa_cfg->cfg_table_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009066out_free_host_rrq:
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009067 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9068 pci_free_consistent(pdev,
9069 sizeof(u32) * ioa_cfg->hrrq[i].size,
9070 ioa_cfg->hrrq[i].host_rrq,
9071 ioa_cfg->hrrq[i].host_rrq_dma);
9072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009073out_ipr_free_cmd_blocks:
9074 ipr_free_cmd_blks(ioa_cfg);
9075out_free_vpd_cbs:
9076 pci_free_consistent(pdev, sizeof(struct ipr_misc_cbs),
9077 ioa_cfg->vpd_cbs, ioa_cfg->vpd_cbs_dma);
9078out_free_res_entries:
9079 kfree(ioa_cfg->res_entries);
9080 goto out;
9081}
9082
9083/**
9084 * ipr_initialize_bus_attr - Initialize SCSI bus attributes to default values
9085 * @ioa_cfg: ioa config struct
9086 *
9087 * Return value:
9088 * none
9089 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009090static void ipr_initialize_bus_attr(struct ipr_ioa_cfg *ioa_cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009091{
9092 int i;
9093
9094 for (i = 0; i < IPR_MAX_NUM_BUSES; i++) {
9095 ioa_cfg->bus_attr[i].bus = i;
9096 ioa_cfg->bus_attr[i].qas_enabled = 0;
9097 ioa_cfg->bus_attr[i].bus_width = IPR_DEFAULT_BUS_WIDTH;
9098 if (ipr_max_speed < ARRAY_SIZE(ipr_max_bus_speeds))
9099 ioa_cfg->bus_attr[i].max_xfer_rate = ipr_max_bus_speeds[ipr_max_speed];
9100 else
9101 ioa_cfg->bus_attr[i].max_xfer_rate = IPR_U160_SCSI_RATE;
9102 }
9103}
9104
9105/**
9106 * ipr_init_ioa_cfg - Initialize IOA config struct
9107 * @ioa_cfg: ioa config struct
9108 * @host: scsi host struct
9109 * @pdev: PCI dev struct
9110 *
9111 * Return value:
9112 * none
9113 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009114static void ipr_init_ioa_cfg(struct ipr_ioa_cfg *ioa_cfg,
9115 struct Scsi_Host *host, struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009116{
9117 const struct ipr_interrupt_offsets *p;
9118 struct ipr_interrupts *t;
9119 void __iomem *base;
9120
9121 ioa_cfg->host = host;
9122 ioa_cfg->pdev = pdev;
9123 ioa_cfg->log_level = ipr_log_level;
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -06009124 ioa_cfg->doorbell = IPR_DOORBELL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009125 sprintf(ioa_cfg->eye_catcher, IPR_EYECATCHER);
9126 sprintf(ioa_cfg->trace_start, IPR_TRACE_START_LABEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009127 sprintf(ioa_cfg->cfg_table_start, IPR_CFG_TBL_START);
9128 sprintf(ioa_cfg->resource_table_label, IPR_RES_TABLE_LABEL);
9129 sprintf(ioa_cfg->ipr_hcam_label, IPR_HCAM_LABEL);
9130 sprintf(ioa_cfg->ipr_cmd_label, IPR_CMD_LABEL);
9131
Linus Torvalds1da177e2005-04-16 15:20:36 -07009132 INIT_LIST_HEAD(&ioa_cfg->hostrcb_free_q);
9133 INIT_LIST_HEAD(&ioa_cfg->hostrcb_pending_q);
9134 INIT_LIST_HEAD(&ioa_cfg->free_res_q);
9135 INIT_LIST_HEAD(&ioa_cfg->used_res_q);
David Howellsc4028952006-11-22 14:57:56 +00009136 INIT_WORK(&ioa_cfg->work_q, ipr_worker_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009137 init_waitqueue_head(&ioa_cfg->reset_wait_q);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009138 init_waitqueue_head(&ioa_cfg->msi_wait_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009139 ioa_cfg->sdt_state = INACTIVE;
9140
9141 ipr_initialize_bus_attr(ioa_cfg);
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009142 ioa_cfg->max_devs_supported = ipr_max_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009144 if (ioa_cfg->sis64) {
9145 host->max_id = IPR_MAX_SIS64_TARGETS_PER_BUS;
9146 host->max_lun = IPR_MAX_SIS64_LUNS_PER_TARGET;
9147 if (ipr_max_devs > IPR_MAX_SIS64_DEVS)
9148 ioa_cfg->max_devs_supported = IPR_MAX_SIS64_DEVS;
9149 } else {
9150 host->max_id = IPR_MAX_NUM_TARGETS_PER_BUS;
9151 host->max_lun = IPR_MAX_NUM_LUNS_PER_TARGET;
9152 if (ipr_max_devs > IPR_MAX_PHYSICAL_DEVS)
9153 ioa_cfg->max_devs_supported = IPR_MAX_PHYSICAL_DEVS;
9154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009155 host->max_channel = IPR_MAX_BUS_TO_SCAN;
9156 host->unique_id = host->host_no;
9157 host->max_cmd_len = IPR_MAX_CDB_LEN;
Brian King89aad422012-03-14 21:20:10 -05009158 host->can_queue = ioa_cfg->max_cmds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009159 pci_set_drvdata(pdev, ioa_cfg);
9160
9161 p = &ioa_cfg->chip_cfg->regs;
9162 t = &ioa_cfg->regs;
9163 base = ioa_cfg->hdw_dma_regs;
9164
9165 t->set_interrupt_mask_reg = base + p->set_interrupt_mask_reg;
9166 t->clr_interrupt_mask_reg = base + p->clr_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009167 t->clr_interrupt_mask_reg32 = base + p->clr_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009168 t->sense_interrupt_mask_reg = base + p->sense_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009169 t->sense_interrupt_mask_reg32 = base + p->sense_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009170 t->clr_interrupt_reg = base + p->clr_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009171 t->clr_interrupt_reg32 = base + p->clr_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009172 t->sense_interrupt_reg = base + p->sense_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009173 t->sense_interrupt_reg32 = base + p->sense_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009174 t->ioarrin_reg = base + p->ioarrin_reg;
9175 t->sense_uproc_interrupt_reg = base + p->sense_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009176 t->sense_uproc_interrupt_reg32 = base + p->sense_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009177 t->set_uproc_interrupt_reg = base + p->set_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009178 t->set_uproc_interrupt_reg32 = base + p->set_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009179 t->clr_uproc_interrupt_reg = base + p->clr_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08009180 t->clr_uproc_interrupt_reg32 = base + p->clr_uproc_interrupt_reg32;
Wayne Boyerdcbad002010-02-19 13:24:14 -08009181
9182 if (ioa_cfg->sis64) {
Wayne Boyer214777b2010-02-19 13:24:26 -08009183 t->init_feedback_reg = base + p->init_feedback_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08009184 t->dump_addr_reg = base + p->dump_addr_reg;
9185 t->dump_data_reg = base + p->dump_data_reg;
Wayne Boyer8701f182010-06-04 10:26:50 -07009186 t->endian_swap_reg = base + p->endian_swap_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08009187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009188}
9189
9190/**
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009191 * ipr_get_chip_info - Find adapter chip information
Linus Torvalds1da177e2005-04-16 15:20:36 -07009192 * @dev_id: PCI device id struct
9193 *
9194 * Return value:
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009195 * ptr to chip information on success / NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -07009196 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009197static const struct ipr_chip_t *
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009198ipr_get_chip_info(const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009199{
9200 int i;
9201
Linus Torvalds1da177e2005-04-16 15:20:36 -07009202 for (i = 0; i < ARRAY_SIZE(ipr_chip); i++)
9203 if (ipr_chip[i].vendor == dev_id->vendor &&
9204 ipr_chip[i].device == dev_id->device)
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009205 return &ipr_chip[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07009206 return NULL;
9207}
9208
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009209static int ipr_enable_msix(struct ipr_ioa_cfg *ioa_cfg)
9210{
9211 struct msix_entry entries[IPR_MAX_MSIX_VECTORS];
9212 int i, err, vectors;
9213
9214 for (i = 0; i < ARRAY_SIZE(entries); ++i)
9215 entries[i].entry = i;
9216
9217 vectors = ipr_number_of_msix;
9218
9219 while ((err = pci_enable_msix(ioa_cfg->pdev, entries, vectors)) > 0)
9220 vectors = err;
9221
9222 if (err < 0) {
9223 pci_disable_msix(ioa_cfg->pdev);
9224 return err;
9225 }
9226
9227 if (!err) {
9228 for (i = 0; i < vectors; i++)
9229 ioa_cfg->vectors_info[i].vec = entries[i].vector;
9230 ioa_cfg->nvectors = vectors;
9231 }
9232
9233 return err;
9234}
9235
9236static int ipr_enable_msi(struct ipr_ioa_cfg *ioa_cfg)
9237{
9238 int i, err, vectors;
9239
9240 vectors = ipr_number_of_msix;
9241
9242 while ((err = pci_enable_msi_block(ioa_cfg->pdev, vectors)) > 0)
9243 vectors = err;
9244
9245 if (err < 0) {
9246 pci_disable_msi(ioa_cfg->pdev);
9247 return err;
9248 }
9249
9250 if (!err) {
9251 for (i = 0; i < vectors; i++)
9252 ioa_cfg->vectors_info[i].vec = ioa_cfg->pdev->irq + i;
9253 ioa_cfg->nvectors = vectors;
9254 }
9255
9256 return err;
9257}
9258
9259static void name_msi_vectors(struct ipr_ioa_cfg *ioa_cfg)
9260{
9261 int vec_idx, n = sizeof(ioa_cfg->vectors_info[0].desc) - 1;
9262
9263 for (vec_idx = 0; vec_idx < ioa_cfg->nvectors; vec_idx++) {
9264 snprintf(ioa_cfg->vectors_info[vec_idx].desc, n,
9265 "host%d-%d", ioa_cfg->host->host_no, vec_idx);
9266 ioa_cfg->vectors_info[vec_idx].
9267 desc[strlen(ioa_cfg->vectors_info[vec_idx].desc)] = 0;
9268 }
9269}
9270
9271static int ipr_request_other_msi_irqs(struct ipr_ioa_cfg *ioa_cfg)
9272{
9273 int i, rc;
9274
9275 for (i = 1; i < ioa_cfg->nvectors; i++) {
9276 rc = request_irq(ioa_cfg->vectors_info[i].vec,
9277 ipr_isr_mhrrq,
9278 0,
9279 ioa_cfg->vectors_info[i].desc,
9280 &ioa_cfg->hrrq[i]);
9281 if (rc) {
9282 while (--i >= 0)
9283 free_irq(ioa_cfg->vectors_info[i].vec,
9284 &ioa_cfg->hrrq[i]);
9285 return rc;
9286 }
9287 }
9288 return 0;
9289}
9290
Linus Torvalds1da177e2005-04-16 15:20:36 -07009291/**
Wayne Boyer95fecd92009-06-16 15:13:28 -07009292 * ipr_test_intr - Handle the interrupt generated in ipr_test_msi().
9293 * @pdev: PCI device struct
9294 *
9295 * Description: Simply set the msi_received flag to 1 indicating that
9296 * Message Signaled Interrupts are supported.
9297 *
9298 * Return value:
9299 * 0 on success / non-zero on failure
9300 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009301static irqreturn_t ipr_test_intr(int irq, void *devp)
Wayne Boyer95fecd92009-06-16 15:13:28 -07009302{
9303 struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)devp;
9304 unsigned long lock_flags = 0;
9305 irqreturn_t rc = IRQ_HANDLED;
9306
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009307 dev_info(&ioa_cfg->pdev->dev, "Received IRQ : %d\n", irq);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009308 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
9309
9310 ioa_cfg->msi_received = 1;
9311 wake_up(&ioa_cfg->msi_wait_q);
9312
9313 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9314 return rc;
9315}
9316
9317/**
9318 * ipr_test_msi - Test for Message Signaled Interrupt (MSI) support.
9319 * @pdev: PCI device struct
9320 *
9321 * Description: The return value from pci_enable_msi() can not always be
9322 * trusted. This routine sets up and initiates a test interrupt to determine
9323 * if the interrupt is received via the ipr_test_intr() service routine.
9324 * If the tests fails, the driver will fall back to LSI.
9325 *
9326 * Return value:
9327 * 0 on success / non-zero on failure
9328 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009329static int ipr_test_msi(struct ipr_ioa_cfg *ioa_cfg, struct pci_dev *pdev)
Wayne Boyer95fecd92009-06-16 15:13:28 -07009330{
9331 int rc;
9332 volatile u32 int_reg;
9333 unsigned long lock_flags = 0;
9334
9335 ENTER;
9336
9337 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
9338 init_waitqueue_head(&ioa_cfg->msi_wait_q);
9339 ioa_cfg->msi_received = 0;
9340 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
Wayne Boyer214777b2010-02-19 13:24:26 -08009341 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE, ioa_cfg->regs.clr_interrupt_mask_reg32);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009342 int_reg = readl(ioa_cfg->regs.sense_interrupt_mask_reg);
9343 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9344
wenxiong@linux.vnet.ibm.comf19799f2013-02-27 12:37:45 -06009345 if (ioa_cfg->intr_flag == IPR_USE_MSIX)
9346 rc = request_irq(ioa_cfg->vectors_info[0].vec, ipr_test_intr, 0, IPR_NAME, ioa_cfg);
9347 else
9348 rc = request_irq(pdev->irq, ipr_test_intr, 0, IPR_NAME, ioa_cfg);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009349 if (rc) {
9350 dev_err(&pdev->dev, "Can not assign irq %d\n", pdev->irq);
9351 return rc;
9352 } else if (ipr_debug)
9353 dev_info(&pdev->dev, "IRQ assigned: %d\n", pdev->irq);
9354
Wayne Boyer214777b2010-02-19 13:24:26 -08009355 writel(IPR_PCII_IO_DEBUG_ACKNOWLEDGE, ioa_cfg->regs.sense_interrupt_reg32);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009356 int_reg = readl(ioa_cfg->regs.sense_interrupt_reg);
9357 wait_event_timeout(ioa_cfg->msi_wait_q, ioa_cfg->msi_received, HZ);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009358 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009359 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
9360
Wayne Boyer95fecd92009-06-16 15:13:28 -07009361 if (!ioa_cfg->msi_received) {
9362 /* MSI test failed */
9363 dev_info(&pdev->dev, "MSI test failed. Falling back to LSI.\n");
9364 rc = -EOPNOTSUPP;
9365 } else if (ipr_debug)
9366 dev_info(&pdev->dev, "MSI test succeeded.\n");
9367
9368 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9369
wenxiong@linux.vnet.ibm.comf19799f2013-02-27 12:37:45 -06009370 if (ioa_cfg->intr_flag == IPR_USE_MSIX)
9371 free_irq(ioa_cfg->vectors_info[0].vec, ioa_cfg);
9372 else
9373 free_irq(pdev->irq, ioa_cfg);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009374
9375 LEAVE;
9376
9377 return rc;
9378}
9379
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009380 /* ipr_probe_ioa - Allocates memory and does first stage of initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -07009381 * @pdev: PCI device struct
9382 * @dev_id: PCI device id struct
9383 *
9384 * Return value:
9385 * 0 on success / non-zero on failure
9386 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009387static int ipr_probe_ioa(struct pci_dev *pdev,
9388 const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009389{
9390 struct ipr_ioa_cfg *ioa_cfg;
9391 struct Scsi_Host *host;
9392 unsigned long ipr_regs_pci;
9393 void __iomem *ipr_regs;
Eric Sesterhenna2a65a32006-09-25 16:59:07 -07009394 int rc = PCIBIOS_SUCCESSFUL;
Brian King473b1e82007-05-02 10:44:11 -05009395 volatile u32 mask, uproc, interrupts;
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009396 unsigned long lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009397
9398 ENTER;
9399
9400 if ((rc = pci_enable_device(pdev))) {
9401 dev_err(&pdev->dev, "Cannot enable adapter\n");
9402 goto out;
9403 }
9404
9405 dev_info(&pdev->dev, "Found IOA with IRQ: %d\n", pdev->irq);
9406
9407 host = scsi_host_alloc(&driver_template, sizeof(*ioa_cfg));
9408
9409 if (!host) {
9410 dev_err(&pdev->dev, "call to scsi_host_alloc failed!\n");
9411 rc = -ENOMEM;
9412 goto out_disable;
9413 }
9414
9415 ioa_cfg = (struct ipr_ioa_cfg *)host->hostdata;
9416 memset(ioa_cfg, 0, sizeof(struct ipr_ioa_cfg));
Dan Williams8d8e7d12012-07-09 21:06:08 -07009417 ata_host_init(&ioa_cfg->ata_host, &pdev->dev, &ipr_sata_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009418
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009419 ioa_cfg->ipr_chip = ipr_get_chip_info(dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009420
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009421 if (!ioa_cfg->ipr_chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009422 dev_err(&pdev->dev, "Unknown adapter chipset 0x%04X 0x%04X\n",
9423 dev_id->vendor, dev_id->device);
9424 goto out_scsi_host_put;
9425 }
9426
Wayne Boyera32c0552010-02-19 13:23:36 -08009427 /* set SIS 32 or SIS 64 */
9428 ioa_cfg->sis64 = ioa_cfg->ipr_chip->sis_type == IPR_SIS64 ? 1 : 0;
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009429 ioa_cfg->chip_cfg = ioa_cfg->ipr_chip->cfg;
Brian King7dd21302012-03-14 21:20:08 -05009430 ioa_cfg->clear_isr = ioa_cfg->chip_cfg->clear_isr;
Brian King89aad422012-03-14 21:20:10 -05009431 ioa_cfg->max_cmds = ioa_cfg->chip_cfg->max_cmds;
Wayne Boyer1be7bd82009-06-17 09:55:35 -07009432
Brian King5469cb52007-03-29 12:42:40 -05009433 if (ipr_transop_timeout)
9434 ioa_cfg->transop_timeout = ipr_transop_timeout;
9435 else if (dev_id->driver_data & IPR_USE_LONG_TRANSOP_TIMEOUT)
9436 ioa_cfg->transop_timeout = IPR_LONG_OPERATIONAL_TIMEOUT;
9437 else
9438 ioa_cfg->transop_timeout = IPR_OPERATIONAL_TIMEOUT;
9439
Auke Kok44c10132007-06-08 15:46:36 -07009440 ioa_cfg->revid = pdev->revision;
Brian King463fc692007-05-07 17:09:05 -05009441
Linus Torvalds1da177e2005-04-16 15:20:36 -07009442 ipr_regs_pci = pci_resource_start(pdev, 0);
9443
9444 rc = pci_request_regions(pdev, IPR_NAME);
9445 if (rc < 0) {
9446 dev_err(&pdev->dev,
9447 "Couldn't register memory range of registers\n");
9448 goto out_scsi_host_put;
9449 }
9450
Arjan van de Ven25729a72008-09-28 16:18:02 -07009451 ipr_regs = pci_ioremap_bar(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009452
9453 if (!ipr_regs) {
9454 dev_err(&pdev->dev,
9455 "Couldn't map memory range of registers\n");
9456 rc = -ENOMEM;
9457 goto out_release_regions;
9458 }
9459
9460 ioa_cfg->hdw_dma_regs = ipr_regs;
9461 ioa_cfg->hdw_dma_regs_pci = ipr_regs_pci;
9462 ioa_cfg->ioa_mailbox = ioa_cfg->chip_cfg->mailbox + ipr_regs;
9463
9464 ipr_init_ioa_cfg(ioa_cfg, host, pdev);
9465
9466 pci_set_master(pdev);
9467
Wayne Boyera32c0552010-02-19 13:23:36 -08009468 if (ioa_cfg->sis64) {
9469 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
9470 if (rc < 0) {
9471 dev_dbg(&pdev->dev, "Failed to set 64 bit PCI DMA mask\n");
9472 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
9473 }
9474
9475 } else
9476 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
9477
Linus Torvalds1da177e2005-04-16 15:20:36 -07009478 if (rc < 0) {
9479 dev_err(&pdev->dev, "Failed to set PCI DMA mask\n");
9480 goto cleanup_nomem;
9481 }
9482
9483 rc = pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
9484 ioa_cfg->chip_cfg->cache_line_size);
9485
9486 if (rc != PCIBIOS_SUCCESSFUL) {
9487 dev_err(&pdev->dev, "Write of cache line size failed\n");
9488 rc = -EIO;
9489 goto cleanup_nomem;
9490 }
9491
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009492 if (ipr_number_of_msix > IPR_MAX_MSIX_VECTORS) {
9493 dev_err(&pdev->dev, "The max number of MSIX is %d\n",
9494 IPR_MAX_MSIX_VECTORS);
9495 ipr_number_of_msix = IPR_MAX_MSIX_VECTORS;
9496 }
9497
9498 if (ioa_cfg->ipr_chip->intr_type == IPR_USE_MSI &&
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009499 ipr_enable_msix(ioa_cfg) == 0)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009500 ioa_cfg->intr_flag = IPR_USE_MSIX;
9501 else if (ioa_cfg->ipr_chip->intr_type == IPR_USE_MSI &&
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009502 ipr_enable_msi(ioa_cfg) == 0)
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009503 ioa_cfg->intr_flag = IPR_USE_MSI;
9504 else {
9505 ioa_cfg->intr_flag = IPR_USE_LSI;
9506 ioa_cfg->nvectors = 1;
9507 dev_info(&pdev->dev, "Cannot enable MSI.\n");
9508 }
9509
9510 if (ioa_cfg->intr_flag == IPR_USE_MSI ||
9511 ioa_cfg->intr_flag == IPR_USE_MSIX) {
Wayne Boyer95fecd92009-06-16 15:13:28 -07009512 rc = ipr_test_msi(ioa_cfg, pdev);
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009513 if (rc == -EOPNOTSUPP) {
9514 if (ioa_cfg->intr_flag == IPR_USE_MSI) {
9515 ioa_cfg->intr_flag &= ~IPR_USE_MSI;
9516 pci_disable_msi(pdev);
9517 } else if (ioa_cfg->intr_flag == IPR_USE_MSIX) {
9518 ioa_cfg->intr_flag &= ~IPR_USE_MSIX;
9519 pci_disable_msix(pdev);
9520 }
9521
9522 ioa_cfg->intr_flag = IPR_USE_LSI;
9523 ioa_cfg->nvectors = 1;
9524 }
Wayne Boyer95fecd92009-06-16 15:13:28 -07009525 else if (rc)
9526 goto out_msi_disable;
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009527 else {
9528 if (ioa_cfg->intr_flag == IPR_USE_MSI)
9529 dev_info(&pdev->dev,
9530 "Request for %d MSIs succeeded with starting IRQ: %d\n",
9531 ioa_cfg->nvectors, pdev->irq);
9532 else if (ioa_cfg->intr_flag == IPR_USE_MSIX)
9533 dev_info(&pdev->dev,
9534 "Request for %d MSIXs succeeded.",
9535 ioa_cfg->nvectors);
9536 }
9537 }
9538
9539 ioa_cfg->hrrq_num = min3(ioa_cfg->nvectors,
9540 (unsigned int)num_online_cpus(),
9541 (unsigned int)IPR_MAX_HRRQ_NUM);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009542
Linus Torvalds1da177e2005-04-16 15:20:36 -07009543 /* Save away PCI config space for use following IOA reset */
9544 rc = pci_save_state(pdev);
9545
9546 if (rc != PCIBIOS_SUCCESSFUL) {
9547 dev_err(&pdev->dev, "Failed to save PCI config space\n");
9548 rc = -EIO;
Julia Lawallf170c682011-07-11 14:08:25 -07009549 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009550 }
9551
9552 if ((rc = ipr_save_pcix_cmd_reg(ioa_cfg)))
Julia Lawallf170c682011-07-11 14:08:25 -07009553 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009554
9555 if ((rc = ipr_set_pcix_cmd_reg(ioa_cfg)))
Julia Lawallf170c682011-07-11 14:08:25 -07009556 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009557
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08009558 if (ioa_cfg->sis64)
9559 ioa_cfg->cfg_table_size = (sizeof(struct ipr_config_table_hdr64)
9560 + ((sizeof(struct ipr_config_table_entry64)
9561 * ioa_cfg->max_devs_supported)));
9562 else
9563 ioa_cfg->cfg_table_size = (sizeof(struct ipr_config_table_hdr)
9564 + ((sizeof(struct ipr_config_table_entry)
9565 * ioa_cfg->max_devs_supported)));
9566
Linus Torvalds1da177e2005-04-16 15:20:36 -07009567 rc = ipr_alloc_mem(ioa_cfg);
9568 if (rc < 0) {
9569 dev_err(&pdev->dev,
9570 "Couldn't allocate enough memory for device driver!\n");
Julia Lawallf170c682011-07-11 14:08:25 -07009571 goto out_msi_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009572 }
9573
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06009574 /*
9575 * If HRRQ updated interrupt is not masked, or reset alert is set,
9576 * the card is in an unknown state and needs a hard reset
9577 */
Wayne Boyer214777b2010-02-19 13:24:26 -08009578 mask = readl(ioa_cfg->regs.sense_interrupt_mask_reg32);
9579 interrupts = readl(ioa_cfg->regs.sense_interrupt_reg32);
9580 uproc = readl(ioa_cfg->regs.sense_uproc_interrupt_reg32);
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06009581 if ((mask & IPR_PCII_HRRQ_UPDATED) == 0 || (uproc & IPR_UPROCI_RESET_ALERT))
9582 ioa_cfg->needs_hard_reset = 1;
Anton Blanchard5d7c20b2011-08-01 19:43:45 +10009583 if ((interrupts & IPR_PCII_ERROR_INTERRUPTS) || reset_devices)
Brian King473b1e82007-05-02 10:44:11 -05009584 ioa_cfg->needs_hard_reset = 1;
9585 if (interrupts & IPR_PCII_IOA_UNIT_CHECKED)
9586 ioa_cfg->ioa_unit_checked = 1;
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06009587
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009588 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009589 ipr_mask_and_clear_interrupts(ioa_cfg, ~IPR_PCII_IOA_TRANS_TO_OPER);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -06009590 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009591
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009592 if (ioa_cfg->intr_flag == IPR_USE_MSI
9593 || ioa_cfg->intr_flag == IPR_USE_MSIX) {
9594 name_msi_vectors(ioa_cfg);
9595 rc = request_irq(ioa_cfg->vectors_info[0].vec, ipr_isr,
9596 0,
9597 ioa_cfg->vectors_info[0].desc,
9598 &ioa_cfg->hrrq[0]);
9599 if (!rc)
9600 rc = ipr_request_other_msi_irqs(ioa_cfg);
9601 } else {
9602 rc = request_irq(pdev->irq, ipr_isr,
9603 IRQF_SHARED,
9604 IPR_NAME, &ioa_cfg->hrrq[0]);
9605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009606 if (rc) {
9607 dev_err(&pdev->dev, "Couldn't register IRQ %d! rc=%d\n",
9608 pdev->irq, rc);
9609 goto cleanup_nolog;
9610 }
9611
Brian King463fc692007-05-07 17:09:05 -05009612 if ((dev_id->driver_data & IPR_USE_PCI_WARM_RESET) ||
9613 (dev_id->device == PCI_DEVICE_ID_IBM_OBSIDIAN_E && !ioa_cfg->revid)) {
9614 ioa_cfg->needs_warm_reset = 1;
9615 ioa_cfg->reset = ipr_reset_slot_reset;
9616 } else
9617 ioa_cfg->reset = ipr_reset_start_bist;
9618
Linus Torvalds1da177e2005-04-16 15:20:36 -07009619 spin_lock(&ipr_driver_lock);
9620 list_add_tail(&ioa_cfg->queue, &ipr_ioa_head);
9621 spin_unlock(&ipr_driver_lock);
9622
9623 LEAVE;
9624out:
9625 return rc;
9626
9627cleanup_nolog:
9628 ipr_free_mem(ioa_cfg);
Wayne Boyer95fecd92009-06-16 15:13:28 -07009629out_msi_disable:
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009630 if (ioa_cfg->intr_flag == IPR_USE_MSI)
9631 pci_disable_msi(pdev);
9632 else if (ioa_cfg->intr_flag == IPR_USE_MSIX)
9633 pci_disable_msix(pdev);
Julia Lawallf170c682011-07-11 14:08:25 -07009634cleanup_nomem:
9635 iounmap(ipr_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009636out_release_regions:
9637 pci_release_regions(pdev);
9638out_scsi_host_put:
9639 scsi_host_put(host);
9640out_disable:
9641 pci_disable_device(pdev);
9642 goto out;
9643}
9644
9645/**
9646 * ipr_scan_vsets - Scans for VSET devices
9647 * @ioa_cfg: ioa config struct
9648 *
9649 * Description: Since the VSET resources do not follow SAM in that we can have
9650 * sparse LUNs with no LUN 0, we have to scan for these ourselves.
9651 *
9652 * Return value:
9653 * none
9654 **/
9655static void ipr_scan_vsets(struct ipr_ioa_cfg *ioa_cfg)
9656{
9657 int target, lun;
9658
9659 for (target = 0; target < IPR_MAX_NUM_TARGETS_PER_BUS; target++)
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03009660 for (lun = 0; lun < IPR_MAX_NUM_VSET_LUNS_PER_TARGET; lun++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009661 scsi_add_device(ioa_cfg->host, IPR_VSET_BUS, target, lun);
9662}
9663
9664/**
9665 * ipr_initiate_ioa_bringdown - Bring down an adapter
9666 * @ioa_cfg: ioa config struct
9667 * @shutdown_type: shutdown type
9668 *
9669 * Description: This function will initiate bringing down the adapter.
9670 * This consists of issuing an IOA shutdown to the adapter
9671 * to flush the cache, and running BIST.
9672 * If the caller needs to wait on the completion of the reset,
9673 * the caller must sleep on the reset_wait_q.
9674 *
9675 * Return value:
9676 * none
9677 **/
9678static void ipr_initiate_ioa_bringdown(struct ipr_ioa_cfg *ioa_cfg,
9679 enum ipr_shutdown_type shutdown_type)
9680{
9681 ENTER;
9682 if (ioa_cfg->sdt_state == WAIT_FOR_DUMP)
9683 ioa_cfg->sdt_state = ABORT_DUMP;
9684 ioa_cfg->reset_retries = 0;
9685 ioa_cfg->in_ioa_bringdown = 1;
9686 ipr_initiate_ioa_reset(ioa_cfg, shutdown_type);
9687 LEAVE;
9688}
9689
9690/**
9691 * __ipr_remove - Remove a single adapter
9692 * @pdev: pci device struct
9693 *
9694 * Adapter hot plug remove entry point.
9695 *
9696 * Return value:
9697 * none
9698 **/
9699static void __ipr_remove(struct pci_dev *pdev)
9700{
9701 unsigned long host_lock_flags = 0;
9702 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
Brian Kingbfae7822013-01-30 23:45:08 -06009703 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009704 ENTER;
9705
9706 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03009707 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -05009708 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
9709 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
9710 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
9711 }
9712
Brian Kingbfae7822013-01-30 23:45:08 -06009713 for (i = 0; i < ioa_cfg->hrrq_num; i++) {
9714 spin_lock(&ioa_cfg->hrrq[i]._lock);
9715 ioa_cfg->hrrq[i].removing_ioa = 1;
9716 spin_unlock(&ioa_cfg->hrrq[i]._lock);
9717 }
9718 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719 ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
9720
9721 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
9722 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
Tejun Heo43829732012-08-20 14:51:24 -07009723 flush_work(&ioa_cfg->work_q);
wenxiong@linux.vnet.ibm.com9077a942013-03-14 13:52:24 -05009724 INIT_LIST_HEAD(&ioa_cfg->used_res_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009725 spin_lock_irqsave(ioa_cfg->host->host_lock, host_lock_flags);
9726
9727 spin_lock(&ipr_driver_lock);
9728 list_del(&ioa_cfg->queue);
9729 spin_unlock(&ipr_driver_lock);
9730
9731 if (ioa_cfg->sdt_state == ABORT_DUMP)
9732 ioa_cfg->sdt_state = WAIT_FOR_DUMP;
9733 spin_unlock_irqrestore(ioa_cfg->host->host_lock, host_lock_flags);
9734
9735 ipr_free_all_resources(ioa_cfg);
9736
9737 LEAVE;
9738}
9739
9740/**
9741 * ipr_remove - IOA hot plug remove entry point
9742 * @pdev: pci device struct
9743 *
9744 * Adapter hot plug remove entry point.
9745 *
9746 * Return value:
9747 * none
9748 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009749static void ipr_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009750{
9751 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
9752
9753 ENTER;
9754
Tony Jonesee959b02008-02-22 00:13:36 +01009755 ipr_remove_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009756 &ipr_trace_attr);
Tony Jonesee959b02008-02-22 00:13:36 +01009757 ipr_remove_dump_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009758 &ipr_dump_attr);
9759 scsi_remove_host(ioa_cfg->host);
9760
9761 __ipr_remove(pdev);
9762
9763 LEAVE;
9764}
9765
9766/**
9767 * ipr_probe - Adapter hot plug add entry point
9768 *
9769 * Return value:
9770 * 0 on success / non-zero on failure
9771 **/
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009772static int ipr_probe(struct pci_dev *pdev, const struct pci_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009773{
9774 struct ipr_ioa_cfg *ioa_cfg;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06009775 int rc, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009776
9777 rc = ipr_probe_ioa(pdev, dev_id);
9778
9779 if (rc)
9780 return rc;
9781
9782 ioa_cfg = pci_get_drvdata(pdev);
9783 rc = ipr_probe_ioa_part2(ioa_cfg);
9784
9785 if (rc) {
9786 __ipr_remove(pdev);
9787 return rc;
9788 }
9789
9790 rc = scsi_add_host(ioa_cfg->host, &pdev->dev);
9791
9792 if (rc) {
9793 __ipr_remove(pdev);
9794 return rc;
9795 }
9796
Tony Jonesee959b02008-02-22 00:13:36 +01009797 rc = ipr_create_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009798 &ipr_trace_attr);
9799
9800 if (rc) {
9801 scsi_remove_host(ioa_cfg->host);
9802 __ipr_remove(pdev);
9803 return rc;
9804 }
9805
Tony Jonesee959b02008-02-22 00:13:36 +01009806 rc = ipr_create_dump_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009807 &ipr_dump_attr);
9808
9809 if (rc) {
Tony Jonesee959b02008-02-22 00:13:36 +01009810 ipr_remove_trace_file(&ioa_cfg->host->shost_dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009811 &ipr_trace_attr);
9812 scsi_remove_host(ioa_cfg->host);
9813 __ipr_remove(pdev);
9814 return rc;
9815 }
9816
9817 scsi_scan_host(ioa_cfg->host);
9818 ipr_scan_vsets(ioa_cfg);
9819 scsi_add_device(ioa_cfg->host, IPR_IOA_BUS, IPR_IOA_TARGET, IPR_IOA_LUN);
9820 ioa_cfg->allow_ml_add_del = 1;
brking@us.ibm.com11cd8f12005-11-01 17:00:11 -06009821 ioa_cfg->host->max_channel = IPR_VSET_BUS;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06009822 ioa_cfg->iopoll_weight = ioa_cfg->chip_cfg->iopoll_weight;
9823
9824 if (blk_iopoll_enabled && ioa_cfg->iopoll_weight &&
9825 ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
9826 for (i = 1; i < ioa_cfg->hrrq_num; i++) {
9827 blk_iopoll_init(&ioa_cfg->hrrq[i].iopoll,
9828 ioa_cfg->iopoll_weight, ipr_iopoll);
9829 blk_iopoll_enable(&ioa_cfg->hrrq[i].iopoll);
9830 }
9831 }
9832
Linus Torvalds1da177e2005-04-16 15:20:36 -07009833 schedule_work(&ioa_cfg->work_q);
9834 return 0;
9835}
9836
9837/**
9838 * ipr_shutdown - Shutdown handler.
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07009839 * @pdev: pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07009840 *
9841 * This function is invoked upon system shutdown/reboot. It will issue
9842 * an adapter shutdown to the adapter to flush the write cache.
9843 *
9844 * Return value:
9845 * none
9846 **/
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07009847static void ipr_shutdown(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848{
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07009849 struct ipr_ioa_cfg *ioa_cfg = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009850 unsigned long lock_flags = 0;
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06009851 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009852
9853 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
wenxiong@linux.vnet.ibm.comb53d1242013-01-11 17:43:52 -06009854 if (blk_iopoll_enabled && ioa_cfg->iopoll_weight &&
9855 ioa_cfg->sis64 && ioa_cfg->nvectors > 1) {
9856 ioa_cfg->iopoll_weight = 0;
9857 for (i = 1; i < ioa_cfg->hrrq_num; i++)
9858 blk_iopoll_disable(&ioa_cfg->hrrq[i].iopoll);
9859 }
9860
Kleber Sacilotto de Souza203fa3f2012-08-22 18:14:14 -03009861 while (ioa_cfg->in_reset_reload) {
Brian King970ea292007-04-26 16:00:06 -05009862 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9863 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
9864 spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
9865 }
9866
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867 ipr_initiate_ioa_bringdown(ioa_cfg, IPR_SHUTDOWN_NORMAL);
9868 spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
9869 wait_event(ioa_cfg->reset_wait_q, !ioa_cfg->in_reset_reload);
9870}
9871
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009872static struct pci_device_id ipr_pci_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009873 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009874 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5702, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009875 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009876 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_5703, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009877 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009878 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573D, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009879 { PCI_VENDOR_ID_MYLEX, PCI_DEVICE_ID_IBM_GEMSTONE,
Brian King6d84c942007-01-23 11:25:23 -06009880 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_573E, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009881 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -06009882 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571B, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009883 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -06009884 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572E, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King6d84c942007-01-23 11:25:23 -06009886 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009887 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CITRINE,
Brian King5469cb52007-03-29 12:42:40 -05009888 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575B, 0, 0,
9889 IPR_USE_LONG_TRANSOP_TIMEOUT },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009890 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King6d84c942007-01-23 11:25:23 -06009891 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009892 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King22d2e402007-04-26 16:00:13 -05009893 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0,
9894 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -06009895 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_OBSIDIAN,
Brian King5469cb52007-03-29 12:42:40 -05009896 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0,
9897 IPR_USE_LONG_TRANSOP_TIMEOUT },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009898 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King6d84c942007-01-23 11:25:23 -06009899 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572A, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009900 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King22d2e402007-04-26 16:00:13 -05009901 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572B, 0, 0,
9902 IPR_USE_LONG_TRANSOP_TIMEOUT},
Brian King60e74862006-11-21 10:28:10 -06009903 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN,
Brian King5469cb52007-03-29 12:42:40 -05009904 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_575C, 0, 0,
9905 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -06009906 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King22d2e402007-04-26 16:00:13 -05009907 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_574E, 0, 0,
9908 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King185eb312007-03-29 12:42:53 -05009909 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King185eb312007-03-29 12:42:53 -05009910 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B3, 0, 0, 0 },
9911 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Wayne Boyerb0f56d32010-06-24 13:34:14 -07009912 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57CC, 0, 0, 0 },
9913 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN_E,
Brian King5469cb52007-03-29 12:42:40 -05009914 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B7, 0, 0,
Brian King463fc692007-05-07 17:09:05 -05009915 IPR_USE_LONG_TRANSOP_TIMEOUT | IPR_USE_PCI_WARM_RESET },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009916 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_SNIPE,
Brian King6d84c942007-01-23 11:25:23 -06009917 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_2780, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009918 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King6d84c942007-01-23 11:25:23 -06009919 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571E, 0, 0, 0 },
brking@us.ibm.com86f51432005-11-01 17:02:42 -06009920 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King5469cb52007-03-29 12:42:40 -05009921 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_571F, 0, 0,
9922 IPR_USE_LONG_TRANSOP_TIMEOUT },
Brian King60e74862006-11-21 10:28:10 -06009923 { PCI_VENDOR_ID_ADAPTEC2, PCI_DEVICE_ID_ADAPTEC2_SCAMP,
Brian King5469cb52007-03-29 12:42:40 -05009924 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_572F, 0, 0,
9925 IPR_USE_LONG_TRANSOP_TIMEOUT },
Wayne Boyerd7b46272010-02-19 13:24:38 -08009926 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9927 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B5, 0, 0, 0 },
9928 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9929 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_574D, 0, 0, 0 },
9930 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
9931 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B2, 0, 0, 0 },
Wayne Boyer32622bd2010-10-18 20:24:34 -07009932 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
wenxiong@linux.vnet.ibm.comb8d5d562013-01-11 17:43:47 -06009933 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C0, 0, 0, 0 },
9934 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
Wayne Boyer5a918352011-10-27 11:58:21 -07009935 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C3, 0, 0, 0 },
9936 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROC_FPGA_E2,
Wayne Boyer32622bd2010-10-18 20:24:34 -07009937 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C4, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -08009938 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -08009939 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B4, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -08009940 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -08009941 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57B1, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -08009942 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -08009943 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C6, 0, 0, 0 },
Wayne Boyercd9b3d02012-02-23 11:54:55 -08009944 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
9945 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57C8, 0, 0, 0 },
9946 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
Wayne Boyerd7b46272010-02-19 13:24:38 -08009947 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57CE, 0, 0, 0 },
wenxiong@linux.vnet.ibm.comb8d5d562013-01-11 17:43:47 -06009948 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
9949 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D5, 0, 0, 0 },
9950 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
9951 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D6, 0, 0, 0 },
9952 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
9953 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D7, 0, 0, 0 },
9954 { PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CROCODILE,
9955 PCI_VENDOR_ID_IBM, IPR_SUBS_DEV_ID_57D8, 0, 0, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07009956 { }
9957};
9958MODULE_DEVICE_TABLE(pci, ipr_pci_table);
9959
Stephen Hemmingera55b2d22012-09-07 09:33:16 -07009960static const struct pci_error_handlers ipr_err_handler = {
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009961 .error_detected = ipr_pci_error_detected,
9962 .slot_reset = ipr_pci_slot_reset,
9963};
9964
Linus Torvalds1da177e2005-04-16 15:20:36 -07009965static struct pci_driver ipr_driver = {
9966 .name = IPR_NAME,
9967 .id_table = ipr_pci_table,
9968 .probe = ipr_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009969 .remove = ipr_remove,
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07009970 .shutdown = ipr_shutdown,
Linas Vepstasf8a88b192006-02-03 16:52:42 -06009971 .err_handler = &ipr_err_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009972};
9973
9974/**
Wayne Boyerf72919e2010-02-19 13:24:21 -08009975 * ipr_halt_done - Shutdown prepare completion
9976 *
9977 * Return value:
9978 * none
9979 **/
9980static void ipr_halt_done(struct ipr_cmnd *ipr_cmd)
9981{
wenxiong@linux.vnet.ibm.com05a65382013-01-11 17:43:50 -06009982 list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
Wayne Boyerf72919e2010-02-19 13:24:21 -08009983}
9984
9985/**
9986 * ipr_halt - Issue shutdown prepare to all adapters
9987 *
9988 * Return value:
9989 * NOTIFY_OK on success / NOTIFY_DONE on failure
9990 **/
9991static int ipr_halt(struct notifier_block *nb, ulong event, void *buf)
9992{
9993 struct ipr_cmnd *ipr_cmd;
9994 struct ipr_ioa_cfg *ioa_cfg;
9995 unsigned long flags = 0;
9996
9997 if (event != SYS_RESTART && event != SYS_HALT && event != SYS_POWER_OFF)
9998 return NOTIFY_DONE;
9999
10000 spin_lock(&ipr_driver_lock);
10001
10002 list_for_each_entry(ioa_cfg, &ipr_ioa_head, queue) {
10003 spin_lock_irqsave(ioa_cfg->host->host_lock, flags);
wenxiong@linux.vnet.ibm.com56d6aa32013-01-11 17:43:51 -060010004 if (!ioa_cfg->hrrq[IPR_INIT_HRRQ].allow_cmds) {
Wayne Boyerf72919e2010-02-19 13:24:21 -080010005 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
10006 continue;
10007 }
10008
10009 ipr_cmd = ipr_get_free_ipr_cmnd(ioa_cfg);
10010 ipr_cmd->ioarcb.res_handle = cpu_to_be32(IPR_IOA_RES_HANDLE);
10011 ipr_cmd->ioarcb.cmd_pkt.request_type = IPR_RQTYPE_IOACMD;
10012 ipr_cmd->ioarcb.cmd_pkt.cdb[0] = IPR_IOA_SHUTDOWN;
10013 ipr_cmd->ioarcb.cmd_pkt.cdb[1] = IPR_SHUTDOWN_PREPARE_FOR_NORMAL;
10014
10015 ipr_do_req(ipr_cmd, ipr_halt_done, ipr_timeout, IPR_DEVICE_RESET_TIMEOUT);
10016 spin_unlock_irqrestore(ioa_cfg->host->host_lock, flags);
10017 }
10018 spin_unlock(&ipr_driver_lock);
10019
10020 return NOTIFY_OK;
10021}
10022
10023static struct notifier_block ipr_notifier = {
10024 ipr_halt, NULL, 0
10025};
10026
10027/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010028 * ipr_init - Module entry point
10029 *
10030 * Return value:
10031 * 0 on success / negative value on failure
10032 **/
10033static int __init ipr_init(void)
10034{
10035 ipr_info("IBM Power RAID SCSI Device Driver version: %s %s\n",
10036 IPR_DRIVER_VERSION, IPR_DRIVER_DATE);
10037
Wayne Boyerf72919e2010-02-19 13:24:21 -080010038 register_reboot_notifier(&ipr_notifier);
Henrik Kretzschmardcbccbde2006-09-25 16:58:58 -070010039 return pci_register_driver(&ipr_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010040}
10041
10042/**
10043 * ipr_exit - Module unload
10044 *
10045 * Module unload entry point.
10046 *
10047 * Return value:
10048 * none
10049 **/
10050static void __exit ipr_exit(void)
10051{
Wayne Boyerf72919e2010-02-19 13:24:21 -080010052 unregister_reboot_notifier(&ipr_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010053 pci_unregister_driver(&ipr_driver);
10054}
10055
10056module_init(ipr_init);
10057module_exit(ipr_exit);