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