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