Merge git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / ieee1394 / sbp2.c
CommitLineData
1da177e4
LT
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 *
2a533b17
SR
32 * You may access any attached SBP-2 (usually storage devices) as regular
33 * SCSI devices. E.g. mount /dev/sda1, fdisk, mkfs, etc..
1da177e4 34 *
2a533b17
SR
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.
1da177e4 37 *
2a533b17
SR
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
2a533b17 51 * Grep for inline FIXME comments below.
1da177e4
LT
52 */
53
4e6343a1 54#include <linux/blkdev.h>
902abed1
SR
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>
1da177e4
LT
61#include <linux/kernel.h>
62#include <linux/list.h>
f84c922b 63#include <linux/mm.h>
1da177e4
LT
64#include <linux/module.h>
65#include <linux/moduleparam.h>
f84c922b 66#include <linux/sched.h>
902abed1
SR
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>
e8398bb7 73#include <linux/wait.h>
20e2008e 74#include <linux/workqueue.h>
87ae9afd 75#include <linux/scatterlist.h>
1da177e4 76
1da177e4 77#include <asm/byteorder.h>
902abed1
SR
78#include <asm/errno.h>
79#include <asm/param.h>
902abed1
SR
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
1da177e4
LT
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"
902abed1
SR
94#include "highlevel.h"
95#include "hosts.h"
1da177e4 96#include "ieee1394.h"
1da177e4 97#include "ieee1394_core.h"
902abed1 98#include "ieee1394_hotplug.h"
1da177e4 99#include "ieee1394_transactions.h"
902abed1
SR
100#include "ieee1394_types.h"
101#include "nodemgr.h"
1da177e4
LT
102#include "sbp2.h"
103
1da177e4
LT
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 */
ca0c7453
SR
116static int sbp2_max_speed = IEEE1394_SPEED_MAX;
117module_param_named(max_speed, sbp2_max_speed, int, 0644);
28b06679
SR
118MODULE_PARM_DESC(max_speed, "Force max speed "
119 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
1da177e4
LT
120
121/*
77bba7ae
SR
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.
1da177e4 124 */
ca0c7453 125static int sbp2_serialize_io = 1;
77bba7ae
SR
126module_param_named(serialize_io, sbp2_serialize_io, bool, 0444);
127MODULE_PARM_DESC(serialize_io, "Serialize requests coming from SCSI drivers "
128 "(default = Y, faster but buggy = N)");
1da177e4
LT
129
130/*
4e6343a1
SR
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.
1da177e4 141 */
4e6343a1 142static int sbp2_max_sectors;
ca0c7453
SR
143module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
144MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
4e6343a1 145 "(default = 0 = use SCSI stack's default)");
1da177e4
LT
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
20f45781
BC
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.
1da177e4 159 */
ca0c7453 160static int sbp2_exclusive_login = 1;
77bba7ae 161module_param_named(exclusive_login, sbp2_exclusive_login, bool, 0644);
ca0c7453 162MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
77bba7ae 163 "(default = Y, use N for concurrent initiators)");
1da177e4
LT
164
165/*
24d3bf88
SR
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.
1da177e4 169 *
24d3bf88
SR
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.
e9a1c52c
SR
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.
679c0cd2 185 *
d94a9835
SR
186 * - delay inquiry
187 * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry.
188 *
3719122a
SR
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 *
679c0cd2
SR
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.
1da177e4 198 */
24d3bf88
SR
199static int sbp2_default_workarounds;
200module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
201MODULE_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)
e9a1c52c 205 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
d94a9835 206 ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY)
3719122a
SR
207 ", set power condition in start stop unit = "
208 __stringify(SBP2_WORKAROUND_POWER_CONDITION)
679c0cd2 209 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
24d3bf88
SR
210 ", or a combination)");
211
d7794c86
SR
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 */
228static int sbp2_long_sysfs_ieee1394_id;
229module_param_named(long_ieee1394_id, sbp2_long_sysfs_ieee1394_id, bool, 0644);
230MODULE_PARM_DESC(long_ieee1394_id, "8+3+2 bytes format of ieee1394_id in sysfs "
231 "(default = backwards-compatible = N, SAM-conforming = Y)");
232
1da177e4 233
edf1fb21
SR
234#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
235#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
1da177e4 236
1da177e4
LT
237/*
238 * Globals
239 */
138c8af8
SR
240static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
241static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
ea42ea0f 242 void (*)(struct scsi_cmnd *));
138c8af8
SR
243static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
244static int sbp2_start_device(struct sbp2_lu *);
245static void sbp2_remove_device(struct sbp2_lu *);
246static int sbp2_login_device(struct sbp2_lu *);
247static int sbp2_reconnect_device(struct sbp2_lu *);
248static int sbp2_logout_device(struct sbp2_lu *);
ea42ea0f
SR
249static void sbp2_host_reset(struct hpsb_host *);
250static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
251 u64, size_t, u16);
138c8af8
SR
252static int sbp2_agent_reset(struct sbp2_lu *, int);
253static void sbp2_parse_unit_directory(struct sbp2_lu *,
ea42ea0f 254 struct unit_directory *);
138c8af8
SR
255static int sbp2_set_busy_timeout(struct sbp2_lu *);
256static int sbp2_max_speed_and_size(struct sbp2_lu *);
1da177e4 257
1da177e4
LT
258
259static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
260
261b5f66
SR
261static DEFINE_RWLOCK(sbp2_hi_logical_units_lock);
262
1da177e4 263static struct hpsb_highlevel sbp2_highlevel = {
ea42ea0f
SR
264 .name = SBP2_DEVICE_NAME,
265 .host_reset = sbp2_host_reset,
1da177e4
LT
266};
267
b17a5509 268const static struct hpsb_address_ops sbp2_ops = {
ea42ea0f 269 .write = sbp2_handle_status_write
1da177e4
LT
270};
271
272#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
ea42ea0f
SR
273static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
274 u64, size_t, u16);
275static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
276 size_t, u16);
277
b17a5509 278const static struct hpsb_address_ops sbp2_physdma_ops = {
ea42ea0f
SR
279 .read = sbp2_handle_physdma_read,
280 .write = sbp2_handle_physdma_write,
1da177e4
LT
281};
282#endif
283
ea42ea0f
SR
284
285/*
286 * Interface to driver core and IEEE 1394 core
287 */
288static 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};
295MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
296
297static int sbp2_probe(struct device *);
298static int sbp2_remove(struct device *);
299static int sbp2_update(struct unit_directory *);
300
1da177e4 301static struct hpsb_protocol_driver sbp2_driver = {
ed30c26e 302 .name = SBP2_DEVICE_NAME,
1da177e4
LT
303 .id_table = sbp2_id_table,
304 .update = sbp2_update,
305 .driver = {
1da177e4
LT
306 .probe = sbp2_probe,
307 .remove = sbp2_remove,
308 },
309};
310
ea42ea0f
SR
311
312/*
313 * Interface to SCSI core
314 */
315static int sbp2scsi_queuecommand(struct scsi_cmnd *,
316 void (*)(struct scsi_cmnd *));
317static int sbp2scsi_abort(struct scsi_cmnd *);
318static int sbp2scsi_reset(struct scsi_cmnd *);
319static int sbp2scsi_slave_alloc(struct scsi_device *);
320static int sbp2scsi_slave_configure(struct scsi_device *);
321static void sbp2scsi_slave_destroy(struct scsi_device *);
322static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
323 struct device_attribute *, char *);
324
325static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
326
327static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
328 &dev_attr_ieee1394_id,
329 NULL
330};
331
ca0c7453 332static struct scsi_host_template sbp2_shost_template = {
ea42ea0f
SR
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,
ea42ea0f
SR
347 .sdev_attrs = sbp2_sysfs_sdev_attrs,
348};
349
4618fd30
SR
350/* for match-all entries in sbp2_workarounds_table */
351#define SBP2_ROM_VALUE_WILDCARD 0x1000000
ea42ea0f 352
a80614d1 353/*
24d3bf88
SR
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.
a80614d1 359 */
24d3bf88
SR
360static const struct {
361 u32 firmware_revision;
e9a1c52c 362 u32 model_id;
24d3bf88
SR
363 unsigned workarounds;
364} sbp2_workarounds_table[] = {
4b9a3347 365 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
24d3bf88 366 .firmware_revision = 0x002800,
4b9a3347 367 .model_id = 0x001010,
24d3bf88 368 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
3719122a
SR
369 SBP2_WORKAROUND_MODE_SENSE_8 |
370 SBP2_WORKAROUND_POWER_CONDITION,
24d3bf88 371 },
d94a9835
SR
372 /* DViCO Momobay FX-3A with TSB42AA9A bridge */ {
373 .firmware_revision = 0x002800,
374 .model_id = 0x000000,
3719122a
SR
375 .workarounds = SBP2_WORKAROUND_DELAY_INQUIRY |
376 SBP2_WORKAROUND_POWER_CONDITION,
d94a9835 377 },
24d3bf88
SR
378 /* Initio bridges, actually only needed for some older ones */ {
379 .firmware_revision = 0x000200,
4618fd30 380 .model_id = SBP2_ROM_VALUE_WILDCARD,
24d3bf88
SR
381 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
382 },
3719122a
SR
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 },
24d3bf88
SR
388 /* Symbios bridge */ {
389 .firmware_revision = 0xa0b800,
4618fd30 390 .model_id = SBP2_ROM_VALUE_WILDCARD,
24d3bf88 391 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
e9a1c52c 392 },
6e45ef4c
SR
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 },
e9a1c52c
SR
398 /* iPod 4th generation */ {
399 .firmware_revision = 0x0a2700,
400 .model_id = 0x000021,
401 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
402 },
9e0de910
SR
403 /* iPod mini */ {
404 .firmware_revision = 0x0a2700,
405 .model_id = 0x000022,
406 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
407 },
e9a1c52c
SR
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,
24d3bf88 417 }
1da177e4
LT
418};
419
1da177e4
LT
420/**************************************
421 * General utility functions
422 **************************************/
423
1da177e4
LT
424#ifndef __BIG_ENDIAN
425/*
426 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
427 */
2b01b80b 428static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
1da177e4
LT
429{
430 u32 *temp = buffer;
431
432 for (length = (length >> 2); length--; )
433 temp[length] = be32_to_cpu(temp[length]);
1da177e4
LT
434}
435
436/*
437 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
438 */
2b01b80b 439static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
1da177e4
LT
440{
441 u32 *temp = buffer;
442
443 for (length = (length >> 2); length--; )
444 temp[length] = cpu_to_be32(temp[length]);
1da177e4
LT
445}
446#else /* BIG_ENDIAN */
447/* Why waste the cpu cycles? */
611aa19f
SR
448#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
449#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
1da177e4
LT
450#endif
451
ca0c7453 452static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
e8398bb7 453
1da177e4 454/*
e8398bb7
SR
455 * Waits for completion of an SBP-2 access request.
456 * Returns nonzero if timed out or prematurely interrupted.
1da177e4 457 */
138c8af8 458static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
1da177e4 459{
ca0c7453 460 long leftover;
1da177e4 461
ca0c7453 462 leftover = wait_event_interruptible_timeout(
138c8af8
SR
463 sbp2_access_wq, lu->access_complete, timeout);
464 lu->access_complete = 0;
e8398bb7 465 return leftover <= 0;
1da177e4
LT
466}
467
138c8af8 468static void sbp2_free_packet(void *packet)
1da177e4
LT
469{
470 hpsb_free_tlabel(packet);
471 hpsb_free_packet(packet);
472}
473
e8ca5668
SR
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.
1da177e4
LT
477 */
478static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
138c8af8 479 quadlet_t *buf, size_t len)
1da177e4
LT
480{
481 struct hpsb_packet *packet;
482
138c8af8 483 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
a237f35f
SR
484 if (!packet)
485 return -ENOMEM;
1da177e4 486
138c8af8 487 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
1da177e4 488 hpsb_node_fill_packet(ne, packet);
a237f35f 489 if (hpsb_send_packet(packet) < 0) {
1da177e4
LT
490 sbp2_free_packet(packet);
491 return -EIO;
492 }
1da177e4
LT
493 return 0;
494}
495
138c8af8
SR
496static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
497 quadlet_t *data, size_t len)
09ee67ab 498{
138c8af8
SR
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))
09ee67ab
SR
502 return;
503
138c8af8 504 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
09ee67ab
SR
505 data, len))
506 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
138c8af8
SR
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);
09ee67ab
SR
512}
513
c4028958 514static void sbp2util_write_orb_pointer(struct work_struct *work)
09ee67ab 515{
ec9b7e10 516 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
09ee67ab
SR
517 quadlet_t data[2];
518
ec9b7e10
SR
519 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
520 data[1] = lu->last_orb_dma;
09ee67ab 521 sbp2util_cpu_to_be32_buffer(data, 8);
ec9b7e10 522 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
09ee67ab
SR
523}
524
c4028958 525static void sbp2util_write_doorbell(struct work_struct *work)
09ee67ab 526{
ec9b7e10
SR
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);
09ee67ab
SR
530}
531
138c8af8 532static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
1da177e4 533{
138c8af8 534 struct sbp2_command_info *cmd;
cd8c79f1 535 struct device *dmadev = lu->hi->host->device.parent;
3d269cb5 536 int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
1da177e4 537
1da177e4 538 for (i = 0; i < orbs; i++) {
3d269cb5
SR
539 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
540 if (!cmd)
cd8c79f1
SR
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
138c8af8
SR
557 INIT_LIST_HEAD(&cmd->list);
558 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
1da177e4 559 }
1da177e4 560 return 0;
cd8c79f1
SR
561
562failed_sge:
563 dma_unmap_single(dmadev, cmd->command_orb_dma,
564 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
565failed_orb:
566 kfree(cmd);
567failed_alloc:
568 return -ENOMEM;
1da177e4
LT
569}
570
a2ee3f9b
SR
571static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu,
572 struct hpsb_host *host)
1da177e4 573{
1da177e4 574 struct list_head *lh, *next;
138c8af8 575 struct sbp2_command_info *cmd;
1da177e4
LT
576 unsigned long flags;
577
138c8af8
SR
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);
97d552e3
SR
582 dma_unmap_single(host->device.parent,
583 cmd->command_orb_dma,
1da177e4 584 sizeof(struct sbp2_command_orb),
9b7d9c09 585 DMA_TO_DEVICE);
97d552e3 586 dma_unmap_single(host->device.parent, cmd->sge_dma,
138c8af8 587 sizeof(cmd->scatter_gather_element),
2446a79f 588 DMA_TO_DEVICE);
138c8af8 589 kfree(cmd);
1da177e4 590 }
138c8af8 591 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4
LT
592 return;
593}
594
595/*
e8ca5668
SR
596 * Finds the sbp2_command for a given outstanding command ORB.
597 * Only looks at the in-use list.
1da177e4
LT
598 */
599static struct sbp2_command_info *sbp2util_find_command_for_orb(
138c8af8 600 struct sbp2_lu *lu, dma_addr_t orb)
1da177e4 601{
138c8af8 602 struct sbp2_command_info *cmd;
1da177e4
LT
603 unsigned long flags;
604
138c8af8
SR
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;
1da177e4 612 }
138c8af8 613 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
a237f35f 614 return NULL;
1da177e4
LT
615}
616
617/*
e8ca5668
SR
618 * Finds the sbp2_command for a given outstanding SCpnt.
619 * Only looks at the in-use list.
138c8af8 620 * Must be called with lu->cmd_orb_lock held.
1da177e4 621 */
24c7cd06 622static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
138c8af8 623 struct sbp2_lu *lu, void *SCpnt)
1da177e4 624{
138c8af8 625 struct sbp2_command_info *cmd;
1da177e4 626
138c8af8
SR
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;
a237f35f 631 return NULL;
1da177e4
LT
632}
633
1da177e4 634static struct sbp2_command_info *sbp2util_allocate_command_orb(
138c8af8
SR
635 struct sbp2_lu *lu,
636 struct scsi_cmnd *Current_SCpnt,
637 void (*Current_done)(struct scsi_cmnd *))
1da177e4
LT
638{
639 struct list_head *lh;
138c8af8 640 struct sbp2_command_info *cmd = NULL;
1da177e4
LT
641 unsigned long flags;
642
138c8af8
SR
643 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
644 if (!list_empty(&lu->cmd_orb_completed)) {
645 lh = lu->cmd_orb_completed.next;
1da177e4 646 list_del(lh);
138c8af8
SR
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
b1ce1fd7 652 SBP2_ERR("%s: no orbs available", __func__);
138c8af8
SR
653 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
654 return cmd;
1da177e4
LT
655}
656
58272c1c
SR
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 */
661static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
662 struct sbp2_command_info *cmd)
1da177e4 663{
ed6ffd08
SR
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);
cd641f68 669 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
1da177e4
LT
670}
671
abd559b1 672/*
138c8af8 673 * Is lu valid? Is the 1394 node still present?
abd559b1 674 */
138c8af8 675static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
abd559b1 676{
138c8af8 677 return lu && lu->ne && !lu->ne->in_limbo;
abd559b1
JM
678}
679
1da177e4
LT
680/*********************************************
681 * IEEE-1394 core driver stack related section
682 *********************************************/
1da177e4
LT
683
684static int sbp2_probe(struct device *dev)
685{
686 struct unit_directory *ud;
138c8af8 687 struct sbp2_lu *lu;
1da177e4 688
1da177e4
LT
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
138c8af8
SR
696 lu = sbp2_alloc_device(ud);
697 if (!lu)
a237f35f 698 return -ENOMEM;
1da177e4 699
138c8af8
SR
700 sbp2_parse_unit_directory(lu, ud);
701 return sbp2_start_device(lu);
1da177e4
LT
702}
703
704static int sbp2_remove(struct device *dev)
705{
706 struct unit_directory *ud;
138c8af8 707 struct sbp2_lu *lu;
abd559b1 708 struct scsi_device *sdev;
1da177e4 709
1da177e4 710 ud = container_of(dev, struct unit_directory, device);
138c8af8
SR
711 lu = ud->device.driver_data;
712 if (!lu)
abd559b1
JM
713 return 0;
714
138c8af8 715 if (lu->shost) {
bf637ec3
SR
716 /* Get rid of enqueued commands if there is no chance to
717 * send them. */
138c8af8
SR
718 if (!sbp2util_node_is_available(lu))
719 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
e8ca5668 720 /* scsi_remove_device() may trigger shutdown functions of SCSI
bf637ec3 721 * highlevel drivers which would deadlock if blocked. */
138c8af8
SR
722 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
723 scsi_unblock_requests(lu->shost);
bf637ec3 724 }
138c8af8 725 sdev = lu->sdev;
abd559b1 726 if (sdev) {
138c8af8 727 lu->sdev = NULL;
abd559b1
JM
728 scsi_remove_device(sdev);
729 }
1da177e4 730
138c8af8
SR
731 sbp2_logout_device(lu);
732 sbp2_remove_device(lu);
1da177e4
LT
733
734 return 0;
735}
736
737static int sbp2_update(struct unit_directory *ud)
738{
138c8af8 739 struct sbp2_lu *lu = ud->device.driver_data;
1da177e4 740
a3384067
SR
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 */
138c8af8 754 sbp2_logout_device(lu);
1da177e4 755
a3384067
SR
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. */
1da177e4
LT
761 SBP2_ERR("Failed to reconnect to sbp2 device!");
762 return -EBUSY;
763 }
764 }
765
138c8af8
SR
766 sbp2_set_busy_timeout(lu);
767 sbp2_agent_reset(lu, 1);
768 sbp2_max_speed_and_size(lu);
1da177e4 769
e8ca5668
SR
770 /* Complete any pending commands with busy (so they get retried)
771 * and remove them from our queue. */
138c8af8 772 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
1da177e4 773
4fc383c0
SR
774 /* Accept new commands unless there was another bus reset in the
775 * meantime. */
138c8af8
SR
776 if (hpsb_node_entry_valid(lu->ne)) {
777 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
778 scsi_unblock_requests(lu->shost);
4fc383c0 779 }
1da177e4
LT
780 return 0;
781}
782
138c8af8 783static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
1da177e4 784{
ca0c7453 785 struct sbp2_fwhost_info *hi;
138c8af8
SR
786 struct Scsi_Host *shost = NULL;
787 struct sbp2_lu *lu = NULL;
261b5f66 788 unsigned long flags;
1da177e4 789
138c8af8
SR
790 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
791 if (!lu) {
792 SBP2_ERR("failed to create lu");
1da177e4
LT
793 goto failed_alloc;
794 }
1da177e4 795
138c8af8
SR
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);
1da177e4 807
138c8af8 808 ud->device.driver_data = lu;
1da177e4
LT
809
810 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
811 if (!hi) {
138c8af8
SR
812 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
813 sizeof(*hi));
1da177e4
LT
814 if (!hi) {
815 SBP2_ERR("failed to allocate hostinfo");
816 goto failed_alloc;
817 }
1da177e4 818 hi->host = ud->ne->host;
138c8af8 819 INIT_LIST_HEAD(&hi->logical_units);
1da177e4 820
1da177e4
LT
821#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
822 /* Handle data movement if physical dma is not
55664051
SR
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 }
1da177e4
LT
830#endif
831 }
832
ed6ffd08
SR
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
147830f2
SR
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
138c8af8 843 lu->hi = hi;
1da177e4 844
261b5f66 845 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
138c8af8 846 list_add_tail(&lu->lu_list, &hi->logical_units);
261b5f66 847 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1da177e4 848
35bdddb8
SR
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
a54c9d30
SR
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 */
138c8af8 857 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
35bdddb8
SR
858 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
859 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
40ae6c5e 860 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
138c8af8 861 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
35bdddb8
SR
862 SBP2_ERR("failed to allocate status FIFO address range");
863 goto failed_alloc;
864 }
865
138c8af8
SR
866 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
867 if (!shost) {
1da177e4
LT
868 SBP2_ERR("failed to register scsi host");
869 goto failed_alloc;
870 }
871
138c8af8 872 shost->hostdata[0] = (unsigned long)lu;
1da177e4 873
138c8af8
SR
874 if (!scsi_add_host(shost, &ud->device)) {
875 lu->shost = shost;
876 return lu;
1da177e4
LT
877 }
878
879 SBP2_ERR("failed to add scsi host");
138c8af8 880 scsi_host_put(shost);
1da177e4
LT
881
882failed_alloc:
138c8af8 883 sbp2_remove_device(lu);
1da177e4
LT
884 return NULL;
885}
886
1da177e4
LT
887static void sbp2_host_reset(struct hpsb_host *host)
888{
ca0c7453 889 struct sbp2_fwhost_info *hi;
138c8af8 890 struct sbp2_lu *lu;
261b5f66 891 unsigned long flags;
1da177e4
LT
892
893 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
2cccbb55
SR
894 if (!hi)
895 return;
261b5f66
SR
896
897 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
2642b112 898
138c8af8 899 list_for_each_entry(lu, &hi->logical_units, lu_list)
2642b112
SR
900 if (atomic_cmpxchg(&lu->state,
901 SBP2LU_STATE_RUNNING, SBP2LU_STATE_IN_RESET)
902 == SBP2LU_STATE_RUNNING)
138c8af8 903 scsi_block_requests(lu->shost);
2642b112 904
261b5f66 905 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1da177e4
LT
906}
907
138c8af8 908static int sbp2_start_device(struct sbp2_lu *lu)
1da177e4 909{
138c8af8 910 struct sbp2_fwhost_info *hi = lu->hi;
146f7262 911 int error;
1da177e4 912
97d552e3 913 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
a237f35f 914 sizeof(struct sbp2_login_response),
9b7d9c09 915 &lu->login_response_dma, GFP_KERNEL);
138c8af8 916 if (!lu->login_response)
1da177e4 917 goto alloc_fail;
1da177e4 918
97d552e3 919 lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
a237f35f 920 sizeof(struct sbp2_query_logins_orb),
9b7d9c09 921 &lu->query_logins_orb_dma, GFP_KERNEL);
138c8af8 922 if (!lu->query_logins_orb)
1da177e4 923 goto alloc_fail;
1da177e4 924
97d552e3 925 lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
a237f35f 926 sizeof(struct sbp2_query_logins_response),
9b7d9c09 927 &lu->query_logins_response_dma, GFP_KERNEL);
138c8af8 928 if (!lu->query_logins_response)
1da177e4 929 goto alloc_fail;
1da177e4 930
97d552e3 931 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
a237f35f 932 sizeof(struct sbp2_reconnect_orb),
9b7d9c09 933 &lu->reconnect_orb_dma, GFP_KERNEL);
138c8af8 934 if (!lu->reconnect_orb)
1da177e4 935 goto alloc_fail;
1da177e4 936
97d552e3 937 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
a237f35f 938 sizeof(struct sbp2_logout_orb),
9b7d9c09 939 &lu->logout_orb_dma, GFP_KERNEL);
138c8af8 940 if (!lu->logout_orb)
1da177e4 941 goto alloc_fail;
1da177e4 942
97d552e3 943 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
a237f35f 944 sizeof(struct sbp2_login_orb),
9b7d9c09 945 &lu->login_orb_dma, GFP_KERNEL);
138c8af8 946 if (!lu->login_orb)
eaceec7f 947 goto alloc_fail;
1da177e4 948
3d269cb5
SR
949 if (sbp2util_create_command_orb_pool(lu))
950 goto alloc_fail;
1da177e4 951
e8ca5668
SR
952 /* Wait a second before trying to log in. Previously logged in
953 * initiators need a chance to reconnect. */
902abed1 954 if (msleep_interruptible(1000)) {
138c8af8 955 sbp2_remove_device(lu);
1da177e4
LT
956 return -EINTR;
957 }
a237f35f 958
138c8af8
SR
959 if (sbp2_login_device(lu)) {
960 sbp2_remove_device(lu);
1da177e4
LT
961 return -EBUSY;
962 }
963
138c8af8
SR
964 sbp2_set_busy_timeout(lu);
965 sbp2_agent_reset(lu, 1);
966 sbp2_max_speed_and_size(lu);
1da177e4 967
d94a9835
SR
968 if (lu->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY)
969 ssleep(SBP2_INQUIRY_DELAY);
970
138c8af8 971 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
146f7262 972 if (error) {
1da177e4 973 SBP2_ERR("scsi_add_device failed");
138c8af8
SR
974 sbp2_logout_device(lu);
975 sbp2_remove_device(lu);
146f7262 976 return error;
1da177e4
LT
977 }
978
979 return 0;
eaceec7f
SR
980
981alloc_fail:
138c8af8
SR
982 SBP2_ERR("Could not allocate memory for lu");
983 sbp2_remove_device(lu);
eaceec7f 984 return -ENOMEM;
1da177e4
LT
985}
986
138c8af8 987static void sbp2_remove_device(struct sbp2_lu *lu)
1da177e4 988{
ca0c7453 989 struct sbp2_fwhost_info *hi;
261b5f66 990 unsigned long flags;
1da177e4 991
138c8af8 992 if (!lu)
1da177e4 993 return;
138c8af8 994 hi = lu->hi;
a2ee3f9b
SR
995 if (!hi)
996 goto no_hi;
1da177e4 997
138c8af8
SR
998 if (lu->shost) {
999 scsi_remove_host(lu->shost);
1000 scsi_host_put(lu->shost);
1da177e4 1001 }
09ee67ab 1002 flush_scheduled_work();
a2ee3f9b 1003 sbp2util_remove_command_orb_pool(lu, hi->host);
1da177e4 1004
261b5f66 1005 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
138c8af8 1006 list_del(&lu->lu_list);
261b5f66 1007 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1da177e4 1008
138c8af8 1009 if (lu->login_response)
97d552e3 1010 dma_free_coherent(hi->host->device.parent,
1da177e4 1011 sizeof(struct sbp2_login_response),
138c8af8
SR
1012 lu->login_response,
1013 lu->login_response_dma);
1014 if (lu->login_orb)
97d552e3 1015 dma_free_coherent(hi->host->device.parent,
1da177e4 1016 sizeof(struct sbp2_login_orb),
138c8af8
SR
1017 lu->login_orb,
1018 lu->login_orb_dma);
1019 if (lu->reconnect_orb)
97d552e3 1020 dma_free_coherent(hi->host->device.parent,
1da177e4 1021 sizeof(struct sbp2_reconnect_orb),
138c8af8
SR
1022 lu->reconnect_orb,
1023 lu->reconnect_orb_dma);
1024 if (lu->logout_orb)
97d552e3 1025 dma_free_coherent(hi->host->device.parent,
1da177e4 1026 sizeof(struct sbp2_logout_orb),
138c8af8
SR
1027 lu->logout_orb,
1028 lu->logout_orb_dma);
1029 if (lu->query_logins_orb)
97d552e3 1030 dma_free_coherent(hi->host->device.parent,
1da177e4 1031 sizeof(struct sbp2_query_logins_orb),
138c8af8
SR
1032 lu->query_logins_orb,
1033 lu->query_logins_orb_dma);
1034 if (lu->query_logins_response)
97d552e3 1035 dma_free_coherent(hi->host->device.parent,
1da177e4 1036 sizeof(struct sbp2_query_logins_response),
138c8af8
SR
1037 lu->query_logins_response,
1038 lu->query_logins_response_dma);
1da177e4 1039
138c8af8 1040 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
35bdddb8 1041 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
138c8af8 1042 lu->status_fifo_addr);
35bdddb8 1043
138c8af8 1044 lu->ud->device.driver_data = NULL;
1da177e4 1045
a2ee3f9b
SR
1046 module_put(hi->host->driver->owner);
1047no_hi:
138c8af8 1048 kfree(lu);
1da177e4
LT
1049}
1050
1051#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1052/*
e8ca5668
SR
1053 * Deal with write requests on adapters which do not support physical DMA or
1054 * have it switched off.
1da177e4 1055 */
a237f35f
SR
1056static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1057 int destid, quadlet_t *data, u64 addr,
1058 size_t length, u16 flags)
1da177e4 1059{
a237f35f 1060 memcpy(bus_to_virt((u32) addr), data, length);
a237f35f 1061 return RCODE_COMPLETE;
1da177e4
LT
1062}
1063
1064/*
e8ca5668
SR
1065 * Deal with read requests on adapters which do not support physical DMA or
1066 * have it switched off.
1da177e4 1067 */
a237f35f
SR
1068static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1069 quadlet_t *data, u64 addr, size_t length,
1070 u16 flags)
1da177e4 1071{
a237f35f 1072 memcpy(data, bus_to_virt((u32) addr), length);
a237f35f 1073 return RCODE_COMPLETE;
1da177e4
LT
1074}
1075#endif
1076
1da177e4
LT
1077/**************************************
1078 * SBP-2 protocol related section
1079 **************************************/
1080
138c8af8 1081static int sbp2_query_logins(struct sbp2_lu *lu)
1da177e4 1082{
138c8af8 1083 struct sbp2_fwhost_info *hi = lu->hi;
1da177e4
LT
1084 quadlet_t data[2];
1085 int max_logins;
1086 int active_logins;
1087
138c8af8
SR
1088 lu->query_logins_orb->reserved1 = 0x0;
1089 lu->query_logins_orb->reserved2 = 0x0;
1da177e4 1090
138c8af8
SR
1091 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1092 lu->query_logins_orb->query_response_hi =
1093 ORB_SET_NODE_ID(hi->host->node_id);
1094 lu->query_logins_orb->lun_misc =
1095 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1096 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1097 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
1da177e4 1098
138c8af8
SR
1099 lu->query_logins_orb->reserved_resp_length =
1100 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1101 sizeof(struct sbp2_query_logins_response));
1da177e4 1102
138c8af8
SR
1103 lu->query_logins_orb->status_fifo_hi =
1104 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1105 lu->query_logins_orb->status_fifo_lo =
1106 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1da177e4 1107
138c8af8
SR
1108 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1109 sizeof(struct sbp2_query_logins_orb));
1da177e4 1110
138c8af8
SR
1111 memset(lu->query_logins_response, 0,
1112 sizeof(struct sbp2_query_logins_response));
1da177e4 1113
1da177e4 1114 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
138c8af8 1115 data[1] = lu->query_logins_orb_dma;
1da177e4
LT
1116 sbp2util_cpu_to_be32_buffer(data, 8);
1117
138c8af8 1118 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1da177e4 1119
138c8af8 1120 if (sbp2util_access_timeout(lu, 2*HZ)) {
1da177e4 1121 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
a237f35f 1122 return -EIO;
1da177e4
LT
1123 }
1124
138c8af8 1125 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
1da177e4 1126 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
a237f35f 1127 return -EIO;
1da177e4
LT
1128 }
1129
138c8af8 1130 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
6065772d 1131 SBP2_INFO("Error querying logins to SBP-2 device - failed");
a237f35f 1132 return -EIO;
1da177e4
LT
1133 }
1134
138c8af8
SR
1135 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1136 sizeof(struct sbp2_query_logins_response));
1da177e4 1137
138c8af8
SR
1138 max_logins = RESPONSE_GET_MAX_LOGINS(
1139 lu->query_logins_response->length_max_logins);
20f45781 1140 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
1da177e4 1141
138c8af8
SR
1142 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1143 lu->query_logins_response->length_max_logins);
20f45781 1144 SBP2_INFO("Number of active logins: %d", active_logins);
1da177e4
LT
1145
1146 if (active_logins >= max_logins) {
a237f35f 1147 return -EIO;
1da177e4
LT
1148 }
1149
1150 return 0;
1151}
1152
138c8af8 1153static int sbp2_login_device(struct sbp2_lu *lu)
1da177e4 1154{
138c8af8 1155 struct sbp2_fwhost_info *hi = lu->hi;
1da177e4
LT
1156 quadlet_t data[2];
1157
138c8af8 1158 if (!lu->login_orb)
a237f35f 1159 return -EIO;
1da177e4 1160
138c8af8 1161 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
ca0c7453
SR
1162 SBP2_INFO("Device does not support any more concurrent logins");
1163 return -EIO;
1da177e4
LT
1164 }
1165
e8ca5668 1166 /* assume no password */
138c8af8
SR
1167 lu->login_orb->password_hi = 0;
1168 lu->login_orb->password_lo = 0;
1da177e4 1169
138c8af8
SR
1170 lu->login_orb->login_response_lo = lu->login_response_dma;
1171 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1172 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
e8ca5668
SR
1173
1174 /* one second reconnect time */
138c8af8
SR
1175 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1176 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1177 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1178 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
1da177e4 1179
138c8af8 1180 lu->login_orb->passwd_resp_lengths =
1da177e4 1181 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
1da177e4 1182
138c8af8
SR
1183 lu->login_orb->status_fifo_hi =
1184 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1185 lu->login_orb->status_fifo_lo =
1186 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1da177e4 1187
138c8af8
SR
1188 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1189 sizeof(struct sbp2_login_orb));
1da177e4 1190
138c8af8 1191 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
1da177e4 1192
1da177e4 1193 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
138c8af8 1194 data[1] = lu->login_orb_dma;
1da177e4
LT
1195 sbp2util_cpu_to_be32_buffer(data, 8);
1196
138c8af8 1197 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1da177e4 1198
e8ca5668 1199 /* wait up to 20 seconds for login status */
138c8af8 1200 if (sbp2util_access_timeout(lu, 20*HZ)) {
e8398bb7 1201 SBP2_ERR("Error logging into SBP-2 device - timed out");
a237f35f 1202 return -EIO;
1da177e4
LT
1203 }
1204
e8ca5668 1205 /* make sure that the returned status matches the login ORB */
138c8af8 1206 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
6065772d 1207 SBP2_ERR("Error logging into SBP-2 device - timed out");
a237f35f 1208 return -EIO;
1da177e4
LT
1209 }
1210
138c8af8 1211 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
6065772d 1212 SBP2_ERR("Error logging into SBP-2 device - failed");
a237f35f 1213 return -EIO;
1da177e4
LT
1214 }
1215
138c8af8
SR
1216 sbp2util_cpu_to_be32_buffer(lu->login_response,
1217 sizeof(struct sbp2_login_response));
1218 lu->command_block_agent_addr =
1219 ((u64)lu->login_response->command_block_agent_hi) << 32;
1220 lu->command_block_agent_addr |=
1221 ((u64)lu->login_response->command_block_agent_lo);
1222 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
1da177e4
LT
1223
1224 SBP2_INFO("Logged into SBP-2 device");
a237f35f 1225 return 0;
1da177e4
LT
1226}
1227
138c8af8 1228static int sbp2_logout_device(struct sbp2_lu *lu)
1da177e4 1229{
138c8af8 1230 struct sbp2_fwhost_info *hi = lu->hi;
1da177e4
LT
1231 quadlet_t data[2];
1232 int error;
1233
138c8af8
SR
1234 lu->logout_orb->reserved1 = 0x0;
1235 lu->logout_orb->reserved2 = 0x0;
1236 lu->logout_orb->reserved3 = 0x0;
1237 lu->logout_orb->reserved4 = 0x0;
1da177e4 1238
138c8af8
SR
1239 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1240 lu->logout_orb->login_ID_misc |=
1241 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1242 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1da177e4 1243
138c8af8
SR
1244 lu->logout_orb->reserved5 = 0x0;
1245 lu->logout_orb->status_fifo_hi =
1246 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1247 lu->logout_orb->status_fifo_lo =
1248 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1da177e4 1249
138c8af8
SR
1250 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1251 sizeof(struct sbp2_logout_orb));
1da177e4 1252
1da177e4 1253 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
138c8af8 1254 data[1] = lu->logout_orb_dma;
1da177e4
LT
1255 sbp2util_cpu_to_be32_buffer(data, 8);
1256
138c8af8 1257 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1da177e4
LT
1258 if (error)
1259 return error;
1260
e8ca5668 1261 /* wait up to 1 second for the device to complete logout */
138c8af8 1262 if (sbp2util_access_timeout(lu, HZ))
1da177e4
LT
1263 return -EIO;
1264
1265 SBP2_INFO("Logged out of SBP-2 device");
a237f35f 1266 return 0;
1da177e4
LT
1267}
1268
138c8af8 1269static int sbp2_reconnect_device(struct sbp2_lu *lu)
1da177e4 1270{
138c8af8 1271 struct sbp2_fwhost_info *hi = lu->hi;
1da177e4
LT
1272 quadlet_t data[2];
1273 int error;
1274
138c8af8
SR
1275 lu->reconnect_orb->reserved1 = 0x0;
1276 lu->reconnect_orb->reserved2 = 0x0;
1277 lu->reconnect_orb->reserved3 = 0x0;
1278 lu->reconnect_orb->reserved4 = 0x0;
1da177e4 1279
138c8af8
SR
1280 lu->reconnect_orb->login_ID_misc =
1281 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1282 lu->reconnect_orb->login_ID_misc |=
1283 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1284 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1da177e4 1285
138c8af8
SR
1286 lu->reconnect_orb->reserved5 = 0x0;
1287 lu->reconnect_orb->status_fifo_hi =
1288 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1289 lu->reconnect_orb->status_fifo_lo =
1290 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
1da177e4 1291
138c8af8
SR
1292 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1293 sizeof(struct sbp2_reconnect_orb));
1da177e4 1294
1da177e4 1295 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
138c8af8 1296 data[1] = lu->reconnect_orb_dma;
1da177e4
LT
1297 sbp2util_cpu_to_be32_buffer(data, 8);
1298
138c8af8 1299 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
1da177e4
LT
1300 if (error)
1301 return error;
1302
e8ca5668 1303 /* wait up to 1 second for reconnect status */
138c8af8 1304 if (sbp2util_access_timeout(lu, HZ)) {
e8398bb7 1305 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
a237f35f 1306 return -EIO;
1da177e4
LT
1307 }
1308
e8ca5668 1309 /* make sure that the returned status matches the reconnect ORB */
138c8af8 1310 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
6065772d 1311 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
a237f35f 1312 return -EIO;
1da177e4
LT
1313 }
1314
138c8af8 1315 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
6065772d 1316 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
a237f35f 1317 return -EIO;
1da177e4
LT
1318 }
1319
35644090 1320 SBP2_INFO("Reconnected to SBP-2 device");
a237f35f 1321 return 0;
1da177e4
LT
1322}
1323
1324/*
e8ca5668
SR
1325 * Set the target node's Single Phase Retry limit. Affects the target's retry
1326 * behaviour if our node is too busy to accept requests.
1da177e4 1327 */
138c8af8 1328static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
1da177e4
LT
1329{
1330 quadlet_t data;
1331
1da177e4 1332 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
138c8af8 1333 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
b1ce1fd7 1334 SBP2_ERR("%s error", __func__);
a237f35f 1335 return 0;
1da177e4
LT
1336}
1337
138c8af8 1338static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
1da177e4
LT
1339 struct unit_directory *ud)
1340{
1341 struct csr1212_keyval *kv;
1342 struct csr1212_dentry *dentry;
1343 u64 management_agent_addr;
9117c6dc 1344 u32 unit_characteristics, firmware_revision;
24d3bf88 1345 unsigned workarounds;
1da177e4
LT
1346 int i;
1347
9117c6dc
SR
1348 management_agent_addr = 0;
1349 unit_characteristics = 0;
1350 firmware_revision = 0;
1da177e4 1351
1da177e4
LT
1352 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1353 switch (kv->key.id) {
1354 case CSR1212_KV_ID_DEPENDENT_INFO:
edf1fb21 1355 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
1da177e4 1356 management_agent_addr =
a237f35f
SR
1357 CSR1212_REGISTER_SPACE_BASE +
1358 (kv->value.csr_offset << 2);
1da177e4 1359
edf1fb21 1360 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
138c8af8 1361 lu->lun = ORB_SET_LUN(kv->value.immediate);
1da177e4
LT
1362 break;
1363
1da177e4 1364 case SBP2_UNIT_CHARACTERISTICS_KEY:
e8ca5668
SR
1365 /* FIXME: This is ignored so far.
1366 * See SBP-2 clause 7.4.8. */
1da177e4 1367 unit_characteristics = kv->value.immediate;
1da177e4
LT
1368 break;
1369
1370 case SBP2_FIRMWARE_REVISION_KEY:
1da177e4 1371 firmware_revision = kv->value.immediate;
1da177e4
LT
1372 break;
1373
1374 default:
e8ca5668
SR
1375 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1376 * Its "ordered" bit has consequences for command ORB
1377 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
1da177e4
LT
1378 break;
1379 }
1380 }
1381
24d3bf88 1382 workarounds = sbp2_default_workarounds;
1da177e4 1383
679c0cd2
SR
1384 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1385 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
4618fd30
SR
1386 if (sbp2_workarounds_table[i].firmware_revision !=
1387 SBP2_ROM_VALUE_WILDCARD &&
679c0cd2
SR
1388 sbp2_workarounds_table[i].firmware_revision !=
1389 (firmware_revision & 0xffff00))
1390 continue;
4618fd30
SR
1391 if (sbp2_workarounds_table[i].model_id !=
1392 SBP2_ROM_VALUE_WILDCARD &&
679c0cd2
SR
1393 sbp2_workarounds_table[i].model_id != ud->model_id)
1394 continue;
1395 workarounds |= sbp2_workarounds_table[i].workarounds;
1396 break;
1397 }
1da177e4 1398
24d3bf88 1399 if (workarounds)
e9a1c52c
SR
1400 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1401 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1402 " model_id 0x%06x)",
24d3bf88 1403 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
e9a1c52c
SR
1404 workarounds, firmware_revision,
1405 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1406 ud->model_id);
24d3bf88
SR
1407
1408 /* We would need one SCSI host template for each target to adjust
1409 * max_sectors on the fly, therefore warn only. */
1410 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
ca0c7453 1411 (sbp2_max_sectors * 512) > (128 * 1024))
35644090 1412 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
24d3bf88
SR
1413 "max transfer size. WARNING: Current max_sectors "
1414 "setting is larger than 128KB (%d sectors)",
1415 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
ca0c7453 1416 sbp2_max_sectors);
24d3bf88 1417
1da177e4
LT
1418 /* If this is a logical unit directory entry, process the parent
1419 * to get the values. */
1420 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
138c8af8
SR
1421 struct unit_directory *parent_ud = container_of(
1422 ud->device.parent, struct unit_directory, device);
1423 sbp2_parse_unit_directory(lu, parent_ud);
1da177e4 1424 } else {
138c8af8
SR
1425 lu->management_agent_addr = management_agent_addr;
1426 lu->workarounds = workarounds;
1da177e4 1427 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
138c8af8 1428 lu->lun = ORB_SET_LUN(ud->lun);
1da177e4
LT
1429 }
1430}
1431
fd23ade8
BC
1432#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1433
1da177e4
LT
1434/*
1435 * This function is called in order to determine the max speed and packet
1436 * size we can use in our ORBs. Note, that we (the driver and host) only
1437 * initiate the transaction. The SBP-2 device actually transfers the data
1438 * (by reading from the DMA area we tell it). This means that the SBP-2
1439 * device decides the actual maximum data it can transfer. We just tell it
1440 * the speed that it needs to use, and the max_rec the host supports, and
1441 * it takes care of the rest.
1442 */
138c8af8 1443static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
1da177e4 1444{
138c8af8 1445 struct sbp2_fwhost_info *hi = lu->hi;
fd23ade8 1446 u8 payload;
1da177e4 1447
138c8af8 1448 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
1da177e4 1449
138c8af8
SR
1450 if (lu->speed_code > sbp2_max_speed) {
1451 lu->speed_code = sbp2_max_speed;
ca0c7453
SR
1452 SBP2_INFO("Reducing speed to %s",
1453 hpsb_speedto_str[sbp2_max_speed]);
1da177e4
LT
1454 }
1455
1456 /* Payload size is the lesser of what our speed supports and what
1457 * our host supports. */
138c8af8 1458 payload = min(sbp2_speedto_max_payload[lu->speed_code],
fd23ade8
BC
1459 (u8) (hi->host->csr.max_rec - 1));
1460
1461 /* If physical DMA is off, work around limitation in ohci1394:
1462 * packet size must not exceed PAGE_SIZE */
138c8af8 1463 if (lu->ne->host->low_addr_space < (1ULL << 32))
fd23ade8
BC
1464 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1465 payload)
1466 payload--;
1da177e4 1467
35644090 1468 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
138c8af8
SR
1469 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1470 hpsb_speedto_str[lu->speed_code],
35644090 1471 SBP2_PAYLOAD_TO_BYTES(payload));
1da177e4 1472
138c8af8 1473 lu->max_payload_size = payload;
a237f35f 1474 return 0;
1da177e4
LT
1475}
1476
138c8af8 1477static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
1da177e4
LT
1478{
1479 quadlet_t data;
1480 u64 addr;
1481 int retval;
cc078189 1482 unsigned long flags;
1da177e4 1483
ec9b7e10 1484 /* flush lu->protocol_work */
09ee67ab
SR
1485 if (wait)
1486 flush_scheduled_work();
1487
1da177e4 1488 data = ntohl(SBP2_AGENT_RESET_DATA);
138c8af8 1489 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
1da177e4
LT
1490
1491 if (wait)
138c8af8 1492 retval = hpsb_node_write(lu->ne, addr, &data, 4);
1da177e4 1493 else
138c8af8 1494 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
1da177e4
LT
1495
1496 if (retval < 0) {
1497 SBP2_ERR("hpsb_node_write failed.\n");
1498 return -EIO;
1499 }
1500
e8ca5668 1501 /* make sure that the ORB_POINTER is written on next command */
138c8af8
SR
1502 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1503 lu->last_orb = NULL;
1504 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4 1505
a237f35f 1506 return 0;
1da177e4
LT
1507}
1508
cd8c79f1
SR
1509static int sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1510 struct sbp2_fwhost_info *hi,
1511 struct sbp2_command_info *cmd,
ed6ffd08 1512 unsigned int sg_count,
cd8c79f1
SR
1513 struct scatterlist *sg,
1514 u32 orb_direction,
1515 enum dma_data_direction dma_dir)
cf8d2c09 1516{
cd8c79f1 1517 struct device *dmadev = hi->host->device.parent;
ed6ffd08
SR
1518 struct sbp2_unrestricted_page_table *pt;
1519 int i, n;
1520
1521 n = dma_map_sg(dmadev, sg, sg_count, dma_dir);
1522 if (n == 0)
1523 return -ENOMEM;
cd8c79f1 1524
cf8d2c09
SR
1525 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1526 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1527
e8ca5668 1528 /* special case if only one element (and less than 64KB in size) */
ed6ffd08
SR
1529 if (n == 1) {
1530 orb->misc |= ORB_SET_DATA_SIZE(sg_dma_len(sg));
1531 orb->data_descriptor_lo = sg_dma_address(sg);
cf8d2c09 1532 } else {
ed6ffd08 1533 pt = &cmd->scatter_gather_element[0];
cf8d2c09 1534
cd8c79f1 1535 dma_sync_single_for_cpu(dmadev, cmd->sge_dma,
0a77b17c
SR
1536 sizeof(cmd->scatter_gather_element),
1537 DMA_TO_DEVICE);
1538
ed6ffd08
SR
1539 for_each_sg(sg, sg, n, i) {
1540 pt[i].high = cpu_to_be32(sg_dma_len(sg) << 16);
1541 pt[i].low = cpu_to_be32(sg_dma_address(sg));
cf8d2c09
SR
1542 }
1543
ed6ffd08
SR
1544 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1) |
1545 ORB_SET_DATA_SIZE(n);
1546 orb->data_descriptor_lo = cmd->sge_dma;
0a77b17c 1547
cd8c79f1 1548 dma_sync_single_for_device(dmadev, cmd->sge_dma,
0a77b17c
SR
1549 sizeof(cmd->scatter_gather_element),
1550 DMA_TO_DEVICE);
cf8d2c09 1551 }
cd8c79f1 1552 return 0;
cf8d2c09
SR
1553}
1554
cd8c79f1
SR
1555static int sbp2_create_command_orb(struct sbp2_lu *lu,
1556 struct sbp2_command_info *cmd,
1557 struct scsi_cmnd *SCpnt)
1da177e4 1558{
0a77b17c 1559 struct device *dmadev = lu->hi->host->device.parent;
138c8af8 1560 struct sbp2_command_orb *orb = &cmd->command_orb;
93c596f7
SR
1561 unsigned int scsi_request_bufflen = scsi_bufflen(SCpnt);
1562 enum dma_data_direction dma_dir = SCpnt->sc_data_direction;
cd8c79f1
SR
1563 u32 orb_direction;
1564 int ret;
1da177e4 1565
0a77b17c
SR
1566 dma_sync_single_for_cpu(dmadev, cmd->command_orb_dma,
1567 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
1da177e4 1568 /*
e8ca5668 1569 * Set-up our command ORB.
1da177e4
LT
1570 *
1571 * NOTE: We're doing unrestricted page tables (s/g), as this is
1572 * best performance (at least with the devices I have). This means
1573 * that data_size becomes the number of s/g elements, and
1574 * page_size should be zero (for unrestricted).
1575 */
138c8af8
SR
1576 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1577 orb->next_ORB_lo = 0x0;
1578 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1579 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1580 orb->misc |= ORB_SET_NOTIFY(1);
1da177e4 1581
43863eba 1582 if (dma_dir == DMA_NONE)
a237f35f 1583 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
43863eba 1584 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
a237f35f 1585 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
43863eba 1586 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
a237f35f 1587 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
43863eba 1588 else {
35644090 1589 SBP2_INFO("Falling back to DMA_NONE");
43863eba 1590 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
1da177e4
LT
1591 }
1592
e8ca5668 1593 /* set up our page table stuff */
1da177e4 1594 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
138c8af8
SR
1595 orb->data_descriptor_hi = 0x0;
1596 orb->data_descriptor_lo = 0x0;
1597 orb->misc |= ORB_SET_DIRECTION(1);
cd8c79f1
SR
1598 ret = 0;
1599 } else {
1600 ret = sbp2_prep_command_orb_sg(orb, lu->hi, cmd,
1601 scsi_sg_count(SCpnt),
1602 scsi_sglist(SCpnt),
1603 orb_direction, dma_dir);
1604 }
138c8af8 1605 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
1da177e4 1606
93c596f7
SR
1607 memset(orb->cdb, 0, sizeof(orb->cdb));
1608 memcpy(orb->cdb, SCpnt->cmnd, SCpnt->cmd_len);
0a77b17c
SR
1609
1610 dma_sync_single_for_device(dmadev, cmd->command_orb_dma,
1611 sizeof(struct sbp2_command_orb), DMA_TO_DEVICE);
cd8c79f1 1612 return ret;
1da177e4
LT
1613}
1614
138c8af8
SR
1615static void sbp2_link_orb_command(struct sbp2_lu *lu,
1616 struct sbp2_command_info *cmd)
1da177e4 1617{
138c8af8 1618 struct sbp2_fwhost_info *hi = lu->hi;
cc078189
SR
1619 struct sbp2_command_orb *last_orb;
1620 dma_addr_t last_orb_dma;
138c8af8 1621 u64 addr = lu->command_block_agent_addr;
cc078189
SR
1622 quadlet_t data[2];
1623 size_t length;
1624 unsigned long flags;
1da177e4 1625
e8ca5668 1626 /* check to see if there are any previous orbs to use */
138c8af8
SR
1627 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1628 last_orb = lu->last_orb;
1629 last_orb_dma = lu->last_orb_dma;
cc078189 1630 if (!last_orb) {
1da177e4 1631 /*
cc078189
SR
1632 * last_orb == NULL means: We know that the target's fetch agent
1633 * is not active right now.
1da177e4 1634 */
cc078189 1635 addr += SBP2_ORB_POINTER_OFFSET;
1da177e4 1636 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
138c8af8 1637 data[1] = cmd->command_orb_dma;
1da177e4 1638 sbp2util_cpu_to_be32_buffer(data, 8);
cc078189 1639 length = 8;
1da177e4 1640 } else {
1da177e4 1641 /*
cc078189
SR
1642 * last_orb != NULL means: We know that the target's fetch agent
1643 * is (very probably) not dead or in reset state right now.
1644 * We have an ORB already sent that we can append a new one to.
1645 * The target's fetch agent may or may not have read this
1646 * previous ORB yet.
1da177e4 1647 */
97d552e3 1648 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
9b7d9c09
SR
1649 sizeof(struct sbp2_command_orb),
1650 DMA_TO_DEVICE);
138c8af8 1651 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
cc078189 1652 wmb();
1da177e4 1653 /* Tells hardware that this pointer is valid */
cc078189 1654 last_orb->next_ORB_hi = 0;
97d552e3
SR
1655 dma_sync_single_for_device(hi->host->device.parent,
1656 last_orb_dma,
9b7d9c09
SR
1657 sizeof(struct sbp2_command_orb),
1658 DMA_TO_DEVICE);
cc078189
SR
1659 addr += SBP2_DOORBELL_OFFSET;
1660 data[0] = 0;
1661 length = 4;
1662 }
138c8af8
SR
1663 lu->last_orb = &cmd->command_orb;
1664 lu->last_orb_dma = cmd->command_orb_dma;
1665 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4 1666
138c8af8 1667 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
09ee67ab
SR
1668 /*
1669 * sbp2util_node_write_no_wait failed. We certainly ran out
1670 * of transaction labels, perhaps just because there were no
1671 * context switches which gave khpsbpkt a chance to collect
1672 * free tlabels. Try again in non-atomic context. If necessary,
1673 * the workqueue job will sleep to guaranteedly get a tlabel.
1674 * We do not accept new commands until the job is over.
1675 */
138c8af8
SR
1676 scsi_block_requests(lu->shost);
1677 PREPARE_WORK(&lu->protocol_work,
09ee67ab 1678 last_orb ? sbp2util_write_doorbell:
ec9b7e10 1679 sbp2util_write_orb_pointer);
138c8af8 1680 schedule_work(&lu->protocol_work);
09ee67ab 1681 }
1da177e4
LT
1682}
1683
138c8af8 1684static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
1da177e4
LT
1685 void (*done)(struct scsi_cmnd *))
1686{
138c8af8 1687 struct sbp2_command_info *cmd;
1da177e4 1688
138c8af8
SR
1689 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1690 if (!cmd)
a237f35f 1691 return -EIO;
1da177e4 1692
cd8c79f1
SR
1693 if (sbp2_create_command_orb(lu, cmd, SCpnt))
1694 return -ENOMEM;
1da177e4 1695
cd8c79f1 1696 sbp2_link_orb_command(lu, cmd);
a237f35f 1697 return 0;
1da177e4
LT
1698}
1699
1da177e4
LT
1700/*
1701 * Translates SBP-2 status into SCSI sense data for check conditions
1702 */
138c8af8
SR
1703static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1704 unchar *sense_data)
1da177e4 1705{
e8ca5668 1706 /* OK, it's pretty ugly... ;-) */
1da177e4
LT
1707 sense_data[0] = 0x70;
1708 sense_data[1] = 0x0;
1709 sense_data[2] = sbp2_status[9];
1710 sense_data[3] = sbp2_status[12];
1711 sense_data[4] = sbp2_status[13];
1712 sense_data[5] = sbp2_status[14];
1713 sense_data[6] = sbp2_status[15];
1714 sense_data[7] = 10;
1715 sense_data[8] = sbp2_status[16];
1716 sense_data[9] = sbp2_status[17];
1717 sense_data[10] = sbp2_status[18];
1718 sense_data[11] = sbp2_status[19];
1719 sense_data[12] = sbp2_status[10];
1720 sense_data[13] = sbp2_status[11];
1721 sense_data[14] = sbp2_status[20];
1722 sense_data[15] = sbp2_status[21];
1723
e8ca5668 1724 return sbp2_status[8] & 0x3f;
1da177e4
LT
1725}
1726
3e98eab4
SR
1727static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1728 int destid, quadlet_t *data, u64 addr,
1729 size_t length, u16 fl)
1da177e4 1730{
ca0c7453 1731 struct sbp2_fwhost_info *hi;
138c8af8 1732 struct sbp2_lu *lu = NULL, *lu_tmp;
1da177e4 1733 struct scsi_cmnd *SCpnt = NULL;
3e98eab4 1734 struct sbp2_status_block *sb;
1da177e4 1735 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
138c8af8 1736 struct sbp2_command_info *cmd;
79456197 1737 unsigned long flags;
1da177e4 1738
6065772d
SR
1739 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1740 SBP2_ERR("Wrong size of status block");
1741 return RCODE_ADDRESS_ERROR;
1742 }
1743 if (unlikely(!host)) {
1da177e4 1744 SBP2_ERR("host is NULL - this is bad!");
a237f35f 1745 return RCODE_ADDRESS_ERROR;
1da177e4 1746 }
1da177e4 1747 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
6065772d 1748 if (unlikely(!hi)) {
1da177e4 1749 SBP2_ERR("host info is NULL - this is bad!");
a237f35f 1750 return RCODE_ADDRESS_ERROR;
1da177e4 1751 }
e8ca5668
SR
1752
1753 /* Find the unit which wrote the status. */
261b5f66 1754 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
138c8af8
SR
1755 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1756 if (lu_tmp->ne->nodeid == nodeid &&
1757 lu_tmp->status_fifo_addr == addr) {
1758 lu = lu_tmp;
1da177e4
LT
1759 break;
1760 }
1761 }
261b5f66
SR
1762 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1763
138c8af8
SR
1764 if (unlikely(!lu)) {
1765 SBP2_ERR("lu is NULL - device is gone?");
a237f35f 1766 return RCODE_ADDRESS_ERROR;
1da177e4
LT
1767 }
1768
138c8af8 1769 /* Put response into lu status fifo buffer. The first two bytes
3e98eab4
SR
1770 * come in big endian bit order. Often the target writes only a
1771 * truncated status block, minimally the first two quadlets. The rest
e8ca5668 1772 * is implied to be zeros. */
138c8af8 1773 sb = &lu->status_block;
3e98eab4
SR
1774 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1775 memcpy(sb, data, length);
1776 sbp2util_be32_to_cpu_buffer(sb, 8);
1da177e4 1777
e8ca5668 1778 /* Ignore unsolicited status. Handle command ORB status. */
6065772d 1779 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
138c8af8 1780 cmd = NULL;
6065772d 1781 else
138c8af8
SR
1782 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1783 if (cmd) {
e8ca5668 1784 /* Grab SCSI command pointers and check status. */
6065772d
SR
1785 /*
1786 * FIXME: If the src field in the status is 1, the ORB DMA must
1787 * not be reused until status for a subsequent ORB is received.
1788 */
138c8af8
SR
1789 SCpnt = cmd->Current_SCpnt;
1790 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1791 sbp2util_mark_command_completed(lu, cmd);
1792 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4
LT
1793
1794 if (SCpnt) {
abbca103
SR
1795 u32 h = sb->ORB_offset_hi_misc;
1796 u32 r = STATUS_GET_RESP(h);
1797
1798 if (r != RESP_STATUS_REQUEST_COMPLETE) {
35644090 1799 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
abbca103 1800 r, STATUS_GET_SBP_STATUS(h));
6065772d 1801 scsi_status =
abbca103
SR
1802 r == RESP_STATUS_TRANSPORT_FAILURE ?
1803 SBP2_SCSI_STATUS_BUSY :
6065772d 1804 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
abbca103 1805 }
e8ca5668 1806
edf1fb21 1807 if (STATUS_GET_LEN(h) > 1)
3e98eab4
SR
1808 scsi_status = sbp2_status_to_sense_data(
1809 (unchar *)sb, SCpnt->sense_buffer);
e8ca5668 1810
edf1fb21 1811 if (STATUS_TEST_DEAD(h))
138c8af8 1812 sbp2_agent_reset(lu, 0);
1da177e4
LT
1813 }
1814
e8ca5668 1815 /* Check here to see if there are no commands in-use. If there
cc078189
SR
1816 * are none, we know that the fetch agent left the active state
1817 * _and_ that we did not reactivate it yet. Therefore clear
1818 * last_orb so that next time we write directly to the
1819 * ORB_POINTER register. That way the fetch agent does not need
e8ca5668 1820 * to refetch the next_ORB. */
138c8af8
SR
1821 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1822 if (list_empty(&lu->cmd_orb_inuse))
1823 lu->last_orb = NULL;
1824 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4
LT
1825
1826 } else {
e8ca5668 1827 /* It's probably status after a management request. */
138c8af8
SR
1828 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1829 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1830 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1831 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1832 lu->access_complete = 1;
ca0c7453 1833 wake_up_interruptible(&sbp2_access_wq);
e8398bb7 1834 }
1da177e4
LT
1835 }
1836
edf1fb21 1837 if (SCpnt)
138c8af8
SR
1838 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1839 cmd->Current_done);
a237f35f 1840 return RCODE_COMPLETE;
1da177e4
LT
1841}
1842
1da177e4
LT
1843/**************************************
1844 * SCSI interface related section
1845 **************************************/
1846
1da177e4
LT
1847static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1848 void (*done)(struct scsi_cmnd *))
1849{
138c8af8 1850 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
ca0c7453 1851 struct sbp2_fwhost_info *hi;
abd559b1 1852 int result = DID_NO_CONNECT << 16;
1da177e4 1853
138c8af8 1854 if (unlikely(!sbp2util_node_is_available(lu)))
abd559b1 1855 goto done;
1da177e4 1856
138c8af8 1857 hi = lu->hi;
1da177e4 1858
5796aa7b 1859 if (unlikely(!hi)) {
ca0c7453 1860 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
abd559b1 1861 goto done;
1da177e4
LT
1862 }
1863
e8ca5668
SR
1864 /* Multiple units are currently represented to the SCSI core as separate
1865 * targets, not as one target with multiple LUs. Therefore return
1866 * selection time-out to any IO directed at non-zero LUNs. */
5796aa7b 1867 if (unlikely(SCpnt->device->lun))
abd559b1 1868 goto done;
1da177e4 1869
138c8af8 1870 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
1da177e4 1871 SBP2_ERR("Bus reset in progress - rejecting command");
abd559b1
JM
1872 result = DID_BUS_BUSY << 16;
1873 goto done;
1da177e4
LT
1874 }
1875
e8ca5668
SR
1876 /* Bidirectional commands are not yet implemented,
1877 * and unknown transfer direction not handled. */
5796aa7b 1878 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
43863eba
SR
1879 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1880 result = DID_ERROR << 16;
1881 goto done;
1882 }
1883
138c8af8 1884 if (sbp2_send_command(lu, SCpnt, done)) {
1da177e4 1885 SBP2_ERR("Error sending SCSI command");
138c8af8
SR
1886 sbp2scsi_complete_command(lu,
1887 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
1da177e4
LT
1888 SCpnt, done);
1889 }
abd559b1 1890 return 0;
1da177e4 1891
abd559b1
JM
1892done:
1893 SCpnt->result = result;
1894 done(SCpnt);
1895 return 0;
1da177e4
LT
1896}
1897
138c8af8 1898static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
1da177e4 1899{
1da177e4 1900 struct list_head *lh;
138c8af8 1901 struct sbp2_command_info *cmd;
79456197 1902 unsigned long flags;
1da177e4 1903
138c8af8
SR
1904 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1905 while (!list_empty(&lu->cmd_orb_inuse)) {
1906 lh = lu->cmd_orb_inuse.next;
1907 cmd = list_entry(lh, struct sbp2_command_info, list);
138c8af8
SR
1908 sbp2util_mark_command_completed(lu, cmd);
1909 if (cmd->Current_SCpnt) {
1910 cmd->Current_SCpnt->result = status << 16;
1911 cmd->Current_done(cmd->Current_SCpnt);
1da177e4
LT
1912 }
1913 }
138c8af8 1914 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4
LT
1915
1916 return;
1917}
1918
1919/*
e8ca5668 1920 * Complete a regular SCSI command. Can be called in atomic context.
1da177e4 1921 */
138c8af8
SR
1922static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1923 struct scsi_cmnd *SCpnt,
1da177e4
LT
1924 void (*done)(struct scsi_cmnd *))
1925{
1da177e4
LT
1926 if (!SCpnt) {
1927 SBP2_ERR("SCpnt is NULL");
1928 return;
1929 }
1930
1da177e4 1931 switch (scsi_status) {
a237f35f 1932 case SBP2_SCSI_STATUS_GOOD:
8f0525ff 1933 SCpnt->result = DID_OK << 16;
a237f35f 1934 break;
1da177e4 1935
a237f35f
SR
1936 case SBP2_SCSI_STATUS_BUSY:
1937 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1938 SCpnt->result = DID_BUS_BUSY << 16;
1939 break;
1da177e4 1940
a237f35f 1941 case SBP2_SCSI_STATUS_CHECK_CONDITION:
8f0525ff 1942 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
a237f35f 1943 break;
1da177e4 1944
a237f35f
SR
1945 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1946 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1947 SCpnt->result = DID_NO_CONNECT << 16;
1948 scsi_print_command(SCpnt);
1949 break;
1da177e4 1950
a237f35f
SR
1951 case SBP2_SCSI_STATUS_CONDITION_MET:
1952 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1953 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1954 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1955 SCpnt->result = DID_ERROR << 16;
1956 scsi_print_command(SCpnt);
1957 break;
1da177e4 1958
a237f35f
SR
1959 default:
1960 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1961 SCpnt->result = DID_ERROR << 16;
1da177e4
LT
1962 }
1963
e8ca5668
SR
1964 /* If a bus reset is in progress and there was an error, complete
1965 * the command as busy so that it will get retried. */
138c8af8 1966 if (!hpsb_node_entry_valid(lu->ne)
a237f35f 1967 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
1da177e4
LT
1968 SBP2_ERR("Completing command with busy (bus reset)");
1969 SCpnt->result = DID_BUS_BUSY << 16;
1970 }
1971
e8ca5668 1972 /* Tell the SCSI stack that we're done with this command. */
a237f35f 1973 done(SCpnt);
1da177e4
LT
1974}
1975
abd559b1 1976static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1da177e4 1977{
138c8af8 1978 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
a80614d1 1979
ef774c16
SR
1980 if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0)
1981 return -ENODEV;
1982
138c8af8 1983 lu->sdev = sdev;
c394f1ea 1984 sdev->allow_restart = 1;
a80614d1 1985
a4b47d62
SR
1986 /* SBP-2 requires quadlet alignment of the data buffers. */
1987 blk_queue_update_dma_alignment(sdev->request_queue, 4 - 1);
465ff318 1988
138c8af8 1989 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
a80614d1 1990 sdev->inquiry_len = 36;
abd559b1
JM
1991 return 0;
1992}
1993
abd559b1
JM
1994static int sbp2scsi_slave_configure(struct scsi_device *sdev)
1995{
138c8af8 1996 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
24d3bf88 1997
365c786f 1998 sdev->use_10_for_rw = 1;
24d3bf88 1999
82f06e86
SR
2000 if (sbp2_exclusive_login)
2001 sdev->manage_start_stop = 1;
1a74bc68
SR
2002 if (sdev->type == TYPE_ROM)
2003 sdev->use_10_for_ms = 1;
24d3bf88 2004 if (sdev->type == TYPE_DISK &&
138c8af8 2005 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
24d3bf88 2006 sdev->skip_ms_page_8 = 1;
138c8af8 2007 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
e9a1c52c 2008 sdev->fix_capacity = 1;
3719122a
SR
2009 if (lu->workarounds & SBP2_WORKAROUND_POWER_CONDITION)
2010 sdev->start_stop_pwr_cond = 1;
4e6343a1
SR
2011 if (lu->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
2012 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
ed6ffd08
SR
2013
2014 blk_queue_max_segment_size(sdev->request_queue, SBP2_MAX_SEG_SIZE);
1da177e4
LT
2015 return 0;
2016}
2017
abd559b1
JM
2018static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2019{
138c8af8 2020 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
abd559b1
JM
2021 return;
2022}
2023
1da177e4 2024/*
e8ca5668
SR
2025 * Called by scsi stack when something has really gone wrong.
2026 * Usually called when a command has timed-out for some reason.
1da177e4
LT
2027 */
2028static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2029{
138c8af8 2030 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
138c8af8 2031 struct sbp2_command_info *cmd;
24c7cd06 2032 unsigned long flags;
1da177e4 2033
35644090 2034 SBP2_INFO("aborting sbp2 command");
1da177e4
LT
2035 scsi_print_command(SCpnt);
2036
138c8af8
SR
2037 if (sbp2util_node_is_available(lu)) {
2038 sbp2_agent_reset(lu, 1);
1da177e4 2039
23077f1d 2040 /* Return a matching command structure to the free pool. */
138c8af8
SR
2041 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2042 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2043 if (cmd) {
138c8af8
SR
2044 sbp2util_mark_command_completed(lu, cmd);
2045 if (cmd->Current_SCpnt) {
2046 cmd->Current_SCpnt->result = DID_ABORT << 16;
2047 cmd->Current_done(cmd->Current_SCpnt);
1da177e4
LT
2048 }
2049 }
138c8af8 2050 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
1da177e4 2051
138c8af8 2052 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
1da177e4
LT
2053 }
2054
a237f35f 2055 return SUCCESS;
1da177e4
LT
2056}
2057
2058/*
2059 * Called by scsi stack when something has really gone wrong.
2060 */
abd559b1 2061static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
1da177e4 2062{
138c8af8 2063 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
1da177e4 2064
35644090 2065 SBP2_INFO("reset requested");
1da177e4 2066
138c8af8 2067 if (sbp2util_node_is_available(lu)) {
35644090 2068 SBP2_INFO("generating sbp2 fetch agent reset");
138c8af8 2069 sbp2_agent_reset(lu, 1);
1da177e4
LT
2070 }
2071
abd559b1 2072 return SUCCESS;
94d0e7b8
JG
2073}
2074
a237f35f
SR
2075static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2076 struct device_attribute *attr,
2077 char *buf)
1da177e4
LT
2078{
2079 struct scsi_device *sdev;
138c8af8 2080 struct sbp2_lu *lu;
1da177e4
LT
2081
2082 if (!(sdev = to_scsi_device(dev)))
2083 return 0;
2084
138c8af8 2085 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
1da177e4
LT
2086 return 0;
2087
d7794c86
SR
2088 if (sbp2_long_sysfs_ieee1394_id)
2089 return sprintf(buf, "%016Lx:%06x:%04x\n",
2090 (unsigned long long)lu->ne->guid,
2091 lu->ud->directory_id, ORB_SET_LUN(lu->lun));
2092 else
2093 return sprintf(buf, "%016Lx:%d:%d\n",
2094 (unsigned long long)lu->ne->guid,
2095 lu->ud->id, ORB_SET_LUN(lu->lun));
1da177e4 2096}
1da177e4
LT
2097
2098MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2099MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2100MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2101MODULE_LICENSE("GPL");
2102
1da177e4
LT
2103static int sbp2_module_init(void)
2104{
2105 int ret;
2106
ca0c7453
SR
2107 if (sbp2_serialize_io) {
2108 sbp2_shost_template.can_queue = 1;
2109 sbp2_shost_template.cmd_per_lun = 1;
1da177e4
LT
2110 }
2111
ca0c7453 2112 sbp2_shost_template.max_sectors = sbp2_max_sectors;
1da177e4 2113
1da177e4 2114 hpsb_register_highlevel(&sbp2_highlevel);
1da177e4
LT
2115 ret = hpsb_register_protocol(&sbp2_driver);
2116 if (ret) {
2117 SBP2_ERR("Failed to register protocol");
2118 hpsb_unregister_highlevel(&sbp2_highlevel);
2119 return ret;
2120 }
1da177e4
LT
2121 return 0;
2122}
2123
2124static void __exit sbp2_module_exit(void)
2125{
1da177e4 2126 hpsb_unregister_protocol(&sbp2_driver);
1da177e4
LT
2127 hpsb_unregister_highlevel(&sbp2_highlevel);
2128}
2129
2130module_init(sbp2_module_init);
2131module_exit(sbp2_module_exit);