blob: 4565cb5d3d1a7e3c808c6945b899d165a321bbee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sbp2.c - SBP-2 protocol driver for IEEE-1394
3 *
4 * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com)
5 * jamesg@filanet.com (JSG)
6 *
7 * Copyright (C) 2003 Ben Collins <bcollins@debian.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24/*
25 * Brief Description:
26 *
27 * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394
28 * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level
29 * driver. It also registers as a SCSI lower-level driver in order to accept
30 * SCSI commands for transport using SBP-2.
31 *
Stefan Richter2a533b12006-11-02 21:16:08 +010032 * You may access any attached SBP-2 (usually storage devices) as regular
33 * SCSI devices. E.g. mount /dev/sda1, fdisk, mkfs, etc..
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
Stefan Richter2a533b12006-11-02 21:16:08 +010035 * See http://www.t10.org/drafts.htm#sbp2 for the final draft of the SBP-2
36 * specification and for where to purchase the official standard.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Stefan Richter2a533b12006-11-02 21:16:08 +010038 * TODO:
39 * - look into possible improvements of the SCSI error handlers
40 * - handle Unit_Characteristics.mgt_ORB_timeout and .ORB_size
41 * - handle Logical_Unit_Number.ordered
42 * - handle src == 1 in status blocks
43 * - reimplement the DMA mapping in absence of physical DMA so that
44 * bus_to_virt is no longer required
45 * - debug the handling of absent physical DMA
46 * - replace CONFIG_IEEE1394_SBP2_PHYS_DMA by automatic detection
47 * (this is easy but depends on the previous two TODO items)
48 * - make the parameter serialize_io configurable per device
49 * - move all requests to fetch agent registers into non-atomic context,
50 * replace all usages of sbp2util_node_write_no_wait by true transactions
Stefan Richter2a533b12006-11-02 21:16:08 +010051 * Grep for inline FIXME comments below.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53
Stefan Richter4e6343a2007-12-16 17:31:26 +010054#include <linux/blkdev.h>
Stefan Richter902abed2006-08-14 18:56:00 +020055#include <linux/compiler.h>
56#include <linux/delay.h>
57#include <linux/device.h>
58#include <linux/dma-mapping.h>
Stefan Richter902abed2006-08-14 18:56:00 +020059#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/kernel.h>
61#include <linux/list.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070062#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/module.h>
64#include <linux/moduleparam.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070065#include <linux/sched.h>
Stefan Richter902abed2006-08-14 18:56:00 +020066#include <linux/slab.h>
67#include <linux/spinlock.h>
68#include <linux/stat.h>
69#include <linux/string.h>
70#include <linux/stringify.h>
71#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020072#include <linux/wait.h>
Stefan Richter20e20082007-05-05 17:18:12 +020073#include <linux/workqueue.h>
Adrian Bunk87ae9af2007-10-30 10:35:04 +010074#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020077#include <asm/errno.h>
78#include <asm/param.h>
Stefan Richter902abed2006-08-14 18:56:00 +020079#include <asm/system.h>
80#include <asm/types.h>
81
82#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
83#include <asm/io.h> /* for bus_to_virt */
84#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#include <scsi/scsi.h>
87#include <scsi/scsi_cmnd.h>
88#include <scsi/scsi_dbg.h>
89#include <scsi/scsi_device.h>
90#include <scsi/scsi_host.h>
91
92#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020094#include "hosts.h"
95#include "ieee1394.h"
96#include "ieee1394_core.h"
97#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +020099#include "ieee1394_types.h"
100#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include "sbp2.h"
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Module load parameter definitions
105 */
106
107/*
108 * Change max_speed on module load if you have a bad IEEE-1394
109 * controller that has trouble running 2KB packets at 400mb.
110 *
111 * NOTE: On certain OHCI parts I have seen short packets on async transmit
112 * (probably due to PCI latency/throughput issues with the part). You can
113 * bump down the speed if you are running into problems.
114 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100115static int sbp2_max_speed = IEEE1394_SPEED_MAX;
116module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter4106cef2009-01-19 19:20:31 +0100117MODULE_PARM_DESC(max_speed, "Limit data transfer speed (5 <= 3200, "
118 "4 <= 1600, 3 <= 800, 2 <= 400, 1 <= 200, 0 = 100 Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/*
Stefan Richter77bba7a2007-06-17 23:54:52 +0200121 * Set serialize_io to 0 or N to use dynamically appended lists of command ORBs.
122 * This is and always has been buggy in multiple subtle ways. See above TODOs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100124static int sbp2_serialize_io = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200125module_param_named(serialize_io, sbp2_serialize_io, bool, 0444);
126MODULE_PARM_DESC(serialize_io, "Serialize requests coming from SCSI drivers "
127 "(default = Y, faster but buggy = N)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
Stefan Richter4e6343a2007-12-16 17:31:26 +0100130 * Adjust max_sectors if you'd like to influence how many sectors each SCSI
131 * command can transfer at most. Please note that some older SBP-2 bridge
132 * chips are broken for transfers greater or equal to 128KB, therefore
133 * max_sectors used to be a safe 255 sectors for many years. We now have a
134 * default of 0 here which means that we let the SCSI stack choose a limit.
135 *
136 * The SBP2_WORKAROUND_128K_MAX_TRANS flag, if set either in the workarounds
137 * module parameter or in the sbp2_workarounds_table[], will override the
138 * value of max_sectors. We should use sbp2_workarounds_table[] to cover any
139 * bridge chip which becomes known to need the 255 sectors limit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
Stefan Richter4e6343a2007-12-16 17:31:26 +0100141static int sbp2_max_sectors;
Stefan Richterca0c7452006-11-02 21:16:08 +0100142module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
143MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
Stefan Richter4e6343a2007-12-16 17:31:26 +0100144 "(default = 0 = use SCSI stack's default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146/*
147 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
148 * do an exclusive login, as it's generally unsafe to have two hosts
149 * talking to a single sbp2 device at the same time (filesystem coherency,
150 * etc.). If you're running an sbp2 device that supports multiple logins,
151 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400152 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
153 * File System, or Lustre, then set exclusive_login to zero.
154 *
155 * So far only bridges from Oxford Semiconductor are known to support
156 * concurrent logins. Depending on firmware, four or two concurrent logins
157 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100159static int sbp2_exclusive_login = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200160module_param_named(exclusive_login, sbp2_exclusive_login, bool, 0644);
Stefan Richterca0c7452006-11-02 21:16:08 +0100161MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
Stefan Richter77bba7a2007-06-17 23:54:52 +0200162 "(default = Y, use N for concurrent initiators)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200165 * If any of the following workarounds is required for your device to work,
166 * please submit the kernel messages logged by sbp2 to the linux1394-devel
167 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200169 * - 128kB max transfer
170 * Limit transfer size. Necessary for some old bridges.
171 *
172 * - 36 byte inquiry
173 * When scsi_mod probes the device, let the inquiry command look like that
174 * from MS Windows.
175 *
176 * - skip mode page 8
177 * Suppress sending of mode_sense for mode page 8 if the device pretends to
178 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200179 *
180 * - fix capacity
181 * Tell sd_mod to correct the last sector number reported by read_capacity.
182 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
183 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200184 *
Stefan Richterd94a9832008-02-03 23:07:44 +0100185 * - delay inquiry
186 * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry.
187 *
Stefan Richter37191222008-05-11 00:35:55 +0200188 * - power condition
189 * Set the power condition field in the START STOP UNIT commands sent by
190 * sd_mod on suspend, resume, and shutdown (if manage_start_stop is on).
191 * Some disks need this to spin down or to resume properly.
192 *
Stefan Richter679c0cd2006-05-15 22:08:09 +0200193 * - override internal blacklist
194 * Instead of adding to the built-in blacklist, use only the workarounds
195 * specified in the module load parameter.
196 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200198static int sbp2_default_workarounds;
199module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
200MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
201 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
202 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
203 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200204 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richterd94a9832008-02-03 23:07:44 +0100205 ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY)
Stefan Richter37191222008-05-11 00:35:55 +0200206 ", set power condition in start stop unit = "
207 __stringify(SBP2_WORKAROUND_POWER_CONDITION)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200208 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200209 ", or a combination)");
210
Stefan Richterd7794c82007-05-27 13:17:15 +0200211/*
212 * This influences the format of the sysfs attribute
213 * /sys/bus/scsi/devices/.../ieee1394_id.
214 *
215 * The default format is like in older kernels: %016Lx:%d:%d
216 * It contains the target's EUI-64, a number given to the logical unit by
217 * the ieee1394 driver's nodemgr (starting at 0), and the LUN.
218 *
219 * The long format is: %016Lx:%06x:%04x
220 * It contains the target's EUI-64, the unit directory's directory_ID as per
221 * IEEE 1212 clause 7.7.19, and the LUN. This format comes closest to the
222 * format of SBP(-3) target port and logical unit identifier as per SAM (SCSI
223 * Architecture Model) rev.2 to 4 annex A. Therefore and because it is
224 * independent of the implementation of the ieee1394 nodemgr, the longer format
225 * is recommended for future use.
226 */
227static int sbp2_long_sysfs_ieee1394_id;
228module_param_named(long_ieee1394_id, sbp2_long_sysfs_ieee1394_id, bool, 0644);
229MODULE_PARM_DESC(long_ieee1394_id, "8+3+2 bytes format of ieee1394_id in sysfs "
230 "(default = backwards-compatible = N, SAM-conforming = Y)");
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Stefan Richteredf1fb22006-11-02 21:16:08 +0100233#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
234#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
237 * Globals
238 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100239static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
240static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100241 void (*)(struct scsi_cmnd *));
Stefan Richter138c8af2006-11-02 21:16:08 +0100242static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
243static int sbp2_start_device(struct sbp2_lu *);
244static void sbp2_remove_device(struct sbp2_lu *);
245static int sbp2_login_device(struct sbp2_lu *);
246static int sbp2_reconnect_device(struct sbp2_lu *);
247static int sbp2_logout_device(struct sbp2_lu *);
Stefan Richterea42ea02006-11-02 21:16:08 +0100248static void sbp2_host_reset(struct hpsb_host *);
249static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
250 u64, size_t, u16);
Stefan Richter138c8af2006-11-02 21:16:08 +0100251static int sbp2_agent_reset(struct sbp2_lu *, int);
252static void sbp2_parse_unit_directory(struct sbp2_lu *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100253 struct unit_directory *);
Stefan Richter138c8af2006-11-02 21:16:08 +0100254static int sbp2_set_busy_timeout(struct sbp2_lu *);
255static int sbp2_max_speed_and_size(struct sbp2_lu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Stefan Richterd3e3e972009-01-24 19:41:46 +0100258static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xa, 0xa, 0xa };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Stefan Richter261b5f62007-08-11 11:52:08 +0200260static DEFINE_RWLOCK(sbp2_hi_logical_units_lock);
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100263 .name = SBP2_DEVICE_NAME,
264 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
Tobias Klauser1c4fb572009-02-09 22:05:06 +0100267static const struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100268 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
271#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100272static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
273 u64, size_t, u16);
274static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
275 size_t, u16);
276
Tobias Klauser1c4fb572009-02-09 22:05:06 +0100277static const struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100278 .read = sbp2_handle_physdma_read,
279 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280};
281#endif
282
Stefan Richterea42ea02006-11-02 21:16:08 +0100283
284/*
285 * Interface to driver core and IEEE 1394 core
286 */
Stefan Richterc6409462009-02-15 23:11:38 +0100287static const struct ieee1394_device_id sbp2_id_table[] = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100288 {
289 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
290 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
291 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
292 {}
293};
294MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
295
296static int sbp2_probe(struct device *);
297static int sbp2_remove(struct device *);
298static int sbp2_update(struct unit_directory *);
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300static struct hpsb_protocol_driver sbp2_driver = {
Ben Collinsed30c262006-11-23 13:59:48 -0500301 .name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 .id_table = sbp2_id_table,
303 .update = sbp2_update,
304 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .probe = sbp2_probe,
306 .remove = sbp2_remove,
307 },
308};
309
Stefan Richterea42ea02006-11-02 21:16:08 +0100310
311/*
312 * Interface to SCSI core
313 */
314static int sbp2scsi_queuecommand(struct scsi_cmnd *,
315 void (*)(struct scsi_cmnd *));
316static int sbp2scsi_abort(struct scsi_cmnd *);
317static int sbp2scsi_reset(struct scsi_cmnd *);
318static int sbp2scsi_slave_alloc(struct scsi_device *);
319static int sbp2scsi_slave_configure(struct scsi_device *);
320static void sbp2scsi_slave_destroy(struct scsi_device *);
321static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
322 struct device_attribute *, char *);
323
324static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
325
326static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
327 &dev_attr_ieee1394_id,
328 NULL
329};
330
Stefan Richterca0c7452006-11-02 21:16:08 +0100331static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100332 .module = THIS_MODULE,
333 .name = "SBP-2 IEEE-1394",
334 .proc_name = SBP2_DEVICE_NAME,
335 .queuecommand = sbp2scsi_queuecommand,
336 .eh_abort_handler = sbp2scsi_abort,
337 .eh_device_reset_handler = sbp2scsi_reset,
338 .slave_alloc = sbp2scsi_slave_alloc,
339 .slave_configure = sbp2scsi_slave_configure,
340 .slave_destroy = sbp2scsi_slave_destroy,
341 .this_id = -1,
342 .sg_tablesize = SG_ALL,
343 .use_clustering = ENABLE_CLUSTERING,
344 .cmd_per_lun = SBP2_MAX_CMDS,
345 .can_queue = SBP2_MAX_CMDS,
Stefan Richterea42ea02006-11-02 21:16:08 +0100346 .sdev_attrs = sbp2_sysfs_sdev_attrs,
347};
348
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100349#define SBP2_ROM_VALUE_WILDCARD ~0 /* match all */
350#define SBP2_ROM_VALUE_MISSING 0xff000000 /* not present in the unit dir. */
Stefan Richterea42ea02006-11-02 21:16:08 +0100351
Stefan Richtera80614d2006-02-14 22:04:19 -0500352/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200353 * List of devices with known bugs.
354 *
355 * The firmware_revision field, masked with 0xffff00, is the best indicator
356 * for the type of bridge chip of a device. It yields a few false positives
357 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500358 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200359static const struct {
360 u32 firmware_revision;
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100361 u32 model;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200362 unsigned workarounds;
363} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400364 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200365 .firmware_revision = 0x002800,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100366 .model = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200367 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
Stefan Richter37191222008-05-11 00:35:55 +0200368 SBP2_WORKAROUND_MODE_SENSE_8 |
369 SBP2_WORKAROUND_POWER_CONDITION,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200370 },
Stefan Richterd94a9832008-02-03 23:07:44 +0100371 /* DViCO Momobay FX-3A with TSB42AA9A bridge */ {
372 .firmware_revision = 0x002800,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100373 .model = 0x000000,
Stefan Richter625f0852009-09-06 19:34:17 +0200374 .workarounds = SBP2_WORKAROUND_POWER_CONDITION,
Stefan Richterd94a9832008-02-03 23:07:44 +0100375 },
Stefan Richter24d3bf82006-05-15 22:04:59 +0200376 /* Initio bridges, actually only needed for some older ones */ {
377 .firmware_revision = 0x000200,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100378 .model = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200379 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
380 },
Stefan Richter37191222008-05-11 00:35:55 +0200381 /* PL-3507 bridge with Prolific firmware */ {
382 .firmware_revision = 0x012800,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100383 .model = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter37191222008-05-11 00:35:55 +0200384 .workarounds = SBP2_WORKAROUND_POWER_CONDITION,
385 },
Stefan Richter24d3bf82006-05-15 22:04:59 +0200386 /* Symbios bridge */ {
387 .firmware_revision = 0xa0b800,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100388 .model = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200389 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200390 },
Stefan Richter6e45ef42008-03-11 22:32:52 +0100391 /* Datafab MD2-FW2 with Symbios/LSILogic SYM13FW500 bridge */ {
392 .firmware_revision = 0x002600,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100393 .model = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter6e45ef42008-03-11 22:32:52 +0100394 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
395 },
Stefan Richter1448d7c2009-01-29 00:13:20 +0100396 /*
397 * iPod 2nd generation: needs 128k max transfer size workaround
398 * iPod 3rd generation: needs fix capacity workaround
399 */
400 {
401 .firmware_revision = 0x0a2700,
402 .model = 0x000000,
403 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS |
404 SBP2_WORKAROUND_FIX_CAPACITY,
405 },
Stefan Richtere9a1c522006-05-15 22:06:37 +0200406 /* iPod 4th generation */ {
407 .firmware_revision = 0x0a2700,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100408 .model = 0x000021,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200409 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
410 },
411 /* iPod mini */ {
412 .firmware_revision = 0x0a2700,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100413 .model = 0x000022,
Stefan Richter9e0de912008-11-22 12:38:24 +0100414 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
415 },
416 /* iPod mini */ {
417 .firmware_revision = 0x0a2700,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100418 .model = 0x000023,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200419 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
420 },
421 /* iPod Photo */ {
422 .firmware_revision = 0x0a2700,
Stefan Richterc1fbdd72009-01-24 19:41:46 +0100423 .model = 0x00007e,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200424 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426};
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/**************************************
429 * General utility functions
430 **************************************/
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432#ifndef __BIG_ENDIAN
433/*
434 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
435 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400436static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 u32 *temp = buffer;
439
440 for (length = (length >> 2); length--; )
441 temp[length] = be32_to_cpu(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444/*
445 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
446 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400447static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 u32 *temp = buffer;
450
451 for (length = (length >> 2); length--; )
452 temp[length] = cpu_to_be32(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454#else /* BIG_ENDIAN */
455/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200456#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
457#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#endif
459
Stefan Richterca0c7452006-11-02 21:16:08 +0100460static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Stefan Richtere8398bb2006-07-23 22:19:00 +0200462/*
463 * Waits for completion of an SBP-2 access request.
464 * Returns nonzero if timed out or prematurely interrupted.
465 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100466static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
Stefan Richtere8398bb2006-07-23 22:19:00 +0200467{
Stefan Richterca0c7452006-11-02 21:16:08 +0100468 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200469
Stefan Richterca0c7452006-11-02 21:16:08 +0100470 leftover = wait_event_interruptible_timeout(
Stefan Richter138c8af2006-11-02 21:16:08 +0100471 sbp2_access_wq, lu->access_complete, timeout);
472 lu->access_complete = 0;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200473 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Stefan Richter138c8af2006-11-02 21:16:08 +0100476static void sbp2_free_packet(void *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 hpsb_free_tlabel(packet);
479 hpsb_free_packet(packet);
480}
481
Stefan Richtere8ca5662006-11-02 21:16:08 +0100482/*
483 * This is much like hpsb_node_write(), except it ignores the response
484 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
486static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richter138c8af2006-11-02 21:16:08 +0100487 quadlet_t *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct hpsb_packet *packet;
490
Stefan Richter138c8af2006-11-02 21:16:08 +0100491 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
Stefan Richtera237f352005-11-07 06:31:39 -0500492 if (!packet)
493 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Stefan Richter138c8af2006-11-02 21:16:08 +0100495 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 hpsb_node_fill_packet(ne, packet);
Stefan Richtera237f352005-11-07 06:31:39 -0500497 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 sbp2_free_packet(packet);
499 return -EIO;
500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return 0;
502}
503
Stefan Richter138c8af2006-11-02 21:16:08 +0100504static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
505 quadlet_t *data, size_t len)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200506{
Stefan Richter138c8af2006-11-02 21:16:08 +0100507 /* There is a small window after a bus reset within which the node
508 * entry's generation is current but the reconnect wasn't completed. */
509 if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200510 return;
511
Stefan Richter138c8af2006-11-02 21:16:08 +0100512 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200513 data, len))
514 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
Stefan Richter138c8af2006-11-02 21:16:08 +0100515
516 /* Now accept new SCSI commands, unless a bus reset happended during
517 * hpsb_node_write. */
518 if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
519 scsi_unblock_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200520}
521
David Howellsc4028952006-11-22 14:57:56 +0000522static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200523{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100524 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200525 quadlet_t data[2];
526
Stefan Richterec9b7e12006-12-07 23:23:25 +0100527 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
528 data[1] = lu->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200529 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterec9b7e12006-12-07 23:23:25 +0100530 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200531}
532
David Howellsc4028952006-11-22 14:57:56 +0000533static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200534{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100535 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
536
537 sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200538}
539
Stefan Richter138c8af2006-11-02 21:16:08 +0100540static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Stefan Richter138c8af2006-11-02 21:16:08 +0100542 struct sbp2_command_info *cmd;
Stefan Richtercd8c79f2008-08-09 20:16:24 +0200543 struct device *dmadev = lu->hi->host->device.parent;
Stefan Richter3d269cb2007-02-04 20:57:38 +0100544 int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 for (i = 0; i < orbs; i++) {
Stefan Richter3d269cb2007-02-04 20:57:38 +0100547 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
548 if (!cmd)
Stefan Richtercd8c79f2008-08-09 20:16:24 +0200549 goto failed_alloc;
550
551 cmd->command_orb_dma =
552 dma_map_single(dmadev, &cmd->command_orb,
553 sizeof(struct sbp2_command_orb),
554 DMA_TO_DEVICE);
555 if (dma_mapping_error(dmadev, cmd->command_orb_dma))
556 goto failed_orb;
557
558 cmd->sge_dma =
559 dma_map_single(dmadev, &cmd->scatter_gather_element,
560 sizeof(cmd->scatter_gather_element),
561 DMA_TO_DEVICE);
562 if (dma_mapping_error(dmadev, cmd->sge_dma))
563 goto failed_sge;
564
Stefan Richter138c8af2006-11-02 21:16:08 +0100565 INIT_LIST_HEAD(&cmd->list);
566 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
Stefan Richtercd8c79f2008-08-09 20:16:24 +0200569
570failed_sge:
571 dma_unmap_single(dmadev, cmd->command_orb_dma,
572 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
573failed_orb:
574 kfree(cmd);
575failed_alloc:
576 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Stefan Richtera2ee3f92007-08-11 11:51:16 +0200579static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu,
580 struct hpsb_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct list_head *lh, *next;
Stefan Richter138c8af2006-11-02 21:16:08 +0100583 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 unsigned long flags;
585
Stefan Richter138c8af2006-11-02 21:16:08 +0100586 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
587 if (!list_empty(&lu->cmd_orb_completed))
588 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
589 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +0100590 dma_unmap_single(host->device.parent,
591 cmd->command_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100593 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100594 dma_unmap_single(host->device.parent, cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100595 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100596 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100597 kfree(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100599 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return;
601}
602
603/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100604 * Finds the sbp2_command for a given outstanding command ORB.
605 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
607static struct sbp2_command_info *sbp2util_find_command_for_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100608 struct sbp2_lu *lu, dma_addr_t orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Stefan Richter138c8af2006-11-02 21:16:08 +0100610 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 unsigned long flags;
612
Stefan Richter138c8af2006-11-02 21:16:08 +0100613 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
614 if (!list_empty(&lu->cmd_orb_inuse))
615 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
616 if (cmd->command_orb_dma == orb) {
617 spin_unlock_irqrestore(
618 &lu->cmd_orb_lock, flags);
619 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100621 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500622 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100626 * Finds the sbp2_command for a given outstanding SCpnt.
627 * Only looks at the in-use list.
Stefan Richter138c8af2006-11-02 21:16:08 +0100628 * Must be called with lu->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200630static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
Stefan Richter138c8af2006-11-02 21:16:08 +0100631 struct sbp2_lu *lu, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Stefan Richter138c8af2006-11-02 21:16:08 +0100633 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Stefan Richter138c8af2006-11-02 21:16:08 +0100635 if (!list_empty(&lu->cmd_orb_inuse))
636 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
637 if (cmd->Current_SCpnt == SCpnt)
638 return cmd;
Stefan Richtera237f352005-11-07 06:31:39 -0500639 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642static struct sbp2_command_info *sbp2util_allocate_command_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100643 struct sbp2_lu *lu,
644 struct scsi_cmnd *Current_SCpnt,
645 void (*Current_done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +0100648 struct sbp2_command_info *cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 unsigned long flags;
650
Stefan Richter138c8af2006-11-02 21:16:08 +0100651 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
652 if (!list_empty(&lu->cmd_orb_completed)) {
653 lh = lu->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 list_del(lh);
Stefan Richter138c8af2006-11-02 21:16:08 +0100655 cmd = list_entry(lh, struct sbp2_command_info, list);
656 cmd->Current_done = Current_done;
657 cmd->Current_SCpnt = Current_SCpnt;
658 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
659 } else
Harvey Harrisonb1ce1fd2008-03-05 18:24:54 -0800660 SBP2_ERR("%s: no orbs available", __func__);
Stefan Richter138c8af2006-11-02 21:16:08 +0100661 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
662 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Stefan Richter58272c12006-11-04 09:55:33 +0100665/*
666 * Unmaps the DMAs of a command and moves the command to the completed ORB list.
667 * Must be called with lu->cmd_orb_lock held.
668 */
669static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
670 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Stefan Richtered6ffd02008-08-14 09:28:14 +0200672 if (scsi_sg_count(cmd->Current_SCpnt))
673 dma_unmap_sg(lu->ud->ne->host->device.parent,
674 scsi_sglist(cmd->Current_SCpnt),
675 scsi_sg_count(cmd->Current_SCpnt),
676 cmd->Current_SCpnt->sc_data_direction);
Stefan Richtercd641f62006-11-02 21:16:08 +0100677 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Jody McIntyreabd559b2005-09-30 11:59:06 -0700680/*
Stefan Richter138c8af2006-11-02 21:16:08 +0100681 * Is lu valid? Is the 1394 node still present?
Jody McIntyreabd559b2005-09-30 11:59:06 -0700682 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100683static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700684{
Stefan Richter138c8af2006-11-02 21:16:08 +0100685 return lu && lu->ne && !lu->ne->in_limbo;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*********************************************
689 * IEEE-1394 core driver stack related section
690 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692static int sbp2_probe(struct device *dev)
693{
694 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100695 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ud = container_of(dev, struct unit_directory, device);
698
699 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
700 * instead. */
701 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
702 return -ENODEV;
703
Stefan Richter138c8af2006-11-02 21:16:08 +0100704 lu = sbp2_alloc_device(ud);
705 if (!lu)
Stefan Richtera237f352005-11-07 06:31:39 -0500706 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Stefan Richter138c8af2006-11-02 21:16:08 +0100708 sbp2_parse_unit_directory(lu, ud);
709 return sbp2_start_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712static int sbp2_remove(struct device *dev)
713{
714 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100715 struct sbp2_lu *lu;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700716 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 ud = container_of(dev, struct unit_directory, device);
Greg Kroah-Hartmanbab03052009-04-30 14:43:31 -0700719 lu = dev_get_drvdata(&ud->device);
Stefan Richter138c8af2006-11-02 21:16:08 +0100720 if (!lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700721 return 0;
722
Stefan Richter138c8af2006-11-02 21:16:08 +0100723 if (lu->shost) {
Stefan Richterbf637ec2006-01-31 00:13:06 -0500724 /* Get rid of enqueued commands if there is no chance to
725 * send them. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100726 if (!sbp2util_node_is_available(lu))
727 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100728 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500729 * highlevel drivers which would deadlock if blocked. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100730 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
731 scsi_unblock_requests(lu->shost);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500732 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100733 sdev = lu->sdev;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700734 if (sdev) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100735 lu->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700736 scsi_remove_device(sdev);
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Stefan Richter138c8af2006-11-02 21:16:08 +0100739 sbp2_logout_device(lu);
740 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 return 0;
743}
744
745static int sbp2_update(struct unit_directory *ud)
746{
Greg Kroah-Hartmanbab03052009-04-30 14:43:31 -0700747 struct sbp2_lu *lu = dev_get_drvdata(&ud->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Stefan Richtera3384062008-08-16 13:39:26 +0200749 if (sbp2_reconnect_device(lu) != 0) {
750 /*
751 * Reconnect failed. If another bus reset happened,
752 * let nodemgr proceed and call sbp2_update again later
753 * (or sbp2_remove if this node went away).
754 */
755 if (!hpsb_node_entry_valid(lu->ne))
756 return 0;
757 /*
758 * Or the target rejected the reconnect because we weren't
759 * fast enough. Try a regular login, but first log out
760 * just in case of any weirdness.
761 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100762 sbp2_logout_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Stefan Richtera3384062008-08-16 13:39:26 +0200764 if (sbp2_login_device(lu) != 0) {
765 if (!hpsb_node_entry_valid(lu->ne))
766 return 0;
767
768 /* Maybe another initiator won the login. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 SBP2_ERR("Failed to reconnect to sbp2 device!");
770 return -EBUSY;
771 }
772 }
773
Stefan Richter138c8af2006-11-02 21:16:08 +0100774 sbp2_set_busy_timeout(lu);
775 sbp2_agent_reset(lu, 1);
776 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Stefan Richtere8ca5662006-11-02 21:16:08 +0100778 /* Complete any pending commands with busy (so they get retried)
779 * and remove them from our queue. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100780 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Stefan Richter4fc383c2006-08-14 18:46:00 +0200782 /* Accept new commands unless there was another bus reset in the
783 * meantime. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100784 if (hpsb_node_entry_valid(lu->ne)) {
785 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
786 scsi_unblock_requests(lu->shost);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return 0;
789}
790
Stefan Richter138c8af2006-11-02 21:16:08 +0100791static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Stefan Richterca0c7452006-11-02 21:16:08 +0100793 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100794 struct Scsi_Host *shost = NULL;
795 struct sbp2_lu *lu = NULL;
Stefan Richter261b5f62007-08-11 11:52:08 +0200796 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Stefan Richter138c8af2006-11-02 21:16:08 +0100798 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
799 if (!lu) {
800 SBP2_ERR("failed to create lu");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto failed_alloc;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Stefan Richter138c8af2006-11-02 21:16:08 +0100804 lu->ne = ud->ne;
805 lu->ud = ud;
806 lu->speed_code = IEEE1394_SPEED_100;
807 lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
808 lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
809 INIT_LIST_HEAD(&lu->cmd_orb_inuse);
810 INIT_LIST_HEAD(&lu->cmd_orb_completed);
811 INIT_LIST_HEAD(&lu->lu_list);
812 spin_lock_init(&lu->cmd_orb_lock);
813 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
814 INIT_WORK(&lu->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Greg Kroah-Hartmanbab03052009-04-30 14:43:31 -0700816 dev_set_drvdata(&ud->device, lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
819 if (!hi) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100820 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
821 sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (!hi) {
823 SBP2_ERR("failed to allocate hostinfo");
824 goto failed_alloc;
825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 hi->host = ud->ne->host;
Stefan Richter138c8af2006-11-02 21:16:08 +0100827 INIT_LIST_HEAD(&hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
830 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500831 * enabled or not supported on host controller */
832 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
833 &sbp2_physdma_ops,
834 0x0ULL, 0xfffffffcULL)) {
835 SBP2_ERR("failed to register lower 4GB address range");
836 goto failed_alloc;
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838#endif
839 }
840
Stefan Richtered6ffd02008-08-14 09:28:14 +0200841 if (dma_get_max_seg_size(hi->host->device.parent) > SBP2_MAX_SEG_SIZE)
842 BUG_ON(dma_set_max_seg_size(hi->host->device.parent,
843 SBP2_MAX_SEG_SIZE));
844
Stefan Richter147830f2006-03-28 19:54:52 -0500845 /* Prevent unloading of the 1394 host */
846 if (!try_module_get(hi->host->driver->owner)) {
847 SBP2_ERR("failed to get a reference on 1394 host driver");
848 goto failed_alloc;
849 }
850
Stefan Richter138c8af2006-11-02 21:16:08 +0100851 lu->hi = hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Stefan Richter261b5f62007-08-11 11:52:08 +0200853 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +0100854 list_add_tail(&lu->lu_list, &hi->logical_units);
Stefan Richter261b5f62007-08-11 11:52:08 +0200855 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Stefan Richter35bdddb2006-01-31 00:13:33 -0500857 /* Register the status FIFO address range. We could use the same FIFO
858 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200859 * target in order to support multi-unit devices.
860 * The FIFO is located out of the local host controller's physical range
861 * but, if possible, within the posted write area. Status writes will
862 * then be performed as unified transactions. This slightly reduces
863 * bandwidth usage, and some Prolific based devices seem to require it.
864 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100865 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
Stefan Richter35bdddb2006-01-31 00:13:33 -0500866 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
867 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400868 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Stefan Richter138c8af2006-11-02 21:16:08 +0100869 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500870 SBP2_ERR("failed to allocate status FIFO address range");
871 goto failed_alloc;
872 }
873
Stefan Richter138c8af2006-11-02 21:16:08 +0100874 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
875 if (!shost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 SBP2_ERR("failed to register scsi host");
877 goto failed_alloc;
878 }
879
Stefan Richter138c8af2006-11-02 21:16:08 +0100880 shost->hostdata[0] = (unsigned long)lu;
Stefan Richterebbb16b2009-06-30 20:28:31 +0200881 shost->max_cmd_len = SBP2_MAX_CDB_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Stefan Richter138c8af2006-11-02 21:16:08 +0100883 if (!scsi_add_host(shost, &ud->device)) {
884 lu->shost = shost;
885 return lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
888 SBP2_ERR("failed to add scsi host");
Stefan Richter138c8af2006-11-02 21:16:08 +0100889 scsi_host_put(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891failed_alloc:
Stefan Richter138c8af2006-11-02 21:16:08 +0100892 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return NULL;
894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896static void sbp2_host_reset(struct hpsb_host *host)
897{
Stefan Richterca0c7452006-11-02 21:16:08 +0100898 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100899 struct sbp2_lu *lu;
Stefan Richter261b5f62007-08-11 11:52:08 +0200900 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200903 if (!hi)
904 return;
Stefan Richter261b5f62007-08-11 11:52:08 +0200905
906 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter2642b112008-11-29 14:55:47 +0100907
Stefan Richter138c8af2006-11-02 21:16:08 +0100908 list_for_each_entry(lu, &hi->logical_units, lu_list)
Stefan Richter2642b112008-11-29 14:55:47 +0100909 if (atomic_cmpxchg(&lu->state,
910 SBP2LU_STATE_RUNNING, SBP2LU_STATE_IN_RESET)
911 == SBP2LU_STATE_RUNNING)
Stefan Richter138c8af2006-11-02 21:16:08 +0100912 scsi_block_requests(lu->shost);
Stefan Richter2642b112008-11-29 14:55:47 +0100913
Stefan Richter261b5f62007-08-11 11:52:08 +0200914 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Stefan Richter138c8af2006-11-02 21:16:08 +0100917static int sbp2_start_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Stefan Richter138c8af2006-11-02 21:16:08 +0100919 struct sbp2_fwhost_info *hi = lu->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500920 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Stefan Richter97d552e2006-12-29 23:47:04 +0100922 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500923 sizeof(struct sbp2_login_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100924 &lu->login_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100925 if (!lu->login_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Stefan Richter97d552e2006-12-29 23:47:04 +0100928 lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500929 sizeof(struct sbp2_query_logins_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100930 &lu->query_logins_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100931 if (!lu->query_logins_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Stefan Richter97d552e2006-12-29 23:47:04 +0100934 lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500935 sizeof(struct sbp2_query_logins_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100936 &lu->query_logins_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100937 if (!lu->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Stefan Richter97d552e2006-12-29 23:47:04 +0100940 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500941 sizeof(struct sbp2_reconnect_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100942 &lu->reconnect_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100943 if (!lu->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Stefan Richter97d552e2006-12-29 23:47:04 +0100946 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500947 sizeof(struct sbp2_logout_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100948 &lu->logout_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100949 if (!lu->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Stefan Richter97d552e2006-12-29 23:47:04 +0100952 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500953 sizeof(struct sbp2_login_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100954 &lu->login_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100955 if (!lu->login_orb)
Stefan Richtereaceec72005-12-13 11:05:05 -0500956 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Stefan Richter3d269cb2007-02-04 20:57:38 +0100958 if (sbp2util_create_command_orb_pool(lu))
959 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Stefan Richtere8ca5662006-11-02 21:16:08 +0100961 /* Wait a second before trying to log in. Previously logged in
962 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200963 if (msleep_interruptible(1000)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100964 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return -EINTR;
966 }
Stefan Richtera237f352005-11-07 06:31:39 -0500967
Stefan Richter138c8af2006-11-02 21:16:08 +0100968 if (sbp2_login_device(lu)) {
969 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return -EBUSY;
971 }
972
Stefan Richter138c8af2006-11-02 21:16:08 +0100973 sbp2_set_busy_timeout(lu);
974 sbp2_agent_reset(lu, 1);
975 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Stefan Richterd94a9832008-02-03 23:07:44 +0100977 if (lu->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY)
978 ssleep(SBP2_INQUIRY_DELAY);
979
Stefan Richter138c8af2006-11-02 21:16:08 +0100980 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
James Bottomley146f7262005-09-10 12:44:09 -0500981 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 SBP2_ERR("scsi_add_device failed");
Stefan Richter138c8af2006-11-02 21:16:08 +0100983 sbp2_logout_device(lu);
984 sbp2_remove_device(lu);
James Bottomley146f7262005-09-10 12:44:09 -0500985 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
988 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500989
990alloc_fail:
Stefan Richter138c8af2006-11-02 21:16:08 +0100991 SBP2_ERR("Could not allocate memory for lu");
992 sbp2_remove_device(lu);
Stefan Richtereaceec72005-12-13 11:05:05 -0500993 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
Stefan Richter138c8af2006-11-02 21:16:08 +0100996static void sbp2_remove_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Stefan Richterca0c7452006-11-02 21:16:08 +0100998 struct sbp2_fwhost_info *hi;
Stefan Richter261b5f62007-08-11 11:52:08 +0200999 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Stefan Richter138c8af2006-11-02 21:16:08 +01001001 if (!lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return;
Stefan Richter138c8af2006-11-02 21:16:08 +01001003 hi = lu->hi;
Stefan Richtera2ee3f92007-08-11 11:51:16 +02001004 if (!hi)
1005 goto no_hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Stefan Richter138c8af2006-11-02 21:16:08 +01001007 if (lu->shost) {
1008 scsi_remove_host(lu->shost);
1009 scsi_host_put(lu->shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
Stefan Richter09ee67a2006-08-14 18:43:00 +02001011 flush_scheduled_work();
Stefan Richtera2ee3f92007-08-11 11:51:16 +02001012 sbp2util_remove_command_orb_pool(lu, hi->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Stefan Richter261b5f62007-08-11 11:52:08 +02001014 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +01001015 list_del(&lu->lu_list);
Stefan Richter261b5f62007-08-11 11:52:08 +02001016 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Stefan Richter138c8af2006-11-02 21:16:08 +01001018 if (lu->login_response)
Stefan Richter97d552e2006-12-29 23:47:04 +01001019 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 sizeof(struct sbp2_login_response),
Stefan Richter138c8af2006-11-02 21:16:08 +01001021 lu->login_response,
1022 lu->login_response_dma);
1023 if (lu->login_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001024 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 sizeof(struct sbp2_login_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001026 lu->login_orb,
1027 lu->login_orb_dma);
1028 if (lu->reconnect_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001029 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 sizeof(struct sbp2_reconnect_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001031 lu->reconnect_orb,
1032 lu->reconnect_orb_dma);
1033 if (lu->logout_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001034 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 sizeof(struct sbp2_logout_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001036 lu->logout_orb,
1037 lu->logout_orb_dma);
1038 if (lu->query_logins_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001039 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 sizeof(struct sbp2_query_logins_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001041 lu->query_logins_orb,
1042 lu->query_logins_orb_dma);
1043 if (lu->query_logins_response)
Stefan Richter97d552e2006-12-29 23:47:04 +01001044 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 sizeof(struct sbp2_query_logins_response),
Stefan Richter138c8af2006-11-02 21:16:08 +01001046 lu->query_logins_response,
1047 lu->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Stefan Richter138c8af2006-11-02 21:16:08 +01001049 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -05001050 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Stefan Richter138c8af2006-11-02 21:16:08 +01001051 lu->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -05001052
Greg Kroah-Hartmanbab03052009-04-30 14:43:31 -07001053 dev_set_drvdata(&lu->ud->device, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Stefan Richtera2ee3f92007-08-11 11:51:16 +02001055 module_put(hi->host->driver->owner);
1056no_hi:
Stefan Richter138c8af2006-11-02 21:16:08 +01001057 kfree(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1061/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001062 * Deal with write requests on adapters which do not support physical DMA or
1063 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 */
Stefan Richtera237f352005-11-07 06:31:39 -05001065static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1066 int destid, quadlet_t *data, u64 addr,
1067 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Stefan Richtera237f352005-11-07 06:31:39 -05001069 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -05001070 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
1073/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001074 * Deal with read requests on adapters which do not support physical DMA or
1075 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 */
Stefan Richtera237f352005-11-07 06:31:39 -05001077static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1078 quadlet_t *data, u64 addr, size_t length,
1079 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Stefan Richtera237f352005-11-07 06:31:39 -05001081 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -05001082 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084#endif
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086/**************************************
1087 * SBP-2 protocol related section
1088 **************************************/
1089
Stefan Richter138c8af2006-11-02 21:16:08 +01001090static int sbp2_query_logins(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Stefan Richter138c8af2006-11-02 21:16:08 +01001092 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 quadlet_t data[2];
1094 int max_logins;
1095 int active_logins;
1096
Stefan Richter138c8af2006-11-02 21:16:08 +01001097 lu->query_logins_orb->reserved1 = 0x0;
1098 lu->query_logins_orb->reserved2 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Stefan Richter138c8af2006-11-02 21:16:08 +01001100 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1101 lu->query_logins_orb->query_response_hi =
1102 ORB_SET_NODE_ID(hi->host->node_id);
1103 lu->query_logins_orb->lun_misc =
1104 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1105 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1106 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Stefan Richter138c8af2006-11-02 21:16:08 +01001108 lu->query_logins_orb->reserved_resp_length =
1109 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1110 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Stefan Richter138c8af2006-11-02 21:16:08 +01001112 lu->query_logins_orb->status_fifo_hi =
1113 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1114 lu->query_logins_orb->status_fifo_lo =
1115 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Stefan Richter138c8af2006-11-02 21:16:08 +01001117 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1118 sizeof(struct sbp2_query_logins_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Stefan Richter138c8af2006-11-02 21:16:08 +01001120 memset(lu->query_logins_response, 0,
1121 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001124 data[1] = lu->query_logins_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 sbp2util_cpu_to_be32_buffer(data, 8);
1126
Stefan Richter138c8af2006-11-02 21:16:08 +01001127 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Stefan Richter138c8af2006-11-02 21:16:08 +01001129 if (sbp2util_access_timeout(lu, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001131 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
1133
Stefan Richter138c8af2006-11-02 21:16:08 +01001134 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001136 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138
Stefan Richter138c8af2006-11-02 21:16:08 +01001139 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001140 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001141 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143
Stefan Richter138c8af2006-11-02 21:16:08 +01001144 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1145 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Stefan Richter138c8af2006-11-02 21:16:08 +01001147 max_logins = RESPONSE_GET_MAX_LOGINS(
1148 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001149 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Stefan Richter138c8af2006-11-02 21:16:08 +01001151 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1152 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001153 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001156 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158
1159 return 0;
1160}
1161
Stefan Richter138c8af2006-11-02 21:16:08 +01001162static int sbp2_login_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Stefan Richter138c8af2006-11-02 21:16:08 +01001164 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 quadlet_t data[2];
1166
Stefan Richter138c8af2006-11-02 21:16:08 +01001167 if (!lu->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001168 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Stefan Richter138c8af2006-11-02 21:16:08 +01001170 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001171 SBP2_INFO("Device does not support any more concurrent logins");
1172 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 }
1174
Stefan Richtere8ca5662006-11-02 21:16:08 +01001175 /* assume no password */
Stefan Richter138c8af2006-11-02 21:16:08 +01001176 lu->login_orb->password_hi = 0;
1177 lu->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Stefan Richter138c8af2006-11-02 21:16:08 +01001179 lu->login_orb->login_response_lo = lu->login_response_dma;
1180 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1181 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001182
1183 /* one second reconnect time */
Stefan Richter138c8af2006-11-02 21:16:08 +01001184 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1185 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1186 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1187 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Stefan Richter138c8af2006-11-02 21:16:08 +01001189 lu->login_orb->passwd_resp_lengths =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Stefan Richter138c8af2006-11-02 21:16:08 +01001192 lu->login_orb->status_fifo_hi =
1193 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1194 lu->login_orb->status_fifo_lo =
1195 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Stefan Richter138c8af2006-11-02 21:16:08 +01001197 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1198 sizeof(struct sbp2_login_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Stefan Richter138c8af2006-11-02 21:16:08 +01001200 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001203 data[1] = lu->login_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 sbp2util_cpu_to_be32_buffer(data, 8);
1205
Stefan Richter138c8af2006-11-02 21:16:08 +01001206 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Stefan Richtere8ca5662006-11-02 21:16:08 +01001208 /* wait up to 20 seconds for login status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001209 if (sbp2util_access_timeout(lu, 20*HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001210 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001211 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213
Stefan Richtere8ca5662006-11-02 21:16:08 +01001214 /* make sure that the returned status matches the login ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001215 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001216 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001217 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219
Stefan Richter138c8af2006-11-02 21:16:08 +01001220 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001221 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001222 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
Stefan Richter138c8af2006-11-02 21:16:08 +01001225 sbp2util_cpu_to_be32_buffer(lu->login_response,
1226 sizeof(struct sbp2_login_response));
1227 lu->command_block_agent_addr =
1228 ((u64)lu->login_response->command_block_agent_hi) << 32;
1229 lu->command_block_agent_addr |=
1230 ((u64)lu->login_response->command_block_agent_lo);
1231 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Stefan Richter138c8af2006-11-02 21:16:08 +01001237static int sbp2_logout_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Stefan Richter138c8af2006-11-02 21:16:08 +01001239 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 quadlet_t data[2];
1241 int error;
1242
Stefan Richter138c8af2006-11-02 21:16:08 +01001243 lu->logout_orb->reserved1 = 0x0;
1244 lu->logout_orb->reserved2 = 0x0;
1245 lu->logout_orb->reserved3 = 0x0;
1246 lu->logout_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Stefan Richter138c8af2006-11-02 21:16:08 +01001248 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1249 lu->logout_orb->login_ID_misc |=
1250 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1251 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Stefan Richter138c8af2006-11-02 21:16:08 +01001253 lu->logout_orb->reserved5 = 0x0;
1254 lu->logout_orb->status_fifo_hi =
1255 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1256 lu->logout_orb->status_fifo_lo =
1257 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Stefan Richter138c8af2006-11-02 21:16:08 +01001259 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1260 sizeof(struct sbp2_logout_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001263 data[1] = lu->logout_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 sbp2util_cpu_to_be32_buffer(data, 8);
1265
Stefan Richter138c8af2006-11-02 21:16:08 +01001266 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (error)
1268 return error;
1269
Stefan Richtere8ca5662006-11-02 21:16:08 +01001270 /* wait up to 1 second for the device to complete logout */
Stefan Richter138c8af2006-11-02 21:16:08 +01001271 if (sbp2util_access_timeout(lu, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return -EIO;
1273
1274 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Stefan Richter138c8af2006-11-02 21:16:08 +01001278static int sbp2_reconnect_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Stefan Richter138c8af2006-11-02 21:16:08 +01001280 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 quadlet_t data[2];
1282 int error;
1283
Stefan Richter138c8af2006-11-02 21:16:08 +01001284 lu->reconnect_orb->reserved1 = 0x0;
1285 lu->reconnect_orb->reserved2 = 0x0;
1286 lu->reconnect_orb->reserved3 = 0x0;
1287 lu->reconnect_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Stefan Richter138c8af2006-11-02 21:16:08 +01001289 lu->reconnect_orb->login_ID_misc =
1290 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1291 lu->reconnect_orb->login_ID_misc |=
1292 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1293 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Stefan Richter138c8af2006-11-02 21:16:08 +01001295 lu->reconnect_orb->reserved5 = 0x0;
1296 lu->reconnect_orb->status_fifo_hi =
1297 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1298 lu->reconnect_orb->status_fifo_lo =
1299 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Stefan Richter138c8af2006-11-02 21:16:08 +01001301 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1302 sizeof(struct sbp2_reconnect_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001305 data[1] = lu->reconnect_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 sbp2util_cpu_to_be32_buffer(data, 8);
1307
Stefan Richter138c8af2006-11-02 21:16:08 +01001308 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (error)
1310 return error;
1311
Stefan Richtere8ca5662006-11-02 21:16:08 +01001312 /* wait up to 1 second for reconnect status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001313 if (sbp2util_access_timeout(lu, HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001314 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001315 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317
Stefan Richtere8ca5662006-11-02 21:16:08 +01001318 /* make sure that the returned status matches the reconnect ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001319 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001320 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001321 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
1323
Stefan Richter138c8af2006-11-02 21:16:08 +01001324 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001325 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001326 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
Stefan Richter35644092006-11-02 21:16:08 +01001329 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001334 * Set the target node's Single Phase Retry limit. Affects the target's retry
1335 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001337static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 quadlet_t data;
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001342 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
Harvey Harrisonb1ce1fd2008-03-05 18:24:54 -08001343 SBP2_ERR("%s error", __func__);
Stefan Richtera237f352005-11-07 06:31:39 -05001344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
Stefan Richter138c8af2006-11-02 21:16:08 +01001347static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 struct unit_directory *ud)
1349{
1350 struct csr1212_keyval *kv;
1351 struct csr1212_dentry *dentry;
1352 u64 management_agent_addr;
Stefan Richterc1fbdd72009-01-24 19:41:46 +01001353 u32 unit_characteristics, firmware_revision, model;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001354 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 int i;
1356
Stefan Richter9117c6d2006-11-02 21:16:08 +01001357 management_agent_addr = 0;
1358 unit_characteristics = 0;
Stefan Richterc1fbdd72009-01-24 19:41:46 +01001359 firmware_revision = SBP2_ROM_VALUE_MISSING;
1360 model = ud->flags & UNIT_DIRECTORY_MODEL_ID ?
1361 ud->model_id : SBP2_ROM_VALUE_MISSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1364 switch (kv->key.id) {
1365 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001366 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001368 CSR1212_REGISTER_SPACE_BASE +
1369 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Stefan Richteredf1fb22006-11-02 21:16:08 +01001371 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richter138c8af2006-11-02 21:16:08 +01001372 lu->lun = ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 break;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001376 /* FIXME: This is ignored so far.
1377 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 break;
1380
1381 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 break;
1384
1385 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001386 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1387 * Its "ordered" bit has consequences for command ORB
1388 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 break;
1390 }
1391 }
1392
Stefan Richter24d3bf82006-05-15 22:04:59 +02001393 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Stefan Richter679c0cd2006-05-15 22:08:09 +02001395 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1396 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
Stefan Richter4618fd32006-12-30 15:37:09 +01001397 if (sbp2_workarounds_table[i].firmware_revision !=
1398 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001399 sbp2_workarounds_table[i].firmware_revision !=
1400 (firmware_revision & 0xffff00))
1401 continue;
Stefan Richterc1fbdd72009-01-24 19:41:46 +01001402 if (sbp2_workarounds_table[i].model !=
Stefan Richter4618fd32006-12-30 15:37:09 +01001403 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richterc1fbdd72009-01-24 19:41:46 +01001404 sbp2_workarounds_table[i].model != model)
Stefan Richter679c0cd2006-05-15 22:08:09 +02001405 continue;
1406 workarounds |= sbp2_workarounds_table[i].workarounds;
1407 break;
1408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Stefan Richter24d3bf82006-05-15 22:04:59 +02001410 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001411 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1412 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1413 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001414 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere90874f2009-01-24 19:41:46 +01001415 workarounds, firmware_revision, ud->vendor_id,
Stefan Richterc1fbdd72009-01-24 19:41:46 +01001416 model);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001417
1418 /* We would need one SCSI host template for each target to adjust
1419 * max_sectors on the fly, therefore warn only. */
1420 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001421 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001422 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001423 "max transfer size. WARNING: Current max_sectors "
1424 "setting is larger than 128KB (%d sectors)",
1425 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001426 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 /* If this is a logical unit directory entry, process the parent
1429 * to get the values. */
1430 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001431 struct unit_directory *parent_ud = container_of(
1432 ud->device.parent, struct unit_directory, device);
1433 sbp2_parse_unit_directory(lu, parent_ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 } else {
Stefan Richter138c8af2006-11-02 21:16:08 +01001435 lu->management_agent_addr = management_agent_addr;
1436 lu->workarounds = workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richter138c8af2006-11-02 21:16:08 +01001438 lu->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440}
1441
Ben Collinsfd23ade2006-06-12 18:14:14 -04001442#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444/*
1445 * This function is called in order to determine the max speed and packet
1446 * size we can use in our ORBs. Note, that we (the driver and host) only
1447 * initiate the transaction. The SBP-2 device actually transfers the data
1448 * (by reading from the DMA area we tell it). This means that the SBP-2
1449 * device decides the actual maximum data it can transfer. We just tell it
1450 * the speed that it needs to use, and the max_rec the host supports, and
1451 * it takes care of the rest.
1452 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001453static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Stefan Richter138c8af2006-11-02 21:16:08 +01001455 struct sbp2_fwhost_info *hi = lu->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001456 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Stefan Richter138c8af2006-11-02 21:16:08 +01001458 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Stefan Richter138c8af2006-11-02 21:16:08 +01001460 if (lu->speed_code > sbp2_max_speed) {
1461 lu->speed_code = sbp2_max_speed;
Stefan Richterca0c7452006-11-02 21:16:08 +01001462 SBP2_INFO("Reducing speed to %s",
1463 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465
1466 /* Payload size is the lesser of what our speed supports and what
1467 * our host supports. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001468 payload = min(sbp2_speedto_max_payload[lu->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001469 (u8) (hi->host->csr.max_rec - 1));
1470
1471 /* If physical DMA is off, work around limitation in ohci1394:
1472 * packet size must not exceed PAGE_SIZE */
Stefan Richter138c8af2006-11-02 21:16:08 +01001473 if (lu->ne->host->low_addr_space < (1ULL << 32))
Ben Collinsfd23ade2006-06-12 18:14:14 -04001474 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1475 payload)
1476 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Stefan Richter35644092006-11-02 21:16:08 +01001478 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
Stefan Richter138c8af2006-11-02 21:16:08 +01001479 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1480 hpsb_speedto_str[lu->speed_code],
Stefan Richter35644092006-11-02 21:16:08 +01001481 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Stefan Richter138c8af2006-11-02 21:16:08 +01001483 lu->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
Stefan Richter138c8af2006-11-02 21:16:08 +01001487static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 quadlet_t data;
1490 u64 addr;
1491 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001492 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Stefan Richterec9b7e12006-12-07 23:23:25 +01001494 /* flush lu->protocol_work */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001495 if (wait)
1496 flush_scheduled_work();
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richter138c8af2006-11-02 21:16:08 +01001499 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 if (wait)
Stefan Richter138c8af2006-11-02 21:16:08 +01001502 retval = hpsb_node_write(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001504 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 if (retval < 0) {
1507 SBP2_ERR("hpsb_node_write failed.\n");
1508 return -EIO;
1509 }
1510
Stefan Richtere8ca5662006-11-02 21:16:08 +01001511 /* make sure that the ORB_POINTER is written on next command */
Stefan Richter138c8af2006-11-02 21:16:08 +01001512 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1513 lu->last_orb = NULL;
1514 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Stefan Richtera237f352005-11-07 06:31:39 -05001516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001519static int sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1520 struct sbp2_fwhost_info *hi,
1521 struct sbp2_command_info *cmd,
Stefan Richtered6ffd02008-08-14 09:28:14 +02001522 unsigned int sg_count,
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001523 struct scatterlist *sg,
1524 u32 orb_direction,
1525 enum dma_data_direction dma_dir)
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001526{
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001527 struct device *dmadev = hi->host->device.parent;
Stefan Richtered6ffd02008-08-14 09:28:14 +02001528 struct sbp2_unrestricted_page_table *pt;
1529 int i, n;
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001530
Stefan Richtered6ffd02008-08-14 09:28:14 +02001531 n = dma_map_sg(dmadev, sg, sg_count, dma_dir);
1532 if (n == 0)
1533 return -ENOMEM;
1534
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001535 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1536 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1537
Stefan Richtere8ca5662006-11-02 21:16:08 +01001538 /* special case if only one element (and less than 64KB in size) */
Stefan Richtered6ffd02008-08-14 09:28:14 +02001539 if (n == 1) {
1540 orb->misc |= ORB_SET_DATA_SIZE(sg_dma_len(sg));
1541 orb->data_descriptor_lo = sg_dma_address(sg);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001542 } else {
Stefan Richtered6ffd02008-08-14 09:28:14 +02001543 pt = &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001544
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001545 dma_sync_single_for_cpu(dmadev, cmd->sge_dma,
Stefan Richter0a77b172008-08-09 20:13:00 +02001546 sizeof(cmd->scatter_gather_element),
1547 DMA_TO_DEVICE);
1548
Stefan Richtered6ffd02008-08-14 09:28:14 +02001549 for_each_sg(sg, sg, n, i) {
1550 pt[i].high = cpu_to_be32(sg_dma_len(sg) << 16);
1551 pt[i].low = cpu_to_be32(sg_dma_address(sg));
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001552 }
1553
Stefan Richtered6ffd02008-08-14 09:28:14 +02001554 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1) |
1555 ORB_SET_DATA_SIZE(n);
1556 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richter0a77b172008-08-09 20:13:00 +02001557
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001558 dma_sync_single_for_device(dmadev, cmd->sge_dma,
Stefan Richter0a77b172008-08-09 20:13:00 +02001559 sizeof(cmd->scatter_gather_element),
1560 DMA_TO_DEVICE);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001561 }
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001562 return 0;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001563}
1564
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001565static int sbp2_create_command_orb(struct sbp2_lu *lu,
1566 struct sbp2_command_info *cmd,
1567 struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Stefan Richter0a77b172008-08-09 20:13:00 +02001569 struct device *dmadev = lu->hi->host->device.parent;
Stefan Richter138c8af2006-11-02 21:16:08 +01001570 struct sbp2_command_orb *orb = &cmd->command_orb;
Stefan Richter93c596f2008-05-04 16:54:14 +02001571 unsigned int scsi_request_bufflen = scsi_bufflen(SCpnt);
1572 enum dma_data_direction dma_dir = SCpnt->sc_data_direction;
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001573 u32 orb_direction;
1574 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Stefan Richter0a77b172008-08-09 20:13:00 +02001576 dma_sync_single_for_cpu(dmadev, cmd->command_orb_dma,
1577 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001579 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 *
1581 * NOTE: We're doing unrestricted page tables (s/g), as this is
1582 * best performance (at least with the devices I have). This means
1583 * that data_size becomes the number of s/g elements, and
1584 * page_size should be zero (for unrestricted).
1585 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001586 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1587 orb->next_ORB_lo = 0x0;
1588 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1589 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1590 orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Stefan Richter43863eb2005-12-12 23:03:24 -05001592 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001593 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001594 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001595 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001596 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001597 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001598 else {
Stefan Richter35644092006-11-02 21:16:08 +01001599 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001600 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602
Stefan Richtere8ca5662006-11-02 21:16:08 +01001603 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001605 orb->data_descriptor_hi = 0x0;
1606 orb->data_descriptor_lo = 0x0;
1607 orb->misc |= ORB_SET_DIRECTION(1);
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001608 ret = 0;
1609 } else {
1610 ret = sbp2_prep_command_orb_sg(orb, lu->hi, cmd,
1611 scsi_sg_count(SCpnt),
1612 scsi_sglist(SCpnt),
1613 orb_direction, dma_dir);
1614 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001615 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Stefan Richter93c596f2008-05-04 16:54:14 +02001617 memset(orb->cdb, 0, sizeof(orb->cdb));
1618 memcpy(orb->cdb, SCpnt->cmnd, SCpnt->cmd_len);
Stefan Richter0a77b172008-08-09 20:13:00 +02001619
1620 dma_sync_single_for_device(dmadev, cmd->command_orb_dma,
1621 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001622 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
Stefan Richter138c8af2006-11-02 21:16:08 +01001625static void sbp2_link_orb_command(struct sbp2_lu *lu,
1626 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Stefan Richter138c8af2006-11-02 21:16:08 +01001628 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtercc078182006-07-23 22:12:00 +02001629 struct sbp2_command_orb *last_orb;
1630 dma_addr_t last_orb_dma;
Stefan Richter138c8af2006-11-02 21:16:08 +01001631 u64 addr = lu->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001632 quadlet_t data[2];
1633 size_t length;
1634 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Stefan Richtere8ca5662006-11-02 21:16:08 +01001636 /* check to see if there are any previous orbs to use */
Stefan Richter138c8af2006-11-02 21:16:08 +01001637 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1638 last_orb = lu->last_orb;
1639 last_orb_dma = lu->last_orb_dma;
Stefan Richtercc078182006-07-23 22:12:00 +02001640 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001642 * last_orb == NULL means: We know that the target's fetch agent
1643 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 */
Stefan Richtercc078182006-07-23 22:12:00 +02001645 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001647 data[1] = cmd->command_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001649 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001652 * last_orb != NULL means: We know that the target's fetch agent
1653 * is (very probably) not dead or in reset state right now.
1654 * We have an ORB already sent that we can append a new one to.
1655 * The target's fetch agent may or may not have read this
1656 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 */
Stefan Richter97d552e2006-12-29 23:47:04 +01001658 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001659 sizeof(struct sbp2_command_orb),
1660 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001661 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
Stefan Richtercc078182006-07-23 22:12:00 +02001662 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001664 last_orb->next_ORB_hi = 0;
Stefan Richter97d552e2006-12-29 23:47:04 +01001665 dma_sync_single_for_device(hi->host->device.parent,
1666 last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001667 sizeof(struct sbp2_command_orb),
1668 DMA_TO_DEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001669 addr += SBP2_DOORBELL_OFFSET;
1670 data[0] = 0;
1671 length = 4;
1672 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001673 lu->last_orb = &cmd->command_orb;
1674 lu->last_orb_dma = cmd->command_orb_dma;
1675 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Stefan Richter138c8af2006-11-02 21:16:08 +01001677 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
Stefan Richter09ee67a2006-08-14 18:43:00 +02001678 /*
1679 * sbp2util_node_write_no_wait failed. We certainly ran out
1680 * of transaction labels, perhaps just because there were no
1681 * context switches which gave khpsbpkt a chance to collect
1682 * free tlabels. Try again in non-atomic context. If necessary,
1683 * the workqueue job will sleep to guaranteedly get a tlabel.
1684 * We do not accept new commands until the job is over.
1685 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001686 scsi_block_requests(lu->shost);
1687 PREPARE_WORK(&lu->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001688 last_orb ? sbp2util_write_doorbell:
Stefan Richterec9b7e12006-12-07 23:23:25 +01001689 sbp2util_write_orb_pointer);
Stefan Richter138c8af2006-11-02 21:16:08 +01001690 schedule_work(&lu->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
Stefan Richter138c8af2006-11-02 21:16:08 +01001694static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 void (*done)(struct scsi_cmnd *))
1696{
Stefan Richter138c8af2006-11-02 21:16:08 +01001697 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Stefan Richter138c8af2006-11-02 21:16:08 +01001699 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1700 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -05001701 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001703 if (sbp2_create_command_orb(lu, cmd, SCpnt))
1704 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001706 sbp2_link_orb_command(lu, cmd);
Stefan Richtera237f352005-11-07 06:31:39 -05001707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 * Translates SBP-2 status into SCSI sense data for check conditions
1712 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001713static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1714 unchar *sense_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001716 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 sense_data[0] = 0x70;
1718 sense_data[1] = 0x0;
1719 sense_data[2] = sbp2_status[9];
1720 sense_data[3] = sbp2_status[12];
1721 sense_data[4] = sbp2_status[13];
1722 sense_data[5] = sbp2_status[14];
1723 sense_data[6] = sbp2_status[15];
1724 sense_data[7] = 10;
1725 sense_data[8] = sbp2_status[16];
1726 sense_data[9] = sbp2_status[17];
1727 sense_data[10] = sbp2_status[18];
1728 sense_data[11] = sbp2_status[19];
1729 sense_data[12] = sbp2_status[10];
1730 sense_data[13] = sbp2_status[11];
1731 sense_data[14] = sbp2_status[20];
1732 sense_data[15] = sbp2_status[21];
1733
Stefan Richtere8ca5662006-11-02 21:16:08 +01001734 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
Stefan Richter3e98eab42006-07-23 22:16:00 +02001737static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1738 int destid, quadlet_t *data, u64 addr,
1739 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Stefan Richterca0c7452006-11-02 21:16:08 +01001741 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001742 struct sbp2_lu *lu = NULL, *lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001744 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
Stefan Richter138c8af2006-11-02 21:16:08 +01001746 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001747 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Stefan Richter60657722006-07-23 22:18:00 +02001749 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1750 SBP2_ERR("Wrong size of status block");
1751 return RCODE_ADDRESS_ERROR;
1752 }
1753 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001755 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001758 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001760 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001762
1763 /* Find the unit which wrote the status. */
Stefan Richter261b5f62007-08-11 11:52:08 +02001764 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +01001765 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1766 if (lu_tmp->ne->nodeid == nodeid &&
1767 lu_tmp->status_fifo_addr == addr) {
1768 lu = lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 break;
1770 }
1771 }
Stefan Richter261b5f62007-08-11 11:52:08 +02001772 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1773
Stefan Richter138c8af2006-11-02 21:16:08 +01001774 if (unlikely(!lu)) {
1775 SBP2_ERR("lu is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001776 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778
Stefan Richter138c8af2006-11-02 21:16:08 +01001779 /* Put response into lu status fifo buffer. The first two bytes
Stefan Richter3e98eab42006-07-23 22:16:00 +02001780 * come in big endian bit order. Often the target writes only a
1781 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001782 * is implied to be zeros. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001783 sb = &lu->status_block;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001784 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1785 memcpy(sb, data, length);
1786 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Stefan Richtere8ca5662006-11-02 21:16:08 +01001788 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001789 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
Stefan Richter138c8af2006-11-02 21:16:08 +01001790 cmd = NULL;
Stefan Richter60657722006-07-23 22:18:00 +02001791 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001792 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1793 if (cmd) {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001794 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001795 /*
1796 * FIXME: If the src field in the status is 1, the ORB DMA must
1797 * not be reused until status for a subsequent ORB is received.
1798 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001799 SCpnt = cmd->Current_SCpnt;
1800 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1801 sbp2util_mark_command_completed(lu, cmd);
1802 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001805 u32 h = sb->ORB_offset_hi_misc;
1806 u32 r = STATUS_GET_RESP(h);
1807
1808 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001809 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001810 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001811 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001812 r == RESP_STATUS_TRANSPORT_FAILURE ?
1813 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001814 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001815 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001816
Stefan Richteredf1fb22006-11-02 21:16:08 +01001817 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab42006-07-23 22:16:00 +02001818 scsi_status = sbp2_status_to_sense_data(
1819 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001820
Stefan Richteredf1fb22006-11-02 21:16:08 +01001821 if (STATUS_TEST_DEAD(h))
Stefan Richter138c8af2006-11-02 21:16:08 +01001822 sbp2_agent_reset(lu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824
Stefan Richtere8ca5662006-11-02 21:16:08 +01001825 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001826 * are none, we know that the fetch agent left the active state
1827 * _and_ that we did not reactivate it yet. Therefore clear
1828 * last_orb so that next time we write directly to the
1829 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001830 * to refetch the next_ORB. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001831 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1832 if (list_empty(&lu->cmd_orb_inuse))
1833 lu->last_orb = NULL;
1834 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001837 /* It's probably status after a management request. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001838 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1839 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1840 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1841 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1842 lu->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001843 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
1846
Stefan Richteredf1fb22006-11-02 21:16:08 +01001847 if (SCpnt)
Stefan Richter138c8af2006-11-02 21:16:08 +01001848 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1849 cmd->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001850 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853/**************************************
1854 * SCSI interface related section
1855 **************************************/
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1858 void (*done)(struct scsi_cmnd *))
1859{
Stefan Richter138c8af2006-11-02 21:16:08 +01001860 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001861 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001862 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Stefan Richter138c8af2006-11-02 21:16:08 +01001864 if (unlikely(!sbp2util_node_is_available(lu)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001865 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Stefan Richter138c8af2006-11-02 21:16:08 +01001867 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Stefan Richter5796aa72006-11-02 21:16:08 +01001869 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001870 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001871 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873
Stefan Richtere8ca5662006-11-02 21:16:08 +01001874 /* Multiple units are currently represented to the SCSI core as separate
1875 * targets, not as one target with multiple LUs. Therefore return
1876 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001877 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001878 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Stefan Richter138c8af2006-11-02 21:16:08 +01001880 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001882 result = DID_BUS_BUSY << 16;
1883 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
Stefan Richtere8ca5662006-11-02 21:16:08 +01001886 /* Bidirectional commands are not yet implemented,
1887 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001888 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001889 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1890 result = DID_ERROR << 16;
1891 goto done;
1892 }
1893
Stefan Richter138c8af2006-11-02 21:16:08 +01001894 if (sbp2_send_command(lu, SCpnt, done)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 SBP2_ERR("Error sending SCSI command");
Stefan Richter138c8af2006-11-02 21:16:08 +01001896 sbp2scsi_complete_command(lu,
1897 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 SCpnt, done);
1899 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001900 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Jody McIntyreabd559b2005-09-30 11:59:06 -07001902done:
1903 SCpnt->result = result;
1904 done(SCpnt);
1905 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
Stefan Richter138c8af2006-11-02 21:16:08 +01001908static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +01001911 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001912 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Stefan Richter138c8af2006-11-02 21:16:08 +01001914 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1915 while (!list_empty(&lu->cmd_orb_inuse)) {
1916 lh = lu->cmd_orb_inuse.next;
1917 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter138c8af2006-11-02 21:16:08 +01001918 sbp2util_mark_command_completed(lu, cmd);
1919 if (cmd->Current_SCpnt) {
1920 cmd->Current_SCpnt->result = status << 16;
1921 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001924 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 return;
1927}
1928
1929/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001930 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001932static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1933 struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 void (*done)(struct scsi_cmnd *))
1935{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 if (!SCpnt) {
1937 SBP2_ERR("SCpnt is NULL");
1938 return;
1939 }
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001942 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001943 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001944 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Stefan Richtera237f352005-11-07 06:31:39 -05001946 case SBP2_SCSI_STATUS_BUSY:
1947 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1948 SCpnt->result = DID_BUS_BUSY << 16;
1949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Stefan Richtera237f352005-11-07 06:31:39 -05001951 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001952 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001953 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Stefan Richtera237f352005-11-07 06:31:39 -05001955 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1956 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1957 SCpnt->result = DID_NO_CONNECT << 16;
1958 scsi_print_command(SCpnt);
1959 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Stefan Richtera237f352005-11-07 06:31:39 -05001961 case SBP2_SCSI_STATUS_CONDITION_MET:
1962 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1963 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1964 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1965 SCpnt->result = DID_ERROR << 16;
1966 scsi_print_command(SCpnt);
1967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Stefan Richtera237f352005-11-07 06:31:39 -05001969 default:
1970 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1971 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973
Stefan Richtere8ca5662006-11-02 21:16:08 +01001974 /* If a bus reset is in progress and there was an error, complete
1975 * the command as busy so that it will get retried. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001976 if (!hpsb_node_entry_valid(lu->ne)
Stefan Richtera237f352005-11-07 06:31:39 -05001977 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 SBP2_ERR("Completing command with busy (bus reset)");
1979 SCpnt->result = DID_BUS_BUSY << 16;
1980 }
1981
Stefan Richtere8ca5662006-11-02 21:16:08 +01001982 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05001983 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
Jody McIntyreabd559b2005-09-30 11:59:06 -07001986static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1987{
Stefan Richter138c8af2006-11-02 21:16:08 +01001988 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richtera80614d2006-02-14 22:04:19 -05001989
Stefan Richteref774c12008-02-17 14:57:10 +01001990 if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0)
1991 return -ENODEV;
1992
Stefan Richter138c8af2006-11-02 21:16:08 +01001993 lu->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02001994 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05001995
Stefan Richtera4b47d62008-01-27 22:32:22 +01001996 /* SBP-2 requires quadlet alignment of the data buffers. */
1997 blk_queue_update_dma_alignment(sdev->request_queue, 4 - 1);
James Bottomley465ff312008-01-01 10:00:10 -06001998
Stefan Richter138c8af2006-11-02 21:16:08 +01001999 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002000 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002001 return 0;
2002}
2003
Jody McIntyreabd559b2005-09-30 11:59:06 -07002004static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005{
Stefan Richter138c8af2006-11-02 21:16:08 +01002006 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richter24d3bf82006-05-15 22:04:59 +02002007
Ben Collins365c7862005-11-07 06:31:24 -05002008 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002009
Stefan Richter82f06e82008-05-11 00:37:14 +02002010 if (sbp2_exclusive_login)
2011 sdev->manage_start_stop = 1;
Stefan Richter1a74bc62007-01-10 20:17:15 +01002012 if (sdev->type == TYPE_ROM)
2013 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002014 if (sdev->type == TYPE_DISK &&
Stefan Richter138c8af2006-11-02 21:16:08 +01002015 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richter24d3bf82006-05-15 22:04:59 +02002016 sdev->skip_ms_page_8 = 1;
Stefan Richter138c8af2006-11-02 21:16:08 +01002017 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richtere9a1c522006-05-15 22:06:37 +02002018 sdev->fix_capacity = 1;
Stefan Richter37191222008-05-11 00:35:55 +02002019 if (lu->workarounds & SBP2_WORKAROUND_POWER_CONDITION)
2020 sdev->start_stop_pwr_cond = 1;
Stefan Richter4e6343a2007-12-16 17:31:26 +01002021 if (lu->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002022 blk_queue_max_hw_sectors(sdev->request_queue, 128 * 1024 / 512);
Stefan Richtered6ffd02008-08-14 09:28:14 +02002023
2024 blk_queue_max_segment_size(sdev->request_queue, SBP2_MAX_SEG_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return 0;
2026}
2027
Jody McIntyreabd559b2005-09-30 11:59:06 -07002028static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2029{
Stefan Richter138c8af2006-11-02 21:16:08 +01002030 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002031 return;
2032}
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002035 * Called by scsi stack when something has really gone wrong.
2036 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 */
2038static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2039{
Stefan Richter138c8af2006-11-02 21:16:08 +01002040 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richter138c8af2006-11-02 21:16:08 +01002041 struct sbp2_command_info *cmd;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002042 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Stefan Richter35644092006-11-02 21:16:08 +01002044 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 scsi_print_command(SCpnt);
2046
Stefan Richter138c8af2006-11-02 21:16:08 +01002047 if (sbp2util_node_is_available(lu)) {
2048 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Stefan Richter23077f12006-09-11 20:17:14 +02002050 /* Return a matching command structure to the free pool. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002051 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2052 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2053 if (cmd) {
Stefan Richter138c8af2006-11-02 21:16:08 +01002054 sbp2util_mark_command_completed(lu, cmd);
2055 if (cmd->Current_SCpnt) {
2056 cmd->Current_SCpnt->result = DID_ABORT << 16;
2057 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
2059 }
Stefan Richter138c8af2006-11-02 21:16:08 +01002060 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Stefan Richter138c8af2006-11-02 21:16:08 +01002062 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064
Stefan Richtera237f352005-11-07 06:31:39 -05002065 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066}
2067
2068/*
2069 * Called by scsi stack when something has really gone wrong.
2070 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002071static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
Stefan Richter138c8af2006-11-02 21:16:08 +01002073 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Stefan Richter35644092006-11-02 21:16:08 +01002075 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Stefan Richter138c8af2006-11-02 21:16:08 +01002077 if (sbp2util_node_is_available(lu)) {
Stefan Richter35644092006-11-02 21:16:08 +01002078 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter138c8af2006-11-02 21:16:08 +01002079 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081
Jody McIntyreabd559b2005-09-30 11:59:06 -07002082 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002083}
2084
Stefan Richtera237f352005-11-07 06:31:39 -05002085static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2086 struct device_attribute *attr,
2087 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 struct scsi_device *sdev;
Stefan Richter138c8af2006-11-02 21:16:08 +01002090 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 if (!(sdev = to_scsi_device(dev)))
2093 return 0;
2094
Stefan Richter138c8af2006-11-02 21:16:08 +01002095 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return 0;
2097
Stefan Richterd7794c82007-05-27 13:17:15 +02002098 if (sbp2_long_sysfs_ieee1394_id)
2099 return sprintf(buf, "%016Lx:%06x:%04x\n",
2100 (unsigned long long)lu->ne->guid,
2101 lu->ud->directory_id, ORB_SET_LUN(lu->lun));
2102 else
2103 return sprintf(buf, "%016Lx:%d:%d\n",
2104 (unsigned long long)lu->ne->guid,
2105 lu->ud->id, ORB_SET_LUN(lu->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2109MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2110MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2111MODULE_LICENSE("GPL");
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113static int sbp2_module_init(void)
2114{
2115 int ret;
2116
Stefan Richterca0c7452006-11-02 21:16:08 +01002117 if (sbp2_serialize_io) {
2118 sbp2_shost_template.can_queue = 1;
2119 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121
Stefan Richterca0c7452006-11-02 21:16:08 +01002122 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 ret = hpsb_register_protocol(&sbp2_driver);
2126 if (ret) {
2127 SBP2_ERR("Failed to register protocol");
2128 hpsb_unregister_highlevel(&sbp2_highlevel);
2129 return ret;
2130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return 0;
2132}
2133
2134static void __exit sbp2_module_exit(void)
2135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 hpsb_unregister_highlevel(&sbp2_highlevel);
2138}
2139
2140module_init(sbp2_module_init);
2141module_exit(sbp2_module_exit);