blob: 875eadd5e8f551bcc5c261d892a1d4c3d6b24f49 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Stefan Richter2a533b12006-11-02 21:16:08 +010032 * You may access any attached SBP-2 (usually storage devices) as regular
33 * SCSI devices. E.g. mount /dev/sda1, fdisk, mkfs, etc..
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
Stefan Richter2a533b12006-11-02 21:16:08 +010035 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Stefan Richter2a533b12006-11-02 21:16:08 +010038 * 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
Stefan Richter2a533b12006-11-02 21:16:08 +010051 * Grep for inline FIXME comments below.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53
Stefan Richter902abed2006-08-14 18:56:00 +020054#include <linux/compiler.h>
55#include <linux/delay.h>
56#include <linux/device.h>
57#include <linux/dma-mapping.h>
58#include <linux/gfp.h>
59#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/kernel.h>
61#include <linux/list.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070062#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/module.h>
64#include <linux/moduleparam.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070065#include <linux/sched.h>
Stefan Richter902abed2006-08-14 18:56:00 +020066#include <linux/slab.h>
67#include <linux/spinlock.h>
68#include <linux/stat.h>
69#include <linux/string.h>
70#include <linux/stringify.h>
71#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020072#include <linux/wait.h>
Stefan Richter20e20082007-05-05 17:18:12 +020073#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020076#include <asm/errno.h>
77#include <asm/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <asm/scatterlist.h>
Stefan Richter902abed2006-08-14 18:56:00 +020079#include <asm/system.h>
80#include <asm/types.h>
81
82#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
83#include <asm/io.h> /* for bus_to_virt */
84#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#include <scsi/scsi.h>
87#include <scsi/scsi_cmnd.h>
88#include <scsi/scsi_dbg.h>
89#include <scsi/scsi_device.h>
90#include <scsi/scsi_host.h>
91
92#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020094#include "hosts.h"
95#include "ieee1394.h"
96#include "ieee1394_core.h"
97#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +020099#include "ieee1394_types.h"
100#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include "sbp2.h"
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Module load parameter definitions
105 */
106
107/*
108 * Change max_speed on module load if you have a bad IEEE-1394
109 * controller that has trouble running 2KB packets at 400mb.
110 *
111 * NOTE: On certain OHCI parts I have seen short packets on async transmit
112 * (probably due to PCI latency/throughput issues with the part). You can
113 * bump down the speed if you are running into problems.
114 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100115static int sbp2_max_speed = IEEE1394_SPEED_MAX;
116module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter28b06672006-11-02 21:16:08 +0100117MODULE_PARM_DESC(max_speed, "Force max speed "
118 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/*
121 * Set serialize_io to 1 if you'd like only one scsi command sent
122 * down to us at a time (debugging). This might be necessary for very
123 * badly behaved sbp2 devices.
124 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100125static int sbp2_serialize_io = 1;
126module_param_named(serialize_io, sbp2_serialize_io, int, 0444);
127MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers "
128 "(default = 1, faster = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * Bump up max_sectors if you'd like to support very large sized
132 * transfers. Please note that some older sbp2 bridge chips are broken for
133 * transfers greater or equal to 128KB. Default is a value of 255
134 * sectors, or just under 128KB (at 512 byte sector size). I can note that
135 * the Oxsemi sbp2 chipsets have no problems supporting very large
136 * transfer sizes.
137 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100138static int sbp2_max_sectors = SBP2_MAX_SECTORS;
139module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
140MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
141 "(default = " __stringify(SBP2_MAX_SECTORS) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143/*
144 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
145 * do an exclusive login, as it's generally unsafe to have two hosts
146 * talking to a single sbp2 device at the same time (filesystem coherency,
147 * etc.). If you're running an sbp2 device that supports multiple logins,
148 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400149 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
150 * File System, or Lustre, then set exclusive_login to zero.
151 *
152 * So far only bridges from Oxford Semiconductor are known to support
153 * concurrent logins. Depending on firmware, four or two concurrent logins
154 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100156static int sbp2_exclusive_login = 1;
157module_param_named(exclusive_login, sbp2_exclusive_login, int, 0644);
158MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
159 "(default = 1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200162 * If any of the following workarounds is required for your device to work,
163 * please submit the kernel messages logged by sbp2 to the linux1394-devel
164 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200166 * - 128kB max transfer
167 * Limit transfer size. Necessary for some old bridges.
168 *
169 * - 36 byte inquiry
170 * When scsi_mod probes the device, let the inquiry command look like that
171 * from MS Windows.
172 *
173 * - skip mode page 8
174 * Suppress sending of mode_sense for mode page 8 if the device pretends to
175 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200176 *
177 * - fix capacity
178 * Tell sd_mod to correct the last sector number reported by read_capacity.
179 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
180 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200181 *
182 * - override internal blacklist
183 * Instead of adding to the built-in blacklist, use only the workarounds
184 * specified in the module load parameter.
185 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200187static int sbp2_default_workarounds;
188module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
189MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
190 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
191 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
192 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200193 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200194 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200195 ", or a combination)");
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Stefan Richteredf1fb22006-11-02 21:16:08 +0100198#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
199#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
202 * Globals
203 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100204static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
205static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100206 void (*)(struct scsi_cmnd *));
Stefan Richter138c8af2006-11-02 21:16:08 +0100207static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
208static int sbp2_start_device(struct sbp2_lu *);
209static void sbp2_remove_device(struct sbp2_lu *);
210static int sbp2_login_device(struct sbp2_lu *);
211static int sbp2_reconnect_device(struct sbp2_lu *);
212static int sbp2_logout_device(struct sbp2_lu *);
Stefan Richterea42ea02006-11-02 21:16:08 +0100213static void sbp2_host_reset(struct hpsb_host *);
214static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
215 u64, size_t, u16);
Stefan Richter138c8af2006-11-02 21:16:08 +0100216static int sbp2_agent_reset(struct sbp2_lu *, int);
217static void sbp2_parse_unit_directory(struct sbp2_lu *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100218 struct unit_directory *);
Stefan Richter138c8af2006-11-02 21:16:08 +0100219static int sbp2_set_busy_timeout(struct sbp2_lu *);
220static int sbp2_max_speed_and_size(struct sbp2_lu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100226 .name = SBP2_DEVICE_NAME,
227 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
230static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100231 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
233
234#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100235static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
236 u64, size_t, u16);
237static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
238 size_t, u16);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100241 .read = sbp2_handle_physdma_read,
242 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244#endif
245
Stefan Richterea42ea02006-11-02 21:16:08 +0100246
247/*
248 * Interface to driver core and IEEE 1394 core
249 */
250static struct ieee1394_device_id sbp2_id_table[] = {
251 {
252 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
253 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
254 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
255 {}
256};
257MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
258
259static int sbp2_probe(struct device *);
260static int sbp2_remove(struct device *);
261static int sbp2_update(struct unit_directory *);
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263static struct hpsb_protocol_driver sbp2_driver = {
Ben Collinsed30c262006-11-23 13:59:48 -0500264 .name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 .id_table = sbp2_id_table,
266 .update = sbp2_update,
267 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 .probe = sbp2_probe,
269 .remove = sbp2_remove,
270 },
271};
272
Stefan Richterea42ea02006-11-02 21:16:08 +0100273
274/*
275 * Interface to SCSI core
276 */
277static int sbp2scsi_queuecommand(struct scsi_cmnd *,
278 void (*)(struct scsi_cmnd *));
279static int sbp2scsi_abort(struct scsi_cmnd *);
280static int sbp2scsi_reset(struct scsi_cmnd *);
281static int sbp2scsi_slave_alloc(struct scsi_device *);
282static int sbp2scsi_slave_configure(struct scsi_device *);
283static void sbp2scsi_slave_destroy(struct scsi_device *);
284static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
285 struct device_attribute *, char *);
286
287static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
288
289static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
290 &dev_attr_ieee1394_id,
291 NULL
292};
293
Stefan Richterca0c7452006-11-02 21:16:08 +0100294static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100295 .module = THIS_MODULE,
296 .name = "SBP-2 IEEE-1394",
297 .proc_name = SBP2_DEVICE_NAME,
298 .queuecommand = sbp2scsi_queuecommand,
299 .eh_abort_handler = sbp2scsi_abort,
300 .eh_device_reset_handler = sbp2scsi_reset,
301 .slave_alloc = sbp2scsi_slave_alloc,
302 .slave_configure = sbp2scsi_slave_configure,
303 .slave_destroy = sbp2scsi_slave_destroy,
304 .this_id = -1,
305 .sg_tablesize = SG_ALL,
306 .use_clustering = ENABLE_CLUSTERING,
307 .cmd_per_lun = SBP2_MAX_CMDS,
308 .can_queue = SBP2_MAX_CMDS,
Stefan Richterea42ea02006-11-02 21:16:08 +0100309 .sdev_attrs = sbp2_sysfs_sdev_attrs,
310};
311
Stefan Richter4618fd32006-12-30 15:37:09 +0100312/* for match-all entries in sbp2_workarounds_table */
313#define SBP2_ROM_VALUE_WILDCARD 0x1000000
Stefan Richterea42ea02006-11-02 21:16:08 +0100314
Stefan Richtera80614d2006-02-14 22:04:19 -0500315/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200316 * List of devices with known bugs.
317 *
318 * The firmware_revision field, masked with 0xffff00, is the best indicator
319 * for the type of bridge chip of a device. It yields a few false positives
320 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500321 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200322static const struct {
323 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200324 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200325 unsigned workarounds;
326} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400327 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200328 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400329 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200330 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
331 SBP2_WORKAROUND_MODE_SENSE_8,
332 },
333 /* Initio bridges, actually only needed for some older ones */ {
334 .firmware_revision = 0x000200,
Stefan Richter4618fd32006-12-30 15:37:09 +0100335 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200336 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
337 },
338 /* Symbios bridge */ {
339 .firmware_revision = 0xa0b800,
Stefan Richter4618fd32006-12-30 15:37:09 +0100340 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200341 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200342 },
Stefan Richtere9a1c522006-05-15 22:06:37 +0200343 /* iPod 4th generation */ {
344 .firmware_revision = 0x0a2700,
345 .model_id = 0x000021,
346 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
347 },
348 /* iPod mini */ {
349 .firmware_revision = 0x0a2700,
350 .model_id = 0x000023,
351 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
352 },
353 /* iPod Photo */ {
354 .firmware_revision = 0x0a2700,
355 .model_id = 0x00007e,
356 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/**************************************
361 * General utility functions
362 **************************************/
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#ifndef __BIG_ENDIAN
365/*
366 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
367 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400368static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 u32 *temp = buffer;
371
372 for (length = (length >> 2); length--; )
373 temp[length] = be32_to_cpu(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376/*
377 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
378 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400379static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 u32 *temp = buffer;
382
383 for (length = (length >> 2); length--; )
384 temp[length] = cpu_to_be32(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386#else /* BIG_ENDIAN */
387/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200388#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
389#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#endif
391
Stefan Richterca0c7452006-11-02 21:16:08 +0100392static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Stefan Richtere8398bb2006-07-23 22:19:00 +0200394/*
395 * Waits for completion of an SBP-2 access request.
396 * Returns nonzero if timed out or prematurely interrupted.
397 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100398static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
Stefan Richtere8398bb2006-07-23 22:19:00 +0200399{
Stefan Richterca0c7452006-11-02 21:16:08 +0100400 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200401
Stefan Richterca0c7452006-11-02 21:16:08 +0100402 leftover = wait_event_interruptible_timeout(
Stefan Richter138c8af2006-11-02 21:16:08 +0100403 sbp2_access_wq, lu->access_complete, timeout);
404 lu->access_complete = 0;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200405 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Stefan Richter138c8af2006-11-02 21:16:08 +0100408static void sbp2_free_packet(void *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 hpsb_free_tlabel(packet);
411 hpsb_free_packet(packet);
412}
413
Stefan Richtere8ca5662006-11-02 21:16:08 +0100414/*
415 * This is much like hpsb_node_write(), except it ignores the response
416 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 */
418static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richter138c8af2006-11-02 21:16:08 +0100419 quadlet_t *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 struct hpsb_packet *packet;
422
Stefan Richter138c8af2006-11-02 21:16:08 +0100423 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
Stefan Richtera237f352005-11-07 06:31:39 -0500424 if (!packet)
425 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Stefan Richter138c8af2006-11-02 21:16:08 +0100427 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 hpsb_node_fill_packet(ne, packet);
Stefan Richtera237f352005-11-07 06:31:39 -0500429 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 sbp2_free_packet(packet);
431 return -EIO;
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
Stefan Richter138c8af2006-11-02 21:16:08 +0100436static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
437 quadlet_t *data, size_t len)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200438{
Stefan Richter138c8af2006-11-02 21:16:08 +0100439 /* There is a small window after a bus reset within which the node
440 * entry's generation is current but the reconnect wasn't completed. */
441 if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200442 return;
443
Stefan Richter138c8af2006-11-02 21:16:08 +0100444 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200445 data, len))
446 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
Stefan Richter138c8af2006-11-02 21:16:08 +0100447
448 /* Now accept new SCSI commands, unless a bus reset happended during
449 * hpsb_node_write. */
450 if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
451 scsi_unblock_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200452}
453
David Howellsc4028952006-11-22 14:57:56 +0000454static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200455{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100456 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200457 quadlet_t data[2];
458
Stefan Richterec9b7e12006-12-07 23:23:25 +0100459 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
460 data[1] = lu->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200461 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterec9b7e12006-12-07 23:23:25 +0100462 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200463}
464
David Howellsc4028952006-11-22 14:57:56 +0000465static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200466{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100467 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
468
469 sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200470}
471
Stefan Richter138c8af2006-11-02 21:16:08 +0100472static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Stefan Richter138c8af2006-11-02 21:16:08 +0100474 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100475 struct sbp2_command_info *cmd;
Stefan Richter3d269cb2007-02-04 20:57:38 +0100476 int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 for (i = 0; i < orbs; i++) {
Stefan Richter3d269cb2007-02-04 20:57:38 +0100479 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
480 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -0500481 return -ENOMEM;
Stefan Richter97d552e2006-12-29 23:47:04 +0100482 cmd->command_orb_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100483 &cmd->command_orb,
484 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100485 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100486 cmd->sge_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100487 &cmd->scatter_gather_element,
488 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100489 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100490 INIT_LIST_HEAD(&cmd->list);
491 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return 0;
494}
495
Stefan Richter138c8af2006-11-02 21:16:08 +0100496static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Stefan Richter138c8af2006-11-02 21:16:08 +0100498 struct hpsb_host *host = lu->hi->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct list_head *lh, *next;
Stefan Richter138c8af2006-11-02 21:16:08 +0100500 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unsigned long flags;
502
Stefan Richter138c8af2006-11-02 21:16:08 +0100503 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
504 if (!list_empty(&lu->cmd_orb_completed))
505 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
506 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +0100507 dma_unmap_single(host->device.parent,
508 cmd->command_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100510 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100511 dma_unmap_single(host->device.parent, cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100512 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100513 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100514 kfree(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100516 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return;
518}
519
520/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100521 * Finds the sbp2_command for a given outstanding command ORB.
522 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 */
524static struct sbp2_command_info *sbp2util_find_command_for_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100525 struct sbp2_lu *lu, dma_addr_t orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Stefan Richter138c8af2006-11-02 21:16:08 +0100527 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 unsigned long flags;
529
Stefan Richter138c8af2006-11-02 21:16:08 +0100530 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
531 if (!list_empty(&lu->cmd_orb_inuse))
532 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
533 if (cmd->command_orb_dma == orb) {
534 spin_unlock_irqrestore(
535 &lu->cmd_orb_lock, flags);
536 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100538 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500539 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100543 * Finds the sbp2_command for a given outstanding SCpnt.
544 * Only looks at the in-use list.
Stefan Richter138c8af2006-11-02 21:16:08 +0100545 * Must be called with lu->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200547static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
Stefan Richter138c8af2006-11-02 21:16:08 +0100548 struct sbp2_lu *lu, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Stefan Richter138c8af2006-11-02 21:16:08 +0100550 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Stefan Richter138c8af2006-11-02 21:16:08 +0100552 if (!list_empty(&lu->cmd_orb_inuse))
553 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
554 if (cmd->Current_SCpnt == SCpnt)
555 return cmd;
Stefan Richtera237f352005-11-07 06:31:39 -0500556 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static struct sbp2_command_info *sbp2util_allocate_command_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100560 struct sbp2_lu *lu,
561 struct scsi_cmnd *Current_SCpnt,
562 void (*Current_done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +0100565 struct sbp2_command_info *cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 unsigned long flags;
567
Stefan Richter138c8af2006-11-02 21:16:08 +0100568 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
569 if (!list_empty(&lu->cmd_orb_completed)) {
570 lh = lu->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 list_del(lh);
Stefan Richter138c8af2006-11-02 21:16:08 +0100572 cmd = list_entry(lh, struct sbp2_command_info, list);
573 cmd->Current_done = Current_done;
574 cmd->Current_SCpnt = Current_SCpnt;
575 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
576 } else
Stefan Richterd024ebc2006-03-28 20:03:55 -0500577 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Stefan Richter138c8af2006-11-02 21:16:08 +0100578 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
579 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Stefan Richter58272c12006-11-04 09:55:33 +0100582/*
583 * Unmaps the DMAs of a command and moves the command to the completed ORB list.
584 * Must be called with lu->cmd_orb_lock held.
585 */
586static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
587 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Stefan Richter58272c12006-11-04 09:55:33 +0100589 struct hpsb_host *host = lu->ud->ne->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Stefan Richter138c8af2006-11-02 21:16:08 +0100591 if (cmd->cmd_dma) {
592 if (cmd->dma_type == CMD_DMA_SINGLE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100593 dma_unmap_single(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100594 cmd->dma_size, cmd->dma_dir);
595 else if (cmd->dma_type == CMD_DMA_PAGE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100596 dma_unmap_page(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100597 cmd->dma_size, cmd->dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100598 /* XXX: Check for CMD_DMA_NONE bug */
Stefan Richter138c8af2006-11-02 21:16:08 +0100599 cmd->dma_type = CMD_DMA_NONE;
600 cmd->cmd_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100602 if (cmd->sge_buffer) {
Stefan Richter97d552e2006-12-29 23:47:04 +0100603 dma_unmap_sg(host->device.parent, cmd->sge_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +0100604 cmd->dma_size, cmd->dma_dir);
605 cmd->sge_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Stefan Richtercd641f62006-11-02 21:16:08 +0100607 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Jody McIntyreabd559b2005-09-30 11:59:06 -0700610/*
Stefan Richter138c8af2006-11-02 21:16:08 +0100611 * Is lu valid? Is the 1394 node still present?
Jody McIntyreabd559b2005-09-30 11:59:06 -0700612 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100613static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700614{
Stefan Richter138c8af2006-11-02 21:16:08 +0100615 return lu && lu->ne && !lu->ne->in_limbo;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700616}
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/*********************************************
619 * IEEE-1394 core driver stack related section
620 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622static int sbp2_probe(struct device *dev)
623{
624 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100625 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 ud = container_of(dev, struct unit_directory, device);
628
629 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
630 * instead. */
631 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
632 return -ENODEV;
633
Stefan Richter138c8af2006-11-02 21:16:08 +0100634 lu = sbp2_alloc_device(ud);
635 if (!lu)
Stefan Richtera237f352005-11-07 06:31:39 -0500636 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Stefan Richter138c8af2006-11-02 21:16:08 +0100638 sbp2_parse_unit_directory(lu, ud);
639 return sbp2_start_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642static int sbp2_remove(struct device *dev)
643{
644 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100645 struct sbp2_lu *lu;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700646 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 ud = container_of(dev, struct unit_directory, device);
Stefan Richter138c8af2006-11-02 21:16:08 +0100649 lu = ud->device.driver_data;
650 if (!lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700651 return 0;
652
Stefan Richter138c8af2006-11-02 21:16:08 +0100653 if (lu->shost) {
Stefan Richterbf637ec2006-01-31 00:13:06 -0500654 /* Get rid of enqueued commands if there is no chance to
655 * send them. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100656 if (!sbp2util_node_is_available(lu))
657 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100658 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500659 * highlevel drivers which would deadlock if blocked. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100660 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
661 scsi_unblock_requests(lu->shost);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500662 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100663 sdev = lu->sdev;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700664 if (sdev) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100665 lu->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700666 scsi_remove_device(sdev);
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Stefan Richter138c8af2006-11-02 21:16:08 +0100669 sbp2_logout_device(lu);
670 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 return 0;
673}
674
675static int sbp2_update(struct unit_directory *ud)
676{
Stefan Richter138c8af2006-11-02 21:16:08 +0100677 struct sbp2_lu *lu = ud->device.driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Stefan Richter138c8af2006-11-02 21:16:08 +0100679 if (sbp2_reconnect_device(lu)) {
Stefan Richtere8ca5662006-11-02 21:16:08 +0100680 /* Reconnect has failed. Perhaps we didn't reconnect fast
681 * enough. Try a regular login, but first log out just in
682 * case of any weirdness. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100683 sbp2_logout_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Stefan Richter138c8af2006-11-02 21:16:08 +0100685 if (sbp2_login_device(lu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* Login failed too, just fail, and the backend
687 * will call our sbp2_remove for us */
688 SBP2_ERR("Failed to reconnect to sbp2 device!");
689 return -EBUSY;
690 }
691 }
692
Stefan Richter138c8af2006-11-02 21:16:08 +0100693 sbp2_set_busy_timeout(lu);
694 sbp2_agent_reset(lu, 1);
695 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Stefan Richtere8ca5662006-11-02 21:16:08 +0100697 /* Complete any pending commands with busy (so they get retried)
698 * and remove them from our queue. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100699 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Stefan Richter4fc383c2006-08-14 18:46:00 +0200701 /* Accept new commands unless there was another bus reset in the
702 * meantime. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100703 if (hpsb_node_entry_valid(lu->ne)) {
704 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
705 scsi_unblock_requests(lu->shost);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
Stefan Richter138c8af2006-11-02 21:16:08 +0100710static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Stefan Richterca0c7452006-11-02 21:16:08 +0100712 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100713 struct Scsi_Host *shost = NULL;
714 struct sbp2_lu *lu = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Stefan Richter138c8af2006-11-02 21:16:08 +0100716 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
717 if (!lu) {
718 SBP2_ERR("failed to create lu");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 goto failed_alloc;
720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Stefan Richter138c8af2006-11-02 21:16:08 +0100722 lu->ne = ud->ne;
723 lu->ud = ud;
724 lu->speed_code = IEEE1394_SPEED_100;
725 lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
726 lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
727 INIT_LIST_HEAD(&lu->cmd_orb_inuse);
728 INIT_LIST_HEAD(&lu->cmd_orb_completed);
729 INIT_LIST_HEAD(&lu->lu_list);
730 spin_lock_init(&lu->cmd_orb_lock);
731 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
732 INIT_WORK(&lu->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Stefan Richter138c8af2006-11-02 21:16:08 +0100734 ud->device.driver_data = lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
737 if (!hi) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100738 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
739 sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (!hi) {
741 SBP2_ERR("failed to allocate hostinfo");
742 goto failed_alloc;
743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 hi->host = ud->ne->host;
Stefan Richter138c8af2006-11-02 21:16:08 +0100745 INIT_LIST_HEAD(&hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
748 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500749 * enabled or not supported on host controller */
750 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
751 &sbp2_physdma_ops,
752 0x0ULL, 0xfffffffcULL)) {
753 SBP2_ERR("failed to register lower 4GB address range");
754 goto failed_alloc;
755 }
Stefan Richter05556592007-02-04 20:25:43 +0100756#else
757 if (dma_set_mask(hi->host->device.parent, DMA_32BIT_MASK)) {
758 SBP2_ERR("failed to set 4GB DMA mask");
759 goto failed_alloc;
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#endif
762 }
763
Stefan Richter147830f2006-03-28 19:54:52 -0500764 /* Prevent unloading of the 1394 host */
765 if (!try_module_get(hi->host->driver->owner)) {
766 SBP2_ERR("failed to get a reference on 1394 host driver");
767 goto failed_alloc;
768 }
769
Stefan Richter138c8af2006-11-02 21:16:08 +0100770 lu->hi = hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Stefan Richter138c8af2006-11-02 21:16:08 +0100772 list_add_tail(&lu->lu_list, &hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Stefan Richter35bdddb2006-01-31 00:13:33 -0500774 /* Register the status FIFO address range. We could use the same FIFO
775 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200776 * target in order to support multi-unit devices.
777 * The FIFO is located out of the local host controller's physical range
778 * but, if possible, within the posted write area. Status writes will
779 * then be performed as unified transactions. This slightly reduces
780 * bandwidth usage, and some Prolific based devices seem to require it.
781 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100782 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
Stefan Richter35bdddb2006-01-31 00:13:33 -0500783 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
784 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400785 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Stefan Richter138c8af2006-11-02 21:16:08 +0100786 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500787 SBP2_ERR("failed to allocate status FIFO address range");
788 goto failed_alloc;
789 }
790
Stefan Richter138c8af2006-11-02 21:16:08 +0100791 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
792 if (!shost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 SBP2_ERR("failed to register scsi host");
794 goto failed_alloc;
795 }
796
Stefan Richter138c8af2006-11-02 21:16:08 +0100797 shost->hostdata[0] = (unsigned long)lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Stefan Richter138c8af2006-11-02 21:16:08 +0100799 if (!scsi_add_host(shost, &ud->device)) {
800 lu->shost = shost;
801 return lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
804 SBP2_ERR("failed to add scsi host");
Stefan Richter138c8af2006-11-02 21:16:08 +0100805 scsi_host_put(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807failed_alloc:
Stefan Richter138c8af2006-11-02 21:16:08 +0100808 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return NULL;
810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812static void sbp2_host_reset(struct hpsb_host *host)
813{
Stefan Richterca0c7452006-11-02 21:16:08 +0100814 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100815 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200818 if (!hi)
819 return;
Stefan Richter138c8af2006-11-02 21:16:08 +0100820 list_for_each_entry(lu, &hi->logical_units, lu_list)
821 if (likely(atomic_read(&lu->state) !=
Stefan Richter2cccbb52006-08-14 18:59:00 +0200822 SBP2LU_STATE_IN_SHUTDOWN)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100823 atomic_set(&lu->state, SBP2LU_STATE_IN_RESET);
824 scsi_block_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Stefan Richter138c8af2006-11-02 21:16:08 +0100828static int sbp2_start_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Stefan Richter138c8af2006-11-02 21:16:08 +0100830 struct sbp2_fwhost_info *hi = lu->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500831 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Stefan Richter97d552e2006-12-29 23:47:04 +0100833 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500834 sizeof(struct sbp2_login_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100835 &lu->login_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100836 if (!lu->login_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Stefan Richter97d552e2006-12-29 23:47:04 +0100839 lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500840 sizeof(struct sbp2_query_logins_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100841 &lu->query_logins_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100842 if (!lu->query_logins_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Stefan Richter97d552e2006-12-29 23:47:04 +0100845 lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500846 sizeof(struct sbp2_query_logins_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100847 &lu->query_logins_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100848 if (!lu->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Stefan Richter97d552e2006-12-29 23:47:04 +0100851 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500852 sizeof(struct sbp2_reconnect_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100853 &lu->reconnect_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100854 if (!lu->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Stefan Richter97d552e2006-12-29 23:47:04 +0100857 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500858 sizeof(struct sbp2_logout_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100859 &lu->logout_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100860 if (!lu->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Stefan Richter97d552e2006-12-29 23:47:04 +0100863 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500864 sizeof(struct sbp2_login_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100865 &lu->login_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100866 if (!lu->login_orb)
Stefan Richtereaceec72005-12-13 11:05:05 -0500867 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Stefan Richter3d269cb2007-02-04 20:57:38 +0100869 if (sbp2util_create_command_orb_pool(lu))
870 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Stefan Richtere8ca5662006-11-02 21:16:08 +0100872 /* Wait a second before trying to log in. Previously logged in
873 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200874 if (msleep_interruptible(1000)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100875 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return -EINTR;
877 }
Stefan Richtera237f352005-11-07 06:31:39 -0500878
Stefan Richter138c8af2006-11-02 21:16:08 +0100879 if (sbp2_login_device(lu)) {
880 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return -EBUSY;
882 }
883
Stefan Richter138c8af2006-11-02 21:16:08 +0100884 sbp2_set_busy_timeout(lu);
885 sbp2_agent_reset(lu, 1);
886 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Stefan Richter138c8af2006-11-02 21:16:08 +0100888 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
James Bottomley146f7262005-09-10 12:44:09 -0500889 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 SBP2_ERR("scsi_add_device failed");
Stefan Richter138c8af2006-11-02 21:16:08 +0100891 sbp2_logout_device(lu);
892 sbp2_remove_device(lu);
James Bottomley146f7262005-09-10 12:44:09 -0500893 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
896 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500897
898alloc_fail:
Stefan Richter138c8af2006-11-02 21:16:08 +0100899 SBP2_ERR("Could not allocate memory for lu");
900 sbp2_remove_device(lu);
Stefan Richtereaceec72005-12-13 11:05:05 -0500901 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Stefan Richter138c8af2006-11-02 21:16:08 +0100904static void sbp2_remove_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Stefan Richterca0c7452006-11-02 21:16:08 +0100906 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Stefan Richter138c8af2006-11-02 21:16:08 +0100908 if (!lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return;
910
Stefan Richter138c8af2006-11-02 21:16:08 +0100911 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Stefan Richter138c8af2006-11-02 21:16:08 +0100913 if (lu->shost) {
914 scsi_remove_host(lu->shost);
915 scsi_host_put(lu->shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Stefan Richter09ee67a2006-08-14 18:43:00 +0200917 flush_scheduled_work();
Stefan Richter138c8af2006-11-02 21:16:08 +0100918 sbp2util_remove_command_orb_pool(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Stefan Richter138c8af2006-11-02 21:16:08 +0100920 list_del(&lu->lu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Stefan Richter138c8af2006-11-02 21:16:08 +0100922 if (lu->login_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100923 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 sizeof(struct sbp2_login_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100925 lu->login_response,
926 lu->login_response_dma);
927 if (lu->login_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100928 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 sizeof(struct sbp2_login_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100930 lu->login_orb,
931 lu->login_orb_dma);
932 if (lu->reconnect_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100933 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 sizeof(struct sbp2_reconnect_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100935 lu->reconnect_orb,
936 lu->reconnect_orb_dma);
937 if (lu->logout_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100938 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 sizeof(struct sbp2_logout_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100940 lu->logout_orb,
941 lu->logout_orb_dma);
942 if (lu->query_logins_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100943 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 sizeof(struct sbp2_query_logins_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100945 lu->query_logins_orb,
946 lu->query_logins_orb_dma);
947 if (lu->query_logins_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100948 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 sizeof(struct sbp2_query_logins_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100950 lu->query_logins_response,
951 lu->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Stefan Richter138c8af2006-11-02 21:16:08 +0100953 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -0500954 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Stefan Richter138c8af2006-11-02 21:16:08 +0100955 lu->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -0500956
Stefan Richter138c8af2006-11-02 21:16:08 +0100957 lu->ud->device.driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Stefan Richter147830f2006-03-28 19:54:52 -0500959 if (hi)
960 module_put(hi->host->driver->owner);
961
Stefan Richter138c8af2006-11-02 21:16:08 +0100962 kfree(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
965#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
966/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100967 * Deal with write requests on adapters which do not support physical DMA or
968 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 */
Stefan Richtera237f352005-11-07 06:31:39 -0500970static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
971 int destid, quadlet_t *data, u64 addr,
972 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Stefan Richtera237f352005-11-07 06:31:39 -0500974 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500975 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
978/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100979 * Deal with read requests on adapters which do not support physical DMA or
980 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
Stefan Richtera237f352005-11-07 06:31:39 -0500982static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
983 quadlet_t *data, u64 addr, size_t length,
984 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Stefan Richtera237f352005-11-07 06:31:39 -0500986 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -0500987 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989#endif
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991/**************************************
992 * SBP-2 protocol related section
993 **************************************/
994
Stefan Richter138c8af2006-11-02 21:16:08 +0100995static int sbp2_query_logins(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Stefan Richter138c8af2006-11-02 21:16:08 +0100997 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 quadlet_t data[2];
999 int max_logins;
1000 int active_logins;
1001
Stefan Richter138c8af2006-11-02 21:16:08 +01001002 lu->query_logins_orb->reserved1 = 0x0;
1003 lu->query_logins_orb->reserved2 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Stefan Richter138c8af2006-11-02 21:16:08 +01001005 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1006 lu->query_logins_orb->query_response_hi =
1007 ORB_SET_NODE_ID(hi->host->node_id);
1008 lu->query_logins_orb->lun_misc =
1009 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1010 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1011 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Stefan Richter138c8af2006-11-02 21:16:08 +01001013 lu->query_logins_orb->reserved_resp_length =
1014 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1015 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Stefan Richter138c8af2006-11-02 21:16:08 +01001017 lu->query_logins_orb->status_fifo_hi =
1018 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1019 lu->query_logins_orb->status_fifo_lo =
1020 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Stefan Richter138c8af2006-11-02 21:16:08 +01001022 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1023 sizeof(struct sbp2_query_logins_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Stefan Richter138c8af2006-11-02 21:16:08 +01001025 memset(lu->query_logins_response, 0,
1026 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001029 data[1] = lu->query_logins_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 sbp2util_cpu_to_be32_buffer(data, 8);
1031
Stefan Richter138c8af2006-11-02 21:16:08 +01001032 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Stefan Richter138c8af2006-11-02 21:16:08 +01001034 if (sbp2util_access_timeout(lu, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001036 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038
Stefan Richter138c8af2006-11-02 21:16:08 +01001039 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001041 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
Stefan Richter138c8af2006-11-02 21:16:08 +01001044 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001045 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001046 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048
Stefan Richter138c8af2006-11-02 21:16:08 +01001049 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1050 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Stefan Richter138c8af2006-11-02 21:16:08 +01001052 max_logins = RESPONSE_GET_MAX_LOGINS(
1053 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001054 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Stefan Richter138c8af2006-11-02 21:16:08 +01001056 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1057 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001058 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001061 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
1064 return 0;
1065}
1066
Stefan Richter138c8af2006-11-02 21:16:08 +01001067static int sbp2_login_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Stefan Richter138c8af2006-11-02 21:16:08 +01001069 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 quadlet_t data[2];
1071
Stefan Richter138c8af2006-11-02 21:16:08 +01001072 if (!lu->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001073 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Stefan Richter138c8af2006-11-02 21:16:08 +01001075 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001076 SBP2_INFO("Device does not support any more concurrent logins");
1077 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
Stefan Richtere8ca5662006-11-02 21:16:08 +01001080 /* assume no password */
Stefan Richter138c8af2006-11-02 21:16:08 +01001081 lu->login_orb->password_hi = 0;
1082 lu->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Stefan Richter138c8af2006-11-02 21:16:08 +01001084 lu->login_orb->login_response_lo = lu->login_response_dma;
1085 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1086 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001087
1088 /* one second reconnect time */
Stefan Richter138c8af2006-11-02 21:16:08 +01001089 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1090 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1091 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1092 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Stefan Richter138c8af2006-11-02 21:16:08 +01001094 lu->login_orb->passwd_resp_lengths =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Stefan Richter138c8af2006-11-02 21:16:08 +01001097 lu->login_orb->status_fifo_hi =
1098 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1099 lu->login_orb->status_fifo_lo =
1100 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Stefan Richter138c8af2006-11-02 21:16:08 +01001102 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1103 sizeof(struct sbp2_login_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Stefan Richter138c8af2006-11-02 21:16:08 +01001105 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001108 data[1] = lu->login_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 sbp2util_cpu_to_be32_buffer(data, 8);
1110
Stefan Richter138c8af2006-11-02 21:16:08 +01001111 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Stefan Richtere8ca5662006-11-02 21:16:08 +01001113 /* wait up to 20 seconds for login status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001114 if (sbp2util_access_timeout(lu, 20*HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001115 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001116 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
Stefan Richtere8ca5662006-11-02 21:16:08 +01001119 /* make sure that the returned status matches the login ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001120 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001121 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001122 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
Stefan Richter138c8af2006-11-02 21:16:08 +01001125 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001126 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
Stefan Richter138c8af2006-11-02 21:16:08 +01001130 sbp2util_cpu_to_be32_buffer(lu->login_response,
1131 sizeof(struct sbp2_login_response));
1132 lu->command_block_agent_addr =
1133 ((u64)lu->login_response->command_block_agent_hi) << 32;
1134 lu->command_block_agent_addr |=
1135 ((u64)lu->login_response->command_block_agent_lo);
1136 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140}
1141
Stefan Richter138c8af2006-11-02 21:16:08 +01001142static int sbp2_logout_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Stefan Richter138c8af2006-11-02 21:16:08 +01001144 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 quadlet_t data[2];
1146 int error;
1147
Stefan Richter138c8af2006-11-02 21:16:08 +01001148 lu->logout_orb->reserved1 = 0x0;
1149 lu->logout_orb->reserved2 = 0x0;
1150 lu->logout_orb->reserved3 = 0x0;
1151 lu->logout_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Stefan Richter138c8af2006-11-02 21:16:08 +01001153 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1154 lu->logout_orb->login_ID_misc |=
1155 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1156 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Stefan Richter138c8af2006-11-02 21:16:08 +01001158 lu->logout_orb->reserved5 = 0x0;
1159 lu->logout_orb->status_fifo_hi =
1160 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1161 lu->logout_orb->status_fifo_lo =
1162 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Stefan Richter138c8af2006-11-02 21:16:08 +01001164 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1165 sizeof(struct sbp2_logout_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001168 data[1] = lu->logout_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 sbp2util_cpu_to_be32_buffer(data, 8);
1170
Stefan Richter138c8af2006-11-02 21:16:08 +01001171 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (error)
1173 return error;
1174
Stefan Richtere8ca5662006-11-02 21:16:08 +01001175 /* wait up to 1 second for the device to complete logout */
Stefan Richter138c8af2006-11-02 21:16:08 +01001176 if (sbp2util_access_timeout(lu, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return -EIO;
1178
1179 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Stefan Richter138c8af2006-11-02 21:16:08 +01001183static int sbp2_reconnect_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Stefan Richter138c8af2006-11-02 21:16:08 +01001185 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 quadlet_t data[2];
1187 int error;
1188
Stefan Richter138c8af2006-11-02 21:16:08 +01001189 lu->reconnect_orb->reserved1 = 0x0;
1190 lu->reconnect_orb->reserved2 = 0x0;
1191 lu->reconnect_orb->reserved3 = 0x0;
1192 lu->reconnect_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Stefan Richter138c8af2006-11-02 21:16:08 +01001194 lu->reconnect_orb->login_ID_misc =
1195 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1196 lu->reconnect_orb->login_ID_misc |=
1197 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1198 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Stefan Richter138c8af2006-11-02 21:16:08 +01001200 lu->reconnect_orb->reserved5 = 0x0;
1201 lu->reconnect_orb->status_fifo_hi =
1202 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1203 lu->reconnect_orb->status_fifo_lo =
1204 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Stefan Richter138c8af2006-11-02 21:16:08 +01001206 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1207 sizeof(struct sbp2_reconnect_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001210 data[1] = lu->reconnect_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 sbp2util_cpu_to_be32_buffer(data, 8);
1212
Stefan Richter138c8af2006-11-02 21:16:08 +01001213 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (error)
1215 return error;
1216
Stefan Richtere8ca5662006-11-02 21:16:08 +01001217 /* wait up to 1 second for reconnect status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001218 if (sbp2util_access_timeout(lu, HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001219 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001220 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 }
1222
Stefan Richtere8ca5662006-11-02 21:16:08 +01001223 /* make sure that the returned status matches the reconnect ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001224 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001225 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001226 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
Stefan Richter138c8af2006-11-02 21:16:08 +01001229 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001230 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001231 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233
Stefan Richter35644092006-11-02 21:16:08 +01001234 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001239 * Set the target node's Single Phase Retry limit. Affects the target's retry
1240 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001242static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 quadlet_t data;
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001247 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
Stefan Richterd024ebc2006-03-28 20:03:55 -05001248 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Stefan Richter138c8af2006-11-02 21:16:08 +01001252static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 struct unit_directory *ud)
1254{
1255 struct csr1212_keyval *kv;
1256 struct csr1212_dentry *dentry;
1257 u64 management_agent_addr;
Stefan Richter9117c6d2006-11-02 21:16:08 +01001258 u32 unit_characteristics, firmware_revision;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001259 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int i;
1261
Stefan Richter9117c6d2006-11-02 21:16:08 +01001262 management_agent_addr = 0;
1263 unit_characteristics = 0;
1264 firmware_revision = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1267 switch (kv->key.id) {
1268 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001269 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001271 CSR1212_REGISTER_SPACE_BASE +
1272 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Stefan Richteredf1fb22006-11-02 21:16:08 +01001274 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richter138c8af2006-11-02 21:16:08 +01001275 lu->lun = ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 break;
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001279 /* FIXME: This is ignored so far.
1280 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 break;
1283
1284 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 break;
1287
1288 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001289 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1290 * Its "ordered" bit has consequences for command ORB
1291 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 break;
1293 }
1294 }
1295
Stefan Richter24d3bf82006-05-15 22:04:59 +02001296 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Stefan Richter679c0cd2006-05-15 22:08:09 +02001298 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1299 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
Stefan Richter4618fd32006-12-30 15:37:09 +01001300 if (sbp2_workarounds_table[i].firmware_revision !=
1301 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001302 sbp2_workarounds_table[i].firmware_revision !=
1303 (firmware_revision & 0xffff00))
1304 continue;
Stefan Richter4618fd32006-12-30 15:37:09 +01001305 if (sbp2_workarounds_table[i].model_id !=
1306 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001307 sbp2_workarounds_table[i].model_id != ud->model_id)
1308 continue;
1309 workarounds |= sbp2_workarounds_table[i].workarounds;
1310 break;
1311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Stefan Richter24d3bf82006-05-15 22:04:59 +02001313 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001314 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1315 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1316 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001317 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001318 workarounds, firmware_revision,
1319 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1320 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001321
1322 /* We would need one SCSI host template for each target to adjust
1323 * max_sectors on the fly, therefore warn only. */
1324 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001325 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001326 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001327 "max transfer size. WARNING: Current max_sectors "
1328 "setting is larger than 128KB (%d sectors)",
1329 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001330 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 /* If this is a logical unit directory entry, process the parent
1333 * to get the values. */
1334 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001335 struct unit_directory *parent_ud = container_of(
1336 ud->device.parent, struct unit_directory, device);
1337 sbp2_parse_unit_directory(lu, parent_ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 } else {
Stefan Richter138c8af2006-11-02 21:16:08 +01001339 lu->management_agent_addr = management_agent_addr;
1340 lu->workarounds = workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richter138c8af2006-11-02 21:16:08 +01001342 lu->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344}
1345
Ben Collinsfd23ade2006-06-12 18:14:14 -04001346#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/*
1349 * This function is called in order to determine the max speed and packet
1350 * size we can use in our ORBs. Note, that we (the driver and host) only
1351 * initiate the transaction. The SBP-2 device actually transfers the data
1352 * (by reading from the DMA area we tell it). This means that the SBP-2
1353 * device decides the actual maximum data it can transfer. We just tell it
1354 * the speed that it needs to use, and the max_rec the host supports, and
1355 * it takes care of the rest.
1356 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001357static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Stefan Richter138c8af2006-11-02 21:16:08 +01001359 struct sbp2_fwhost_info *hi = lu->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001360 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Stefan Richter138c8af2006-11-02 21:16:08 +01001362 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Stefan Richter138c8af2006-11-02 21:16:08 +01001364 if (lu->speed_code > sbp2_max_speed) {
1365 lu->speed_code = sbp2_max_speed;
Stefan Richterca0c7452006-11-02 21:16:08 +01001366 SBP2_INFO("Reducing speed to %s",
1367 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369
1370 /* Payload size is the lesser of what our speed supports and what
1371 * our host supports. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001372 payload = min(sbp2_speedto_max_payload[lu->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001373 (u8) (hi->host->csr.max_rec - 1));
1374
1375 /* If physical DMA is off, work around limitation in ohci1394:
1376 * packet size must not exceed PAGE_SIZE */
Stefan Richter138c8af2006-11-02 21:16:08 +01001377 if (lu->ne->host->low_addr_space < (1ULL << 32))
Ben Collinsfd23ade2006-06-12 18:14:14 -04001378 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1379 payload)
1380 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Stefan Richter35644092006-11-02 21:16:08 +01001382 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
Stefan Richter138c8af2006-11-02 21:16:08 +01001383 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1384 hpsb_speedto_str[lu->speed_code],
Stefan Richter35644092006-11-02 21:16:08 +01001385 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Stefan Richter138c8af2006-11-02 21:16:08 +01001387 lu->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
Stefan Richter138c8af2006-11-02 21:16:08 +01001391static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 quadlet_t data;
1394 u64 addr;
1395 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001396 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Stefan Richterec9b7e12006-12-07 23:23:25 +01001398 /* flush lu->protocol_work */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001399 if (wait)
1400 flush_scheduled_work();
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richter138c8af2006-11-02 21:16:08 +01001403 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (wait)
Stefan Richter138c8af2006-11-02 21:16:08 +01001406 retval = hpsb_node_write(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001408 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 if (retval < 0) {
1411 SBP2_ERR("hpsb_node_write failed.\n");
1412 return -EIO;
1413 }
1414
Stefan Richtere8ca5662006-11-02 21:16:08 +01001415 /* make sure that the ORB_POINTER is written on next command */
Stefan Richter138c8af2006-11-02 21:16:08 +01001416 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1417 lu->last_orb = NULL;
1418 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Stefan Richtera237f352005-11-07 06:31:39 -05001420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001423static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001424 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001425 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001426 unsigned int scsi_use_sg,
1427 struct scatterlist *sgpnt,
1428 u32 orb_direction,
1429 enum dma_data_direction dma_dir)
1430{
Stefan Richter138c8af2006-11-02 21:16:08 +01001431 cmd->dma_dir = dma_dir;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001432 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1433 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1434
Stefan Richtere8ca5662006-11-02 21:16:08 +01001435 /* special case if only one element (and less than 64KB in size) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001436 if ((scsi_use_sg == 1) &&
1437 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1438
Stefan Richter138c8af2006-11-02 21:16:08 +01001439 cmd->dma_size = sgpnt[0].length;
1440 cmd->dma_type = CMD_DMA_PAGE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001441 cmd->cmd_dma = dma_map_page(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01001442 sgpnt[0].page, sgpnt[0].offset,
1443 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001444
Stefan Richter138c8af2006-11-02 21:16:08 +01001445 orb->data_descriptor_lo = cmd->cmd_dma;
1446 orb->misc |= ORB_SET_DATA_SIZE(cmd->dma_size);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001447
1448 } else {
1449 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001450 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001451 u32 sg_count, sg_len;
1452 dma_addr_t sg_addr;
Stefan Richter97d552e2006-12-29 23:47:04 +01001453 int i, count = dma_map_sg(hi->host->device.parent, sgpnt,
1454 scsi_use_sg, dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001455
Stefan Richter138c8af2006-11-02 21:16:08 +01001456 cmd->dma_size = scsi_use_sg;
1457 cmd->sge_buffer = sgpnt;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001458
1459 /* use page tables (s/g) */
1460 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
Stefan Richter138c8af2006-11-02 21:16:08 +01001461 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001462
Stefan Richtere8ca5662006-11-02 21:16:08 +01001463 /* loop through and fill out our SBP-2 page tables
1464 * (and split up anything too large) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001465 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1466 sg_len = sg_dma_len(sgpnt);
1467 sg_addr = sg_dma_address(sgpnt);
1468 while (sg_len) {
1469 sg_element[sg_count].segment_base_lo = sg_addr;
1470 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1471 sg_element[sg_count].length_segment_base_hi =
1472 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1473 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1474 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1475 } else {
1476 sg_element[sg_count].length_segment_base_hi =
1477 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1478 sg_len = 0;
1479 }
1480 sg_count++;
1481 }
1482 }
1483
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001484 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1485
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001486 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001487 (sizeof(struct sbp2_unrestricted_page_table)) *
1488 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001489 }
1490}
1491
1492static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001493 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001494 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001495 struct scatterlist *sgpnt,
1496 u32 orb_direction,
1497 unsigned int scsi_request_bufflen,
1498 void *scsi_request_buffer,
1499 enum dma_data_direction dma_dir)
1500{
Stefan Richter138c8af2006-11-02 21:16:08 +01001501 cmd->dma_dir = dma_dir;
1502 cmd->dma_size = scsi_request_bufflen;
1503 cmd->dma_type = CMD_DMA_SINGLE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001504 cmd->cmd_dma = dma_map_single(hi->host->device.parent,
1505 scsi_request_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +01001506 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001507 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1508 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1509
Stefan Richtere8ca5662006-11-02 21:16:08 +01001510 /* handle case where we get a command w/o s/g enabled
1511 * (but check for transfers larger than 64K) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001512 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1513
Stefan Richter138c8af2006-11-02 21:16:08 +01001514 orb->data_descriptor_lo = cmd->cmd_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001515 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1516
1517 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001518 /* The buffer is too large. Turn this into page tables. */
1519
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001520 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001521 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001522 u32 sg_count, sg_len;
1523 dma_addr_t sg_addr;
1524
Stefan Richter138c8af2006-11-02 21:16:08 +01001525 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001526 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1527
Stefan Richtere8ca5662006-11-02 21:16:08 +01001528 /* fill out our SBP-2 page tables; split up the large buffer */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001529 sg_count = 0;
1530 sg_len = scsi_request_bufflen;
Stefan Richter138c8af2006-11-02 21:16:08 +01001531 sg_addr = cmd->cmd_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001532 while (sg_len) {
1533 sg_element[sg_count].segment_base_lo = sg_addr;
1534 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1535 sg_element[sg_count].length_segment_base_hi =
1536 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1537 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1538 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1539 } else {
1540 sg_element[sg_count].length_segment_base_hi =
1541 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1542 sg_len = 0;
1543 }
1544 sg_count++;
1545 }
1546
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001547 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1548
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001549 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001550 (sizeof(struct sbp2_unrestricted_page_table)) *
1551 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001552 }
1553}
1554
Stefan Richter138c8af2006-11-02 21:16:08 +01001555static void sbp2_create_command_orb(struct sbp2_lu *lu,
1556 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001557 unchar *scsi_cmd,
1558 unsigned int scsi_use_sg,
1559 unsigned int scsi_request_bufflen,
1560 void *scsi_request_buffer,
1561 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Stefan Richter138c8af2006-11-02 21:16:08 +01001563 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001564 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Stefan Richter138c8af2006-11-02 21:16:08 +01001565 struct sbp2_command_orb *orb = &cmd->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001566 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001569 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 *
1571 * NOTE: We're doing unrestricted page tables (s/g), as this is
1572 * best performance (at least with the devices I have). This means
1573 * that data_size becomes the number of s/g elements, and
1574 * page_size should be zero (for unrestricted).
1575 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001576 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1577 orb->next_ORB_lo = 0x0;
1578 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1579 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1580 orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Stefan Richter43863eb2005-12-12 23:03:24 -05001582 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001583 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001584 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001585 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001586 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001587 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001588 else {
Stefan Richter35644092006-11-02 21:16:08 +01001589 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001590 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
Stefan Richtere8ca5662006-11-02 21:16:08 +01001593 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001595 orb->data_descriptor_hi = 0x0;
1596 orb->data_descriptor_lo = 0x0;
1597 orb->misc |= ORB_SET_DIRECTION(1);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001598 } else if (scsi_use_sg)
Stefan Richter138c8af2006-11-02 21:16:08 +01001599 sbp2_prep_command_orb_sg(orb, hi, cmd, scsi_use_sg, sgpnt,
1600 orb_direction, dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001601 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001602 sbp2_prep_command_orb_no_sg(orb, hi, cmd, sgpnt, orb_direction,
1603 scsi_request_bufflen,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001604 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Stefan Richter138c8af2006-11-02 21:16:08 +01001606 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Stefan Richter138c8af2006-11-02 21:16:08 +01001608 memset(orb->cdb, 0, 12);
1609 memcpy(orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
Stefan Richter138c8af2006-11-02 21:16:08 +01001612static void sbp2_link_orb_command(struct sbp2_lu *lu,
1613 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Stefan Richter138c8af2006-11-02 21:16:08 +01001615 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtercc078182006-07-23 22:12:00 +02001616 struct sbp2_command_orb *last_orb;
1617 dma_addr_t last_orb_dma;
Stefan Richter138c8af2006-11-02 21:16:08 +01001618 u64 addr = lu->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001619 quadlet_t data[2];
1620 size_t length;
1621 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Stefan Richter97d552e2006-12-29 23:47:04 +01001623 dma_sync_single_for_device(hi->host->device.parent,
1624 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001625 sizeof(struct sbp2_command_orb),
1626 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001627 dma_sync_single_for_device(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001628 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001629 DMA_TO_DEVICE);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001630
1631 /* check to see if there are any previous orbs to use */
Stefan Richter138c8af2006-11-02 21:16:08 +01001632 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1633 last_orb = lu->last_orb;
1634 last_orb_dma = lu->last_orb_dma;
Stefan Richtercc078182006-07-23 22:12:00 +02001635 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001637 * last_orb == NULL means: We know that the target's fetch agent
1638 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
Stefan Richtercc078182006-07-23 22:12:00 +02001640 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001642 data[1] = cmd->command_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001644 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001647 * last_orb != NULL means: We know that the target's fetch agent
1648 * is (very probably) not dead or in reset state right now.
1649 * We have an ORB already sent that we can append a new one to.
1650 * The target's fetch agent may or may not have read this
1651 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 */
Stefan Richter97d552e2006-12-29 23:47:04 +01001653 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001654 sizeof(struct sbp2_command_orb),
1655 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001656 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
Stefan Richtercc078182006-07-23 22:12:00 +02001657 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001659 last_orb->next_ORB_hi = 0;
Stefan Richter97d552e2006-12-29 23:47:04 +01001660 dma_sync_single_for_device(hi->host->device.parent,
1661 last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001662 sizeof(struct sbp2_command_orb),
1663 DMA_TO_DEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001664 addr += SBP2_DOORBELL_OFFSET;
1665 data[0] = 0;
1666 length = 4;
1667 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001668 lu->last_orb = &cmd->command_orb;
1669 lu->last_orb_dma = cmd->command_orb_dma;
1670 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Stefan Richter138c8af2006-11-02 21:16:08 +01001672 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
Stefan Richter09ee67a2006-08-14 18:43:00 +02001673 /*
1674 * sbp2util_node_write_no_wait failed. We certainly ran out
1675 * of transaction labels, perhaps just because there were no
1676 * context switches which gave khpsbpkt a chance to collect
1677 * free tlabels. Try again in non-atomic context. If necessary,
1678 * the workqueue job will sleep to guaranteedly get a tlabel.
1679 * We do not accept new commands until the job is over.
1680 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001681 scsi_block_requests(lu->shost);
1682 PREPARE_WORK(&lu->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001683 last_orb ? sbp2util_write_doorbell:
Stefan Richterec9b7e12006-12-07 23:23:25 +01001684 sbp2util_write_orb_pointer);
Stefan Richter138c8af2006-11-02 21:16:08 +01001685 schedule_work(&lu->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Stefan Richter138c8af2006-11-02 21:16:08 +01001689static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 void (*done)(struct scsi_cmnd *))
1691{
Stefan Richter138c8af2006-11-02 21:16:08 +01001692 unchar *scsi_cmd = (unchar *)SCpnt->cmnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 unsigned int request_bufflen = SCpnt->request_bufflen;
Stefan Richter138c8af2006-11-02 21:16:08 +01001694 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Stefan Richter138c8af2006-11-02 21:16:08 +01001696 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1697 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -05001698 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Stefan Richter138c8af2006-11-02 21:16:08 +01001700 sbp2_create_command_orb(lu, cmd, scsi_cmd, SCpnt->use_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 request_bufflen, SCpnt->request_buffer,
1702 SCpnt->sc_data_direction);
Stefan Richter138c8af2006-11-02 21:16:08 +01001703 sbp2_link_orb_command(lu, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Stefan Richtera237f352005-11-07 06:31:39 -05001705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 * Translates SBP-2 status into SCSI sense data for check conditions
1710 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001711static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1712 unchar *sense_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001714 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 sense_data[0] = 0x70;
1716 sense_data[1] = 0x0;
1717 sense_data[2] = sbp2_status[9];
1718 sense_data[3] = sbp2_status[12];
1719 sense_data[4] = sbp2_status[13];
1720 sense_data[5] = sbp2_status[14];
1721 sense_data[6] = sbp2_status[15];
1722 sense_data[7] = 10;
1723 sense_data[8] = sbp2_status[16];
1724 sense_data[9] = sbp2_status[17];
1725 sense_data[10] = sbp2_status[18];
1726 sense_data[11] = sbp2_status[19];
1727 sense_data[12] = sbp2_status[10];
1728 sense_data[13] = sbp2_status[11];
1729 sense_data[14] = sbp2_status[20];
1730 sense_data[15] = sbp2_status[21];
1731
Stefan Richtere8ca5662006-11-02 21:16:08 +01001732 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
Stefan Richter3e98eab42006-07-23 22:16:00 +02001735static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1736 int destid, quadlet_t *data, u64 addr,
1737 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
Stefan Richterca0c7452006-11-02 21:16:08 +01001739 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001740 struct sbp2_lu *lu = NULL, *lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001742 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
Stefan Richter138c8af2006-11-02 21:16:08 +01001744 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001745 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Stefan Richter60657722006-07-23 22:18:00 +02001747 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1748 SBP2_ERR("Wrong size of status block");
1749 return RCODE_ADDRESS_ERROR;
1750 }
1751 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001753 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001756 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001758 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001760
1761 /* Find the unit which wrote the status. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001762 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1763 if (lu_tmp->ne->nodeid == nodeid &&
1764 lu_tmp->status_fifo_addr == addr) {
1765 lu = lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 break;
1767 }
1768 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001769 if (unlikely(!lu)) {
1770 SBP2_ERR("lu is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001771 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773
Stefan Richter138c8af2006-11-02 21:16:08 +01001774 /* Put response into lu status fifo buffer. The first two bytes
Stefan Richter3e98eab42006-07-23 22:16:00 +02001775 * come in big endian bit order. Often the target writes only a
1776 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001777 * is implied to be zeros. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001778 sb = &lu->status_block;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001779 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1780 memcpy(sb, data, length);
1781 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Stefan Richtere8ca5662006-11-02 21:16:08 +01001783 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001784 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
Stefan Richter138c8af2006-11-02 21:16:08 +01001785 cmd = NULL;
Stefan Richter60657722006-07-23 22:18:00 +02001786 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001787 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1788 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01001789 dma_sync_single_for_cpu(hi->host->device.parent,
1790 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001791 sizeof(struct sbp2_command_orb),
1792 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001793 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001794 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001795 DMA_TO_DEVICE);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001796 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001797 /*
1798 * FIXME: If the src field in the status is 1, the ORB DMA must
1799 * not be reused until status for a subsequent ORB is received.
1800 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001801 SCpnt = cmd->Current_SCpnt;
1802 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1803 sbp2util_mark_command_completed(lu, cmd);
1804 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001807 u32 h = sb->ORB_offset_hi_misc;
1808 u32 r = STATUS_GET_RESP(h);
1809
1810 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001811 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001812 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001813 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001814 r == RESP_STATUS_TRANSPORT_FAILURE ?
1815 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001816 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001817 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001818
Stefan Richteredf1fb22006-11-02 21:16:08 +01001819 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab42006-07-23 22:16:00 +02001820 scsi_status = sbp2_status_to_sense_data(
1821 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001822
Stefan Richteredf1fb22006-11-02 21:16:08 +01001823 if (STATUS_TEST_DEAD(h))
Stefan Richter138c8af2006-11-02 21:16:08 +01001824 sbp2_agent_reset(lu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 }
1826
Stefan Richtere8ca5662006-11-02 21:16:08 +01001827 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001828 * are none, we know that the fetch agent left the active state
1829 * _and_ that we did not reactivate it yet. Therefore clear
1830 * last_orb so that next time we write directly to the
1831 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001832 * to refetch the next_ORB. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001833 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1834 if (list_empty(&lu->cmd_orb_inuse))
1835 lu->last_orb = NULL;
1836 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001839 /* It's probably status after a management request. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001840 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1841 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1842 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1843 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1844 lu->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001845 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
Stefan Richteredf1fb22006-11-02 21:16:08 +01001849 if (SCpnt)
Stefan Richter138c8af2006-11-02 21:16:08 +01001850 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1851 cmd->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001852 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855/**************************************
1856 * SCSI interface related section
1857 **************************************/
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1860 void (*done)(struct scsi_cmnd *))
1861{
Stefan Richter138c8af2006-11-02 21:16:08 +01001862 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001863 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001864 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Stefan Richter138c8af2006-11-02 21:16:08 +01001866 if (unlikely(!sbp2util_node_is_available(lu)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001867 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Stefan Richter138c8af2006-11-02 21:16:08 +01001869 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Stefan Richter5796aa72006-11-02 21:16:08 +01001871 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001872 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001873 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
Stefan Richtere8ca5662006-11-02 21:16:08 +01001876 /* Multiple units are currently represented to the SCSI core as separate
1877 * targets, not as one target with multiple LUs. Therefore return
1878 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001879 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001880 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Stefan Richter138c8af2006-11-02 21:16:08 +01001882 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001884 result = DID_BUS_BUSY << 16;
1885 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887
Stefan Richtere8ca5662006-11-02 21:16:08 +01001888 /* Bidirectional commands are not yet implemented,
1889 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001890 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001891 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1892 result = DID_ERROR << 16;
1893 goto done;
1894 }
1895
Stefan Richter138c8af2006-11-02 21:16:08 +01001896 if (sbp2_send_command(lu, SCpnt, done)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 SBP2_ERR("Error sending SCSI command");
Stefan Richter138c8af2006-11-02 21:16:08 +01001898 sbp2scsi_complete_command(lu,
1899 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 SCpnt, done);
1901 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Jody McIntyreabd559b2005-09-30 11:59:06 -07001904done:
1905 SCpnt->result = result;
1906 done(SCpnt);
1907 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
Stefan Richter138c8af2006-11-02 21:16:08 +01001910static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Stefan Richter138c8af2006-11-02 21:16:08 +01001912 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +01001914 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001915 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Stefan Richter138c8af2006-11-02 21:16:08 +01001917 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1918 while (!list_empty(&lu->cmd_orb_inuse)) {
1919 lh = lu->cmd_orb_inuse.next;
1920 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +01001921 dma_sync_single_for_cpu(hi->host->device.parent,
1922 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001923 sizeof(struct sbp2_command_orb),
1924 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001925 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001926 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001927 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001928 sbp2util_mark_command_completed(lu, cmd);
1929 if (cmd->Current_SCpnt) {
1930 cmd->Current_SCpnt->result = status << 16;
1931 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001934 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 return;
1937}
1938
1939/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001940 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001942static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1943 struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 void (*done)(struct scsi_cmnd *))
1945{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (!SCpnt) {
1947 SBP2_ERR("SCpnt is NULL");
1948 return;
1949 }
1950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001952 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001953 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001954 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Stefan Richtera237f352005-11-07 06:31:39 -05001956 case SBP2_SCSI_STATUS_BUSY:
1957 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1958 SCpnt->result = DID_BUS_BUSY << 16;
1959 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Stefan Richtera237f352005-11-07 06:31:39 -05001961 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001962 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001963 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Stefan Richtera237f352005-11-07 06:31:39 -05001965 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1966 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1967 SCpnt->result = DID_NO_CONNECT << 16;
1968 scsi_print_command(SCpnt);
1969 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Stefan Richtera237f352005-11-07 06:31:39 -05001971 case SBP2_SCSI_STATUS_CONDITION_MET:
1972 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1973 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1974 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1975 SCpnt->result = DID_ERROR << 16;
1976 scsi_print_command(SCpnt);
1977 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Stefan Richtera237f352005-11-07 06:31:39 -05001979 default:
1980 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1981 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983
Stefan Richtere8ca5662006-11-02 21:16:08 +01001984 /* If a bus reset is in progress and there was an error, complete
1985 * the command as busy so that it will get retried. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001986 if (!hpsb_node_entry_valid(lu->ne)
Stefan Richtera237f352005-11-07 06:31:39 -05001987 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 SBP2_ERR("Completing command with busy (bus reset)");
1989 SCpnt->result = DID_BUS_BUSY << 16;
1990 }
1991
Stefan Richtere8ca5662006-11-02 21:16:08 +01001992 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05001993 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
1995
Jody McIntyreabd559b2005-09-30 11:59:06 -07001996static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1997{
Stefan Richter138c8af2006-11-02 21:16:08 +01001998 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richtera80614d2006-02-14 22:04:19 -05001999
Stefan Richter138c8af2006-11-02 21:16:08 +01002000 lu->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02002001 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05002002
Stefan Richter138c8af2006-11-02 21:16:08 +01002003 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002004 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002005 return 0;
2006}
2007
Jody McIntyreabd559b2005-09-30 11:59:06 -07002008static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Stefan Richter138c8af2006-11-02 21:16:08 +01002010 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richter24d3bf82006-05-15 22:04:59 +02002011
Ben Collins365c7862005-11-07 06:31:24 -05002012 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002013
Stefan Richter1a74bc62007-01-10 20:17:15 +01002014 if (sdev->type == TYPE_ROM)
2015 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002016 if (sdev->type == TYPE_DISK &&
Stefan Richter138c8af2006-11-02 21:16:08 +01002017 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richter24d3bf82006-05-15 22:04:59 +02002018 sdev->skip_ms_page_8 = 1;
Stefan Richter138c8af2006-11-02 21:16:08 +01002019 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richtere9a1c522006-05-15 22:06:37 +02002020 sdev->fix_capacity = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return 0;
2022}
2023
Jody McIntyreabd559b2005-09-30 11:59:06 -07002024static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2025{
Stefan Richter138c8af2006-11-02 21:16:08 +01002026 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002027 return;
2028}
2029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002031 * Called by scsi stack when something has really gone wrong.
2032 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 */
2034static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2035{
Stefan Richter138c8af2006-11-02 21:16:08 +01002036 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
2037 struct sbp2_fwhost_info *hi = lu->hi;
2038 struct sbp2_command_info *cmd;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002039 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Stefan Richter35644092006-11-02 21:16:08 +01002041 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 scsi_print_command(SCpnt);
2043
Stefan Richter138c8af2006-11-02 21:16:08 +01002044 if (sbp2util_node_is_available(lu)) {
2045 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Stefan Richter23077f12006-09-11 20:17:14 +02002047 /* Return a matching command structure to the free pool. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002048 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2049 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2050 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01002051 dma_sync_single_for_cpu(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01002052 cmd->command_orb_dma,
2053 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +01002054 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01002055 dma_sync_single_for_cpu(hi->host->device.parent,
2056 cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +01002057 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01002058 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01002059 sbp2util_mark_command_completed(lu, cmd);
2060 if (cmd->Current_SCpnt) {
2061 cmd->Current_SCpnt->result = DID_ABORT << 16;
2062 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064 }
Stefan Richter138c8af2006-11-02 21:16:08 +01002065 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Stefan Richter138c8af2006-11-02 21:16:08 +01002067 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069
Stefan Richtera237f352005-11-07 06:31:39 -05002070 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
2073/*
2074 * Called by scsi stack when something has really gone wrong.
2075 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002076static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Stefan Richter138c8af2006-11-02 21:16:08 +01002078 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Stefan Richter35644092006-11-02 21:16:08 +01002080 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Stefan Richter138c8af2006-11-02 21:16:08 +01002082 if (sbp2util_node_is_available(lu)) {
Stefan Richter35644092006-11-02 21:16:08 +01002083 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter138c8af2006-11-02 21:16:08 +01002084 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
2086
Jody McIntyreabd559b2005-09-30 11:59:06 -07002087 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002088}
2089
Stefan Richtera237f352005-11-07 06:31:39 -05002090static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2091 struct device_attribute *attr,
2092 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 struct scsi_device *sdev;
Stefan Richter138c8af2006-11-02 21:16:08 +01002095 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 if (!(sdev = to_scsi_device(dev)))
2098 return 0;
2099
Stefan Richter138c8af2006-11-02 21:16:08 +01002100 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return 0;
2102
Stefan Richter138c8af2006-11-02 21:16:08 +01002103 return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)lu->ne->guid,
2104 lu->ud->id, ORB_SET_LUN(lu->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2108MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2109MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2110MODULE_LICENSE("GPL");
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112static int sbp2_module_init(void)
2113{
2114 int ret;
2115
Stefan Richterca0c7452006-11-02 21:16:08 +01002116 if (sbp2_serialize_io) {
2117 sbp2_shost_template.can_queue = 1;
2118 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
2120
Stefan Richter24d3bf82006-05-15 22:04:59 +02002121 if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01002122 (sbp2_max_sectors * 512) > (128 * 1024))
2123 sbp2_max_sectors = 128 * 1024 / 512;
2124 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 ret = hpsb_register_protocol(&sbp2_driver);
2128 if (ret) {
2129 SBP2_ERR("Failed to register protocol");
2130 hpsb_unregister_highlevel(&sbp2_highlevel);
2131 return ret;
2132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return 0;
2134}
2135
2136static void __exit sbp2_module_exit(void)
2137{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 hpsb_unregister_highlevel(&sbp2_highlevel);
2140}
2141
2142module_init(sbp2_module_init);
2143module_exit(sbp2_module_exit);