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