ieee1394: sbp2: another iPod mini quirk entry
[safe/jmp/linux-2.6] / drivers / ieee1394 / sbp2.c
1 /*
2  * sbp2.c - SBP-2 protocol driver for IEEE-1394
3  *
4  * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com)
5  * jamesg@filanet.com (JSG)
6  *
7  * Copyright (C) 2003 Ben Collins <bcollins@debian.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 /*
25  * Brief Description:
26  *
27  * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394
28  * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level
29  * driver. It also registers as a SCSI lower-level driver in order to accept
30  * SCSI commands for transport using SBP-2.
31  *
32  * You may access any attached SBP-2 (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               = 0x000022,
406                 .workarounds            = SBP2_WORKAROUND_FIX_CAPACITY,
407         },
408         /* iPod mini */ {
409                 .firmware_revision      = 0x0a2700,
410                 .model_id               = 0x000023,
411                 .workarounds            = SBP2_WORKAROUND_FIX_CAPACITY,
412         },
413         /* iPod Photo */ {
414                 .firmware_revision      = 0x0a2700,
415                 .model_id               = 0x00007e,
416                 .workarounds            = SBP2_WORKAROUND_FIX_CAPACITY,
417         }
418 };
419
420 /**************************************
421  * General utility functions
422  **************************************/
423
424 #ifndef __BIG_ENDIAN
425 /*
426  * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
427  */
428 static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
429 {
430         u32 *temp = buffer;
431
432         for (length = (length >> 2); length--; )
433                 temp[length] = be32_to_cpu(temp[length]);
434 }
435
436 /*
437  * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
438  */
439 static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
440 {
441         u32 *temp = buffer;
442
443         for (length = (length >> 2); length--; )
444                 temp[length] = cpu_to_be32(temp[length]);
445 }
446 #else /* BIG_ENDIAN */
447 /* Why waste the cpu cycles? */
448 #define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
449 #define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
450 #endif
451
452 static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
453
454 /*
455  * Waits for completion of an SBP-2 access request.
456  * Returns nonzero if timed out or prematurely interrupted.
457  */
458 static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
459 {
460         long leftover;
461
462         leftover = wait_event_interruptible_timeout(
463                         sbp2_access_wq, lu->access_complete, timeout);
464         lu->access_complete = 0;
465         return leftover <= 0;
466 }
467
468 static void sbp2_free_packet(void *packet)
469 {
470         hpsb_free_tlabel(packet);
471         hpsb_free_packet(packet);
472 }
473
474 /*
475  * This is much like hpsb_node_write(), except it ignores the response
476  * subaction and returns immediately. Can be used from atomic context.
477  */
478 static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
479                                        quadlet_t *buf, size_t len)
480 {
481         struct hpsb_packet *packet;
482
483         packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
484         if (!packet)
485                 return -ENOMEM;
486
487         hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
488         hpsb_node_fill_packet(ne, packet);
489         if (hpsb_send_packet(packet) < 0) {
490                 sbp2_free_packet(packet);
491                 return -EIO;
492         }
493         return 0;
494 }
495
496 static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
497                                         quadlet_t *data, size_t len)
498 {
499         /* There is a small window after a bus reset within which the node
500          * entry's generation is current but the reconnect wasn't completed. */
501         if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
502                 return;
503
504         if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
505                             data, len))
506                 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
507
508         /* Now accept new SCSI commands, unless a bus reset happended during
509          * hpsb_node_write. */
510         if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
511                 scsi_unblock_requests(lu->shost);
512 }
513
514 static void sbp2util_write_orb_pointer(struct work_struct *work)
515 {
516         struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
517         quadlet_t data[2];
518
519         data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
520         data[1] = lu->last_orb_dma;
521         sbp2util_cpu_to_be32_buffer(data, 8);
522         sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
523 }
524
525 static void sbp2util_write_doorbell(struct work_struct *work)
526 {
527         struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
528
529         sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
530 }
531
532 static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
533 {
534         struct sbp2_command_info *cmd;
535         struct device *dmadev = lu->hi->host->device.parent;
536         int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
537
538         for (i = 0; i < orbs; i++) {
539                 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
540                 if (!cmd)
541                         goto failed_alloc;
542
543                 cmd->command_orb_dma =
544                     dma_map_single(dmadev, &cmd->command_orb,
545                                    sizeof(struct sbp2_command_orb),
546                                    DMA_TO_DEVICE);
547                 if (dma_mapping_error(dmadev, cmd->command_orb_dma))
548                         goto failed_orb;
549
550                 cmd->sge_dma =
551                     dma_map_single(dmadev, &cmd->scatter_gather_element,
552                                    sizeof(cmd->scatter_gather_element),
553                                    DMA_TO_DEVICE);
554                 if (dma_mapping_error(dmadev, cmd->sge_dma))
555                         goto failed_sge;
556
557                 INIT_LIST_HEAD(&cmd->list);
558                 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
559         }
560         return 0;
561
562 failed_sge:
563         dma_unmap_single(dmadev, cmd->command_orb_dma,
564                          sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
565 failed_orb:
566         kfree(cmd);
567 failed_alloc:
568         return -ENOMEM;
569 }
570
571 static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu,
572                                              struct hpsb_host *host)
573 {
574         struct list_head *lh, *next;
575         struct sbp2_command_info *cmd;
576         unsigned long flags;
577
578         spin_lock_irqsave(&lu->cmd_orb_lock, flags);
579         if (!list_empty(&lu->cmd_orb_completed))
580                 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
581                         cmd = list_entry(lh, struct sbp2_command_info, list);
582                         dma_unmap_single(host->device.parent,
583                                          cmd->command_orb_dma,
584                                          sizeof(struct sbp2_command_orb),
585                                          DMA_TO_DEVICE);
586                         dma_unmap_single(host->device.parent, cmd->sge_dma,
587                                          sizeof(cmd->scatter_gather_element),
588                                          DMA_TO_DEVICE);
589                         kfree(cmd);
590                 }
591         spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
592         return;
593 }
594
595 /*
596  * Finds the sbp2_command for a given outstanding command ORB.
597  * Only looks at the in-use list.
598  */
599 static struct sbp2_command_info *sbp2util_find_command_for_orb(
600                                 struct sbp2_lu *lu, dma_addr_t orb)
601 {
602         struct sbp2_command_info *cmd;
603         unsigned long flags;
604
605         spin_lock_irqsave(&lu->cmd_orb_lock, flags);
606         if (!list_empty(&lu->cmd_orb_inuse))
607                 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
608                         if (cmd->command_orb_dma == orb) {
609                                 spin_unlock_irqrestore(
610                                                 &lu->cmd_orb_lock, flags);
611                                 return cmd;
612                         }
613         spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
614         return NULL;
615 }
616
617 /*
618  * Finds the sbp2_command for a given outstanding SCpnt.
619  * Only looks at the in-use list.
620  * Must be called with lu->cmd_orb_lock held.
621  */
622 static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
623                                 struct sbp2_lu *lu, void *SCpnt)
624 {
625         struct sbp2_command_info *cmd;
626
627         if (!list_empty(&lu->cmd_orb_inuse))
628                 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
629                         if (cmd->Current_SCpnt == SCpnt)
630                                 return cmd;
631         return NULL;
632 }
633
634 static struct sbp2_command_info *sbp2util_allocate_command_orb(
635                                 struct sbp2_lu *lu,
636                                 struct scsi_cmnd *Current_SCpnt,
637                                 void (*Current_done)(struct scsi_cmnd *))
638 {
639         struct list_head *lh;
640         struct sbp2_command_info *cmd = NULL;
641         unsigned long flags;
642
643         spin_lock_irqsave(&lu->cmd_orb_lock, flags);
644         if (!list_empty(&lu->cmd_orb_completed)) {
645                 lh = lu->cmd_orb_completed.next;
646                 list_del(lh);
647                 cmd = list_entry(lh, struct sbp2_command_info, list);
648                 cmd->Current_done = Current_done;
649                 cmd->Current_SCpnt = Current_SCpnt;
650                 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
651         } else
652                 SBP2_ERR("%s: no orbs available", __func__);
653         spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
654         return cmd;
655 }
656
657 /*
658  * Unmaps the DMAs of a command and moves the command to the completed ORB list.
659  * Must be called with lu->cmd_orb_lock held.
660  */
661 static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
662                                             struct sbp2_command_info *cmd)
663 {
664         if (scsi_sg_count(cmd->Current_SCpnt))
665                 dma_unmap_sg(lu->ud->ne->host->device.parent,
666                              scsi_sglist(cmd->Current_SCpnt),
667                              scsi_sg_count(cmd->Current_SCpnt),
668                              cmd->Current_SCpnt->sc_data_direction);
669         list_move_tail(&cmd->list, &lu->cmd_orb_completed);
670 }
671
672 /*
673  * Is lu valid? Is the 1394 node still present?
674  */
675 static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
676 {
677         return lu && lu->ne && !lu->ne->in_limbo;
678 }
679
680 /*********************************************
681  * IEEE-1394 core driver stack related section
682  *********************************************/
683
684 static int sbp2_probe(struct device *dev)
685 {
686         struct unit_directory *ud;
687         struct sbp2_lu *lu;
688
689         ud = container_of(dev, struct unit_directory, device);
690
691         /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
692          * instead. */
693         if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
694                 return -ENODEV;
695
696         lu = sbp2_alloc_device(ud);
697         if (!lu)
698                 return -ENOMEM;
699
700         sbp2_parse_unit_directory(lu, ud);
701         return sbp2_start_device(lu);
702 }
703
704 static int sbp2_remove(struct device *dev)
705 {
706         struct unit_directory *ud;
707         struct sbp2_lu *lu;
708         struct scsi_device *sdev;
709
710         ud = container_of(dev, struct unit_directory, device);
711         lu = ud->device.driver_data;
712         if (!lu)
713                 return 0;
714
715         if (lu->shost) {
716                 /* Get rid of enqueued commands if there is no chance to
717                  * send them. */
718                 if (!sbp2util_node_is_available(lu))
719                         sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
720                 /* scsi_remove_device() may trigger shutdown functions of SCSI
721                  * highlevel drivers which would deadlock if blocked. */
722                 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
723                 scsi_unblock_requests(lu->shost);
724         }
725         sdev = lu->sdev;
726         if (sdev) {
727                 lu->sdev = NULL;
728                 scsi_remove_device(sdev);
729         }
730
731         sbp2_logout_device(lu);
732         sbp2_remove_device(lu);
733
734         return 0;
735 }
736
737 static int sbp2_update(struct unit_directory *ud)
738 {
739         struct sbp2_lu *lu = ud->device.driver_data;
740
741         if (sbp2_reconnect_device(lu) != 0) {
742                 /*
743                  * Reconnect failed.  If another bus reset happened,
744                  * let nodemgr proceed and call sbp2_update again later
745                  * (or sbp2_remove if this node went away).
746                  */
747                 if (!hpsb_node_entry_valid(lu->ne))
748                         return 0;
749                 /*
750                  * Or the target rejected the reconnect because we weren't
751                  * fast enough.  Try a regular login, but first log out
752                  * just in case of any weirdness.
753                  */
754                 sbp2_logout_device(lu);
755
756                 if (sbp2_login_device(lu) != 0) {
757                         if (!hpsb_node_entry_valid(lu->ne))
758                                 return 0;
759
760                         /* Maybe another initiator won the login. */
761                         SBP2_ERR("Failed to reconnect to sbp2 device!");
762                         return -EBUSY;
763                 }
764         }
765
766         sbp2_set_busy_timeout(lu);
767         sbp2_agent_reset(lu, 1);
768         sbp2_max_speed_and_size(lu);
769
770         /* Complete any pending commands with busy (so they get retried)
771          * and remove them from our queue. */
772         sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
773
774         /* Accept new commands unless there was another bus reset in the
775          * meantime. */
776         if (hpsb_node_entry_valid(lu->ne)) {
777                 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
778                 scsi_unblock_requests(lu->shost);
779         }
780         return 0;
781 }
782
783 static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
784 {
785         struct sbp2_fwhost_info *hi;
786         struct Scsi_Host *shost = NULL;
787         struct sbp2_lu *lu = NULL;
788         unsigned long flags;
789
790         lu = kzalloc(sizeof(*lu), GFP_KERNEL);
791         if (!lu) {
792                 SBP2_ERR("failed to create lu");
793                 goto failed_alloc;
794         }
795
796         lu->ne = ud->ne;
797         lu->ud = ud;
798         lu->speed_code = IEEE1394_SPEED_100;
799         lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
800         lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
801         INIT_LIST_HEAD(&lu->cmd_orb_inuse);
802         INIT_LIST_HEAD(&lu->cmd_orb_completed);
803         INIT_LIST_HEAD(&lu->lu_list);
804         spin_lock_init(&lu->cmd_orb_lock);
805         atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
806         INIT_WORK(&lu->protocol_work, NULL);
807
808         ud->device.driver_data = lu;
809
810         hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
811         if (!hi) {
812                 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
813                                           sizeof(*hi));
814                 if (!hi) {
815                         SBP2_ERR("failed to allocate hostinfo");
816                         goto failed_alloc;
817                 }
818                 hi->host = ud->ne->host;
819                 INIT_LIST_HEAD(&hi->logical_units);
820
821 #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
822                 /* Handle data movement if physical dma is not
823                  * enabled or not supported on host controller */
824                 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
825                                              &sbp2_physdma_ops,
826                                              0x0ULL, 0xfffffffcULL)) {
827                         SBP2_ERR("failed to register lower 4GB address range");
828                         goto failed_alloc;
829                 }
830 #endif
831         }
832
833         if (dma_get_max_seg_size(hi->host->device.parent) > SBP2_MAX_SEG_SIZE)
834                 BUG_ON(dma_set_max_seg_size(hi->host->device.parent,
835                                             SBP2_MAX_SEG_SIZE));
836
837         /* Prevent unloading of the 1394 host */
838         if (!try_module_get(hi->host->driver->owner)) {
839                 SBP2_ERR("failed to get a reference on 1394 host driver");
840                 goto failed_alloc;
841         }
842
843         lu->hi = hi;
844
845         write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
846         list_add_tail(&lu->lu_list, &hi->logical_units);
847         write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
848
849         /* Register the status FIFO address range. We could use the same FIFO
850          * for targets at different nodes. However we need different FIFOs per
851          * target in order to support multi-unit devices.
852          * The FIFO is located out of the local host controller's physical range
853          * but, if possible, within the posted write area. Status writes will
854          * then be performed as unified transactions. This slightly reduces
855          * bandwidth usage, and some Prolific based devices seem to require it.
856          */
857         lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
858                         &sbp2_highlevel, ud->ne->host, &sbp2_ops,
859                         sizeof(struct sbp2_status_block), sizeof(quadlet_t),
860                         ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
861         if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
862                 SBP2_ERR("failed to allocate status FIFO address range");
863                 goto failed_alloc;
864         }
865
866         shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
867         if (!shost) {
868                 SBP2_ERR("failed to register scsi host");
869                 goto failed_alloc;
870         }
871
872         shost->hostdata[0] = (unsigned long)lu;
873
874         if (!scsi_add_host(shost, &ud->device)) {
875                 lu->shost = shost;
876                 return lu;
877         }
878
879         SBP2_ERR("failed to add scsi host");
880         scsi_host_put(shost);
881
882 failed_alloc:
883         sbp2_remove_device(lu);
884         return NULL;
885 }
886
887 static void sbp2_host_reset(struct hpsb_host *host)
888 {
889         struct sbp2_fwhost_info *hi;
890         struct sbp2_lu *lu;
891         unsigned long flags;
892
893         hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
894         if (!hi)
895                 return;
896
897         read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
898         list_for_each_entry(lu, &hi->logical_units, lu_list)
899                 if (likely(atomic_read(&lu->state) !=
900                            SBP2LU_STATE_IN_SHUTDOWN)) {
901                         atomic_set(&lu->state, SBP2LU_STATE_IN_RESET);
902                         scsi_block_requests(lu->shost);
903                 }
904         read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
905 }
906
907 static int sbp2_start_device(struct sbp2_lu *lu)
908 {
909         struct sbp2_fwhost_info *hi = lu->hi;
910         int error;
911
912         lu->login_response = dma_alloc_coherent(hi->host->device.parent,
913                                      sizeof(struct sbp2_login_response),
914                                      &lu->login_response_dma, GFP_KERNEL);
915         if (!lu->login_response)
916                 goto alloc_fail;
917
918         lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
919                                      sizeof(struct sbp2_query_logins_orb),
920                                      &lu->query_logins_orb_dma, GFP_KERNEL);
921         if (!lu->query_logins_orb)
922                 goto alloc_fail;
923
924         lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
925                                      sizeof(struct sbp2_query_logins_response),
926                                      &lu->query_logins_response_dma, GFP_KERNEL);
927         if (!lu->query_logins_response)
928                 goto alloc_fail;
929
930         lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
931                                      sizeof(struct sbp2_reconnect_orb),
932                                      &lu->reconnect_orb_dma, GFP_KERNEL);
933         if (!lu->reconnect_orb)
934                 goto alloc_fail;
935
936         lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
937                                      sizeof(struct sbp2_logout_orb),
938                                      &lu->logout_orb_dma, GFP_KERNEL);
939         if (!lu->logout_orb)
940                 goto alloc_fail;
941
942         lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
943                                      sizeof(struct sbp2_login_orb),
944                                      &lu->login_orb_dma, GFP_KERNEL);
945         if (!lu->login_orb)
946                 goto alloc_fail;
947
948         if (sbp2util_create_command_orb_pool(lu))
949                 goto alloc_fail;
950
951         /* Wait a second before trying to log in. Previously logged in
952          * initiators need a chance to reconnect. */
953         if (msleep_interruptible(1000)) {
954                 sbp2_remove_device(lu);
955                 return -EINTR;
956         }
957
958         if (sbp2_login_device(lu)) {
959                 sbp2_remove_device(lu);
960                 return -EBUSY;
961         }
962
963         sbp2_set_busy_timeout(lu);
964         sbp2_agent_reset(lu, 1);
965         sbp2_max_speed_and_size(lu);
966
967         if (lu->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY)
968                 ssleep(SBP2_INQUIRY_DELAY);
969
970         error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
971         if (error) {
972                 SBP2_ERR("scsi_add_device failed");
973                 sbp2_logout_device(lu);
974                 sbp2_remove_device(lu);
975                 return error;
976         }
977
978         return 0;
979
980 alloc_fail:
981         SBP2_ERR("Could not allocate memory for lu");
982         sbp2_remove_device(lu);
983         return -ENOMEM;
984 }
985
986 static void sbp2_remove_device(struct sbp2_lu *lu)
987 {
988         struct sbp2_fwhost_info *hi;
989         unsigned long flags;
990
991         if (!lu)
992                 return;
993         hi = lu->hi;
994         if (!hi)
995                 goto no_hi;
996
997         if (lu->shost) {
998                 scsi_remove_host(lu->shost);
999                 scsi_host_put(lu->shost);
1000         }
1001         flush_scheduled_work();
1002         sbp2util_remove_command_orb_pool(lu, hi->host);
1003
1004         write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
1005         list_del(&lu->lu_list);
1006         write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1007
1008         if (lu->login_response)
1009                 dma_free_coherent(hi->host->device.parent,
1010                                     sizeof(struct sbp2_login_response),
1011                                     lu->login_response,
1012                                     lu->login_response_dma);
1013         if (lu->login_orb)
1014                 dma_free_coherent(hi->host->device.parent,
1015                                     sizeof(struct sbp2_login_orb),
1016                                     lu->login_orb,
1017                                     lu->login_orb_dma);
1018         if (lu->reconnect_orb)
1019                 dma_free_coherent(hi->host->device.parent,
1020                                     sizeof(struct sbp2_reconnect_orb),
1021                                     lu->reconnect_orb,
1022                                     lu->reconnect_orb_dma);
1023         if (lu->logout_orb)
1024                 dma_free_coherent(hi->host->device.parent,
1025                                     sizeof(struct sbp2_logout_orb),
1026                                     lu->logout_orb,
1027                                     lu->logout_orb_dma);
1028         if (lu->query_logins_orb)
1029                 dma_free_coherent(hi->host->device.parent,
1030                                     sizeof(struct sbp2_query_logins_orb),
1031                                     lu->query_logins_orb,
1032                                     lu->query_logins_orb_dma);
1033         if (lu->query_logins_response)
1034                 dma_free_coherent(hi->host->device.parent,
1035                                     sizeof(struct sbp2_query_logins_response),
1036                                     lu->query_logins_response,
1037                                     lu->query_logins_response_dma);
1038
1039         if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
1040                 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
1041                                           lu->status_fifo_addr);
1042
1043         lu->ud->device.driver_data = NULL;
1044
1045         module_put(hi->host->driver->owner);
1046 no_hi:
1047         kfree(lu);
1048 }
1049
1050 #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1051 /*
1052  * Deal with write requests on adapters which do not support physical DMA or
1053  * have it switched off.
1054  */
1055 static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1056                                      int destid, quadlet_t *data, u64 addr,
1057                                      size_t length, u16 flags)
1058 {
1059         memcpy(bus_to_virt((u32) addr), data, length);
1060         return RCODE_COMPLETE;
1061 }
1062
1063 /*
1064  * Deal with read requests on adapters which do not support physical DMA or
1065  * have it switched off.
1066  */
1067 static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1068                                     quadlet_t *data, u64 addr, size_t length,
1069                                     u16 flags)
1070 {
1071         memcpy(data, bus_to_virt((u32) addr), length);
1072         return RCODE_COMPLETE;
1073 }
1074 #endif
1075
1076 /**************************************
1077  * SBP-2 protocol related section
1078  **************************************/
1079
1080 static int sbp2_query_logins(struct sbp2_lu *lu)
1081 {
1082         struct sbp2_fwhost_info *hi = lu->hi;
1083         quadlet_t data[2];
1084         int max_logins;
1085         int active_logins;
1086
1087         lu->query_logins_orb->reserved1 = 0x0;
1088         lu->query_logins_orb->reserved2 = 0x0;
1089
1090         lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1091         lu->query_logins_orb->query_response_hi =
1092                         ORB_SET_NODE_ID(hi->host->node_id);
1093         lu->query_logins_orb->lun_misc =
1094                         ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1095         lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1096         lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
1097
1098         lu->query_logins_orb->reserved_resp_length =
1099                 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1100                         sizeof(struct sbp2_query_logins_response));
1101
1102         lu->query_logins_orb->status_fifo_hi =
1103                 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1104         lu->query_logins_orb->status_fifo_lo =
1105                 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1106
1107         sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1108                                     sizeof(struct sbp2_query_logins_orb));
1109
1110         memset(lu->query_logins_response, 0,
1111                sizeof(struct sbp2_query_logins_response));
1112
1113         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1114         data[1] = lu->query_logins_orb_dma;
1115         sbp2util_cpu_to_be32_buffer(data, 8);
1116
1117         hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1118
1119         if (sbp2util_access_timeout(lu, 2*HZ)) {
1120                 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
1121                 return -EIO;
1122         }
1123
1124         if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
1125                 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
1126                 return -EIO;
1127         }
1128
1129         if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
1130                 SBP2_INFO("Error querying logins to SBP-2 device - failed");
1131                 return -EIO;
1132         }
1133
1134         sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1135                                     sizeof(struct sbp2_query_logins_response));
1136
1137         max_logins = RESPONSE_GET_MAX_LOGINS(
1138                         lu->query_logins_response->length_max_logins);
1139         SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
1140
1141         active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1142                         lu->query_logins_response->length_max_logins);
1143         SBP2_INFO("Number of active logins: %d", active_logins);
1144
1145         if (active_logins >= max_logins) {
1146                 return -EIO;
1147         }
1148
1149         return 0;
1150 }
1151
1152 static int sbp2_login_device(struct sbp2_lu *lu)
1153 {
1154         struct sbp2_fwhost_info *hi = lu->hi;
1155         quadlet_t data[2];
1156
1157         if (!lu->login_orb)
1158                 return -EIO;
1159
1160         if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
1161                 SBP2_INFO("Device does not support any more concurrent logins");
1162                 return -EIO;
1163         }
1164
1165         /* assume no password */
1166         lu->login_orb->password_hi = 0;
1167         lu->login_orb->password_lo = 0;
1168
1169         lu->login_orb->login_response_lo = lu->login_response_dma;
1170         lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1171         lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
1172
1173         /* one second reconnect time */
1174         lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1175         lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1176         lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1177         lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
1178
1179         lu->login_orb->passwd_resp_lengths =
1180                 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
1181
1182         lu->login_orb->status_fifo_hi =
1183                 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1184         lu->login_orb->status_fifo_lo =
1185                 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1186
1187         sbp2util_cpu_to_be32_buffer(lu->login_orb,
1188                                     sizeof(struct sbp2_login_orb));
1189
1190         memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
1191
1192         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1193         data[1] = lu->login_orb_dma;
1194         sbp2util_cpu_to_be32_buffer(data, 8);
1195
1196         hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1197
1198         /* wait up to 20 seconds for login status */
1199         if (sbp2util_access_timeout(lu, 20*HZ)) {
1200                 SBP2_ERR("Error logging into SBP-2 device - timed out");
1201                 return -EIO;
1202         }
1203
1204         /* make sure that the returned status matches the login ORB */
1205         if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
1206                 SBP2_ERR("Error logging into SBP-2 device - timed out");
1207                 return -EIO;
1208         }
1209
1210         if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
1211                 SBP2_ERR("Error logging into SBP-2 device - failed");
1212                 return -EIO;
1213         }
1214
1215         sbp2util_cpu_to_be32_buffer(lu->login_response,
1216                                     sizeof(struct sbp2_login_response));
1217         lu->command_block_agent_addr =
1218                         ((u64)lu->login_response->command_block_agent_hi) << 32;
1219         lu->command_block_agent_addr |=
1220                         ((u64)lu->login_response->command_block_agent_lo);
1221         lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
1222
1223         SBP2_INFO("Logged into SBP-2 device");
1224         return 0;
1225 }
1226
1227 static int sbp2_logout_device(struct sbp2_lu *lu)
1228 {
1229         struct sbp2_fwhost_info *hi = lu->hi;
1230         quadlet_t data[2];
1231         int error;
1232
1233         lu->logout_orb->reserved1 = 0x0;
1234         lu->logout_orb->reserved2 = 0x0;
1235         lu->logout_orb->reserved3 = 0x0;
1236         lu->logout_orb->reserved4 = 0x0;
1237
1238         lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1239         lu->logout_orb->login_ID_misc |=
1240                         ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1241         lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1242
1243         lu->logout_orb->reserved5 = 0x0;
1244         lu->logout_orb->status_fifo_hi =
1245                 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1246         lu->logout_orb->status_fifo_lo =
1247                 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1248
1249         sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1250                                     sizeof(struct sbp2_logout_orb));
1251
1252         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1253         data[1] = lu->logout_orb_dma;
1254         sbp2util_cpu_to_be32_buffer(data, 8);
1255
1256         error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1257         if (error)
1258                 return error;
1259
1260         /* wait up to 1 second for the device to complete logout */
1261         if (sbp2util_access_timeout(lu, HZ))
1262                 return -EIO;
1263
1264         SBP2_INFO("Logged out of SBP-2 device");
1265         return 0;
1266 }
1267
1268 static int sbp2_reconnect_device(struct sbp2_lu *lu)
1269 {
1270         struct sbp2_fwhost_info *hi = lu->hi;
1271         quadlet_t data[2];
1272         int error;
1273
1274         lu->reconnect_orb->reserved1 = 0x0;
1275         lu->reconnect_orb->reserved2 = 0x0;
1276         lu->reconnect_orb->reserved3 = 0x0;
1277         lu->reconnect_orb->reserved4 = 0x0;
1278
1279         lu->reconnect_orb->login_ID_misc =
1280                         ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1281         lu->reconnect_orb->login_ID_misc |=
1282                         ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1283         lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1284
1285         lu->reconnect_orb->reserved5 = 0x0;
1286         lu->reconnect_orb->status_fifo_hi =
1287                 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1288         lu->reconnect_orb->status_fifo_lo =
1289                 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1290
1291         sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1292                                     sizeof(struct sbp2_reconnect_orb));
1293
1294         data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1295         data[1] = lu->reconnect_orb_dma;
1296         sbp2util_cpu_to_be32_buffer(data, 8);
1297
1298         error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1299         if (error)
1300                 return error;
1301
1302         /* wait up to 1 second for reconnect status */
1303         if (sbp2util_access_timeout(lu, HZ)) {
1304                 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
1305                 return -EIO;
1306         }
1307
1308         /* make sure that the returned status matches the reconnect ORB */
1309         if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
1310                 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
1311                 return -EIO;
1312         }
1313
1314         if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
1315                 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
1316                 return -EIO;
1317         }
1318
1319         SBP2_INFO("Reconnected to SBP-2 device");
1320         return 0;
1321 }
1322
1323 /*
1324  * Set the target node's Single Phase Retry limit. Affects the target's retry
1325  * behaviour if our node is too busy to accept requests.
1326  */
1327 static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
1328 {
1329         quadlet_t data;
1330
1331         data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
1332         if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
1333                 SBP2_ERR("%s error", __func__);
1334         return 0;
1335 }
1336
1337 static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
1338                                       struct unit_directory *ud)
1339 {
1340         struct csr1212_keyval *kv;
1341         struct csr1212_dentry *dentry;
1342         u64 management_agent_addr;
1343         u32 unit_characteristics, firmware_revision;
1344         unsigned workarounds;
1345         int i;
1346
1347         management_agent_addr = 0;
1348         unit_characteristics = 0;
1349         firmware_revision = 0;
1350
1351         csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1352                 switch (kv->key.id) {
1353                 case CSR1212_KV_ID_DEPENDENT_INFO:
1354                         if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
1355                                 management_agent_addr =
1356                                     CSR1212_REGISTER_SPACE_BASE +
1357                                     (kv->value.csr_offset << 2);
1358
1359                         else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
1360                                 lu->lun = ORB_SET_LUN(kv->value.immediate);
1361                         break;
1362
1363                 case SBP2_UNIT_CHARACTERISTICS_KEY:
1364                         /* FIXME: This is ignored so far.
1365                          * See SBP-2 clause 7.4.8. */
1366                         unit_characteristics = kv->value.immediate;
1367                         break;
1368
1369                 case SBP2_FIRMWARE_REVISION_KEY:
1370                         firmware_revision = kv->value.immediate;
1371                         break;
1372
1373                 default:
1374                         /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1375                          * Its "ordered" bit has consequences for command ORB
1376                          * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
1377                         break;
1378                 }
1379         }
1380
1381         workarounds = sbp2_default_workarounds;
1382
1383         if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1384                 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
1385                         if (sbp2_workarounds_table[i].firmware_revision !=
1386                             SBP2_ROM_VALUE_WILDCARD &&
1387                             sbp2_workarounds_table[i].firmware_revision !=
1388                             (firmware_revision & 0xffff00))
1389                                 continue;
1390                         if (sbp2_workarounds_table[i].model_id !=
1391                             SBP2_ROM_VALUE_WILDCARD &&
1392                             sbp2_workarounds_table[i].model_id != ud->model_id)
1393                                 continue;
1394                         workarounds |= sbp2_workarounds_table[i].workarounds;
1395                         break;
1396                 }
1397
1398         if (workarounds)
1399                 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1400                           "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1401                           " model_id 0x%06x)",
1402                           NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
1403                           workarounds, firmware_revision,
1404                           ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1405                           ud->model_id);
1406
1407         /* We would need one SCSI host template for each target to adjust
1408          * max_sectors on the fly, therefore warn only. */
1409         if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
1410             (sbp2_max_sectors * 512) > (128 * 1024))
1411                 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
1412                           "max transfer size. WARNING: Current max_sectors "
1413                           "setting is larger than 128KB (%d sectors)",
1414                           NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
1415                           sbp2_max_sectors);
1416
1417         /* If this is a logical unit directory entry, process the parent
1418          * to get the values. */
1419         if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
1420                 struct unit_directory *parent_ud = container_of(
1421                         ud->device.parent, struct unit_directory, device);
1422                 sbp2_parse_unit_directory(lu, parent_ud);
1423         } else {
1424                 lu->management_agent_addr = management_agent_addr;
1425                 lu->workarounds = workarounds;
1426                 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
1427                         lu->lun = ORB_SET_LUN(ud->lun);
1428         }
1429 }
1430
1431 #define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1432
1433 /*
1434  * This function is called in order to determine the max speed and packet
1435  * size we can use in our ORBs. Note, that we (the driver and host) only
1436  * initiate the transaction. The SBP-2 device actually transfers the data
1437  * (by reading from the DMA area we tell it). This means that the SBP-2
1438  * device decides the actual maximum data it can transfer. We just tell it
1439  * the speed that it needs to use, and the max_rec the host supports, and
1440  * it takes care of the rest.
1441  */
1442 static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
1443 {
1444         struct sbp2_fwhost_info *hi = lu->hi;
1445         u8 payload;
1446
1447         lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
1448
1449         if (lu->speed_code > sbp2_max_speed) {
1450                 lu->speed_code = sbp2_max_speed;
1451                 SBP2_INFO("Reducing speed to %s",
1452                           hpsb_speedto_str[sbp2_max_speed]);
1453         }
1454
1455         /* Payload size is the lesser of what our speed supports and what
1456          * our host supports.  */
1457         payload = min(sbp2_speedto_max_payload[lu->speed_code],
1458                       (u8) (hi->host->csr.max_rec - 1));
1459
1460         /* If physical DMA is off, work around limitation in ohci1394:
1461          * packet size must not exceed PAGE_SIZE */
1462         if (lu->ne->host->low_addr_space < (1ULL << 32))
1463                 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1464                        payload)
1465                         payload--;
1466
1467         SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
1468                   NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1469                   hpsb_speedto_str[lu->speed_code],
1470                   SBP2_PAYLOAD_TO_BYTES(payload));
1471
1472         lu->max_payload_size = payload;
1473         return 0;
1474 }
1475
1476 static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
1477 {
1478         quadlet_t data;
1479         u64 addr;
1480         int retval;
1481         unsigned long flags;
1482
1483         /* flush lu->protocol_work */
1484         if (wait)
1485                 flush_scheduled_work();
1486
1487         data = ntohl(SBP2_AGENT_RESET_DATA);
1488         addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
1489
1490         if (wait)
1491                 retval = hpsb_node_write(lu->ne, addr, &data, 4);
1492         else
1493                 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
1494
1495         if (retval < 0) {
1496                 SBP2_ERR("hpsb_node_write failed.\n");
1497                 return -EIO;
1498         }
1499
1500         /* make sure that the ORB_POINTER is written on next command */
1501         spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1502         lu->last_orb = NULL;
1503         spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1504
1505         return 0;
1506 }
1507
1508 static int sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1509                                     struct sbp2_fwhost_info *hi,
1510                                     struct sbp2_command_info *cmd,
1511                                     unsigned int sg_count,
1512                                     struct scatterlist *sg,
1513                                     u32 orb_direction,
1514                                     enum dma_data_direction dma_dir)
1515 {
1516         struct device *dmadev = hi->host->device.parent;
1517         struct sbp2_unrestricted_page_table *pt;
1518         int i, n;
1519
1520         n = dma_map_sg(dmadev, sg, sg_count, dma_dir);
1521         if (n == 0)
1522                 return -ENOMEM;
1523
1524         orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1525         orb->misc |= ORB_SET_DIRECTION(orb_direction);
1526
1527         /* special case if only one element (and less than 64KB in size) */
1528         if (n == 1) {
1529                 orb->misc |= ORB_SET_DATA_SIZE(sg_dma_len(sg));
1530                 orb->data_descriptor_lo = sg_dma_address(sg);
1531         } else {
1532                 pt = &cmd->scatter_gather_element[0];
1533
1534                 dma_sync_single_for_cpu(dmadev, cmd->sge_dma,
1535                                         sizeof(cmd->scatter_gather_element),
1536                                         DMA_TO_DEVICE);
1537
1538                 for_each_sg(sg, sg, n, i) {
1539                         pt[i].high = cpu_to_be32(sg_dma_len(sg) << 16);
1540                         pt[i].low = cpu_to_be32(sg_dma_address(sg));
1541                 }
1542
1543                 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1) |
1544                              ORB_SET_DATA_SIZE(n);
1545                 orb->data_descriptor_lo = cmd->sge_dma;
1546
1547                 dma_sync_single_for_device(dmadev, cmd->sge_dma,
1548                                            sizeof(cmd->scatter_gather_element),
1549                                            DMA_TO_DEVICE);
1550         }
1551         return 0;
1552 }
1553
1554 static int sbp2_create_command_orb(struct sbp2_lu *lu,
1555                                    struct sbp2_command_info *cmd,
1556                                    struct scsi_cmnd *SCpnt)
1557 {
1558         struct device *dmadev = lu->hi->host->device.parent;
1559         struct sbp2_command_orb *orb = &cmd->command_orb;
1560         unsigned int scsi_request_bufflen = scsi_bufflen(SCpnt);
1561         enum dma_data_direction dma_dir = SCpnt->sc_data_direction;
1562         u32 orb_direction;
1563         int ret;
1564
1565         dma_sync_single_for_cpu(dmadev, cmd->command_orb_dma,
1566                                 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
1567         /*
1568          * Set-up our command ORB.
1569          *
1570          * NOTE: We're doing unrestricted page tables (s/g), as this is
1571          * best performance (at least with the devices I have). This means
1572          * that data_size becomes the number of s/g elements, and
1573          * page_size should be zero (for unrestricted).
1574          */
1575         orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1576         orb->next_ORB_lo = 0x0;
1577         orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1578         orb->misc |= ORB_SET_SPEED(lu->speed_code);
1579         orb->misc |= ORB_SET_NOTIFY(1);
1580
1581         if (dma_dir == DMA_NONE)
1582                 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
1583         else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
1584                 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
1585         else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
1586                 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
1587         else {
1588                 SBP2_INFO("Falling back to DMA_NONE");
1589                 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
1590         }
1591
1592         /* set up our page table stuff */
1593         if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
1594                 orb->data_descriptor_hi = 0x0;
1595                 orb->data_descriptor_lo = 0x0;
1596                 orb->misc |= ORB_SET_DIRECTION(1);
1597                 ret = 0;
1598         } else {
1599                 ret = sbp2_prep_command_orb_sg(orb, lu->hi, cmd,
1600                                                scsi_sg_count(SCpnt),
1601                                                scsi_sglist(SCpnt),
1602                                                orb_direction, dma_dir);
1603         }
1604         sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
1605
1606         memset(orb->cdb, 0, sizeof(orb->cdb));
1607         memcpy(orb->cdb, SCpnt->cmnd, SCpnt->cmd_len);
1608
1609         dma_sync_single_for_device(dmadev, cmd->command_orb_dma,
1610                         sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
1611         return ret;
1612 }
1613
1614 static void sbp2_link_orb_command(struct sbp2_lu *lu,
1615                                   struct sbp2_command_info *cmd)
1616 {
1617         struct sbp2_fwhost_info *hi = lu->hi;
1618         struct sbp2_command_orb *last_orb;
1619         dma_addr_t last_orb_dma;
1620         u64 addr = lu->command_block_agent_addr;
1621         quadlet_t data[2];
1622         size_t length;
1623         unsigned long flags;
1624
1625         /* check to see if there are any previous orbs to use */
1626         spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1627         last_orb = lu->last_orb;
1628         last_orb_dma = lu->last_orb_dma;
1629         if (!last_orb) {
1630                 /*
1631                  * last_orb == NULL means: We know that the target's fetch agent
1632                  * is not active right now.
1633                  */
1634                 addr += SBP2_ORB_POINTER_OFFSET;
1635                 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1636                 data[1] = cmd->command_orb_dma;
1637                 sbp2util_cpu_to_be32_buffer(data, 8);
1638                 length = 8;
1639         } else {
1640                 /*
1641                  * last_orb != NULL means: We know that the target's fetch agent
1642                  * is (very probably) not dead or in reset state right now.
1643                  * We have an ORB already sent that we can append a new one to.
1644                  * The target's fetch agent may or may not have read this
1645                  * previous ORB yet.
1646                  */
1647                 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
1648                                         sizeof(struct sbp2_command_orb),
1649                                         DMA_TO_DEVICE);
1650                 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
1651                 wmb();
1652                 /* Tells hardware that this pointer is valid */
1653                 last_orb->next_ORB_hi = 0;
1654                 dma_sync_single_for_device(hi->host->device.parent,
1655                                            last_orb_dma,
1656                                            sizeof(struct sbp2_command_orb),
1657                                            DMA_TO_DEVICE);
1658                 addr += SBP2_DOORBELL_OFFSET;
1659                 data[0] = 0;
1660                 length = 4;
1661         }
1662         lu->last_orb = &cmd->command_orb;
1663         lu->last_orb_dma = cmd->command_orb_dma;
1664         spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1665
1666         if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
1667                 /*
1668                  * sbp2util_node_write_no_wait failed. We certainly ran out
1669                  * of transaction labels, perhaps just because there were no
1670                  * context switches which gave khpsbpkt a chance to collect
1671                  * free tlabels. Try again in non-atomic context. If necessary,
1672                  * the workqueue job will sleep to guaranteedly get a tlabel.
1673                  * We do not accept new commands until the job is over.
1674                  */
1675                 scsi_block_requests(lu->shost);
1676                 PREPARE_WORK(&lu->protocol_work,
1677                              last_orb ? sbp2util_write_doorbell:
1678                                         sbp2util_write_orb_pointer);
1679                 schedule_work(&lu->protocol_work);
1680         }
1681 }
1682
1683 static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
1684                              void (*done)(struct scsi_cmnd *))
1685 {
1686         struct sbp2_command_info *cmd;
1687
1688         cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1689         if (!cmd)
1690                 return -EIO;
1691
1692         if (sbp2_create_command_orb(lu, cmd, SCpnt))
1693                 return -ENOMEM;
1694
1695         sbp2_link_orb_command(lu, cmd);
1696         return 0;
1697 }
1698
1699 /*
1700  * Translates SBP-2 status into SCSI sense data for check conditions
1701  */
1702 static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1703                                               unchar *sense_data)
1704 {
1705         /* OK, it's pretty ugly... ;-) */
1706         sense_data[0] = 0x70;
1707         sense_data[1] = 0x0;
1708         sense_data[2] = sbp2_status[9];
1709         sense_data[3] = sbp2_status[12];
1710         sense_data[4] = sbp2_status[13];
1711         sense_data[5] = sbp2_status[14];
1712         sense_data[6] = sbp2_status[15];
1713         sense_data[7] = 10;
1714         sense_data[8] = sbp2_status[16];
1715         sense_data[9] = sbp2_status[17];
1716         sense_data[10] = sbp2_status[18];
1717         sense_data[11] = sbp2_status[19];
1718         sense_data[12] = sbp2_status[10];
1719         sense_data[13] = sbp2_status[11];
1720         sense_data[14] = sbp2_status[20];
1721         sense_data[15] = sbp2_status[21];
1722
1723         return sbp2_status[8] & 0x3f;
1724 }
1725
1726 static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1727                                     int destid, quadlet_t *data, u64 addr,
1728                                     size_t length, u16 fl)
1729 {
1730         struct sbp2_fwhost_info *hi;
1731         struct sbp2_lu *lu = NULL, *lu_tmp;
1732         struct scsi_cmnd *SCpnt = NULL;
1733         struct sbp2_status_block *sb;
1734         u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
1735         struct sbp2_command_info *cmd;
1736         unsigned long flags;
1737
1738         if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1739                 SBP2_ERR("Wrong size of status block");
1740                 return RCODE_ADDRESS_ERROR;
1741         }
1742         if (unlikely(!host)) {
1743                 SBP2_ERR("host is NULL - this is bad!");
1744                 return RCODE_ADDRESS_ERROR;
1745         }
1746         hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
1747         if (unlikely(!hi)) {
1748                 SBP2_ERR("host info is NULL - this is bad!");
1749                 return RCODE_ADDRESS_ERROR;
1750         }
1751
1752         /* Find the unit which wrote the status. */
1753         read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
1754         list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1755                 if (lu_tmp->ne->nodeid == nodeid &&
1756                     lu_tmp->status_fifo_addr == addr) {
1757                         lu = lu_tmp;
1758                         break;
1759                 }
1760         }
1761         read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1762
1763         if (unlikely(!lu)) {
1764                 SBP2_ERR("lu is NULL - device is gone?");
1765                 return RCODE_ADDRESS_ERROR;
1766         }
1767
1768         /* Put response into lu status fifo buffer. The first two bytes
1769          * come in big endian bit order. Often the target writes only a
1770          * truncated status block, minimally the first two quadlets. The rest
1771          * is implied to be zeros. */
1772         sb = &lu->status_block;
1773         memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1774         memcpy(sb, data, length);
1775         sbp2util_be32_to_cpu_buffer(sb, 8);
1776
1777         /* Ignore unsolicited status. Handle command ORB status. */
1778         if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
1779                 cmd = NULL;
1780         else
1781                 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1782         if (cmd) {
1783                 /* Grab SCSI command pointers and check status. */
1784                 /*
1785                  * FIXME: If the src field in the status is 1, the ORB DMA must
1786                  * not be reused until status for a subsequent ORB is received.
1787                  */
1788                 SCpnt = cmd->Current_SCpnt;
1789                 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1790                 sbp2util_mark_command_completed(lu, cmd);
1791                 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1792
1793                 if (SCpnt) {
1794                         u32 h = sb->ORB_offset_hi_misc;
1795                         u32 r = STATUS_GET_RESP(h);
1796
1797                         if (r != RESP_STATUS_REQUEST_COMPLETE) {
1798                                 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
1799                                           r, STATUS_GET_SBP_STATUS(h));
1800                                 scsi_status =
1801                                         r == RESP_STATUS_TRANSPORT_FAILURE ?
1802                                         SBP2_SCSI_STATUS_BUSY :
1803                                         SBP2_SCSI_STATUS_COMMAND_TERMINATED;
1804                         }
1805
1806                         if (STATUS_GET_LEN(h) > 1)
1807                                 scsi_status = sbp2_status_to_sense_data(
1808                                         (unchar *)sb, SCpnt->sense_buffer);
1809
1810                         if (STATUS_TEST_DEAD(h))
1811                                 sbp2_agent_reset(lu, 0);
1812                 }
1813
1814                 /* Check here to see if there are no commands in-use. If there
1815                  * are none, we know that the fetch agent left the active state
1816                  * _and_ that we did not reactivate it yet. Therefore clear
1817                  * last_orb so that next time we write directly to the
1818                  * ORB_POINTER register. That way the fetch agent does not need
1819                  * to refetch the next_ORB. */
1820                 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1821                 if (list_empty(&lu->cmd_orb_inuse))
1822                         lu->last_orb = NULL;
1823                 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1824
1825         } else {
1826                 /* It's probably status after a management request. */
1827                 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1828                     (sb->ORB_offset_lo == lu->login_orb_dma) ||
1829                     (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1830                     (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1831                         lu->access_complete = 1;
1832                         wake_up_interruptible(&sbp2_access_wq);
1833                 }
1834         }
1835
1836         if (SCpnt)
1837                 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1838                                           cmd->Current_done);
1839         return RCODE_COMPLETE;
1840 }
1841
1842 /**************************************
1843  * SCSI interface related section
1844  **************************************/
1845
1846 static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1847                                  void (*done)(struct scsi_cmnd *))
1848 {
1849         struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
1850         struct sbp2_fwhost_info *hi;
1851         int result = DID_NO_CONNECT << 16;
1852
1853         if (unlikely(!sbp2util_node_is_available(lu)))
1854                 goto done;
1855
1856         hi = lu->hi;
1857
1858         if (unlikely(!hi)) {
1859                 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
1860                 goto done;
1861         }
1862
1863         /* Multiple units are currently represented to the SCSI core as separate
1864          * targets, not as one target with multiple LUs. Therefore return
1865          * selection time-out to any IO directed at non-zero LUNs. */
1866         if (unlikely(SCpnt->device->lun))
1867                 goto done;
1868
1869         if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
1870                 SBP2_ERR("Bus reset in progress - rejecting command");
1871                 result = DID_BUS_BUSY << 16;
1872                 goto done;
1873         }
1874
1875         /* Bidirectional commands are not yet implemented,
1876          * and unknown transfer direction not handled. */
1877         if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
1878                 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1879                 result = DID_ERROR << 16;
1880                 goto done;
1881         }
1882
1883         if (sbp2_send_command(lu, SCpnt, done)) {
1884                 SBP2_ERR("Error sending SCSI command");
1885                 sbp2scsi_complete_command(lu,
1886                                           SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
1887                                           SCpnt, done);
1888         }
1889         return 0;
1890
1891 done:
1892         SCpnt->result = result;
1893         done(SCpnt);
1894         return 0;
1895 }
1896
1897 static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
1898 {
1899         struct list_head *lh;
1900         struct sbp2_command_info *cmd;
1901         unsigned long flags;
1902
1903         spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1904         while (!list_empty(&lu->cmd_orb_inuse)) {
1905                 lh = lu->cmd_orb_inuse.next;
1906                 cmd = list_entry(lh, struct sbp2_command_info, list);
1907                 sbp2util_mark_command_completed(lu, cmd);
1908                 if (cmd->Current_SCpnt) {
1909                         cmd->Current_SCpnt->result = status << 16;
1910                         cmd->Current_done(cmd->Current_SCpnt);
1911                 }
1912         }
1913         spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1914
1915         return;
1916 }
1917
1918 /*
1919  * Complete a regular SCSI command. Can be called in atomic context.
1920  */
1921 static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1922                                       struct scsi_cmnd *SCpnt,
1923                                       void (*done)(struct scsi_cmnd *))
1924 {
1925         if (!SCpnt) {
1926                 SBP2_ERR("SCpnt is NULL");
1927                 return;
1928         }
1929
1930         switch (scsi_status) {
1931         case SBP2_SCSI_STATUS_GOOD:
1932                 SCpnt->result = DID_OK << 16;
1933                 break;
1934
1935         case SBP2_SCSI_STATUS_BUSY:
1936                 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1937                 SCpnt->result = DID_BUS_BUSY << 16;
1938                 break;
1939
1940         case SBP2_SCSI_STATUS_CHECK_CONDITION:
1941                 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
1942                 break;
1943
1944         case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1945                 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1946                 SCpnt->result = DID_NO_CONNECT << 16;
1947                 scsi_print_command(SCpnt);
1948                 break;
1949
1950         case SBP2_SCSI_STATUS_CONDITION_MET:
1951         case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1952         case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1953                 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1954                 SCpnt->result = DID_ERROR << 16;
1955                 scsi_print_command(SCpnt);
1956                 break;
1957
1958         default:
1959                 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1960                 SCpnt->result = DID_ERROR << 16;
1961         }
1962
1963         /* If a bus reset is in progress and there was an error, complete
1964          * the command as busy so that it will get retried. */
1965         if (!hpsb_node_entry_valid(lu->ne)
1966             && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
1967                 SBP2_ERR("Completing command with busy (bus reset)");
1968                 SCpnt->result = DID_BUS_BUSY << 16;
1969         }
1970
1971         /* Tell the SCSI stack that we're done with this command. */
1972         done(SCpnt);
1973 }
1974
1975 static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1976 {
1977         struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
1978
1979         if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0)
1980                 return -ENODEV;
1981
1982         lu->sdev = sdev;
1983         sdev->allow_restart = 1;
1984
1985         /* SBP-2 requires quadlet alignment of the data buffers. */
1986         blk_queue_update_dma_alignment(sdev->request_queue, 4 - 1);
1987
1988         if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
1989                 sdev->inquiry_len = 36;
1990         return 0;
1991 }
1992
1993 static int sbp2scsi_slave_configure(struct scsi_device *sdev)
1994 {
1995         struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
1996
1997         sdev->use_10_for_rw = 1;
1998
1999         if (sbp2_exclusive_login)
2000                 sdev->manage_start_stop = 1;
2001         if (sdev->type == TYPE_ROM)
2002                 sdev->use_10_for_ms = 1;
2003         if (sdev->type == TYPE_DISK &&
2004             lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
2005                 sdev->skip_ms_page_8 = 1;
2006         if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
2007                 sdev->fix_capacity = 1;
2008         if (lu->workarounds & SBP2_WORKAROUND_POWER_CONDITION)
2009                 sdev->start_stop_pwr_cond = 1;
2010         if (lu->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
2011                 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
2012
2013         blk_queue_max_segment_size(sdev->request_queue, SBP2_MAX_SEG_SIZE);
2014         return 0;
2015 }
2016
2017 static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2018 {
2019         ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
2020         return;
2021 }
2022
2023 /*
2024  * Called by scsi stack when something has really gone wrong.
2025  * Usually called when a command has timed-out for some reason.
2026  */
2027 static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2028 {
2029         struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
2030         struct sbp2_command_info *cmd;
2031         unsigned long flags;
2032
2033         SBP2_INFO("aborting sbp2 command");
2034         scsi_print_command(SCpnt);
2035
2036         if (sbp2util_node_is_available(lu)) {
2037                 sbp2_agent_reset(lu, 1);
2038
2039                 /* Return a matching command structure to the free pool. */
2040                 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2041                 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2042                 if (cmd) {
2043                         sbp2util_mark_command_completed(lu, cmd);
2044                         if (cmd->Current_SCpnt) {
2045                                 cmd->Current_SCpnt->result = DID_ABORT << 16;
2046                                 cmd->Current_done(cmd->Current_SCpnt);
2047                         }
2048                 }
2049                 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
2050
2051                 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
2052         }
2053
2054         return SUCCESS;
2055 }
2056
2057 /*
2058  * Called by scsi stack when something has really gone wrong.
2059  */
2060 static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
2061 {
2062         struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
2063
2064         SBP2_INFO("reset requested");
2065
2066         if (sbp2util_node_is_available(lu)) {
2067                 SBP2_INFO("generating sbp2 fetch agent reset");
2068                 sbp2_agent_reset(lu, 1);
2069         }
2070
2071         return SUCCESS;
2072 }
2073
2074 static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2075                                            struct device_attribute *attr,
2076                                            char *buf)
2077 {
2078         struct scsi_device *sdev;
2079         struct sbp2_lu *lu;
2080
2081         if (!(sdev = to_scsi_device(dev)))
2082                 return 0;
2083
2084         if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
2085                 return 0;
2086
2087         if (sbp2_long_sysfs_ieee1394_id)
2088                 return sprintf(buf, "%016Lx:%06x:%04x\n",
2089                                 (unsigned long long)lu->ne->guid,
2090                                 lu->ud->directory_id, ORB_SET_LUN(lu->lun));
2091         else
2092                 return sprintf(buf, "%016Lx:%d:%d\n",
2093                                 (unsigned long long)lu->ne->guid,
2094                                 lu->ud->id, ORB_SET_LUN(lu->lun));
2095 }
2096
2097 MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2098 MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2099 MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2100 MODULE_LICENSE("GPL");
2101
2102 static int sbp2_module_init(void)
2103 {
2104         int ret;
2105
2106         if (sbp2_serialize_io) {
2107                 sbp2_shost_template.can_queue = 1;
2108                 sbp2_shost_template.cmd_per_lun = 1;
2109         }
2110
2111         sbp2_shost_template.max_sectors = sbp2_max_sectors;
2112
2113         hpsb_register_highlevel(&sbp2_highlevel);
2114         ret = hpsb_register_protocol(&sbp2_driver);
2115         if (ret) {
2116                 SBP2_ERR("Failed to register protocol");
2117                 hpsb_unregister_highlevel(&sbp2_highlevel);
2118                 return ret;
2119         }
2120         return 0;
2121 }
2122
2123 static void __exit sbp2_module_exit(void)
2124 {
2125         hpsb_unregister_protocol(&sbp2_driver);
2126         hpsb_unregister_highlevel(&sbp2_highlevel);
2127 }
2128
2129 module_init(sbp2_module_init);
2130 module_exit(sbp2_module_exit);