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