blob: 6b3350f71a89fcca7c5b791c204f184f427edeea [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/kernel.h>
42#include <linux/list.h>
43#include <linux/string.h>
Stefan Richter24d3bf82006-05-15 22:04:59 +020044#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/slab.h>
46#include <linux/interrupt.h>
47#include <linux/fs.h>
48#include <linux/poll.h>
49#include <linux/module.h>
50#include <linux/moduleparam.h>
51#include <linux/types.h>
52#include <linux/delay.h>
53#include <linux/sched.h>
54#include <linux/blkdev.h>
55#include <linux/smp_lock.h>
56#include <linux/init.h>
57#include <linux/pci.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020058#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <asm/current.h>
61#include <asm/uaccess.h>
62#include <asm/io.h>
63#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/system.h>
65#include <asm/scatterlist.h>
66
67#include <scsi/scsi.h>
68#include <scsi/scsi_cmnd.h>
69#include <scsi/scsi_dbg.h>
70#include <scsi/scsi_device.h>
71#include <scsi/scsi_host.h>
72
73#include "csr1212.h"
74#include "ieee1394.h"
75#include "ieee1394_types.h"
76#include "ieee1394_core.h"
77#include "nodemgr.h"
78#include "hosts.h"
79#include "highlevel.h"
80#include "ieee1394_transactions.h"
81#include "sbp2.h"
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * Module load parameter definitions
85 */
86
87/*
88 * Change max_speed on module load if you have a bad IEEE-1394
89 * controller that has trouble running 2KB packets at 400mb.
90 *
91 * NOTE: On certain OHCI parts I have seen short packets on async transmit
92 * (probably due to PCI latency/throughput issues with the part). You can
93 * bump down the speed if you are running into problems.
94 */
95static int max_speed = IEEE1394_SPEED_MAX;
96module_param(max_speed, int, 0644);
Jody McIntyre2bab3592005-09-30 11:59:07 -070097MODULE_PARM_DESC(max_speed, "Force max speed (3 = 800mb, 2 = 400mb, 1 = 200mb, 0 = 100mb)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * Set serialize_io to 1 if you'd like only one scsi command sent
101 * down to us at a time (debugging). This might be necessary for very
102 * badly behaved sbp2 devices.
Jody McIntyre2bab3592005-09-30 11:59:07 -0700103 *
104 * TODO: Make this configurable per device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
Jody McIntyre2bab3592005-09-30 11:59:07 -0700106static int serialize_io = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107module_param(serialize_io, int, 0444);
Jody McIntyre2bab3592005-09-30 11:59:07 -0700108MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers (default = 1, faster = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/*
111 * Bump up max_sectors if you'd like to support very large sized
112 * transfers. Please note that some older sbp2 bridge chips are broken for
113 * transfers greater or equal to 128KB. Default is a value of 255
114 * sectors, or just under 128KB (at 512 byte sector size). I can note that
115 * the Oxsemi sbp2 chipsets have no problems supporting very large
116 * transfer sizes.
117 */
118static int max_sectors = SBP2_MAX_SECTORS;
119module_param(max_sectors, int, 0444);
Stefan Richter24d3bf82006-05-15 22:04:59 +0200120MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported (default = "
121 __stringify(SBP2_MAX_SECTORS) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/*
124 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
125 * do an exclusive login, as it's generally unsafe to have two hosts
126 * talking to a single sbp2 device at the same time (filesystem coherency,
127 * etc.). If you're running an sbp2 device that supports multiple logins,
128 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400129 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
130 * File System, or Lustre, then set exclusive_login to zero.
131 *
132 * So far only bridges from Oxford Semiconductor are known to support
133 * concurrent logins. Depending on firmware, four or two concurrent logins
134 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
136static int exclusive_login = 1;
137module_param(exclusive_login, int, 0644);
138MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device (default = 1)");
139
140/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200141 * If any of the following workarounds is required for your device to work,
142 * please submit the kernel messages logged by sbp2 to the linux1394-devel
143 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200145 * - 128kB max transfer
146 * Limit transfer size. Necessary for some old bridges.
147 *
148 * - 36 byte inquiry
149 * When scsi_mod probes the device, let the inquiry command look like that
150 * from MS Windows.
151 *
152 * - skip mode page 8
153 * Suppress sending of mode_sense for mode page 8 if the device pretends to
154 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200155 *
156 * - fix capacity
157 * Tell sd_mod to correct the last sector number reported by read_capacity.
158 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
159 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200160 *
161 * - override internal blacklist
162 * Instead of adding to the built-in blacklist, use only the workarounds
163 * specified in the module load parameter.
164 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200166static int sbp2_default_workarounds;
167module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
168MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
169 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
170 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
171 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200172 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200173 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200174 ", or a combination)");
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
177 * Export information about protocols/devices supported by this driver.
178 */
179static struct ieee1394_device_id sbp2_id_table[] = {
180 {
Stefan Richtera237f352005-11-07 06:31:39 -0500181 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
182 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
183 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
184 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
188
189/*
190 * Debug levels, configured via kernel config, or enable here.
191 */
192
Olaf Hering44456d32005-07-27 11:45:17 -0700193#define CONFIG_IEEE1394_SBP2_DEBUG 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/* #define CONFIG_IEEE1394_SBP2_DEBUG_ORBS */
195/* #define CONFIG_IEEE1394_SBP2_DEBUG_DMA */
196/* #define CONFIG_IEEE1394_SBP2_DEBUG 1 */
197/* #define CONFIG_IEEE1394_SBP2_DEBUG 2 */
198/* #define CONFIG_IEEE1394_SBP2_PACKET_DUMP */
199
200#ifdef CONFIG_IEEE1394_SBP2_DEBUG_ORBS
201#define SBP2_ORB_DEBUG(fmt, args...) HPSB_ERR("sbp2(%s): "fmt, __FUNCTION__, ## args)
202static u32 global_outstanding_command_orbs = 0;
203#define outstanding_orb_incr global_outstanding_command_orbs++
204#define outstanding_orb_decr global_outstanding_command_orbs--
205#else
Stefan Richter611aa192006-08-02 18:44:00 +0200206#define SBP2_ORB_DEBUG(fmt, args...) do {} while (0)
207#define outstanding_orb_incr do {} while (0)
208#define outstanding_orb_decr do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#endif
210
211#ifdef CONFIG_IEEE1394_SBP2_DEBUG_DMA
212#define SBP2_DMA_ALLOC(fmt, args...) \
213 HPSB_ERR("sbp2(%s)alloc(%d): "fmt, __FUNCTION__, \
214 ++global_outstanding_dmas, ## args)
215#define SBP2_DMA_FREE(fmt, args...) \
216 HPSB_ERR("sbp2(%s)free(%d): "fmt, __FUNCTION__, \
217 --global_outstanding_dmas, ## args)
218static u32 global_outstanding_dmas = 0;
219#else
Stefan Richter611aa192006-08-02 18:44:00 +0200220#define SBP2_DMA_ALLOC(fmt, args...) do {} while (0)
221#define SBP2_DMA_FREE(fmt, args...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif
223
224#if CONFIG_IEEE1394_SBP2_DEBUG >= 2
225#define SBP2_DEBUG(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
226#define SBP2_INFO(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
227#define SBP2_NOTICE(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
228#define SBP2_WARN(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
229#elif CONFIG_IEEE1394_SBP2_DEBUG == 1
230#define SBP2_DEBUG(fmt, args...) HPSB_DEBUG("sbp2: "fmt, ## args)
231#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
232#define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
233#define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
234#else
Stefan Richter611aa192006-08-02 18:44:00 +0200235#define SBP2_DEBUG(fmt, args...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
237#define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
238#define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
239#endif
240
241#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Stefan Richterd024ebc2006-03-28 20:03:55 -0500242#define SBP2_DEBUG_ENTER() SBP2_DEBUG("%s", __FUNCTION__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * Globals
246 */
247
248static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
249 u32 status);
250
251static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
252 u32 scsi_status, struct scsi_cmnd *SCpnt,
253 void (*done)(struct scsi_cmnd *));
254
255static struct scsi_host_template scsi_driver_template;
256
257static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
258
259static void sbp2_host_reset(struct hpsb_host *host);
260
261static int sbp2_probe(struct device *dev);
262static int sbp2_remove(struct device *dev);
263static int sbp2_update(struct unit_directory *ud);
264
265static struct hpsb_highlevel sbp2_highlevel = {
266 .name = SBP2_DEVICE_NAME,
267 .host_reset = sbp2_host_reset,
268};
269
270static struct hpsb_address_ops sbp2_ops = {
271 .write = sbp2_handle_status_write
272};
273
274#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
275static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richtera237f352005-11-07 06:31:39 -0500276 .read = sbp2_handle_physdma_read,
277 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279#endif
280
281static struct hpsb_protocol_driver sbp2_driver = {
282 .name = "SBP2 Driver",
283 .id_table = sbp2_id_table,
284 .update = sbp2_update,
285 .driver = {
286 .name = SBP2_DEVICE_NAME,
287 .bus = &ieee1394_bus_type,
288 .probe = sbp2_probe,
289 .remove = sbp2_remove,
290 },
291};
292
Stefan Richtera80614d2006-02-14 22:04:19 -0500293/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200294 * List of devices with known bugs.
295 *
296 * The firmware_revision field, masked with 0xffff00, is the best indicator
297 * for the type of bridge chip of a device. It yields a few false positives
298 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500299 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200300static const struct {
301 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200302 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200303 unsigned workarounds;
304} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400305 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200306 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400307 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200308 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
309 SBP2_WORKAROUND_MODE_SENSE_8,
310 },
311 /* Initio bridges, actually only needed for some older ones */ {
312 .firmware_revision = 0x000200,
313 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
314 },
315 /* Symbios bridge */ {
316 .firmware_revision = 0xa0b800,
317 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200318 },
319 /*
320 * Note about the following Apple iPod blacklist entries:
321 *
322 * There are iPods (2nd gen, 3rd gen) with model_id==0. Since our
323 * matching logic treats 0 as a wildcard, we cannot match this ID
324 * without rewriting the matching routine. Fortunately these iPods
325 * do not feature the read_capacity bug according to one report.
326 * Read_capacity behaviour as well as model_id could change due to
327 * Apple-supplied firmware updates though.
328 */
329 /* iPod 4th generation */ {
330 .firmware_revision = 0x0a2700,
331 .model_id = 0x000021,
332 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
333 },
334 /* iPod mini */ {
335 .firmware_revision = 0x0a2700,
336 .model_id = 0x000023,
337 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
338 },
339 /* iPod Photo */ {
340 .firmware_revision = 0x0a2700,
341 .model_id = 0x00007e,
342 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346/**************************************
347 * General utility functions
348 **************************************/
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#ifndef __BIG_ENDIAN
351/*
352 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
353 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400354static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 u32 *temp = buffer;
357
358 for (length = (length >> 2); length--; )
359 temp[length] = be32_to_cpu(temp[length]);
360
361 return;
362}
363
364/*
365 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
366 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400367static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 u32 *temp = buffer;
370
371 for (length = (length >> 2); length--; )
372 temp[length] = cpu_to_be32(temp[length]);
373
374 return;
375}
376#else /* BIG_ENDIAN */
377/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200378#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
379#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#endif
381
382#ifdef CONFIG_IEEE1394_SBP2_PACKET_DUMP
383/*
384 * Debug packet dump routine. Length is in bytes.
385 */
Stefan Richtera237f352005-11-07 06:31:39 -0500386static void sbp2util_packet_dump(void *buffer, int length, char *dump_name,
387 u32 dump_phys_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 int i;
390 unsigned char *dump = buffer;
391
392 if (!dump || !length || !dump_name)
393 return;
394
395 if (dump_phys_addr)
396 printk("[%s, 0x%x]", dump_name, dump_phys_addr);
397 else
398 printk("[%s]", dump_name);
399 for (i = 0; i < length; i++) {
400 if (i > 0x3f) {
401 printk("\n ...");
402 break;
403 }
404 if ((i & 0x3) == 0)
405 printk(" ");
406 if ((i & 0xf) == 0)
407 printk("\n ");
Stefan Richtera237f352005-11-07 06:31:39 -0500408 printk("%02x ", (int)dump[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 printk("\n");
411
412 return;
413}
414#else
Stefan Richter611aa192006-08-02 18:44:00 +0200415#define sbp2util_packet_dump(w,x,y,z) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#endif
417
Stefan Richtere8398bb2006-07-23 22:19:00 +0200418static DECLARE_WAIT_QUEUE_HEAD(access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Stefan Richtere8398bb2006-07-23 22:19:00 +0200420/*
421 * Waits for completion of an SBP-2 access request.
422 * Returns nonzero if timed out or prematurely interrupted.
423 */
424static int sbp2util_access_timeout(struct scsi_id_instance_data *scsi_id,
425 int timeout)
426{
427 long leftover = wait_event_interruptible_timeout(
428 access_wq, scsi_id->access_complete, timeout);
429
430 scsi_id->access_complete = 0;
431 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Stefan Richtere8398bb2006-07-23 22:19:00 +0200434/* Frees an allocated packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435static void sbp2_free_packet(struct hpsb_packet *packet)
436{
437 hpsb_free_tlabel(packet);
438 hpsb_free_packet(packet);
439}
440
441/* This is much like hpsb_node_write(), except it ignores the response
442 * subaction and returns immediately. Can be used from interrupts.
443 */
444static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richtera237f352005-11-07 06:31:39 -0500445 quadlet_t *buffer, size_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 struct hpsb_packet *packet;
448
449 packet = hpsb_make_writepacket(ne->host, ne->nodeid,
450 addr, buffer, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500451 if (!packet)
452 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Stefan Richtera237f352005-11-07 06:31:39 -0500454 hpsb_set_packet_complete_task(packet,
455 (void (*)(void *))sbp2_free_packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 packet);
457
458 hpsb_node_fill_packet(ne, packet);
459
Stefan Richtera237f352005-11-07 06:31:39 -0500460 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sbp2_free_packet(packet);
462 return -EIO;
463 }
464
465 return 0;
466}
467
Stefan Richter09ee67a2006-08-14 18:43:00 +0200468static void sbp2util_notify_fetch_agent(struct scsi_id_instance_data *scsi_id,
469 u64 offset, quadlet_t *data, size_t len)
470{
471 /*
472 * There is a small window after a bus reset within which the node
473 * entry's generation is current but the reconnect wasn't completed.
474 */
475 if (atomic_read(&scsi_id->unfinished_reset))
476 return;
477
478 if (hpsb_node_write(scsi_id->ne,
479 scsi_id->sbp2_command_block_agent_addr + offset,
480 data, len))
481 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
482 /*
483 * Now accept new SCSI commands, unless a bus reset happended during
484 * hpsb_node_write.
485 */
486 if (!atomic_read(&scsi_id->unfinished_reset))
487 scsi_unblock_requests(scsi_id->scsi_host);
488}
489
490static void sbp2util_write_orb_pointer(void *p)
491{
492 quadlet_t data[2];
493
494 data[0] = ORB_SET_NODE_ID(
495 ((struct scsi_id_instance_data *)p)->hi->host->node_id);
496 data[1] = ((struct scsi_id_instance_data *)p)->last_orb_dma;
497 sbp2util_cpu_to_be32_buffer(data, 8);
498 sbp2util_notify_fetch_agent(p, SBP2_ORB_POINTER_OFFSET, data, 8);
499}
500
501static void sbp2util_write_doorbell(void *p)
502{
503 sbp2util_notify_fetch_agent(p, SBP2_DOORBELL_OFFSET, NULL, 4);
504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/*
507 * This function is called to create a pool of command orbs used for
508 * command processing. It is called when a new sbp2 device is detected.
509 */
510static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id)
511{
512 struct sbp2scsi_host_info *hi = scsi_id->hi;
513 int i;
514 unsigned long flags, orbs;
515 struct sbp2_command_info *command;
516
517 orbs = serialize_io ? 2 : SBP2_MAX_CMDS;
518
519 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
520 for (i = 0; i < orbs; i++) {
Stefan Richter85511582005-11-07 06:31:45 -0500521 command = kzalloc(sizeof(*command), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (!command) {
Stefan Richtera237f352005-11-07 06:31:39 -0500523 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock,
524 flags);
525 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 command->command_orb_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500528 pci_map_single(hi->host->pdev, &command->command_orb,
529 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +0200530 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 SBP2_DMA_ALLOC("single command orb DMA");
532 command->sge_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500533 pci_map_single(hi->host->pdev,
534 &command->scatter_gather_element,
535 sizeof(command->scatter_gather_element),
536 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 SBP2_DMA_ALLOC("scatter_gather_element");
538 INIT_LIST_HEAD(&command->list);
539 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
540 }
541 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
542 return 0;
543}
544
545/*
546 * This function is called to delete a pool of command orbs.
547 */
548static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id)
549{
550 struct hpsb_host *host = scsi_id->hi->host;
551 struct list_head *lh, *next;
552 struct sbp2_command_info *command;
553 unsigned long flags;
554
555 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
556 if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
557 list_for_each_safe(lh, next, &scsi_id->sbp2_command_orb_completed) {
558 command = list_entry(lh, struct sbp2_command_info, list);
559
560 /* Release our generic DMA's */
561 pci_unmap_single(host->pdev, command->command_orb_dma,
562 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +0200563 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 SBP2_DMA_FREE("single command orb DMA");
565 pci_unmap_single(host->pdev, command->sge_dma,
566 sizeof(command->scatter_gather_element),
567 PCI_DMA_BIDIRECTIONAL);
568 SBP2_DMA_FREE("scatter_gather_element");
569
570 kfree(command);
571 }
572 }
573 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
574 return;
575}
576
577/*
578 * This function finds the sbp2_command for a given outstanding command
579 * orb.Only looks at the inuse list.
580 */
581static struct sbp2_command_info *sbp2util_find_command_for_orb(
582 struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
583{
584 struct sbp2_command_info *command;
585 unsigned long flags;
586
587 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
588 if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
589 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
590 if (command->command_orb_dma == orb) {
591 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500592 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 }
595 }
596 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
597
598 SBP2_ORB_DEBUG("could not match command orb %x", (unsigned int)orb);
599
Stefan Richtera237f352005-11-07 06:31:39 -0500600 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603/*
604 * This function finds the sbp2_command for a given outstanding SCpnt.
605 * Only looks at the inuse list.
Stefan Richter24c7cd02006-04-01 21:11:41 +0200606 * Must be called with scsi_id->sbp2_command_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200608static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
609 struct scsi_id_instance_data *scsi_id, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 struct sbp2_command_info *command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Stefan Richter24c7cd02006-04-01 21:11:41 +0200613 if (!list_empty(&scsi_id->sbp2_command_orb_inuse))
614 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list)
615 if (command->Current_SCpnt == SCpnt)
Stefan Richtera237f352005-11-07 06:31:39 -0500616 return command;
Stefan Richtera237f352005-11-07 06:31:39 -0500617 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/*
621 * This function allocates a command orb used to send a scsi command.
622 */
623static struct sbp2_command_info *sbp2util_allocate_command_orb(
624 struct scsi_id_instance_data *scsi_id,
625 struct scsi_cmnd *Current_SCpnt,
626 void (*Current_done)(struct scsi_cmnd *))
627{
628 struct list_head *lh;
629 struct sbp2_command_info *command = NULL;
630 unsigned long flags;
631
632 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
633 if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
634 lh = scsi_id->sbp2_command_orb_completed.next;
635 list_del(lh);
636 command = list_entry(lh, struct sbp2_command_info, list);
637 command->Current_done = Current_done;
638 command->Current_SCpnt = Current_SCpnt;
639 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_inuse);
640 } else {
Stefan Richterd024ebc2006-03-28 20:03:55 -0500641 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500644 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/* Free our DMA's */
648static void sbp2util_free_command_dma(struct sbp2_command_info *command)
649{
650 struct scsi_id_instance_data *scsi_id =
651 (struct scsi_id_instance_data *)command->Current_SCpnt->device->host->hostdata[0];
652 struct hpsb_host *host;
653
654 if (!scsi_id) {
Stefan Richterd024ebc2006-03-28 20:03:55 -0500655 SBP2_ERR("%s: scsi_id == NULL", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return;
657 }
658
659 host = scsi_id->ud->ne->host;
660
661 if (command->cmd_dma) {
662 if (command->dma_type == CMD_DMA_SINGLE) {
663 pci_unmap_single(host->pdev, command->cmd_dma,
664 command->dma_size, command->dma_dir);
665 SBP2_DMA_FREE("single bulk");
666 } else if (command->dma_type == CMD_DMA_PAGE) {
667 pci_unmap_page(host->pdev, command->cmd_dma,
668 command->dma_size, command->dma_dir);
669 SBP2_DMA_FREE("single page");
670 } /* XXX: Check for CMD_DMA_NONE bug */
671 command->dma_type = CMD_DMA_NONE;
672 command->cmd_dma = 0;
673 }
674
675 if (command->sge_buffer) {
676 pci_unmap_sg(host->pdev, command->sge_buffer,
677 command->dma_size, command->dma_dir);
678 SBP2_DMA_FREE("scatter list");
679 command->sge_buffer = NULL;
680 }
681}
682
683/*
684 * This function moves a command to the completed orb list.
Stefan Richter24c7cd02006-04-01 21:11:41 +0200685 * Must be called with scsi_id->sbp2_command_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200687static void sbp2util_mark_command_completed(
688 struct scsi_id_instance_data *scsi_id,
689 struct sbp2_command_info *command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 list_del(&command->list);
692 sbp2util_free_command_dma(command);
693 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Jody McIntyreabd559b2005-09-30 11:59:06 -0700696/*
697 * Is scsi_id valid? Is the 1394 node still present?
698 */
699static inline int sbp2util_node_is_available(struct scsi_id_instance_data *scsi_id)
700{
701 return scsi_id && scsi_id->ne && !scsi_id->ne->in_limbo;
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/*********************************************
705 * IEEE-1394 core driver stack related section
706 *********************************************/
707static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud);
708
709static int sbp2_probe(struct device *dev)
710{
711 struct unit_directory *ud;
712 struct scsi_id_instance_data *scsi_id;
713
Stefan Richterd024ebc2006-03-28 20:03:55 -0500714 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 ud = container_of(dev, struct unit_directory, device);
717
718 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
719 * instead. */
720 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
721 return -ENODEV;
722
Stefan Richtera237f352005-11-07 06:31:39 -0500723 scsi_id = sbp2_alloc_device(ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Stefan Richtera237f352005-11-07 06:31:39 -0500725 if (!scsi_id)
726 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Stefan Richtera237f352005-11-07 06:31:39 -0500728 sbp2_parse_unit_directory(scsi_id, ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Stefan Richtera237f352005-11-07 06:31:39 -0500730 return sbp2_start_device(scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733static int sbp2_remove(struct device *dev)
734{
735 struct unit_directory *ud;
736 struct scsi_id_instance_data *scsi_id;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700737 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Stefan Richterd024ebc2006-03-28 20:03:55 -0500739 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 ud = container_of(dev, struct unit_directory, device);
742 scsi_id = ud->device.driver_data;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700743 if (!scsi_id)
744 return 0;
745
Stefan Richterbf637ec2006-01-31 00:13:06 -0500746 if (scsi_id->scsi_host) {
747 /* Get rid of enqueued commands if there is no chance to
748 * send them. */
749 if (!sbp2util_node_is_available(scsi_id))
750 sbp2scsi_complete_all_commands(scsi_id, DID_NO_CONNECT);
751 /* scsi_remove_device() will trigger shutdown functions of SCSI
752 * highlevel drivers which would deadlock if blocked. */
Stefan Richter09ee67a2006-08-14 18:43:00 +0200753 atomic_set(&scsi_id->unfinished_reset, 0);
Jody McIntyreabd559b2005-09-30 11:59:06 -0700754 scsi_unblock_requests(scsi_id->scsi_host);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500755 }
Jody McIntyreabd559b2005-09-30 11:59:06 -0700756 sdev = scsi_id->sdev;
757 if (sdev) {
758 scsi_id->sdev = NULL;
759 scsi_remove_device(sdev);
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 sbp2_logout_device(scsi_id);
763 sbp2_remove_device(scsi_id);
764
765 return 0;
766}
767
768static int sbp2_update(struct unit_directory *ud)
769{
770 struct scsi_id_instance_data *scsi_id = ud->device.driver_data;
771
Stefan Richterd024ebc2006-03-28 20:03:55 -0500772 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (sbp2_reconnect_device(scsi_id)) {
775
776 /*
777 * Ok, reconnect has failed. Perhaps we didn't
778 * reconnect fast enough. Try doing a regular login, but
779 * first do a logout just in case of any weirdness.
780 */
781 sbp2_logout_device(scsi_id);
782
783 if (sbp2_login_device(scsi_id)) {
784 /* Login failed too, just fail, and the backend
785 * will call our sbp2_remove for us */
786 SBP2_ERR("Failed to reconnect to sbp2 device!");
787 return -EBUSY;
788 }
789 }
790
791 /* Set max retries to something large on the device. */
792 sbp2_set_busy_timeout(scsi_id);
793
794 /* Do a SBP-2 fetch agent reset. */
795 sbp2_agent_reset(scsi_id, 1);
796
797 /* Get the max speed and packet size that we can use. */
798 sbp2_max_speed_and_size(scsi_id);
799
800 /* Complete any pending commands with busy (so they get
801 * retried) and remove them from our queue
802 */
803 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
804
Stefan Richter4fc383c2006-08-14 18:46:00 +0200805 /* Accept new commands unless there was another bus reset in the
806 * meantime. */
807 if (hpsb_node_entry_valid(scsi_id->ne)) {
808 atomic_set(&scsi_id->unfinished_reset, 0);
809 scsi_unblock_requests(scsi_id->scsi_host);
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return 0;
812}
813
814/* This functions is called by the sbp2_probe, for each new device. We now
815 * allocate one scsi host for each scsi_id (unit directory). */
816static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud)
817{
818 struct sbp2scsi_host_info *hi;
819 struct Scsi_Host *scsi_host = NULL;
820 struct scsi_id_instance_data *scsi_id = NULL;
821
Stefan Richterd024ebc2006-03-28 20:03:55 -0500822 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Stefan Richter85511582005-11-07 06:31:45 -0500824 scsi_id = kzalloc(sizeof(*scsi_id), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (!scsi_id) {
826 SBP2_ERR("failed to create scsi_id");
827 goto failed_alloc;
828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 scsi_id->ne = ud->ne;
831 scsi_id->ud = ud;
832 scsi_id->speed_code = IEEE1394_SPEED_100;
833 scsi_id->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
Ben Collins67372312006-06-12 18:15:31 -0400834 scsi_id->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_inuse);
836 INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_completed);
837 INIT_LIST_HEAD(&scsi_id->scsi_list);
838 spin_lock_init(&scsi_id->sbp2_command_orb_lock);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200839 atomic_set(&scsi_id->unfinished_reset, 0);
840 INIT_WORK(&scsi_id->protocol_work, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 ud->device.driver_data = scsi_id;
843
844 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
845 if (!hi) {
846 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, sizeof(*hi));
847 if (!hi) {
848 SBP2_ERR("failed to allocate hostinfo");
849 goto failed_alloc;
850 }
851 SBP2_DEBUG("sbp2_alloc_device: allocated hostinfo");
852 hi->host = ud->ne->host;
853 INIT_LIST_HEAD(&hi->scsi_ids);
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
856 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500857 * enabled or not supported on host controller */
858 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
859 &sbp2_physdma_ops,
860 0x0ULL, 0xfffffffcULL)) {
861 SBP2_ERR("failed to register lower 4GB address range");
862 goto failed_alloc;
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864#endif
865 }
866
Stefan Richter147830f2006-03-28 19:54:52 -0500867 /* Prevent unloading of the 1394 host */
868 if (!try_module_get(hi->host->driver->owner)) {
869 SBP2_ERR("failed to get a reference on 1394 host driver");
870 goto failed_alloc;
871 }
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 scsi_id->hi = hi;
874
875 list_add_tail(&scsi_id->scsi_list, &hi->scsi_ids);
876
Stefan Richter35bdddb2006-01-31 00:13:33 -0500877 /* Register the status FIFO address range. We could use the same FIFO
878 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200879 * target in order to support multi-unit devices.
880 * The FIFO is located out of the local host controller's physical range
881 * but, if possible, within the posted write area. Status writes will
882 * then be performed as unified transactions. This slightly reduces
883 * bandwidth usage, and some Prolific based devices seem to require it.
884 */
Stefan Richter35bdddb2006-01-31 00:13:33 -0500885 scsi_id->status_fifo_addr = hpsb_allocate_and_register_addrspace(
886 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
887 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400888 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Ben Collins67372312006-06-12 18:15:31 -0400889 if (scsi_id->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500890 SBP2_ERR("failed to allocate status FIFO address range");
891 goto failed_alloc;
892 }
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* Register our host with the SCSI stack. */
Alexandre Olivaa2ef79e2005-06-15 22:26:31 -0700895 scsi_host = scsi_host_alloc(&scsi_driver_template,
Stefan Richtera237f352005-11-07 06:31:39 -0500896 sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (!scsi_host) {
898 SBP2_ERR("failed to register scsi host");
899 goto failed_alloc;
900 }
901
902 scsi_host->hostdata[0] = (unsigned long)scsi_id;
903
904 if (!scsi_add_host(scsi_host, &ud->device)) {
905 scsi_id->scsi_host = scsi_host;
906 return scsi_id;
907 }
908
909 SBP2_ERR("failed to add scsi host");
910 scsi_host_put(scsi_host);
911
912failed_alloc:
913 sbp2_remove_device(scsi_id);
914 return NULL;
915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static void sbp2_host_reset(struct hpsb_host *host)
918{
919 struct sbp2scsi_host_info *hi;
920 struct scsi_id_instance_data *scsi_id;
921
922 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
923
924 if (hi) {
Stefan Richter09ee67a2006-08-14 18:43:00 +0200925 list_for_each_entry(scsi_id, &hi->scsi_ids, scsi_list) {
926 atomic_set(&scsi_id->unfinished_reset, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 scsi_block_requests(scsi_id->scsi_host);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/*
933 * This function is where we first pull the node unique ids, and then
934 * allocate memory and register a SBP-2 device.
935 */
936static int sbp2_start_device(struct scsi_id_instance_data *scsi_id)
937{
938 struct sbp2scsi_host_info *hi = scsi_id->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500939 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Stefan Richterd024ebc2006-03-28 20:03:55 -0500941 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 /* Login FIFO DMA */
944 scsi_id->login_response =
Stefan Richtera237f352005-11-07 06:31:39 -0500945 pci_alloc_consistent(hi->host->pdev,
946 sizeof(struct sbp2_login_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 &scsi_id->login_response_dma);
948 if (!scsi_id->login_response)
949 goto alloc_fail;
950 SBP2_DMA_ALLOC("consistent DMA region for login FIFO");
951
952 /* Query logins ORB DMA */
953 scsi_id->query_logins_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500954 pci_alloc_consistent(hi->host->pdev,
955 sizeof(struct sbp2_query_logins_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 &scsi_id->query_logins_orb_dma);
957 if (!scsi_id->query_logins_orb)
958 goto alloc_fail;
959 SBP2_DMA_ALLOC("consistent DMA region for query logins ORB");
960
961 /* Query logins response DMA */
962 scsi_id->query_logins_response =
Stefan Richtera237f352005-11-07 06:31:39 -0500963 pci_alloc_consistent(hi->host->pdev,
964 sizeof(struct sbp2_query_logins_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 &scsi_id->query_logins_response_dma);
966 if (!scsi_id->query_logins_response)
967 goto alloc_fail;
968 SBP2_DMA_ALLOC("consistent DMA region for query logins response");
969
970 /* Reconnect ORB DMA */
971 scsi_id->reconnect_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500972 pci_alloc_consistent(hi->host->pdev,
973 sizeof(struct sbp2_reconnect_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 &scsi_id->reconnect_orb_dma);
975 if (!scsi_id->reconnect_orb)
976 goto alloc_fail;
977 SBP2_DMA_ALLOC("consistent DMA region for reconnect ORB");
978
979 /* Logout ORB DMA */
980 scsi_id->logout_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500981 pci_alloc_consistent(hi->host->pdev,
982 sizeof(struct sbp2_logout_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 &scsi_id->logout_orb_dma);
984 if (!scsi_id->logout_orb)
985 goto alloc_fail;
986 SBP2_DMA_ALLOC("consistent DMA region for logout ORB");
987
988 /* Login ORB DMA */
989 scsi_id->login_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500990 pci_alloc_consistent(hi->host->pdev,
991 sizeof(struct sbp2_login_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 &scsi_id->login_orb_dma);
Stefan Richtereaceec72005-12-13 11:05:05 -0500993 if (!scsi_id->login_orb)
994 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 SBP2_DMA_ALLOC("consistent DMA region for login ORB");
996
997 SBP2_DEBUG("New SBP-2 device inserted, SCSI ID = %x", scsi_id->ud->id);
998
999 /*
1000 * Create our command orb pool
1001 */
1002 if (sbp2util_create_command_orb_pool(scsi_id)) {
1003 SBP2_ERR("sbp2util_create_command_orb_pool failed!");
1004 sbp2_remove_device(scsi_id);
1005 return -ENOMEM;
1006 }
1007
1008 /* Schedule a timeout here. The reason is that we may be so close
1009 * to a bus reset, that the device is not available for logins.
1010 * This can happen when the bus reset is caused by the host
1011 * connected to the sbp2 device being removed. That host would
1012 * have a certain amount of time to relogin before the sbp2 device
1013 * allows someone else to login instead. One second makes sense. */
1014 msleep_interruptible(1000);
1015 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 sbp2_remove_device(scsi_id);
1017 return -EINTR;
1018 }
Stefan Richtera237f352005-11-07 06:31:39 -05001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /*
1021 * Login to the sbp-2 device
1022 */
1023 if (sbp2_login_device(scsi_id)) {
1024 /* Login failed, just remove the device. */
1025 sbp2_remove_device(scsi_id);
1026 return -EBUSY;
1027 }
1028
1029 /*
1030 * Set max retries to something large on the device
1031 */
1032 sbp2_set_busy_timeout(scsi_id);
1033
1034 /*
1035 * Do a SBP-2 fetch agent reset
1036 */
1037 sbp2_agent_reset(scsi_id, 1);
1038
1039 /*
1040 * Get the max speed and packet size that we can use
1041 */
1042 sbp2_max_speed_and_size(scsi_id);
1043
1044 /* Add this device to the scsi layer now */
James Bottomley146f7262005-09-10 12:44:09 -05001045 error = scsi_add_device(scsi_id->scsi_host, 0, scsi_id->ud->id, 0);
1046 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 SBP2_ERR("scsi_add_device failed");
Stefan Richterdc3edd52005-12-12 23:03:30 -05001048 sbp2_logout_device(scsi_id);
1049 sbp2_remove_device(scsi_id);
James Bottomley146f7262005-09-10 12:44:09 -05001050 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052
1053 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -05001054
1055alloc_fail:
1056 SBP2_ERR("Could not allocate memory for scsi_id");
1057 sbp2_remove_device(scsi_id);
1058 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061/*
1062 * This function removes an sbp2 device from the sbp2scsi_host_info struct.
1063 */
1064static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id)
1065{
1066 struct sbp2scsi_host_info *hi;
1067
Stefan Richterd024ebc2006-03-28 20:03:55 -05001068 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (!scsi_id)
1071 return;
1072
1073 hi = scsi_id->hi;
1074
1075 /* This will remove our scsi device aswell */
1076 if (scsi_id->scsi_host) {
1077 scsi_remove_host(scsi_id->scsi_host);
1078 scsi_host_put(scsi_id->scsi_host);
1079 }
Stefan Richter09ee67a2006-08-14 18:43:00 +02001080 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 sbp2util_remove_command_orb_pool(scsi_id);
1082
1083 list_del(&scsi_id->scsi_list);
1084
1085 if (scsi_id->login_response) {
1086 pci_free_consistent(hi->host->pdev,
1087 sizeof(struct sbp2_login_response),
1088 scsi_id->login_response,
1089 scsi_id->login_response_dma);
1090 SBP2_DMA_FREE("single login FIFO");
1091 }
1092
1093 if (scsi_id->login_orb) {
1094 pci_free_consistent(hi->host->pdev,
1095 sizeof(struct sbp2_login_orb),
1096 scsi_id->login_orb,
1097 scsi_id->login_orb_dma);
1098 SBP2_DMA_FREE("single login ORB");
1099 }
1100
1101 if (scsi_id->reconnect_orb) {
1102 pci_free_consistent(hi->host->pdev,
1103 sizeof(struct sbp2_reconnect_orb),
1104 scsi_id->reconnect_orb,
1105 scsi_id->reconnect_orb_dma);
1106 SBP2_DMA_FREE("single reconnect orb");
1107 }
1108
1109 if (scsi_id->logout_orb) {
1110 pci_free_consistent(hi->host->pdev,
1111 sizeof(struct sbp2_logout_orb),
1112 scsi_id->logout_orb,
1113 scsi_id->logout_orb_dma);
1114 SBP2_DMA_FREE("single logout orb");
1115 }
1116
1117 if (scsi_id->query_logins_orb) {
1118 pci_free_consistent(hi->host->pdev,
1119 sizeof(struct sbp2_query_logins_orb),
1120 scsi_id->query_logins_orb,
1121 scsi_id->query_logins_orb_dma);
1122 SBP2_DMA_FREE("single query logins orb");
1123 }
1124
1125 if (scsi_id->query_logins_response) {
1126 pci_free_consistent(hi->host->pdev,
1127 sizeof(struct sbp2_query_logins_response),
1128 scsi_id->query_logins_response,
1129 scsi_id->query_logins_response_dma);
1130 SBP2_DMA_FREE("single query logins data");
1131 }
1132
Ben Collins67372312006-06-12 18:15:31 -04001133 if (scsi_id->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -05001134 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Ben Collins67372312006-06-12 18:15:31 -04001135 scsi_id->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -05001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 scsi_id->ud->device.driver_data = NULL;
1138
Stefan Richter147830f2006-03-28 19:54:52 -05001139 if (hi)
1140 module_put(hi->host->driver->owner);
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 SBP2_DEBUG("SBP-2 device removed, SCSI ID = %d", scsi_id->ud->id);
1143
1144 kfree(scsi_id);
1145}
1146
1147#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1148/*
1149 * This function deals with physical dma write requests (for adapters that do not support
1150 * physical dma in hardware). Mostly just here for debugging...
1151 */
Stefan Richtera237f352005-11-07 06:31:39 -05001152static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1153 int destid, quadlet_t *data, u64 addr,
1154 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156
Stefan Richtera237f352005-11-07 06:31:39 -05001157 /*
1158 * Manually put the data in the right place.
1159 */
1160 memcpy(bus_to_virt((u32) addr), data, length);
1161 sbp2util_packet_dump(data, length, "sbp2 phys dma write by device",
1162 (u32) addr);
1163 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166/*
1167 * This function deals with physical dma read requests (for adapters that do not support
1168 * physical dma in hardware). Mostly just here for debugging...
1169 */
Stefan Richtera237f352005-11-07 06:31:39 -05001170static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1171 quadlet_t *data, u64 addr, size_t length,
1172 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174
Stefan Richtera237f352005-11-07 06:31:39 -05001175 /*
1176 * Grab data from memory and send a read response.
1177 */
1178 memcpy(data, bus_to_virt((u32) addr), length);
1179 sbp2util_packet_dump(data, length, "sbp2 phys dma read by device",
1180 (u32) addr);
1181 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183#endif
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185/**************************************
1186 * SBP-2 protocol related section
1187 **************************************/
1188
1189/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * This function queries the device for the maximum concurrent logins it
1191 * supports.
1192 */
1193static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
1194{
1195 struct sbp2scsi_host_info *hi = scsi_id->hi;
1196 quadlet_t data[2];
1197 int max_logins;
1198 int active_logins;
1199
Stefan Richterd024ebc2006-03-28 20:03:55 -05001200 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 scsi_id->query_logins_orb->reserved1 = 0x0;
1203 scsi_id->query_logins_orb->reserved2 = 0x0;
1204
1205 scsi_id->query_logins_orb->query_response_lo = scsi_id->query_logins_response_dma;
1206 scsi_id->query_logins_orb->query_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 scsi_id->query_logins_orb->lun_misc = ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1209 scsi_id->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
Ben Collinse309fc62005-11-07 06:31:34 -05001210 scsi_id->query_logins_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 scsi_id->query_logins_orb->reserved_resp_length =
1213 ORB_SET_QUERY_LOGINS_RESP_LENGTH(sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Stefan Richter35bdddb2006-01-31 00:13:33 -05001215 scsi_id->query_logins_orb->status_fifo_hi =
1216 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1217 scsi_id->query_logins_orb->status_fifo_lo =
1218 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb));
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 sbp2util_packet_dump(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb),
1223 "sbp2 query logins orb", scsi_id->query_logins_orb_dma);
1224
1225 memset(scsi_id->query_logins_response, 0, sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1228 data[1] = scsi_id->query_logins_orb_dma;
1229 sbp2util_cpu_to_be32_buffer(data, 8);
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Stefan Richtere8398bb2006-07-23 22:19:00 +02001233 if (sbp2util_access_timeout(scsi_id, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001235 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
1238 if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
1239 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001240 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242
Stefan Richter60657722006-07-23 22:18:00 +02001243 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1244 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001245 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247
1248 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
1249
1250 SBP2_DEBUG("length_max_logins = %x",
1251 (unsigned int)scsi_id->query_logins_response->length_max_logins);
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001254 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001257 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001260 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262
1263 return 0;
1264}
1265
1266/*
1267 * This function is called in order to login to a particular SBP-2 device,
1268 * after a bus reset.
1269 */
1270static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
1271{
1272 struct sbp2scsi_host_info *hi = scsi_id->hi;
1273 quadlet_t data[2];
1274
Stefan Richterd024ebc2006-03-28 20:03:55 -05001275 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 if (!scsi_id->login_orb) {
Stefan Richterd024ebc2006-03-28 20:03:55 -05001278 SBP2_DEBUG("%s: login_orb not alloc'd!", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001279 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281
1282 if (!exclusive_login) {
1283 if (sbp2_query_logins(scsi_id)) {
1284 SBP2_INFO("Device does not support any more concurrent logins");
Stefan Richtera237f352005-11-07 06:31:39 -05001285 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
1287 }
1288
1289 /* Set-up login ORB, assume no password */
1290 scsi_id->login_orb->password_hi = 0;
1291 scsi_id->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
1294 scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
1297 scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0); /* One second reconnect time */
1298 scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(exclusive_login); /* Exclusive access to device */
1299 scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1); /* Notify us of login complete */
Ben Collinse309fc62005-11-07 06:31:34 -05001300 scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 scsi_id->login_orb->passwd_resp_lengths =
1303 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Stefan Richter35bdddb2006-01-31 00:13:33 -05001305 scsi_id->login_orb->status_fifo_hi =
1306 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1307 scsi_id->login_orb->status_fifo_lo =
1308 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 sbp2util_packet_dump(scsi_id->login_orb, sizeof(struct sbp2_login_orb),
1313 "sbp2 login orb", scsi_id->login_orb_dma);
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1318 data[1] = scsi_id->login_orb_dma;
1319 sbp2util_cpu_to_be32_buffer(data, 8);
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /*
1324 * Wait for login status (up to 20 seconds)...
1325 */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001326 if (sbp2util_access_timeout(scsi_id, 20*HZ)) {
1327 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001328 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330
1331 /*
1332 * Sanity. Make sure status returned matches login orb.
1333 */
1334 if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001335 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001336 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
Stefan Richter60657722006-07-23 22:18:00 +02001339 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1340 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001341 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343
1344 /*
1345 * Byte swap the login response, for use when reconnecting or
1346 * logging out.
1347 */
1348 sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
1349
1350 /*
1351 * Grab our command block agent address from the login response.
1352 */
1353 SBP2_DEBUG("command_block_agent_hi = %x",
1354 (unsigned int)scsi_id->login_response->command_block_agent_hi);
1355 SBP2_DEBUG("command_block_agent_lo = %x",
1356 (unsigned int)scsi_id->login_response->command_block_agent_lo);
1357
1358 scsi_id->sbp2_command_block_agent_addr =
1359 ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
1360 scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
1361 scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
1362
1363 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
1367/*
1368 * This function is called in order to logout from a particular SBP-2
1369 * device, usually called during driver unload.
1370 */
1371static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
1372{
1373 struct sbp2scsi_host_info *hi = scsi_id->hi;
1374 quadlet_t data[2];
1375 int error;
1376
Stefan Richterd024ebc2006-03-28 20:03:55 -05001377 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 /*
1380 * Set-up logout ORB
1381 */
1382 scsi_id->logout_orb->reserved1 = 0x0;
1383 scsi_id->logout_orb->reserved2 = 0x0;
1384 scsi_id->logout_orb->reserved3 = 0x0;
1385 scsi_id->logout_orb->reserved4 = 0x0;
1386
1387 scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1388 scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1389
1390 /* Notify us when complete */
1391 scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1392
1393 scsi_id->logout_orb->reserved5 = 0x0;
Stefan Richter35bdddb2006-01-31 00:13:33 -05001394 scsi_id->logout_orb->status_fifo_hi =
1395 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1396 scsi_id->logout_orb->status_fifo_lo =
1397 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 /*
1400 * Byte swap ORB if necessary
1401 */
1402 sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
1403
1404 sbp2util_packet_dump(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb),
1405 "sbp2 logout orb", scsi_id->logout_orb_dma);
1406
1407 /*
1408 * Ok, let's write to the target's management agent register
1409 */
1410 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1411 data[1] = scsi_id->logout_orb_dma;
1412 sbp2util_cpu_to_be32_buffer(data, 8);
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 error = hpsb_node_write(scsi_id->ne,
Stefan Richtera237f352005-11-07 06:31:39 -05001415 scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (error)
1417 return error;
1418
1419 /* Wait for device to logout...1 second. */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001420 if (sbp2util_access_timeout(scsi_id, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return -EIO;
1422
1423 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
1427/*
1428 * This function is called in order to reconnect to a particular SBP-2
1429 * device, after a bus reset.
1430 */
1431static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
1432{
1433 struct sbp2scsi_host_info *hi = scsi_id->hi;
1434 quadlet_t data[2];
1435 int error;
1436
Stefan Richterd024ebc2006-03-28 20:03:55 -05001437 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 /*
1440 * Set-up reconnect ORB
1441 */
1442 scsi_id->reconnect_orb->reserved1 = 0x0;
1443 scsi_id->reconnect_orb->reserved2 = 0x0;
1444 scsi_id->reconnect_orb->reserved3 = 0x0;
1445 scsi_id->reconnect_orb->reserved4 = 0x0;
1446
1447 scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1448 scsi_id->reconnect_orb->login_ID_misc |=
1449 ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1450
1451 /* Notify us when complete */
1452 scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1453
1454 scsi_id->reconnect_orb->reserved5 = 0x0;
Stefan Richter35bdddb2006-01-31 00:13:33 -05001455 scsi_id->reconnect_orb->status_fifo_hi =
1456 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1457 scsi_id->reconnect_orb->status_fifo_lo =
1458 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /*
1461 * Byte swap ORB if necessary
1462 */
1463 sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
1464
1465 sbp2util_packet_dump(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb),
1466 "sbp2 reconnect orb", scsi_id->reconnect_orb_dma);
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1469 data[1] = scsi_id->reconnect_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 /*
1478 * Wait for reconnect status (up to 1 second)...
1479 */
Stefan Richtere8398bb2006-07-23 22:19:00 +02001480 if (sbp2util_access_timeout(scsi_id, HZ)) {
1481 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001482 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
1485 /*
1486 * Sanity. Make sure status returned matches reconnect orb.
1487 */
1488 if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001489 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001490 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492
Stefan Richter60657722006-07-23 22:18:00 +02001493 if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1494 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001495 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497
1498 HPSB_DEBUG("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
1502/*
1503 * This function is called in order to set the busy timeout (number of
1504 * retries to attempt) on the sbp2 device.
1505 */
1506static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
1507{
1508 quadlet_t data;
1509
Stefan Richterd024ebc2006-03-28 20:03:55 -05001510 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richterd024ebc2006-03-28 20:03:55 -05001513 if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
1514 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518/*
1519 * This function is called to parse sbp2 device's config rom unit
1520 * directory. Used to determine things like sbp2 management agent offset,
1521 * and command set used (SCSI or RBC).
1522 */
1523static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
1524 struct unit_directory *ud)
1525{
1526 struct csr1212_keyval *kv;
1527 struct csr1212_dentry *dentry;
1528 u64 management_agent_addr;
1529 u32 command_set_spec_id, command_set, unit_characteristics,
Stefan Richter24d3bf82006-05-15 22:04:59 +02001530 firmware_revision;
1531 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 int i;
1533
Stefan Richterd024ebc2006-03-28 20:03:55 -05001534 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 management_agent_addr = 0x0;
1537 command_set_spec_id = 0x0;
1538 command_set = 0x0;
1539 unit_characteristics = 0x0;
1540 firmware_revision = 0x0;
1541
1542 /* Handle different fields in the unit directory, based on keys */
1543 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1544 switch (kv->key.id) {
1545 case CSR1212_KV_ID_DEPENDENT_INFO:
1546 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) {
1547 /* Save off the management agent address */
1548 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001549 CSR1212_REGISTER_SPACE_BASE +
1550 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 SBP2_DEBUG("sbp2_management_agent_addr = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001553 (unsigned int)management_agent_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 } else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
Stefan Richtera237f352005-11-07 06:31:39 -05001555 scsi_id->sbp2_lun =
1556 ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558 break;
1559
1560 case SBP2_COMMAND_SET_SPEC_ID_KEY:
1561 /* Command spec organization */
1562 command_set_spec_id = kv->value.immediate;
1563 SBP2_DEBUG("sbp2_command_set_spec_id = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001564 (unsigned int)command_set_spec_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 break;
1566
1567 case SBP2_COMMAND_SET_KEY:
1568 /* Command set used by sbp2 device */
1569 command_set = kv->value.immediate;
1570 SBP2_DEBUG("sbp2_command_set = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001571 (unsigned int)command_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 break;
1573
1574 case SBP2_UNIT_CHARACTERISTICS_KEY:
1575 /*
1576 * Unit characterisitcs (orb related stuff
1577 * that I'm not yet paying attention to)
1578 */
1579 unit_characteristics = kv->value.immediate;
1580 SBP2_DEBUG("sbp2_unit_characteristics = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001581 (unsigned int)unit_characteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 break;
1583
1584 case SBP2_FIRMWARE_REVISION_KEY:
1585 /* Firmware revision */
1586 firmware_revision = kv->value.immediate;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001587 SBP2_DEBUG("sbp2_firmware_revision = %x",
1588 (unsigned int)firmware_revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 break;
1590
1591 default:
1592 break;
1593 }
1594 }
1595
Stefan Richter24d3bf82006-05-15 22:04:59 +02001596 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Stefan Richter679c0cd2006-05-15 22:08:09 +02001598 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1599 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
1600 if (sbp2_workarounds_table[i].firmware_revision &&
1601 sbp2_workarounds_table[i].firmware_revision !=
1602 (firmware_revision & 0xffff00))
1603 continue;
1604 if (sbp2_workarounds_table[i].model_id &&
1605 sbp2_workarounds_table[i].model_id != ud->model_id)
1606 continue;
1607 workarounds |= sbp2_workarounds_table[i].workarounds;
1608 break;
1609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Stefan Richter24d3bf82006-05-15 22:04:59 +02001611 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001612 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1613 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1614 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001615 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001616 workarounds, firmware_revision,
1617 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1618 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001619
1620 /* We would need one SCSI host template for each target to adjust
1621 * max_sectors on the fly, therefore warn only. */
1622 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
1623 (max_sectors * 512) > (128 * 1024))
1624 SBP2_WARN("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
1625 "max transfer size. WARNING: Current max_sectors "
1626 "setting is larger than 128KB (%d sectors)",
1627 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
1628 max_sectors);
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 /* If this is a logical unit directory entry, process the parent
1631 * to get the values. */
1632 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
1633 struct unit_directory *parent_ud =
1634 container_of(ud->device.parent, struct unit_directory, device);
1635 sbp2_parse_unit_directory(scsi_id, parent_ud);
1636 } else {
1637 scsi_id->sbp2_management_agent_addr = management_agent_addr;
1638 scsi_id->sbp2_command_set_spec_id = command_set_spec_id;
1639 scsi_id->sbp2_command_set = command_set;
1640 scsi_id->sbp2_unit_characteristics = unit_characteristics;
1641 scsi_id->sbp2_firmware_revision = firmware_revision;
1642 scsi_id->workarounds = workarounds;
1643 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Ben Collinse309fc62005-11-07 06:31:34 -05001644 scsi_id->sbp2_lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646}
1647
Ben Collinsfd23ade2006-06-12 18:14:14 -04001648#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650/*
1651 * This function is called in order to determine the max speed and packet
1652 * size we can use in our ORBs. Note, that we (the driver and host) only
1653 * initiate the transaction. The SBP-2 device actually transfers the data
1654 * (by reading from the DMA area we tell it). This means that the SBP-2
1655 * device decides the actual maximum data it can transfer. We just tell it
1656 * the speed that it needs to use, and the max_rec the host supports, and
1657 * it takes care of the rest.
1658 */
1659static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
1660{
1661 struct sbp2scsi_host_info *hi = scsi_id->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001662 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Stefan Richterd024ebc2006-03-28 20:03:55 -05001664 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Stefan Richtera237f352005-11-07 06:31:39 -05001666 scsi_id->speed_code =
Ben Collins647dcb52006-06-12 18:12:37 -04001667 hi->host->speed[NODEID_TO_NODE(scsi_id->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 /* Bump down our speed if the user requested it */
1670 if (scsi_id->speed_code > max_speed) {
1671 scsi_id->speed_code = max_speed;
1672 SBP2_ERR("Forcing SBP-2 max speed down to %s",
1673 hpsb_speedto_str[scsi_id->speed_code]);
1674 }
1675
1676 /* Payload size is the lesser of what our speed supports and what
1677 * our host supports. */
Ben Collinsfd23ade2006-06-12 18:14:14 -04001678 payload = min(sbp2_speedto_max_payload[scsi_id->speed_code],
1679 (u8) (hi->host->csr.max_rec - 1));
1680
1681 /* If physical DMA is off, work around limitation in ohci1394:
1682 * packet size must not exceed PAGE_SIZE */
1683 if (scsi_id->ne->host->low_addr_space < (1ULL << 32))
1684 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1685 payload)
1686 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 HPSB_DEBUG("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
1689 NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
1690 hpsb_speedto_str[scsi_id->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001691 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Ben Collinsfd23ade2006-06-12 18:14:14 -04001693 scsi_id->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
1697/*
1698 * This function is called in order to perform a SBP-2 agent reset.
1699 */
1700static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
1701{
1702 quadlet_t data;
1703 u64 addr;
1704 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001705 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Stefan Richterd024ebc2006-03-28 20:03:55 -05001707 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Stefan Richter09ee67a2006-08-14 18:43:00 +02001709 cancel_delayed_work(&scsi_id->protocol_work);
1710 if (wait)
1711 flush_scheduled_work();
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 data = ntohl(SBP2_AGENT_RESET_DATA);
1714 addr = scsi_id->sbp2_command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
1715
1716 if (wait)
1717 retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
1718 else
1719 retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
1720
1721 if (retval < 0) {
1722 SBP2_ERR("hpsb_node_write failed.\n");
1723 return -EIO;
1724 }
1725
1726 /*
1727 * Need to make sure orb pointer is written on next command
1728 */
Stefan Richtercc078182006-07-23 22:12:00 +02001729 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 scsi_id->last_orb = NULL;
Stefan Richtercc078182006-07-23 22:12:00 +02001731 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Stefan Richtera237f352005-11-07 06:31:39 -05001733 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001736static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1737 struct sbp2scsi_host_info *hi,
1738 struct sbp2_command_info *command,
1739 unsigned int scsi_use_sg,
1740 struct scatterlist *sgpnt,
1741 u32 orb_direction,
1742 enum dma_data_direction dma_dir)
1743{
1744 command->dma_dir = dma_dir;
1745 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1746 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1747
1748 /* Special case if only one element (and less than 64KB in size) */
1749 if ((scsi_use_sg == 1) &&
1750 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1751
1752 SBP2_DEBUG("Only one s/g element");
1753 command->dma_size = sgpnt[0].length;
1754 command->dma_type = CMD_DMA_PAGE;
1755 command->cmd_dma = pci_map_page(hi->host->pdev,
1756 sgpnt[0].page,
1757 sgpnt[0].offset,
1758 command->dma_size,
1759 command->dma_dir);
1760 SBP2_DMA_ALLOC("single page scatter element");
1761
1762 orb->data_descriptor_lo = command->cmd_dma;
1763 orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
1764
1765 } else {
1766 struct sbp2_unrestricted_page_table *sg_element =
1767 &command->scatter_gather_element[0];
1768 u32 sg_count, sg_len;
1769 dma_addr_t sg_addr;
1770 int i, count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg,
1771 dma_dir);
1772
1773 SBP2_DMA_ALLOC("scatter list");
1774
1775 command->dma_size = scsi_use_sg;
1776 command->sge_buffer = sgpnt;
1777
1778 /* use page tables (s/g) */
1779 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1780 orb->data_descriptor_lo = command->sge_dma;
1781
1782 /*
1783 * Loop through and fill out our sbp-2 page tables
1784 * (and split up anything too large)
1785 */
1786 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1787 sg_len = sg_dma_len(sgpnt);
1788 sg_addr = sg_dma_address(sgpnt);
1789 while (sg_len) {
1790 sg_element[sg_count].segment_base_lo = sg_addr;
1791 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1792 sg_element[sg_count].length_segment_base_hi =
1793 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1794 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1795 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1796 } else {
1797 sg_element[sg_count].length_segment_base_hi =
1798 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1799 sg_len = 0;
1800 }
1801 sg_count++;
1802 }
1803 }
1804
1805 /* Number of page table (s/g) elements */
1806 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1807
1808 sbp2util_packet_dump(sg_element,
1809 (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1810 "sbp2 s/g list", command->sge_dma);
1811
1812 /* Byte swap page tables if necessary */
1813 sbp2util_cpu_to_be32_buffer(sg_element,
1814 (sizeof(struct sbp2_unrestricted_page_table)) *
1815 sg_count);
1816 }
1817}
1818
1819static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
1820 struct sbp2scsi_host_info *hi,
1821 struct sbp2_command_info *command,
1822 struct scatterlist *sgpnt,
1823 u32 orb_direction,
1824 unsigned int scsi_request_bufflen,
1825 void *scsi_request_buffer,
1826 enum dma_data_direction dma_dir)
1827{
1828 command->dma_dir = dma_dir;
1829 command->dma_size = scsi_request_bufflen;
1830 command->dma_type = CMD_DMA_SINGLE;
1831 command->cmd_dma = pci_map_single(hi->host->pdev, scsi_request_buffer,
1832 command->dma_size, command->dma_dir);
1833 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1834 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1835
1836 SBP2_DMA_ALLOC("single bulk");
1837
1838 /*
1839 * Handle case where we get a command w/o s/g enabled (but
1840 * check for transfers larger than 64K)
1841 */
1842 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1843
1844 orb->data_descriptor_lo = command->cmd_dma;
1845 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1846
1847 } else {
1848 struct sbp2_unrestricted_page_table *sg_element =
1849 &command->scatter_gather_element[0];
1850 u32 sg_count, sg_len;
1851 dma_addr_t sg_addr;
1852
1853 /*
1854 * Need to turn this into page tables, since the
1855 * buffer is too large.
1856 */
1857 orb->data_descriptor_lo = command->sge_dma;
1858
1859 /* Use page tables (s/g) */
1860 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1861
1862 /*
1863 * fill out our sbp-2 page tables (and split up
1864 * the large buffer)
1865 */
1866 sg_count = 0;
1867 sg_len = scsi_request_bufflen;
1868 sg_addr = command->cmd_dma;
1869 while (sg_len) {
1870 sg_element[sg_count].segment_base_lo = sg_addr;
1871 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1872 sg_element[sg_count].length_segment_base_hi =
1873 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1874 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1875 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1876 } else {
1877 sg_element[sg_count].length_segment_base_hi =
1878 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1879 sg_len = 0;
1880 }
1881 sg_count++;
1882 }
1883
1884 /* Number of page table (s/g) elements */
1885 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1886
1887 sbp2util_packet_dump(sg_element,
1888 (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1889 "sbp2 s/g list", command->sge_dma);
1890
1891 /* Byte swap page tables if necessary */
1892 sbp2util_cpu_to_be32_buffer(sg_element,
1893 (sizeof(struct sbp2_unrestricted_page_table)) *
1894 sg_count);
1895 }
1896}
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898/*
1899 * This function is called to create the actual command orb and s/g list
1900 * out of the scsi command itself.
1901 */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001902static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
1903 struct sbp2_command_info *command,
1904 unchar *scsi_cmd,
1905 unsigned int scsi_use_sg,
1906 unsigned int scsi_request_bufflen,
1907 void *scsi_request_buffer,
1908 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 struct sbp2scsi_host_info *hi = scsi_id->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001911 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001913 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 /*
1916 * Set-up our command ORB..
1917 *
1918 * NOTE: We're doing unrestricted page tables (s/g), as this is
1919 * best performance (at least with the devices I have). This means
1920 * that data_size becomes the number of s/g elements, and
1921 * page_size should be zero (for unrestricted).
1922 */
1923 command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1924 command_orb->next_ORB_lo = 0x0;
1925 command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
1926 command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
Stefan Richtera237f352005-11-07 06:31:39 -05001927 command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Stefan Richter43863eb2005-12-12 23:03:24 -05001929 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001930 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001931 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001932 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001933 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001934 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001935 else {
1936 SBP2_WARN("Falling back to DMA_NONE");
1937 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001940 /* Set-up our pagetable stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 SBP2_DEBUG("No data transfer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 command_orb->data_descriptor_hi = 0x0;
1944 command_orb->data_descriptor_lo = 0x0;
1945 command_orb->misc |= ORB_SET_DIRECTION(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 } else if (scsi_use_sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 SBP2_DEBUG("Use scatter/gather");
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001948 sbp2_prep_command_orb_sg(command_orb, hi, command, scsi_use_sg,
1949 sgpnt, orb_direction, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 SBP2_DEBUG("No scatter/gather");
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001952 sbp2_prep_command_orb_no_sg(command_orb, hi, command, sgpnt,
1953 orb_direction, scsi_request_bufflen,
1954 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001957 /* Byte swap command ORB if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
1959
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001960 /* Put our scsi command in the command ORB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 memset(command_orb->cdb, 0, 12);
1962 memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
1964
1965/*
1966 * This function is called in order to begin a regular SBP-2 command.
1967 */
Stefan Richter28212762006-07-23 22:10:00 +02001968static void sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 struct sbp2_command_info *command)
1970{
1971 struct sbp2scsi_host_info *hi = scsi_id->hi;
1972 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercc078182006-07-23 22:12:00 +02001973 struct sbp2_command_orb *last_orb;
1974 dma_addr_t last_orb_dma;
1975 u64 addr = scsi_id->sbp2_command_block_agent_addr;
1976 quadlet_t data[2];
1977 size_t length;
1978 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 outstanding_orb_incr;
1981 SBP2_ORB_DEBUG("sending command orb %p, total orbs = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001982 command_orb, global_outstanding_command_orbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
1985 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02001986 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
1988 sizeof(command->scatter_gather_element),
1989 PCI_DMA_BIDIRECTIONAL);
1990 /*
1991 * Check to see if there are any previous orbs to use
1992 */
Stefan Richtercc078182006-07-23 22:12:00 +02001993 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
1994 last_orb = scsi_id->last_orb;
1995 last_orb_dma = scsi_id->last_orb_dma;
1996 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001998 * last_orb == NULL means: We know that the target's fetch agent
1999 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 */
Stefan Richtercc078182006-07-23 22:12:00 +02002001 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
2003 data[1] = command->command_orb_dma;
2004 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02002005 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 /*
Stefan Richtercc078182006-07-23 22:12:00 +02002008 * last_orb != NULL means: We know that the target's fetch agent
2009 * is (very probably) not dead or in reset state right now.
2010 * We have an ORB already sent that we can append a new one to.
2011 * The target's fetch agent may or may not have read this
2012 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 */
Stefan Richtercc078182006-07-23 22:12:00 +02002014 pci_dma_sync_single_for_cpu(hi->host->pdev, last_orb_dma,
2015 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002016 PCI_DMA_TODEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02002017 last_orb->next_ORB_lo = cpu_to_be32(command->command_orb_dma);
2018 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02002020 last_orb->next_ORB_hi = 0;
2021 pci_dma_sync_single_for_device(hi->host->pdev, last_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002023 PCI_DMA_TODEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02002024 addr += SBP2_DOORBELL_OFFSET;
2025 data[0] = 0;
2026 length = 4;
2027 }
2028 scsi_id->last_orb = command_orb;
2029 scsi_id->last_orb_dma = command->command_orb_dma;
2030 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Stefan Richtercc078182006-07-23 22:12:00 +02002032 SBP2_ORB_DEBUG("write to %s register, command orb %p",
2033 last_orb ? "DOORBELL" : "ORB_POINTER", command_orb);
Stefan Richter09ee67a2006-08-14 18:43:00 +02002034 if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length)) {
2035 /*
2036 * sbp2util_node_write_no_wait failed. We certainly ran out
2037 * of transaction labels, perhaps just because there were no
2038 * context switches which gave khpsbpkt a chance to collect
2039 * free tlabels. Try again in non-atomic context. If necessary,
2040 * the workqueue job will sleep to guaranteedly get a tlabel.
2041 * We do not accept new commands until the job is over.
2042 */
2043 scsi_block_requests(scsi_id->scsi_host);
2044 PREPARE_WORK(&scsi_id->protocol_work,
2045 last_orb ? sbp2util_write_doorbell:
2046 sbp2util_write_orb_pointer,
2047 scsi_id);
2048 schedule_work(&scsi_id->protocol_work);
2049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/*
2053 * This function is called in order to begin a regular SBP-2 command.
2054 */
2055static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
2056 struct scsi_cmnd *SCpnt,
2057 void (*done)(struct scsi_cmnd *))
2058{
2059 unchar *cmd = (unchar *) SCpnt->cmnd;
2060 unsigned int request_bufflen = SCpnt->request_bufflen;
2061 struct sbp2_command_info *command;
2062
Stefan Richterd024ebc2006-03-28 20:03:55 -05002063 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 SBP2_DEBUG("SCSI transfer size = %x", request_bufflen);
2065 SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
2066
2067 /*
2068 * Allocate a command orb and s/g structure
2069 */
2070 command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
2071 if (!command) {
Stefan Richtera237f352005-11-07 06:31:39 -05002072 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
2074
2075 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 * Now actually fill in the comamnd orb and sbp2 s/g list
2077 */
2078 sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
2079 request_bufflen, SCpnt->request_buffer,
2080 SCpnt->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 sbp2util_packet_dump(&command->command_orb, sizeof(struct sbp2_command_orb),
2083 "sbp2 command orb", command->command_orb_dma);
2084
2085 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 * Link up the orb, and ring the doorbell if needed
2087 */
2088 sbp2_link_orb_command(scsi_id, command);
2089
Stefan Richtera237f352005-11-07 06:31:39 -05002090 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 * Translates SBP-2 status into SCSI sense data for check conditions
2095 */
2096static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
2097{
Stefan Richterd024ebc2006-03-28 20:03:55 -05002098 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 /*
2101 * Ok, it's pretty ugly... ;-)
2102 */
2103 sense_data[0] = 0x70;
2104 sense_data[1] = 0x0;
2105 sense_data[2] = sbp2_status[9];
2106 sense_data[3] = sbp2_status[12];
2107 sense_data[4] = sbp2_status[13];
2108 sense_data[5] = sbp2_status[14];
2109 sense_data[6] = sbp2_status[15];
2110 sense_data[7] = 10;
2111 sense_data[8] = sbp2_status[16];
2112 sense_data[9] = sbp2_status[17];
2113 sense_data[10] = sbp2_status[18];
2114 sense_data[11] = sbp2_status[19];
2115 sense_data[12] = sbp2_status[10];
2116 sense_data[13] = sbp2_status[11];
2117 sense_data[14] = sbp2_status[20];
2118 sense_data[15] = sbp2_status[21];
2119
Stefan Richtera237f352005-11-07 06:31:39 -05002120 return sbp2_status[8] & 0x3f; /* return scsi status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
2123/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * This function deals with status writes from the SBP-2 device
2125 */
Stefan Richter3e98eab42006-07-23 22:16:00 +02002126static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
2127 int destid, quadlet_t *data, u64 addr,
2128 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130 struct sbp2scsi_host_info *hi;
2131 struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02002133 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
2135 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05002136 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Stefan Richterd024ebc2006-03-28 20:03:55 -05002138 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 sbp2util_packet_dump(data, length, "sbp2 status write by device", (u32)addr);
2141
Stefan Richter60657722006-07-23 22:18:00 +02002142 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
2143 SBP2_ERR("Wrong size of status block");
2144 return RCODE_ADDRESS_ERROR;
2145 }
2146 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05002148 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02002151 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05002153 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 /*
Stefan Richter35bdddb2006-01-31 00:13:33 -05002156 * Find our scsi_id structure by looking at the status fifo address
2157 * written to by the sbp2 device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
Stefan Richter35bdddb2006-01-31 00:13:33 -05002160 if (scsi_id_tmp->ne->nodeid == nodeid &&
2161 scsi_id_tmp->status_fifo_addr == addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 scsi_id = scsi_id_tmp;
2163 break;
2164 }
2165 }
Stefan Richter60657722006-07-23 22:18:00 +02002166 if (unlikely(!scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 SBP2_ERR("scsi_id is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05002168 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170
2171 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002172 * Put response into scsi_id status fifo buffer. The first two bytes
2173 * come in big endian bit order. Often the target writes only a
2174 * truncated status block, minimally the first two quadlets. The rest
2175 * is implied to be zeros.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 */
Stefan Richter3e98eab42006-07-23 22:16:00 +02002177 sb = &scsi_id->status_block;
2178 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
2179 memcpy(sb, data, length);
2180 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 /*
Stefan Richter60657722006-07-23 22:18:00 +02002183 * Ignore unsolicited status. Handle command ORB status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 */
Stefan Richter60657722006-07-23 22:18:00 +02002185 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
2186 command = NULL;
2187 else
2188 command = sbp2util_find_command_for_orb(scsi_id,
2189 sb->ORB_offset_lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 SBP2_DEBUG("Found status for command ORB");
2192 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2193 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002194 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2196 sizeof(command->scatter_gather_element),
2197 PCI_DMA_BIDIRECTIONAL);
2198
2199 SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
2200 outstanding_orb_decr;
2201
2202 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002203 * Matched status with command, now grab scsi command pointers
2204 * and check status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 */
Stefan Richter60657722006-07-23 22:18:00 +02002206 /*
2207 * FIXME: If the src field in the status is 1, the ORB DMA must
2208 * not be reused until status for a subsequent ORB is received.
2209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 SCpnt = command->Current_SCpnt;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002211 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 sbp2util_mark_command_completed(scsi_id, command);
Stefan Richter24c7cd02006-04-01 21:11:41 +02002213 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02002216 u32 h = sb->ORB_offset_hi_misc;
2217 u32 r = STATUS_GET_RESP(h);
2218
2219 if (r != RESP_STATUS_REQUEST_COMPLETE) {
2220 SBP2_WARN("resp 0x%x, sbp_status 0x%x",
2221 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02002222 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02002223 r == RESP_STATUS_TRANSPORT_FAILURE ?
2224 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02002225 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02002226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002228 * See if the target stored any scsi status information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 */
Stefan Richterabbca102006-08-14 18:51:00 +02002230 if (STATUS_GET_LEN(h) > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 SBP2_DEBUG("CHECK CONDITION");
Stefan Richter3e98eab42006-07-23 22:16:00 +02002232 scsi_status = sbp2_status_to_sense_data(
2233 (unchar *)sb, SCpnt->sense_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 /*
Stefan Richter3e98eab42006-07-23 22:16:00 +02002236 * Check to see if the dead bit is set. If so, we'll
2237 * have to initiate a fetch agent reset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 */
Stefan Richterabbca102006-08-14 18:51:00 +02002239 if (STATUS_TEST_DEAD(h)) {
Stefan Richter3e98eab42006-07-23 22:16:00 +02002240 SBP2_DEBUG("Dead bit set - "
2241 "initiating fetch agent reset");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 sbp2_agent_reset(scsi_id, 0);
2243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
2245 }
2246
2247 /*
Stefan Richtercc078182006-07-23 22:12:00 +02002248 * Check here to see if there are no commands in-use. If there
2249 * are none, we know that the fetch agent left the active state
2250 * _and_ that we did not reactivate it yet. Therefore clear
2251 * last_orb so that next time we write directly to the
2252 * ORB_POINTER register. That way the fetch agent does not need
2253 * to refetch the next_ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 */
Jody McIntyre79456192005-11-07 06:29:39 -05002255 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtercc078182006-07-23 22:12:00 +02002256 if (list_empty(&scsi_id->sbp2_command_orb_inuse))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 scsi_id->last_orb = NULL;
Jody McIntyre79456192005-11-07 06:29:39 -05002258 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 /*
2262 * It's probably a login/logout/reconnect status.
2263 */
Stefan Richter3e98eab42006-07-23 22:16:00 +02002264 if ((sb->ORB_offset_lo == scsi_id->reconnect_orb_dma) ||
2265 (sb->ORB_offset_lo == scsi_id->login_orb_dma) ||
2266 (sb->ORB_offset_lo == scsi_id->query_logins_orb_dma) ||
Stefan Richtere8398bb2006-07-23 22:19:00 +02002267 (sb->ORB_offset_lo == scsi_id->logout_orb_dma)) {
2268 scsi_id->access_complete = 1;
2269 wake_up_interruptible(&access_wq);
2270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
2272
2273 if (SCpnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 SBP2_DEBUG("Completing SCSI command");
2275 sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
2276 command->Current_done);
2277 SBP2_ORB_DEBUG("command orb completed");
2278 }
2279
Stefan Richtera237f352005-11-07 06:31:39 -05002280 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283/**************************************
2284 * SCSI interface related section
2285 **************************************/
2286
2287/*
2288 * This routine is the main request entry routine for doing I/O. It is
2289 * called from the scsi stack directly.
2290 */
2291static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
2292 void (*done)(struct scsi_cmnd *))
2293{
2294 struct scsi_id_instance_data *scsi_id =
2295 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2296 struct sbp2scsi_host_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002297 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Stefan Richterd024ebc2006-03-28 20:03:55 -05002299 SBP2_DEBUG_ENTER();
2300#if (CONFIG_IEEE1394_SBP2_DEBUG >= 2) || defined(CONFIG_IEEE1394_SBP2_PACKET_DUMP)
2301 scsi_print_command(SCpnt);
2302#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Jody McIntyreabd559b2005-09-30 11:59:06 -07002304 if (!sbp2util_node_is_available(scsi_id))
2305 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 hi = scsi_id->hi;
2308
2309 if (!hi) {
2310 SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07002311 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313
2314 /*
2315 * Until we handle multiple luns, just return selection time-out
2316 * to any IO directed at non-zero LUNs
2317 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002318 if (SCpnt->device->lun)
2319 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 /*
2322 * Check for request sense command, and handle it here
2323 * (autorequest sense)
2324 */
2325 if (SCpnt->cmnd[0] == REQUEST_SENSE) {
2326 SBP2_DEBUG("REQUEST_SENSE");
2327 memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
2328 memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
2329 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
Jody McIntyreabd559b2005-09-30 11:59:06 -07002330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 }
2332
2333 /*
2334 * Check to see if we are in the middle of a bus reset.
2335 */
2336 if (!hpsb_node_entry_valid(scsi_id->ne)) {
2337 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07002338 result = DID_BUS_BUSY << 16;
2339 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
2341
2342 /*
Stefan Richter43863eb2005-12-12 23:03:24 -05002343 * Bidirectional commands are not yet implemented,
2344 * and unknown transfer direction not handled.
2345 */
2346 if (SCpnt->sc_data_direction == DMA_BIDIRECTIONAL) {
2347 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
2348 result = DID_ERROR << 16;
2349 goto done;
2350 }
2351
2352 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 * Try and send our SCSI command
2354 */
2355 if (sbp2_send_command(scsi_id, SCpnt, done)) {
2356 SBP2_ERR("Error sending SCSI command");
2357 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
2358 SCpnt, done);
2359 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07002360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Jody McIntyreabd559b2005-09-30 11:59:06 -07002362done:
2363 SCpnt->result = result;
2364 done(SCpnt);
2365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367
2368/*
2369 * This function is called in order to complete all outstanding SBP-2
2370 * commands (in case of resets, etc.).
2371 */
2372static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
2373 u32 status)
2374{
2375 struct sbp2scsi_host_info *hi = scsi_id->hi;
2376 struct list_head *lh;
2377 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05002378 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Stefan Richterd024ebc2006-03-28 20:03:55 -05002380 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Jody McIntyre79456192005-11-07 06:29:39 -05002382 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
2384 SBP2_DEBUG("Found pending command to complete");
2385 lh = scsi_id->sbp2_command_orb_inuse.next;
2386 command = list_entry(lh, struct sbp2_command_info, list);
2387 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2388 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002389 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2391 sizeof(command->scatter_gather_element),
2392 PCI_DMA_BIDIRECTIONAL);
2393 sbp2util_mark_command_completed(scsi_id, command);
2394 if (command->Current_SCpnt) {
2395 command->Current_SCpnt->result = status << 16;
2396 command->Current_done(command->Current_SCpnt);
2397 }
2398 }
Jody McIntyre79456192005-11-07 06:29:39 -05002399 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401 return;
2402}
2403
2404/*
2405 * This function is called in order to complete a regular SBP-2 command.
2406 *
2407 * This can be called in interrupt context.
2408 */
2409static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
2410 u32 scsi_status, struct scsi_cmnd *SCpnt,
2411 void (*done)(struct scsi_cmnd *))
2412{
Stefan Richterd024ebc2006-03-28 20:03:55 -05002413 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415 /*
2416 * Sanity
2417 */
2418 if (!SCpnt) {
2419 SBP2_ERR("SCpnt is NULL");
2420 return;
2421 }
2422
2423 /*
2424 * If a bus reset is in progress and there was an error, don't
2425 * complete the command, just let it get retried at the end of the
2426 * bus reset.
2427 */
Stefan Richtera237f352005-11-07 06:31:39 -05002428 if (!hpsb_node_entry_valid(scsi_id->ne)
2429 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 SBP2_ERR("Bus reset in progress - retry command later");
2431 return;
2432 }
Stefan Richtera237f352005-11-07 06:31:39 -05002433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 /*
2435 * Switch on scsi status
2436 */
2437 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05002438 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05002439 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05002440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Stefan Richtera237f352005-11-07 06:31:39 -05002442 case SBP2_SCSI_STATUS_BUSY:
2443 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
2444 SCpnt->result = DID_BUS_BUSY << 16;
2445 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Stefan Richtera237f352005-11-07 06:31:39 -05002447 case SBP2_SCSI_STATUS_CHECK_CONDITION:
2448 SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
Stefan Richter8f0525f2006-03-28 20:03:45 -05002449 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450#if CONFIG_IEEE1394_SBP2_DEBUG >= 1
Stefan Richtera237f352005-11-07 06:31:39 -05002451 scsi_print_command(SCpnt);
Stefan Richterd024ebc2006-03-28 20:03:55 -05002452 scsi_print_sense(SBP2_DEVICE_NAME, SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453#endif
Stefan Richtera237f352005-11-07 06:31:39 -05002454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Stefan Richtera237f352005-11-07 06:31:39 -05002456 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
2457 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
2458 SCpnt->result = DID_NO_CONNECT << 16;
2459 scsi_print_command(SCpnt);
2460 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Stefan Richtera237f352005-11-07 06:31:39 -05002462 case SBP2_SCSI_STATUS_CONDITION_MET:
2463 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
2464 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
2465 SBP2_ERR("Bad SCSI status = %x", scsi_status);
2466 SCpnt->result = DID_ERROR << 16;
2467 scsi_print_command(SCpnt);
2468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Stefan Richtera237f352005-11-07 06:31:39 -05002470 default:
2471 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
2472 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
2474
2475 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 * If a bus reset is in progress and there was an error, complete
2477 * the command as busy so that it will get retried.
2478 */
Stefan Richtera237f352005-11-07 06:31:39 -05002479 if (!hpsb_node_entry_valid(scsi_id->ne)
2480 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 SBP2_ERR("Completing command with busy (bus reset)");
2482 SCpnt->result = DID_BUS_BUSY << 16;
2483 }
2484
2485 /*
2486 * If a unit attention occurs, return busy status so it gets
2487 * retried... it could have happened because of a 1394 bus reset
2488 * or hot-plug...
Stefan Richter8f0525f2006-03-28 20:03:45 -05002489 * XXX DID_BUS_BUSY is actually a bad idea because it will defy
2490 * the scsi layer's retry logic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 */
2492#if 0
2493 if ((scsi_status == SBP2_SCSI_STATUS_CHECK_CONDITION) &&
2494 (SCpnt->sense_buffer[2] == UNIT_ATTENTION)) {
2495 SBP2_DEBUG("UNIT ATTENTION - return busy");
2496 SCpnt->result = DID_BUS_BUSY << 16;
2497 }
2498#endif
2499
2500 /*
2501 * Tell scsi stack that we're done with this command
2502 */
Stefan Richtera237f352005-11-07 06:31:39 -05002503 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Jody McIntyreabd559b2005-09-30 11:59:06 -07002506static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
2507{
Stefan Richtera80614d2006-02-14 22:04:19 -05002508 struct scsi_id_instance_data *scsi_id =
2509 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2510
2511 scsi_id->sdev = sdev;
2512
Stefan Richter24d3bf82006-05-15 22:04:59 +02002513 if (scsi_id->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002514 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002515 return 0;
2516}
2517
Jody McIntyreabd559b2005-09-30 11:59:06 -07002518static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
Stefan Richter24d3bf82006-05-15 22:04:59 +02002520 struct scsi_id_instance_data *scsi_id =
2521 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
Ben Collins365c7862005-11-07 06:31:24 -05002524 sdev->use_10_for_rw = 1;
2525 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002526
2527 if (sdev->type == TYPE_DISK &&
2528 scsi_id->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
2529 sdev->skip_ms_page_8 = 1;
Stefan Richtere9a1c522006-05-15 22:06:37 +02002530 if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
2531 sdev->fix_capacity = 1;
Stefan Richter31a379e2006-07-03 12:01:58 -04002532 if (scsi_id->ne->guid_vendor_id == 0x0010b9 && /* Maxtor's OUI */
2533 (sdev->type == TYPE_DISK || sdev->type == TYPE_RBC))
2534 sdev->allow_restart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return 0;
2536}
2537
Jody McIntyreabd559b2005-09-30 11:59:06 -07002538static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2539{
2540 ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
2541 return;
2542}
2543
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544/*
2545 * Called by scsi stack when something has really gone wrong. Usually
2546 * called when a command has timed-out for some reason.
2547 */
2548static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2549{
2550 struct scsi_id_instance_data *scsi_id =
2551 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2552 struct sbp2scsi_host_info *hi = scsi_id->hi;
2553 struct sbp2_command_info *command;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002554 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556 SBP2_ERR("aborting sbp2 command");
2557 scsi_print_command(SCpnt);
2558
Jody McIntyreabd559b2005-09-30 11:59:06 -07002559 if (sbp2util_node_is_available(scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561 /*
2562 * Right now, just return any matching command structures
2563 * to the free pool.
2564 */
Stefan Richter24c7cd02006-04-01 21:11:41 +02002565 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
2567 if (command) {
2568 SBP2_DEBUG("Found command to abort");
2569 pci_dma_sync_single_for_cpu(hi->host->pdev,
2570 command->command_orb_dma,
2571 sizeof(struct sbp2_command_orb),
Stefan Richterd4018d72006-07-23 22:57:00 +02002572 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 pci_dma_sync_single_for_cpu(hi->host->pdev,
2574 command->sge_dma,
2575 sizeof(command->scatter_gather_element),
2576 PCI_DMA_BIDIRECTIONAL);
2577 sbp2util_mark_command_completed(scsi_id, command);
2578 if (command->Current_SCpnt) {
2579 command->Current_SCpnt->result = DID_ABORT << 16;
2580 command->Current_done(command->Current_SCpnt);
2581 }
2582 }
Stefan Richter24c7cd02006-04-01 21:11:41 +02002583 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 /*
2586 * Initiate a fetch agent reset.
2587 */
Stefan Richter1f427e82006-08-14 18:44:00 +02002588 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
2590 }
2591
Stefan Richtera237f352005-11-07 06:31:39 -05002592 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
2595/*
2596 * Called by scsi stack when something has really gone wrong.
2597 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002598static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
2600 struct scsi_id_instance_data *scsi_id =
2601 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2602
2603 SBP2_ERR("reset requested");
2604
Jody McIntyreabd559b2005-09-30 11:59:06 -07002605 if (sbp2util_node_is_available(scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 SBP2_ERR("Generating sbp2 fetch agent reset");
Stefan Richter1f427e82006-08-14 18:44:00 +02002607 sbp2_agent_reset(scsi_id, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
2609
Jody McIntyreabd559b2005-09-30 11:59:06 -07002610 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002611}
2612
Stefan Richtera237f352005-11-07 06:31:39 -05002613static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2614 struct device_attribute *attr,
2615 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
2617 struct scsi_device *sdev;
2618 struct scsi_id_instance_data *scsi_id;
2619 int lun;
2620
2621 if (!(sdev = to_scsi_device(dev)))
2622 return 0;
2623
2624 if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
2625 return 0;
2626
Ben Collinse309fc62005-11-07 06:31:34 -05002627 lun = ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
2629 return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
2630 scsi_id->ud->id, lun);
2631}
2632static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
2633
2634static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
2635 &dev_attr_ieee1394_id,
2636 NULL
2637};
2638
2639MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2640MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2641MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2642MODULE_LICENSE("GPL");
2643
2644/* SCSI host template */
2645static struct scsi_host_template scsi_driver_template = {
2646 .module = THIS_MODULE,
2647 .name = "SBP-2 IEEE-1394",
2648 .proc_name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 .queuecommand = sbp2scsi_queuecommand,
2650 .eh_abort_handler = sbp2scsi_abort,
2651 .eh_device_reset_handler = sbp2scsi_reset,
Jody McIntyreabd559b2005-09-30 11:59:06 -07002652 .slave_alloc = sbp2scsi_slave_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 .slave_configure = sbp2scsi_slave_configure,
Jody McIntyreabd559b2005-09-30 11:59:06 -07002654 .slave_destroy = sbp2scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 .this_id = -1,
2656 .sg_tablesize = SG_ALL,
2657 .use_clustering = ENABLE_CLUSTERING,
2658 .cmd_per_lun = SBP2_MAX_CMDS,
2659 .can_queue = SBP2_MAX_CMDS,
2660 .emulated = 1,
2661 .sdev_attrs = sbp2_sysfs_sdev_attrs,
2662};
2663
2664static int sbp2_module_init(void)
2665{
2666 int ret;
2667
Stefan Richterd024ebc2006-03-28 20:03:55 -05002668 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 /* Module load debug option to force one command at a time (serializing I/O) */
2671 if (serialize_io) {
Jody McIntyre2bab3592005-09-30 11:59:07 -07002672 SBP2_INFO("Driver forced to serialize I/O (serialize_io=1)");
2673 SBP2_INFO("Try serialize_io=0 for better performance");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 scsi_driver_template.can_queue = 1;
2675 scsi_driver_template.cmd_per_lun = 1;
2676 }
2677
Stefan Richter24d3bf82006-05-15 22:04:59 +02002678 if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
2679 (max_sectors * 512) > (128 * 1024))
2680 max_sectors = 128 * 1024 / 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 scsi_driver_template.max_sectors = max_sectors;
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 /* Register our high level driver with 1394 stack */
2684 hpsb_register_highlevel(&sbp2_highlevel);
2685
2686 ret = hpsb_register_protocol(&sbp2_driver);
2687 if (ret) {
2688 SBP2_ERR("Failed to register protocol");
2689 hpsb_unregister_highlevel(&sbp2_highlevel);
2690 return ret;
2691 }
2692
2693 return 0;
2694}
2695
2696static void __exit sbp2_module_exit(void)
2697{
Stefan Richterd024ebc2006-03-28 20:03:55 -05002698 SBP2_DEBUG_ENTER();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700 hpsb_unregister_protocol(&sbp2_driver);
2701
2702 hpsb_unregister_highlevel(&sbp2_highlevel);
2703}
2704
2705module_init(sbp2_module_init);
2706module_exit(sbp2_module_exit);