blob: 34280c7eb73d91a2a09ca88ef38ac0e80c17dee1 [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 *
32 * You may access any attached SBP-2 storage devices as if they were SCSI
33 * devices (e.g. mount /dev/sda1, fdisk, mkfs, etc.).
34 *
35 * Current Issues:
36 *
37 * - Error Handling: SCSI aborts and bus reset requests are handled somewhat
38 * but the code needs additional debugging.
39 */
40
Stefan Richter902abed2006-08-14 18:56:00 +020041#include <linux/blkdev.h>
42#include <linux/compiler.h>
43#include <linux/delay.h>
44#include <linux/device.h>
45#include <linux/dma-mapping.h>
46#include <linux/gfp.h>
47#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/kernel.h>
49#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/module.h>
51#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/pci.h>
Stefan Richter902abed2006-08-14 18:56:00 +020053#include <linux/slab.h>
54#include <linux/spinlock.h>
55#include <linux/stat.h>
56#include <linux/string.h>
57#include <linux/stringify.h>
58#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020059#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020062#include <asm/errno.h>
63#include <asm/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/scatterlist.h>
Stefan Richter902abed2006-08-14 18:56:00 +020065#include <asm/system.h>
66#include <asm/types.h>
67
68#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
69#include <asm/io.h> /* for bus_to_virt */
70#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#include <scsi/scsi.h>
73#include <scsi/scsi_cmnd.h>
74#include <scsi/scsi_dbg.h>
75#include <scsi/scsi_device.h>
76#include <scsi/scsi_host.h>
77
78#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020080#include "hosts.h"
81#include "ieee1394.h"
82#include "ieee1394_core.h"
83#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +020085#include "ieee1394_types.h"
86#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include "sbp2.h"
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Module load parameter definitions
91 */
92
93/*
94 * Change max_speed on module load if you have a bad IEEE-1394
95 * controller that has trouble running 2KB packets at 400mb.
96 *
97 * NOTE: On certain OHCI parts I have seen short packets on async transmit
98 * (probably due to PCI latency/throughput issues with the part). You can
99 * bump down the speed if you are running into problems.
100 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100101static int sbp2_max_speed = IEEE1394_SPEED_MAX;
102module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter28b06672006-11-02 21:16:08 +0100103MODULE_PARM_DESC(max_speed, "Force max speed "
104 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/*
107 * Set serialize_io to 1 if you'd like only one scsi command sent
108 * down to us at a time (debugging). This might be necessary for very
109 * badly behaved sbp2 devices.
Jody McIntyre2bab3592005-09-30 11:59:07 -0700110 *
111 * TODO: Make this configurable per device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100113static int sbp2_serialize_io = 1;
114module_param_named(serialize_io, sbp2_serialize_io, int, 0444);
115MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers "
116 "(default = 1, faster = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/*
119 * Bump up max_sectors if you'd like to support very large sized
120 * transfers. Please note that some older sbp2 bridge chips are broken for
121 * transfers greater or equal to 128KB. Default is a value of 255
122 * sectors, or just under 128KB (at 512 byte sector size). I can note that
123 * the Oxsemi sbp2 chipsets have no problems supporting very large
124 * transfer sizes.
125 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100126static int sbp2_max_sectors = SBP2_MAX_SECTORS;
127module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
128MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
129 "(default = " __stringify(SBP2_MAX_SECTORS) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/*
132 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
133 * do an exclusive login, as it's generally unsafe to have two hosts
134 * talking to a single sbp2 device at the same time (filesystem coherency,
135 * etc.). If you're running an sbp2 device that supports multiple logins,
136 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400137 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
138 * File System, or Lustre, then set exclusive_login to zero.
139 *
140 * So far only bridges from Oxford Semiconductor are known to support
141 * concurrent logins. Depending on firmware, four or two concurrent logins
142 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100144static int sbp2_exclusive_login = 1;
145module_param_named(exclusive_login, sbp2_exclusive_login, int, 0644);
146MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
147 "(default = 1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200150 * If any of the following workarounds is required for your device to work,
151 * please submit the kernel messages logged by sbp2 to the linux1394-devel
152 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200154 * - 128kB max transfer
155 * Limit transfer size. Necessary for some old bridges.
156 *
157 * - 36 byte inquiry
158 * When scsi_mod probes the device, let the inquiry command look like that
159 * from MS Windows.
160 *
161 * - skip mode page 8
162 * Suppress sending of mode_sense for mode page 8 if the device pretends to
163 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200164 *
165 * - fix capacity
166 * Tell sd_mod to correct the last sector number reported by read_capacity.
167 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
168 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200169 *
170 * - override internal blacklist
171 * Instead of adding to the built-in blacklist, use only the workarounds
172 * specified in the module load parameter.
173 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200175static int sbp2_default_workarounds;
176module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
177MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
178 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
179 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
180 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200181 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200182 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200183 ", or a combination)");
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Stefan Richteredf1fb22006-11-02 21:16:08 +0100186#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
187#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
190 * Globals
191 */
Stefan Richterea42ea02006-11-02 21:16:08 +0100192static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *, u32);
193static void sbp2scsi_complete_command(struct scsi_id_instance_data *, u32,
194 struct scsi_cmnd *,
195 void (*)(struct scsi_cmnd *));
196static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *);
197static int sbp2_start_device(struct scsi_id_instance_data *);
198static void sbp2_remove_device(struct scsi_id_instance_data *);
199static int sbp2_login_device(struct scsi_id_instance_data *);
200static int sbp2_reconnect_device(struct scsi_id_instance_data *);
201static int sbp2_logout_device(struct scsi_id_instance_data *);
202static void sbp2_host_reset(struct hpsb_host *);
203static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
204 u64, size_t, u16);
205static int sbp2_agent_reset(struct scsi_id_instance_data *, int);
206static void sbp2_parse_unit_directory(struct scsi_id_instance_data *,
207 struct unit_directory *);
208static int sbp2_set_busy_timeout(struct scsi_id_instance_data *);
209static int sbp2_max_speed_and_size(struct scsi_id_instance_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100215 .name = SBP2_DEVICE_NAME,
216 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
219static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100220 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
223#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100224static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
225 u64, size_t, u16);
226static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
227 size_t, u16);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100230 .read = sbp2_handle_physdma_read,
231 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
233#endif
234
Stefan Richterea42ea02006-11-02 21:16:08 +0100235
236/*
237 * Interface to driver core and IEEE 1394 core
238 */
239static struct ieee1394_device_id sbp2_id_table[] = {
240 {
241 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
242 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
243 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
244 {}
245};
246MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
247
248static int sbp2_probe(struct device *);
249static int sbp2_remove(struct device *);
250static int sbp2_update(struct unit_directory *);
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252static struct hpsb_protocol_driver sbp2_driver = {
253 .name = "SBP2 Driver",
254 .id_table = sbp2_id_table,
255 .update = sbp2_update,
256 .driver = {
257 .name = SBP2_DEVICE_NAME,
258 .bus = &ieee1394_bus_type,
259 .probe = sbp2_probe,
260 .remove = sbp2_remove,
261 },
262};
263
Stefan Richterea42ea02006-11-02 21:16:08 +0100264
265/*
266 * Interface to SCSI core
267 */
268static int sbp2scsi_queuecommand(struct scsi_cmnd *,
269 void (*)(struct scsi_cmnd *));
270static int sbp2scsi_abort(struct scsi_cmnd *);
271static int sbp2scsi_reset(struct scsi_cmnd *);
272static int sbp2scsi_slave_alloc(struct scsi_device *);
273static int sbp2scsi_slave_configure(struct scsi_device *);
274static void sbp2scsi_slave_destroy(struct scsi_device *);
275static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
276 struct device_attribute *, char *);
277
278static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
279
280static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
281 &dev_attr_ieee1394_id,
282 NULL
283};
284
Stefan Richterca0c7452006-11-02 21:16:08 +0100285static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100286 .module = THIS_MODULE,
287 .name = "SBP-2 IEEE-1394",
288 .proc_name = SBP2_DEVICE_NAME,
289 .queuecommand = sbp2scsi_queuecommand,
290 .eh_abort_handler = sbp2scsi_abort,
291 .eh_device_reset_handler = sbp2scsi_reset,
292 .slave_alloc = sbp2scsi_slave_alloc,
293 .slave_configure = sbp2scsi_slave_configure,
294 .slave_destroy = sbp2scsi_slave_destroy,
295 .this_id = -1,
296 .sg_tablesize = SG_ALL,
297 .use_clustering = ENABLE_CLUSTERING,
298 .cmd_per_lun = SBP2_MAX_CMDS,
299 .can_queue = SBP2_MAX_CMDS,
300 .emulated = 1,
301 .sdev_attrs = sbp2_sysfs_sdev_attrs,
302};
303
304
Stefan Richtera80614d2006-02-14 22:04:19 -0500305/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200306 * List of devices with known bugs.
307 *
308 * The firmware_revision field, masked with 0xffff00, is the best indicator
309 * for the type of bridge chip of a device. It yields a few false positives
310 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500311 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200312static const struct {
313 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200314 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200315 unsigned workarounds;
316} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400317 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200318 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400319 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200320 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
321 SBP2_WORKAROUND_MODE_SENSE_8,
322 },
323 /* Initio bridges, actually only needed for some older ones */ {
324 .firmware_revision = 0x000200,
325 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
326 },
327 /* Symbios bridge */ {
328 .firmware_revision = 0xa0b800,
329 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200330 },
331 /*
332 * Note about the following Apple iPod blacklist entries:
333 *
334 * There are iPods (2nd gen, 3rd gen) with model_id==0. Since our
335 * matching logic treats 0 as a wildcard, we cannot match this ID
336 * without rewriting the matching routine. Fortunately these iPods
337 * do not feature the read_capacity bug according to one report.
338 * Read_capacity behaviour as well as model_id could change due to
339 * Apple-supplied firmware updates though.
340 */
341 /* iPod 4th generation */ {
342 .firmware_revision = 0x0a2700,
343 .model_id = 0x000021,
344 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
345 },
346 /* iPod mini */ {
347 .firmware_revision = 0x0a2700,
348 .model_id = 0x000023,
349 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
350 },
351 /* iPod Photo */ {
352 .firmware_revision = 0x0a2700,
353 .model_id = 0x00007e,
354 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/**************************************
359 * General utility functions
360 **************************************/
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#ifndef __BIG_ENDIAN
363/*
364 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
365 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400366static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 u32 *temp = buffer;
369
370 for (length = (length >> 2); length--; )
371 temp[length] = be32_to_cpu(temp[length]);
372
373 return;
374}
375
376/*
377 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
378 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400379static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 u32 *temp = buffer;
382
383 for (length = (length >> 2); length--; )
384 temp[length] = cpu_to_be32(temp[length]);
385
386 return;
387}
388#else /* BIG_ENDIAN */
389/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200390#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
391#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#endif
393
Stefan Richterca0c7452006-11-02 21:16:08 +0100394static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Stefan Richtere8398bb2006-07-23 22:19:00 +0200396/*
397 * Waits for completion of an SBP-2 access request.
398 * Returns nonzero if timed out or prematurely interrupted.
399 */
400static int sbp2util_access_timeout(struct scsi_id_instance_data *scsi_id,
401 int timeout)
402{
Stefan Richterca0c7452006-11-02 21:16:08 +0100403 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200404
Stefan Richterca0c7452006-11-02 21:16:08 +0100405 leftover = wait_event_interruptible_timeout(
406 sbp2_access_wq, scsi_id->access_complete, timeout);
Stefan Richtere8398bb2006-07-23 22:19:00 +0200407 scsi_id->access_complete = 0;
408 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411static void sbp2_free_packet(struct hpsb_packet *packet)
412{
413 hpsb_free_tlabel(packet);
414 hpsb_free_packet(packet);
415}
416
Stefan Richtere8ca5662006-11-02 21:16:08 +0100417/*
418 * This is much like hpsb_node_write(), except it ignores the response
419 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
421static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richtera237f352005-11-07 06:31:39 -0500422 quadlet_t *buffer, size_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 struct hpsb_packet *packet;
425
426 packet = hpsb_make_writepacket(ne->host, ne->nodeid,
427 addr, buffer, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500428 if (!packet)
429 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Stefan Richtera237f352005-11-07 06:31:39 -0500431 hpsb_set_packet_complete_task(packet,
432 (void (*)(void *))sbp2_free_packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 packet);
434
435 hpsb_node_fill_packet(ne, packet);
436
Stefan Richtera237f352005-11-07 06:31:39 -0500437 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 sbp2_free_packet(packet);
439 return -EIO;
440 }
441
442 return 0;
443}
444
Stefan Richter09ee67a2006-08-14 18:43:00 +0200445static void sbp2util_notify_fetch_agent(struct scsi_id_instance_data *scsi_id,
446 u64 offset, quadlet_t *data, size_t len)
447{
448 /*
449 * There is a small window after a bus reset within which the node
450 * entry's generation is current but the reconnect wasn't completed.
451 */
Stefan Richter2cccbb52006-08-14 18:59:00 +0200452 if (unlikely(atomic_read(&scsi_id->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200453 return;
454
455 if (hpsb_node_write(scsi_id->ne,
Stefan Richterca0c7452006-11-02 21:16:08 +0100456 scsi_id->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200457 data, len))
458 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
459 /*
460 * Now accept new SCSI commands, unless a bus reset happended during
461 * hpsb_node_write.
462 */
Stefan Richter2cccbb52006-08-14 18:59:00 +0200463 if (likely(atomic_read(&scsi_id->state) != SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200464 scsi_unblock_requests(scsi_id->scsi_host);
465}
466
David Howellsc4028952006-11-22 14:57:56 +0000467static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200468{
469 quadlet_t data[2];
470
Stefan Richterd19c7762006-12-07 22:40:33 +0100471 data[0] = ORB_SET_NODE_ID(
472 (container_of(work, struct scsi_id_instance_data, protocol_work))->hi->host->node_id);
473 data[1] = (container_of(work, struct scsi_id_instance_data, protocol_work))->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200474 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterd19c7762006-12-07 22:40:33 +0100475 sbp2util_notify_fetch_agent(container_of(work, struct scsi_id_instance_data, protocol_work), SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200476}
477
David Howellsc4028952006-11-22 14:57:56 +0000478static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200479{
Stefan Richterd19c7762006-12-07 22:40:33 +0100480 sbp2util_notify_fetch_agent(container_of(work, struct scsi_id_instance_data, protocol_work), SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id)
484{
Stefan Richterca0c7452006-11-02 21:16:08 +0100485 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 int i;
487 unsigned long flags, orbs;
488 struct sbp2_command_info *command;
489
Stefan Richterca0c7452006-11-02 21:16:08 +0100490 orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Stefan Richterca0c7452006-11-02 21:16:08 +0100492 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 for (i = 0; i < orbs; i++) {
Stefan Richter85511582005-11-07 06:31:45 -0500494 command = kzalloc(sizeof(*command), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (!command) {
Stefan Richterca0c7452006-11-02 21:16:08 +0100496 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock,
Stefan Richtera237f352005-11-07 06:31:39 -0500497 flags);
498 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 command->command_orb_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500501 pci_map_single(hi->host->pdev, &command->command_orb,
502 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +0200503 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 command->sge_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500505 pci_map_single(hi->host->pdev,
506 &command->scatter_gather_element,
507 sizeof(command->scatter_gather_element),
508 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 INIT_LIST_HEAD(&command->list);
Stefan Richterca0c7452006-11-02 21:16:08 +0100510 list_add_tail(&command->list, &scsi_id->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Stefan Richterca0c7452006-11-02 21:16:08 +0100512 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return 0;
514}
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id)
517{
518 struct hpsb_host *host = scsi_id->hi->host;
519 struct list_head *lh, *next;
520 struct sbp2_command_info *command;
521 unsigned long flags;
522
Stefan Richterca0c7452006-11-02 21:16:08 +0100523 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
524 if (!list_empty(&scsi_id->cmd_orb_completed)) {
525 list_for_each_safe(lh, next, &scsi_id->cmd_orb_completed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 command = list_entry(lh, struct sbp2_command_info, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 pci_unmap_single(host->pdev, command->command_orb_dma,
528 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +0200529 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 pci_unmap_single(host->pdev, command->sge_dma,
531 sizeof(command->scatter_gather_element),
532 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 kfree(command);
534 }
535 }
Stefan Richterca0c7452006-11-02 21:16:08 +0100536 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return;
538}
539
540/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100541 * Finds the sbp2_command for a given outstanding command ORB.
542 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 */
544static struct sbp2_command_info *sbp2util_find_command_for_orb(
545 struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
546{
547 struct sbp2_command_info *command;
548 unsigned long flags;
549
Stefan Richterca0c7452006-11-02 21:16:08 +0100550 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
551 if (!list_empty(&scsi_id->cmd_orb_inuse)) {
552 list_for_each_entry(command, &scsi_id->cmd_orb_inuse, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (command->command_orb_dma == orb) {
Stefan Richterca0c7452006-11-02 21:16:08 +0100554 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500555 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557 }
558 }
Stefan Richterca0c7452006-11-02 21:16:08 +0100559 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500560 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100564 * Finds the sbp2_command for a given outstanding SCpnt.
565 * Only looks at the in-use list.
Stefan Richterca0c7452006-11-02 21:16:08 +0100566 * Must be called with scsi_id->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200568static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
569 struct scsi_id_instance_data *scsi_id, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 struct sbp2_command_info *command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Stefan Richterca0c7452006-11-02 21:16:08 +0100573 if (!list_empty(&scsi_id->cmd_orb_inuse))
574 list_for_each_entry(command, &scsi_id->cmd_orb_inuse, list)
Stefan Richter24c7cd02006-04-01 21:11:41 +0200575 if (command->Current_SCpnt == SCpnt)
Stefan Richtera237f352005-11-07 06:31:39 -0500576 return command;
Stefan Richtera237f352005-11-07 06:31:39 -0500577 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580static struct sbp2_command_info *sbp2util_allocate_command_orb(
581 struct scsi_id_instance_data *scsi_id,
582 struct scsi_cmnd *Current_SCpnt,
583 void (*Current_done)(struct scsi_cmnd *))
584{
585 struct list_head *lh;
586 struct sbp2_command_info *command = NULL;
587 unsigned long flags;
588
Stefan Richterca0c7452006-11-02 21:16:08 +0100589 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
590 if (!list_empty(&scsi_id->cmd_orb_completed)) {
591 lh = scsi_id->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 list_del(lh);
593 command = list_entry(lh, struct sbp2_command_info, list);
594 command->Current_done = Current_done;
595 command->Current_SCpnt = Current_SCpnt;
Stefan Richterca0c7452006-11-02 21:16:08 +0100596 list_add_tail(&command->list, &scsi_id->cmd_orb_inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 } else {
Stefan Richterd024ebc2006-03-28 20:03:55 -0500598 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
Stefan Richterca0c7452006-11-02 21:16:08 +0100600 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500601 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604static void sbp2util_free_command_dma(struct sbp2_command_info *command)
605{
606 struct scsi_id_instance_data *scsi_id =
607 (struct scsi_id_instance_data *)command->Current_SCpnt->device->host->hostdata[0];
608 struct hpsb_host *host;
609
610 if (!scsi_id) {
Stefan Richterd024ebc2006-03-28 20:03:55 -0500611 SBP2_ERR("%s: scsi_id == NULL", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return;
613 }
614
615 host = scsi_id->ud->ne->host;
616
617 if (command->cmd_dma) {
Stefan Richteredf1fb22006-11-02 21:16:08 +0100618 if (command->dma_type == CMD_DMA_SINGLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 pci_unmap_single(host->pdev, command->cmd_dma,
620 command->dma_size, command->dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100621 else if (command->dma_type == CMD_DMA_PAGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 pci_unmap_page(host->pdev, command->cmd_dma,
623 command->dma_size, command->dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100624 /* XXX: Check for CMD_DMA_NONE bug */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 command->dma_type = CMD_DMA_NONE;
626 command->cmd_dma = 0;
627 }
628
629 if (command->sge_buffer) {
630 pci_unmap_sg(host->pdev, command->sge_buffer,
631 command->dma_size, command->dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 command->sge_buffer = NULL;
633 }
634}
635
636/*
637 * This function moves a command to the completed orb list.
Stefan Richterca0c7452006-11-02 21:16:08 +0100638 * Must be called with scsi_id->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200640static void sbp2util_mark_command_completed(
641 struct scsi_id_instance_data *scsi_id,
642 struct sbp2_command_info *command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 list_del(&command->list);
645 sbp2util_free_command_dma(command);
Stefan Richterca0c7452006-11-02 21:16:08 +0100646 list_add_tail(&command->list, &scsi_id->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Jody McIntyreabd559b2005-09-30 11:59:06 -0700649/*
650 * Is scsi_id valid? Is the 1394 node still present?
651 */
652static inline int sbp2util_node_is_available(struct scsi_id_instance_data *scsi_id)
653{
654 return scsi_id && scsi_id->ne && !scsi_id->ne->in_limbo;
655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/*********************************************
658 * IEEE-1394 core driver stack related section
659 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661static int sbp2_probe(struct device *dev)
662{
663 struct unit_directory *ud;
664 struct scsi_id_instance_data *scsi_id;
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 ud = container_of(dev, struct unit_directory, device);
667
668 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
669 * instead. */
670 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
671 return -ENODEV;
672
Stefan Richtera237f352005-11-07 06:31:39 -0500673 scsi_id = sbp2_alloc_device(ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Stefan Richtera237f352005-11-07 06:31:39 -0500675 if (!scsi_id)
676 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Stefan Richtera237f352005-11-07 06:31:39 -0500678 sbp2_parse_unit_directory(scsi_id, ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Stefan Richtera237f352005-11-07 06:31:39 -0500680 return sbp2_start_device(scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
683static int sbp2_remove(struct device *dev)
684{
685 struct unit_directory *ud;
686 struct scsi_id_instance_data *scsi_id;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700687 struct scsi_device *sdev;
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 scsi_id = ud->device.driver_data;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700691 if (!scsi_id)
692 return 0;
693
Stefan Richterbf637ec2006-01-31 00:13:06 -0500694 if (scsi_id->scsi_host) {
695 /* Get rid of enqueued commands if there is no chance to
696 * send them. */
697 if (!sbp2util_node_is_available(scsi_id))
698 sbp2scsi_complete_all_commands(scsi_id, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100699 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500700 * highlevel drivers which would deadlock if blocked. */
Stefan Richter2cccbb52006-08-14 18:59:00 +0200701 atomic_set(&scsi_id->state, SBP2LU_STATE_IN_SHUTDOWN);
Jody McIntyreabd559b2005-09-30 11:59:06 -0700702 scsi_unblock_requests(scsi_id->scsi_host);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500703 }
Jody McIntyreabd559b2005-09-30 11:59:06 -0700704 sdev = scsi_id->sdev;
705 if (sdev) {
706 scsi_id->sdev = NULL;
707 scsi_remove_device(sdev);
708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 sbp2_logout_device(scsi_id);
711 sbp2_remove_device(scsi_id);
712
713 return 0;
714}
715
716static int sbp2_update(struct unit_directory *ud)
717{
718 struct scsi_id_instance_data *scsi_id = ud->device.driver_data;
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (sbp2_reconnect_device(scsi_id)) {
Stefan Richtere8ca5662006-11-02 21:16:08 +0100721 /* Reconnect has failed. Perhaps we didn't reconnect fast
722 * enough. Try a regular login, but first log out just in
723 * case of any weirdness. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 sbp2_logout_device(scsi_id);
725
726 if (sbp2_login_device(scsi_id)) {
727 /* Login failed too, just fail, and the backend
728 * will call our sbp2_remove for us */
729 SBP2_ERR("Failed to reconnect to sbp2 device!");
730 return -EBUSY;
731 }
732 }
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 sbp2_set_busy_timeout(scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 sbp2_max_speed_and_size(scsi_id);
737
Stefan Richtere8ca5662006-11-02 21:16:08 +0100738 /* Complete any pending commands with busy (so they get retried)
739 * and remove them from our queue. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
741
Stefan Richter4fc383c2006-08-14 18:46:00 +0200742 /* Accept new commands unless there was another bus reset in the
743 * meantime. */
744 if (hpsb_node_entry_valid(scsi_id->ne)) {
Stefan Richter2cccbb52006-08-14 18:59:00 +0200745 atomic_set(&scsi_id->state, SBP2LU_STATE_RUNNING);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200746 scsi_unblock_requests(scsi_id->scsi_host);
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return 0;
749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud)
752{
Stefan Richterca0c7452006-11-02 21:16:08 +0100753 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct Scsi_Host *scsi_host = NULL;
755 struct scsi_id_instance_data *scsi_id = NULL;
756
Stefan Richter85511582005-11-07 06:31:45 -0500757 scsi_id = kzalloc(sizeof(*scsi_id), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (!scsi_id) {
759 SBP2_ERR("failed to create scsi_id");
760 goto failed_alloc;
761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 scsi_id->ne = ud->ne;
764 scsi_id->ud = ud;
765 scsi_id->speed_code = IEEE1394_SPEED_100;
766 scsi_id->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
Ben Collins67372312006-06-12 18:15:31 -0400767 scsi_id->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
Stefan Richterca0c7452006-11-02 21:16:08 +0100768 INIT_LIST_HEAD(&scsi_id->cmd_orb_inuse);
769 INIT_LIST_HEAD(&scsi_id->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 INIT_LIST_HEAD(&scsi_id->scsi_list);
Stefan Richterca0c7452006-11-02 21:16:08 +0100771 spin_lock_init(&scsi_id->cmd_orb_lock);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200772 atomic_set(&scsi_id->state, SBP2LU_STATE_RUNNING);
Stefan Richterd19c7762006-12-07 22:40:33 +0100773 INIT_WORK(&scsi_id->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 ud->device.driver_data = scsi_id;
776
777 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
778 if (!hi) {
779 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, sizeof(*hi));
780 if (!hi) {
781 SBP2_ERR("failed to allocate hostinfo");
782 goto failed_alloc;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 hi->host = ud->ne->host;
785 INIT_LIST_HEAD(&hi->scsi_ids);
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
788 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500789 * enabled or not supported on host controller */
790 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
791 &sbp2_physdma_ops,
792 0x0ULL, 0xfffffffcULL)) {
793 SBP2_ERR("failed to register lower 4GB address range");
794 goto failed_alloc;
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796#endif
797 }
798
Stefan Richter147830f2006-03-28 19:54:52 -0500799 /* Prevent unloading of the 1394 host */
800 if (!try_module_get(hi->host->driver->owner)) {
801 SBP2_ERR("failed to get a reference on 1394 host driver");
802 goto failed_alloc;
803 }
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 scsi_id->hi = hi;
806
807 list_add_tail(&scsi_id->scsi_list, &hi->scsi_ids);
808
Stefan Richter35bdddb2006-01-31 00:13:33 -0500809 /* Register the status FIFO address range. We could use the same FIFO
810 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200811 * target in order to support multi-unit devices.
812 * The FIFO is located out of the local host controller's physical range
813 * but, if possible, within the posted write area. Status writes will
814 * then be performed as unified transactions. This slightly reduces
815 * bandwidth usage, and some Prolific based devices seem to require it.
816 */
Stefan Richter35bdddb2006-01-31 00:13:33 -0500817 scsi_id->status_fifo_addr = hpsb_allocate_and_register_addrspace(
818 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
819 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400820 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Ben Collins67372312006-06-12 18:15:31 -0400821 if (scsi_id->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500822 SBP2_ERR("failed to allocate status FIFO address range");
823 goto failed_alloc;
824 }
825
Stefan Richterca0c7452006-11-02 21:16:08 +0100826 scsi_host = scsi_host_alloc(&sbp2_shost_template,
Stefan Richtera237f352005-11-07 06:31:39 -0500827 sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (!scsi_host) {
829 SBP2_ERR("failed to register scsi host");
830 goto failed_alloc;
831 }
832
833 scsi_host->hostdata[0] = (unsigned long)scsi_id;
834
835 if (!scsi_add_host(scsi_host, &ud->device)) {
836 scsi_id->scsi_host = scsi_host;
837 return scsi_id;
838 }
839
840 SBP2_ERR("failed to add scsi host");
841 scsi_host_put(scsi_host);
842
843failed_alloc:
844 sbp2_remove_device(scsi_id);
845 return NULL;
846}
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848static void sbp2_host_reset(struct hpsb_host *host)
849{
Stefan Richterca0c7452006-11-02 21:16:08 +0100850 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 struct scsi_id_instance_data *scsi_id;
852
853 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200854 if (!hi)
855 return;
856 list_for_each_entry(scsi_id, &hi->scsi_ids, scsi_list)
857 if (likely(atomic_read(&scsi_id->state) !=
858 SBP2LU_STATE_IN_SHUTDOWN)) {
859 atomic_set(&scsi_id->state, SBP2LU_STATE_IN_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 scsi_block_requests(scsi_id->scsi_host);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864static int sbp2_start_device(struct scsi_id_instance_data *scsi_id)
865{
Stefan Richterca0c7452006-11-02 21:16:08 +0100866 struct sbp2_fwhost_info *hi = scsi_id->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500867 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 scsi_id->login_response =
Stefan Richtera237f352005-11-07 06:31:39 -0500870 pci_alloc_consistent(hi->host->pdev,
871 sizeof(struct sbp2_login_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 &scsi_id->login_response_dma);
873 if (!scsi_id->login_response)
874 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 scsi_id->query_logins_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500877 pci_alloc_consistent(hi->host->pdev,
878 sizeof(struct sbp2_query_logins_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 &scsi_id->query_logins_orb_dma);
880 if (!scsi_id->query_logins_orb)
881 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 scsi_id->query_logins_response =
Stefan Richtera237f352005-11-07 06:31:39 -0500884 pci_alloc_consistent(hi->host->pdev,
885 sizeof(struct sbp2_query_logins_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 &scsi_id->query_logins_response_dma);
887 if (!scsi_id->query_logins_response)
888 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 scsi_id->reconnect_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500891 pci_alloc_consistent(hi->host->pdev,
892 sizeof(struct sbp2_reconnect_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 &scsi_id->reconnect_orb_dma);
894 if (!scsi_id->reconnect_orb)
895 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 scsi_id->logout_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500898 pci_alloc_consistent(hi->host->pdev,
899 sizeof(struct sbp2_logout_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 &scsi_id->logout_orb_dma);
901 if (!scsi_id->logout_orb)
902 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 scsi_id->login_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500905 pci_alloc_consistent(hi->host->pdev,
906 sizeof(struct sbp2_login_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 &scsi_id->login_orb_dma);
Stefan Richtereaceec72005-12-13 11:05:05 -0500908 if (!scsi_id->login_orb)
909 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (sbp2util_create_command_orb_pool(scsi_id)) {
912 SBP2_ERR("sbp2util_create_command_orb_pool failed!");
913 sbp2_remove_device(scsi_id);
914 return -ENOMEM;
915 }
916
Stefan Richtere8ca5662006-11-02 21:16:08 +0100917 /* Wait a second before trying to log in. Previously logged in
918 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200919 if (msleep_interruptible(1000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 sbp2_remove_device(scsi_id);
921 return -EINTR;
922 }
Stefan Richtera237f352005-11-07 06:31:39 -0500923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (sbp2_login_device(scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 sbp2_remove_device(scsi_id);
926 return -EBUSY;
927 }
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 sbp2_set_busy_timeout(scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 sbp2_max_speed_and_size(scsi_id);
932
James Bottomley146f7262005-09-10 12:44:09 -0500933 error = scsi_add_device(scsi_id->scsi_host, 0, scsi_id->ud->id, 0);
934 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 SBP2_ERR("scsi_add_device failed");
Stefan Richterdc3edd52005-12-12 23:03:30 -0500936 sbp2_logout_device(scsi_id);
937 sbp2_remove_device(scsi_id);
James Bottomley146f7262005-09-10 12:44:09 -0500938 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
941 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500942
943alloc_fail:
944 SBP2_ERR("Could not allocate memory for scsi_id");
945 sbp2_remove_device(scsi_id);
946 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id)
950{
Stefan Richterca0c7452006-11-02 21:16:08 +0100951 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!scsi_id)
954 return;
955
956 hi = scsi_id->hi;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (scsi_id->scsi_host) {
959 scsi_remove_host(scsi_id->scsi_host);
960 scsi_host_put(scsi_id->scsi_host);
961 }
Stefan Richter09ee67a2006-08-14 18:43:00 +0200962 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 sbp2util_remove_command_orb_pool(scsi_id);
964
965 list_del(&scsi_id->scsi_list);
966
Stefan Richteredf1fb22006-11-02 21:16:08 +0100967 if (scsi_id->login_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 pci_free_consistent(hi->host->pdev,
969 sizeof(struct sbp2_login_response),
970 scsi_id->login_response,
971 scsi_id->login_response_dma);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100972 if (scsi_id->login_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 pci_free_consistent(hi->host->pdev,
974 sizeof(struct sbp2_login_orb),
975 scsi_id->login_orb,
976 scsi_id->login_orb_dma);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100977 if (scsi_id->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 pci_free_consistent(hi->host->pdev,
979 sizeof(struct sbp2_reconnect_orb),
980 scsi_id->reconnect_orb,
981 scsi_id->reconnect_orb_dma);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100982 if (scsi_id->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 pci_free_consistent(hi->host->pdev,
984 sizeof(struct sbp2_logout_orb),
985 scsi_id->logout_orb,
986 scsi_id->logout_orb_dma);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100987 if (scsi_id->query_logins_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 pci_free_consistent(hi->host->pdev,
989 sizeof(struct sbp2_query_logins_orb),
990 scsi_id->query_logins_orb,
991 scsi_id->query_logins_orb_dma);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100992 if (scsi_id->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 pci_free_consistent(hi->host->pdev,
994 sizeof(struct sbp2_query_logins_response),
995 scsi_id->query_logins_response,
996 scsi_id->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Ben Collins67372312006-06-12 18:15:31 -0400998 if (scsi_id->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -0500999 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Ben Collins67372312006-06-12 18:15:31 -04001000 scsi_id->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -05001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 scsi_id->ud->device.driver_data = NULL;
1003
Stefan Richter147830f2006-03-28 19:54:52 -05001004 if (hi)
1005 module_put(hi->host->driver->owner);
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 kfree(scsi_id);
1008}
1009
1010#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1011/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001012 * Deal with write requests on adapters which do not support physical DMA or
1013 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 */
Stefan Richtera237f352005-11-07 06:31:39 -05001015static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1016 int destid, quadlet_t *data, u64 addr,
1017 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Stefan Richtera237f352005-11-07 06:31:39 -05001019 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -05001020 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001024 * Deal with read requests on adapters which do not support physical DMA or
1025 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 */
Stefan Richtera237f352005-11-07 06:31:39 -05001027static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1028 quadlet_t *data, u64 addr, size_t length,
1029 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Stefan Richtera237f352005-11-07 06:31:39 -05001031 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -05001032 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034#endif
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/**************************************
1037 * SBP-2 protocol related section
1038 **************************************/
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
1041{
Stefan Richterca0c7452006-11-02 21:16:08 +01001042 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 quadlet_t data[2];
1044 int max_logins;
1045 int active_logins;
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 scsi_id->query_logins_orb->reserved1 = 0x0;
1048 scsi_id->query_logins_orb->reserved2 = 0x0;
1049
1050 scsi_id->query_logins_orb->query_response_lo = scsi_id->query_logins_response_dma;
1051 scsi_id->query_logins_orb->query_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 scsi_id->query_logins_orb->lun_misc = ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1054 scsi_id->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
Stefan Richterca0c7452006-11-02 21:16:08 +01001055 scsi_id->query_logins_orb->lun_misc |= ORB_SET_LUN(scsi_id->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 scsi_id->query_logins_orb->reserved_resp_length =
1058 ORB_SET_QUERY_LOGINS_RESP_LENGTH(sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Stefan Richter35bdddb2006-01-31 00:13:33 -05001060 scsi_id->query_logins_orb->status_fifo_hi =
1061 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1062 scsi_id->query_logins_orb->status_fifo_lo =
1063 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb));
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 memset(scsi_id->query_logins_response, 0, sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1070 data[1] = scsi_id->query_logins_orb_dma;
1071 sbp2util_cpu_to_be32_buffer(data, 8);
1072
Stefan Richterca0c7452006-11-02 21:16:08 +01001073 hpsb_node_write(scsi_id->ne, scsi_id->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Stefan Richtere8398bb2006-07-23 22:19:00 +02001075 if (sbp2util_access_timeout(scsi_id, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001077 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
1080 if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
1081 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001082 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084
Stefan Richter60657722006-07-23 22:18:00 +02001085 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1086 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001087 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089
1090 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001093 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001096 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001099 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101
1102 return 0;
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
1106{
Stefan Richterca0c7452006-11-02 21:16:08 +01001107 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 quadlet_t data[2];
1109
Stefan Richteredf1fb22006-11-02 21:16:08 +01001110 if (!scsi_id->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001111 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Stefan Richterca0c7452006-11-02 21:16:08 +01001113 if (!sbp2_exclusive_login && sbp2_query_logins(scsi_id)) {
1114 SBP2_INFO("Device does not support any more concurrent logins");
1115 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
Stefan Richtere8ca5662006-11-02 21:16:08 +01001118 /* assume no password */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 scsi_id->login_orb->password_hi = 0;
1120 scsi_id->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
1123 scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001125
1126 /* one second reconnect time */
1127 scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
Stefan Richterca0c7452006-11-02 21:16:08 +01001128 scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001129 scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
Stefan Richterca0c7452006-11-02 21:16:08 +01001130 scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 scsi_id->login_orb->passwd_resp_lengths =
1133 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Stefan Richter35bdddb2006-01-31 00:13:33 -05001135 scsi_id->login_orb->status_fifo_hi =
1136 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1137 scsi_id->login_orb->status_fifo_lo =
1138 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1145 data[1] = scsi_id->login_orb_dma;
1146 sbp2util_cpu_to_be32_buffer(data, 8);
1147
Stefan Richterca0c7452006-11-02 21:16:08 +01001148 hpsb_node_write(scsi_id->ne, scsi_id->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Stefan Richtere8ca5662006-11-02 21:16:08 +01001150 /* wait up to 20 seconds for login status */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001151 if (sbp2util_access_timeout(scsi_id, 20*HZ)) {
1152 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001153 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155
Stefan Richtere8ca5662006-11-02 21:16:08 +01001156 /* make sure that the returned status matches the login ORB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001158 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001159 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161
Stefan Richter60657722006-07-23 22:18:00 +02001162 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1163 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001164 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
Stefan Richterca0c7452006-11-02 21:16:08 +01001168 scsi_id->command_block_agent_addr =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
Stefan Richterca0c7452006-11-02 21:16:08 +01001170 scsi_id->command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
1171 scsi_id->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
1178{
Stefan Richterca0c7452006-11-02 21:16:08 +01001179 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 quadlet_t data[2];
1181 int error;
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 scsi_id->logout_orb->reserved1 = 0x0;
1184 scsi_id->logout_orb->reserved2 = 0x0;
1185 scsi_id->logout_orb->reserved3 = 0x0;
1186 scsi_id->logout_orb->reserved4 = 0x0;
1187
1188 scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1189 scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1191
1192 scsi_id->logout_orb->reserved5 = 0x0;
Stefan Richter35bdddb2006-01-31 00:13:33 -05001193 scsi_id->logout_orb->status_fifo_hi =
1194 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1195 scsi_id->logout_orb->status_fifo_lo =
1196 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1201 data[1] = scsi_id->logout_orb_dma;
1202 sbp2util_cpu_to_be32_buffer(data, 8);
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 error = hpsb_node_write(scsi_id->ne,
Stefan Richterca0c7452006-11-02 21:16:08 +01001205 scsi_id->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (error)
1207 return error;
1208
Stefan Richtere8ca5662006-11-02 21:16:08 +01001209 /* wait up to 1 second for the device to complete logout */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001210 if (sbp2util_access_timeout(scsi_id, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return -EIO;
1212
1213 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
1218{
Stefan Richterca0c7452006-11-02 21:16:08 +01001219 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 quadlet_t data[2];
1221 int error;
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 scsi_id->reconnect_orb->reserved1 = 0x0;
1224 scsi_id->reconnect_orb->reserved2 = 0x0;
1225 scsi_id->reconnect_orb->reserved3 = 0x0;
1226 scsi_id->reconnect_orb->reserved4 = 0x0;
1227
1228 scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1229 scsi_id->reconnect_orb->login_ID_misc |=
1230 ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1232
1233 scsi_id->reconnect_orb->reserved5 = 0x0;
Stefan Richter35bdddb2006-01-31 00:13:33 -05001234 scsi_id->reconnect_orb->status_fifo_hi =
1235 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1236 scsi_id->reconnect_orb->status_fifo_lo =
1237 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1242 data[1] = scsi_id->reconnect_orb_dma;
1243 sbp2util_cpu_to_be32_buffer(data, 8);
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 error = hpsb_node_write(scsi_id->ne,
Stefan Richterca0c7452006-11-02 21:16:08 +01001246 scsi_id->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (error)
1248 return error;
1249
Stefan Richtere8ca5662006-11-02 21:16:08 +01001250 /* wait up to 1 second for reconnect status */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001251 if (sbp2util_access_timeout(scsi_id, HZ)) {
1252 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001253 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255
Stefan Richtere8ca5662006-11-02 21:16:08 +01001256 /* make sure that the returned status matches the reconnect ORB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001258 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001259 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
Stefan Richter60657722006-07-23 22:18:00 +02001262 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1263 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001264 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266
Stefan Richter35644092006-11-02 21:16:08 +01001267 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001272 * Set the target node's Single Phase Retry limit. Affects the target's retry
1273 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 */
1275static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
1276{
1277 quadlet_t data;
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richterd024ebc2006-03-28 20:03:55 -05001280 if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
1281 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
1286 struct unit_directory *ud)
1287{
1288 struct csr1212_keyval *kv;
1289 struct csr1212_dentry *dentry;
1290 u64 management_agent_addr;
Stefan Richter9117c6d2006-11-02 21:16:08 +01001291 u32 unit_characteristics, firmware_revision;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001292 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 int i;
1294
Stefan Richter9117c6d2006-11-02 21:16:08 +01001295 management_agent_addr = 0;
1296 unit_characteristics = 0;
1297 firmware_revision = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1300 switch (kv->key.id) {
1301 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001302 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001304 CSR1212_REGISTER_SPACE_BASE +
1305 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Stefan Richteredf1fb22006-11-02 21:16:08 +01001307 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richterca0c7452006-11-02 21:16:08 +01001308 scsi_id->lun =
Stefan Richtera237f352005-11-07 06:31:39 -05001309 ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001313 /* FIXME: This is ignored so far.
1314 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 break;
1317
1318 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 break;
1321
1322 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001323 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1324 * Its "ordered" bit has consequences for command ORB
1325 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
1327 }
1328 }
1329
Stefan Richter24d3bf82006-05-15 22:04:59 +02001330 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Stefan Richter679c0cd2006-05-15 22:08:09 +02001332 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1333 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
1334 if (sbp2_workarounds_table[i].firmware_revision &&
1335 sbp2_workarounds_table[i].firmware_revision !=
1336 (firmware_revision & 0xffff00))
1337 continue;
1338 if (sbp2_workarounds_table[i].model_id &&
1339 sbp2_workarounds_table[i].model_id != ud->model_id)
1340 continue;
1341 workarounds |= sbp2_workarounds_table[i].workarounds;
1342 break;
1343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Stefan Richter24d3bf82006-05-15 22:04:59 +02001345 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001346 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1347 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1348 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001349 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001350 workarounds, firmware_revision,
1351 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1352 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001353
1354 /* We would need one SCSI host template for each target to adjust
1355 * max_sectors on the fly, therefore warn only. */
1356 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001357 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001358 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001359 "max transfer size. WARNING: Current max_sectors "
1360 "setting is larger than 128KB (%d sectors)",
1361 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001362 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* If this is a logical unit directory entry, process the parent
1365 * to get the values. */
1366 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
1367 struct unit_directory *parent_ud =
1368 container_of(ud->device.parent, struct unit_directory, device);
1369 sbp2_parse_unit_directory(scsi_id, parent_ud);
1370 } else {
Stefan Richterca0c7452006-11-02 21:16:08 +01001371 scsi_id->management_agent_addr = management_agent_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 scsi_id->workarounds = workarounds;
1373 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richterca0c7452006-11-02 21:16:08 +01001374 scsi_id->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376}
1377
Ben Collinsfd23ade2006-06-12 18:14:14 -04001378#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/*
1381 * This function is called in order to determine the max speed and packet
1382 * size we can use in our ORBs. Note, that we (the driver and host) only
1383 * initiate the transaction. The SBP-2 device actually transfers the data
1384 * (by reading from the DMA area we tell it). This means that the SBP-2
1385 * device decides the actual maximum data it can transfer. We just tell it
1386 * the speed that it needs to use, and the max_rec the host supports, and
1387 * it takes care of the rest.
1388 */
1389static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
1390{
Stefan Richterca0c7452006-11-02 21:16:08 +01001391 struct sbp2_fwhost_info *hi = scsi_id->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001392 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Stefan Richtera237f352005-11-07 06:31:39 -05001394 scsi_id->speed_code =
Ben Collins647dcb52006-06-12 18:12:37 -04001395 hi->host->speed[NODEID_TO_NODE(scsi_id->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Stefan Richterca0c7452006-11-02 21:16:08 +01001397 if (scsi_id->speed_code > sbp2_max_speed) {
1398 scsi_id->speed_code = sbp2_max_speed;
1399 SBP2_INFO("Reducing speed to %s",
1400 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
1403 /* Payload size is the lesser of what our speed supports and what
1404 * our host supports. */
Ben Collinsfd23ade2006-06-12 18:14:14 -04001405 payload = min(sbp2_speedto_max_payload[scsi_id->speed_code],
1406 (u8) (hi->host->csr.max_rec - 1));
1407
1408 /* If physical DMA is off, work around limitation in ohci1394:
1409 * packet size must not exceed PAGE_SIZE */
1410 if (scsi_id->ne->host->low_addr_space < (1ULL << 32))
1411 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1412 payload)
1413 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Stefan Richter35644092006-11-02 21:16:08 +01001415 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
1416 NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
1417 hpsb_speedto_str[scsi_id->speed_code],
1418 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ben Collinsfd23ade2006-06-12 18:14:14 -04001420 scsi_id->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001421 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
1425{
1426 quadlet_t data;
1427 u64 addr;
1428 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001429 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Stefan Richterd19c7762006-12-07 22:40:33 +01001431 /* cancel_delayed_work(&scsi_id->protocol_work); */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001432 if (wait)
1433 flush_scheduled_work();
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richterca0c7452006-11-02 21:16:08 +01001436 addr = scsi_id->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (wait)
1439 retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
1440 else
1441 retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
1442
1443 if (retval < 0) {
1444 SBP2_ERR("hpsb_node_write failed.\n");
1445 return -EIO;
1446 }
1447
Stefan Richtere8ca5662006-11-02 21:16:08 +01001448 /* make sure that the ORB_POINTER is written on next command */
Stefan Richterca0c7452006-11-02 21:16:08 +01001449 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 scsi_id->last_orb = NULL;
Stefan Richterca0c7452006-11-02 21:16:08 +01001451 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Stefan Richtera237f352005-11-07 06:31:39 -05001453 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001456static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001457 struct sbp2_fwhost_info *hi,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001458 struct sbp2_command_info *command,
1459 unsigned int scsi_use_sg,
1460 struct scatterlist *sgpnt,
1461 u32 orb_direction,
1462 enum dma_data_direction dma_dir)
1463{
1464 command->dma_dir = dma_dir;
1465 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1466 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1467
Stefan Richtere8ca5662006-11-02 21:16:08 +01001468 /* special case if only one element (and less than 64KB in size) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001469 if ((scsi_use_sg == 1) &&
1470 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1471
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001472 command->dma_size = sgpnt[0].length;
1473 command->dma_type = CMD_DMA_PAGE;
1474 command->cmd_dma = pci_map_page(hi->host->pdev,
1475 sgpnt[0].page,
1476 sgpnt[0].offset,
1477 command->dma_size,
1478 command->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001479
1480 orb->data_descriptor_lo = command->cmd_dma;
1481 orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
1482
1483 } else {
1484 struct sbp2_unrestricted_page_table *sg_element =
1485 &command->scatter_gather_element[0];
1486 u32 sg_count, sg_len;
1487 dma_addr_t sg_addr;
1488 int i, count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg,
1489 dma_dir);
1490
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001491 command->dma_size = scsi_use_sg;
1492 command->sge_buffer = sgpnt;
1493
1494 /* use page tables (s/g) */
1495 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1496 orb->data_descriptor_lo = command->sge_dma;
1497
Stefan Richtere8ca5662006-11-02 21:16:08 +01001498 /* loop through and fill out our SBP-2 page tables
1499 * (and split up anything too large) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001500 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1501 sg_len = sg_dma_len(sgpnt);
1502 sg_addr = sg_dma_address(sgpnt);
1503 while (sg_len) {
1504 sg_element[sg_count].segment_base_lo = sg_addr;
1505 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1506 sg_element[sg_count].length_segment_base_hi =
1507 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1508 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1509 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1510 } else {
1511 sg_element[sg_count].length_segment_base_hi =
1512 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1513 sg_len = 0;
1514 }
1515 sg_count++;
1516 }
1517 }
1518
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001519 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1520
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001521 sbp2util_cpu_to_be32_buffer(sg_element,
1522 (sizeof(struct sbp2_unrestricted_page_table)) *
1523 sg_count);
1524 }
1525}
1526
1527static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001528 struct sbp2_fwhost_info *hi,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001529 struct sbp2_command_info *command,
1530 struct scatterlist *sgpnt,
1531 u32 orb_direction,
1532 unsigned int scsi_request_bufflen,
1533 void *scsi_request_buffer,
1534 enum dma_data_direction dma_dir)
1535{
1536 command->dma_dir = dma_dir;
1537 command->dma_size = scsi_request_bufflen;
1538 command->dma_type = CMD_DMA_SINGLE;
1539 command->cmd_dma = pci_map_single(hi->host->pdev, scsi_request_buffer,
1540 command->dma_size, command->dma_dir);
1541 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1542 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1543
Stefan Richtere8ca5662006-11-02 21:16:08 +01001544 /* handle case where we get a command w/o s/g enabled
1545 * (but check for transfers larger than 64K) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001546 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1547
1548 orb->data_descriptor_lo = command->cmd_dma;
1549 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1550
1551 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001552 /* The buffer is too large. Turn this into page tables. */
1553
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001554 struct sbp2_unrestricted_page_table *sg_element =
1555 &command->scatter_gather_element[0];
1556 u32 sg_count, sg_len;
1557 dma_addr_t sg_addr;
1558
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001559 orb->data_descriptor_lo = command->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001560 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1561
Stefan Richtere8ca5662006-11-02 21:16:08 +01001562 /* fill out our SBP-2 page tables; split up the large buffer */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001563 sg_count = 0;
1564 sg_len = scsi_request_bufflen;
1565 sg_addr = command->cmd_dma;
1566 while (sg_len) {
1567 sg_element[sg_count].segment_base_lo = sg_addr;
1568 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1569 sg_element[sg_count].length_segment_base_hi =
1570 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1571 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1572 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1573 } else {
1574 sg_element[sg_count].length_segment_base_hi =
1575 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1576 sg_len = 0;
1577 }
1578 sg_count++;
1579 }
1580
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001581 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1582
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001583 sbp2util_cpu_to_be32_buffer(sg_element,
1584 (sizeof(struct sbp2_unrestricted_page_table)) *
1585 sg_count);
1586 }
1587}
1588
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001589static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
1590 struct sbp2_command_info *command,
1591 unchar *scsi_cmd,
1592 unsigned int scsi_use_sg,
1593 unsigned int scsi_request_bufflen,
1594 void *scsi_request_buffer,
1595 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Stefan Richterca0c7452006-11-02 21:16:08 +01001597 struct sbp2_fwhost_info *hi = scsi_id->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001598 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001600 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001603 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 *
1605 * NOTE: We're doing unrestricted page tables (s/g), as this is
1606 * best performance (at least with the devices I have). This means
1607 * that data_size becomes the number of s/g elements, and
1608 * page_size should be zero (for unrestricted).
1609 */
1610 command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1611 command_orb->next_ORB_lo = 0x0;
1612 command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
1613 command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001614 command_orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Stefan Richter43863eb2005-12-12 23:03:24 -05001616 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001617 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001618 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001619 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001620 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001621 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001622 else {
Stefan Richter35644092006-11-02 21:16:08 +01001623 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001624 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
1626
Stefan Richtere8ca5662006-11-02 21:16:08 +01001627 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 command_orb->data_descriptor_hi = 0x0;
1630 command_orb->data_descriptor_lo = 0x0;
1631 command_orb->misc |= ORB_SET_DIRECTION(1);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001632 } else if (scsi_use_sg)
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001633 sbp2_prep_command_orb_sg(command_orb, hi, command, scsi_use_sg,
1634 sgpnt, orb_direction, dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001635 else
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001636 sbp2_prep_command_orb_no_sg(command_orb, hi, command, sgpnt,
1637 orb_direction, scsi_request_bufflen,
1638 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 memset(command_orb->cdb, 0, 12);
1643 memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Stefan Richter28212762006-07-23 22:10:00 +02001646static void sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 struct sbp2_command_info *command)
1648{
Stefan Richterca0c7452006-11-02 21:16:08 +01001649 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercc078182006-07-23 22:12:00 +02001651 struct sbp2_command_orb *last_orb;
1652 dma_addr_t last_orb_dma;
Stefan Richterca0c7452006-11-02 21:16:08 +01001653 u64 addr = scsi_id->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001654 quadlet_t data[2];
1655 size_t length;
1656 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
1659 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02001660 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
1662 sizeof(command->scatter_gather_element),
1663 PCI_DMA_BIDIRECTIONAL);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001664
1665 /* check to see if there are any previous orbs to use */
Stefan Richterca0c7452006-11-02 21:16:08 +01001666 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
Stefan Richtercc078182006-07-23 22:12:00 +02001667 last_orb = scsi_id->last_orb;
1668 last_orb_dma = scsi_id->last_orb_dma;
1669 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001671 * last_orb == NULL means: We know that the target's fetch agent
1672 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 */
Stefan Richtercc078182006-07-23 22:12:00 +02001674 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1676 data[1] = command->command_orb_dma;
1677 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001678 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001681 * last_orb != NULL means: We know that the target's fetch agent
1682 * is (very probably) not dead or in reset state right now.
1683 * We have an ORB already sent that we can append a new one to.
1684 * The target's fetch agent may or may not have read this
1685 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 */
Stefan Richtercc078182006-07-23 22:12:00 +02001687 pci_dma_sync_single_for_cpu(hi->host->pdev, last_orb_dma,
1688 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02001689 PCI_DMA_TODEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001690 last_orb->next_ORB_lo = cpu_to_be32(command->command_orb_dma);
1691 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001693 last_orb->next_ORB_hi = 0;
1694 pci_dma_sync_single_for_device(hi->host->pdev, last_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02001696 PCI_DMA_TODEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001697 addr += SBP2_DOORBELL_OFFSET;
1698 data[0] = 0;
1699 length = 4;
1700 }
1701 scsi_id->last_orb = command_orb;
1702 scsi_id->last_orb_dma = command->command_orb_dma;
Stefan Richterca0c7452006-11-02 21:16:08 +01001703 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Stefan Richter09ee67a2006-08-14 18:43:00 +02001705 if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length)) {
1706 /*
1707 * sbp2util_node_write_no_wait failed. We certainly ran out
1708 * of transaction labels, perhaps just because there were no
1709 * context switches which gave khpsbpkt a chance to collect
1710 * free tlabels. Try again in non-atomic context. If necessary,
1711 * the workqueue job will sleep to guaranteedly get a tlabel.
1712 * We do not accept new commands until the job is over.
1713 */
1714 scsi_block_requests(scsi_id->scsi_host);
Stefan Richterd19c7762006-12-07 22:40:33 +01001715 PREPARE_WORK(&scsi_id->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001716 last_orb ? sbp2util_write_doorbell:
Stefan Richterd19c7762006-12-07 22:40:33 +01001717 sbp2util_write_orb_pointer
1718 /* */);
1719 schedule_work(&scsi_id->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
1724 struct scsi_cmnd *SCpnt,
1725 void (*done)(struct scsi_cmnd *))
1726{
1727 unchar *cmd = (unchar *) SCpnt->cmnd;
1728 unsigned int request_bufflen = SCpnt->request_bufflen;
1729 struct sbp2_command_info *command;
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001732 if (!command)
Stefan Richtera237f352005-11-07 06:31:39 -05001733 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
1736 request_bufflen, SCpnt->request_buffer,
1737 SCpnt->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 sbp2_link_orb_command(scsi_id, command);
1739
Stefan Richtera237f352005-11-07 06:31:39 -05001740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * Translates SBP-2 status into SCSI sense data for check conditions
1745 */
1746static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
1747{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001748 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 sense_data[0] = 0x70;
1750 sense_data[1] = 0x0;
1751 sense_data[2] = sbp2_status[9];
1752 sense_data[3] = sbp2_status[12];
1753 sense_data[4] = sbp2_status[13];
1754 sense_data[5] = sbp2_status[14];
1755 sense_data[6] = sbp2_status[15];
1756 sense_data[7] = 10;
1757 sense_data[8] = sbp2_status[16];
1758 sense_data[9] = sbp2_status[17];
1759 sense_data[10] = sbp2_status[18];
1760 sense_data[11] = sbp2_status[19];
1761 sense_data[12] = sbp2_status[10];
1762 sense_data[13] = sbp2_status[11];
1763 sense_data[14] = sbp2_status[20];
1764 sense_data[15] = sbp2_status[21];
1765
Stefan Richtere8ca5662006-11-02 21:16:08 +01001766 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
Stefan Richter3e98eab42006-07-23 22:16:00 +02001769static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1770 int destid, quadlet_t *data, u64 addr,
1771 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Stefan Richterca0c7452006-11-02 21:16:08 +01001773 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001776 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
1778 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05001779 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Stefan Richter60657722006-07-23 22:18:00 +02001781 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1782 SBP2_ERR("Wrong size of status block");
1783 return RCODE_ADDRESS_ERROR;
1784 }
1785 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001787 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001790 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001792 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001794
1795 /* Find the unit which wrote the status. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
Stefan Richter35bdddb2006-01-31 00:13:33 -05001797 if (scsi_id_tmp->ne->nodeid == nodeid &&
1798 scsi_id_tmp->status_fifo_addr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 scsi_id = scsi_id_tmp;
1800 break;
1801 }
1802 }
Stefan Richter60657722006-07-23 22:18:00 +02001803 if (unlikely(!scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 SBP2_ERR("scsi_id is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001805 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807
Stefan Richtere8ca5662006-11-02 21:16:08 +01001808 /* Put response into scsi_id status fifo buffer. The first two bytes
Stefan Richter3e98eab42006-07-23 22:16:00 +02001809 * come in big endian bit order. Often the target writes only a
1810 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001811 * is implied to be zeros. */
Stefan Richter3e98eab42006-07-23 22:16:00 +02001812 sb = &scsi_id->status_block;
1813 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1814 memcpy(sb, data, length);
1815 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Stefan Richtere8ca5662006-11-02 21:16:08 +01001817 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001818 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
1819 command = NULL;
1820 else
1821 command = sbp2util_find_command_for_orb(scsi_id,
1822 sb->ORB_offset_lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
1825 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02001826 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
1828 sizeof(command->scatter_gather_element),
1829 PCI_DMA_BIDIRECTIONAL);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001830 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001831 /*
1832 * FIXME: If the src field in the status is 1, the ORB DMA must
1833 * not be reused until status for a subsequent ORB is received.
1834 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 SCpnt = command->Current_SCpnt;
Stefan Richterca0c7452006-11-02 21:16:08 +01001836 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 sbp2util_mark_command_completed(scsi_id, command);
Stefan Richterca0c7452006-11-02 21:16:08 +01001838 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001841 u32 h = sb->ORB_offset_hi_misc;
1842 u32 r = STATUS_GET_RESP(h);
1843
1844 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001845 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001846 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001847 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001848 r == RESP_STATUS_TRANSPORT_FAILURE ?
1849 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001850 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001851 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001852
Stefan Richteredf1fb22006-11-02 21:16:08 +01001853 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab42006-07-23 22:16:00 +02001854 scsi_status = sbp2_status_to_sense_data(
1855 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001856
Stefan Richteredf1fb22006-11-02 21:16:08 +01001857 if (STATUS_TEST_DEAD(h))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 sbp2_agent_reset(scsi_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
1860
Stefan Richtere8ca5662006-11-02 21:16:08 +01001861 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001862 * are none, we know that the fetch agent left the active state
1863 * _and_ that we did not reactivate it yet. Therefore clear
1864 * last_orb so that next time we write directly to the
1865 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001866 * to refetch the next_ORB. */
Stefan Richterca0c7452006-11-02 21:16:08 +01001867 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
1868 if (list_empty(&scsi_id->cmd_orb_inuse))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 scsi_id->last_orb = NULL;
Stefan Richterca0c7452006-11-02 21:16:08 +01001870 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001873 /* It's probably status after a management request. */
Stefan Richter3e98eab42006-07-23 22:16:00 +02001874 if ((sb->ORB_offset_lo == scsi_id->reconnect_orb_dma) ||
1875 (sb->ORB_offset_lo == scsi_id->login_orb_dma) ||
1876 (sb->ORB_offset_lo == scsi_id->query_logins_orb_dma) ||
Stefan Richtere8398bb2006-07-23 22:19:00 +02001877 (sb->ORB_offset_lo == scsi_id->logout_orb_dma)) {
1878 scsi_id->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001879 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882
Stefan Richteredf1fb22006-11-02 21:16:08 +01001883 if (SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
1885 command->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001886 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889/**************************************
1890 * SCSI interface related section
1891 **************************************/
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1894 void (*done)(struct scsi_cmnd *))
1895{
1896 struct scsi_id_instance_data *scsi_id =
1897 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001898 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001899 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Stefan Richter5796aa72006-11-02 21:16:08 +01001901 if (unlikely(!sbp2util_node_is_available(scsi_id)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001902 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 hi = scsi_id->hi;
1905
Stefan Richter5796aa72006-11-02 21:16:08 +01001906 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001907 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001908 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
1910
Stefan Richtere8ca5662006-11-02 21:16:08 +01001911 /* Multiple units are currently represented to the SCSI core as separate
1912 * targets, not as one target with multiple LUs. Therefore return
1913 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001914 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001915 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Stefan Richtere8ca5662006-11-02 21:16:08 +01001917 /* handle the request sense command here (auto-request sense) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (SCpnt->cmnd[0] == REQUEST_SENSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
1920 memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
1921 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
Jody McIntyreabd559b2005-09-30 11:59:06 -07001922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924
Stefan Richter5796aa72006-11-02 21:16:08 +01001925 if (unlikely(!hpsb_node_entry_valid(scsi_id->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001927 result = DID_BUS_BUSY << 16;
1928 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
Stefan Richtere8ca5662006-11-02 21:16:08 +01001931 /* Bidirectional commands are not yet implemented,
1932 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001933 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001934 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1935 result = DID_ERROR << 16;
1936 goto done;
1937 }
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (sbp2_send_command(scsi_id, SCpnt, done)) {
1940 SBP2_ERR("Error sending SCSI command");
1941 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
1942 SCpnt, done);
1943 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001944 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Jody McIntyreabd559b2005-09-30 11:59:06 -07001946done:
1947 SCpnt->result = result;
1948 done(SCpnt);
1949 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950}
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
1953 u32 status)
1954{
Stefan Richterca0c7452006-11-02 21:16:08 +01001955 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 struct list_head *lh;
1957 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05001958 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Stefan Richterca0c7452006-11-02 21:16:08 +01001960 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
1961 while (!list_empty(&scsi_id->cmd_orb_inuse)) {
1962 lh = scsi_id->cmd_orb_inuse.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 command = list_entry(lh, struct sbp2_command_info, list);
1964 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
1965 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02001966 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
1968 sizeof(command->scatter_gather_element),
1969 PCI_DMA_BIDIRECTIONAL);
1970 sbp2util_mark_command_completed(scsi_id, command);
1971 if (command->Current_SCpnt) {
1972 command->Current_SCpnt->result = status << 16;
1973 command->Current_done(command->Current_SCpnt);
1974 }
1975 }
Stefan Richterca0c7452006-11-02 21:16:08 +01001976 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 return;
1979}
1980
1981/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001982 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 */
1984static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
1985 u32 scsi_status, struct scsi_cmnd *SCpnt,
1986 void (*done)(struct scsi_cmnd *))
1987{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 if (!SCpnt) {
1989 SBP2_ERR("SCpnt is NULL");
1990 return;
1991 }
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001994 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001995 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001996 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Stefan Richtera237f352005-11-07 06:31:39 -05001998 case SBP2_SCSI_STATUS_BUSY:
1999 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
2000 SCpnt->result = DID_BUS_BUSY << 16;
2001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Stefan Richtera237f352005-11-07 06:31:39 -05002003 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05002004 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05002005 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Stefan Richtera237f352005-11-07 06:31:39 -05002007 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
2008 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
2009 SCpnt->result = DID_NO_CONNECT << 16;
2010 scsi_print_command(SCpnt);
2011 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Stefan Richtera237f352005-11-07 06:31:39 -05002013 case SBP2_SCSI_STATUS_CONDITION_MET:
2014 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
2015 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
2016 SBP2_ERR("Bad SCSI status = %x", scsi_status);
2017 SCpnt->result = DID_ERROR << 16;
2018 scsi_print_command(SCpnt);
2019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Stefan Richtera237f352005-11-07 06:31:39 -05002021 default:
2022 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
2023 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
2025
Stefan Richtere8ca5662006-11-02 21:16:08 +01002026 /* If a bus reset is in progress and there was an error, complete
2027 * the command as busy so that it will get retried. */
Stefan Richtera237f352005-11-07 06:31:39 -05002028 if (!hpsb_node_entry_valid(scsi_id->ne)
2029 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 SBP2_ERR("Completing command with busy (bus reset)");
2031 SCpnt->result = DID_BUS_BUSY << 16;
2032 }
2033
Stefan Richtere8ca5662006-11-02 21:16:08 +01002034 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05002035 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
Jody McIntyreabd559b2005-09-30 11:59:06 -07002038static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
2039{
Stefan Richtera80614d2006-02-14 22:04:19 -05002040 struct scsi_id_instance_data *scsi_id =
2041 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2042
2043 scsi_id->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02002044 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05002045
Stefan Richter24d3bf82006-05-15 22:04:59 +02002046 if (scsi_id->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002047 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002048 return 0;
2049}
2050
Jody McIntyreabd559b2005-09-30 11:59:06 -07002051static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Stefan Richter24d3bf82006-05-15 22:04:59 +02002053 struct scsi_id_instance_data *scsi_id =
2054 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
Ben Collins365c7862005-11-07 06:31:24 -05002057 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002058
2059 if (sdev->type == TYPE_DISK &&
2060 scsi_id->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
2061 sdev->skip_ms_page_8 = 1;
Stefan Richtere9a1c522006-05-15 22:06:37 +02002062 if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
2063 sdev->fix_capacity = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 return 0;
2065}
2066
Jody McIntyreabd559b2005-09-30 11:59:06 -07002067static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2068{
2069 ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
2070 return;
2071}
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002074 * Called by scsi stack when something has really gone wrong.
2075 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 */
2077static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2078{
2079 struct scsi_id_instance_data *scsi_id =
2080 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01002081 struct sbp2_fwhost_info *hi = scsi_id->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 struct sbp2_command_info *command;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002083 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Stefan Richter35644092006-11-02 21:16:08 +01002085 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 scsi_print_command(SCpnt);
2087
Jody McIntyreabd559b2005-09-30 11:59:06 -07002088 if (sbp2util_node_is_available(scsi_id)) {
Stefan Richter23077f12006-09-11 20:17:14 +02002089 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Stefan Richter23077f12006-09-11 20:17:14 +02002091 /* Return a matching command structure to the free pool. */
Stefan Richterca0c7452006-11-02 21:16:08 +01002092 spin_lock_irqsave(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
2094 if (command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 pci_dma_sync_single_for_cpu(hi->host->pdev,
2096 command->command_orb_dma,
2097 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002098 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 pci_dma_sync_single_for_cpu(hi->host->pdev,
2100 command->sge_dma,
2101 sizeof(command->scatter_gather_element),
2102 PCI_DMA_BIDIRECTIONAL);
2103 sbp2util_mark_command_completed(scsi_id, command);
2104 if (command->Current_SCpnt) {
2105 command->Current_SCpnt->result = DID_ABORT << 16;
2106 command->Current_done(command->Current_SCpnt);
2107 }
2108 }
Stefan Richterca0c7452006-11-02 21:16:08 +01002109 spin_unlock_irqrestore(&scsi_id->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
2112 }
2113
Stefan Richtera237f352005-11-07 06:31:39 -05002114 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
2117/*
2118 * Called by scsi stack when something has really gone wrong.
2119 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002120static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
2122 struct scsi_id_instance_data *scsi_id =
2123 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2124
Stefan Richter35644092006-11-02 21:16:08 +01002125 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Jody McIntyreabd559b2005-09-30 11:59:06 -07002127 if (sbp2util_node_is_available(scsi_id)) {
Stefan Richter35644092006-11-02 21:16:08 +01002128 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter1f427e82006-08-14 18:44:00 +02002129 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 }
2131
Jody McIntyreabd559b2005-09-30 11:59:06 -07002132 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002133}
2134
Stefan Richtera237f352005-11-07 06:31:39 -05002135static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2136 struct device_attribute *attr,
2137 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 struct scsi_device *sdev;
2140 struct scsi_id_instance_data *scsi_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 if (!(sdev = to_scsi_device(dev)))
2143 return 0;
2144
2145 if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
2146 return 0;
2147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
Stefan Richterca0c7452006-11-02 21:16:08 +01002149 scsi_id->ud->id, ORB_SET_LUN(scsi_id->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2153MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2154MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2155MODULE_LICENSE("GPL");
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157static int sbp2_module_init(void)
2158{
2159 int ret;
2160
Stefan Richterca0c7452006-11-02 21:16:08 +01002161 if (sbp2_serialize_io) {
2162 sbp2_shost_template.can_queue = 1;
2163 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165
Stefan Richter24d3bf82006-05-15 22:04:59 +02002166 if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01002167 (sbp2_max_sectors * 512) > (128 * 1024))
2168 sbp2_max_sectors = 128 * 1024 / 512;
2169 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 ret = hpsb_register_protocol(&sbp2_driver);
2173 if (ret) {
2174 SBP2_ERR("Failed to register protocol");
2175 hpsb_unregister_highlevel(&sbp2_highlevel);
2176 return ret;
2177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return 0;
2179}
2180
2181static void __exit sbp2_module_exit(void)
2182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 hpsb_unregister_highlevel(&sbp2_highlevel);
2185}
2186
2187module_init(sbp2_module_init);
2188module_exit(sbp2_module_exit);