blob: ecbb5ee500ab141181db306dba2a9eddccb10225 [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 */
101static int max_speed = IEEE1394_SPEED_MAX;
102module_param(max_speed, int, 0644);
Jody McIntyre2bab3592005-09-30 11:59:07 -0700103MODULE_PARM_DESC(max_speed, "Force max speed (3 = 800mb, 2 = 400mb, 1 = 200mb, 0 = 100mb)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/*
106 * Set serialize_io to 1 if you'd like only one scsi command sent
107 * down to us at a time (debugging). This might be necessary for very
108 * badly behaved sbp2 devices.
Jody McIntyre2bab3592005-09-30 11:59:07 -0700109 *
110 * TODO: Make this configurable per device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Jody McIntyre2bab3592005-09-30 11:59:07 -0700112static int serialize_io = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113module_param(serialize_io, int, 0444);
Jody McIntyre2bab3592005-09-30 11:59:07 -0700114MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers (default = 1, faster = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*
117 * Bump up max_sectors if you'd like to support very large sized
118 * transfers. Please note that some older sbp2 bridge chips are broken for
119 * transfers greater or equal to 128KB. Default is a value of 255
120 * sectors, or just under 128KB (at 512 byte sector size). I can note that
121 * the Oxsemi sbp2 chipsets have no problems supporting very large
122 * transfer sizes.
123 */
124static int max_sectors = SBP2_MAX_SECTORS;
125module_param(max_sectors, int, 0444);
Stefan Richter24d3bf82006-05-15 22:04:59 +0200126MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported (default = "
127 __stringify(SBP2_MAX_SECTORS) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
130 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
131 * do an exclusive login, as it's generally unsafe to have two hosts
132 * talking to a single sbp2 device at the same time (filesystem coherency,
133 * etc.). If you're running an sbp2 device that supports multiple logins,
134 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400135 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
136 * File System, or Lustre, then set exclusive_login to zero.
137 *
138 * So far only bridges from Oxford Semiconductor are known to support
139 * concurrent logins. Depending on firmware, four or two concurrent logins
140 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142static int exclusive_login = 1;
143module_param(exclusive_login, int, 0644);
144MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device (default = 1)");
145
146/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200147 * If any of the following workarounds is required for your device to work,
148 * please submit the kernel messages logged by sbp2 to the linux1394-devel
149 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200151 * - 128kB max transfer
152 * Limit transfer size. Necessary for some old bridges.
153 *
154 * - 36 byte inquiry
155 * When scsi_mod probes the device, let the inquiry command look like that
156 * from MS Windows.
157 *
158 * - skip mode page 8
159 * Suppress sending of mode_sense for mode page 8 if the device pretends to
160 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200161 *
162 * - fix capacity
163 * Tell sd_mod to correct the last sector number reported by read_capacity.
164 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
165 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200166 *
167 * - override internal blacklist
168 * Instead of adding to the built-in blacklist, use only the workarounds
169 * specified in the module load parameter.
170 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200172static int sbp2_default_workarounds;
173module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
174MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
175 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
176 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
177 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200178 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200179 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200180 ", or a combination)");
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * Debug levels, configured via kernel config, or enable here.
184 */
185
Olaf Hering44456d32005-07-27 11:45:17 -0700186#define CONFIG_IEEE1394_SBP2_DEBUG 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* #define CONFIG_IEEE1394_SBP2_DEBUG_ORBS */
188/* #define CONFIG_IEEE1394_SBP2_DEBUG_DMA */
189/* #define CONFIG_IEEE1394_SBP2_DEBUG 1 */
190/* #define CONFIG_IEEE1394_SBP2_DEBUG 2 */
191/* #define CONFIG_IEEE1394_SBP2_PACKET_DUMP */
192
193#ifdef CONFIG_IEEE1394_SBP2_DEBUG_ORBS
194#define SBP2_ORB_DEBUG(fmt, args...) HPSB_ERR("sbp2(%s): "fmt, __FUNCTION__, ## args)
195static u32 global_outstanding_command_orbs = 0;
196#define outstanding_orb_incr global_outstanding_command_orbs++
197#define outstanding_orb_decr global_outstanding_command_orbs--
198#else
Stefan Richter611aa192006-08-02 18:44:00 +0200199#define SBP2_ORB_DEBUG(fmt, args...) do {} while (0)
200#define outstanding_orb_incr do {} while (0)
201#define outstanding_orb_decr do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#endif
203
204#ifdef CONFIG_IEEE1394_SBP2_DEBUG_DMA
205#define SBP2_DMA_ALLOC(fmt, args...) \
206 HPSB_ERR("sbp2(%s)alloc(%d): "fmt, __FUNCTION__, \
207 ++global_outstanding_dmas, ## args)
208#define SBP2_DMA_FREE(fmt, args...) \
209 HPSB_ERR("sbp2(%s)free(%d): "fmt, __FUNCTION__, \
210 --global_outstanding_dmas, ## args)
211static u32 global_outstanding_dmas = 0;
212#else
Stefan Richter611aa192006-08-02 18:44:00 +0200213#define SBP2_DMA_ALLOC(fmt, args...) do {} while (0)
214#define SBP2_DMA_FREE(fmt, args...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#endif
216
217#if CONFIG_IEEE1394_SBP2_DEBUG >= 2
218#define SBP2_DEBUG(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
219#define SBP2_INFO(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#elif CONFIG_IEEE1394_SBP2_DEBUG == 1
221#define SBP2_DEBUG(fmt, args...) HPSB_DEBUG("sbp2: "fmt, ## args)
222#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#else
Stefan Richter611aa192006-08-02 18:44:00 +0200224#define SBP2_DEBUG(fmt, args...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#endif
227
228#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Stefan Richterd024ebc2006-03-28 20:03:55 -0500229#define SBP2_DEBUG_ENTER() SBP2_DEBUG("%s", __FUNCTION__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * Globals
233 */
Stefan Richterea42ea02006-11-02 21:16:08 +0100234static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *, u32);
235static void sbp2scsi_complete_command(struct scsi_id_instance_data *, u32,
236 struct scsi_cmnd *,
237 void (*)(struct scsi_cmnd *));
238static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *);
239static int sbp2_start_device(struct scsi_id_instance_data *);
240static void sbp2_remove_device(struct scsi_id_instance_data *);
241static int sbp2_login_device(struct scsi_id_instance_data *);
242static int sbp2_reconnect_device(struct scsi_id_instance_data *);
243static int sbp2_logout_device(struct scsi_id_instance_data *);
244static void sbp2_host_reset(struct hpsb_host *);
245static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
246 u64, size_t, u16);
247static int sbp2_agent_reset(struct scsi_id_instance_data *, int);
248static void sbp2_parse_unit_directory(struct scsi_id_instance_data *,
249 struct unit_directory *);
250static int sbp2_set_busy_timeout(struct scsi_id_instance_data *);
251static int sbp2_max_speed_and_size(struct scsi_id_instance_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100257 .name = SBP2_DEVICE_NAME,
258 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
261static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100262 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263};
264
265#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100266static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
267 u64, size_t, u16);
268static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
269 size_t, u16);
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100272 .read = sbp2_handle_physdma_read,
273 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275#endif
276
Stefan Richterea42ea02006-11-02 21:16:08 +0100277
278/*
279 * Interface to driver core and IEEE 1394 core
280 */
281static struct ieee1394_device_id sbp2_id_table[] = {
282 {
283 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
284 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
285 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
286 {}
287};
288MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
289
290static int sbp2_probe(struct device *);
291static int sbp2_remove(struct device *);
292static int sbp2_update(struct unit_directory *);
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static struct hpsb_protocol_driver sbp2_driver = {
295 .name = "SBP2 Driver",
296 .id_table = sbp2_id_table,
297 .update = sbp2_update,
298 .driver = {
299 .name = SBP2_DEVICE_NAME,
300 .bus = &ieee1394_bus_type,
301 .probe = sbp2_probe,
302 .remove = sbp2_remove,
303 },
304};
305
Stefan Richterea42ea02006-11-02 21:16:08 +0100306
307/*
308 * Interface to SCSI core
309 */
310static int sbp2scsi_queuecommand(struct scsi_cmnd *,
311 void (*)(struct scsi_cmnd *));
312static int sbp2scsi_abort(struct scsi_cmnd *);
313static int sbp2scsi_reset(struct scsi_cmnd *);
314static int sbp2scsi_slave_alloc(struct scsi_device *);
315static int sbp2scsi_slave_configure(struct scsi_device *);
316static void sbp2scsi_slave_destroy(struct scsi_device *);
317static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
318 struct device_attribute *, char *);
319
320static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
321
322static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
323 &dev_attr_ieee1394_id,
324 NULL
325};
326
327static struct scsi_host_template scsi_driver_template = {
328 .module = THIS_MODULE,
329 .name = "SBP-2 IEEE-1394",
330 .proc_name = SBP2_DEVICE_NAME,
331 .queuecommand = sbp2scsi_queuecommand,
332 .eh_abort_handler = sbp2scsi_abort,
333 .eh_device_reset_handler = sbp2scsi_reset,
334 .slave_alloc = sbp2scsi_slave_alloc,
335 .slave_configure = sbp2scsi_slave_configure,
336 .slave_destroy = sbp2scsi_slave_destroy,
337 .this_id = -1,
338 .sg_tablesize = SG_ALL,
339 .use_clustering = ENABLE_CLUSTERING,
340 .cmd_per_lun = SBP2_MAX_CMDS,
341 .can_queue = SBP2_MAX_CMDS,
342 .emulated = 1,
343 .sdev_attrs = sbp2_sysfs_sdev_attrs,
344};
345
346
Stefan Richtera80614d2006-02-14 22:04:19 -0500347/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200348 * List of devices with known bugs.
349 *
350 * The firmware_revision field, masked with 0xffff00, is the best indicator
351 * for the type of bridge chip of a device. It yields a few false positives
352 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500353 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200354static const struct {
355 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200356 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200357 unsigned workarounds;
358} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400359 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200360 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400361 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200362 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
363 SBP2_WORKAROUND_MODE_SENSE_8,
364 },
365 /* Initio bridges, actually only needed for some older ones */ {
366 .firmware_revision = 0x000200,
367 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
368 },
369 /* Symbios bridge */ {
370 .firmware_revision = 0xa0b800,
371 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200372 },
373 /*
374 * Note about the following Apple iPod blacklist entries:
375 *
376 * There are iPods (2nd gen, 3rd gen) with model_id==0. Since our
377 * matching logic treats 0 as a wildcard, we cannot match this ID
378 * without rewriting the matching routine. Fortunately these iPods
379 * do not feature the read_capacity bug according to one report.
380 * Read_capacity behaviour as well as model_id could change due to
381 * Apple-supplied firmware updates though.
382 */
383 /* iPod 4th generation */ {
384 .firmware_revision = 0x0a2700,
385 .model_id = 0x000021,
386 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
387 },
388 /* iPod mini */ {
389 .firmware_revision = 0x0a2700,
390 .model_id = 0x000023,
391 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
392 },
393 /* iPod Photo */ {
394 .firmware_revision = 0x0a2700,
395 .model_id = 0x00007e,
396 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400/**************************************
401 * General utility functions
402 **************************************/
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#ifndef __BIG_ENDIAN
405/*
406 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
407 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400408static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 u32 *temp = buffer;
411
412 for (length = (length >> 2); length--; )
413 temp[length] = be32_to_cpu(temp[length]);
414
415 return;
416}
417
418/*
419 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
420 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400421static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 u32 *temp = buffer;
424
425 for (length = (length >> 2); length--; )
426 temp[length] = cpu_to_be32(temp[length]);
427
428 return;
429}
430#else /* BIG_ENDIAN */
431/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200432#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
433#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#endif
435
436#ifdef CONFIG_IEEE1394_SBP2_PACKET_DUMP
437/*
438 * Debug packet dump routine. Length is in bytes.
439 */
Stefan Richtera237f352005-11-07 06:31:39 -0500440static void sbp2util_packet_dump(void *buffer, int length, char *dump_name,
441 u32 dump_phys_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 int i;
444 unsigned char *dump = buffer;
445
446 if (!dump || !length || !dump_name)
447 return;
448
449 if (dump_phys_addr)
450 printk("[%s, 0x%x]", dump_name, dump_phys_addr);
451 else
452 printk("[%s]", dump_name);
453 for (i = 0; i < length; i++) {
454 if (i > 0x3f) {
455 printk("\n ...");
456 break;
457 }
458 if ((i & 0x3) == 0)
459 printk(" ");
460 if ((i & 0xf) == 0)
461 printk("\n ");
Stefan Richtera237f352005-11-07 06:31:39 -0500462 printk("%02x ", (int)dump[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464 printk("\n");
465
466 return;
467}
468#else
Stefan Richter611aa192006-08-02 18:44:00 +0200469#define sbp2util_packet_dump(w,x,y,z) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif
471
Stefan Richtere8398bb2006-07-23 22:19:00 +0200472static DECLARE_WAIT_QUEUE_HEAD(access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Stefan Richtere8398bb2006-07-23 22:19:00 +0200474/*
475 * Waits for completion of an SBP-2 access request.
476 * Returns nonzero if timed out or prematurely interrupted.
477 */
478static int sbp2util_access_timeout(struct scsi_id_instance_data *scsi_id,
479 int timeout)
480{
481 long leftover = wait_event_interruptible_timeout(
482 access_wq, scsi_id->access_complete, timeout);
483
484 scsi_id->access_complete = 0;
485 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Stefan Richtere8398bb2006-07-23 22:19:00 +0200488/* Frees an allocated packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static void sbp2_free_packet(struct hpsb_packet *packet)
490{
491 hpsb_free_tlabel(packet);
492 hpsb_free_packet(packet);
493}
494
495/* This is much like hpsb_node_write(), except it ignores the response
496 * subaction and returns immediately. Can be used from interrupts.
497 */
498static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richtera237f352005-11-07 06:31:39 -0500499 quadlet_t *buffer, size_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 struct hpsb_packet *packet;
502
503 packet = hpsb_make_writepacket(ne->host, ne->nodeid,
504 addr, buffer, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500505 if (!packet)
506 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Stefan Richtera237f352005-11-07 06:31:39 -0500508 hpsb_set_packet_complete_task(packet,
509 (void (*)(void *))sbp2_free_packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 packet);
511
512 hpsb_node_fill_packet(ne, packet);
513
Stefan Richtera237f352005-11-07 06:31:39 -0500514 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 sbp2_free_packet(packet);
516 return -EIO;
517 }
518
519 return 0;
520}
521
Stefan Richter09ee67a2006-08-14 18:43:00 +0200522static void sbp2util_notify_fetch_agent(struct scsi_id_instance_data *scsi_id,
523 u64 offset, quadlet_t *data, size_t len)
524{
525 /*
526 * There is a small window after a bus reset within which the node
527 * entry's generation is current but the reconnect wasn't completed.
528 */
Stefan Richter2cccbb52006-08-14 18:59:00 +0200529 if (unlikely(atomic_read(&scsi_id->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200530 return;
531
532 if (hpsb_node_write(scsi_id->ne,
533 scsi_id->sbp2_command_block_agent_addr + offset,
534 data, len))
535 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
536 /*
537 * Now accept new SCSI commands, unless a bus reset happended during
538 * hpsb_node_write.
539 */
Stefan Richter2cccbb52006-08-14 18:59:00 +0200540 if (likely(atomic_read(&scsi_id->state) != SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200541 scsi_unblock_requests(scsi_id->scsi_host);
542}
543
David Howellsc4028952006-11-22 14:57:56 +0000544static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200545{
David Howellsc4028952006-11-22 14:57:56 +0000546 struct scsi_id_instance_data *scsi_id =
547 container_of(work, struct scsi_id_instance_data,
548 protocol_work.work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200549 quadlet_t data[2];
550
David Howellsc4028952006-11-22 14:57:56 +0000551 data[0] = ORB_SET_NODE_ID(scsi_id->hi->host->node_id);
552 data[1] = scsi_id->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200553 sbp2util_cpu_to_be32_buffer(data, 8);
David Howellsc4028952006-11-22 14:57:56 +0000554 sbp2util_notify_fetch_agent(scsi_id, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200555}
556
David Howellsc4028952006-11-22 14:57:56 +0000557static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200558{
David Howellsc4028952006-11-22 14:57:56 +0000559 struct scsi_id_instance_data *scsi_id =
560 container_of(work, struct scsi_id_instance_data,
561 protocol_work.work);
562 sbp2util_notify_fetch_agent(scsi_id, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/*
566 * This function is called to create a pool of command orbs used for
567 * command processing. It is called when a new sbp2 device is detected.
568 */
569static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id)
570{
571 struct sbp2scsi_host_info *hi = scsi_id->hi;
572 int i;
573 unsigned long flags, orbs;
574 struct sbp2_command_info *command;
575
576 orbs = serialize_io ? 2 : SBP2_MAX_CMDS;
577
578 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
579 for (i = 0; i < orbs; i++) {
Stefan Richter85511582005-11-07 06:31:45 -0500580 command = kzalloc(sizeof(*command), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (!command) {
Stefan Richtera237f352005-11-07 06:31:39 -0500582 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock,
583 flags);
584 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 command->command_orb_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500587 pci_map_single(hi->host->pdev, &command->command_orb,
588 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +0200589 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 SBP2_DMA_ALLOC("single command orb DMA");
591 command->sge_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500592 pci_map_single(hi->host->pdev,
593 &command->scatter_gather_element,
594 sizeof(command->scatter_gather_element),
595 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 SBP2_DMA_ALLOC("scatter_gather_element");
597 INIT_LIST_HEAD(&command->list);
598 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
599 }
600 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
601 return 0;
602}
603
604/*
605 * This function is called to delete a pool of command orbs.
606 */
607static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id)
608{
609 struct hpsb_host *host = scsi_id->hi->host;
610 struct list_head *lh, *next;
611 struct sbp2_command_info *command;
612 unsigned long flags;
613
614 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
615 if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
616 list_for_each_safe(lh, next, &scsi_id->sbp2_command_orb_completed) {
617 command = list_entry(lh, struct sbp2_command_info, list);
618
619 /* Release our generic DMA's */
620 pci_unmap_single(host->pdev, command->command_orb_dma,
621 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +0200622 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 SBP2_DMA_FREE("single command orb DMA");
624 pci_unmap_single(host->pdev, command->sge_dma,
625 sizeof(command->scatter_gather_element),
626 PCI_DMA_BIDIRECTIONAL);
627 SBP2_DMA_FREE("scatter_gather_element");
628
629 kfree(command);
630 }
631 }
632 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
633 return;
634}
635
636/*
637 * This function finds the sbp2_command for a given outstanding command
638 * orb.Only looks at the inuse list.
639 */
640static struct sbp2_command_info *sbp2util_find_command_for_orb(
641 struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
642{
643 struct sbp2_command_info *command;
644 unsigned long flags;
645
646 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
647 if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
648 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
649 if (command->command_orb_dma == orb) {
650 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500651 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653 }
654 }
655 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
656
657 SBP2_ORB_DEBUG("could not match command orb %x", (unsigned int)orb);
658
Stefan Richtera237f352005-11-07 06:31:39 -0500659 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662/*
663 * This function finds the sbp2_command for a given outstanding SCpnt.
664 * Only looks at the inuse list.
Stefan Richter24c7cd02006-04-01 21:11:41 +0200665 * Must be called with scsi_id->sbp2_command_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200667static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
668 struct scsi_id_instance_data *scsi_id, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct sbp2_command_info *command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Stefan Richter24c7cd02006-04-01 21:11:41 +0200672 if (!list_empty(&scsi_id->sbp2_command_orb_inuse))
673 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list)
674 if (command->Current_SCpnt == SCpnt)
Stefan Richtera237f352005-11-07 06:31:39 -0500675 return command;
Stefan Richtera237f352005-11-07 06:31:39 -0500676 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
679/*
680 * This function allocates a command orb used to send a scsi command.
681 */
682static struct sbp2_command_info *sbp2util_allocate_command_orb(
683 struct scsi_id_instance_data *scsi_id,
684 struct scsi_cmnd *Current_SCpnt,
685 void (*Current_done)(struct scsi_cmnd *))
686{
687 struct list_head *lh;
688 struct sbp2_command_info *command = NULL;
689 unsigned long flags;
690
691 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
692 if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
693 lh = scsi_id->sbp2_command_orb_completed.next;
694 list_del(lh);
695 command = list_entry(lh, struct sbp2_command_info, list);
696 command->Current_done = Current_done;
697 command->Current_SCpnt = Current_SCpnt;
698 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_inuse);
699 } else {
Stefan Richterd024ebc2006-03-28 20:03:55 -0500700 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500703 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706/* Free our DMA's */
707static void sbp2util_free_command_dma(struct sbp2_command_info *command)
708{
709 struct scsi_id_instance_data *scsi_id =
710 (struct scsi_id_instance_data *)command->Current_SCpnt->device->host->hostdata[0];
711 struct hpsb_host *host;
712
713 if (!scsi_id) {
Stefan Richterd024ebc2006-03-28 20:03:55 -0500714 SBP2_ERR("%s: scsi_id == NULL", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return;
716 }
717
718 host = scsi_id->ud->ne->host;
719
720 if (command->cmd_dma) {
721 if (command->dma_type == CMD_DMA_SINGLE) {
722 pci_unmap_single(host->pdev, command->cmd_dma,
723 command->dma_size, command->dma_dir);
724 SBP2_DMA_FREE("single bulk");
725 } else if (command->dma_type == CMD_DMA_PAGE) {
726 pci_unmap_page(host->pdev, command->cmd_dma,
727 command->dma_size, command->dma_dir);
728 SBP2_DMA_FREE("single page");
729 } /* XXX: Check for CMD_DMA_NONE bug */
730 command->dma_type = CMD_DMA_NONE;
731 command->cmd_dma = 0;
732 }
733
734 if (command->sge_buffer) {
735 pci_unmap_sg(host->pdev, command->sge_buffer,
736 command->dma_size, command->dma_dir);
737 SBP2_DMA_FREE("scatter list");
738 command->sge_buffer = NULL;
739 }
740}
741
742/*
743 * This function moves a command to the completed orb list.
Stefan Richter24c7cd02006-04-01 21:11:41 +0200744 * Must be called with scsi_id->sbp2_command_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200746static void sbp2util_mark_command_completed(
747 struct scsi_id_instance_data *scsi_id,
748 struct sbp2_command_info *command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 list_del(&command->list);
751 sbp2util_free_command_dma(command);
752 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Jody McIntyreabd559b2005-09-30 11:59:06 -0700755/*
756 * Is scsi_id valid? Is the 1394 node still present?
757 */
758static inline int sbp2util_node_is_available(struct scsi_id_instance_data *scsi_id)
759{
760 return scsi_id && scsi_id->ne && !scsi_id->ne->in_limbo;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/*********************************************
764 * IEEE-1394 core driver stack related section
765 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767static int sbp2_probe(struct device *dev)
768{
769 struct unit_directory *ud;
770 struct scsi_id_instance_data *scsi_id;
771
Stefan Richterd024ebc2006-03-28 20:03:55 -0500772 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 ud = container_of(dev, struct unit_directory, device);
775
776 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
777 * instead. */
778 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
779 return -ENODEV;
780
Stefan Richtera237f352005-11-07 06:31:39 -0500781 scsi_id = sbp2_alloc_device(ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Stefan Richtera237f352005-11-07 06:31:39 -0500783 if (!scsi_id)
784 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Stefan Richtera237f352005-11-07 06:31:39 -0500786 sbp2_parse_unit_directory(scsi_id, ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Stefan Richtera237f352005-11-07 06:31:39 -0500788 return sbp2_start_device(scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
791static int sbp2_remove(struct device *dev)
792{
793 struct unit_directory *ud;
794 struct scsi_id_instance_data *scsi_id;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700795 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Stefan Richterd024ebc2006-03-28 20:03:55 -0500797 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 ud = container_of(dev, struct unit_directory, device);
800 scsi_id = ud->device.driver_data;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700801 if (!scsi_id)
802 return 0;
803
Stefan Richterbf637ec2006-01-31 00:13:06 -0500804 if (scsi_id->scsi_host) {
805 /* Get rid of enqueued commands if there is no chance to
806 * send them. */
807 if (!sbp2util_node_is_available(scsi_id))
808 sbp2scsi_complete_all_commands(scsi_id, DID_NO_CONNECT);
809 /* scsi_remove_device() will trigger shutdown functions of SCSI
810 * highlevel drivers which would deadlock if blocked. */
Stefan Richter2cccbb52006-08-14 18:59:00 +0200811 atomic_set(&scsi_id->state, SBP2LU_STATE_IN_SHUTDOWN);
Jody McIntyreabd559b2005-09-30 11:59:06 -0700812 scsi_unblock_requests(scsi_id->scsi_host);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500813 }
Jody McIntyreabd559b2005-09-30 11:59:06 -0700814 sdev = scsi_id->sdev;
815 if (sdev) {
816 scsi_id->sdev = NULL;
817 scsi_remove_device(sdev);
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 sbp2_logout_device(scsi_id);
821 sbp2_remove_device(scsi_id);
822
823 return 0;
824}
825
826static int sbp2_update(struct unit_directory *ud)
827{
828 struct scsi_id_instance_data *scsi_id = ud->device.driver_data;
829
Stefan Richterd024ebc2006-03-28 20:03:55 -0500830 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (sbp2_reconnect_device(scsi_id)) {
833
834 /*
835 * Ok, reconnect has failed. Perhaps we didn't
836 * reconnect fast enough. Try doing a regular login, but
837 * first do a logout just in case of any weirdness.
838 */
839 sbp2_logout_device(scsi_id);
840
841 if (sbp2_login_device(scsi_id)) {
842 /* Login failed too, just fail, and the backend
843 * will call our sbp2_remove for us */
844 SBP2_ERR("Failed to reconnect to sbp2 device!");
845 return -EBUSY;
846 }
847 }
848
849 /* Set max retries to something large on the device. */
850 sbp2_set_busy_timeout(scsi_id);
851
852 /* Do a SBP-2 fetch agent reset. */
853 sbp2_agent_reset(scsi_id, 1);
854
855 /* Get the max speed and packet size that we can use. */
856 sbp2_max_speed_and_size(scsi_id);
857
858 /* Complete any pending commands with busy (so they get
859 * retried) and remove them from our queue
860 */
861 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
862
Stefan Richter4fc383c2006-08-14 18:46:00 +0200863 /* Accept new commands unless there was another bus reset in the
864 * meantime. */
865 if (hpsb_node_entry_valid(scsi_id->ne)) {
Stefan Richter2cccbb52006-08-14 18:59:00 +0200866 atomic_set(&scsi_id->state, SBP2LU_STATE_RUNNING);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200867 scsi_unblock_requests(scsi_id->scsi_host);
868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return 0;
870}
871
872/* This functions is called by the sbp2_probe, for each new device. We now
873 * allocate one scsi host for each scsi_id (unit directory). */
874static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud)
875{
876 struct sbp2scsi_host_info *hi;
877 struct Scsi_Host *scsi_host = NULL;
878 struct scsi_id_instance_data *scsi_id = NULL;
879
Stefan Richterd024ebc2006-03-28 20:03:55 -0500880 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Stefan Richter85511582005-11-07 06:31:45 -0500882 scsi_id = kzalloc(sizeof(*scsi_id), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (!scsi_id) {
884 SBP2_ERR("failed to create scsi_id");
885 goto failed_alloc;
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 scsi_id->ne = ud->ne;
889 scsi_id->ud = ud;
890 scsi_id->speed_code = IEEE1394_SPEED_100;
891 scsi_id->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
Ben Collins67372312006-06-12 18:15:31 -0400892 scsi_id->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_inuse);
894 INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_completed);
895 INIT_LIST_HEAD(&scsi_id->scsi_list);
896 spin_lock_init(&scsi_id->sbp2_command_orb_lock);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200897 atomic_set(&scsi_id->state, SBP2LU_STATE_RUNNING);
David Howellsc4028952006-11-22 14:57:56 +0000898 INIT_DELAYED_WORK(&scsi_id->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 ud->device.driver_data = scsi_id;
901
902 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
903 if (!hi) {
904 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, sizeof(*hi));
905 if (!hi) {
906 SBP2_ERR("failed to allocate hostinfo");
907 goto failed_alloc;
908 }
909 SBP2_DEBUG("sbp2_alloc_device: allocated hostinfo");
910 hi->host = ud->ne->host;
911 INIT_LIST_HEAD(&hi->scsi_ids);
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
914 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500915 * enabled or not supported on host controller */
916 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
917 &sbp2_physdma_ops,
918 0x0ULL, 0xfffffffcULL)) {
919 SBP2_ERR("failed to register lower 4GB address range");
920 goto failed_alloc;
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#endif
923 }
924
Stefan Richter147830f2006-03-28 19:54:52 -0500925 /* Prevent unloading of the 1394 host */
926 if (!try_module_get(hi->host->driver->owner)) {
927 SBP2_ERR("failed to get a reference on 1394 host driver");
928 goto failed_alloc;
929 }
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 scsi_id->hi = hi;
932
933 list_add_tail(&scsi_id->scsi_list, &hi->scsi_ids);
934
Stefan Richter35bdddb2006-01-31 00:13:33 -0500935 /* Register the status FIFO address range. We could use the same FIFO
936 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200937 * target in order to support multi-unit devices.
938 * The FIFO is located out of the local host controller's physical range
939 * but, if possible, within the posted write area. Status writes will
940 * then be performed as unified transactions. This slightly reduces
941 * bandwidth usage, and some Prolific based devices seem to require it.
942 */
Stefan Richter35bdddb2006-01-31 00:13:33 -0500943 scsi_id->status_fifo_addr = hpsb_allocate_and_register_addrspace(
944 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
945 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400946 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Ben Collins67372312006-06-12 18:15:31 -0400947 if (scsi_id->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500948 SBP2_ERR("failed to allocate status FIFO address range");
949 goto failed_alloc;
950 }
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 /* Register our host with the SCSI stack. */
Alexandre Olivaa2ef79e2005-06-15 22:26:31 -0700953 scsi_host = scsi_host_alloc(&scsi_driver_template,
Stefan Richtera237f352005-11-07 06:31:39 -0500954 sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (!scsi_host) {
956 SBP2_ERR("failed to register scsi host");
957 goto failed_alloc;
958 }
959
960 scsi_host->hostdata[0] = (unsigned long)scsi_id;
961
962 if (!scsi_add_host(scsi_host, &ud->device)) {
963 scsi_id->scsi_host = scsi_host;
964 return scsi_id;
965 }
966
967 SBP2_ERR("failed to add scsi host");
968 scsi_host_put(scsi_host);
969
970failed_alloc:
971 sbp2_remove_device(scsi_id);
972 return NULL;
973}
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975static void sbp2_host_reset(struct hpsb_host *host)
976{
977 struct sbp2scsi_host_info *hi;
978 struct scsi_id_instance_data *scsi_id;
979
980 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200981 if (!hi)
982 return;
983 list_for_each_entry(scsi_id, &hi->scsi_ids, scsi_list)
984 if (likely(atomic_read(&scsi_id->state) !=
985 SBP2LU_STATE_IN_SHUTDOWN)) {
986 atomic_set(&scsi_id->state, SBP2LU_STATE_IN_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 scsi_block_requests(scsi_id->scsi_host);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991/*
992 * This function is where we first pull the node unique ids, and then
993 * allocate memory and register a SBP-2 device.
994 */
995static int sbp2_start_device(struct scsi_id_instance_data *scsi_id)
996{
997 struct sbp2scsi_host_info *hi = scsi_id->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500998 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Stefan Richterd024ebc2006-03-28 20:03:55 -05001000 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 /* Login FIFO DMA */
1003 scsi_id->login_response =
Stefan Richtera237f352005-11-07 06:31:39 -05001004 pci_alloc_consistent(hi->host->pdev,
1005 sizeof(struct sbp2_login_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 &scsi_id->login_response_dma);
1007 if (!scsi_id->login_response)
1008 goto alloc_fail;
1009 SBP2_DMA_ALLOC("consistent DMA region for login FIFO");
1010
1011 /* Query logins ORB DMA */
1012 scsi_id->query_logins_orb =
Stefan Richtera237f352005-11-07 06:31:39 -05001013 pci_alloc_consistent(hi->host->pdev,
1014 sizeof(struct sbp2_query_logins_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 &scsi_id->query_logins_orb_dma);
1016 if (!scsi_id->query_logins_orb)
1017 goto alloc_fail;
1018 SBP2_DMA_ALLOC("consistent DMA region for query logins ORB");
1019
1020 /* Query logins response DMA */
1021 scsi_id->query_logins_response =
Stefan Richtera237f352005-11-07 06:31:39 -05001022 pci_alloc_consistent(hi->host->pdev,
1023 sizeof(struct sbp2_query_logins_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 &scsi_id->query_logins_response_dma);
1025 if (!scsi_id->query_logins_response)
1026 goto alloc_fail;
1027 SBP2_DMA_ALLOC("consistent DMA region for query logins response");
1028
1029 /* Reconnect ORB DMA */
1030 scsi_id->reconnect_orb =
Stefan Richtera237f352005-11-07 06:31:39 -05001031 pci_alloc_consistent(hi->host->pdev,
1032 sizeof(struct sbp2_reconnect_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 &scsi_id->reconnect_orb_dma);
1034 if (!scsi_id->reconnect_orb)
1035 goto alloc_fail;
1036 SBP2_DMA_ALLOC("consistent DMA region for reconnect ORB");
1037
1038 /* Logout ORB DMA */
1039 scsi_id->logout_orb =
Stefan Richtera237f352005-11-07 06:31:39 -05001040 pci_alloc_consistent(hi->host->pdev,
1041 sizeof(struct sbp2_logout_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 &scsi_id->logout_orb_dma);
1043 if (!scsi_id->logout_orb)
1044 goto alloc_fail;
1045 SBP2_DMA_ALLOC("consistent DMA region for logout ORB");
1046
1047 /* Login ORB DMA */
1048 scsi_id->login_orb =
Stefan Richtera237f352005-11-07 06:31:39 -05001049 pci_alloc_consistent(hi->host->pdev,
1050 sizeof(struct sbp2_login_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 &scsi_id->login_orb_dma);
Stefan Richtereaceec72005-12-13 11:05:05 -05001052 if (!scsi_id->login_orb)
1053 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 SBP2_DMA_ALLOC("consistent DMA region for login ORB");
1055
1056 SBP2_DEBUG("New SBP-2 device inserted, SCSI ID = %x", scsi_id->ud->id);
1057
1058 /*
1059 * Create our command orb pool
1060 */
1061 if (sbp2util_create_command_orb_pool(scsi_id)) {
1062 SBP2_ERR("sbp2util_create_command_orb_pool failed!");
1063 sbp2_remove_device(scsi_id);
1064 return -ENOMEM;
1065 }
1066
1067 /* Schedule a timeout here. The reason is that we may be so close
1068 * to a bus reset, that the device is not available for logins.
1069 * This can happen when the bus reset is caused by the host
1070 * connected to the sbp2 device being removed. That host would
1071 * have a certain amount of time to relogin before the sbp2 device
1072 * allows someone else to login instead. One second makes sense. */
Stefan Richter902abed2006-08-14 18:56:00 +02001073 if (msleep_interruptible(1000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 sbp2_remove_device(scsi_id);
1075 return -EINTR;
1076 }
Stefan Richtera237f352005-11-07 06:31:39 -05001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /*
1079 * Login to the sbp-2 device
1080 */
1081 if (sbp2_login_device(scsi_id)) {
1082 /* Login failed, just remove the device. */
1083 sbp2_remove_device(scsi_id);
1084 return -EBUSY;
1085 }
1086
1087 /*
1088 * Set max retries to something large on the device
1089 */
1090 sbp2_set_busy_timeout(scsi_id);
1091
1092 /*
1093 * Do a SBP-2 fetch agent reset
1094 */
1095 sbp2_agent_reset(scsi_id, 1);
1096
1097 /*
1098 * Get the max speed and packet size that we can use
1099 */
1100 sbp2_max_speed_and_size(scsi_id);
1101
1102 /* Add this device to the scsi layer now */
James Bottomley146f7262005-09-10 12:44:09 -05001103 error = scsi_add_device(scsi_id->scsi_host, 0, scsi_id->ud->id, 0);
1104 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 SBP2_ERR("scsi_add_device failed");
Stefan Richterdc3edd52005-12-12 23:03:30 -05001106 sbp2_logout_device(scsi_id);
1107 sbp2_remove_device(scsi_id);
James Bottomley146f7262005-09-10 12:44:09 -05001108 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
1111 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -05001112
1113alloc_fail:
1114 SBP2_ERR("Could not allocate memory for scsi_id");
1115 sbp2_remove_device(scsi_id);
1116 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119/*
1120 * This function removes an sbp2 device from the sbp2scsi_host_info struct.
1121 */
1122static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id)
1123{
1124 struct sbp2scsi_host_info *hi;
1125
Stefan Richterd024ebc2006-03-28 20:03:55 -05001126 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (!scsi_id)
1129 return;
1130
1131 hi = scsi_id->hi;
1132
1133 /* This will remove our scsi device aswell */
1134 if (scsi_id->scsi_host) {
1135 scsi_remove_host(scsi_id->scsi_host);
1136 scsi_host_put(scsi_id->scsi_host);
1137 }
Stefan Richter09ee67a2006-08-14 18:43:00 +02001138 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 sbp2util_remove_command_orb_pool(scsi_id);
1140
1141 list_del(&scsi_id->scsi_list);
1142
1143 if (scsi_id->login_response) {
1144 pci_free_consistent(hi->host->pdev,
1145 sizeof(struct sbp2_login_response),
1146 scsi_id->login_response,
1147 scsi_id->login_response_dma);
1148 SBP2_DMA_FREE("single login FIFO");
1149 }
1150
1151 if (scsi_id->login_orb) {
1152 pci_free_consistent(hi->host->pdev,
1153 sizeof(struct sbp2_login_orb),
1154 scsi_id->login_orb,
1155 scsi_id->login_orb_dma);
1156 SBP2_DMA_FREE("single login ORB");
1157 }
1158
1159 if (scsi_id->reconnect_orb) {
1160 pci_free_consistent(hi->host->pdev,
1161 sizeof(struct sbp2_reconnect_orb),
1162 scsi_id->reconnect_orb,
1163 scsi_id->reconnect_orb_dma);
1164 SBP2_DMA_FREE("single reconnect orb");
1165 }
1166
1167 if (scsi_id->logout_orb) {
1168 pci_free_consistent(hi->host->pdev,
1169 sizeof(struct sbp2_logout_orb),
1170 scsi_id->logout_orb,
1171 scsi_id->logout_orb_dma);
1172 SBP2_DMA_FREE("single logout orb");
1173 }
1174
1175 if (scsi_id->query_logins_orb) {
1176 pci_free_consistent(hi->host->pdev,
1177 sizeof(struct sbp2_query_logins_orb),
1178 scsi_id->query_logins_orb,
1179 scsi_id->query_logins_orb_dma);
1180 SBP2_DMA_FREE("single query logins orb");
1181 }
1182
1183 if (scsi_id->query_logins_response) {
1184 pci_free_consistent(hi->host->pdev,
1185 sizeof(struct sbp2_query_logins_response),
1186 scsi_id->query_logins_response,
1187 scsi_id->query_logins_response_dma);
1188 SBP2_DMA_FREE("single query logins data");
1189 }
1190
Ben Collins67372312006-06-12 18:15:31 -04001191 if (scsi_id->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -05001192 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Ben Collins67372312006-06-12 18:15:31 -04001193 scsi_id->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -05001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 scsi_id->ud->device.driver_data = NULL;
1196
Stefan Richter147830f2006-03-28 19:54:52 -05001197 if (hi)
1198 module_put(hi->host->driver->owner);
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 SBP2_DEBUG("SBP-2 device removed, SCSI ID = %d", scsi_id->ud->id);
1201
1202 kfree(scsi_id);
1203}
1204
1205#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1206/*
1207 * This function deals with physical dma write requests (for adapters that do not support
1208 * physical dma in hardware). Mostly just here for debugging...
1209 */
Stefan Richtera237f352005-11-07 06:31:39 -05001210static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1211 int destid, quadlet_t *data, u64 addr,
1212 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214
Stefan Richtera237f352005-11-07 06:31:39 -05001215 /*
1216 * Manually put the data in the right place.
1217 */
1218 memcpy(bus_to_virt((u32) addr), data, length);
1219 sbp2util_packet_dump(data, length, "sbp2 phys dma write by device",
1220 (u32) addr);
1221 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224/*
1225 * This function deals with physical dma read requests (for adapters that do not support
1226 * physical dma in hardware). Mostly just here for debugging...
1227 */
Stefan Richtera237f352005-11-07 06:31:39 -05001228static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1229 quadlet_t *data, u64 addr, size_t length,
1230 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232
Stefan Richtera237f352005-11-07 06:31:39 -05001233 /*
1234 * Grab data from memory and send a read response.
1235 */
1236 memcpy(data, bus_to_virt((u32) addr), length);
1237 sbp2util_packet_dump(data, length, "sbp2 phys dma read by device",
1238 (u32) addr);
1239 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241#endif
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243/**************************************
1244 * SBP-2 protocol related section
1245 **************************************/
1246
1247/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 * This function queries the device for the maximum concurrent logins it
1249 * supports.
1250 */
1251static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
1252{
1253 struct sbp2scsi_host_info *hi = scsi_id->hi;
1254 quadlet_t data[2];
1255 int max_logins;
1256 int active_logins;
1257
Stefan Richterd024ebc2006-03-28 20:03:55 -05001258 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 scsi_id->query_logins_orb->reserved1 = 0x0;
1261 scsi_id->query_logins_orb->reserved2 = 0x0;
1262
1263 scsi_id->query_logins_orb->query_response_lo = scsi_id->query_logins_response_dma;
1264 scsi_id->query_logins_orb->query_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 scsi_id->query_logins_orb->lun_misc = ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1267 scsi_id->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
Ben Collinse309fc62005-11-07 06:31:34 -05001268 scsi_id->query_logins_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 scsi_id->query_logins_orb->reserved_resp_length =
1271 ORB_SET_QUERY_LOGINS_RESP_LENGTH(sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Stefan Richter35bdddb2006-01-31 00:13:33 -05001273 scsi_id->query_logins_orb->status_fifo_hi =
1274 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1275 scsi_id->query_logins_orb->status_fifo_lo =
1276 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb));
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 sbp2util_packet_dump(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb),
1281 "sbp2 query logins orb", scsi_id->query_logins_orb_dma);
1282
1283 memset(scsi_id->query_logins_response, 0, sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1286 data[1] = scsi_id->query_logins_orb_dma;
1287 sbp2util_cpu_to_be32_buffer(data, 8);
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Stefan Richtere8398bb2006-07-23 22:19:00 +02001291 if (sbp2util_access_timeout(scsi_id, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001293 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295
1296 if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
1297 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001298 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
1300
Stefan Richter60657722006-07-23 22:18:00 +02001301 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1302 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001303 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
1306 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
1307
1308 SBP2_DEBUG("length_max_logins = %x",
1309 (unsigned int)scsi_id->query_logins_response->length_max_logins);
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001312 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001315 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001318 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
1321 return 0;
1322}
1323
1324/*
1325 * This function is called in order to login to a particular SBP-2 device,
1326 * after a bus reset.
1327 */
1328static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
1329{
1330 struct sbp2scsi_host_info *hi = scsi_id->hi;
1331 quadlet_t data[2];
1332
Stefan Richterd024ebc2006-03-28 20:03:55 -05001333 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 if (!scsi_id->login_orb) {
Stefan Richterd024ebc2006-03-28 20:03:55 -05001336 SBP2_DEBUG("%s: login_orb not alloc'd!", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001337 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
1340 if (!exclusive_login) {
1341 if (sbp2_query_logins(scsi_id)) {
1342 SBP2_INFO("Device does not support any more concurrent logins");
Stefan Richtera237f352005-11-07 06:31:39 -05001343 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345 }
1346
1347 /* Set-up login ORB, assume no password */
1348 scsi_id->login_orb->password_hi = 0;
1349 scsi_id->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
1352 scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
1355 scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0); /* One second reconnect time */
1356 scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(exclusive_login); /* Exclusive access to device */
1357 scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1); /* Notify us of login complete */
Ben Collinse309fc62005-11-07 06:31:34 -05001358 scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 scsi_id->login_orb->passwd_resp_lengths =
1361 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Stefan Richter35bdddb2006-01-31 00:13:33 -05001363 scsi_id->login_orb->status_fifo_hi =
1364 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1365 scsi_id->login_orb->status_fifo_lo =
1366 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 sbp2util_packet_dump(scsi_id->login_orb, sizeof(struct sbp2_login_orb),
1371 "sbp2 login orb", scsi_id->login_orb_dma);
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1376 data[1] = scsi_id->login_orb_dma;
1377 sbp2util_cpu_to_be32_buffer(data, 8);
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
1382 * Wait for login status (up to 20 seconds)...
1383 */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001384 if (sbp2util_access_timeout(scsi_id, 20*HZ)) {
1385 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001386 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388
1389 /*
1390 * Sanity. Make sure status returned matches login orb.
1391 */
1392 if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001393 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001394 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Stefan Richter60657722006-07-23 22:18:00 +02001397 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1398 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001399 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
1402 /*
1403 * Byte swap the login response, for use when reconnecting or
1404 * logging out.
1405 */
1406 sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
1407
1408 /*
1409 * Grab our command block agent address from the login response.
1410 */
1411 SBP2_DEBUG("command_block_agent_hi = %x",
1412 (unsigned int)scsi_id->login_response->command_block_agent_hi);
1413 SBP2_DEBUG("command_block_agent_lo = %x",
1414 (unsigned int)scsi_id->login_response->command_block_agent_lo);
1415
1416 scsi_id->sbp2_command_block_agent_addr =
1417 ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
1418 scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
1419 scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
1420
1421 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
1425/*
1426 * This function is called in order to logout from a particular SBP-2
1427 * device, usually called during driver unload.
1428 */
1429static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
1430{
1431 struct sbp2scsi_host_info *hi = scsi_id->hi;
1432 quadlet_t data[2];
1433 int error;
1434
Stefan Richterd024ebc2006-03-28 20:03:55 -05001435 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 /*
1438 * Set-up logout ORB
1439 */
1440 scsi_id->logout_orb->reserved1 = 0x0;
1441 scsi_id->logout_orb->reserved2 = 0x0;
1442 scsi_id->logout_orb->reserved3 = 0x0;
1443 scsi_id->logout_orb->reserved4 = 0x0;
1444
1445 scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1446 scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1447
1448 /* Notify us when complete */
1449 scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1450
1451 scsi_id->logout_orb->reserved5 = 0x0;
Stefan Richter35bdddb2006-01-31 00:13:33 -05001452 scsi_id->logout_orb->status_fifo_hi =
1453 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1454 scsi_id->logout_orb->status_fifo_lo =
1455 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 /*
1458 * Byte swap ORB if necessary
1459 */
1460 sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
1461
1462 sbp2util_packet_dump(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb),
1463 "sbp2 logout orb", scsi_id->logout_orb_dma);
1464
1465 /*
1466 * Ok, let's write to the target's management agent register
1467 */
1468 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1469 data[1] = scsi_id->logout_orb_dma;
1470 sbp2util_cpu_to_be32_buffer(data, 8);
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 error = hpsb_node_write(scsi_id->ne,
Stefan Richtera237f352005-11-07 06:31:39 -05001473 scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (error)
1475 return error;
1476
1477 /* Wait for device to logout...1 second. */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001478 if (sbp2util_access_timeout(scsi_id, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return -EIO;
1480
1481 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485/*
1486 * This function is called in order to reconnect to a particular SBP-2
1487 * device, after a bus reset.
1488 */
1489static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
1490{
1491 struct sbp2scsi_host_info *hi = scsi_id->hi;
1492 quadlet_t data[2];
1493 int error;
1494
Stefan Richterd024ebc2006-03-28 20:03:55 -05001495 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 /*
1498 * Set-up reconnect ORB
1499 */
1500 scsi_id->reconnect_orb->reserved1 = 0x0;
1501 scsi_id->reconnect_orb->reserved2 = 0x0;
1502 scsi_id->reconnect_orb->reserved3 = 0x0;
1503 scsi_id->reconnect_orb->reserved4 = 0x0;
1504
1505 scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1506 scsi_id->reconnect_orb->login_ID_misc |=
1507 ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1508
1509 /* Notify us when complete */
1510 scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1511
1512 scsi_id->reconnect_orb->reserved5 = 0x0;
Stefan Richter35bdddb2006-01-31 00:13:33 -05001513 scsi_id->reconnect_orb->status_fifo_hi =
1514 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1515 scsi_id->reconnect_orb->status_fifo_lo =
1516 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 /*
1519 * Byte swap ORB if necessary
1520 */
1521 sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
1522
1523 sbp2util_packet_dump(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb),
1524 "sbp2 reconnect orb", scsi_id->reconnect_orb_dma);
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1527 data[1] = scsi_id->reconnect_orb_dma;
1528 sbp2util_cpu_to_be32_buffer(data, 8);
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 error = hpsb_node_write(scsi_id->ne,
Stefan Richtera237f352005-11-07 06:31:39 -05001531 scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (error)
1533 return error;
1534
1535 /*
1536 * Wait for reconnect status (up to 1 second)...
1537 */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001538 if (sbp2util_access_timeout(scsi_id, HZ)) {
1539 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001540 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 /*
1544 * Sanity. Make sure status returned matches reconnect orb.
1545 */
1546 if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001547 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001548 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550
Stefan Richter60657722006-07-23 22:18:00 +02001551 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1552 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001553 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555
Stefan Richter35644092006-11-02 21:16:08 +01001556 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
1560/*
1561 * This function is called in order to set the busy timeout (number of
1562 * retries to attempt) on the sbp2 device.
1563 */
1564static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
1565{
1566 quadlet_t data;
1567
Stefan Richterd024ebc2006-03-28 20:03:55 -05001568 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richterd024ebc2006-03-28 20:03:55 -05001571 if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
1572 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576/*
1577 * This function is called to parse sbp2 device's config rom unit
1578 * directory. Used to determine things like sbp2 management agent offset,
1579 * and command set used (SCSI or RBC).
1580 */
1581static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
1582 struct unit_directory *ud)
1583{
1584 struct csr1212_keyval *kv;
1585 struct csr1212_dentry *dentry;
1586 u64 management_agent_addr;
1587 u32 command_set_spec_id, command_set, unit_characteristics,
Stefan Richter24d3bf82006-05-15 22:04:59 +02001588 firmware_revision;
1589 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 int i;
1591
Stefan Richterd024ebc2006-03-28 20:03:55 -05001592 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 management_agent_addr = 0x0;
1595 command_set_spec_id = 0x0;
1596 command_set = 0x0;
1597 unit_characteristics = 0x0;
1598 firmware_revision = 0x0;
1599
1600 /* Handle different fields in the unit directory, based on keys */
1601 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1602 switch (kv->key.id) {
1603 case CSR1212_KV_ID_DEPENDENT_INFO:
1604 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) {
1605 /* Save off the management agent address */
1606 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001607 CSR1212_REGISTER_SPACE_BASE +
1608 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 SBP2_DEBUG("sbp2_management_agent_addr = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001611 (unsigned int)management_agent_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 } else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
Stefan Richtera237f352005-11-07 06:31:39 -05001613 scsi_id->sbp2_lun =
1614 ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616 break;
1617
1618 case SBP2_COMMAND_SET_SPEC_ID_KEY:
1619 /* Command spec organization */
1620 command_set_spec_id = kv->value.immediate;
1621 SBP2_DEBUG("sbp2_command_set_spec_id = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001622 (unsigned int)command_set_spec_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 break;
1624
1625 case SBP2_COMMAND_SET_KEY:
1626 /* Command set used by sbp2 device */
1627 command_set = kv->value.immediate;
1628 SBP2_DEBUG("sbp2_command_set = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001629 (unsigned int)command_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 break;
1631
1632 case SBP2_UNIT_CHARACTERISTICS_KEY:
1633 /*
1634 * Unit characterisitcs (orb related stuff
1635 * that I'm not yet paying attention to)
1636 */
1637 unit_characteristics = kv->value.immediate;
1638 SBP2_DEBUG("sbp2_unit_characteristics = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001639 (unsigned int)unit_characteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 break;
1641
1642 case SBP2_FIRMWARE_REVISION_KEY:
1643 /* Firmware revision */
1644 firmware_revision = kv->value.immediate;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001645 SBP2_DEBUG("sbp2_firmware_revision = %x",
1646 (unsigned int)firmware_revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 break;
1648
1649 default:
1650 break;
1651 }
1652 }
1653
Stefan Richter24d3bf82006-05-15 22:04:59 +02001654 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Stefan Richter679c0cd2006-05-15 22:08:09 +02001656 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1657 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
1658 if (sbp2_workarounds_table[i].firmware_revision &&
1659 sbp2_workarounds_table[i].firmware_revision !=
1660 (firmware_revision & 0xffff00))
1661 continue;
1662 if (sbp2_workarounds_table[i].model_id &&
1663 sbp2_workarounds_table[i].model_id != ud->model_id)
1664 continue;
1665 workarounds |= sbp2_workarounds_table[i].workarounds;
1666 break;
1667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Stefan Richter24d3bf82006-05-15 22:04:59 +02001669 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001670 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1671 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1672 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001673 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001674 workarounds, firmware_revision,
1675 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1676 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001677
1678 /* We would need one SCSI host template for each target to adjust
1679 * max_sectors on the fly, therefore warn only. */
1680 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
1681 (max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001682 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001683 "max transfer size. WARNING: Current max_sectors "
1684 "setting is larger than 128KB (%d sectors)",
1685 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
1686 max_sectors);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 /* If this is a logical unit directory entry, process the parent
1689 * to get the values. */
1690 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
1691 struct unit_directory *parent_ud =
1692 container_of(ud->device.parent, struct unit_directory, device);
1693 sbp2_parse_unit_directory(scsi_id, parent_ud);
1694 } else {
1695 scsi_id->sbp2_management_agent_addr = management_agent_addr;
1696 scsi_id->sbp2_command_set_spec_id = command_set_spec_id;
1697 scsi_id->sbp2_command_set = command_set;
1698 scsi_id->sbp2_unit_characteristics = unit_characteristics;
1699 scsi_id->sbp2_firmware_revision = firmware_revision;
1700 scsi_id->workarounds = workarounds;
1701 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Ben Collinse309fc62005-11-07 06:31:34 -05001702 scsi_id->sbp2_lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704}
1705
Ben Collinsfd23ade2006-06-12 18:14:14 -04001706#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708/*
1709 * This function is called in order to determine the max speed and packet
1710 * size we can use in our ORBs. Note, that we (the driver and host) only
1711 * initiate the transaction. The SBP-2 device actually transfers the data
1712 * (by reading from the DMA area we tell it). This means that the SBP-2
1713 * device decides the actual maximum data it can transfer. We just tell it
1714 * the speed that it needs to use, and the max_rec the host supports, and
1715 * it takes care of the rest.
1716 */
1717static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
1718{
1719 struct sbp2scsi_host_info *hi = scsi_id->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001720 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Stefan Richterd024ebc2006-03-28 20:03:55 -05001722 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Stefan Richtera237f352005-11-07 06:31:39 -05001724 scsi_id->speed_code =
Ben Collins647dcb52006-06-12 18:12:37 -04001725 hi->host->speed[NODEID_TO_NODE(scsi_id->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 /* Bump down our speed if the user requested it */
1728 if (scsi_id->speed_code > max_speed) {
1729 scsi_id->speed_code = max_speed;
Stefan Richter35644092006-11-02 21:16:08 +01001730 SBP2_INFO("Reducing speed to %s", hpsb_speedto_str[max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732
1733 /* Payload size is the lesser of what our speed supports and what
1734 * our host supports. */
Ben Collinsfd23ade2006-06-12 18:14:14 -04001735 payload = min(sbp2_speedto_max_payload[scsi_id->speed_code],
1736 (u8) (hi->host->csr.max_rec - 1));
1737
1738 /* If physical DMA is off, work around limitation in ohci1394:
1739 * packet size must not exceed PAGE_SIZE */
1740 if (scsi_id->ne->host->low_addr_space < (1ULL << 32))
1741 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1742 payload)
1743 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Stefan Richter35644092006-11-02 21:16:08 +01001745 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
1746 NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
1747 hpsb_speedto_str[scsi_id->speed_code],
1748 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Ben Collinsfd23ade2006-06-12 18:14:14 -04001750 scsi_id->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
1754/*
1755 * This function is called in order to perform a SBP-2 agent reset.
1756 */
1757static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
1758{
1759 quadlet_t data;
1760 u64 addr;
1761 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001762 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Stefan Richterd024ebc2006-03-28 20:03:55 -05001764 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Stefan Richter09ee67a2006-08-14 18:43:00 +02001766 cancel_delayed_work(&scsi_id->protocol_work);
1767 if (wait)
1768 flush_scheduled_work();
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 data = ntohl(SBP2_AGENT_RESET_DATA);
1771 addr = scsi_id->sbp2_command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
1772
1773 if (wait)
1774 retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
1775 else
1776 retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
1777
1778 if (retval < 0) {
1779 SBP2_ERR("hpsb_node_write failed.\n");
1780 return -EIO;
1781 }
1782
1783 /*
1784 * Need to make sure orb pointer is written on next command
1785 */
Stefan Richtercc078182006-07-23 22:12:00 +02001786 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 scsi_id->last_orb = NULL;
Stefan Richtercc078182006-07-23 22:12:00 +02001788 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Stefan Richtera237f352005-11-07 06:31:39 -05001790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001793static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1794 struct sbp2scsi_host_info *hi,
1795 struct sbp2_command_info *command,
1796 unsigned int scsi_use_sg,
1797 struct scatterlist *sgpnt,
1798 u32 orb_direction,
1799 enum dma_data_direction dma_dir)
1800{
1801 command->dma_dir = dma_dir;
1802 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1803 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1804
1805 /* Special case if only one element (and less than 64KB in size) */
1806 if ((scsi_use_sg == 1) &&
1807 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1808
1809 SBP2_DEBUG("Only one s/g element");
1810 command->dma_size = sgpnt[0].length;
1811 command->dma_type = CMD_DMA_PAGE;
1812 command->cmd_dma = pci_map_page(hi->host->pdev,
1813 sgpnt[0].page,
1814 sgpnt[0].offset,
1815 command->dma_size,
1816 command->dma_dir);
1817 SBP2_DMA_ALLOC("single page scatter element");
1818
1819 orb->data_descriptor_lo = command->cmd_dma;
1820 orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
1821
1822 } else {
1823 struct sbp2_unrestricted_page_table *sg_element =
1824 &command->scatter_gather_element[0];
1825 u32 sg_count, sg_len;
1826 dma_addr_t sg_addr;
1827 int i, count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg,
1828 dma_dir);
1829
1830 SBP2_DMA_ALLOC("scatter list");
1831
1832 command->dma_size = scsi_use_sg;
1833 command->sge_buffer = sgpnt;
1834
1835 /* use page tables (s/g) */
1836 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1837 orb->data_descriptor_lo = command->sge_dma;
1838
1839 /*
1840 * Loop through and fill out our sbp-2 page tables
1841 * (and split up anything too large)
1842 */
1843 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1844 sg_len = sg_dma_len(sgpnt);
1845 sg_addr = sg_dma_address(sgpnt);
1846 while (sg_len) {
1847 sg_element[sg_count].segment_base_lo = sg_addr;
1848 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1849 sg_element[sg_count].length_segment_base_hi =
1850 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1851 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1852 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1853 } else {
1854 sg_element[sg_count].length_segment_base_hi =
1855 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1856 sg_len = 0;
1857 }
1858 sg_count++;
1859 }
1860 }
1861
1862 /* Number of page table (s/g) elements */
1863 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1864
1865 sbp2util_packet_dump(sg_element,
1866 (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1867 "sbp2 s/g list", command->sge_dma);
1868
1869 /* Byte swap page tables if necessary */
1870 sbp2util_cpu_to_be32_buffer(sg_element,
1871 (sizeof(struct sbp2_unrestricted_page_table)) *
1872 sg_count);
1873 }
1874}
1875
1876static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
1877 struct sbp2scsi_host_info *hi,
1878 struct sbp2_command_info *command,
1879 struct scatterlist *sgpnt,
1880 u32 orb_direction,
1881 unsigned int scsi_request_bufflen,
1882 void *scsi_request_buffer,
1883 enum dma_data_direction dma_dir)
1884{
1885 command->dma_dir = dma_dir;
1886 command->dma_size = scsi_request_bufflen;
1887 command->dma_type = CMD_DMA_SINGLE;
1888 command->cmd_dma = pci_map_single(hi->host->pdev, scsi_request_buffer,
1889 command->dma_size, command->dma_dir);
1890 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1891 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1892
1893 SBP2_DMA_ALLOC("single bulk");
1894
1895 /*
1896 * Handle case where we get a command w/o s/g enabled (but
1897 * check for transfers larger than 64K)
1898 */
1899 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1900
1901 orb->data_descriptor_lo = command->cmd_dma;
1902 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1903
1904 } else {
1905 struct sbp2_unrestricted_page_table *sg_element =
1906 &command->scatter_gather_element[0];
1907 u32 sg_count, sg_len;
1908 dma_addr_t sg_addr;
1909
1910 /*
1911 * Need to turn this into page tables, since the
1912 * buffer is too large.
1913 */
1914 orb->data_descriptor_lo = command->sge_dma;
1915
1916 /* Use page tables (s/g) */
1917 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1918
1919 /*
1920 * fill out our sbp-2 page tables (and split up
1921 * the large buffer)
1922 */
1923 sg_count = 0;
1924 sg_len = scsi_request_bufflen;
1925 sg_addr = command->cmd_dma;
1926 while (sg_len) {
1927 sg_element[sg_count].segment_base_lo = sg_addr;
1928 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1929 sg_element[sg_count].length_segment_base_hi =
1930 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1931 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1932 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1933 } else {
1934 sg_element[sg_count].length_segment_base_hi =
1935 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1936 sg_len = 0;
1937 }
1938 sg_count++;
1939 }
1940
1941 /* Number of page table (s/g) elements */
1942 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1943
1944 sbp2util_packet_dump(sg_element,
1945 (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1946 "sbp2 s/g list", command->sge_dma);
1947
1948 /* Byte swap page tables if necessary */
1949 sbp2util_cpu_to_be32_buffer(sg_element,
1950 (sizeof(struct sbp2_unrestricted_page_table)) *
1951 sg_count);
1952 }
1953}
1954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955/*
1956 * This function is called to create the actual command orb and s/g list
1957 * out of the scsi command itself.
1958 */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001959static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
1960 struct sbp2_command_info *command,
1961 unchar *scsi_cmd,
1962 unsigned int scsi_use_sg,
1963 unsigned int scsi_request_bufflen,
1964 void *scsi_request_buffer,
1965 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
1967 struct sbp2scsi_host_info *hi = scsi_id->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001968 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001970 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 /*
1973 * Set-up our command ORB..
1974 *
1975 * NOTE: We're doing unrestricted page tables (s/g), as this is
1976 * best performance (at least with the devices I have). This means
1977 * that data_size becomes the number of s/g elements, and
1978 * page_size should be zero (for unrestricted).
1979 */
1980 command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1981 command_orb->next_ORB_lo = 0x0;
1982 command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
1983 command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
Stefan Richtera237f352005-11-07 06:31:39 -05001984 command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Stefan Richter43863eb2005-12-12 23:03:24 -05001986 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001987 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001988 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001989 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001990 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001991 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001992 else {
Stefan Richter35644092006-11-02 21:16:08 +01001993 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001994 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
1996
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001997 /* Set-up our pagetable stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 SBP2_DEBUG("No data transfer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 command_orb->data_descriptor_hi = 0x0;
2001 command_orb->data_descriptor_lo = 0x0;
2002 command_orb->misc |= ORB_SET_DIRECTION(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 } else if (scsi_use_sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 SBP2_DEBUG("Use scatter/gather");
Stefan Richtercf8d2c02005-12-13 11:05:03 -05002005 sbp2_prep_command_orb_sg(command_orb, hi, command, scsi_use_sg,
2006 sgpnt, orb_direction, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 SBP2_DEBUG("No scatter/gather");
Stefan Richtercf8d2c02005-12-13 11:05:03 -05002009 sbp2_prep_command_orb_no_sg(command_orb, hi, command, sgpnt,
2010 orb_direction, scsi_request_bufflen,
2011 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
2013
Stefan Richtercf8d2c02005-12-13 11:05:03 -05002014 /* Byte swap command ORB if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
2016
Stefan Richtercf8d2c02005-12-13 11:05:03 -05002017 /* Put our scsi command in the command ORB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 memset(command_orb->cdb, 0, 12);
2019 memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020}
2021
2022/*
2023 * This function is called in order to begin a regular SBP-2 command.
2024 */
Stefan Richter28212762006-07-23 22:10:00 +02002025static void sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 struct sbp2_command_info *command)
2027{
2028 struct sbp2scsi_host_info *hi = scsi_id->hi;
2029 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercc078182006-07-23 22:12:00 +02002030 struct sbp2_command_orb *last_orb;
2031 dma_addr_t last_orb_dma;
2032 u64 addr = scsi_id->sbp2_command_block_agent_addr;
2033 quadlet_t data[2];
2034 size_t length;
2035 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 outstanding_orb_incr;
2038 SBP2_ORB_DEBUG("sending command orb %p, total orbs = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05002039 command_orb, global_outstanding_command_orbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
2042 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002043 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
2045 sizeof(command->scatter_gather_element),
2046 PCI_DMA_BIDIRECTIONAL);
2047 /*
2048 * Check to see if there are any previous orbs to use
2049 */
Stefan Richtercc078182006-07-23 22:12:00 +02002050 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2051 last_orb = scsi_id->last_orb;
2052 last_orb_dma = scsi_id->last_orb_dma;
2053 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 /*
Stefan Richtercc078182006-07-23 22:12:00 +02002055 * last_orb == NULL means: We know that the target's fetch agent
2056 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 */
Stefan Richtercc078182006-07-23 22:12:00 +02002058 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
2060 data[1] = command->command_orb_dma;
2061 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02002062 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 /*
Stefan Richtercc078182006-07-23 22:12:00 +02002065 * last_orb != NULL means: We know that the target's fetch agent
2066 * is (very probably) not dead or in reset state right now.
2067 * We have an ORB already sent that we can append a new one to.
2068 * The target's fetch agent may or may not have read this
2069 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 */
Stefan Richtercc078182006-07-23 22:12:00 +02002071 pci_dma_sync_single_for_cpu(hi->host->pdev, last_orb_dma,
2072 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002073 PCI_DMA_TODEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02002074 last_orb->next_ORB_lo = cpu_to_be32(command->command_orb_dma);
2075 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02002077 last_orb->next_ORB_hi = 0;
2078 pci_dma_sync_single_for_device(hi->host->pdev, last_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002080 PCI_DMA_TODEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02002081 addr += SBP2_DOORBELL_OFFSET;
2082 data[0] = 0;
2083 length = 4;
2084 }
2085 scsi_id->last_orb = command_orb;
2086 scsi_id->last_orb_dma = command->command_orb_dma;
2087 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Stefan Richtercc078182006-07-23 22:12:00 +02002089 SBP2_ORB_DEBUG("write to %s register, command orb %p",
2090 last_orb ? "DOORBELL" : "ORB_POINTER", command_orb);
Stefan Richter09ee67a2006-08-14 18:43:00 +02002091 if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length)) {
2092 /*
2093 * sbp2util_node_write_no_wait failed. We certainly ran out
2094 * of transaction labels, perhaps just because there were no
2095 * context switches which gave khpsbpkt a chance to collect
2096 * free tlabels. Try again in non-atomic context. If necessary,
2097 * the workqueue job will sleep to guaranteedly get a tlabel.
2098 * We do not accept new commands until the job is over.
2099 */
2100 scsi_block_requests(scsi_id->scsi_host);
David Howellsc4028952006-11-22 14:57:56 +00002101 PREPARE_DELAYED_WORK(&scsi_id->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02002102 last_orb ? sbp2util_write_doorbell:
David Howellsc4028952006-11-22 14:57:56 +00002103 sbp2util_write_orb_pointer);
2104 schedule_delayed_work(&scsi_id->protocol_work, 0);
Stefan Richter09ee67a2006-08-14 18:43:00 +02002105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
2108/*
2109 * This function is called in order to begin a regular SBP-2 command.
2110 */
2111static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
2112 struct scsi_cmnd *SCpnt,
2113 void (*done)(struct scsi_cmnd *))
2114{
2115 unchar *cmd = (unchar *) SCpnt->cmnd;
2116 unsigned int request_bufflen = SCpnt->request_bufflen;
2117 struct sbp2_command_info *command;
2118
Stefan Richterd024ebc2006-03-28 20:03:55 -05002119 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 SBP2_DEBUG("SCSI transfer size = %x", request_bufflen);
2121 SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
2122
2123 /*
2124 * Allocate a command orb and s/g structure
2125 */
2126 command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
2127 if (!command) {
Stefan Richtera237f352005-11-07 06:31:39 -05002128 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 }
2130
2131 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 * Now actually fill in the comamnd orb and sbp2 s/g list
2133 */
2134 sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
2135 request_bufflen, SCpnt->request_buffer,
2136 SCpnt->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 sbp2util_packet_dump(&command->command_orb, sizeof(struct sbp2_command_orb),
2139 "sbp2 command orb", command->command_orb_dma);
2140
2141 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 * Link up the orb, and ring the doorbell if needed
2143 */
2144 sbp2_link_orb_command(scsi_id, command);
2145
Stefan Richtera237f352005-11-07 06:31:39 -05002146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 * Translates SBP-2 status into SCSI sense data for check conditions
2151 */
2152static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
2153{
Stefan Richterd024ebc2006-03-28 20:03:55 -05002154 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /*
2157 * Ok, it's pretty ugly... ;-)
2158 */
2159 sense_data[0] = 0x70;
2160 sense_data[1] = 0x0;
2161 sense_data[2] = sbp2_status[9];
2162 sense_data[3] = sbp2_status[12];
2163 sense_data[4] = sbp2_status[13];
2164 sense_data[5] = sbp2_status[14];
2165 sense_data[6] = sbp2_status[15];
2166 sense_data[7] = 10;
2167 sense_data[8] = sbp2_status[16];
2168 sense_data[9] = sbp2_status[17];
2169 sense_data[10] = sbp2_status[18];
2170 sense_data[11] = sbp2_status[19];
2171 sense_data[12] = sbp2_status[10];
2172 sense_data[13] = sbp2_status[11];
2173 sense_data[14] = sbp2_status[20];
2174 sense_data[15] = sbp2_status[21];
2175
Stefan Richtera237f352005-11-07 06:31:39 -05002176 return sbp2_status[8] & 0x3f; /* return scsi status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
2179/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 * This function deals with status writes from the SBP-2 device
2181 */
Stefan Richter3e98eab42006-07-23 22:16:00 +02002182static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
2183 int destid, quadlet_t *data, u64 addr,
2184 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 struct sbp2scsi_host_info *hi;
2187 struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02002189 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
2191 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05002192 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Stefan Richterd024ebc2006-03-28 20:03:55 -05002194 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 sbp2util_packet_dump(data, length, "sbp2 status write by device", (u32)addr);
2197
Stefan Richter60657722006-07-23 22:18:00 +02002198 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
2199 SBP2_ERR("Wrong size of status block");
2200 return RCODE_ADDRESS_ERROR;
2201 }
2202 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05002204 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02002207 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05002209 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 /*
Stefan Richter35bdddb2006-01-31 00:13:33 -05002212 * Find our scsi_id structure by looking at the status fifo address
2213 * written to by the sbp2 device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
Stefan Richter35bdddb2006-01-31 00:13:33 -05002216 if (scsi_id_tmp->ne->nodeid == nodeid &&
2217 scsi_id_tmp->status_fifo_addr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 scsi_id = scsi_id_tmp;
2219 break;
2220 }
2221 }
Stefan Richter60657722006-07-23 22:18:00 +02002222 if (unlikely(!scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 SBP2_ERR("scsi_id is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05002224 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
2226
2227 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002228 * Put response into scsi_id status fifo buffer. The first two bytes
2229 * come in big endian bit order. Often the target writes only a
2230 * truncated status block, minimally the first two quadlets. The rest
2231 * is implied to be zeros.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 */
Stefan Richter3e98eab42006-07-23 22:16:00 +02002233 sb = &scsi_id->status_block;
2234 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
2235 memcpy(sb, data, length);
2236 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 /*
Stefan Richter60657722006-07-23 22:18:00 +02002239 * Ignore unsolicited status. Handle command ORB status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 */
Stefan Richter60657722006-07-23 22:18:00 +02002241 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
2242 command = NULL;
2243 else
2244 command = sbp2util_find_command_for_orb(scsi_id,
2245 sb->ORB_offset_lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 if (command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 SBP2_DEBUG("Found status for command ORB");
2248 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2249 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002250 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2252 sizeof(command->scatter_gather_element),
2253 PCI_DMA_BIDIRECTIONAL);
2254
2255 SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
2256 outstanding_orb_decr;
2257
2258 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002259 * Matched status with command, now grab scsi command pointers
2260 * and check status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 */
Stefan Richter60657722006-07-23 22:18:00 +02002262 /*
2263 * FIXME: If the src field in the status is 1, the ORB DMA must
2264 * not be reused until status for a subsequent ORB is received.
2265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 SCpnt = command->Current_SCpnt;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002267 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 sbp2util_mark_command_completed(scsi_id, command);
Stefan Richter24c7cd02006-04-01 21:11:41 +02002269 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02002272 u32 h = sb->ORB_offset_hi_misc;
2273 u32 r = STATUS_GET_RESP(h);
2274
2275 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01002276 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02002277 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02002278 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02002279 r == RESP_STATUS_TRANSPORT_FAILURE ?
2280 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02002281 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02002282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002284 * See if the target stored any scsi status information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 */
Stefan Richterabbca102006-08-14 18:51:00 +02002286 if (STATUS_GET_LEN(h) > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 SBP2_DEBUG("CHECK CONDITION");
Stefan Richter3e98eab42006-07-23 22:16:00 +02002288 scsi_status = sbp2_status_to_sense_data(
2289 (unchar *)sb, SCpnt->sense_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002292 * Check to see if the dead bit is set. If so, we'll
2293 * have to initiate a fetch agent reset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 */
Stefan Richterabbca102006-08-14 18:51:00 +02002295 if (STATUS_TEST_DEAD(h)) {
Stefan Richter3e98eab42006-07-23 22:16:00 +02002296 SBP2_DEBUG("Dead bit set - "
2297 "initiating fetch agent reset");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 sbp2_agent_reset(scsi_id, 0);
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
2301 }
2302
2303 /*
Stefan Richtercc078182006-07-23 22:12:00 +02002304 * Check here to see if there are no commands in-use. If there
2305 * are none, we know that the fetch agent left the active state
2306 * _and_ that we did not reactivate it yet. Therefore clear
2307 * last_orb so that next time we write directly to the
2308 * ORB_POINTER register. That way the fetch agent does not need
2309 * to refetch the next_ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 */
Jody McIntyre79456192005-11-07 06:29:39 -05002311 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtercc078182006-07-23 22:12:00 +02002312 if (list_empty(&scsi_id->sbp2_command_orb_inuse))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 scsi_id->last_orb = NULL;
Jody McIntyre79456192005-11-07 06:29:39 -05002314 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 /*
2318 * It's probably a login/logout/reconnect status.
2319 */
Stefan Richter3e98eab42006-07-23 22:16:00 +02002320 if ((sb->ORB_offset_lo == scsi_id->reconnect_orb_dma) ||
2321 (sb->ORB_offset_lo == scsi_id->login_orb_dma) ||
2322 (sb->ORB_offset_lo == scsi_id->query_logins_orb_dma) ||
Stefan Richtere8398bb2006-07-23 22:19:00 +02002323 (sb->ORB_offset_lo == scsi_id->logout_orb_dma)) {
2324 scsi_id->access_complete = 1;
2325 wake_up_interruptible(&access_wq);
2326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328
2329 if (SCpnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 SBP2_DEBUG("Completing SCSI command");
2331 sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
2332 command->Current_done);
2333 SBP2_ORB_DEBUG("command orb completed");
2334 }
2335
Stefan Richtera237f352005-11-07 06:31:39 -05002336 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339/**************************************
2340 * SCSI interface related section
2341 **************************************/
2342
2343/*
2344 * This routine is the main request entry routine for doing I/O. It is
2345 * called from the scsi stack directly.
2346 */
2347static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
2348 void (*done)(struct scsi_cmnd *))
2349{
2350 struct scsi_id_instance_data *scsi_id =
2351 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2352 struct sbp2scsi_host_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002353 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Stefan Richterd024ebc2006-03-28 20:03:55 -05002355 SBP2_DEBUG_ENTER();
2356#if (CONFIG_IEEE1394_SBP2_DEBUG >= 2) || defined(CONFIG_IEEE1394_SBP2_PACKET_DUMP)
2357 scsi_print_command(SCpnt);
2358#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Jody McIntyreabd559b2005-09-30 11:59:06 -07002360 if (!sbp2util_node_is_available(scsi_id))
2361 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 hi = scsi_id->hi;
2364
2365 if (!hi) {
2366 SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07002367 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
2369
2370 /*
2371 * Until we handle multiple luns, just return selection time-out
2372 * to any IO directed at non-zero LUNs
2373 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002374 if (SCpnt->device->lun)
2375 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 /*
2378 * Check for request sense command, and handle it here
2379 * (autorequest sense)
2380 */
2381 if (SCpnt->cmnd[0] == REQUEST_SENSE) {
2382 SBP2_DEBUG("REQUEST_SENSE");
2383 memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
2384 memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
2385 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
Jody McIntyreabd559b2005-09-30 11:59:06 -07002386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
2389 /*
2390 * Check to see if we are in the middle of a bus reset.
2391 */
2392 if (!hpsb_node_entry_valid(scsi_id->ne)) {
2393 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07002394 result = DID_BUS_BUSY << 16;
2395 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 }
2397
2398 /*
Stefan Richter43863eb2005-12-12 23:03:24 -05002399 * Bidirectional commands are not yet implemented,
2400 * and unknown transfer direction not handled.
2401 */
2402 if (SCpnt->sc_data_direction == DMA_BIDIRECTIONAL) {
2403 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
2404 result = DID_ERROR << 16;
2405 goto done;
2406 }
2407
2408 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 * Try and send our SCSI command
2410 */
2411 if (sbp2_send_command(scsi_id, SCpnt, done)) {
2412 SBP2_ERR("Error sending SCSI command");
2413 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
2414 SCpnt, done);
2415 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07002416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Jody McIntyreabd559b2005-09-30 11:59:06 -07002418done:
2419 SCpnt->result = result;
2420 done(SCpnt);
2421 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
2424/*
2425 * This function is called in order to complete all outstanding SBP-2
2426 * commands (in case of resets, etc.).
2427 */
2428static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
2429 u32 status)
2430{
2431 struct sbp2scsi_host_info *hi = scsi_id->hi;
2432 struct list_head *lh;
2433 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05002434 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Stefan Richterd024ebc2006-03-28 20:03:55 -05002436 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Jody McIntyre79456192005-11-07 06:29:39 -05002438 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
2440 SBP2_DEBUG("Found pending command to complete");
2441 lh = scsi_id->sbp2_command_orb_inuse.next;
2442 command = list_entry(lh, struct sbp2_command_info, list);
2443 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2444 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002445 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2447 sizeof(command->scatter_gather_element),
2448 PCI_DMA_BIDIRECTIONAL);
2449 sbp2util_mark_command_completed(scsi_id, command);
2450 if (command->Current_SCpnt) {
2451 command->Current_SCpnt->result = status << 16;
2452 command->Current_done(command->Current_SCpnt);
2453 }
2454 }
Jody McIntyre79456192005-11-07 06:29:39 -05002455 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
2457 return;
2458}
2459
2460/*
2461 * This function is called in order to complete a regular SBP-2 command.
2462 *
2463 * This can be called in interrupt context.
2464 */
2465static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
2466 u32 scsi_status, struct scsi_cmnd *SCpnt,
2467 void (*done)(struct scsi_cmnd *))
2468{
Stefan Richterd024ebc2006-03-28 20:03:55 -05002469 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 /*
2472 * Sanity
2473 */
2474 if (!SCpnt) {
2475 SBP2_ERR("SCpnt is NULL");
2476 return;
2477 }
2478
2479 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 * Switch on scsi status
2481 */
2482 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05002483 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05002484 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05002485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Stefan Richtera237f352005-11-07 06:31:39 -05002487 case SBP2_SCSI_STATUS_BUSY:
2488 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
2489 SCpnt->result = DID_BUS_BUSY << 16;
2490 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Stefan Richtera237f352005-11-07 06:31:39 -05002492 case SBP2_SCSI_STATUS_CHECK_CONDITION:
2493 SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
Stefan Richter8f0525f2006-03-28 20:03:45 -05002494 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495#if CONFIG_IEEE1394_SBP2_DEBUG >= 1
Stefan Richtera237f352005-11-07 06:31:39 -05002496 scsi_print_command(SCpnt);
Stefan Richterd024ebc2006-03-28 20:03:55 -05002497 scsi_print_sense(SBP2_DEVICE_NAME, SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498#endif
Stefan Richtera237f352005-11-07 06:31:39 -05002499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Stefan Richtera237f352005-11-07 06:31:39 -05002501 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
2502 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
2503 SCpnt->result = DID_NO_CONNECT << 16;
2504 scsi_print_command(SCpnt);
2505 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Stefan Richtera237f352005-11-07 06:31:39 -05002507 case SBP2_SCSI_STATUS_CONDITION_MET:
2508 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
2509 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
2510 SBP2_ERR("Bad SCSI status = %x", scsi_status);
2511 SCpnt->result = DID_ERROR << 16;
2512 scsi_print_command(SCpnt);
2513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Stefan Richtera237f352005-11-07 06:31:39 -05002515 default:
2516 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
2517 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
2519
2520 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 * If a bus reset is in progress and there was an error, complete
2522 * the command as busy so that it will get retried.
2523 */
Stefan Richtera237f352005-11-07 06:31:39 -05002524 if (!hpsb_node_entry_valid(scsi_id->ne)
2525 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 SBP2_ERR("Completing command with busy (bus reset)");
2527 SCpnt->result = DID_BUS_BUSY << 16;
2528 }
2529
2530 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 * Tell scsi stack that we're done with this command
2532 */
Stefan Richtera237f352005-11-07 06:31:39 -05002533 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534}
2535
Jody McIntyreabd559b2005-09-30 11:59:06 -07002536static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
2537{
Stefan Richtera80614d2006-02-14 22:04:19 -05002538 struct scsi_id_instance_data *scsi_id =
2539 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2540
2541 scsi_id->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02002542 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05002543
Stefan Richter24d3bf82006-05-15 22:04:59 +02002544 if (scsi_id->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002545 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002546 return 0;
2547}
2548
Jody McIntyreabd559b2005-09-30 11:59:06 -07002549static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Stefan Richter24d3bf82006-05-15 22:04:59 +02002551 struct scsi_id_instance_data *scsi_id =
2552 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
Ben Collins365c7862005-11-07 06:31:24 -05002555 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002556
2557 if (sdev->type == TYPE_DISK &&
2558 scsi_id->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
2559 sdev->skip_ms_page_8 = 1;
Stefan Richtere9a1c522006-05-15 22:06:37 +02002560 if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
2561 sdev->fix_capacity = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 return 0;
2563}
2564
Jody McIntyreabd559b2005-09-30 11:59:06 -07002565static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2566{
2567 ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
2568 return;
2569}
2570
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571/*
2572 * Called by scsi stack when something has really gone wrong. Usually
2573 * called when a command has timed-out for some reason.
2574 */
2575static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2576{
2577 struct scsi_id_instance_data *scsi_id =
2578 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2579 struct sbp2scsi_host_info *hi = scsi_id->hi;
2580 struct sbp2_command_info *command;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002581 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Stefan Richter35644092006-11-02 21:16:08 +01002583 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 scsi_print_command(SCpnt);
2585
Jody McIntyreabd559b2005-09-30 11:59:06 -07002586 if (sbp2util_node_is_available(scsi_id)) {
Stefan Richter23077f12006-09-11 20:17:14 +02002587 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Stefan Richter23077f12006-09-11 20:17:14 +02002589 /* Return a matching command structure to the free pool. */
Stefan Richter24c7cd02006-04-01 21:11:41 +02002590 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
2592 if (command) {
2593 SBP2_DEBUG("Found command to abort");
2594 pci_dma_sync_single_for_cpu(hi->host->pdev,
2595 command->command_orb_dma,
2596 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002597 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 pci_dma_sync_single_for_cpu(hi->host->pdev,
2599 command->sge_dma,
2600 sizeof(command->scatter_gather_element),
2601 PCI_DMA_BIDIRECTIONAL);
2602 sbp2util_mark_command_completed(scsi_id, command);
2603 if (command->Current_SCpnt) {
2604 command->Current_SCpnt->result = DID_ABORT << 16;
2605 command->Current_done(command->Current_SCpnt);
2606 }
2607 }
Stefan Richter24c7cd02006-04-01 21:11:41 +02002608 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
2611 }
2612
Stefan Richtera237f352005-11-07 06:31:39 -05002613 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
2616/*
2617 * Called by scsi stack when something has really gone wrong.
2618 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002619static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620{
2621 struct scsi_id_instance_data *scsi_id =
2622 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2623
Stefan Richter35644092006-11-02 21:16:08 +01002624 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Jody McIntyreabd559b2005-09-30 11:59:06 -07002626 if (sbp2util_node_is_available(scsi_id)) {
Stefan Richter35644092006-11-02 21:16:08 +01002627 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter1f427e82006-08-14 18:44:00 +02002628 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630
Jody McIntyreabd559b2005-09-30 11:59:06 -07002631 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002632}
2633
Stefan Richtera237f352005-11-07 06:31:39 -05002634static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2635 struct device_attribute *attr,
2636 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
2638 struct scsi_device *sdev;
2639 struct scsi_id_instance_data *scsi_id;
2640 int lun;
2641
2642 if (!(sdev = to_scsi_device(dev)))
2643 return 0;
2644
2645 if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
2646 return 0;
2647
Ben Collinse309fc62005-11-07 06:31:34 -05002648 lun = ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
2651 scsi_id->ud->id, lun);
2652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2655MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2656MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2657MODULE_LICENSE("GPL");
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659static int sbp2_module_init(void)
2660{
2661 int ret;
2662
Stefan Richterd024ebc2006-03-28 20:03:55 -05002663 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 /* Module load debug option to force one command at a time (serializing I/O) */
2666 if (serialize_io) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 scsi_driver_template.can_queue = 1;
2668 scsi_driver_template.cmd_per_lun = 1;
2669 }
2670
Stefan Richter24d3bf82006-05-15 22:04:59 +02002671 if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
2672 (max_sectors * 512) > (128 * 1024))
2673 max_sectors = 128 * 1024 / 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 scsi_driver_template.max_sectors = max_sectors;
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /* Register our high level driver with 1394 stack */
2677 hpsb_register_highlevel(&sbp2_highlevel);
2678
2679 ret = hpsb_register_protocol(&sbp2_driver);
2680 if (ret) {
2681 SBP2_ERR("Failed to register protocol");
2682 hpsb_unregister_highlevel(&sbp2_highlevel);
2683 return ret;
2684 }
2685
2686 return 0;
2687}
2688
2689static void __exit sbp2_module_exit(void)
2690{
Stefan Richterd024ebc2006-03-28 20:03:55 -05002691 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693 hpsb_unregister_protocol(&sbp2_driver);
2694
2695 hpsb_unregister_highlevel(&sbp2_highlevel);
2696}
2697
2698module_init(sbp2_module_init);
2699module_exit(sbp2_module_exit);