blob: a373c18cf7b8fe8bd077c47b0808abea743e573f [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>
59#include <linux/gfp.h>
60#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/kernel.h>
62#include <linux/list.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070063#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/module.h>
65#include <linux/moduleparam.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070066#include <linux/sched.h>
Stefan Richter902abed2006-08-14 18:56:00 +020067#include <linux/slab.h>
68#include <linux/spinlock.h>
69#include <linux/stat.h>
70#include <linux/string.h>
71#include <linux/stringify.h>
72#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020073#include <linux/wait.h>
Stefan Richter20e20082007-05-05 17:18:12 +020074#include <linux/workqueue.h>
Adrian Bunk87ae9af2007-10-30 10:35:04 +010075#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020078#include <asm/errno.h>
79#include <asm/param.h>
Stefan Richter902abed2006-08-14 18:56:00 +020080#include <asm/system.h>
81#include <asm/types.h>
82
83#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
84#include <asm/io.h> /* for bus_to_virt */
85#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#include <scsi/scsi.h>
88#include <scsi/scsi_cmnd.h>
89#include <scsi/scsi_dbg.h>
90#include <scsi/scsi_device.h>
91#include <scsi/scsi_host.h>
92
93#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020095#include "hosts.h"
96#include "ieee1394.h"
97#include "ieee1394_core.h"
98#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +0200100#include "ieee1394_types.h"
101#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include "sbp2.h"
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * Module load parameter definitions
106 */
107
108/*
109 * Change max_speed on module load if you have a bad IEEE-1394
110 * controller that has trouble running 2KB packets at 400mb.
111 *
112 * NOTE: On certain OHCI parts I have seen short packets on async transmit
113 * (probably due to PCI latency/throughput issues with the part). You can
114 * bump down the speed if you are running into problems.
115 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100116static int sbp2_max_speed = IEEE1394_SPEED_MAX;
117module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter28b06672006-11-02 21:16:08 +0100118MODULE_PARM_DESC(max_speed, "Force max speed "
119 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
Stefan Richter77bba7a2007-06-17 23:54:52 +0200122 * Set serialize_io to 0 or N to use dynamically appended lists of command ORBs.
123 * This is and always has been buggy in multiple subtle ways. See above TODOs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100125static int sbp2_serialize_io = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200126module_param_named(serialize_io, sbp2_serialize_io, bool, 0444);
127MODULE_PARM_DESC(serialize_io, "Serialize requests coming from SCSI drivers "
128 "(default = Y, faster but buggy = N)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
Stefan Richter4e6343a2007-12-16 17:31:26 +0100131 * Adjust max_sectors if you'd like to influence how many sectors each SCSI
132 * command can transfer at most. Please note that some older SBP-2 bridge
133 * chips are broken for transfers greater or equal to 128KB, therefore
134 * max_sectors used to be a safe 255 sectors for many years. We now have a
135 * default of 0 here which means that we let the SCSI stack choose a limit.
136 *
137 * The SBP2_WORKAROUND_128K_MAX_TRANS flag, if set either in the workarounds
138 * module parameter or in the sbp2_workarounds_table[], will override the
139 * value of max_sectors. We should use sbp2_workarounds_table[] to cover any
140 * bridge chip which becomes known to need the 255 sectors limit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
Stefan Richter4e6343a2007-12-16 17:31:26 +0100142static int sbp2_max_sectors;
Stefan Richterca0c7452006-11-02 21:16:08 +0100143module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
144MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
Stefan Richter4e6343a2007-12-16 17:31:26 +0100145 "(default = 0 = use SCSI stack's default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147/*
148 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
149 * do an exclusive login, as it's generally unsafe to have two hosts
150 * talking to a single sbp2 device at the same time (filesystem coherency,
151 * etc.). If you're running an sbp2 device that supports multiple logins,
152 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400153 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
154 * File System, or Lustre, then set exclusive_login to zero.
155 *
156 * So far only bridges from Oxford Semiconductor are known to support
157 * concurrent logins. Depending on firmware, four or two concurrent logins
158 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100160static int sbp2_exclusive_login = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200161module_param_named(exclusive_login, sbp2_exclusive_login, bool, 0644);
Stefan Richterca0c7452006-11-02 21:16:08 +0100162MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
Stefan Richter77bba7a2007-06-17 23:54:52 +0200163 "(default = Y, use N for concurrent initiators)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200166 * If any of the following workarounds is required for your device to work,
167 * please submit the kernel messages logged by sbp2 to the linux1394-devel
168 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200170 * - 128kB max transfer
171 * Limit transfer size. Necessary for some old bridges.
172 *
173 * - 36 byte inquiry
174 * When scsi_mod probes the device, let the inquiry command look like that
175 * from MS Windows.
176 *
177 * - skip mode page 8
178 * Suppress sending of mode_sense for mode page 8 if the device pretends to
179 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200180 *
181 * - fix capacity
182 * Tell sd_mod to correct the last sector number reported by read_capacity.
183 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
184 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200185 *
Stefan Richterd94a9832008-02-03 23:07:44 +0100186 * - delay inquiry
187 * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry.
188 *
Stefan Richter37191222008-05-11 00:35:55 +0200189 * - power condition
190 * Set the power condition field in the START STOP UNIT commands sent by
191 * sd_mod on suspend, resume, and shutdown (if manage_start_stop is on).
192 * Some disks need this to spin down or to resume properly.
193 *
Stefan Richter679c0cd2006-05-15 22:08:09 +0200194 * - override internal blacklist
195 * Instead of adding to the built-in blacklist, use only the workarounds
196 * specified in the module load parameter.
197 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200199static int sbp2_default_workarounds;
200module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
201MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
202 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
203 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
204 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200205 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richterd94a9832008-02-03 23:07:44 +0100206 ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY)
Stefan Richter37191222008-05-11 00:35:55 +0200207 ", set power condition in start stop unit = "
208 __stringify(SBP2_WORKAROUND_POWER_CONDITION)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200209 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200210 ", or a combination)");
211
Stefan Richterd7794c82007-05-27 13:17:15 +0200212/*
213 * This influences the format of the sysfs attribute
214 * /sys/bus/scsi/devices/.../ieee1394_id.
215 *
216 * The default format is like in older kernels: %016Lx:%d:%d
217 * It contains the target's EUI-64, a number given to the logical unit by
218 * the ieee1394 driver's nodemgr (starting at 0), and the LUN.
219 *
220 * The long format is: %016Lx:%06x:%04x
221 * It contains the target's EUI-64, the unit directory's directory_ID as per
222 * IEEE 1212 clause 7.7.19, and the LUN. This format comes closest to the
223 * format of SBP(-3) target port and logical unit identifier as per SAM (SCSI
224 * Architecture Model) rev.2 to 4 annex A. Therefore and because it is
225 * independent of the implementation of the ieee1394 nodemgr, the longer format
226 * is recommended for future use.
227 */
228static int sbp2_long_sysfs_ieee1394_id;
229module_param_named(long_ieee1394_id, sbp2_long_sysfs_ieee1394_id, bool, 0644);
230MODULE_PARM_DESC(long_ieee1394_id, "8+3+2 bytes format of ieee1394_id in sysfs "
231 "(default = backwards-compatible = N, SAM-conforming = Y)");
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Stefan Richteredf1fb22006-11-02 21:16:08 +0100234#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
235#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
238 * Globals
239 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100240static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
241static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100242 void (*)(struct scsi_cmnd *));
Stefan Richter138c8af2006-11-02 21:16:08 +0100243static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
244static int sbp2_start_device(struct sbp2_lu *);
245static void sbp2_remove_device(struct sbp2_lu *);
246static int sbp2_login_device(struct sbp2_lu *);
247static int sbp2_reconnect_device(struct sbp2_lu *);
248static int sbp2_logout_device(struct sbp2_lu *);
Stefan Richterea42ea02006-11-02 21:16:08 +0100249static void sbp2_host_reset(struct hpsb_host *);
250static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
251 u64, size_t, u16);
Stefan Richter138c8af2006-11-02 21:16:08 +0100252static int sbp2_agent_reset(struct sbp2_lu *, int);
253static void sbp2_parse_unit_directory(struct sbp2_lu *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100254 struct unit_directory *);
Stefan Richter138c8af2006-11-02 21:16:08 +0100255static int sbp2_set_busy_timeout(struct sbp2_lu *);
256static int sbp2_max_speed_and_size(struct sbp2_lu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
260
Stefan Richter261b5f62007-08-11 11:52:08 +0200261static DEFINE_RWLOCK(sbp2_hi_logical_units_lock);
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100264 .name = SBP2_DEVICE_NAME,
265 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266};
267
268static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100269 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};
271
272#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100273static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
274 u64, size_t, u16);
275static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
276 size_t, u16);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100279 .read = sbp2_handle_physdma_read,
280 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281};
282#endif
283
Stefan Richterea42ea02006-11-02 21:16:08 +0100284
285/*
286 * Interface to driver core and IEEE 1394 core
287 */
288static struct ieee1394_device_id sbp2_id_table[] = {
289 {
290 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
291 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
292 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
293 {}
294};
295MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
296
297static int sbp2_probe(struct device *);
298static int sbp2_remove(struct device *);
299static int sbp2_update(struct unit_directory *);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301static struct hpsb_protocol_driver sbp2_driver = {
Ben Collinsed30c262006-11-23 13:59:48 -0500302 .name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .id_table = sbp2_id_table,
304 .update = sbp2_update,
305 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .probe = sbp2_probe,
307 .remove = sbp2_remove,
308 },
309};
310
Stefan Richterea42ea02006-11-02 21:16:08 +0100311
312/*
313 * Interface to SCSI core
314 */
315static int sbp2scsi_queuecommand(struct scsi_cmnd *,
316 void (*)(struct scsi_cmnd *));
317static int sbp2scsi_abort(struct scsi_cmnd *);
318static int sbp2scsi_reset(struct scsi_cmnd *);
319static int sbp2scsi_slave_alloc(struct scsi_device *);
320static int sbp2scsi_slave_configure(struct scsi_device *);
321static void sbp2scsi_slave_destroy(struct scsi_device *);
322static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
323 struct device_attribute *, char *);
324
325static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
326
327static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
328 &dev_attr_ieee1394_id,
329 NULL
330};
331
Stefan Richterca0c7452006-11-02 21:16:08 +0100332static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100333 .module = THIS_MODULE,
334 .name = "SBP-2 IEEE-1394",
335 .proc_name = SBP2_DEVICE_NAME,
336 .queuecommand = sbp2scsi_queuecommand,
337 .eh_abort_handler = sbp2scsi_abort,
338 .eh_device_reset_handler = sbp2scsi_reset,
339 .slave_alloc = sbp2scsi_slave_alloc,
340 .slave_configure = sbp2scsi_slave_configure,
341 .slave_destroy = sbp2scsi_slave_destroy,
342 .this_id = -1,
343 .sg_tablesize = SG_ALL,
344 .use_clustering = ENABLE_CLUSTERING,
345 .cmd_per_lun = SBP2_MAX_CMDS,
346 .can_queue = SBP2_MAX_CMDS,
Stefan Richterea42ea02006-11-02 21:16:08 +0100347 .sdev_attrs = sbp2_sysfs_sdev_attrs,
348};
349
Stefan Richter4618fd32006-12-30 15:37:09 +0100350/* for match-all entries in sbp2_workarounds_table */
351#define SBP2_ROM_VALUE_WILDCARD 0x1000000
Stefan Richterea42ea02006-11-02 21:16:08 +0100352
Stefan Richtera80614d2006-02-14 22:04:19 -0500353/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200354 * List of devices with known bugs.
355 *
356 * The firmware_revision field, masked with 0xffff00, is the best indicator
357 * for the type of bridge chip of a device. It yields a few false positives
358 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500359 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200360static const struct {
361 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200362 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200363 unsigned workarounds;
364} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400365 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200366 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400367 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200368 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
Stefan Richter37191222008-05-11 00:35:55 +0200369 SBP2_WORKAROUND_MODE_SENSE_8 |
370 SBP2_WORKAROUND_POWER_CONDITION,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200371 },
Stefan Richterd94a9832008-02-03 23:07:44 +0100372 /* DViCO Momobay FX-3A with TSB42AA9A bridge */ {
373 .firmware_revision = 0x002800,
374 .model_id = 0x000000,
Stefan Richter37191222008-05-11 00:35:55 +0200375 .workarounds = SBP2_WORKAROUND_DELAY_INQUIRY |
376 SBP2_WORKAROUND_POWER_CONDITION,
Stefan Richterd94a9832008-02-03 23:07:44 +0100377 },
Stefan Richter24d3bf82006-05-15 22:04:59 +0200378 /* Initio bridges, actually only needed for some older ones */ {
379 .firmware_revision = 0x000200,
Stefan Richter4618fd32006-12-30 15:37:09 +0100380 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200381 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
382 },
Stefan Richter37191222008-05-11 00:35:55 +0200383 /* PL-3507 bridge with Prolific firmware */ {
384 .firmware_revision = 0x012800,
385 .model_id = SBP2_ROM_VALUE_WILDCARD,
386 .workarounds = SBP2_WORKAROUND_POWER_CONDITION,
387 },
Stefan Richter24d3bf82006-05-15 22:04:59 +0200388 /* Symbios bridge */ {
389 .firmware_revision = 0xa0b800,
Stefan Richter4618fd32006-12-30 15:37:09 +0100390 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200391 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200392 },
Stefan Richter6e45ef42008-03-11 22:32:52 +0100393 /* Datafab MD2-FW2 with Symbios/LSILogic SYM13FW500 bridge */ {
394 .firmware_revision = 0x002600,
395 .model_id = SBP2_ROM_VALUE_WILDCARD,
396 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
397 },
Stefan Richtere9a1c522006-05-15 22:06:37 +0200398 /* iPod 4th generation */ {
399 .firmware_revision = 0x0a2700,
400 .model_id = 0x000021,
401 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
402 },
403 /* iPod mini */ {
404 .firmware_revision = 0x0a2700,
Stefan Richter9e0de912008-11-22 12:38:24 +0100405 .model_id = 0x000022,
406 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
407 },
408 /* iPod mini */ {
409 .firmware_revision = 0x0a2700,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200410 .model_id = 0x000023,
411 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
412 },
413 /* iPod Photo */ {
414 .firmware_revision = 0x0a2700,
415 .model_id = 0x00007e,
416 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418};
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**************************************
421 * General utility functions
422 **************************************/
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#ifndef __BIG_ENDIAN
425/*
426 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
427 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400428static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 u32 *temp = buffer;
431
432 for (length = (length >> 2); length--; )
433 temp[length] = be32_to_cpu(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436/*
437 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
438 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400439static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 u32 *temp = buffer;
442
443 for (length = (length >> 2); length--; )
444 temp[length] = cpu_to_be32(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446#else /* BIG_ENDIAN */
447/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200448#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
449#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450#endif
451
Stefan Richterca0c7452006-11-02 21:16:08 +0100452static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Stefan Richtere8398bb2006-07-23 22:19:00 +0200454/*
455 * Waits for completion of an SBP-2 access request.
456 * Returns nonzero if timed out or prematurely interrupted.
457 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100458static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
Stefan Richtere8398bb2006-07-23 22:19:00 +0200459{
Stefan Richterca0c7452006-11-02 21:16:08 +0100460 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200461
Stefan Richterca0c7452006-11-02 21:16:08 +0100462 leftover = wait_event_interruptible_timeout(
Stefan Richter138c8af2006-11-02 21:16:08 +0100463 sbp2_access_wq, lu->access_complete, timeout);
464 lu->access_complete = 0;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200465 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Stefan Richter138c8af2006-11-02 21:16:08 +0100468static void sbp2_free_packet(void *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 hpsb_free_tlabel(packet);
471 hpsb_free_packet(packet);
472}
473
Stefan Richtere8ca5662006-11-02 21:16:08 +0100474/*
475 * This is much like hpsb_node_write(), except it ignores the response
476 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 */
478static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richter138c8af2006-11-02 21:16:08 +0100479 quadlet_t *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct hpsb_packet *packet;
482
Stefan Richter138c8af2006-11-02 21:16:08 +0100483 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
Stefan Richtera237f352005-11-07 06:31:39 -0500484 if (!packet)
485 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Stefan Richter138c8af2006-11-02 21:16:08 +0100487 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 hpsb_node_fill_packet(ne, packet);
Stefan Richtera237f352005-11-07 06:31:39 -0500489 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 sbp2_free_packet(packet);
491 return -EIO;
492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return 0;
494}
495
Stefan Richter138c8af2006-11-02 21:16:08 +0100496static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
497 quadlet_t *data, size_t len)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200498{
Stefan Richter138c8af2006-11-02 21:16:08 +0100499 /* There is a small window after a bus reset within which the node
500 * entry's generation is current but the reconnect wasn't completed. */
501 if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200502 return;
503
Stefan Richter138c8af2006-11-02 21:16:08 +0100504 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200505 data, len))
506 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
Stefan Richter138c8af2006-11-02 21:16:08 +0100507
508 /* Now accept new SCSI commands, unless a bus reset happended during
509 * hpsb_node_write. */
510 if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
511 scsi_unblock_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200512}
513
David Howellsc4028952006-11-22 14:57:56 +0000514static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200515{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100516 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200517 quadlet_t data[2];
518
Stefan Richterec9b7e12006-12-07 23:23:25 +0100519 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
520 data[1] = lu->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200521 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterec9b7e12006-12-07 23:23:25 +0100522 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200523}
524
David Howellsc4028952006-11-22 14:57:56 +0000525static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200526{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100527 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
528
529 sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200530}
531
Stefan Richter138c8af2006-11-02 21:16:08 +0100532static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Stefan Richter138c8af2006-11-02 21:16:08 +0100534 struct sbp2_command_info *cmd;
Stefan Richtercd8c79f2008-08-09 20:16:24 +0200535 struct device *dmadev = lu->hi->host->device.parent;
Stefan Richter3d269cb2007-02-04 20:57:38 +0100536 int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 for (i = 0; i < orbs; i++) {
Stefan Richter3d269cb2007-02-04 20:57:38 +0100539 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
540 if (!cmd)
Stefan Richtercd8c79f2008-08-09 20:16:24 +0200541 goto failed_alloc;
542
543 cmd->command_orb_dma =
544 dma_map_single(dmadev, &cmd->command_orb,
545 sizeof(struct sbp2_command_orb),
546 DMA_TO_DEVICE);
547 if (dma_mapping_error(dmadev, cmd->command_orb_dma))
548 goto failed_orb;
549
550 cmd->sge_dma =
551 dma_map_single(dmadev, &cmd->scatter_gather_element,
552 sizeof(cmd->scatter_gather_element),
553 DMA_TO_DEVICE);
554 if (dma_mapping_error(dmadev, cmd->sge_dma))
555 goto failed_sge;
556
Stefan Richter138c8af2006-11-02 21:16:08 +0100557 INIT_LIST_HEAD(&cmd->list);
558 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return 0;
Stefan Richtercd8c79f2008-08-09 20:16:24 +0200561
562failed_sge:
563 dma_unmap_single(dmadev, cmd->command_orb_dma,
564 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
565failed_orb:
566 kfree(cmd);
567failed_alloc:
568 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Stefan Richtera2ee3f92007-08-11 11:51:16 +0200571static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu,
572 struct hpsb_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 struct list_head *lh, *next;
Stefan Richter138c8af2006-11-02 21:16:08 +0100575 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 unsigned long flags;
577
Stefan Richter138c8af2006-11-02 21:16:08 +0100578 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
579 if (!list_empty(&lu->cmd_orb_completed))
580 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
581 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +0100582 dma_unmap_single(host->device.parent,
583 cmd->command_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100585 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100586 dma_unmap_single(host->device.parent, cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100587 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100588 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100589 kfree(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100591 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return;
593}
594
595/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100596 * Finds the sbp2_command for a given outstanding command ORB.
597 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
599static struct sbp2_command_info *sbp2util_find_command_for_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100600 struct sbp2_lu *lu, dma_addr_t orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Stefan Richter138c8af2006-11-02 21:16:08 +0100602 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 unsigned long flags;
604
Stefan Richter138c8af2006-11-02 21:16:08 +0100605 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
606 if (!list_empty(&lu->cmd_orb_inuse))
607 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
608 if (cmd->command_orb_dma == orb) {
609 spin_unlock_irqrestore(
610 &lu->cmd_orb_lock, flags);
611 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100613 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500614 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100618 * Finds the sbp2_command for a given outstanding SCpnt.
619 * Only looks at the in-use list.
Stefan Richter138c8af2006-11-02 21:16:08 +0100620 * Must be called with lu->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200622static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
Stefan Richter138c8af2006-11-02 21:16:08 +0100623 struct sbp2_lu *lu, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Stefan Richter138c8af2006-11-02 21:16:08 +0100625 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Stefan Richter138c8af2006-11-02 21:16:08 +0100627 if (!list_empty(&lu->cmd_orb_inuse))
628 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
629 if (cmd->Current_SCpnt == SCpnt)
630 return cmd;
Stefan Richtera237f352005-11-07 06:31:39 -0500631 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static struct sbp2_command_info *sbp2util_allocate_command_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100635 struct sbp2_lu *lu,
636 struct scsi_cmnd *Current_SCpnt,
637 void (*Current_done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +0100640 struct sbp2_command_info *cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 unsigned long flags;
642
Stefan Richter138c8af2006-11-02 21:16:08 +0100643 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
644 if (!list_empty(&lu->cmd_orb_completed)) {
645 lh = lu->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 list_del(lh);
Stefan Richter138c8af2006-11-02 21:16:08 +0100647 cmd = list_entry(lh, struct sbp2_command_info, list);
648 cmd->Current_done = Current_done;
649 cmd->Current_SCpnt = Current_SCpnt;
650 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
651 } else
Harvey Harrisonb1ce1fd2008-03-05 18:24:54 -0800652 SBP2_ERR("%s: no orbs available", __func__);
Stefan Richter138c8af2006-11-02 21:16:08 +0100653 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
654 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Stefan Richter58272c12006-11-04 09:55:33 +0100657/*
658 * Unmaps the DMAs of a command and moves the command to the completed ORB list.
659 * Must be called with lu->cmd_orb_lock held.
660 */
661static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
662 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Stefan Richtered6ffd02008-08-14 09:28:14 +0200664 if (scsi_sg_count(cmd->Current_SCpnt))
665 dma_unmap_sg(lu->ud->ne->host->device.parent,
666 scsi_sglist(cmd->Current_SCpnt),
667 scsi_sg_count(cmd->Current_SCpnt),
668 cmd->Current_SCpnt->sc_data_direction);
Stefan Richtercd641f62006-11-02 21:16:08 +0100669 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Jody McIntyreabd559b2005-09-30 11:59:06 -0700672/*
Stefan Richter138c8af2006-11-02 21:16:08 +0100673 * Is lu valid? Is the 1394 node still present?
Jody McIntyreabd559b2005-09-30 11:59:06 -0700674 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100675static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700676{
Stefan Richter138c8af2006-11-02 21:16:08 +0100677 return lu && lu->ne && !lu->ne->in_limbo;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/*********************************************
681 * IEEE-1394 core driver stack related section
682 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684static int sbp2_probe(struct device *dev)
685{
686 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100687 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 ud = container_of(dev, struct unit_directory, device);
690
691 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
692 * instead. */
693 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
694 return -ENODEV;
695
Stefan Richter138c8af2006-11-02 21:16:08 +0100696 lu = sbp2_alloc_device(ud);
697 if (!lu)
Stefan Richtera237f352005-11-07 06:31:39 -0500698 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Stefan Richter138c8af2006-11-02 21:16:08 +0100700 sbp2_parse_unit_directory(lu, ud);
701 return sbp2_start_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704static int sbp2_remove(struct device *dev)
705{
706 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100707 struct sbp2_lu *lu;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700708 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 ud = container_of(dev, struct unit_directory, device);
Stefan Richter138c8af2006-11-02 21:16:08 +0100711 lu = ud->device.driver_data;
712 if (!lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700713 return 0;
714
Stefan Richter138c8af2006-11-02 21:16:08 +0100715 if (lu->shost) {
Stefan Richterbf637ec2006-01-31 00:13:06 -0500716 /* Get rid of enqueued commands if there is no chance to
717 * send them. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100718 if (!sbp2util_node_is_available(lu))
719 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100720 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500721 * highlevel drivers which would deadlock if blocked. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100722 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
723 scsi_unblock_requests(lu->shost);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500724 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100725 sdev = lu->sdev;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700726 if (sdev) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100727 lu->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700728 scsi_remove_device(sdev);
729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Stefan Richter138c8af2006-11-02 21:16:08 +0100731 sbp2_logout_device(lu);
732 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 return 0;
735}
736
737static int sbp2_update(struct unit_directory *ud)
738{
Stefan Richter138c8af2006-11-02 21:16:08 +0100739 struct sbp2_lu *lu = ud->device.driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Stefan Richtera3384062008-08-16 13:39:26 +0200741 if (sbp2_reconnect_device(lu) != 0) {
742 /*
743 * Reconnect failed. If another bus reset happened,
744 * let nodemgr proceed and call sbp2_update again later
745 * (or sbp2_remove if this node went away).
746 */
747 if (!hpsb_node_entry_valid(lu->ne))
748 return 0;
749 /*
750 * Or the target rejected the reconnect because we weren't
751 * fast enough. Try a regular login, but first log out
752 * just in case of any weirdness.
753 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100754 sbp2_logout_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Stefan Richtera3384062008-08-16 13:39:26 +0200756 if (sbp2_login_device(lu) != 0) {
757 if (!hpsb_node_entry_valid(lu->ne))
758 return 0;
759
760 /* Maybe another initiator won the login. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 SBP2_ERR("Failed to reconnect to sbp2 device!");
762 return -EBUSY;
763 }
764 }
765
Stefan Richter138c8af2006-11-02 21:16:08 +0100766 sbp2_set_busy_timeout(lu);
767 sbp2_agent_reset(lu, 1);
768 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Stefan Richtere8ca5662006-11-02 21:16:08 +0100770 /* Complete any pending commands with busy (so they get retried)
771 * and remove them from our queue. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100772 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Stefan Richter4fc383c2006-08-14 18:46:00 +0200774 /* Accept new commands unless there was another bus reset in the
775 * meantime. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100776 if (hpsb_node_entry_valid(lu->ne)) {
777 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
778 scsi_unblock_requests(lu->shost);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781}
782
Stefan Richter138c8af2006-11-02 21:16:08 +0100783static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Stefan Richterca0c7452006-11-02 21:16:08 +0100785 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100786 struct Scsi_Host *shost = NULL;
787 struct sbp2_lu *lu = NULL;
Stefan Richter261b5f62007-08-11 11:52:08 +0200788 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Stefan Richter138c8af2006-11-02 21:16:08 +0100790 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
791 if (!lu) {
792 SBP2_ERR("failed to create lu");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 goto failed_alloc;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Stefan Richter138c8af2006-11-02 21:16:08 +0100796 lu->ne = ud->ne;
797 lu->ud = ud;
798 lu->speed_code = IEEE1394_SPEED_100;
799 lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
800 lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
801 INIT_LIST_HEAD(&lu->cmd_orb_inuse);
802 INIT_LIST_HEAD(&lu->cmd_orb_completed);
803 INIT_LIST_HEAD(&lu->lu_list);
804 spin_lock_init(&lu->cmd_orb_lock);
805 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
806 INIT_WORK(&lu->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Stefan Richter138c8af2006-11-02 21:16:08 +0100808 ud->device.driver_data = lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
811 if (!hi) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100812 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
813 sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (!hi) {
815 SBP2_ERR("failed to allocate hostinfo");
816 goto failed_alloc;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 hi->host = ud->ne->host;
Stefan Richter138c8af2006-11-02 21:16:08 +0100819 INIT_LIST_HEAD(&hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
822 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500823 * enabled or not supported on host controller */
824 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
825 &sbp2_physdma_ops,
826 0x0ULL, 0xfffffffcULL)) {
827 SBP2_ERR("failed to register lower 4GB address range");
828 goto failed_alloc;
829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830#endif
831 }
832
Stefan Richtered6ffd02008-08-14 09:28:14 +0200833 if (dma_get_max_seg_size(hi->host->device.parent) > SBP2_MAX_SEG_SIZE)
834 BUG_ON(dma_set_max_seg_size(hi->host->device.parent,
835 SBP2_MAX_SEG_SIZE));
836
Stefan Richter147830f2006-03-28 19:54:52 -0500837 /* Prevent unloading of the 1394 host */
838 if (!try_module_get(hi->host->driver->owner)) {
839 SBP2_ERR("failed to get a reference on 1394 host driver");
840 goto failed_alloc;
841 }
842
Stefan Richter138c8af2006-11-02 21:16:08 +0100843 lu->hi = hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Stefan Richter261b5f62007-08-11 11:52:08 +0200845 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +0100846 list_add_tail(&lu->lu_list, &hi->logical_units);
Stefan Richter261b5f62007-08-11 11:52:08 +0200847 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Stefan Richter35bdddb2006-01-31 00:13:33 -0500849 /* Register the status FIFO address range. We could use the same FIFO
850 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200851 * target in order to support multi-unit devices.
852 * The FIFO is located out of the local host controller's physical range
853 * but, if possible, within the posted write area. Status writes will
854 * then be performed as unified transactions. This slightly reduces
855 * bandwidth usage, and some Prolific based devices seem to require it.
856 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100857 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
Stefan Richter35bdddb2006-01-31 00:13:33 -0500858 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
859 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400860 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Stefan Richter138c8af2006-11-02 21:16:08 +0100861 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500862 SBP2_ERR("failed to allocate status FIFO address range");
863 goto failed_alloc;
864 }
865
Stefan Richter138c8af2006-11-02 21:16:08 +0100866 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
867 if (!shost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 SBP2_ERR("failed to register scsi host");
869 goto failed_alloc;
870 }
871
Stefan Richter138c8af2006-11-02 21:16:08 +0100872 shost->hostdata[0] = (unsigned long)lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Stefan Richter138c8af2006-11-02 21:16:08 +0100874 if (!scsi_add_host(shost, &ud->device)) {
875 lu->shost = shost;
876 return lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
879 SBP2_ERR("failed to add scsi host");
Stefan Richter138c8af2006-11-02 21:16:08 +0100880 scsi_host_put(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882failed_alloc:
Stefan Richter138c8af2006-11-02 21:16:08 +0100883 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return NULL;
885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887static void sbp2_host_reset(struct hpsb_host *host)
888{
Stefan Richterca0c7452006-11-02 21:16:08 +0100889 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100890 struct sbp2_lu *lu;
Stefan Richter261b5f62007-08-11 11:52:08 +0200891 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200894 if (!hi)
895 return;
Stefan Richter261b5f62007-08-11 11:52:08 +0200896
897 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter2642b112008-11-29 14:55:47 +0100898
Stefan Richter138c8af2006-11-02 21:16:08 +0100899 list_for_each_entry(lu, &hi->logical_units, lu_list)
Stefan Richter2642b112008-11-29 14:55:47 +0100900 if (atomic_cmpxchg(&lu->state,
901 SBP2LU_STATE_RUNNING, SBP2LU_STATE_IN_RESET)
902 == SBP2LU_STATE_RUNNING)
Stefan Richter138c8af2006-11-02 21:16:08 +0100903 scsi_block_requests(lu->shost);
Stefan Richter2642b112008-11-29 14:55:47 +0100904
Stefan Richter261b5f62007-08-11 11:52:08 +0200905 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
Stefan Richter138c8af2006-11-02 21:16:08 +0100908static int sbp2_start_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Stefan Richter138c8af2006-11-02 21:16:08 +0100910 struct sbp2_fwhost_info *hi = lu->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500911 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Stefan Richter97d552e2006-12-29 23:47:04 +0100913 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500914 sizeof(struct sbp2_login_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100915 &lu->login_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100916 if (!lu->login_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Stefan Richter97d552e2006-12-29 23:47:04 +0100919 lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500920 sizeof(struct sbp2_query_logins_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100921 &lu->query_logins_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100922 if (!lu->query_logins_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Stefan Richter97d552e2006-12-29 23:47:04 +0100925 lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500926 sizeof(struct sbp2_query_logins_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100927 &lu->query_logins_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100928 if (!lu->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Stefan Richter97d552e2006-12-29 23:47:04 +0100931 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500932 sizeof(struct sbp2_reconnect_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100933 &lu->reconnect_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100934 if (!lu->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Stefan Richter97d552e2006-12-29 23:47:04 +0100937 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500938 sizeof(struct sbp2_logout_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100939 &lu->logout_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100940 if (!lu->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Stefan Richter97d552e2006-12-29 23:47:04 +0100943 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500944 sizeof(struct sbp2_login_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100945 &lu->login_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100946 if (!lu->login_orb)
Stefan Richtereaceec72005-12-13 11:05:05 -0500947 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Stefan Richter3d269cb2007-02-04 20:57:38 +0100949 if (sbp2util_create_command_orb_pool(lu))
950 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Stefan Richtere8ca5662006-11-02 21:16:08 +0100952 /* Wait a second before trying to log in. Previously logged in
953 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200954 if (msleep_interruptible(1000)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100955 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return -EINTR;
957 }
Stefan Richtera237f352005-11-07 06:31:39 -0500958
Stefan Richter138c8af2006-11-02 21:16:08 +0100959 if (sbp2_login_device(lu)) {
960 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -EBUSY;
962 }
963
Stefan Richter138c8af2006-11-02 21:16:08 +0100964 sbp2_set_busy_timeout(lu);
965 sbp2_agent_reset(lu, 1);
966 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Stefan Richterd94a9832008-02-03 23:07:44 +0100968 if (lu->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY)
969 ssleep(SBP2_INQUIRY_DELAY);
970
Stefan Richter138c8af2006-11-02 21:16:08 +0100971 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
James Bottomley146f7262005-09-10 12:44:09 -0500972 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 SBP2_ERR("scsi_add_device failed");
Stefan Richter138c8af2006-11-02 21:16:08 +0100974 sbp2_logout_device(lu);
975 sbp2_remove_device(lu);
James Bottomley146f7262005-09-10 12:44:09 -0500976 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
979 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500980
981alloc_fail:
Stefan Richter138c8af2006-11-02 21:16:08 +0100982 SBP2_ERR("Could not allocate memory for lu");
983 sbp2_remove_device(lu);
Stefan Richtereaceec72005-12-13 11:05:05 -0500984 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Stefan Richter138c8af2006-11-02 21:16:08 +0100987static void sbp2_remove_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Stefan Richterca0c7452006-11-02 21:16:08 +0100989 struct sbp2_fwhost_info *hi;
Stefan Richter261b5f62007-08-11 11:52:08 +0200990 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Stefan Richter138c8af2006-11-02 21:16:08 +0100992 if (!lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return;
Stefan Richter138c8af2006-11-02 21:16:08 +0100994 hi = lu->hi;
Stefan Richtera2ee3f92007-08-11 11:51:16 +0200995 if (!hi)
996 goto no_hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Stefan Richter138c8af2006-11-02 21:16:08 +0100998 if (lu->shost) {
999 scsi_remove_host(lu->shost);
1000 scsi_host_put(lu->shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Stefan Richter09ee67a2006-08-14 18:43:00 +02001002 flush_scheduled_work();
Stefan Richtera2ee3f92007-08-11 11:51:16 +02001003 sbp2util_remove_command_orb_pool(lu, hi->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Stefan Richter261b5f62007-08-11 11:52:08 +02001005 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +01001006 list_del(&lu->lu_list);
Stefan Richter261b5f62007-08-11 11:52:08 +02001007 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Stefan Richter138c8af2006-11-02 21:16:08 +01001009 if (lu->login_response)
Stefan Richter97d552e2006-12-29 23:47:04 +01001010 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 sizeof(struct sbp2_login_response),
Stefan Richter138c8af2006-11-02 21:16:08 +01001012 lu->login_response,
1013 lu->login_response_dma);
1014 if (lu->login_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001015 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 sizeof(struct sbp2_login_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001017 lu->login_orb,
1018 lu->login_orb_dma);
1019 if (lu->reconnect_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001020 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 sizeof(struct sbp2_reconnect_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001022 lu->reconnect_orb,
1023 lu->reconnect_orb_dma);
1024 if (lu->logout_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001025 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 sizeof(struct sbp2_logout_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001027 lu->logout_orb,
1028 lu->logout_orb_dma);
1029 if (lu->query_logins_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +01001030 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 sizeof(struct sbp2_query_logins_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +01001032 lu->query_logins_orb,
1033 lu->query_logins_orb_dma);
1034 if (lu->query_logins_response)
Stefan Richter97d552e2006-12-29 23:47:04 +01001035 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 sizeof(struct sbp2_query_logins_response),
Stefan Richter138c8af2006-11-02 21:16:08 +01001037 lu->query_logins_response,
1038 lu->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Stefan Richter138c8af2006-11-02 21:16:08 +01001040 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -05001041 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Stefan Richter138c8af2006-11-02 21:16:08 +01001042 lu->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -05001043
Stefan Richter138c8af2006-11-02 21:16:08 +01001044 lu->ud->device.driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Stefan Richtera2ee3f92007-08-11 11:51:16 +02001046 module_put(hi->host->driver->owner);
1047no_hi:
Stefan Richter138c8af2006-11-02 21:16:08 +01001048 kfree(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1052/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001053 * Deal with write requests on adapters which do not support physical DMA or
1054 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
Stefan Richtera237f352005-11-07 06:31:39 -05001056static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1057 int destid, quadlet_t *data, u64 addr,
1058 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Stefan Richtera237f352005-11-07 06:31:39 -05001060 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -05001061 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001065 * Deal with read requests on adapters which do not support physical DMA or
1066 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 */
Stefan Richtera237f352005-11-07 06:31:39 -05001068static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1069 quadlet_t *data, u64 addr, size_t length,
1070 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Stefan Richtera237f352005-11-07 06:31:39 -05001072 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -05001073 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075#endif
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/**************************************
1078 * SBP-2 protocol related section
1079 **************************************/
1080
Stefan Richter138c8af2006-11-02 21:16:08 +01001081static int sbp2_query_logins(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Stefan Richter138c8af2006-11-02 21:16:08 +01001083 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 quadlet_t data[2];
1085 int max_logins;
1086 int active_logins;
1087
Stefan Richter138c8af2006-11-02 21:16:08 +01001088 lu->query_logins_orb->reserved1 = 0x0;
1089 lu->query_logins_orb->reserved2 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Stefan Richter138c8af2006-11-02 21:16:08 +01001091 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1092 lu->query_logins_orb->query_response_hi =
1093 ORB_SET_NODE_ID(hi->host->node_id);
1094 lu->query_logins_orb->lun_misc =
1095 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1096 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1097 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Stefan Richter138c8af2006-11-02 21:16:08 +01001099 lu->query_logins_orb->reserved_resp_length =
1100 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1101 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Stefan Richter138c8af2006-11-02 21:16:08 +01001103 lu->query_logins_orb->status_fifo_hi =
1104 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1105 lu->query_logins_orb->status_fifo_lo =
1106 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Stefan Richter138c8af2006-11-02 21:16:08 +01001108 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1109 sizeof(struct sbp2_query_logins_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Stefan Richter138c8af2006-11-02 21:16:08 +01001111 memset(lu->query_logins_response, 0,
1112 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001115 data[1] = lu->query_logins_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 sbp2util_cpu_to_be32_buffer(data, 8);
1117
Stefan Richter138c8af2006-11-02 21:16:08 +01001118 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Stefan Richter138c8af2006-11-02 21:16:08 +01001120 if (sbp2util_access_timeout(lu, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001122 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
Stefan Richter138c8af2006-11-02 21:16:08 +01001125 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
Stefan Richter138c8af2006-11-02 21:16:08 +01001130 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001131 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001132 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134
Stefan Richter138c8af2006-11-02 21:16:08 +01001135 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1136 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Stefan Richter138c8af2006-11-02 21:16:08 +01001138 max_logins = RESPONSE_GET_MAX_LOGINS(
1139 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001140 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Stefan Richter138c8af2006-11-02 21:16:08 +01001142 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1143 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001144 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001147 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
1150 return 0;
1151}
1152
Stefan Richter138c8af2006-11-02 21:16:08 +01001153static int sbp2_login_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Stefan Richter138c8af2006-11-02 21:16:08 +01001155 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 quadlet_t data[2];
1157
Stefan Richter138c8af2006-11-02 21:16:08 +01001158 if (!lu->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001159 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Stefan Richter138c8af2006-11-02 21:16:08 +01001161 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001162 SBP2_INFO("Device does not support any more concurrent logins");
1163 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
Stefan Richtere8ca5662006-11-02 21:16:08 +01001166 /* assume no password */
Stefan Richter138c8af2006-11-02 21:16:08 +01001167 lu->login_orb->password_hi = 0;
1168 lu->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Stefan Richter138c8af2006-11-02 21:16:08 +01001170 lu->login_orb->login_response_lo = lu->login_response_dma;
1171 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1172 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001173
1174 /* one second reconnect time */
Stefan Richter138c8af2006-11-02 21:16:08 +01001175 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1176 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1177 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1178 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Stefan Richter138c8af2006-11-02 21:16:08 +01001180 lu->login_orb->passwd_resp_lengths =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Stefan Richter138c8af2006-11-02 21:16:08 +01001183 lu->login_orb->status_fifo_hi =
1184 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1185 lu->login_orb->status_fifo_lo =
1186 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Stefan Richter138c8af2006-11-02 21:16:08 +01001188 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1189 sizeof(struct sbp2_login_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Stefan Richter138c8af2006-11-02 21:16:08 +01001191 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001194 data[1] = lu->login_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 sbp2util_cpu_to_be32_buffer(data, 8);
1196
Stefan Richter138c8af2006-11-02 21:16:08 +01001197 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Stefan Richtere8ca5662006-11-02 21:16:08 +01001199 /* wait up to 20 seconds for login status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001200 if (sbp2util_access_timeout(lu, 20*HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001201 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001202 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204
Stefan Richtere8ca5662006-11-02 21:16:08 +01001205 /* make sure that the returned status matches the login ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001206 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001207 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001208 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210
Stefan Richter138c8af2006-11-02 21:16:08 +01001211 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001212 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001213 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
Stefan Richter138c8af2006-11-02 21:16:08 +01001216 sbp2util_cpu_to_be32_buffer(lu->login_response,
1217 sizeof(struct sbp2_login_response));
1218 lu->command_block_agent_addr =
1219 ((u64)lu->login_response->command_block_agent_hi) << 32;
1220 lu->command_block_agent_addr |=
1221 ((u64)lu->login_response->command_block_agent_lo);
1222 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Stefan Richter138c8af2006-11-02 21:16:08 +01001228static int sbp2_logout_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Stefan Richter138c8af2006-11-02 21:16:08 +01001230 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 quadlet_t data[2];
1232 int error;
1233
Stefan Richter138c8af2006-11-02 21:16:08 +01001234 lu->logout_orb->reserved1 = 0x0;
1235 lu->logout_orb->reserved2 = 0x0;
1236 lu->logout_orb->reserved3 = 0x0;
1237 lu->logout_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Stefan Richter138c8af2006-11-02 21:16:08 +01001239 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1240 lu->logout_orb->login_ID_misc |=
1241 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1242 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Stefan Richter138c8af2006-11-02 21:16:08 +01001244 lu->logout_orb->reserved5 = 0x0;
1245 lu->logout_orb->status_fifo_hi =
1246 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1247 lu->logout_orb->status_fifo_lo =
1248 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Stefan Richter138c8af2006-11-02 21:16:08 +01001250 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1251 sizeof(struct sbp2_logout_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001254 data[1] = lu->logout_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 sbp2util_cpu_to_be32_buffer(data, 8);
1256
Stefan Richter138c8af2006-11-02 21:16:08 +01001257 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (error)
1259 return error;
1260
Stefan Richtere8ca5662006-11-02 21:16:08 +01001261 /* wait up to 1 second for the device to complete logout */
Stefan Richter138c8af2006-11-02 21:16:08 +01001262 if (sbp2util_access_timeout(lu, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return -EIO;
1264
1265 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Stefan Richter138c8af2006-11-02 21:16:08 +01001269static int sbp2_reconnect_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Stefan Richter138c8af2006-11-02 21:16:08 +01001271 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 quadlet_t data[2];
1273 int error;
1274
Stefan Richter138c8af2006-11-02 21:16:08 +01001275 lu->reconnect_orb->reserved1 = 0x0;
1276 lu->reconnect_orb->reserved2 = 0x0;
1277 lu->reconnect_orb->reserved3 = 0x0;
1278 lu->reconnect_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Stefan Richter138c8af2006-11-02 21:16:08 +01001280 lu->reconnect_orb->login_ID_misc =
1281 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1282 lu->reconnect_orb->login_ID_misc |=
1283 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1284 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Stefan Richter138c8af2006-11-02 21:16:08 +01001286 lu->reconnect_orb->reserved5 = 0x0;
1287 lu->reconnect_orb->status_fifo_hi =
1288 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1289 lu->reconnect_orb->status_fifo_lo =
1290 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Stefan Richter138c8af2006-11-02 21:16:08 +01001292 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1293 sizeof(struct sbp2_reconnect_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001296 data[1] = lu->reconnect_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 sbp2util_cpu_to_be32_buffer(data, 8);
1298
Stefan Richter138c8af2006-11-02 21:16:08 +01001299 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (error)
1301 return error;
1302
Stefan Richtere8ca5662006-11-02 21:16:08 +01001303 /* wait up to 1 second for reconnect status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001304 if (sbp2util_access_timeout(lu, HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001305 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001306 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
1308
Stefan Richtere8ca5662006-11-02 21:16:08 +01001309 /* make sure that the returned status matches the reconnect ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001310 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001311 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001312 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314
Stefan Richter138c8af2006-11-02 21:16:08 +01001315 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001316 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001317 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319
Stefan Richter35644092006-11-02 21:16:08 +01001320 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322}
1323
1324/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001325 * Set the target node's Single Phase Retry limit. Affects the target's retry
1326 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001328static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 quadlet_t data;
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001333 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
Harvey Harrisonb1ce1fd2008-03-05 18:24:54 -08001334 SBP2_ERR("%s error", __func__);
Stefan Richtera237f352005-11-07 06:31:39 -05001335 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Stefan Richter138c8af2006-11-02 21:16:08 +01001338static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 struct unit_directory *ud)
1340{
1341 struct csr1212_keyval *kv;
1342 struct csr1212_dentry *dentry;
1343 u64 management_agent_addr;
Stefan Richter9117c6d2006-11-02 21:16:08 +01001344 u32 unit_characteristics, firmware_revision;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001345 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 int i;
1347
Stefan Richter9117c6d2006-11-02 21:16:08 +01001348 management_agent_addr = 0;
1349 unit_characteristics = 0;
1350 firmware_revision = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1353 switch (kv->key.id) {
1354 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001355 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001357 CSR1212_REGISTER_SPACE_BASE +
1358 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Stefan Richteredf1fb22006-11-02 21:16:08 +01001360 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richter138c8af2006-11-02 21:16:08 +01001361 lu->lun = ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 break;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001365 /* FIXME: This is ignored so far.
1366 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 break;
1369
1370 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 break;
1373
1374 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001375 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1376 * Its "ordered" bit has consequences for command ORB
1377 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 break;
1379 }
1380 }
1381
Stefan Richter24d3bf82006-05-15 22:04:59 +02001382 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Stefan Richter679c0cd2006-05-15 22:08:09 +02001384 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1385 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
Stefan Richter4618fd32006-12-30 15:37:09 +01001386 if (sbp2_workarounds_table[i].firmware_revision !=
1387 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001388 sbp2_workarounds_table[i].firmware_revision !=
1389 (firmware_revision & 0xffff00))
1390 continue;
Stefan Richter4618fd32006-12-30 15:37:09 +01001391 if (sbp2_workarounds_table[i].model_id !=
1392 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001393 sbp2_workarounds_table[i].model_id != ud->model_id)
1394 continue;
1395 workarounds |= sbp2_workarounds_table[i].workarounds;
1396 break;
1397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Stefan Richter24d3bf82006-05-15 22:04:59 +02001399 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001400 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1401 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1402 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001403 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001404 workarounds, firmware_revision,
1405 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1406 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001407
1408 /* We would need one SCSI host template for each target to adjust
1409 * max_sectors on the fly, therefore warn only. */
1410 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001411 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001412 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001413 "max transfer size. WARNING: Current max_sectors "
1414 "setting is larger than 128KB (%d sectors)",
1415 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001416 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /* If this is a logical unit directory entry, process the parent
1419 * to get the values. */
1420 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001421 struct unit_directory *parent_ud = container_of(
1422 ud->device.parent, struct unit_directory, device);
1423 sbp2_parse_unit_directory(lu, parent_ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 } else {
Stefan Richter138c8af2006-11-02 21:16:08 +01001425 lu->management_agent_addr = management_agent_addr;
1426 lu->workarounds = workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richter138c8af2006-11-02 21:16:08 +01001428 lu->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430}
1431
Ben Collinsfd23ade2006-06-12 18:14:14 -04001432#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434/*
1435 * This function is called in order to determine the max speed and packet
1436 * size we can use in our ORBs. Note, that we (the driver and host) only
1437 * initiate the transaction. The SBP-2 device actually transfers the data
1438 * (by reading from the DMA area we tell it). This means that the SBP-2
1439 * device decides the actual maximum data it can transfer. We just tell it
1440 * the speed that it needs to use, and the max_rec the host supports, and
1441 * it takes care of the rest.
1442 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001443static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Stefan Richter138c8af2006-11-02 21:16:08 +01001445 struct sbp2_fwhost_info *hi = lu->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001446 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Stefan Richter138c8af2006-11-02 21:16:08 +01001448 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Stefan Richter138c8af2006-11-02 21:16:08 +01001450 if (lu->speed_code > sbp2_max_speed) {
1451 lu->speed_code = sbp2_max_speed;
Stefan Richterca0c7452006-11-02 21:16:08 +01001452 SBP2_INFO("Reducing speed to %s",
1453 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455
1456 /* Payload size is the lesser of what our speed supports and what
1457 * our host supports. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001458 payload = min(sbp2_speedto_max_payload[lu->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001459 (u8) (hi->host->csr.max_rec - 1));
1460
1461 /* If physical DMA is off, work around limitation in ohci1394:
1462 * packet size must not exceed PAGE_SIZE */
Stefan Richter138c8af2006-11-02 21:16:08 +01001463 if (lu->ne->host->low_addr_space < (1ULL << 32))
Ben Collinsfd23ade2006-06-12 18:14:14 -04001464 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1465 payload)
1466 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Stefan Richter35644092006-11-02 21:16:08 +01001468 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
Stefan Richter138c8af2006-11-02 21:16:08 +01001469 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1470 hpsb_speedto_str[lu->speed_code],
Stefan Richter35644092006-11-02 21:16:08 +01001471 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Stefan Richter138c8af2006-11-02 21:16:08 +01001473 lu->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Stefan Richter138c8af2006-11-02 21:16:08 +01001477static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 quadlet_t data;
1480 u64 addr;
1481 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001482 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Stefan Richterec9b7e12006-12-07 23:23:25 +01001484 /* flush lu->protocol_work */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001485 if (wait)
1486 flush_scheduled_work();
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richter138c8af2006-11-02 21:16:08 +01001489 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 if (wait)
Stefan Richter138c8af2006-11-02 21:16:08 +01001492 retval = hpsb_node_write(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001494 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 if (retval < 0) {
1497 SBP2_ERR("hpsb_node_write failed.\n");
1498 return -EIO;
1499 }
1500
Stefan Richtere8ca5662006-11-02 21:16:08 +01001501 /* make sure that the ORB_POINTER is written on next command */
Stefan Richter138c8af2006-11-02 21:16:08 +01001502 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1503 lu->last_orb = NULL;
1504 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Stefan Richtera237f352005-11-07 06:31:39 -05001506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001509static int sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1510 struct sbp2_fwhost_info *hi,
1511 struct sbp2_command_info *cmd,
Stefan Richtered6ffd02008-08-14 09:28:14 +02001512 unsigned int sg_count,
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001513 struct scatterlist *sg,
1514 u32 orb_direction,
1515 enum dma_data_direction dma_dir)
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001516{
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001517 struct device *dmadev = hi->host->device.parent;
Stefan Richtered6ffd02008-08-14 09:28:14 +02001518 struct sbp2_unrestricted_page_table *pt;
1519 int i, n;
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001520
Stefan Richtered6ffd02008-08-14 09:28:14 +02001521 n = dma_map_sg(dmadev, sg, sg_count, dma_dir);
1522 if (n == 0)
1523 return -ENOMEM;
1524
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001525 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1526 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1527
Stefan Richtere8ca5662006-11-02 21:16:08 +01001528 /* special case if only one element (and less than 64KB in size) */
Stefan Richtered6ffd02008-08-14 09:28:14 +02001529 if (n == 1) {
1530 orb->misc |= ORB_SET_DATA_SIZE(sg_dma_len(sg));
1531 orb->data_descriptor_lo = sg_dma_address(sg);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001532 } else {
Stefan Richtered6ffd02008-08-14 09:28:14 +02001533 pt = &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001534
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001535 dma_sync_single_for_cpu(dmadev, cmd->sge_dma,
Stefan Richter0a77b172008-08-09 20:13:00 +02001536 sizeof(cmd->scatter_gather_element),
1537 DMA_TO_DEVICE);
1538
Stefan Richtered6ffd02008-08-14 09:28:14 +02001539 for_each_sg(sg, sg, n, i) {
1540 pt[i].high = cpu_to_be32(sg_dma_len(sg) << 16);
1541 pt[i].low = cpu_to_be32(sg_dma_address(sg));
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001542 }
1543
Stefan Richtered6ffd02008-08-14 09:28:14 +02001544 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1) |
1545 ORB_SET_DATA_SIZE(n);
1546 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richter0a77b172008-08-09 20:13:00 +02001547
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001548 dma_sync_single_for_device(dmadev, cmd->sge_dma,
Stefan Richter0a77b172008-08-09 20:13:00 +02001549 sizeof(cmd->scatter_gather_element),
1550 DMA_TO_DEVICE);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001551 }
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001552 return 0;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001553}
1554
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001555static int sbp2_create_command_orb(struct sbp2_lu *lu,
1556 struct sbp2_command_info *cmd,
1557 struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Stefan Richter0a77b172008-08-09 20:13:00 +02001559 struct device *dmadev = lu->hi->host->device.parent;
Stefan Richter138c8af2006-11-02 21:16:08 +01001560 struct sbp2_command_orb *orb = &cmd->command_orb;
Stefan Richter93c596f2008-05-04 16:54:14 +02001561 unsigned int scsi_request_bufflen = scsi_bufflen(SCpnt);
1562 enum dma_data_direction dma_dir = SCpnt->sc_data_direction;
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001563 u32 orb_direction;
1564 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Stefan Richter0a77b172008-08-09 20:13:00 +02001566 dma_sync_single_for_cpu(dmadev, cmd->command_orb_dma,
1567 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001569 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 *
1571 * NOTE: We're doing unrestricted page tables (s/g), as this is
1572 * best performance (at least with the devices I have). This means
1573 * that data_size becomes the number of s/g elements, and
1574 * page_size should be zero (for unrestricted).
1575 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001576 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1577 orb->next_ORB_lo = 0x0;
1578 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1579 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1580 orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Stefan Richter43863eb2005-12-12 23:03:24 -05001582 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001583 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001584 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001585 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001586 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001587 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001588 else {
Stefan Richter35644092006-11-02 21:16:08 +01001589 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001590 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
Stefan Richtere8ca5662006-11-02 21:16:08 +01001593 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001595 orb->data_descriptor_hi = 0x0;
1596 orb->data_descriptor_lo = 0x0;
1597 orb->misc |= ORB_SET_DIRECTION(1);
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001598 ret = 0;
1599 } else {
1600 ret = sbp2_prep_command_orb_sg(orb, lu->hi, cmd,
1601 scsi_sg_count(SCpnt),
1602 scsi_sglist(SCpnt),
1603 orb_direction, dma_dir);
1604 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001605 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Stefan Richter93c596f2008-05-04 16:54:14 +02001607 memset(orb->cdb, 0, sizeof(orb->cdb));
1608 memcpy(orb->cdb, SCpnt->cmnd, SCpnt->cmd_len);
Stefan Richter0a77b172008-08-09 20:13:00 +02001609
1610 dma_sync_single_for_device(dmadev, cmd->command_orb_dma,
1611 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001612 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Stefan Richter138c8af2006-11-02 21:16:08 +01001615static void sbp2_link_orb_command(struct sbp2_lu *lu,
1616 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
Stefan Richter138c8af2006-11-02 21:16:08 +01001618 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtercc078182006-07-23 22:12:00 +02001619 struct sbp2_command_orb *last_orb;
1620 dma_addr_t last_orb_dma;
Stefan Richter138c8af2006-11-02 21:16:08 +01001621 u64 addr = lu->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001622 quadlet_t data[2];
1623 size_t length;
1624 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Stefan Richtere8ca5662006-11-02 21:16:08 +01001626 /* check to see if there are any previous orbs to use */
Stefan Richter138c8af2006-11-02 21:16:08 +01001627 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1628 last_orb = lu->last_orb;
1629 last_orb_dma = lu->last_orb_dma;
Stefan Richtercc078182006-07-23 22:12:00 +02001630 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001632 * last_orb == NULL means: We know that the target's fetch agent
1633 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 */
Stefan Richtercc078182006-07-23 22:12:00 +02001635 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001637 data[1] = cmd->command_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001639 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 } else {
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 (very probably) not dead or in reset state right now.
1644 * We have an ORB already sent that we can append a new one to.
1645 * The target's fetch agent may or may not have read this
1646 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 */
Stefan Richter97d552e2006-12-29 23:47:04 +01001648 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001649 sizeof(struct sbp2_command_orb),
1650 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001651 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
Stefan Richtercc078182006-07-23 22:12:00 +02001652 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001654 last_orb->next_ORB_hi = 0;
Stefan Richter97d552e2006-12-29 23:47:04 +01001655 dma_sync_single_for_device(hi->host->device.parent,
1656 last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001657 sizeof(struct sbp2_command_orb),
1658 DMA_TO_DEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001659 addr += SBP2_DOORBELL_OFFSET;
1660 data[0] = 0;
1661 length = 4;
1662 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001663 lu->last_orb = &cmd->command_orb;
1664 lu->last_orb_dma = cmd->command_orb_dma;
1665 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Stefan Richter138c8af2006-11-02 21:16:08 +01001667 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
Stefan Richter09ee67a2006-08-14 18:43:00 +02001668 /*
1669 * sbp2util_node_write_no_wait failed. We certainly ran out
1670 * of transaction labels, perhaps just because there were no
1671 * context switches which gave khpsbpkt a chance to collect
1672 * free tlabels. Try again in non-atomic context. If necessary,
1673 * the workqueue job will sleep to guaranteedly get a tlabel.
1674 * We do not accept new commands until the job is over.
1675 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001676 scsi_block_requests(lu->shost);
1677 PREPARE_WORK(&lu->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001678 last_orb ? sbp2util_write_doorbell:
Stefan Richterec9b7e12006-12-07 23:23:25 +01001679 sbp2util_write_orb_pointer);
Stefan Richter138c8af2006-11-02 21:16:08 +01001680 schedule_work(&lu->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Stefan Richter138c8af2006-11-02 21:16:08 +01001684static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 void (*done)(struct scsi_cmnd *))
1686{
Stefan Richter138c8af2006-11-02 21:16:08 +01001687 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Stefan Richter138c8af2006-11-02 21:16:08 +01001689 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1690 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -05001691 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001693 if (sbp2_create_command_orb(lu, cmd, SCpnt))
1694 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Stefan Richtercd8c79f2008-08-09 20:16:24 +02001696 sbp2_link_orb_command(lu, cmd);
Stefan Richtera237f352005-11-07 06:31:39 -05001697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698}
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 * Translates SBP-2 status into SCSI sense data for check conditions
1702 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001703static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1704 unchar *sense_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001706 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 sense_data[0] = 0x70;
1708 sense_data[1] = 0x0;
1709 sense_data[2] = sbp2_status[9];
1710 sense_data[3] = sbp2_status[12];
1711 sense_data[4] = sbp2_status[13];
1712 sense_data[5] = sbp2_status[14];
1713 sense_data[6] = sbp2_status[15];
1714 sense_data[7] = 10;
1715 sense_data[8] = sbp2_status[16];
1716 sense_data[9] = sbp2_status[17];
1717 sense_data[10] = sbp2_status[18];
1718 sense_data[11] = sbp2_status[19];
1719 sense_data[12] = sbp2_status[10];
1720 sense_data[13] = sbp2_status[11];
1721 sense_data[14] = sbp2_status[20];
1722 sense_data[15] = sbp2_status[21];
1723
Stefan Richtere8ca5662006-11-02 21:16:08 +01001724 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
Stefan Richter3e98eab42006-07-23 22:16:00 +02001727static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1728 int destid, quadlet_t *data, u64 addr,
1729 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Stefan Richterca0c7452006-11-02 21:16:08 +01001731 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001732 struct sbp2_lu *lu = NULL, *lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001734 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
Stefan Richter138c8af2006-11-02 21:16:08 +01001736 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001737 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Stefan Richter60657722006-07-23 22:18:00 +02001739 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1740 SBP2_ERR("Wrong size of status block");
1741 return RCODE_ADDRESS_ERROR;
1742 }
1743 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001745 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001748 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001750 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001752
1753 /* Find the unit which wrote the status. */
Stefan Richter261b5f62007-08-11 11:52:08 +02001754 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +01001755 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1756 if (lu_tmp->ne->nodeid == nodeid &&
1757 lu_tmp->status_fifo_addr == addr) {
1758 lu = lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 break;
1760 }
1761 }
Stefan Richter261b5f62007-08-11 11:52:08 +02001762 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1763
Stefan Richter138c8af2006-11-02 21:16:08 +01001764 if (unlikely(!lu)) {
1765 SBP2_ERR("lu is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001766 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768
Stefan Richter138c8af2006-11-02 21:16:08 +01001769 /* Put response into lu status fifo buffer. The first two bytes
Stefan Richter3e98eab42006-07-23 22:16:00 +02001770 * come in big endian bit order. Often the target writes only a
1771 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001772 * is implied to be zeros. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001773 sb = &lu->status_block;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001774 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1775 memcpy(sb, data, length);
1776 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Stefan Richtere8ca5662006-11-02 21:16:08 +01001778 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001779 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
Stefan Richter138c8af2006-11-02 21:16:08 +01001780 cmd = NULL;
Stefan Richter60657722006-07-23 22:18:00 +02001781 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001782 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1783 if (cmd) {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001784 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001785 /*
1786 * FIXME: If the src field in the status is 1, the ORB DMA must
1787 * not be reused until status for a subsequent ORB is received.
1788 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001789 SCpnt = cmd->Current_SCpnt;
1790 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1791 sbp2util_mark_command_completed(lu, cmd);
1792 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001795 u32 h = sb->ORB_offset_hi_misc;
1796 u32 r = STATUS_GET_RESP(h);
1797
1798 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001799 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001800 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001801 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001802 r == RESP_STATUS_TRANSPORT_FAILURE ?
1803 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001804 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001805 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001806
Stefan Richteredf1fb22006-11-02 21:16:08 +01001807 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab42006-07-23 22:16:00 +02001808 scsi_status = sbp2_status_to_sense_data(
1809 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001810
Stefan Richteredf1fb22006-11-02 21:16:08 +01001811 if (STATUS_TEST_DEAD(h))
Stefan Richter138c8af2006-11-02 21:16:08 +01001812 sbp2_agent_reset(lu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814
Stefan Richtere8ca5662006-11-02 21:16:08 +01001815 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001816 * are none, we know that the fetch agent left the active state
1817 * _and_ that we did not reactivate it yet. Therefore clear
1818 * last_orb so that next time we write directly to the
1819 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001820 * to refetch the next_ORB. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001821 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1822 if (list_empty(&lu->cmd_orb_inuse))
1823 lu->last_orb = NULL;
1824 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001827 /* It's probably status after a management request. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001828 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1829 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1830 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1831 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1832 lu->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001833 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
1836
Stefan Richteredf1fb22006-11-02 21:16:08 +01001837 if (SCpnt)
Stefan Richter138c8af2006-11-02 21:16:08 +01001838 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1839 cmd->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001840 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843/**************************************
1844 * SCSI interface related section
1845 **************************************/
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1848 void (*done)(struct scsi_cmnd *))
1849{
Stefan Richter138c8af2006-11-02 21:16:08 +01001850 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001851 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001852 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Stefan Richter138c8af2006-11-02 21:16:08 +01001854 if (unlikely(!sbp2util_node_is_available(lu)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001855 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Stefan Richter138c8af2006-11-02 21:16:08 +01001857 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Stefan Richter5796aa72006-11-02 21:16:08 +01001859 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001860 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001861 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863
Stefan Richtere8ca5662006-11-02 21:16:08 +01001864 /* Multiple units are currently represented to the SCSI core as separate
1865 * targets, not as one target with multiple LUs. Therefore return
1866 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001867 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001868 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Stefan Richter138c8af2006-11-02 21:16:08 +01001870 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001872 result = DID_BUS_BUSY << 16;
1873 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
Stefan Richtere8ca5662006-11-02 21:16:08 +01001876 /* Bidirectional commands are not yet implemented,
1877 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001878 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001879 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1880 result = DID_ERROR << 16;
1881 goto done;
1882 }
1883
Stefan Richter138c8af2006-11-02 21:16:08 +01001884 if (sbp2_send_command(lu, SCpnt, done)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 SBP2_ERR("Error sending SCSI command");
Stefan Richter138c8af2006-11-02 21:16:08 +01001886 sbp2scsi_complete_command(lu,
1887 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 SCpnt, done);
1889 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001890 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Jody McIntyreabd559b2005-09-30 11:59:06 -07001892done:
1893 SCpnt->result = result;
1894 done(SCpnt);
1895 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896}
1897
Stefan Richter138c8af2006-11-02 21:16:08 +01001898static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +01001901 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001902 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Stefan Richter138c8af2006-11-02 21:16:08 +01001904 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1905 while (!list_empty(&lu->cmd_orb_inuse)) {
1906 lh = lu->cmd_orb_inuse.next;
1907 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter138c8af2006-11-02 21:16:08 +01001908 sbp2util_mark_command_completed(lu, cmd);
1909 if (cmd->Current_SCpnt) {
1910 cmd->Current_SCpnt->result = status << 16;
1911 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
1913 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001914 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 return;
1917}
1918
1919/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001920 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001922static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1923 struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 void (*done)(struct scsi_cmnd *))
1925{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if (!SCpnt) {
1927 SBP2_ERR("SCpnt is NULL");
1928 return;
1929 }
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001932 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001933 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001934 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Stefan Richtera237f352005-11-07 06:31:39 -05001936 case SBP2_SCSI_STATUS_BUSY:
1937 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1938 SCpnt->result = DID_BUS_BUSY << 16;
1939 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Stefan Richtera237f352005-11-07 06:31:39 -05001941 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001942 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001943 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Stefan Richtera237f352005-11-07 06:31:39 -05001945 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1946 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1947 SCpnt->result = DID_NO_CONNECT << 16;
1948 scsi_print_command(SCpnt);
1949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Stefan Richtera237f352005-11-07 06:31:39 -05001951 case SBP2_SCSI_STATUS_CONDITION_MET:
1952 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1953 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1954 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1955 SCpnt->result = DID_ERROR << 16;
1956 scsi_print_command(SCpnt);
1957 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Stefan Richtera237f352005-11-07 06:31:39 -05001959 default:
1960 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1961 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963
Stefan Richtere8ca5662006-11-02 21:16:08 +01001964 /* If a bus reset is in progress and there was an error, complete
1965 * the command as busy so that it will get retried. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001966 if (!hpsb_node_entry_valid(lu->ne)
Stefan Richtera237f352005-11-07 06:31:39 -05001967 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 SBP2_ERR("Completing command with busy (bus reset)");
1969 SCpnt->result = DID_BUS_BUSY << 16;
1970 }
1971
Stefan Richtere8ca5662006-11-02 21:16:08 +01001972 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05001973 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
Jody McIntyreabd559b2005-09-30 11:59:06 -07001976static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1977{
Stefan Richter138c8af2006-11-02 21:16:08 +01001978 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richtera80614d2006-02-14 22:04:19 -05001979
Stefan Richteref774c12008-02-17 14:57:10 +01001980 if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0)
1981 return -ENODEV;
1982
Stefan Richter138c8af2006-11-02 21:16:08 +01001983 lu->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02001984 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05001985
Stefan Richtera4b47d62008-01-27 22:32:22 +01001986 /* SBP-2 requires quadlet alignment of the data buffers. */
1987 blk_queue_update_dma_alignment(sdev->request_queue, 4 - 1);
James Bottomley465ff312008-01-01 10:00:10 -06001988
Stefan Richter138c8af2006-11-02 21:16:08 +01001989 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05001990 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001991 return 0;
1992}
1993
Jody McIntyreabd559b2005-09-30 11:59:06 -07001994static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Stefan Richter138c8af2006-11-02 21:16:08 +01001996 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richter24d3bf82006-05-15 22:04:59 +02001997
Ben Collins365c7862005-11-07 06:31:24 -05001998 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001999
Stefan Richter82f06e82008-05-11 00:37:14 +02002000 if (sbp2_exclusive_login)
2001 sdev->manage_start_stop = 1;
Stefan Richter1a74bc62007-01-10 20:17:15 +01002002 if (sdev->type == TYPE_ROM)
2003 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002004 if (sdev->type == TYPE_DISK &&
Stefan Richter138c8af2006-11-02 21:16:08 +01002005 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richter24d3bf82006-05-15 22:04:59 +02002006 sdev->skip_ms_page_8 = 1;
Stefan Richter138c8af2006-11-02 21:16:08 +01002007 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richtere9a1c522006-05-15 22:06:37 +02002008 sdev->fix_capacity = 1;
Stefan Richter37191222008-05-11 00:35:55 +02002009 if (lu->workarounds & SBP2_WORKAROUND_POWER_CONDITION)
2010 sdev->start_stop_pwr_cond = 1;
Stefan Richter4e6343a2007-12-16 17:31:26 +01002011 if (lu->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
2012 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
Stefan Richtered6ffd02008-08-14 09:28:14 +02002013
2014 blk_queue_max_segment_size(sdev->request_queue, SBP2_MAX_SEG_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return 0;
2016}
2017
Jody McIntyreabd559b2005-09-30 11:59:06 -07002018static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2019{
Stefan Richter138c8af2006-11-02 21:16:08 +01002020 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002021 return;
2022}
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002025 * Called by scsi stack when something has really gone wrong.
2026 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 */
2028static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2029{
Stefan Richter138c8af2006-11-02 21:16:08 +01002030 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richter138c8af2006-11-02 21:16:08 +01002031 struct sbp2_command_info *cmd;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002032 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Stefan Richter35644092006-11-02 21:16:08 +01002034 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 scsi_print_command(SCpnt);
2036
Stefan Richter138c8af2006-11-02 21:16:08 +01002037 if (sbp2util_node_is_available(lu)) {
2038 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Stefan Richter23077f12006-09-11 20:17:14 +02002040 /* Return a matching command structure to the free pool. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002041 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2042 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2043 if (cmd) {
Stefan Richter138c8af2006-11-02 21:16:08 +01002044 sbp2util_mark_command_completed(lu, cmd);
2045 if (cmd->Current_SCpnt) {
2046 cmd->Current_SCpnt->result = DID_ABORT << 16;
2047 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
2049 }
Stefan Richter138c8af2006-11-02 21:16:08 +01002050 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Stefan Richter138c8af2006-11-02 21:16:08 +01002052 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054
Stefan Richtera237f352005-11-07 06:31:39 -05002055 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056}
2057
2058/*
2059 * Called by scsi stack when something has really gone wrong.
2060 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002061static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
Stefan Richter138c8af2006-11-02 21:16:08 +01002063 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Stefan Richter35644092006-11-02 21:16:08 +01002065 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Stefan Richter138c8af2006-11-02 21:16:08 +01002067 if (sbp2util_node_is_available(lu)) {
Stefan Richter35644092006-11-02 21:16:08 +01002068 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter138c8af2006-11-02 21:16:08 +01002069 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
2071
Jody McIntyreabd559b2005-09-30 11:59:06 -07002072 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002073}
2074
Stefan Richtera237f352005-11-07 06:31:39 -05002075static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2076 struct device_attribute *attr,
2077 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
2079 struct scsi_device *sdev;
Stefan Richter138c8af2006-11-02 21:16:08 +01002080 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 if (!(sdev = to_scsi_device(dev)))
2083 return 0;
2084
Stefan Richter138c8af2006-11-02 21:16:08 +01002085 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return 0;
2087
Stefan Richterd7794c82007-05-27 13:17:15 +02002088 if (sbp2_long_sysfs_ieee1394_id)
2089 return sprintf(buf, "%016Lx:%06x:%04x\n",
2090 (unsigned long long)lu->ne->guid,
2091 lu->ud->directory_id, ORB_SET_LUN(lu->lun));
2092 else
2093 return sprintf(buf, "%016Lx:%d:%d\n",
2094 (unsigned long long)lu->ne->guid,
2095 lu->ud->id, ORB_SET_LUN(lu->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2099MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2100MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2101MODULE_LICENSE("GPL");
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103static int sbp2_module_init(void)
2104{
2105 int ret;
2106
Stefan Richterca0c7452006-11-02 21:16:08 +01002107 if (sbp2_serialize_io) {
2108 sbp2_shost_template.can_queue = 1;
2109 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
2111
Stefan Richterca0c7452006-11-02 21:16:08 +01002112 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 ret = hpsb_register_protocol(&sbp2_driver);
2116 if (ret) {
2117 SBP2_ERR("Failed to register protocol");
2118 hpsb_unregister_highlevel(&sbp2_highlevel);
2119 return ret;
2120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return 0;
2122}
2123
2124static void __exit sbp2_module_exit(void)
2125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 hpsb_unregister_highlevel(&sbp2_highlevel);
2128}
2129
2130module_init(sbp2_module_init);
2131module_exit(sbp2_module_exit);