ieee1394: sbp2: consolidate log levels
[safe/jmp/linux-2.6] / drivers / ieee1394 / sbp2.c
1 /*
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
41 #include <linux/blkdev.h>
42 #include <linux/compiler.h>
43 #include <linux/delay.h>
44 #include <linux/device.h>
45 #include <linux/dma-mapping.h>
46 #include <linux/gfp.h>
47 #include <linux/init.h>
48 #include <linux/kernel.h>
49 #include <linux/list.h>
50 #include <linux/module.h>
51 #include <linux/moduleparam.h>
52 #include <linux/pci.h>
53 #include <linux/slab.h>
54 #include <linux/spinlock.h>
55 #include <linux/stat.h>
56 #include <linux/string.h>
57 #include <linux/stringify.h>
58 #include <linux/types.h>
59 #include <linux/wait.h>
60
61 #include <asm/byteorder.h>
62 #include <asm/errno.h>
63 #include <asm/param.h>
64 #include <asm/scatterlist.h>
65 #include <asm/system.h>
66 #include <asm/types.h>
67
68 #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
69 #include <asm/io.h> /* for bus_to_virt */
70 #endif
71
72 #include <scsi/scsi.h>
73 #include <scsi/scsi_cmnd.h>
74 #include <scsi/scsi_dbg.h>
75 #include <scsi/scsi_device.h>
76 #include <scsi/scsi_host.h>
77
78 #include "csr1212.h"
79 #include "highlevel.h"
80 #include "hosts.h"
81 #include "ieee1394.h"
82 #include "ieee1394_core.h"
83 #include "ieee1394_hotplug.h"
84 #include "ieee1394_transactions.h"
85 #include "ieee1394_types.h"
86 #include "nodemgr.h"
87 #include "sbp2.h"
88
89 /*
90  * Module load parameter definitions
91  */
92
93 /*
94  * Change max_speed on module load if you have a bad IEEE-1394
95  * controller that has trouble running 2KB packets at 400mb.
96  *
97  * NOTE: On certain OHCI parts I have seen short packets on async transmit
98  * (probably due to PCI latency/throughput issues with the part). You can
99  * bump down the speed if you are running into problems.
100  */
101 static int max_speed = IEEE1394_SPEED_MAX;
102 module_param(max_speed, int, 0644);
103 MODULE_PARM_DESC(max_speed, "Force max speed (3 = 800mb, 2 = 400mb, 1 = 200mb, 0 = 100mb)");
104
105 /*
106  * Set serialize_io to 1 if you'd like only one scsi command sent
107  * down to us at a time (debugging). This might be necessary for very
108  * badly behaved sbp2 devices.
109  *
110  * TODO: Make this configurable per device.
111  */
112 static int serialize_io = 1;
113 module_param(serialize_io, int, 0444);
114 MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers (default = 1, faster = 0)");
115
116 /*
117  * Bump up max_sectors if you'd like to support very large sized
118  * transfers. Please note that some older sbp2 bridge chips are broken for
119  * transfers greater or equal to 128KB.  Default is a value of 255
120  * sectors, or just under 128KB (at 512 byte sector size). I can note that
121  * the Oxsemi sbp2 chipsets have no problems supporting very large
122  * transfer sizes.
123  */
124 static int max_sectors = SBP2_MAX_SECTORS;
125 module_param(max_sectors, int, 0444);
126 MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported (default = "
127                  __stringify(SBP2_MAX_SECTORS) ")");
128
129 /*
130  * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
131  * do an exclusive login, as it's generally unsafe to have two hosts
132  * talking to a single sbp2 device at the same time (filesystem coherency,
133  * etc.). If you're running an sbp2 device that supports multiple logins,
134  * and you're either running read-only filesystems or some sort of special
135  * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
136  * File System, or Lustre, then set exclusive_login to zero.
137  *
138  * So far only bridges from Oxford Semiconductor are known to support
139  * concurrent logins. Depending on firmware, four or two concurrent logins
140  * are possible on OXFW911 and newer Oxsemi bridges.
141  */
142 static int exclusive_login = 1;
143 module_param(exclusive_login, int, 0644);
144 MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device (default = 1)");
145
146 /*
147  * If any of the following workarounds is required for your device to work,
148  * please submit the kernel messages logged by sbp2 to the linux1394-devel
149  * mailing list.
150  *
151  * - 128kB max transfer
152  *   Limit transfer size. Necessary for some old bridges.
153  *
154  * - 36 byte inquiry
155  *   When scsi_mod probes the device, let the inquiry command look like that
156  *   from MS Windows.
157  *
158  * - skip mode page 8
159  *   Suppress sending of mode_sense for mode page 8 if the device pretends to
160  *   support the SCSI Primary Block commands instead of Reduced Block Commands.
161  *
162  * - fix capacity
163  *   Tell sd_mod to correct the last sector number reported by read_capacity.
164  *   Avoids access beyond actual disk limits on devices with an off-by-one bug.
165  *   Don't use this with devices which don't have this bug.
166  *
167  * - override internal blacklist
168  *   Instead of adding to the built-in blacklist, use only the workarounds
169  *   specified in the module load parameter.
170  *   Useful if a blacklist entry interfered with a non-broken device.
171  */
172 static int sbp2_default_workarounds;
173 module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
174 MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
175         ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
176         ", 36 byte inquiry = "    __stringify(SBP2_WORKAROUND_INQUIRY_36)
177         ", skip mode page 8 = "   __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
178         ", fix capacity = "       __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
179         ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
180         ", or a combination)");
181
182 /*
183  * Debug levels, configured via kernel config, or enable here.
184  */
185
186 #define CONFIG_IEEE1394_SBP2_DEBUG 0
187 /* #define CONFIG_IEEE1394_SBP2_DEBUG_ORBS */
188 /* #define CONFIG_IEEE1394_SBP2_DEBUG_DMA */
189 /* #define CONFIG_IEEE1394_SBP2_DEBUG 1 */
190 /* #define CONFIG_IEEE1394_SBP2_DEBUG 2 */
191 /* #define CONFIG_IEEE1394_SBP2_PACKET_DUMP */
192
193 #ifdef CONFIG_IEEE1394_SBP2_DEBUG_ORBS
194 #define SBP2_ORB_DEBUG(fmt, args...)    HPSB_ERR("sbp2(%s): "fmt, __FUNCTION__, ## args)
195 static u32 global_outstanding_command_orbs = 0;
196 #define outstanding_orb_incr global_outstanding_command_orbs++
197 #define outstanding_orb_decr global_outstanding_command_orbs--
198 #else
199 #define SBP2_ORB_DEBUG(fmt, args...)    do {} while (0)
200 #define outstanding_orb_incr            do {} while (0)
201 #define outstanding_orb_decr            do {} while (0)
202 #endif
203
204 #ifdef CONFIG_IEEE1394_SBP2_DEBUG_DMA
205 #define SBP2_DMA_ALLOC(fmt, args...) \
206         HPSB_ERR("sbp2(%s)alloc(%d): "fmt, __FUNCTION__, \
207                  ++global_outstanding_dmas, ## args)
208 #define SBP2_DMA_FREE(fmt, args...) \
209         HPSB_ERR("sbp2(%s)free(%d): "fmt, __FUNCTION__, \
210                  --global_outstanding_dmas, ## args)
211 static u32 global_outstanding_dmas = 0;
212 #else
213 #define SBP2_DMA_ALLOC(fmt, args...)    do {} while (0)
214 #define SBP2_DMA_FREE(fmt, args...)     do {} while (0)
215 #endif
216
217 #if CONFIG_IEEE1394_SBP2_DEBUG >= 2
218 #define SBP2_DEBUG(fmt, args...)        HPSB_ERR("sbp2: "fmt, ## args)
219 #define SBP2_INFO(fmt, args...)         HPSB_ERR("sbp2: "fmt, ## args)
220 #elif CONFIG_IEEE1394_SBP2_DEBUG == 1
221 #define SBP2_DEBUG(fmt, args...)        HPSB_DEBUG("sbp2: "fmt, ## args)
222 #define SBP2_INFO(fmt, args...)         HPSB_INFO("sbp2: "fmt, ## args)
223 #else
224 #define SBP2_DEBUG(fmt, args...)        do {} while (0)
225 #define SBP2_INFO(fmt, args...)         HPSB_INFO("sbp2: "fmt, ## args)
226 #endif
227
228 #define SBP2_ERR(fmt, args...)          HPSB_ERR("sbp2: "fmt, ## args)
229 #define SBP2_DEBUG_ENTER()              SBP2_DEBUG("%s", __FUNCTION__)
230
231 /*
232  * Globals
233  */
234 static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *, u32);
235 static void sbp2scsi_complete_command(struct scsi_id_instance_data *, u32,
236                                       struct scsi_cmnd *,
237                                       void (*)(struct scsi_cmnd *));
238 static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *);
239 static int sbp2_start_device(struct scsi_id_instance_data *);
240 static void sbp2_remove_device(struct scsi_id_instance_data *);
241 static int sbp2_login_device(struct scsi_id_instance_data *);
242 static int sbp2_reconnect_device(struct scsi_id_instance_data *);
243 static int sbp2_logout_device(struct scsi_id_instance_data *);
244 static void sbp2_host_reset(struct hpsb_host *);
245 static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
246                                     u64, size_t, u16);
247 static int sbp2_agent_reset(struct scsi_id_instance_data *, int);
248 static void sbp2_parse_unit_directory(struct scsi_id_instance_data *,
249                                       struct unit_directory *);
250 static int sbp2_set_busy_timeout(struct scsi_id_instance_data *);
251 static int sbp2_max_speed_and_size(struct scsi_id_instance_data *);
252
253
254 static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
255
256 static struct hpsb_highlevel sbp2_highlevel = {
257         .name           = SBP2_DEVICE_NAME,
258         .host_reset     = sbp2_host_reset,
259 };
260
261 static struct hpsb_address_ops sbp2_ops = {
262         .write          = sbp2_handle_status_write
263 };
264
265 #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
266 static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
267                                      u64, size_t, u16);
268 static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
269                                     size_t, u16);
270
271 static struct hpsb_address_ops sbp2_physdma_ops = {
272         .read           = sbp2_handle_physdma_read,
273         .write          = sbp2_handle_physdma_write,
274 };
275 #endif
276
277
278 /*
279  * Interface to driver core and IEEE 1394 core
280  */
281 static struct ieee1394_device_id sbp2_id_table[] = {
282         {
283          .match_flags   = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
284          .specifier_id  = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
285          .version       = SBP2_SW_VERSION_ENTRY & 0xffffff},
286         {}
287 };
288 MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
289
290 static int sbp2_probe(struct device *);
291 static int sbp2_remove(struct device *);
292 static int sbp2_update(struct unit_directory *);
293
294 static struct hpsb_protocol_driver sbp2_driver = {
295         .name           = "SBP2 Driver",
296         .id_table       = sbp2_id_table,
297         .update         = sbp2_update,
298         .driver         = {
299                 .name           = SBP2_DEVICE_NAME,
300                 .bus            = &ieee1394_bus_type,
301                 .probe          = sbp2_probe,
302                 .remove         = sbp2_remove,
303         },
304 };
305
306
307 /*
308  * Interface to SCSI core
309  */
310 static int sbp2scsi_queuecommand(struct scsi_cmnd *,
311                                  void (*)(struct scsi_cmnd *));
312 static int sbp2scsi_abort(struct scsi_cmnd *);
313 static int sbp2scsi_reset(struct scsi_cmnd *);
314 static int sbp2scsi_slave_alloc(struct scsi_device *);
315 static int sbp2scsi_slave_configure(struct scsi_device *);
316 static void sbp2scsi_slave_destroy(struct scsi_device *);
317 static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
318                                            struct device_attribute *, char *);
319
320 static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
321
322 static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
323         &dev_attr_ieee1394_id,
324         NULL
325 };
326
327 static struct scsi_host_template scsi_driver_template = {
328         .module                  = THIS_MODULE,
329         .name                    = "SBP-2 IEEE-1394",
330         .proc_name               = SBP2_DEVICE_NAME,
331         .queuecommand            = sbp2scsi_queuecommand,
332         .eh_abort_handler        = sbp2scsi_abort,
333         .eh_device_reset_handler = sbp2scsi_reset,
334         .slave_alloc             = sbp2scsi_slave_alloc,
335         .slave_configure         = sbp2scsi_slave_configure,
336         .slave_destroy           = sbp2scsi_slave_destroy,
337         .this_id                 = -1,
338         .sg_tablesize            = SG_ALL,
339         .use_clustering          = ENABLE_CLUSTERING,
340         .cmd_per_lun             = SBP2_MAX_CMDS,
341         .can_queue               = SBP2_MAX_CMDS,
342         .emulated                = 1,
343         .sdev_attrs              = sbp2_sysfs_sdev_attrs,
344 };
345
346
347 /*
348  * List of devices with known bugs.
349  *
350  * The firmware_revision field, masked with 0xffff00, is the best indicator
351  * for the type of bridge chip of a device.  It yields a few false positives
352  * but this did not break correctly behaving devices so far.
353  */
354 static const struct {
355         u32 firmware_revision;
356         u32 model_id;
357         unsigned workarounds;
358 } sbp2_workarounds_table[] = {
359         /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
360                 .firmware_revision      = 0x002800,
361                 .model_id               = 0x001010,
362                 .workarounds            = SBP2_WORKAROUND_INQUIRY_36 |
363                                           SBP2_WORKAROUND_MODE_SENSE_8,
364         },
365         /* Initio bridges, actually only needed for some older ones */ {
366                 .firmware_revision      = 0x000200,
367                 .workarounds            = SBP2_WORKAROUND_INQUIRY_36,
368         },
369         /* Symbios bridge */ {
370                 .firmware_revision      = 0xa0b800,
371                 .workarounds            = SBP2_WORKAROUND_128K_MAX_TRANS,
372         },
373         /*
374          * Note about the following Apple iPod blacklist entries:
375          *
376          * There are iPods (2nd gen, 3rd gen) with model_id==0.  Since our
377          * matching logic treats 0 as a wildcard, we cannot match this ID
378          * without rewriting the matching routine.  Fortunately these iPods
379          * do not feature the read_capacity bug according to one report.
380          * Read_capacity behaviour as well as model_id could change due to
381          * Apple-supplied firmware updates though.
382          */
383         /* iPod 4th generation */ {
384                 .firmware_revision      = 0x0a2700,
385                 .model_id               = 0x000021,
386                 .workarounds            = SBP2_WORKAROUND_FIX_CAPACITY,
387         },
388         /* iPod mini */ {
389                 .firmware_revision      = 0x0a2700,
390                 .model_id               = 0x000023,
391                 .workarounds            = SBP2_WORKAROUND_FIX_CAPACITY,
392         },
393         /* iPod Photo */ {
394                 .firmware_revision      = 0x0a2700,
395                 .model_id               = 0x00007e,
396                 .workarounds            = SBP2_WORKAROUND_FIX_CAPACITY,
397         }
398 };
399
400 /**************************************
401  * General utility functions
402  **************************************/
403
404 #ifndef __BIG_ENDIAN
405 /*
406  * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
407  */
408 static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
409 {
410         u32 *temp = buffer;
411
412         for (length = (length >> 2); length--; )
413                 temp[length] = be32_to_cpu(temp[length]);
414
415         return;
416 }
417
418 /*
419  * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
420  */
421 static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
422 {
423         u32 *temp = buffer;
424
425         for (length = (length >> 2); length--; )
426                 temp[length] = cpu_to_be32(temp[length]);
427
428         return;
429 }
430 #else /* BIG_ENDIAN */
431 /* Why waste the cpu cycles? */
432 #define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
433 #define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
434 #endif
435
436 #ifdef CONFIG_IEEE1394_SBP2_PACKET_DUMP
437 /*
438  * Debug packet dump routine. Length is in bytes.
439  */
440 static void sbp2util_packet_dump(void *buffer, int length, char *dump_name,
441                                  u32 dump_phys_addr)
442 {
443         int i;
444         unsigned char *dump = buffer;
445
446         if (!dump || !length || !dump_name)
447                 return;
448
449         if (dump_phys_addr)
450                 printk("[%s, 0x%x]", dump_name, dump_phys_addr);
451         else
452                 printk("[%s]", dump_name);
453         for (i = 0; i < length; i++) {
454                 if (i > 0x3f) {
455                         printk("\n   ...");
456                         break;
457                 }
458                 if ((i & 0x3) == 0)
459                         printk("  ");
460                 if ((i & 0xf) == 0)
461                         printk("\n   ");
462                 printk("%02x ", (int)dump[i]);
463         }
464         printk("\n");
465
466         return;
467 }
468 #else
469 #define sbp2util_packet_dump(w,x,y,z) do {} while (0)
470 #endif
471
472 static DECLARE_WAIT_QUEUE_HEAD(access_wq);
473
474 /*
475  * Waits for completion of an SBP-2 access request.
476  * Returns nonzero if timed out or prematurely interrupted.
477  */
478 static int sbp2util_access_timeout(struct scsi_id_instance_data *scsi_id,
479                                    int timeout)
480 {
481         long leftover = wait_event_interruptible_timeout(
482                                 access_wq, scsi_id->access_complete, timeout);
483
484         scsi_id->access_complete = 0;
485         return leftover <= 0;
486 }
487
488 /* Frees an allocated packet */
489 static void sbp2_free_packet(struct hpsb_packet *packet)
490 {
491         hpsb_free_tlabel(packet);
492         hpsb_free_packet(packet);
493 }
494
495 /* This is much like hpsb_node_write(), except it ignores the response
496  * subaction and returns immediately. Can be used from interrupts.
497  */
498 static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
499                                        quadlet_t *buffer, size_t length)
500 {
501         struct hpsb_packet *packet;
502
503         packet = hpsb_make_writepacket(ne->host, ne->nodeid,
504                                        addr, buffer, length);
505         if (!packet)
506                 return -ENOMEM;
507
508         hpsb_set_packet_complete_task(packet,
509                                       (void (*)(void *))sbp2_free_packet,
510                                       packet);
511
512         hpsb_node_fill_packet(ne, packet);
513
514         if (hpsb_send_packet(packet) < 0) {
515                 sbp2_free_packet(packet);
516                 return -EIO;
517         }
518
519         return 0;
520 }
521
522 static void sbp2util_notify_fetch_agent(struct scsi_id_instance_data *scsi_id,
523                                         u64 offset, quadlet_t *data, size_t len)
524 {
525         /*
526          * There is a small window after a bus reset within which the node
527          * entry's generation is current but the reconnect wasn't completed.
528          */
529         if (unlikely(atomic_read(&scsi_id->state) == SBP2LU_STATE_IN_RESET))
530                 return;
531
532         if (hpsb_node_write(scsi_id->ne,
533                             scsi_id->sbp2_command_block_agent_addr + offset,
534                             data, len))
535                 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
536         /*
537          * Now accept new SCSI commands, unless a bus reset happended during
538          * hpsb_node_write.
539          */
540         if (likely(atomic_read(&scsi_id->state) != SBP2LU_STATE_IN_RESET))
541                 scsi_unblock_requests(scsi_id->scsi_host);
542 }
543
544 static void sbp2util_write_orb_pointer(struct work_struct *work)
545 {
546         struct scsi_id_instance_data *scsi_id =
547                 container_of(work, struct scsi_id_instance_data,
548                              protocol_work.work);
549         quadlet_t data[2];
550
551         data[0] = ORB_SET_NODE_ID(scsi_id->hi->host->node_id);
552         data[1] = scsi_id->last_orb_dma;
553         sbp2util_cpu_to_be32_buffer(data, 8);
554         sbp2util_notify_fetch_agent(scsi_id, SBP2_ORB_POINTER_OFFSET, data, 8);
555 }
556
557 static void sbp2util_write_doorbell(struct work_struct *work)
558 {
559         struct scsi_id_instance_data *scsi_id =
560                 container_of(work, struct scsi_id_instance_data,
561                              protocol_work.work);
562         sbp2util_notify_fetch_agent(scsi_id, SBP2_DOORBELL_OFFSET, NULL, 4);
563 }
564
565 /*
566  * This function is called to create a pool of command orbs used for
567  * command processing. It is called when a new sbp2 device is detected.
568  */
569 static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id)
570 {
571         struct sbp2scsi_host_info *hi = scsi_id->hi;
572         int i;
573         unsigned long flags, orbs;
574         struct sbp2_command_info *command;
575
576         orbs = serialize_io ? 2 : SBP2_MAX_CMDS;
577
578         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
579         for (i = 0; i < orbs; i++) {
580                 command = kzalloc(sizeof(*command), GFP_ATOMIC);
581                 if (!command) {
582                         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock,
583                                                flags);
584                         return -ENOMEM;
585                 }
586                 command->command_orb_dma =
587                     pci_map_single(hi->host->pdev, &command->command_orb,
588                                    sizeof(struct sbp2_command_orb),
589                                    PCI_DMA_TODEVICE);
590                 SBP2_DMA_ALLOC("single command orb DMA");
591                 command->sge_dma =
592                     pci_map_single(hi->host->pdev,
593                                    &command->scatter_gather_element,
594                                    sizeof(command->scatter_gather_element),
595                                    PCI_DMA_BIDIRECTIONAL);
596                 SBP2_DMA_ALLOC("scatter_gather_element");
597                 INIT_LIST_HEAD(&command->list);
598                 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
599         }
600         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
601         return 0;
602 }
603
604 /*
605  * This function is called to delete a pool of command orbs.
606  */
607 static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id)
608 {
609         struct hpsb_host *host = scsi_id->hi->host;
610         struct list_head *lh, *next;
611         struct sbp2_command_info *command;
612         unsigned long flags;
613
614         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
615         if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
616                 list_for_each_safe(lh, next, &scsi_id->sbp2_command_orb_completed) {
617                         command = list_entry(lh, struct sbp2_command_info, list);
618
619                         /* Release our generic DMA's */
620                         pci_unmap_single(host->pdev, command->command_orb_dma,
621                                          sizeof(struct sbp2_command_orb),
622                                          PCI_DMA_TODEVICE);
623                         SBP2_DMA_FREE("single command orb DMA");
624                         pci_unmap_single(host->pdev, command->sge_dma,
625                                          sizeof(command->scatter_gather_element),
626                                          PCI_DMA_BIDIRECTIONAL);
627                         SBP2_DMA_FREE("scatter_gather_element");
628
629                         kfree(command);
630                 }
631         }
632         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
633         return;
634 }
635
636 /*
637  * This function finds the sbp2_command for a given outstanding command
638  * orb.Only looks at the inuse list.
639  */
640 static struct sbp2_command_info *sbp2util_find_command_for_orb(
641                 struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
642 {
643         struct sbp2_command_info *command;
644         unsigned long flags;
645
646         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
647         if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
648                 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
649                         if (command->command_orb_dma == orb) {
650                                 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
651                                 return command;
652                         }
653                 }
654         }
655         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
656
657         SBP2_ORB_DEBUG("could not match command orb %x", (unsigned int)orb);
658
659         return NULL;
660 }
661
662 /*
663  * This function finds the sbp2_command for a given outstanding SCpnt.
664  * Only looks at the inuse list.
665  * Must be called with scsi_id->sbp2_command_orb_lock held.
666  */
667 static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
668                 struct scsi_id_instance_data *scsi_id, void *SCpnt)
669 {
670         struct sbp2_command_info *command;
671
672         if (!list_empty(&scsi_id->sbp2_command_orb_inuse))
673                 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list)
674                         if (command->Current_SCpnt == SCpnt)
675                                 return command;
676         return NULL;
677 }
678
679 /*
680  * This function allocates a command orb used to send a scsi command.
681  */
682 static struct sbp2_command_info *sbp2util_allocate_command_orb(
683                 struct scsi_id_instance_data *scsi_id,
684                 struct scsi_cmnd *Current_SCpnt,
685                 void (*Current_done)(struct scsi_cmnd *))
686 {
687         struct list_head *lh;
688         struct sbp2_command_info *command = NULL;
689         unsigned long flags;
690
691         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
692         if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
693                 lh = scsi_id->sbp2_command_orb_completed.next;
694                 list_del(lh);
695                 command = list_entry(lh, struct sbp2_command_info, list);
696                 command->Current_done = Current_done;
697                 command->Current_SCpnt = Current_SCpnt;
698                 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_inuse);
699         } else {
700                 SBP2_ERR("%s: no orbs available", __FUNCTION__);
701         }
702         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
703         return command;
704 }
705
706 /* Free our DMA's */
707 static void sbp2util_free_command_dma(struct sbp2_command_info *command)
708 {
709         struct scsi_id_instance_data *scsi_id =
710                 (struct scsi_id_instance_data *)command->Current_SCpnt->device->host->hostdata[0];
711         struct hpsb_host *host;
712
713         if (!scsi_id) {
714                 SBP2_ERR("%s: scsi_id == NULL", __FUNCTION__);
715                 return;
716         }
717
718         host = scsi_id->ud->ne->host;
719
720         if (command->cmd_dma) {
721                 if (command->dma_type == CMD_DMA_SINGLE) {
722                         pci_unmap_single(host->pdev, command->cmd_dma,
723                                          command->dma_size, command->dma_dir);
724                         SBP2_DMA_FREE("single bulk");
725                 } else if (command->dma_type == CMD_DMA_PAGE) {
726                         pci_unmap_page(host->pdev, command->cmd_dma,
727                                        command->dma_size, command->dma_dir);
728                         SBP2_DMA_FREE("single page");
729                 } /* XXX: Check for CMD_DMA_NONE bug */
730                 command->dma_type = CMD_DMA_NONE;
731                 command->cmd_dma = 0;
732         }
733
734         if (command->sge_buffer) {
735                 pci_unmap_sg(host->pdev, command->sge_buffer,
736                              command->dma_size, command->dma_dir);
737                 SBP2_DMA_FREE("scatter list");
738                 command->sge_buffer = NULL;
739         }
740 }
741
742 /*
743  * This function moves a command to the completed orb list.
744  * Must be called with scsi_id->sbp2_command_orb_lock held.
745  */
746 static void sbp2util_mark_command_completed(
747                 struct scsi_id_instance_data *scsi_id,
748                 struct sbp2_command_info *command)
749 {
750         list_del(&command->list);
751         sbp2util_free_command_dma(command);
752         list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
753 }
754
755 /*
756  * Is scsi_id valid? Is the 1394 node still present?
757  */
758 static inline int sbp2util_node_is_available(struct scsi_id_instance_data *scsi_id)
759 {
760         return scsi_id && scsi_id->ne && !scsi_id->ne->in_limbo;
761 }
762
763 /*********************************************
764  * IEEE-1394 core driver stack related section
765  *********************************************/
766
767 static int sbp2_probe(struct device *dev)
768 {
769         struct unit_directory *ud;
770         struct scsi_id_instance_data *scsi_id;
771
772         SBP2_DEBUG_ENTER();
773
774         ud = container_of(dev, struct unit_directory, device);
775
776         /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
777          * instead. */
778         if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
779                 return -ENODEV;
780
781         scsi_id = sbp2_alloc_device(ud);
782
783         if (!scsi_id)
784                 return -ENOMEM;
785
786         sbp2_parse_unit_directory(scsi_id, ud);
787
788         return sbp2_start_device(scsi_id);
789 }
790
791 static int sbp2_remove(struct device *dev)
792 {
793         struct unit_directory *ud;
794         struct scsi_id_instance_data *scsi_id;
795         struct scsi_device *sdev;
796
797         SBP2_DEBUG_ENTER();
798
799         ud = container_of(dev, struct unit_directory, device);
800         scsi_id = ud->device.driver_data;
801         if (!scsi_id)
802                 return 0;
803
804         if (scsi_id->scsi_host) {
805                 /* Get rid of enqueued commands if there is no chance to
806                  * send them. */
807                 if (!sbp2util_node_is_available(scsi_id))
808                         sbp2scsi_complete_all_commands(scsi_id, DID_NO_CONNECT);
809                 /* scsi_remove_device() will trigger shutdown functions of SCSI
810                  * highlevel drivers which would deadlock if blocked. */
811                 atomic_set(&scsi_id->state, SBP2LU_STATE_IN_SHUTDOWN);
812                 scsi_unblock_requests(scsi_id->scsi_host);
813         }
814         sdev = scsi_id->sdev;
815         if (sdev) {
816                 scsi_id->sdev = NULL;
817                 scsi_remove_device(sdev);
818         }
819
820         sbp2_logout_device(scsi_id);
821         sbp2_remove_device(scsi_id);
822
823         return 0;
824 }
825
826 static int sbp2_update(struct unit_directory *ud)
827 {
828         struct scsi_id_instance_data *scsi_id = ud->device.driver_data;
829
830         SBP2_DEBUG_ENTER();
831
832         if (sbp2_reconnect_device(scsi_id)) {
833
834                 /*
835                  * Ok, reconnect has failed. Perhaps we didn't
836                  * reconnect fast enough. Try doing a regular login, but
837                  * first do a logout just in case of any weirdness.
838                  */
839                 sbp2_logout_device(scsi_id);
840
841                 if (sbp2_login_device(scsi_id)) {
842                         /* Login failed too, just fail, and the backend
843                          * will call our sbp2_remove for us */
844                         SBP2_ERR("Failed to reconnect to sbp2 device!");
845                         return -EBUSY;
846                 }
847         }
848
849         /* Set max retries to something large on the device. */
850         sbp2_set_busy_timeout(scsi_id);
851
852         /* Do a SBP-2 fetch agent reset. */
853         sbp2_agent_reset(scsi_id, 1);
854
855         /* Get the max speed and packet size that we can use. */
856         sbp2_max_speed_and_size(scsi_id);
857
858         /* Complete any pending commands with busy (so they get
859          * retried) and remove them from our queue
860          */
861         sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
862
863         /* Accept new commands unless there was another bus reset in the
864          * meantime. */
865         if (hpsb_node_entry_valid(scsi_id->ne)) {
866                 atomic_set(&scsi_id->state, SBP2LU_STATE_RUNNING);
867                 scsi_unblock_requests(scsi_id->scsi_host);
868         }
869         return 0;
870 }
871
872 /* This functions is called by the sbp2_probe, for each new device. We now
873  * allocate one scsi host for each scsi_id (unit directory). */
874 static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud)
875 {
876         struct sbp2scsi_host_info *hi;
877         struct Scsi_Host *scsi_host = NULL;
878         struct scsi_id_instance_data *scsi_id = NULL;
879
880         SBP2_DEBUG_ENTER();
881
882         scsi_id = kzalloc(sizeof(*scsi_id), GFP_KERNEL);
883         if (!scsi_id) {
884                 SBP2_ERR("failed to create scsi_id");
885                 goto failed_alloc;
886         }
887
888         scsi_id->ne = ud->ne;
889         scsi_id->ud = ud;
890         scsi_id->speed_code = IEEE1394_SPEED_100;
891         scsi_id->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
892         scsi_id->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
893         INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_inuse);
894         INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_completed);
895         INIT_LIST_HEAD(&scsi_id->scsi_list);
896         spin_lock_init(&scsi_id->sbp2_command_orb_lock);
897         atomic_set(&scsi_id->state, SBP2LU_STATE_RUNNING);
898         INIT_DELAYED_WORK(&scsi_id->protocol_work, NULL);
899
900         ud->device.driver_data = scsi_id;
901
902         hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
903         if (!hi) {
904                 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, sizeof(*hi));
905                 if (!hi) {
906                         SBP2_ERR("failed to allocate hostinfo");
907                         goto failed_alloc;
908                 }
909                 SBP2_DEBUG("sbp2_alloc_device: allocated hostinfo");
910                 hi->host = ud->ne->host;
911                 INIT_LIST_HEAD(&hi->scsi_ids);
912
913 #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
914                 /* Handle data movement if physical dma is not
915                  * enabled or not supported on host controller */
916                 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
917                                              &sbp2_physdma_ops,
918                                              0x0ULL, 0xfffffffcULL)) {
919                         SBP2_ERR("failed to register lower 4GB address range");
920                         goto failed_alloc;
921                 }
922 #endif
923         }
924
925         /* Prevent unloading of the 1394 host */
926         if (!try_module_get(hi->host->driver->owner)) {
927                 SBP2_ERR("failed to get a reference on 1394 host driver");
928                 goto failed_alloc;
929         }
930
931         scsi_id->hi = hi;
932
933         list_add_tail(&scsi_id->scsi_list, &hi->scsi_ids);
934
935         /* Register the status FIFO address range. We could use the same FIFO
936          * for targets at different nodes. However we need different FIFOs per
937          * target in order to support multi-unit devices.
938          * The FIFO is located out of the local host controller's physical range
939          * but, if possible, within the posted write area. Status writes will
940          * then be performed as unified transactions. This slightly reduces
941          * bandwidth usage, and some Prolific based devices seem to require it.
942          */
943         scsi_id->status_fifo_addr = hpsb_allocate_and_register_addrspace(
944                         &sbp2_highlevel, ud->ne->host, &sbp2_ops,
945                         sizeof(struct sbp2_status_block), sizeof(quadlet_t),
946                         ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
947         if (scsi_id->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
948                 SBP2_ERR("failed to allocate status FIFO address range");
949                 goto failed_alloc;
950         }
951
952         /* Register our host with the SCSI stack. */
953         scsi_host = scsi_host_alloc(&scsi_driver_template,
954                                     sizeof(unsigned long));
955         if (!scsi_host) {
956                 SBP2_ERR("failed to register scsi host");
957                 goto failed_alloc;
958         }
959
960         scsi_host->hostdata[0] = (unsigned long)scsi_id;
961
962         if (!scsi_add_host(scsi_host, &ud->device)) {
963                 scsi_id->scsi_host = scsi_host;
964                 return scsi_id;
965         }
966
967         SBP2_ERR("failed to add scsi host");
968         scsi_host_put(scsi_host);
969
970 failed_alloc:
971         sbp2_remove_device(scsi_id);
972         return NULL;
973 }
974
975 static void sbp2_host_reset(struct hpsb_host *host)
976 {
977         struct sbp2scsi_host_info *hi;
978         struct scsi_id_instance_data *scsi_id;
979
980         hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
981         if (!hi)
982                 return;
983         list_for_each_entry(scsi_id, &hi->scsi_ids, scsi_list)
984                 if (likely(atomic_read(&scsi_id->state) !=
985                            SBP2LU_STATE_IN_SHUTDOWN)) {
986                         atomic_set(&scsi_id->state, SBP2LU_STATE_IN_RESET);
987                         scsi_block_requests(scsi_id->scsi_host);
988                 }
989 }
990
991 /*
992  * This function is where we first pull the node unique ids, and then
993  * allocate memory and register a SBP-2 device.
994  */
995 static int sbp2_start_device(struct scsi_id_instance_data *scsi_id)
996 {
997         struct sbp2scsi_host_info *hi = scsi_id->hi;
998         int error;
999
1000         SBP2_DEBUG_ENTER();
1001
1002         /* Login FIFO DMA */
1003         scsi_id->login_response =
1004                 pci_alloc_consistent(hi->host->pdev,
1005                                      sizeof(struct sbp2_login_response),
1006                                      &scsi_id->login_response_dma);
1007         if (!scsi_id->login_response)
1008                 goto alloc_fail;
1009         SBP2_DMA_ALLOC("consistent DMA region for login FIFO");
1010
1011         /* Query logins ORB DMA */
1012         scsi_id->query_logins_orb =
1013                 pci_alloc_consistent(hi->host->pdev,
1014                                      sizeof(struct sbp2_query_logins_orb),
1015                                      &scsi_id->query_logins_orb_dma);
1016         if (!scsi_id->query_logins_orb)
1017                 goto alloc_fail;
1018         SBP2_DMA_ALLOC("consistent DMA region for query logins ORB");
1019
1020         /* Query logins response DMA */
1021         scsi_id->query_logins_response =
1022                 pci_alloc_consistent(hi->host->pdev,
1023                                      sizeof(struct sbp2_query_logins_response),
1024                                      &scsi_id->query_logins_response_dma);
1025         if (!scsi_id->query_logins_response)
1026                 goto alloc_fail;
1027         SBP2_DMA_ALLOC("consistent DMA region for query logins response");
1028
1029         /* Reconnect ORB DMA */
1030         scsi_id->reconnect_orb =
1031                 pci_alloc_consistent(hi->host->pdev,
1032                                      sizeof(struct sbp2_reconnect_orb),
1033                                      &scsi_id->reconnect_orb_dma);
1034         if (!scsi_id->reconnect_orb)
1035                 goto alloc_fail;
1036         SBP2_DMA_ALLOC("consistent DMA region for reconnect ORB");
1037
1038         /* Logout ORB DMA */
1039         scsi_id->logout_orb =
1040                 pci_alloc_consistent(hi->host->pdev,
1041                                      sizeof(struct sbp2_logout_orb),
1042                                      &scsi_id->logout_orb_dma);
1043         if (!scsi_id->logout_orb)
1044                 goto alloc_fail;
1045         SBP2_DMA_ALLOC("consistent DMA region for logout ORB");
1046
1047         /* Login ORB DMA */
1048         scsi_id->login_orb =
1049                 pci_alloc_consistent(hi->host->pdev,
1050                                      sizeof(struct sbp2_login_orb),
1051                                      &scsi_id->login_orb_dma);
1052         if (!scsi_id->login_orb)
1053                 goto alloc_fail;
1054         SBP2_DMA_ALLOC("consistent DMA region for login ORB");
1055
1056         SBP2_DEBUG("New SBP-2 device inserted, SCSI ID = %x", scsi_id->ud->id);
1057
1058         /*
1059          * Create our command orb pool
1060          */
1061         if (sbp2util_create_command_orb_pool(scsi_id)) {
1062                 SBP2_ERR("sbp2util_create_command_orb_pool failed!");
1063                 sbp2_remove_device(scsi_id);
1064                 return -ENOMEM;
1065         }
1066
1067         /* Schedule a timeout here. The reason is that we may be so close
1068          * to a bus reset, that the device is not available for logins.
1069          * This can happen when the bus reset is caused by the host
1070          * connected to the sbp2 device being removed. That host would
1071          * have a certain amount of time to relogin before the sbp2 device
1072          * allows someone else to login instead. One second makes sense. */
1073         if (msleep_interruptible(1000)) {
1074                 sbp2_remove_device(scsi_id);
1075                 return -EINTR;
1076         }
1077
1078         /*
1079          * Login to the sbp-2 device
1080          */
1081         if (sbp2_login_device(scsi_id)) {
1082                 /* Login failed, just remove the device. */
1083                 sbp2_remove_device(scsi_id);
1084                 return -EBUSY;
1085         }
1086
1087         /*
1088          * Set max retries to something large on the device
1089          */
1090         sbp2_set_busy_timeout(scsi_id);
1091
1092         /*
1093          * Do a SBP-2 fetch agent reset
1094          */
1095         sbp2_agent_reset(scsi_id, 1);
1096
1097         /*
1098          * Get the max speed and packet size that we can use
1099          */
1100         sbp2_max_speed_and_size(scsi_id);
1101
1102         /* Add this device to the scsi layer now */
1103         error = scsi_add_device(scsi_id->scsi_host, 0, scsi_id->ud->id, 0);
1104         if (error) {
1105                 SBP2_ERR("scsi_add_device failed");
1106                 sbp2_logout_device(scsi_id);
1107                 sbp2_remove_device(scsi_id);
1108                 return error;
1109         }
1110
1111         return 0;
1112
1113 alloc_fail:
1114         SBP2_ERR("Could not allocate memory for scsi_id");
1115         sbp2_remove_device(scsi_id);
1116         return -ENOMEM;
1117 }
1118
1119 /*
1120  * This function removes an sbp2 device from the sbp2scsi_host_info struct.
1121  */
1122 static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id)
1123 {
1124         struct sbp2scsi_host_info *hi;
1125
1126         SBP2_DEBUG_ENTER();
1127
1128         if (!scsi_id)
1129                 return;
1130
1131         hi = scsi_id->hi;
1132
1133         /* This will remove our scsi device aswell */
1134         if (scsi_id->scsi_host) {
1135                 scsi_remove_host(scsi_id->scsi_host);
1136                 scsi_host_put(scsi_id->scsi_host);
1137         }
1138         flush_scheduled_work();
1139         sbp2util_remove_command_orb_pool(scsi_id);
1140
1141         list_del(&scsi_id->scsi_list);
1142
1143         if (scsi_id->login_response) {
1144                 pci_free_consistent(hi->host->pdev,
1145                                     sizeof(struct sbp2_login_response),
1146                                     scsi_id->login_response,
1147                                     scsi_id->login_response_dma);
1148                 SBP2_DMA_FREE("single login FIFO");
1149         }
1150
1151         if (scsi_id->login_orb) {
1152                 pci_free_consistent(hi->host->pdev,
1153                                     sizeof(struct sbp2_login_orb),
1154                                     scsi_id->login_orb,
1155                                     scsi_id->login_orb_dma);
1156                 SBP2_DMA_FREE("single login ORB");
1157         }
1158
1159         if (scsi_id->reconnect_orb) {
1160                 pci_free_consistent(hi->host->pdev,
1161                                     sizeof(struct sbp2_reconnect_orb),
1162                                     scsi_id->reconnect_orb,
1163                                     scsi_id->reconnect_orb_dma);
1164                 SBP2_DMA_FREE("single reconnect orb");
1165         }
1166
1167         if (scsi_id->logout_orb) {
1168                 pci_free_consistent(hi->host->pdev,
1169                                     sizeof(struct sbp2_logout_orb),
1170                                     scsi_id->logout_orb,
1171                                     scsi_id->logout_orb_dma);
1172                 SBP2_DMA_FREE("single logout orb");
1173         }
1174
1175         if (scsi_id->query_logins_orb) {
1176                 pci_free_consistent(hi->host->pdev,
1177                                     sizeof(struct sbp2_query_logins_orb),
1178                                     scsi_id->query_logins_orb,
1179                                     scsi_id->query_logins_orb_dma);
1180                 SBP2_DMA_FREE("single query logins orb");
1181         }
1182
1183         if (scsi_id->query_logins_response) {
1184                 pci_free_consistent(hi->host->pdev,
1185                                     sizeof(struct sbp2_query_logins_response),
1186                                     scsi_id->query_logins_response,
1187                                     scsi_id->query_logins_response_dma);
1188                 SBP2_DMA_FREE("single query logins data");
1189         }
1190
1191         if (scsi_id->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
1192                 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
1193                                           scsi_id->status_fifo_addr);
1194
1195         scsi_id->ud->device.driver_data = NULL;
1196
1197         if (hi)
1198                 module_put(hi->host->driver->owner);
1199
1200         SBP2_DEBUG("SBP-2 device removed, SCSI ID = %d", scsi_id->ud->id);
1201
1202         kfree(scsi_id);
1203 }
1204
1205 #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1206 /*
1207  * This function deals with physical dma write requests (for adapters that do not support
1208  * physical dma in hardware). Mostly just here for debugging...
1209  */
1210 static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1211                                      int destid, quadlet_t *data, u64 addr,
1212                                      size_t length, u16 flags)
1213 {
1214
1215         /*
1216          * Manually put the data in the right place.
1217          */
1218         memcpy(bus_to_virt((u32) addr), data, length);
1219         sbp2util_packet_dump(data, length, "sbp2 phys dma write by device",
1220                              (u32) addr);
1221         return RCODE_COMPLETE;
1222 }
1223
1224 /*
1225  * This function deals with physical dma read requests (for adapters that do not support
1226  * physical dma in hardware). Mostly just here for debugging...
1227  */
1228 static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1229                                     quadlet_t *data, u64 addr, size_t length,
1230                                     u16 flags)
1231 {
1232
1233         /*
1234          * Grab data from memory and send a read response.
1235          */
1236         memcpy(data, bus_to_virt((u32) addr), length);
1237         sbp2util_packet_dump(data, length, "sbp2 phys dma read by device",
1238                              (u32) addr);
1239         return RCODE_COMPLETE;
1240 }
1241 #endif
1242
1243 /**************************************
1244  * SBP-2 protocol related section
1245  **************************************/
1246
1247 /*
1248  * This function queries the device for the maximum concurrent logins it
1249  * supports.
1250  */
1251 static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
1252 {
1253         struct sbp2scsi_host_info *hi = scsi_id->hi;
1254         quadlet_t data[2];
1255         int max_logins;
1256         int active_logins;
1257
1258         SBP2_DEBUG_ENTER();
1259
1260         scsi_id->query_logins_orb->reserved1 = 0x0;
1261         scsi_id->query_logins_orb->reserved2 = 0x0;
1262
1263         scsi_id->query_logins_orb->query_response_lo = scsi_id->query_logins_response_dma;
1264         scsi_id->query_logins_orb->query_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1265
1266         scsi_id->query_logins_orb->lun_misc = ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1267         scsi_id->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1268         scsi_id->query_logins_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
1269
1270         scsi_id->query_logins_orb->reserved_resp_length =
1271                 ORB_SET_QUERY_LOGINS_RESP_LENGTH(sizeof(struct sbp2_query_logins_response));
1272
1273         scsi_id->query_logins_orb->status_fifo_hi =
1274                 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1275         scsi_id->query_logins_orb->status_fifo_lo =
1276                 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
1277
1278         sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb));
1279
1280         sbp2util_packet_dump(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb),
1281                              "sbp2 query logins orb", scsi_id->query_logins_orb_dma);
1282
1283         memset(scsi_id->query_logins_response, 0, sizeof(struct sbp2_query_logins_response));
1284
1285         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1286         data[1] = scsi_id->query_logins_orb_dma;
1287         sbp2util_cpu_to_be32_buffer(data, 8);
1288
1289         hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
1290
1291         if (sbp2util_access_timeout(scsi_id, 2*HZ)) {
1292                 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
1293                 return -EIO;
1294         }
1295
1296         if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
1297                 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
1298                 return -EIO;
1299         }
1300
1301         if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1302                 SBP2_INFO("Error querying logins to SBP-2 device - failed");
1303                 return -EIO;
1304         }
1305
1306         sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
1307
1308         SBP2_DEBUG("length_max_logins = %x",
1309                    (unsigned int)scsi_id->query_logins_response->length_max_logins);
1310
1311         max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
1312         SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
1313
1314         active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
1315         SBP2_INFO("Number of active logins: %d", active_logins);
1316
1317         if (active_logins >= max_logins) {
1318                 return -EIO;
1319         }
1320
1321         return 0;
1322 }
1323
1324 /*
1325  * This function is called in order to login to a particular SBP-2 device,
1326  * after a bus reset.
1327  */
1328 static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
1329 {
1330         struct sbp2scsi_host_info *hi = scsi_id->hi;
1331         quadlet_t data[2];
1332
1333         SBP2_DEBUG_ENTER();
1334
1335         if (!scsi_id->login_orb) {
1336                 SBP2_DEBUG("%s: login_orb not alloc'd!", __FUNCTION__);
1337                 return -EIO;
1338         }
1339
1340         if (!exclusive_login) {
1341                 if (sbp2_query_logins(scsi_id)) {
1342                         SBP2_INFO("Device does not support any more concurrent logins");
1343                         return -EIO;
1344                 }
1345         }
1346
1347         /* Set-up login ORB, assume no password */
1348         scsi_id->login_orb->password_hi = 0;
1349         scsi_id->login_orb->password_lo = 0;
1350
1351         scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
1352         scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1353
1354         scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
1355         scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0);   /* One second reconnect time */
1356         scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(exclusive_login);     /* Exclusive access to device */
1357         scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1);      /* Notify us of login complete */
1358         scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
1359
1360         scsi_id->login_orb->passwd_resp_lengths =
1361                 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
1362
1363         scsi_id->login_orb->status_fifo_hi =
1364                 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1365         scsi_id->login_orb->status_fifo_lo =
1366                 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
1367
1368         sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
1369
1370         sbp2util_packet_dump(scsi_id->login_orb, sizeof(struct sbp2_login_orb),
1371                              "sbp2 login orb", scsi_id->login_orb_dma);
1372
1373         memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
1374
1375         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1376         data[1] = scsi_id->login_orb_dma;
1377         sbp2util_cpu_to_be32_buffer(data, 8);
1378
1379         hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
1380
1381         /*
1382          * Wait for login status (up to 20 seconds)...
1383          */
1384         if (sbp2util_access_timeout(scsi_id, 20*HZ)) {
1385                 SBP2_ERR("Error logging into SBP-2 device - timed out");
1386                 return -EIO;
1387         }
1388
1389         /*
1390          * Sanity. Make sure status returned matches login orb.
1391          */
1392         if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
1393                 SBP2_ERR("Error logging into SBP-2 device - timed out");
1394                 return -EIO;
1395         }
1396
1397         if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1398                 SBP2_ERR("Error logging into SBP-2 device - failed");
1399                 return -EIO;
1400         }
1401
1402         /*
1403          * Byte swap the login response, for use when reconnecting or
1404          * logging out.
1405          */
1406         sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
1407
1408         /*
1409          * Grab our command block agent address from the login response.
1410          */
1411         SBP2_DEBUG("command_block_agent_hi = %x",
1412                    (unsigned int)scsi_id->login_response->command_block_agent_hi);
1413         SBP2_DEBUG("command_block_agent_lo = %x",
1414                    (unsigned int)scsi_id->login_response->command_block_agent_lo);
1415
1416         scsi_id->sbp2_command_block_agent_addr =
1417                 ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
1418         scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
1419         scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
1420
1421         SBP2_INFO("Logged into SBP-2 device");
1422         return 0;
1423 }
1424
1425 /*
1426  * This function is called in order to logout from a particular SBP-2
1427  * device, usually called during driver unload.
1428  */
1429 static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
1430 {
1431         struct sbp2scsi_host_info *hi = scsi_id->hi;
1432         quadlet_t data[2];
1433         int error;
1434
1435         SBP2_DEBUG_ENTER();
1436
1437         /*
1438          * Set-up logout ORB
1439          */
1440         scsi_id->logout_orb->reserved1 = 0x0;
1441         scsi_id->logout_orb->reserved2 = 0x0;
1442         scsi_id->logout_orb->reserved3 = 0x0;
1443         scsi_id->logout_orb->reserved4 = 0x0;
1444
1445         scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1446         scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1447
1448         /* Notify us when complete */
1449         scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1450
1451         scsi_id->logout_orb->reserved5 = 0x0;
1452         scsi_id->logout_orb->status_fifo_hi =
1453                 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1454         scsi_id->logout_orb->status_fifo_lo =
1455                 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
1456
1457         /*
1458          * Byte swap ORB if necessary
1459          */
1460         sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
1461
1462         sbp2util_packet_dump(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb),
1463                              "sbp2 logout orb", scsi_id->logout_orb_dma);
1464
1465         /*
1466          * Ok, let's write to the target's management agent register
1467          */
1468         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1469         data[1] = scsi_id->logout_orb_dma;
1470         sbp2util_cpu_to_be32_buffer(data, 8);
1471
1472         error = hpsb_node_write(scsi_id->ne,
1473                                 scsi_id->sbp2_management_agent_addr, data, 8);
1474         if (error)
1475                 return error;
1476
1477         /* Wait for device to logout...1 second. */
1478         if (sbp2util_access_timeout(scsi_id, HZ))
1479                 return -EIO;
1480
1481         SBP2_INFO("Logged out of SBP-2 device");
1482         return 0;
1483 }
1484
1485 /*
1486  * This function is called in order to reconnect to a particular SBP-2
1487  * device, after a bus reset.
1488  */
1489 static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
1490 {
1491         struct sbp2scsi_host_info *hi = scsi_id->hi;
1492         quadlet_t data[2];
1493         int error;
1494
1495         SBP2_DEBUG_ENTER();
1496
1497         /*
1498          * Set-up reconnect ORB
1499          */
1500         scsi_id->reconnect_orb->reserved1 = 0x0;
1501         scsi_id->reconnect_orb->reserved2 = 0x0;
1502         scsi_id->reconnect_orb->reserved3 = 0x0;
1503         scsi_id->reconnect_orb->reserved4 = 0x0;
1504
1505         scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1506         scsi_id->reconnect_orb->login_ID_misc |=
1507                 ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1508
1509         /* Notify us when complete */
1510         scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1511
1512         scsi_id->reconnect_orb->reserved5 = 0x0;
1513         scsi_id->reconnect_orb->status_fifo_hi =
1514                 ORB_SET_STATUS_FIFO_HI(scsi_id->status_fifo_addr, hi->host->node_id);
1515         scsi_id->reconnect_orb->status_fifo_lo =
1516                 ORB_SET_STATUS_FIFO_LO(scsi_id->status_fifo_addr);
1517
1518         /*
1519          * Byte swap ORB if necessary
1520          */
1521         sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
1522
1523         sbp2util_packet_dump(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb),
1524                              "sbp2 reconnect orb", scsi_id->reconnect_orb_dma);
1525
1526         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1527         data[1] = scsi_id->reconnect_orb_dma;
1528         sbp2util_cpu_to_be32_buffer(data, 8);
1529
1530         error = hpsb_node_write(scsi_id->ne,
1531                                 scsi_id->sbp2_management_agent_addr, data, 8);
1532         if (error)
1533                 return error;
1534
1535         /*
1536          * Wait for reconnect status (up to 1 second)...
1537          */
1538         if (sbp2util_access_timeout(scsi_id, HZ)) {
1539                 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
1540                 return -EIO;
1541         }
1542
1543         /*
1544          * Sanity. Make sure status returned matches reconnect orb.
1545          */
1546         if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
1547                 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
1548                 return -EIO;
1549         }
1550
1551         if (STATUS_TEST_RDS(scsi_id->status_block.ORB_offset_hi_misc)) {
1552                 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
1553                 return -EIO;
1554         }
1555
1556         SBP2_INFO("Reconnected to SBP-2 device");
1557         return 0;
1558 }
1559
1560 /*
1561  * This function is called in order to set the busy timeout (number of
1562  * retries to attempt) on the sbp2 device.
1563  */
1564 static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
1565 {
1566         quadlet_t data;
1567
1568         SBP2_DEBUG_ENTER();
1569
1570         data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
1571         if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
1572                 SBP2_ERR("%s error", __FUNCTION__);
1573         return 0;
1574 }
1575
1576 /*
1577  * This function is called to parse sbp2 device's config rom unit
1578  * directory. Used to determine things like sbp2 management agent offset,
1579  * and command set used (SCSI or RBC).
1580  */
1581 static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
1582                                       struct unit_directory *ud)
1583 {
1584         struct csr1212_keyval *kv;
1585         struct csr1212_dentry *dentry;
1586         u64 management_agent_addr;
1587         u32 command_set_spec_id, command_set, unit_characteristics,
1588             firmware_revision;
1589         unsigned workarounds;
1590         int i;
1591
1592         SBP2_DEBUG_ENTER();
1593
1594         management_agent_addr = 0x0;
1595         command_set_spec_id = 0x0;
1596         command_set = 0x0;
1597         unit_characteristics = 0x0;
1598         firmware_revision = 0x0;
1599
1600         /* Handle different fields in the unit directory, based on keys */
1601         csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1602                 switch (kv->key.id) {
1603                 case CSR1212_KV_ID_DEPENDENT_INFO:
1604                         if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) {
1605                                 /* Save off the management agent address */
1606                                 management_agent_addr =
1607                                     CSR1212_REGISTER_SPACE_BASE +
1608                                     (kv->value.csr_offset << 2);
1609
1610                                 SBP2_DEBUG("sbp2_management_agent_addr = %x",
1611                                            (unsigned int)management_agent_addr);
1612                         } else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
1613                                 scsi_id->sbp2_lun =
1614                                     ORB_SET_LUN(kv->value.immediate);
1615                         }
1616                         break;
1617
1618                 case SBP2_COMMAND_SET_SPEC_ID_KEY:
1619                         /* Command spec organization */
1620                         command_set_spec_id = kv->value.immediate;
1621                         SBP2_DEBUG("sbp2_command_set_spec_id = %x",
1622                                    (unsigned int)command_set_spec_id);
1623                         break;
1624
1625                 case SBP2_COMMAND_SET_KEY:
1626                         /* Command set used by sbp2 device */
1627                         command_set = kv->value.immediate;
1628                         SBP2_DEBUG("sbp2_command_set = %x",
1629                                    (unsigned int)command_set);
1630                         break;
1631
1632                 case SBP2_UNIT_CHARACTERISTICS_KEY:
1633                         /*
1634                          * Unit characterisitcs (orb related stuff
1635                          * that I'm not yet paying attention to)
1636                          */
1637                         unit_characteristics = kv->value.immediate;
1638                         SBP2_DEBUG("sbp2_unit_characteristics = %x",
1639                                    (unsigned int)unit_characteristics);
1640                         break;
1641
1642                 case SBP2_FIRMWARE_REVISION_KEY:
1643                         /* Firmware revision */
1644                         firmware_revision = kv->value.immediate;
1645                         SBP2_DEBUG("sbp2_firmware_revision = %x",
1646                                    (unsigned int)firmware_revision);
1647                         break;
1648
1649                 default:
1650                         break;
1651                 }
1652         }
1653
1654         workarounds = sbp2_default_workarounds;
1655
1656         if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1657                 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
1658                         if (sbp2_workarounds_table[i].firmware_revision &&
1659                             sbp2_workarounds_table[i].firmware_revision !=
1660                             (firmware_revision & 0xffff00))
1661                                 continue;
1662                         if (sbp2_workarounds_table[i].model_id &&
1663                             sbp2_workarounds_table[i].model_id != ud->model_id)
1664                                 continue;
1665                         workarounds |= sbp2_workarounds_table[i].workarounds;
1666                         break;
1667                 }
1668
1669         if (workarounds)
1670                 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1671                           "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1672                           " model_id 0x%06x)",
1673                           NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
1674                           workarounds, firmware_revision,
1675                           ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1676                           ud->model_id);
1677
1678         /* We would need one SCSI host template for each target to adjust
1679          * max_sectors on the fly, therefore warn only. */
1680         if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
1681             (max_sectors * 512) > (128 * 1024))
1682                 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
1683                           "max transfer size. WARNING: Current max_sectors "
1684                           "setting is larger than 128KB (%d sectors)",
1685                           NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
1686                           max_sectors);
1687
1688         /* If this is a logical unit directory entry, process the parent
1689          * to get the values. */
1690         if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
1691                 struct unit_directory *parent_ud =
1692                         container_of(ud->device.parent, struct unit_directory, device);
1693                 sbp2_parse_unit_directory(scsi_id, parent_ud);
1694         } else {
1695                 scsi_id->sbp2_management_agent_addr = management_agent_addr;
1696                 scsi_id->sbp2_command_set_spec_id = command_set_spec_id;
1697                 scsi_id->sbp2_command_set = command_set;
1698                 scsi_id->sbp2_unit_characteristics = unit_characteristics;
1699                 scsi_id->sbp2_firmware_revision = firmware_revision;
1700                 scsi_id->workarounds = workarounds;
1701                 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
1702                         scsi_id->sbp2_lun = ORB_SET_LUN(ud->lun);
1703         }
1704 }
1705
1706 #define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1707
1708 /*
1709  * This function is called in order to determine the max speed and packet
1710  * size we can use in our ORBs. Note, that we (the driver and host) only
1711  * initiate the transaction. The SBP-2 device actually transfers the data
1712  * (by reading from the DMA area we tell it). This means that the SBP-2
1713  * device decides the actual maximum data it can transfer. We just tell it
1714  * the speed that it needs to use, and the max_rec the host supports, and
1715  * it takes care of the rest.
1716  */
1717 static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
1718 {
1719         struct sbp2scsi_host_info *hi = scsi_id->hi;
1720         u8 payload;
1721
1722         SBP2_DEBUG_ENTER();
1723
1724         scsi_id->speed_code =
1725             hi->host->speed[NODEID_TO_NODE(scsi_id->ne->nodeid)];
1726
1727         /* Bump down our speed if the user requested it */
1728         if (scsi_id->speed_code > max_speed) {
1729                 scsi_id->speed_code = max_speed;
1730                 SBP2_INFO("Reducing speed to %s", hpsb_speedto_str[max_speed]);
1731         }
1732
1733         /* Payload size is the lesser of what our speed supports and what
1734          * our host supports.  */
1735         payload = min(sbp2_speedto_max_payload[scsi_id->speed_code],
1736                       (u8) (hi->host->csr.max_rec - 1));
1737
1738         /* If physical DMA is off, work around limitation in ohci1394:
1739          * packet size must not exceed PAGE_SIZE */
1740         if (scsi_id->ne->host->low_addr_space < (1ULL << 32))
1741                 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1742                        payload)
1743                         payload--;
1744
1745         SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
1746                   NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
1747                   hpsb_speedto_str[scsi_id->speed_code],
1748                   SBP2_PAYLOAD_TO_BYTES(payload));
1749
1750         scsi_id->max_payload_size = payload;
1751         return 0;
1752 }
1753
1754 /*
1755  * This function is called in order to perform a SBP-2 agent reset.
1756  */
1757 static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
1758 {
1759         quadlet_t data;
1760         u64 addr;
1761         int retval;
1762         unsigned long flags;
1763
1764         SBP2_DEBUG_ENTER();
1765
1766         cancel_delayed_work(&scsi_id->protocol_work);
1767         if (wait)
1768                 flush_scheduled_work();
1769
1770         data = ntohl(SBP2_AGENT_RESET_DATA);
1771         addr = scsi_id->sbp2_command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
1772
1773         if (wait)
1774                 retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
1775         else
1776                 retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
1777
1778         if (retval < 0) {
1779                 SBP2_ERR("hpsb_node_write failed.\n");
1780                 return -EIO;
1781         }
1782
1783         /*
1784          * Need to make sure orb pointer is written on next command
1785          */
1786         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
1787         scsi_id->last_orb = NULL;
1788         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
1789
1790         return 0;
1791 }
1792
1793 static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1794                                      struct sbp2scsi_host_info *hi,
1795                                      struct sbp2_command_info *command,
1796                                      unsigned int scsi_use_sg,
1797                                      struct scatterlist *sgpnt,
1798                                      u32 orb_direction,
1799                                      enum dma_data_direction dma_dir)
1800 {
1801         command->dma_dir = dma_dir;
1802         orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1803         orb->misc |= ORB_SET_DIRECTION(orb_direction);
1804
1805         /* Special case if only one element (and less than 64KB in size) */
1806         if ((scsi_use_sg == 1) &&
1807             (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1808
1809                 SBP2_DEBUG("Only one s/g element");
1810                 command->dma_size = sgpnt[0].length;
1811                 command->dma_type = CMD_DMA_PAGE;
1812                 command->cmd_dma = pci_map_page(hi->host->pdev,
1813                                                 sgpnt[0].page,
1814                                                 sgpnt[0].offset,
1815                                                 command->dma_size,
1816                                                 command->dma_dir);
1817                 SBP2_DMA_ALLOC("single page scatter element");
1818
1819                 orb->data_descriptor_lo = command->cmd_dma;
1820                 orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
1821
1822         } else {
1823                 struct sbp2_unrestricted_page_table *sg_element =
1824                                         &command->scatter_gather_element[0];
1825                 u32 sg_count, sg_len;
1826                 dma_addr_t sg_addr;
1827                 int i, count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg,
1828                                           dma_dir);
1829
1830                 SBP2_DMA_ALLOC("scatter list");
1831
1832                 command->dma_size = scsi_use_sg;
1833                 command->sge_buffer = sgpnt;
1834
1835                 /* use page tables (s/g) */
1836                 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1837                 orb->data_descriptor_lo = command->sge_dma;
1838
1839                 /*
1840                  * Loop through and fill out our sbp-2 page tables
1841                  * (and split up anything too large)
1842                  */
1843                 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1844                         sg_len = sg_dma_len(sgpnt);
1845                         sg_addr = sg_dma_address(sgpnt);
1846                         while (sg_len) {
1847                                 sg_element[sg_count].segment_base_lo = sg_addr;
1848                                 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1849                                         sg_element[sg_count].length_segment_base_hi =
1850                                                 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1851                                         sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1852                                         sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1853                                 } else {
1854                                         sg_element[sg_count].length_segment_base_hi =
1855                                                 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1856                                         sg_len = 0;
1857                                 }
1858                                 sg_count++;
1859                         }
1860                 }
1861
1862                 /* Number of page table (s/g) elements */
1863                 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1864
1865                 sbp2util_packet_dump(sg_element,
1866                                      (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1867                                      "sbp2 s/g list", command->sge_dma);
1868
1869                 /* Byte swap page tables if necessary */
1870                 sbp2util_cpu_to_be32_buffer(sg_element,
1871                                             (sizeof(struct sbp2_unrestricted_page_table)) *
1872                                             sg_count);
1873         }
1874 }
1875
1876 static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
1877                                         struct sbp2scsi_host_info *hi,
1878                                         struct sbp2_command_info *command,
1879                                         struct scatterlist *sgpnt,
1880                                         u32 orb_direction,
1881                                         unsigned int scsi_request_bufflen,
1882                                         void *scsi_request_buffer,
1883                                         enum dma_data_direction dma_dir)
1884 {
1885         command->dma_dir = dma_dir;
1886         command->dma_size = scsi_request_bufflen;
1887         command->dma_type = CMD_DMA_SINGLE;
1888         command->cmd_dma = pci_map_single(hi->host->pdev, scsi_request_buffer,
1889                                           command->dma_size, command->dma_dir);
1890         orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1891         orb->misc |= ORB_SET_DIRECTION(orb_direction);
1892
1893         SBP2_DMA_ALLOC("single bulk");
1894
1895         /*
1896          * Handle case where we get a command w/o s/g enabled (but
1897          * check for transfers larger than 64K)
1898          */
1899         if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1900
1901                 orb->data_descriptor_lo = command->cmd_dma;
1902                 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1903
1904         } else {
1905                 struct sbp2_unrestricted_page_table *sg_element =
1906                         &command->scatter_gather_element[0];
1907                 u32 sg_count, sg_len;
1908                 dma_addr_t sg_addr;
1909
1910                 /*
1911                  * Need to turn this into page tables, since the
1912                  * buffer is too large.
1913                  */
1914                 orb->data_descriptor_lo = command->sge_dma;
1915
1916                 /* Use page tables (s/g) */
1917                 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1918
1919                 /*
1920                  * fill out our sbp-2 page tables (and split up
1921                  * the large buffer)
1922                  */
1923                 sg_count = 0;
1924                 sg_len = scsi_request_bufflen;
1925                 sg_addr = command->cmd_dma;
1926                 while (sg_len) {
1927                         sg_element[sg_count].segment_base_lo = sg_addr;
1928                         if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1929                                 sg_element[sg_count].length_segment_base_hi =
1930                                         PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1931                                 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1932                                 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1933                         } else {
1934                                 sg_element[sg_count].length_segment_base_hi =
1935                                         PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1936                                 sg_len = 0;
1937                         }
1938                         sg_count++;
1939                 }
1940
1941                 /* Number of page table (s/g) elements */
1942                 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1943
1944                 sbp2util_packet_dump(sg_element,
1945                                      (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1946                                      "sbp2 s/g list", command->sge_dma);
1947
1948                 /* Byte swap page tables if necessary */
1949                 sbp2util_cpu_to_be32_buffer(sg_element,
1950                                             (sizeof(struct sbp2_unrestricted_page_table)) *
1951                                              sg_count);
1952         }
1953 }
1954
1955 /*
1956  * This function is called to create the actual command orb and s/g list
1957  * out of the scsi command itself.
1958  */
1959 static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
1960                                     struct sbp2_command_info *command,
1961                                     unchar *scsi_cmd,
1962                                     unsigned int scsi_use_sg,
1963                                     unsigned int scsi_request_bufflen,
1964                                     void *scsi_request_buffer,
1965                                     enum dma_data_direction dma_dir)
1966 {
1967         struct sbp2scsi_host_info *hi = scsi_id->hi;
1968         struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
1969         struct sbp2_command_orb *command_orb = &command->command_orb;
1970         u32 orb_direction;
1971
1972         /*
1973          * Set-up our command ORB..
1974          *
1975          * NOTE: We're doing unrestricted page tables (s/g), as this is
1976          * best performance (at least with the devices I have). This means
1977          * that data_size becomes the number of s/g elements, and
1978          * page_size should be zero (for unrestricted).
1979          */
1980         command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1981         command_orb->next_ORB_lo = 0x0;
1982         command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
1983         command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
1984         command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
1985
1986         if (dma_dir == DMA_NONE)
1987                 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
1988         else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
1989                 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
1990         else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
1991                 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
1992         else {
1993                 SBP2_INFO("Falling back to DMA_NONE");
1994                 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
1995         }
1996
1997         /* Set-up our pagetable stuff */
1998         if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
1999                 SBP2_DEBUG("No data transfer");
2000                 command_orb->data_descriptor_hi = 0x0;
2001                 command_orb->data_descriptor_lo = 0x0;
2002                 command_orb->misc |= ORB_SET_DIRECTION(1);
2003         } else if (scsi_use_sg) {
2004                 SBP2_DEBUG("Use scatter/gather");
2005                 sbp2_prep_command_orb_sg(command_orb, hi, command, scsi_use_sg,
2006                                          sgpnt, orb_direction, dma_dir);
2007         } else {
2008                 SBP2_DEBUG("No scatter/gather");
2009                 sbp2_prep_command_orb_no_sg(command_orb, hi, command, sgpnt,
2010                                             orb_direction, scsi_request_bufflen,
2011                                             scsi_request_buffer, dma_dir);
2012         }
2013
2014         /* Byte swap command ORB if necessary */
2015         sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
2016
2017         /* Put our scsi command in the command ORB */
2018         memset(command_orb->cdb, 0, 12);
2019         memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
2020 }
2021
2022 /*
2023  * This function is called in order to begin a regular SBP-2 command.
2024  */
2025 static void sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
2026                                  struct sbp2_command_info *command)
2027 {
2028         struct sbp2scsi_host_info *hi = scsi_id->hi;
2029         struct sbp2_command_orb *command_orb = &command->command_orb;
2030         struct sbp2_command_orb *last_orb;
2031         dma_addr_t last_orb_dma;
2032         u64 addr = scsi_id->sbp2_command_block_agent_addr;
2033         quadlet_t data[2];
2034         size_t length;
2035         unsigned long flags;
2036
2037         outstanding_orb_incr;
2038         SBP2_ORB_DEBUG("sending command orb %p, total orbs = %x",
2039                        command_orb, global_outstanding_command_orbs);
2040
2041         pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
2042                                        sizeof(struct sbp2_command_orb),
2043                                        PCI_DMA_TODEVICE);
2044         pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
2045                                        sizeof(command->scatter_gather_element),
2046                                        PCI_DMA_BIDIRECTIONAL);
2047         /*
2048          * Check to see if there are any previous orbs to use
2049          */
2050         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2051         last_orb = scsi_id->last_orb;
2052         last_orb_dma = scsi_id->last_orb_dma;
2053         if (!last_orb) {
2054                 /*
2055                  * last_orb == NULL means: We know that the target's fetch agent
2056                  * is not active right now.
2057                  */
2058                 addr += SBP2_ORB_POINTER_OFFSET;
2059                 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
2060                 data[1] = command->command_orb_dma;
2061                 sbp2util_cpu_to_be32_buffer(data, 8);
2062                 length = 8;
2063         } else {
2064                 /*
2065                  * last_orb != NULL means: We know that the target's fetch agent
2066                  * is (very probably) not dead or in reset state right now.
2067                  * We have an ORB already sent that we can append a new one to.
2068                  * The target's fetch agent may or may not have read this
2069                  * previous ORB yet.
2070                  */
2071                 pci_dma_sync_single_for_cpu(hi->host->pdev, last_orb_dma,
2072                                             sizeof(struct sbp2_command_orb),
2073                                             PCI_DMA_TODEVICE);
2074                 last_orb->next_ORB_lo = cpu_to_be32(command->command_orb_dma);
2075                 wmb();
2076                 /* Tells hardware that this pointer is valid */
2077                 last_orb->next_ORB_hi = 0;
2078                 pci_dma_sync_single_for_device(hi->host->pdev, last_orb_dma,
2079                                                sizeof(struct sbp2_command_orb),
2080                                                PCI_DMA_TODEVICE);
2081                 addr += SBP2_DOORBELL_OFFSET;
2082                 data[0] = 0;
2083                 length = 4;
2084         }
2085         scsi_id->last_orb = command_orb;
2086         scsi_id->last_orb_dma = command->command_orb_dma;
2087         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
2088
2089         SBP2_ORB_DEBUG("write to %s register, command orb %p",
2090                         last_orb ? "DOORBELL" : "ORB_POINTER", command_orb);
2091         if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length)) {
2092                 /*
2093                  * sbp2util_node_write_no_wait failed. We certainly ran out
2094                  * of transaction labels, perhaps just because there were no
2095                  * context switches which gave khpsbpkt a chance to collect
2096                  * free tlabels. Try again in non-atomic context. If necessary,
2097                  * the workqueue job will sleep to guaranteedly get a tlabel.
2098                  * We do not accept new commands until the job is over.
2099                  */
2100                 scsi_block_requests(scsi_id->scsi_host);
2101                 PREPARE_DELAYED_WORK(&scsi_id->protocol_work,
2102                              last_orb ? sbp2util_write_doorbell:
2103                                         sbp2util_write_orb_pointer);
2104                 schedule_delayed_work(&scsi_id->protocol_work, 0);
2105         }
2106 }
2107
2108 /*
2109  * This function is called in order to begin a regular SBP-2 command.
2110  */
2111 static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
2112                              struct scsi_cmnd *SCpnt,
2113                              void (*done)(struct scsi_cmnd *))
2114 {
2115         unchar *cmd = (unchar *) SCpnt->cmnd;
2116         unsigned int request_bufflen = SCpnt->request_bufflen;
2117         struct sbp2_command_info *command;
2118
2119         SBP2_DEBUG_ENTER();
2120         SBP2_DEBUG("SCSI transfer size = %x", request_bufflen);
2121         SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
2122
2123         /*
2124          * Allocate a command orb and s/g structure
2125          */
2126         command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
2127         if (!command) {
2128                 return -EIO;
2129         }
2130
2131         /*
2132          * Now actually fill in the comamnd orb and sbp2 s/g list
2133          */
2134         sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
2135                                 request_bufflen, SCpnt->request_buffer,
2136                                 SCpnt->sc_data_direction);
2137
2138         sbp2util_packet_dump(&command->command_orb, sizeof(struct sbp2_command_orb),
2139                              "sbp2 command orb", command->command_orb_dma);
2140
2141         /*
2142          * Link up the orb, and ring the doorbell if needed
2143          */
2144         sbp2_link_orb_command(scsi_id, command);
2145
2146         return 0;
2147 }
2148
2149 /*
2150  * Translates SBP-2 status into SCSI sense data for check conditions
2151  */
2152 static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
2153 {
2154         SBP2_DEBUG_ENTER();
2155
2156         /*
2157          * Ok, it's pretty ugly...   ;-)
2158          */
2159         sense_data[0] = 0x70;
2160         sense_data[1] = 0x0;
2161         sense_data[2] = sbp2_status[9];
2162         sense_data[3] = sbp2_status[12];
2163         sense_data[4] = sbp2_status[13];
2164         sense_data[5] = sbp2_status[14];
2165         sense_data[6] = sbp2_status[15];
2166         sense_data[7] = 10;
2167         sense_data[8] = sbp2_status[16];
2168         sense_data[9] = sbp2_status[17];
2169         sense_data[10] = sbp2_status[18];
2170         sense_data[11] = sbp2_status[19];
2171         sense_data[12] = sbp2_status[10];
2172         sense_data[13] = sbp2_status[11];
2173         sense_data[14] = sbp2_status[20];
2174         sense_data[15] = sbp2_status[21];
2175
2176         return sbp2_status[8] & 0x3f;   /* return scsi status */
2177 }
2178
2179 /*
2180  * This function deals with status writes from the SBP-2 device
2181  */
2182 static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
2183                                     int destid, quadlet_t *data, u64 addr,
2184                                     size_t length, u16 fl)
2185 {
2186         struct sbp2scsi_host_info *hi;
2187         struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
2188         struct scsi_cmnd *SCpnt = NULL;
2189         struct sbp2_status_block *sb;
2190         u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
2191         struct sbp2_command_info *command;
2192         unsigned long flags;
2193
2194         SBP2_DEBUG_ENTER();
2195
2196         sbp2util_packet_dump(data, length, "sbp2 status write by device", (u32)addr);
2197
2198         if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
2199                 SBP2_ERR("Wrong size of status block");
2200                 return RCODE_ADDRESS_ERROR;
2201         }
2202         if (unlikely(!host)) {
2203                 SBP2_ERR("host is NULL - this is bad!");
2204                 return RCODE_ADDRESS_ERROR;
2205         }
2206         hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
2207         if (unlikely(!hi)) {
2208                 SBP2_ERR("host info is NULL - this is bad!");
2209                 return RCODE_ADDRESS_ERROR;
2210         }
2211         /*
2212          * Find our scsi_id structure by looking at the status fifo address
2213          * written to by the sbp2 device.
2214          */
2215         list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
2216                 if (scsi_id_tmp->ne->nodeid == nodeid &&
2217                     scsi_id_tmp->status_fifo_addr == addr) {
2218                         scsi_id = scsi_id_tmp;
2219                         break;
2220                 }
2221         }
2222         if (unlikely(!scsi_id)) {
2223                 SBP2_ERR("scsi_id is NULL - device is gone?");
2224                 return RCODE_ADDRESS_ERROR;
2225         }
2226
2227         /*
2228          * Put response into scsi_id status fifo buffer. The first two bytes
2229          * come in big endian bit order. Often the target writes only a
2230          * truncated status block, minimally the first two quadlets. The rest
2231          * is implied to be zeros.
2232          */
2233         sb = &scsi_id->status_block;
2234         memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
2235         memcpy(sb, data, length);
2236         sbp2util_be32_to_cpu_buffer(sb, 8);
2237
2238         /*
2239          * Ignore unsolicited status. Handle command ORB status.
2240          */
2241         if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
2242                 command = NULL;
2243         else
2244                 command = sbp2util_find_command_for_orb(scsi_id,
2245                                                         sb->ORB_offset_lo);
2246         if (command) {
2247                 SBP2_DEBUG("Found status for command ORB");
2248                 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2249                                             sizeof(struct sbp2_command_orb),
2250                                             PCI_DMA_TODEVICE);
2251                 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2252                                             sizeof(command->scatter_gather_element),
2253                                             PCI_DMA_BIDIRECTIONAL);
2254
2255                 SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
2256                 outstanding_orb_decr;
2257
2258                 /*
2259                  * Matched status with command, now grab scsi command pointers
2260                  * and check status.
2261                  */
2262                 /*
2263                  * FIXME: If the src field in the status is 1, the ORB DMA must
2264                  * not be reused until status for a subsequent ORB is received.
2265                  */
2266                 SCpnt = command->Current_SCpnt;
2267                 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2268                 sbp2util_mark_command_completed(scsi_id, command);
2269                 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
2270
2271                 if (SCpnt) {
2272                         u32 h = sb->ORB_offset_hi_misc;
2273                         u32 r = STATUS_GET_RESP(h);
2274
2275                         if (r != RESP_STATUS_REQUEST_COMPLETE) {
2276                                 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
2277                                           r, STATUS_GET_SBP_STATUS(h));
2278                                 scsi_status =
2279                                         r == RESP_STATUS_TRANSPORT_FAILURE ?
2280                                         SBP2_SCSI_STATUS_BUSY :
2281                                         SBP2_SCSI_STATUS_COMMAND_TERMINATED;
2282                         }
2283                         /*
2284                          * See if the target stored any scsi status information.
2285                          */
2286                         if (STATUS_GET_LEN(h) > 1) {
2287                                 SBP2_DEBUG("CHECK CONDITION");
2288                                 scsi_status = sbp2_status_to_sense_data(
2289                                         (unchar *)sb, SCpnt->sense_buffer);
2290                         }
2291                         /*
2292                          * Check to see if the dead bit is set. If so, we'll
2293                          * have to initiate a fetch agent reset.
2294                          */
2295                         if (STATUS_TEST_DEAD(h)) {
2296                                 SBP2_DEBUG("Dead bit set - "
2297                                            "initiating fetch agent reset");
2298                                 sbp2_agent_reset(scsi_id, 0);
2299                         }
2300                         SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
2301                 }
2302
2303                 /*
2304                  * Check here to see if there are no commands in-use. If there
2305                  * are none, we know that the fetch agent left the active state
2306                  * _and_ that we did not reactivate it yet. Therefore clear
2307                  * last_orb so that next time we write directly to the
2308                  * ORB_POINTER register. That way the fetch agent does not need
2309                  * to refetch the next_ORB.
2310                  */
2311                 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2312                 if (list_empty(&scsi_id->sbp2_command_orb_inuse))
2313                         scsi_id->last_orb = NULL;
2314                 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
2315
2316         } else {
2317                 /*
2318                  * It's probably a login/logout/reconnect status.
2319                  */
2320                 if ((sb->ORB_offset_lo == scsi_id->reconnect_orb_dma) ||
2321                     (sb->ORB_offset_lo == scsi_id->login_orb_dma) ||
2322                     (sb->ORB_offset_lo == scsi_id->query_logins_orb_dma) ||
2323                     (sb->ORB_offset_lo == scsi_id->logout_orb_dma)) {
2324                         scsi_id->access_complete = 1;
2325                         wake_up_interruptible(&access_wq);
2326                 }
2327         }
2328
2329         if (SCpnt) {
2330                 SBP2_DEBUG("Completing SCSI command");
2331                 sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
2332                                           command->Current_done);
2333                 SBP2_ORB_DEBUG("command orb completed");
2334         }
2335
2336         return RCODE_COMPLETE;
2337 }
2338
2339 /**************************************
2340  * SCSI interface related section
2341  **************************************/
2342
2343 /*
2344  * This routine is the main request entry routine for doing I/O. It is
2345  * called from the scsi stack directly.
2346  */
2347 static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
2348                                  void (*done)(struct scsi_cmnd *))
2349 {
2350         struct scsi_id_instance_data *scsi_id =
2351                 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2352         struct sbp2scsi_host_info *hi;
2353         int result = DID_NO_CONNECT << 16;
2354
2355         SBP2_DEBUG_ENTER();
2356 #if (CONFIG_IEEE1394_SBP2_DEBUG >= 2) || defined(CONFIG_IEEE1394_SBP2_PACKET_DUMP)
2357         scsi_print_command(SCpnt);
2358 #endif
2359
2360         if (!sbp2util_node_is_available(scsi_id))
2361                 goto done;
2362
2363         hi = scsi_id->hi;
2364
2365         if (!hi) {
2366                 SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
2367                 goto done;
2368         }
2369
2370         /*
2371          * Until we handle multiple luns, just return selection time-out
2372          * to any IO directed at non-zero LUNs
2373          */
2374         if (SCpnt->device->lun)
2375                 goto done;
2376
2377         /*
2378          * Check for request sense command, and handle it here
2379          * (autorequest sense)
2380          */
2381         if (SCpnt->cmnd[0] == REQUEST_SENSE) {
2382                 SBP2_DEBUG("REQUEST_SENSE");
2383                 memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
2384                 memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
2385                 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
2386                 return 0;
2387         }
2388
2389         /*
2390          * Check to see if we are in the middle of a bus reset.
2391          */
2392         if (!hpsb_node_entry_valid(scsi_id->ne)) {
2393                 SBP2_ERR("Bus reset in progress - rejecting command");
2394                 result = DID_BUS_BUSY << 16;
2395                 goto done;
2396         }
2397
2398         /*
2399          * Bidirectional commands are not yet implemented,
2400          * and unknown transfer direction not handled.
2401          */
2402         if (SCpnt->sc_data_direction == DMA_BIDIRECTIONAL) {
2403                 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
2404                 result = DID_ERROR << 16;
2405                 goto done;
2406         }
2407
2408         /*
2409          * Try and send our SCSI command
2410          */
2411         if (sbp2_send_command(scsi_id, SCpnt, done)) {
2412                 SBP2_ERR("Error sending SCSI command");
2413                 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
2414                                           SCpnt, done);
2415         }
2416         return 0;
2417
2418 done:
2419         SCpnt->result = result;
2420         done(SCpnt);
2421         return 0;
2422 }
2423
2424 /*
2425  * This function is called in order to complete all outstanding SBP-2
2426  * commands (in case of resets, etc.).
2427  */
2428 static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
2429                                            u32 status)
2430 {
2431         struct sbp2scsi_host_info *hi = scsi_id->hi;
2432         struct list_head *lh;
2433         struct sbp2_command_info *command;
2434         unsigned long flags;
2435
2436         SBP2_DEBUG_ENTER();
2437
2438         spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2439         while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
2440                 SBP2_DEBUG("Found pending command to complete");
2441                 lh = scsi_id->sbp2_command_orb_inuse.next;
2442                 command = list_entry(lh, struct sbp2_command_info, list);
2443                 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2444                                             sizeof(struct sbp2_command_orb),
2445                                             PCI_DMA_TODEVICE);
2446                 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2447                                             sizeof(command->scatter_gather_element),
2448                                             PCI_DMA_BIDIRECTIONAL);
2449                 sbp2util_mark_command_completed(scsi_id, command);
2450                 if (command->Current_SCpnt) {
2451                         command->Current_SCpnt->result = status << 16;
2452                         command->Current_done(command->Current_SCpnt);
2453                 }
2454         }
2455         spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
2456
2457         return;
2458 }
2459
2460 /*
2461  * This function is called in order to complete a regular SBP-2 command.
2462  *
2463  * This can be called in interrupt context.
2464  */
2465 static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
2466                                       u32 scsi_status, struct scsi_cmnd *SCpnt,
2467                                       void (*done)(struct scsi_cmnd *))
2468 {
2469         SBP2_DEBUG_ENTER();
2470
2471         /*
2472          * Sanity
2473          */
2474         if (!SCpnt) {
2475                 SBP2_ERR("SCpnt is NULL");
2476                 return;
2477         }
2478
2479         /*
2480          * Switch on scsi status
2481          */
2482         switch (scsi_status) {
2483         case SBP2_SCSI_STATUS_GOOD:
2484                 SCpnt->result = DID_OK << 16;
2485                 break;
2486
2487         case SBP2_SCSI_STATUS_BUSY:
2488                 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
2489                 SCpnt->result = DID_BUS_BUSY << 16;
2490                 break;
2491
2492         case SBP2_SCSI_STATUS_CHECK_CONDITION:
2493                 SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
2494                 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
2495 #if CONFIG_IEEE1394_SBP2_DEBUG >= 1
2496                 scsi_print_command(SCpnt);
2497                 scsi_print_sense(SBP2_DEVICE_NAME, SCpnt);
2498 #endif
2499                 break;
2500
2501         case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
2502                 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
2503                 SCpnt->result = DID_NO_CONNECT << 16;
2504                 scsi_print_command(SCpnt);
2505                 break;
2506
2507         case SBP2_SCSI_STATUS_CONDITION_MET:
2508         case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
2509         case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
2510                 SBP2_ERR("Bad SCSI status = %x", scsi_status);
2511                 SCpnt->result = DID_ERROR << 16;
2512                 scsi_print_command(SCpnt);
2513                 break;
2514
2515         default:
2516                 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
2517                 SCpnt->result = DID_ERROR << 16;
2518         }
2519
2520         /*
2521          * If a bus reset is in progress and there was an error, complete
2522          * the command as busy so that it will get retried.
2523          */
2524         if (!hpsb_node_entry_valid(scsi_id->ne)
2525             && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
2526                 SBP2_ERR("Completing command with busy (bus reset)");
2527                 SCpnt->result = DID_BUS_BUSY << 16;
2528         }
2529
2530         /*
2531          * Tell scsi stack that we're done with this command
2532          */
2533         done(SCpnt);
2534 }
2535
2536 static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
2537 {
2538         struct scsi_id_instance_data *scsi_id =
2539                 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2540
2541         scsi_id->sdev = sdev;
2542         sdev->allow_restart = 1;
2543
2544         if (scsi_id->workarounds & SBP2_WORKAROUND_INQUIRY_36)
2545                 sdev->inquiry_len = 36;
2546         return 0;
2547 }
2548
2549 static int sbp2scsi_slave_configure(struct scsi_device *sdev)
2550 {
2551         struct scsi_id_instance_data *scsi_id =
2552                 (struct scsi_id_instance_data *)sdev->host->hostdata[0];
2553
2554         blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
2555         sdev->use_10_for_rw = 1;
2556
2557         if (sdev->type == TYPE_DISK &&
2558             scsi_id->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
2559                 sdev->skip_ms_page_8 = 1;
2560         if (scsi_id->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
2561                 sdev->fix_capacity = 1;
2562         return 0;
2563 }
2564
2565 static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2566 {
2567         ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
2568         return;
2569 }
2570
2571 /*
2572  * Called by scsi stack when something has really gone wrong.  Usually
2573  * called when a command has timed-out for some reason.
2574  */
2575 static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2576 {
2577         struct scsi_id_instance_data *scsi_id =
2578                 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2579         struct sbp2scsi_host_info *hi = scsi_id->hi;
2580         struct sbp2_command_info *command;
2581         unsigned long flags;
2582
2583         SBP2_INFO("aborting sbp2 command");
2584         scsi_print_command(SCpnt);
2585
2586         if (sbp2util_node_is_available(scsi_id)) {
2587                 sbp2_agent_reset(scsi_id, 1);
2588
2589                 /* Return a matching command structure to the free pool. */
2590                 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
2591                 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
2592                 if (command) {
2593                         SBP2_DEBUG("Found command to abort");
2594                         pci_dma_sync_single_for_cpu(hi->host->pdev,
2595                                                     command->command_orb_dma,
2596                                                     sizeof(struct sbp2_command_orb),
2597                                                     PCI_DMA_TODEVICE);
2598                         pci_dma_sync_single_for_cpu(hi->host->pdev,
2599                                                     command->sge_dma,
2600                                                     sizeof(command->scatter_gather_element),
2601                                                     PCI_DMA_BIDIRECTIONAL);
2602                         sbp2util_mark_command_completed(scsi_id, command);
2603                         if (command->Current_SCpnt) {
2604                                 command->Current_SCpnt->result = DID_ABORT << 16;
2605                                 command->Current_done(command->Current_SCpnt);
2606                         }
2607                 }
2608                 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
2609
2610                 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
2611         }
2612
2613         return SUCCESS;
2614 }
2615
2616 /*
2617  * Called by scsi stack when something has really gone wrong.
2618  */
2619 static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
2620 {
2621         struct scsi_id_instance_data *scsi_id =
2622                 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2623
2624         SBP2_INFO("reset requested");
2625
2626         if (sbp2util_node_is_available(scsi_id)) {
2627                 SBP2_INFO("generating sbp2 fetch agent reset");
2628                 sbp2_agent_reset(scsi_id, 1);
2629         }
2630
2631         return SUCCESS;
2632 }
2633
2634 static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2635                                            struct device_attribute *attr,
2636                                            char *buf)
2637 {
2638         struct scsi_device *sdev;
2639         struct scsi_id_instance_data *scsi_id;
2640         int lun;
2641
2642         if (!(sdev = to_scsi_device(dev)))
2643                 return 0;
2644
2645         if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
2646                 return 0;
2647
2648         lun = ORB_SET_LUN(scsi_id->sbp2_lun);
2649
2650         return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
2651                        scsi_id->ud->id, lun);
2652 }
2653
2654 MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2655 MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2656 MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2657 MODULE_LICENSE("GPL");
2658
2659 static int sbp2_module_init(void)
2660 {
2661         int ret;
2662
2663         SBP2_DEBUG_ENTER();
2664
2665         /* Module load debug option to force one command at a time (serializing I/O) */
2666         if (serialize_io) {
2667                 scsi_driver_template.can_queue = 1;
2668                 scsi_driver_template.cmd_per_lun = 1;
2669         }
2670
2671         if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
2672             (max_sectors * 512) > (128 * 1024))
2673                 max_sectors = 128 * 1024 / 512;
2674         scsi_driver_template.max_sectors = max_sectors;
2675
2676         /* Register our high level driver with 1394 stack */
2677         hpsb_register_highlevel(&sbp2_highlevel);
2678
2679         ret = hpsb_register_protocol(&sbp2_driver);
2680         if (ret) {
2681                 SBP2_ERR("Failed to register protocol");
2682                 hpsb_unregister_highlevel(&sbp2_highlevel);
2683                 return ret;
2684         }
2685
2686         return 0;
2687 }
2688
2689 static void __exit sbp2_module_exit(void)
2690 {
2691         SBP2_DEBUG_ENTER();
2692
2693         hpsb_unregister_protocol(&sbp2_driver);
2694
2695         hpsb_unregister_highlevel(&sbp2_highlevel);
2696 }
2697
2698 module_init(sbp2_module_init);
2699 module_exit(sbp2_module_exit);