blob: 4edfff46b1e60a8801ef4a1a87a7598a758fd0cd [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/module.h>
63#include <linux/moduleparam.h>
Stefan Richter902abed2006-08-14 18:56:00 +020064#include <linux/slab.h>
65#include <linux/spinlock.h>
66#include <linux/stat.h>
67#include <linux/string.h>
68#include <linux/stringify.h>
69#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020070#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020073#include <asm/errno.h>
74#include <asm/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <asm/scatterlist.h>
Stefan Richter902abed2006-08-14 18:56:00 +020076#include <asm/system.h>
77#include <asm/types.h>
78
79#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
80#include <asm/io.h> /* for bus_to_virt */
81#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#include <scsi/scsi.h>
84#include <scsi/scsi_cmnd.h>
85#include <scsi/scsi_dbg.h>
86#include <scsi/scsi_device.h>
87#include <scsi/scsi_host.h>
88
89#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020091#include "hosts.h"
92#include "ieee1394.h"
93#include "ieee1394_core.h"
94#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +020096#include "ieee1394_types.h"
97#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include "sbp2.h"
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
101 * Module load parameter definitions
102 */
103
104/*
105 * Change max_speed on module load if you have a bad IEEE-1394
106 * controller that has trouble running 2KB packets at 400mb.
107 *
108 * NOTE: On certain OHCI parts I have seen short packets on async transmit
109 * (probably due to PCI latency/throughput issues with the part). You can
110 * bump down the speed if you are running into problems.
111 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100112static int sbp2_max_speed = IEEE1394_SPEED_MAX;
113module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter28b06672006-11-02 21:16:08 +0100114MODULE_PARM_DESC(max_speed, "Force max speed "
115 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/*
118 * Set serialize_io to 1 if you'd like only one scsi command sent
119 * down to us at a time (debugging). This might be necessary for very
120 * badly behaved sbp2 devices.
121 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100122static int sbp2_serialize_io = 1;
123module_param_named(serialize_io, sbp2_serialize_io, int, 0444);
124MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers "
125 "(default = 1, faster = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/*
128 * Bump up max_sectors if you'd like to support very large sized
129 * transfers. Please note that some older sbp2 bridge chips are broken for
130 * transfers greater or equal to 128KB. Default is a value of 255
131 * sectors, or just under 128KB (at 512 byte sector size). I can note that
132 * the Oxsemi sbp2 chipsets have no problems supporting very large
133 * transfer sizes.
134 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100135static int sbp2_max_sectors = SBP2_MAX_SECTORS;
136module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
137MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
138 "(default = " __stringify(SBP2_MAX_SECTORS) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/*
141 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
142 * do an exclusive login, as it's generally unsafe to have two hosts
143 * talking to a single sbp2 device at the same time (filesystem coherency,
144 * etc.). If you're running an sbp2 device that supports multiple logins,
145 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400146 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
147 * File System, or Lustre, then set exclusive_login to zero.
148 *
149 * So far only bridges from Oxford Semiconductor are known to support
150 * concurrent logins. Depending on firmware, four or two concurrent logins
151 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100153static int sbp2_exclusive_login = 1;
154module_param_named(exclusive_login, sbp2_exclusive_login, int, 0644);
155MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
156 "(default = 1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200159 * If any of the following workarounds is required for your device to work,
160 * please submit the kernel messages logged by sbp2 to the linux1394-devel
161 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200163 * - 128kB max transfer
164 * Limit transfer size. Necessary for some old bridges.
165 *
166 * - 36 byte inquiry
167 * When scsi_mod probes the device, let the inquiry command look like that
168 * from MS Windows.
169 *
170 * - skip mode page 8
171 * Suppress sending of mode_sense for mode page 8 if the device pretends to
172 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200173 *
174 * - fix capacity
175 * Tell sd_mod to correct the last sector number reported by read_capacity.
176 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
177 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200178 *
179 * - override internal blacklist
180 * Instead of adding to the built-in blacklist, use only the workarounds
181 * specified in the module load parameter.
182 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200184static int sbp2_default_workarounds;
185module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
186MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
187 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
188 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
189 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200190 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200191 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200192 ", or a combination)");
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Stefan Richteredf1fb22006-11-02 21:16:08 +0100195#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
196#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
199 * Globals
200 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100201static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
202static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100203 void (*)(struct scsi_cmnd *));
Stefan Richter138c8af2006-11-02 21:16:08 +0100204static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
205static int sbp2_start_device(struct sbp2_lu *);
206static void sbp2_remove_device(struct sbp2_lu *);
207static int sbp2_login_device(struct sbp2_lu *);
208static int sbp2_reconnect_device(struct sbp2_lu *);
209static int sbp2_logout_device(struct sbp2_lu *);
Stefan Richterea42ea02006-11-02 21:16:08 +0100210static void sbp2_host_reset(struct hpsb_host *);
211static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
212 u64, size_t, u16);
Stefan Richter138c8af2006-11-02 21:16:08 +0100213static int sbp2_agent_reset(struct sbp2_lu *, int);
214static void sbp2_parse_unit_directory(struct sbp2_lu *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100215 struct unit_directory *);
Stefan Richter138c8af2006-11-02 21:16:08 +0100216static int sbp2_set_busy_timeout(struct sbp2_lu *);
217static int sbp2_max_speed_and_size(struct sbp2_lu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100223 .name = SBP2_DEVICE_NAME,
224 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225};
226
227static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100228 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
231#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100232static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
233 u64, size_t, u16);
234static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
235 size_t, u16);
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100238 .read = sbp2_handle_physdma_read,
239 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241#endif
242
Stefan Richterea42ea02006-11-02 21:16:08 +0100243
244/*
245 * Interface to driver core and IEEE 1394 core
246 */
247static struct ieee1394_device_id sbp2_id_table[] = {
248 {
249 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
250 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
251 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
252 {}
253};
254MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
255
256static int sbp2_probe(struct device *);
257static int sbp2_remove(struct device *);
258static int sbp2_update(struct unit_directory *);
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260static struct hpsb_protocol_driver sbp2_driver = {
Ben Collinsed30c262006-11-23 13:59:48 -0500261 .name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .id_table = sbp2_id_table,
263 .update = sbp2_update,
264 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 .probe = sbp2_probe,
266 .remove = sbp2_remove,
267 },
268};
269
Stefan Richterea42ea02006-11-02 21:16:08 +0100270
271/*
272 * Interface to SCSI core
273 */
274static int sbp2scsi_queuecommand(struct scsi_cmnd *,
275 void (*)(struct scsi_cmnd *));
276static int sbp2scsi_abort(struct scsi_cmnd *);
277static int sbp2scsi_reset(struct scsi_cmnd *);
278static int sbp2scsi_slave_alloc(struct scsi_device *);
279static int sbp2scsi_slave_configure(struct scsi_device *);
280static void sbp2scsi_slave_destroy(struct scsi_device *);
281static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
282 struct device_attribute *, char *);
283
284static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
285
286static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
287 &dev_attr_ieee1394_id,
288 NULL
289};
290
Stefan Richterca0c7452006-11-02 21:16:08 +0100291static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100292 .module = THIS_MODULE,
293 .name = "SBP-2 IEEE-1394",
294 .proc_name = SBP2_DEVICE_NAME,
295 .queuecommand = sbp2scsi_queuecommand,
296 .eh_abort_handler = sbp2scsi_abort,
297 .eh_device_reset_handler = sbp2scsi_reset,
298 .slave_alloc = sbp2scsi_slave_alloc,
299 .slave_configure = sbp2scsi_slave_configure,
300 .slave_destroy = sbp2scsi_slave_destroy,
301 .this_id = -1,
302 .sg_tablesize = SG_ALL,
303 .use_clustering = ENABLE_CLUSTERING,
304 .cmd_per_lun = SBP2_MAX_CMDS,
305 .can_queue = SBP2_MAX_CMDS,
Stefan Richterea42ea02006-11-02 21:16:08 +0100306 .sdev_attrs = sbp2_sysfs_sdev_attrs,
307};
308
Stefan Richter4618fd32006-12-30 15:37:09 +0100309/* for match-all entries in sbp2_workarounds_table */
310#define SBP2_ROM_VALUE_WILDCARD 0x1000000
Stefan Richterea42ea02006-11-02 21:16:08 +0100311
Stefan Richtera80614d2006-02-14 22:04:19 -0500312/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200313 * List of devices with known bugs.
314 *
315 * The firmware_revision field, masked with 0xffff00, is the best indicator
316 * for the type of bridge chip of a device. It yields a few false positives
317 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500318 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200319static const struct {
320 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200321 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200322 unsigned workarounds;
323} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400324 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200325 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400326 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200327 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
328 SBP2_WORKAROUND_MODE_SENSE_8,
329 },
330 /* Initio bridges, actually only needed for some older ones */ {
331 .firmware_revision = 0x000200,
Stefan Richter4618fd32006-12-30 15:37:09 +0100332 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200333 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
334 },
335 /* Symbios bridge */ {
336 .firmware_revision = 0xa0b800,
Stefan Richter4618fd32006-12-30 15:37:09 +0100337 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200338 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200339 },
Stefan Richtere9a1c522006-05-15 22:06:37 +0200340 /* iPod 4th generation */ {
341 .firmware_revision = 0x0a2700,
342 .model_id = 0x000021,
343 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
344 },
345 /* iPod mini */ {
346 .firmware_revision = 0x0a2700,
347 .model_id = 0x000023,
348 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
349 },
350 /* iPod Photo */ {
351 .firmware_revision = 0x0a2700,
352 .model_id = 0x00007e,
353 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355};
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/**************************************
358 * General utility functions
359 **************************************/
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#ifndef __BIG_ENDIAN
362/*
363 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
364 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400365static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 u32 *temp = buffer;
368
369 for (length = (length >> 2); length--; )
370 temp[length] = be32_to_cpu(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
373/*
374 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
375 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400376static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 u32 *temp = buffer;
379
380 for (length = (length >> 2); length--; )
381 temp[length] = cpu_to_be32(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383#else /* BIG_ENDIAN */
384/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200385#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
386#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#endif
388
Stefan Richterca0c7452006-11-02 21:16:08 +0100389static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Stefan Richtere8398bb2006-07-23 22:19:00 +0200391/*
392 * Waits for completion of an SBP-2 access request.
393 * Returns nonzero if timed out or prematurely interrupted.
394 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100395static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
Stefan Richtere8398bb2006-07-23 22:19:00 +0200396{
Stefan Richterca0c7452006-11-02 21:16:08 +0100397 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200398
Stefan Richterca0c7452006-11-02 21:16:08 +0100399 leftover = wait_event_interruptible_timeout(
Stefan Richter138c8af2006-11-02 21:16:08 +0100400 sbp2_access_wq, lu->access_complete, timeout);
401 lu->access_complete = 0;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200402 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Stefan Richter138c8af2006-11-02 21:16:08 +0100405static void sbp2_free_packet(void *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 hpsb_free_tlabel(packet);
408 hpsb_free_packet(packet);
409}
410
Stefan Richtere8ca5662006-11-02 21:16:08 +0100411/*
412 * This is much like hpsb_node_write(), except it ignores the response
413 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 */
415static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richter138c8af2006-11-02 21:16:08 +0100416 quadlet_t *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 struct hpsb_packet *packet;
419
Stefan Richter138c8af2006-11-02 21:16:08 +0100420 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
Stefan Richtera237f352005-11-07 06:31:39 -0500421 if (!packet)
422 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Stefan Richter138c8af2006-11-02 21:16:08 +0100424 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 hpsb_node_fill_packet(ne, packet);
Stefan Richtera237f352005-11-07 06:31:39 -0500426 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 sbp2_free_packet(packet);
428 return -EIO;
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return 0;
431}
432
Stefan Richter138c8af2006-11-02 21:16:08 +0100433static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
434 quadlet_t *data, size_t len)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200435{
Stefan Richter138c8af2006-11-02 21:16:08 +0100436 /* There is a small window after a bus reset within which the node
437 * entry's generation is current but the reconnect wasn't completed. */
438 if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200439 return;
440
Stefan Richter138c8af2006-11-02 21:16:08 +0100441 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200442 data, len))
443 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
Stefan Richter138c8af2006-11-02 21:16:08 +0100444
445 /* Now accept new SCSI commands, unless a bus reset happended during
446 * hpsb_node_write. */
447 if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
448 scsi_unblock_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200449}
450
David Howellsc4028952006-11-22 14:57:56 +0000451static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200452{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100453 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200454 quadlet_t data[2];
455
Stefan Richterec9b7e12006-12-07 23:23:25 +0100456 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
457 data[1] = lu->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200458 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterec9b7e12006-12-07 23:23:25 +0100459 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200460}
461
David Howellsc4028952006-11-22 14:57:56 +0000462static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200463{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100464 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
465
466 sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200467}
468
Stefan Richter138c8af2006-11-02 21:16:08 +0100469static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Stefan Richter138c8af2006-11-02 21:16:08 +0100471 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int i;
473 unsigned long flags, orbs;
Stefan Richter138c8af2006-11-02 21:16:08 +0100474 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Stefan Richterca0c7452006-11-02 21:16:08 +0100476 orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Stefan Richter138c8af2006-11-02 21:16:08 +0100478 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 for (i = 0; i < orbs; i++) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100480 cmd = kzalloc(sizeof(*cmd), GFP_ATOMIC);
481 if (!cmd) {
482 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500483 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
Stefan Richter97d552e2006-12-29 23:47:04 +0100485 cmd->command_orb_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100486 &cmd->command_orb,
487 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100488 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100489 cmd->sge_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100490 &cmd->scatter_gather_element,
491 sizeof(cmd->scatter_gather_element),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100492 DMA_BIDIRECTIONAL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100493 INIT_LIST_HEAD(&cmd->list);
494 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100496 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return 0;
498}
499
Stefan Richter138c8af2006-11-02 21:16:08 +0100500static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Stefan Richter138c8af2006-11-02 21:16:08 +0100502 struct hpsb_host *host = lu->hi->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct list_head *lh, *next;
Stefan Richter138c8af2006-11-02 21:16:08 +0100504 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned long flags;
506
Stefan Richter138c8af2006-11-02 21:16:08 +0100507 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
508 if (!list_empty(&lu->cmd_orb_completed))
509 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
510 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +0100511 dma_unmap_single(host->device.parent,
512 cmd->command_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100514 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100515 dma_unmap_single(host->device.parent, cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100516 sizeof(cmd->scatter_gather_element),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100517 DMA_BIDIRECTIONAL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100518 kfree(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100520 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return;
522}
523
524/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100525 * Finds the sbp2_command for a given outstanding command ORB.
526 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528static struct sbp2_command_info *sbp2util_find_command_for_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100529 struct sbp2_lu *lu, dma_addr_t orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Stefan Richter138c8af2006-11-02 21:16:08 +0100531 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned long flags;
533
Stefan Richter138c8af2006-11-02 21:16:08 +0100534 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
535 if (!list_empty(&lu->cmd_orb_inuse))
536 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
537 if (cmd->command_orb_dma == orb) {
538 spin_unlock_irqrestore(
539 &lu->cmd_orb_lock, flags);
540 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100542 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500543 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100547 * Finds the sbp2_command for a given outstanding SCpnt.
548 * Only looks at the in-use list.
Stefan Richter138c8af2006-11-02 21:16:08 +0100549 * Must be called with lu->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200551static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
Stefan Richter138c8af2006-11-02 21:16:08 +0100552 struct sbp2_lu *lu, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Stefan Richter138c8af2006-11-02 21:16:08 +0100554 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Stefan Richter138c8af2006-11-02 21:16:08 +0100556 if (!list_empty(&lu->cmd_orb_inuse))
557 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
558 if (cmd->Current_SCpnt == SCpnt)
559 return cmd;
Stefan Richtera237f352005-11-07 06:31:39 -0500560 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static struct sbp2_command_info *sbp2util_allocate_command_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100564 struct sbp2_lu *lu,
565 struct scsi_cmnd *Current_SCpnt,
566 void (*Current_done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +0100569 struct sbp2_command_info *cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unsigned long flags;
571
Stefan Richter138c8af2006-11-02 21:16:08 +0100572 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
573 if (!list_empty(&lu->cmd_orb_completed)) {
574 lh = lu->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 list_del(lh);
Stefan Richter138c8af2006-11-02 21:16:08 +0100576 cmd = list_entry(lh, struct sbp2_command_info, list);
577 cmd->Current_done = Current_done;
578 cmd->Current_SCpnt = Current_SCpnt;
579 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
580 } else
Stefan Richterd024ebc2006-03-28 20:03:55 -0500581 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Stefan Richter138c8af2006-11-02 21:16:08 +0100582 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
583 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Stefan Richter58272c12006-11-04 09:55:33 +0100586/*
587 * Unmaps the DMAs of a command and moves the command to the completed ORB list.
588 * Must be called with lu->cmd_orb_lock held.
589 */
590static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
591 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Stefan Richter58272c12006-11-04 09:55:33 +0100593 struct hpsb_host *host = lu->ud->ne->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Stefan Richter138c8af2006-11-02 21:16:08 +0100595 if (cmd->cmd_dma) {
596 if (cmd->dma_type == CMD_DMA_SINGLE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100597 dma_unmap_single(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100598 cmd->dma_size, cmd->dma_dir);
599 else if (cmd->dma_type == CMD_DMA_PAGE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100600 dma_unmap_page(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100601 cmd->dma_size, cmd->dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100602 /* XXX: Check for CMD_DMA_NONE bug */
Stefan Richter138c8af2006-11-02 21:16:08 +0100603 cmd->dma_type = CMD_DMA_NONE;
604 cmd->cmd_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100606 if (cmd->sge_buffer) {
Stefan Richter97d552e2006-12-29 23:47:04 +0100607 dma_unmap_sg(host->device.parent, cmd->sge_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +0100608 cmd->dma_size, cmd->dma_dir);
609 cmd->sge_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Stefan Richtercd641f62006-11-02 21:16:08 +0100611 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Jody McIntyreabd559b2005-09-30 11:59:06 -0700614/*
Stefan Richter138c8af2006-11-02 21:16:08 +0100615 * Is lu valid? Is the 1394 node still present?
Jody McIntyreabd559b2005-09-30 11:59:06 -0700616 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100617static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700618{
Stefan Richter138c8af2006-11-02 21:16:08 +0100619 return lu && lu->ne && !lu->ne->in_limbo;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700620}
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622/*********************************************
623 * IEEE-1394 core driver stack related section
624 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626static int sbp2_probe(struct device *dev)
627{
628 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100629 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 ud = container_of(dev, struct unit_directory, device);
632
633 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
634 * instead. */
635 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
636 return -ENODEV;
637
Stefan Richter138c8af2006-11-02 21:16:08 +0100638 lu = sbp2_alloc_device(ud);
639 if (!lu)
Stefan Richtera237f352005-11-07 06:31:39 -0500640 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Stefan Richter138c8af2006-11-02 21:16:08 +0100642 sbp2_parse_unit_directory(lu, ud);
643 return sbp2_start_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646static int sbp2_remove(struct device *dev)
647{
648 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100649 struct sbp2_lu *lu;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700650 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 ud = container_of(dev, struct unit_directory, device);
Stefan Richter138c8af2006-11-02 21:16:08 +0100653 lu = ud->device.driver_data;
654 if (!lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700655 return 0;
656
Stefan Richter138c8af2006-11-02 21:16:08 +0100657 if (lu->shost) {
Stefan Richterbf637ec2006-01-31 00:13:06 -0500658 /* Get rid of enqueued commands if there is no chance to
659 * send them. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100660 if (!sbp2util_node_is_available(lu))
661 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100662 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500663 * highlevel drivers which would deadlock if blocked. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100664 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
665 scsi_unblock_requests(lu->shost);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500666 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100667 sdev = lu->sdev;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700668 if (sdev) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100669 lu->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700670 scsi_remove_device(sdev);
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Stefan Richter138c8af2006-11-02 21:16:08 +0100673 sbp2_logout_device(lu);
674 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 return 0;
677}
678
679static int sbp2_update(struct unit_directory *ud)
680{
Stefan Richter138c8af2006-11-02 21:16:08 +0100681 struct sbp2_lu *lu = ud->device.driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Stefan Richter138c8af2006-11-02 21:16:08 +0100683 if (sbp2_reconnect_device(lu)) {
Stefan Richtere8ca5662006-11-02 21:16:08 +0100684 /* Reconnect has failed. Perhaps we didn't reconnect fast
685 * enough. Try a regular login, but first log out just in
686 * case of any weirdness. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100687 sbp2_logout_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Stefan Richter138c8af2006-11-02 21:16:08 +0100689 if (sbp2_login_device(lu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* Login failed too, just fail, and the backend
691 * will call our sbp2_remove for us */
692 SBP2_ERR("Failed to reconnect to sbp2 device!");
693 return -EBUSY;
694 }
695 }
696
Stefan Richter138c8af2006-11-02 21:16:08 +0100697 sbp2_set_busy_timeout(lu);
698 sbp2_agent_reset(lu, 1);
699 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Stefan Richtere8ca5662006-11-02 21:16:08 +0100701 /* Complete any pending commands with busy (so they get retried)
702 * and remove them from our queue. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100703 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Stefan Richter4fc383c2006-08-14 18:46:00 +0200705 /* Accept new commands unless there was another bus reset in the
706 * meantime. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100707 if (hpsb_node_entry_valid(lu->ne)) {
708 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
709 scsi_unblock_requests(lu->shost);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return 0;
712}
713
Stefan Richter138c8af2006-11-02 21:16:08 +0100714static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Stefan Richterca0c7452006-11-02 21:16:08 +0100716 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100717 struct Scsi_Host *shost = NULL;
718 struct sbp2_lu *lu = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Stefan Richter138c8af2006-11-02 21:16:08 +0100720 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
721 if (!lu) {
722 SBP2_ERR("failed to create lu");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 goto failed_alloc;
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Stefan Richter138c8af2006-11-02 21:16:08 +0100726 lu->ne = ud->ne;
727 lu->ud = ud;
728 lu->speed_code = IEEE1394_SPEED_100;
729 lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
730 lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
731 INIT_LIST_HEAD(&lu->cmd_orb_inuse);
732 INIT_LIST_HEAD(&lu->cmd_orb_completed);
733 INIT_LIST_HEAD(&lu->lu_list);
734 spin_lock_init(&lu->cmd_orb_lock);
735 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
736 INIT_WORK(&lu->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Stefan Richter138c8af2006-11-02 21:16:08 +0100738 ud->device.driver_data = lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
741 if (!hi) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100742 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
743 sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (!hi) {
745 SBP2_ERR("failed to allocate hostinfo");
746 goto failed_alloc;
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 hi->host = ud->ne->host;
Stefan Richter138c8af2006-11-02 21:16:08 +0100749 INIT_LIST_HEAD(&hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
752 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500753 * enabled or not supported on host controller */
754 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
755 &sbp2_physdma_ops,
756 0x0ULL, 0xfffffffcULL)) {
757 SBP2_ERR("failed to register lower 4GB address range");
758 goto failed_alloc;
759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760#endif
761 }
762
Stefan Richter147830f2006-03-28 19:54:52 -0500763 /* Prevent unloading of the 1394 host */
764 if (!try_module_get(hi->host->driver->owner)) {
765 SBP2_ERR("failed to get a reference on 1394 host driver");
766 goto failed_alloc;
767 }
768
Stefan Richter138c8af2006-11-02 21:16:08 +0100769 lu->hi = hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Stefan Richter138c8af2006-11-02 21:16:08 +0100771 list_add_tail(&lu->lu_list, &hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Stefan Richter35bdddb2006-01-31 00:13:33 -0500773 /* Register the status FIFO address range. We could use the same FIFO
774 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200775 * target in order to support multi-unit devices.
776 * The FIFO is located out of the local host controller's physical range
777 * but, if possible, within the posted write area. Status writes will
778 * then be performed as unified transactions. This slightly reduces
779 * bandwidth usage, and some Prolific based devices seem to require it.
780 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100781 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
Stefan Richter35bdddb2006-01-31 00:13:33 -0500782 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
783 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400784 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Stefan Richter138c8af2006-11-02 21:16:08 +0100785 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500786 SBP2_ERR("failed to allocate status FIFO address range");
787 goto failed_alloc;
788 }
789
Stefan Richter138c8af2006-11-02 21:16:08 +0100790 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
791 if (!shost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 SBP2_ERR("failed to register scsi host");
793 goto failed_alloc;
794 }
795
Stefan Richter138c8af2006-11-02 21:16:08 +0100796 shost->hostdata[0] = (unsigned long)lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Stefan Richter138c8af2006-11-02 21:16:08 +0100798 if (!scsi_add_host(shost, &ud->device)) {
799 lu->shost = shost;
800 return lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
803 SBP2_ERR("failed to add scsi host");
Stefan Richter138c8af2006-11-02 21:16:08 +0100804 scsi_host_put(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806failed_alloc:
Stefan Richter138c8af2006-11-02 21:16:08 +0100807 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return NULL;
809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811static void sbp2_host_reset(struct hpsb_host *host)
812{
Stefan Richterca0c7452006-11-02 21:16:08 +0100813 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100814 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200817 if (!hi)
818 return;
Stefan Richter138c8af2006-11-02 21:16:08 +0100819 list_for_each_entry(lu, &hi->logical_units, lu_list)
820 if (likely(atomic_read(&lu->state) !=
Stefan Richter2cccbb52006-08-14 18:59:00 +0200821 SBP2LU_STATE_IN_SHUTDOWN)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100822 atomic_set(&lu->state, SBP2LU_STATE_IN_RESET);
823 scsi_block_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Stefan Richter138c8af2006-11-02 21:16:08 +0100827static int sbp2_start_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Stefan Richter138c8af2006-11-02 21:16:08 +0100829 struct sbp2_fwhost_info *hi = lu->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500830 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Stefan Richter97d552e2006-12-29 23:47:04 +0100832 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500833 sizeof(struct sbp2_login_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100834 &lu->login_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100835 if (!lu->login_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Stefan Richter97d552e2006-12-29 23:47:04 +0100838 lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500839 sizeof(struct sbp2_query_logins_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100840 &lu->query_logins_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100841 if (!lu->query_logins_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Stefan Richter97d552e2006-12-29 23:47:04 +0100844 lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500845 sizeof(struct sbp2_query_logins_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100846 &lu->query_logins_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100847 if (!lu->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Stefan Richter97d552e2006-12-29 23:47:04 +0100850 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500851 sizeof(struct sbp2_reconnect_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100852 &lu->reconnect_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100853 if (!lu->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Stefan Richter97d552e2006-12-29 23:47:04 +0100856 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500857 sizeof(struct sbp2_logout_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100858 &lu->logout_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100859 if (!lu->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Stefan Richter97d552e2006-12-29 23:47:04 +0100862 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500863 sizeof(struct sbp2_login_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100864 &lu->login_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100865 if (!lu->login_orb)
Stefan Richtereaceec72005-12-13 11:05:05 -0500866 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Stefan Richter138c8af2006-11-02 21:16:08 +0100868 if (sbp2util_create_command_orb_pool(lu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 SBP2_ERR("sbp2util_create_command_orb_pool failed!");
Stefan Richter138c8af2006-11-02 21:16:08 +0100870 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return -ENOMEM;
872 }
873
Stefan Richtere8ca5662006-11-02 21:16:08 +0100874 /* Wait a second before trying to log in. Previously logged in
875 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200876 if (msleep_interruptible(1000)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100877 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return -EINTR;
879 }
Stefan Richtera237f352005-11-07 06:31:39 -0500880
Stefan Richter138c8af2006-11-02 21:16:08 +0100881 if (sbp2_login_device(lu)) {
882 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return -EBUSY;
884 }
885
Stefan Richter138c8af2006-11-02 21:16:08 +0100886 sbp2_set_busy_timeout(lu);
887 sbp2_agent_reset(lu, 1);
888 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Stefan Richter138c8af2006-11-02 21:16:08 +0100890 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
James Bottomley146f7262005-09-10 12:44:09 -0500891 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 SBP2_ERR("scsi_add_device failed");
Stefan Richter138c8af2006-11-02 21:16:08 +0100893 sbp2_logout_device(lu);
894 sbp2_remove_device(lu);
James Bottomley146f7262005-09-10 12:44:09 -0500895 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
898 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500899
900alloc_fail:
Stefan Richter138c8af2006-11-02 21:16:08 +0100901 SBP2_ERR("Could not allocate memory for lu");
902 sbp2_remove_device(lu);
Stefan Richtereaceec72005-12-13 11:05:05 -0500903 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Stefan Richter138c8af2006-11-02 21:16:08 +0100906static void sbp2_remove_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Stefan Richterca0c7452006-11-02 21:16:08 +0100908 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Stefan Richter138c8af2006-11-02 21:16:08 +0100910 if (!lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return;
912
Stefan Richter138c8af2006-11-02 21:16:08 +0100913 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Stefan Richter138c8af2006-11-02 21:16:08 +0100915 if (lu->shost) {
916 scsi_remove_host(lu->shost);
917 scsi_host_put(lu->shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
Stefan Richter09ee67a2006-08-14 18:43:00 +0200919 flush_scheduled_work();
Stefan Richter138c8af2006-11-02 21:16:08 +0100920 sbp2util_remove_command_orb_pool(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Stefan Richter138c8af2006-11-02 21:16:08 +0100922 list_del(&lu->lu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Stefan Richter138c8af2006-11-02 21:16:08 +0100924 if (lu->login_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100925 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 sizeof(struct sbp2_login_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100927 lu->login_response,
928 lu->login_response_dma);
929 if (lu->login_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100930 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 sizeof(struct sbp2_login_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100932 lu->login_orb,
933 lu->login_orb_dma);
934 if (lu->reconnect_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100935 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 sizeof(struct sbp2_reconnect_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100937 lu->reconnect_orb,
938 lu->reconnect_orb_dma);
939 if (lu->logout_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100940 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 sizeof(struct sbp2_logout_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100942 lu->logout_orb,
943 lu->logout_orb_dma);
944 if (lu->query_logins_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100945 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 sizeof(struct sbp2_query_logins_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100947 lu->query_logins_orb,
948 lu->query_logins_orb_dma);
949 if (lu->query_logins_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100950 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 sizeof(struct sbp2_query_logins_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100952 lu->query_logins_response,
953 lu->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Stefan Richter138c8af2006-11-02 21:16:08 +0100955 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -0500956 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Stefan Richter138c8af2006-11-02 21:16:08 +0100957 lu->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -0500958
Stefan Richter138c8af2006-11-02 21:16:08 +0100959 lu->ud->device.driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Stefan Richter147830f2006-03-28 19:54:52 -0500961 if (hi)
962 module_put(hi->host->driver->owner);
963
Stefan Richter138c8af2006-11-02 21:16:08 +0100964 kfree(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
968/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100969 * Deal with write requests on adapters which do not support physical DMA or
970 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 */
Stefan Richtera237f352005-11-07 06:31:39 -0500972static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
973 int destid, quadlet_t *data, u64 addr,
974 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Stefan Richtera237f352005-11-07 06:31:39 -0500976 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500977 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
980/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100981 * Deal with read requests on adapters which do not support physical DMA or
982 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 */
Stefan Richtera237f352005-11-07 06:31:39 -0500984static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
985 quadlet_t *data, u64 addr, size_t length,
986 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Stefan Richtera237f352005-11-07 06:31:39 -0500988 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -0500989 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991#endif
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993/**************************************
994 * SBP-2 protocol related section
995 **************************************/
996
Stefan Richter138c8af2006-11-02 21:16:08 +0100997static int sbp2_query_logins(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Stefan Richter138c8af2006-11-02 21:16:08 +0100999 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 quadlet_t data[2];
1001 int max_logins;
1002 int active_logins;
1003
Stefan Richter138c8af2006-11-02 21:16:08 +01001004 lu->query_logins_orb->reserved1 = 0x0;
1005 lu->query_logins_orb->reserved2 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Stefan Richter138c8af2006-11-02 21:16:08 +01001007 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1008 lu->query_logins_orb->query_response_hi =
1009 ORB_SET_NODE_ID(hi->host->node_id);
1010 lu->query_logins_orb->lun_misc =
1011 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1012 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1013 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Stefan Richter138c8af2006-11-02 21:16:08 +01001015 lu->query_logins_orb->reserved_resp_length =
1016 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1017 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Stefan Richter138c8af2006-11-02 21:16:08 +01001019 lu->query_logins_orb->status_fifo_hi =
1020 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1021 lu->query_logins_orb->status_fifo_lo =
1022 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Stefan Richter138c8af2006-11-02 21:16:08 +01001024 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1025 sizeof(struct sbp2_query_logins_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Stefan Richter138c8af2006-11-02 21:16:08 +01001027 memset(lu->query_logins_response, 0,
1028 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001031 data[1] = lu->query_logins_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 sbp2util_cpu_to_be32_buffer(data, 8);
1033
Stefan Richter138c8af2006-11-02 21:16:08 +01001034 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Stefan Richter138c8af2006-11-02 21:16:08 +01001036 if (sbp2util_access_timeout(lu, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001038 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040
Stefan Richter138c8af2006-11-02 21:16:08 +01001041 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001043 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
1045
Stefan Richter138c8af2006-11-02 21:16:08 +01001046 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001047 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001048 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
Stefan Richter138c8af2006-11-02 21:16:08 +01001051 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1052 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Stefan Richter138c8af2006-11-02 21:16:08 +01001054 max_logins = RESPONSE_GET_MAX_LOGINS(
1055 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001056 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Stefan Richter138c8af2006-11-02 21:16:08 +01001058 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1059 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001060 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001063 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
1066 return 0;
1067}
1068
Stefan Richter138c8af2006-11-02 21:16:08 +01001069static int sbp2_login_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Stefan Richter138c8af2006-11-02 21:16:08 +01001071 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 quadlet_t data[2];
1073
Stefan Richter138c8af2006-11-02 21:16:08 +01001074 if (!lu->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001075 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Stefan Richter138c8af2006-11-02 21:16:08 +01001077 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001078 SBP2_INFO("Device does not support any more concurrent logins");
1079 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Stefan Richtere8ca5662006-11-02 21:16:08 +01001082 /* assume no password */
Stefan Richter138c8af2006-11-02 21:16:08 +01001083 lu->login_orb->password_hi = 0;
1084 lu->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Stefan Richter138c8af2006-11-02 21:16:08 +01001086 lu->login_orb->login_response_lo = lu->login_response_dma;
1087 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1088 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001089
1090 /* one second reconnect time */
Stefan Richter138c8af2006-11-02 21:16:08 +01001091 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1092 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1093 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1094 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Stefan Richter138c8af2006-11-02 21:16:08 +01001096 lu->login_orb->passwd_resp_lengths =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Stefan Richter138c8af2006-11-02 21:16:08 +01001099 lu->login_orb->status_fifo_hi =
1100 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1101 lu->login_orb->status_fifo_lo =
1102 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Stefan Richter138c8af2006-11-02 21:16:08 +01001104 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1105 sizeof(struct sbp2_login_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Stefan Richter138c8af2006-11-02 21:16:08 +01001107 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001110 data[1] = lu->login_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 sbp2util_cpu_to_be32_buffer(data, 8);
1112
Stefan Richter138c8af2006-11-02 21:16:08 +01001113 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Stefan Richtere8ca5662006-11-02 21:16:08 +01001115 /* wait up to 20 seconds for login status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001116 if (sbp2util_access_timeout(lu, 20*HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001117 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001118 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
Stefan Richtere8ca5662006-11-02 21:16:08 +01001121 /* make sure that the returned status matches the login ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001122 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001123 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001124 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126
Stefan Richter138c8af2006-11-02 21:16:08 +01001127 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001128 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001129 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131
Stefan Richter138c8af2006-11-02 21:16:08 +01001132 sbp2util_cpu_to_be32_buffer(lu->login_response,
1133 sizeof(struct sbp2_login_response));
1134 lu->command_block_agent_addr =
1135 ((u64)lu->login_response->command_block_agent_hi) << 32;
1136 lu->command_block_agent_addr |=
1137 ((u64)lu->login_response->command_block_agent_lo);
1138 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Stefan Richter138c8af2006-11-02 21:16:08 +01001144static int sbp2_logout_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Stefan Richter138c8af2006-11-02 21:16:08 +01001146 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 quadlet_t data[2];
1148 int error;
1149
Stefan Richter138c8af2006-11-02 21:16:08 +01001150 lu->logout_orb->reserved1 = 0x0;
1151 lu->logout_orb->reserved2 = 0x0;
1152 lu->logout_orb->reserved3 = 0x0;
1153 lu->logout_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Stefan Richter138c8af2006-11-02 21:16:08 +01001155 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1156 lu->logout_orb->login_ID_misc |=
1157 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1158 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Stefan Richter138c8af2006-11-02 21:16:08 +01001160 lu->logout_orb->reserved5 = 0x0;
1161 lu->logout_orb->status_fifo_hi =
1162 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1163 lu->logout_orb->status_fifo_lo =
1164 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Stefan Richter138c8af2006-11-02 21:16:08 +01001166 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1167 sizeof(struct sbp2_logout_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001170 data[1] = lu->logout_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 sbp2util_cpu_to_be32_buffer(data, 8);
1172
Stefan Richter138c8af2006-11-02 21:16:08 +01001173 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (error)
1175 return error;
1176
Stefan Richtere8ca5662006-11-02 21:16:08 +01001177 /* wait up to 1 second for the device to complete logout */
Stefan Richter138c8af2006-11-02 21:16:08 +01001178 if (sbp2util_access_timeout(lu, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return -EIO;
1180
1181 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001182 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Stefan Richter138c8af2006-11-02 21:16:08 +01001185static int sbp2_reconnect_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Stefan Richter138c8af2006-11-02 21:16:08 +01001187 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 quadlet_t data[2];
1189 int error;
1190
Stefan Richter138c8af2006-11-02 21:16:08 +01001191 lu->reconnect_orb->reserved1 = 0x0;
1192 lu->reconnect_orb->reserved2 = 0x0;
1193 lu->reconnect_orb->reserved3 = 0x0;
1194 lu->reconnect_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Stefan Richter138c8af2006-11-02 21:16:08 +01001196 lu->reconnect_orb->login_ID_misc =
1197 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1198 lu->reconnect_orb->login_ID_misc |=
1199 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1200 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Stefan Richter138c8af2006-11-02 21:16:08 +01001202 lu->reconnect_orb->reserved5 = 0x0;
1203 lu->reconnect_orb->status_fifo_hi =
1204 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1205 lu->reconnect_orb->status_fifo_lo =
1206 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Stefan Richter138c8af2006-11-02 21:16:08 +01001208 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1209 sizeof(struct sbp2_reconnect_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001212 data[1] = lu->reconnect_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 sbp2util_cpu_to_be32_buffer(data, 8);
1214
Stefan Richter138c8af2006-11-02 21:16:08 +01001215 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (error)
1217 return error;
1218
Stefan Richtere8ca5662006-11-02 21:16:08 +01001219 /* wait up to 1 second for reconnect status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001220 if (sbp2util_access_timeout(lu, HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001221 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001222 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
Stefan Richtere8ca5662006-11-02 21:16:08 +01001225 /* make sure that the returned status matches the reconnect ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001226 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001227 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001228 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
Stefan Richter138c8af2006-11-02 21:16:08 +01001231 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001232 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001233 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
Stefan Richter35644092006-11-02 21:16:08 +01001236 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001241 * Set the target node's Single Phase Retry limit. Affects the target's retry
1242 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001244static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
1246 quadlet_t data;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001249 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
Stefan Richterd024ebc2006-03-28 20:03:55 -05001250 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Stefan Richter138c8af2006-11-02 21:16:08 +01001254static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 struct unit_directory *ud)
1256{
1257 struct csr1212_keyval *kv;
1258 struct csr1212_dentry *dentry;
1259 u64 management_agent_addr;
Stefan Richter9117c6d2006-11-02 21:16:08 +01001260 u32 unit_characteristics, firmware_revision;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001261 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int i;
1263
Stefan Richter9117c6d2006-11-02 21:16:08 +01001264 management_agent_addr = 0;
1265 unit_characteristics = 0;
1266 firmware_revision = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1269 switch (kv->key.id) {
1270 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001271 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001273 CSR1212_REGISTER_SPACE_BASE +
1274 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Stefan Richteredf1fb22006-11-02 21:16:08 +01001276 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richter138c8af2006-11-02 21:16:08 +01001277 lu->lun = ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 break;
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001281 /* FIXME: This is ignored so far.
1282 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 break;
1285
1286 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 break;
1289
1290 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001291 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1292 * Its "ordered" bit has consequences for command ORB
1293 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295 }
1296 }
1297
Stefan Richter24d3bf82006-05-15 22:04:59 +02001298 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Stefan Richter679c0cd2006-05-15 22:08:09 +02001300 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1301 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
Stefan Richter4618fd32006-12-30 15:37:09 +01001302 if (sbp2_workarounds_table[i].firmware_revision !=
1303 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001304 sbp2_workarounds_table[i].firmware_revision !=
1305 (firmware_revision & 0xffff00))
1306 continue;
Stefan Richter4618fd32006-12-30 15:37:09 +01001307 if (sbp2_workarounds_table[i].model_id !=
1308 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001309 sbp2_workarounds_table[i].model_id != ud->model_id)
1310 continue;
1311 workarounds |= sbp2_workarounds_table[i].workarounds;
1312 break;
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Stefan Richter24d3bf82006-05-15 22:04:59 +02001315 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001316 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1317 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1318 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001319 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001320 workarounds, firmware_revision,
1321 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1322 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001323
1324 /* We would need one SCSI host template for each target to adjust
1325 * max_sectors on the fly, therefore warn only. */
1326 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001327 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001328 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001329 "max transfer size. WARNING: Current max_sectors "
1330 "setting is larger than 128KB (%d sectors)",
1331 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001332 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /* If this is a logical unit directory entry, process the parent
1335 * to get the values. */
1336 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001337 struct unit_directory *parent_ud = container_of(
1338 ud->device.parent, struct unit_directory, device);
1339 sbp2_parse_unit_directory(lu, parent_ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 } else {
Stefan Richter138c8af2006-11-02 21:16:08 +01001341 lu->management_agent_addr = management_agent_addr;
1342 lu->workarounds = workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richter138c8af2006-11-02 21:16:08 +01001344 lu->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
1346}
1347
Ben Collinsfd23ade2006-06-12 18:14:14 -04001348#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350/*
1351 * This function is called in order to determine the max speed and packet
1352 * size we can use in our ORBs. Note, that we (the driver and host) only
1353 * initiate the transaction. The SBP-2 device actually transfers the data
1354 * (by reading from the DMA area we tell it). This means that the SBP-2
1355 * device decides the actual maximum data it can transfer. We just tell it
1356 * the speed that it needs to use, and the max_rec the host supports, and
1357 * it takes care of the rest.
1358 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001359static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Stefan Richter138c8af2006-11-02 21:16:08 +01001361 struct sbp2_fwhost_info *hi = lu->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001362 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Stefan Richter138c8af2006-11-02 21:16:08 +01001364 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Stefan Richter138c8af2006-11-02 21:16:08 +01001366 if (lu->speed_code > sbp2_max_speed) {
1367 lu->speed_code = sbp2_max_speed;
Stefan Richterca0c7452006-11-02 21:16:08 +01001368 SBP2_INFO("Reducing speed to %s",
1369 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
1372 /* Payload size is the lesser of what our speed supports and what
1373 * our host supports. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001374 payload = min(sbp2_speedto_max_payload[lu->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001375 (u8) (hi->host->csr.max_rec - 1));
1376
1377 /* If physical DMA is off, work around limitation in ohci1394:
1378 * packet size must not exceed PAGE_SIZE */
Stefan Richter138c8af2006-11-02 21:16:08 +01001379 if (lu->ne->host->low_addr_space < (1ULL << 32))
Ben Collinsfd23ade2006-06-12 18:14:14 -04001380 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1381 payload)
1382 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Stefan Richter35644092006-11-02 21:16:08 +01001384 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
Stefan Richter138c8af2006-11-02 21:16:08 +01001385 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1386 hpsb_speedto_str[lu->speed_code],
Stefan Richter35644092006-11-02 21:16:08 +01001387 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Stefan Richter138c8af2006-11-02 21:16:08 +01001389 lu->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Stefan Richter138c8af2006-11-02 21:16:08 +01001393static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 quadlet_t data;
1396 u64 addr;
1397 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001398 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Stefan Richterec9b7e12006-12-07 23:23:25 +01001400 /* flush lu->protocol_work */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001401 if (wait)
1402 flush_scheduled_work();
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richter138c8af2006-11-02 21:16:08 +01001405 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 if (wait)
Stefan Richter138c8af2006-11-02 21:16:08 +01001408 retval = hpsb_node_write(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001410 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 if (retval < 0) {
1413 SBP2_ERR("hpsb_node_write failed.\n");
1414 return -EIO;
1415 }
1416
Stefan Richtere8ca5662006-11-02 21:16:08 +01001417 /* make sure that the ORB_POINTER is written on next command */
Stefan Richter138c8af2006-11-02 21:16:08 +01001418 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1419 lu->last_orb = NULL;
1420 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Stefan Richtera237f352005-11-07 06:31:39 -05001422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001425static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001426 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001427 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001428 unsigned int scsi_use_sg,
1429 struct scatterlist *sgpnt,
1430 u32 orb_direction,
1431 enum dma_data_direction dma_dir)
1432{
Stefan Richter138c8af2006-11-02 21:16:08 +01001433 cmd->dma_dir = dma_dir;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001434 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1435 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1436
Stefan Richtere8ca5662006-11-02 21:16:08 +01001437 /* special case if only one element (and less than 64KB in size) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001438 if ((scsi_use_sg == 1) &&
1439 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1440
Stefan Richter138c8af2006-11-02 21:16:08 +01001441 cmd->dma_size = sgpnt[0].length;
1442 cmd->dma_type = CMD_DMA_PAGE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001443 cmd->cmd_dma = dma_map_page(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01001444 sgpnt[0].page, sgpnt[0].offset,
1445 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001446
Stefan Richter138c8af2006-11-02 21:16:08 +01001447 orb->data_descriptor_lo = cmd->cmd_dma;
1448 orb->misc |= ORB_SET_DATA_SIZE(cmd->dma_size);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001449
1450 } else {
1451 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001452 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001453 u32 sg_count, sg_len;
1454 dma_addr_t sg_addr;
Stefan Richter97d552e2006-12-29 23:47:04 +01001455 int i, count = dma_map_sg(hi->host->device.parent, sgpnt,
1456 scsi_use_sg, dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001457
Stefan Richter138c8af2006-11-02 21:16:08 +01001458 cmd->dma_size = scsi_use_sg;
1459 cmd->sge_buffer = sgpnt;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001460
1461 /* use page tables (s/g) */
1462 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
Stefan Richter138c8af2006-11-02 21:16:08 +01001463 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001464
Stefan Richtere8ca5662006-11-02 21:16:08 +01001465 /* loop through and fill out our SBP-2 page tables
1466 * (and split up anything too large) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001467 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1468 sg_len = sg_dma_len(sgpnt);
1469 sg_addr = sg_dma_address(sgpnt);
1470 while (sg_len) {
1471 sg_element[sg_count].segment_base_lo = sg_addr;
1472 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1473 sg_element[sg_count].length_segment_base_hi =
1474 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1475 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1476 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1477 } else {
1478 sg_element[sg_count].length_segment_base_hi =
1479 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1480 sg_len = 0;
1481 }
1482 sg_count++;
1483 }
1484 }
1485
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001486 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1487
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001488 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001489 (sizeof(struct sbp2_unrestricted_page_table)) *
1490 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001491 }
1492}
1493
1494static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001495 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001496 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001497 struct scatterlist *sgpnt,
1498 u32 orb_direction,
1499 unsigned int scsi_request_bufflen,
1500 void *scsi_request_buffer,
1501 enum dma_data_direction dma_dir)
1502{
Stefan Richter138c8af2006-11-02 21:16:08 +01001503 cmd->dma_dir = dma_dir;
1504 cmd->dma_size = scsi_request_bufflen;
1505 cmd->dma_type = CMD_DMA_SINGLE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001506 cmd->cmd_dma = dma_map_single(hi->host->device.parent,
1507 scsi_request_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +01001508 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001509 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1510 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1511
Stefan Richtere8ca5662006-11-02 21:16:08 +01001512 /* handle case where we get a command w/o s/g enabled
1513 * (but check for transfers larger than 64K) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001514 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1515
Stefan Richter138c8af2006-11-02 21:16:08 +01001516 orb->data_descriptor_lo = cmd->cmd_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001517 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1518
1519 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001520 /* The buffer is too large. Turn this into page tables. */
1521
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001522 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001523 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001524 u32 sg_count, sg_len;
1525 dma_addr_t sg_addr;
1526
Stefan Richter138c8af2006-11-02 21:16:08 +01001527 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001528 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1529
Stefan Richtere8ca5662006-11-02 21:16:08 +01001530 /* fill out our SBP-2 page tables; split up the large buffer */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001531 sg_count = 0;
1532 sg_len = scsi_request_bufflen;
Stefan Richter138c8af2006-11-02 21:16:08 +01001533 sg_addr = cmd->cmd_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001534 while (sg_len) {
1535 sg_element[sg_count].segment_base_lo = sg_addr;
1536 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1537 sg_element[sg_count].length_segment_base_hi =
1538 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1539 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1540 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1541 } else {
1542 sg_element[sg_count].length_segment_base_hi =
1543 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1544 sg_len = 0;
1545 }
1546 sg_count++;
1547 }
1548
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001549 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1550
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001551 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001552 (sizeof(struct sbp2_unrestricted_page_table)) *
1553 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001554 }
1555}
1556
Stefan Richter138c8af2006-11-02 21:16:08 +01001557static void sbp2_create_command_orb(struct sbp2_lu *lu,
1558 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001559 unchar *scsi_cmd,
1560 unsigned int scsi_use_sg,
1561 unsigned int scsi_request_bufflen,
1562 void *scsi_request_buffer,
1563 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Stefan Richter138c8af2006-11-02 21:16:08 +01001565 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001566 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Stefan Richter138c8af2006-11-02 21:16:08 +01001567 struct sbp2_command_orb *orb = &cmd->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001568 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001571 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 *
1573 * NOTE: We're doing unrestricted page tables (s/g), as this is
1574 * best performance (at least with the devices I have). This means
1575 * that data_size becomes the number of s/g elements, and
1576 * page_size should be zero (for unrestricted).
1577 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001578 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1579 orb->next_ORB_lo = 0x0;
1580 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1581 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1582 orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Stefan Richter43863eb2005-12-12 23:03:24 -05001584 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001585 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001586 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001587 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001588 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001589 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001590 else {
Stefan Richter35644092006-11-02 21:16:08 +01001591 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001592 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
1594
Stefan Richtere8ca5662006-11-02 21:16:08 +01001595 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001597 orb->data_descriptor_hi = 0x0;
1598 orb->data_descriptor_lo = 0x0;
1599 orb->misc |= ORB_SET_DIRECTION(1);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001600 } else if (scsi_use_sg)
Stefan Richter138c8af2006-11-02 21:16:08 +01001601 sbp2_prep_command_orb_sg(orb, hi, cmd, scsi_use_sg, sgpnt,
1602 orb_direction, dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001603 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001604 sbp2_prep_command_orb_no_sg(orb, hi, cmd, sgpnt, orb_direction,
1605 scsi_request_bufflen,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001606 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Stefan Richter138c8af2006-11-02 21:16:08 +01001608 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Stefan Richter138c8af2006-11-02 21:16:08 +01001610 memset(orb->cdb, 0, 12);
1611 memcpy(orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Stefan Richter138c8af2006-11-02 21:16:08 +01001614static void sbp2_link_orb_command(struct sbp2_lu *lu,
1615 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Stefan Richter138c8af2006-11-02 21:16:08 +01001617 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtercc078182006-07-23 22:12:00 +02001618 struct sbp2_command_orb *last_orb;
1619 dma_addr_t last_orb_dma;
Stefan Richter138c8af2006-11-02 21:16:08 +01001620 u64 addr = lu->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001621 quadlet_t data[2];
1622 size_t length;
1623 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Stefan Richter97d552e2006-12-29 23:47:04 +01001625 dma_sync_single_for_device(hi->host->device.parent,
1626 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001627 sizeof(struct sbp2_command_orb),
1628 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001629 dma_sync_single_for_device(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001630 sizeof(cmd->scatter_gather_element),
1631 DMA_BIDIRECTIONAL);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001632
1633 /* check to see if there are any previous orbs to use */
Stefan Richter138c8af2006-11-02 21:16:08 +01001634 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1635 last_orb = lu->last_orb;
1636 last_orb_dma = lu->last_orb_dma;
Stefan Richtercc078182006-07-23 22:12:00 +02001637 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001639 * last_orb == NULL means: We know that the target's fetch agent
1640 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 */
Stefan Richtercc078182006-07-23 22:12:00 +02001642 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001644 data[1] = cmd->command_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001646 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001649 * last_orb != NULL means: We know that the target's fetch agent
1650 * is (very probably) not dead or in reset state right now.
1651 * We have an ORB already sent that we can append a new one to.
1652 * The target's fetch agent may or may not have read this
1653 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 */
Stefan Richter97d552e2006-12-29 23:47:04 +01001655 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001656 sizeof(struct sbp2_command_orb),
1657 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001658 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
Stefan Richtercc078182006-07-23 22:12:00 +02001659 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001661 last_orb->next_ORB_hi = 0;
Stefan Richter97d552e2006-12-29 23:47:04 +01001662 dma_sync_single_for_device(hi->host->device.parent,
1663 last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001664 sizeof(struct sbp2_command_orb),
1665 DMA_TO_DEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001666 addr += SBP2_DOORBELL_OFFSET;
1667 data[0] = 0;
1668 length = 4;
1669 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001670 lu->last_orb = &cmd->command_orb;
1671 lu->last_orb_dma = cmd->command_orb_dma;
1672 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Stefan Richter138c8af2006-11-02 21:16:08 +01001674 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
Stefan Richter09ee67a2006-08-14 18:43:00 +02001675 /*
1676 * sbp2util_node_write_no_wait failed. We certainly ran out
1677 * of transaction labels, perhaps just because there were no
1678 * context switches which gave khpsbpkt a chance to collect
1679 * free tlabels. Try again in non-atomic context. If necessary,
1680 * the workqueue job will sleep to guaranteedly get a tlabel.
1681 * We do not accept new commands until the job is over.
1682 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001683 scsi_block_requests(lu->shost);
1684 PREPARE_WORK(&lu->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001685 last_orb ? sbp2util_write_doorbell:
Stefan Richterec9b7e12006-12-07 23:23:25 +01001686 sbp2util_write_orb_pointer);
Stefan Richter138c8af2006-11-02 21:16:08 +01001687 schedule_work(&lu->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
Stefan Richter138c8af2006-11-02 21:16:08 +01001691static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 void (*done)(struct scsi_cmnd *))
1693{
Stefan Richter138c8af2006-11-02 21:16:08 +01001694 unchar *scsi_cmd = (unchar *)SCpnt->cmnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 unsigned int request_bufflen = SCpnt->request_bufflen;
Stefan Richter138c8af2006-11-02 21:16:08 +01001696 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Stefan Richter138c8af2006-11-02 21:16:08 +01001698 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1699 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -05001700 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Stefan Richter138c8af2006-11-02 21:16:08 +01001702 sbp2_create_command_orb(lu, cmd, scsi_cmd, SCpnt->use_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 request_bufflen, SCpnt->request_buffer,
1704 SCpnt->sc_data_direction);
Stefan Richter138c8af2006-11-02 21:16:08 +01001705 sbp2_link_orb_command(lu, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Stefan Richtera237f352005-11-07 06:31:39 -05001707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 * Translates SBP-2 status into SCSI sense data for check conditions
1712 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001713static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1714 unchar *sense_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001716 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 sense_data[0] = 0x70;
1718 sense_data[1] = 0x0;
1719 sense_data[2] = sbp2_status[9];
1720 sense_data[3] = sbp2_status[12];
1721 sense_data[4] = sbp2_status[13];
1722 sense_data[5] = sbp2_status[14];
1723 sense_data[6] = sbp2_status[15];
1724 sense_data[7] = 10;
1725 sense_data[8] = sbp2_status[16];
1726 sense_data[9] = sbp2_status[17];
1727 sense_data[10] = sbp2_status[18];
1728 sense_data[11] = sbp2_status[19];
1729 sense_data[12] = sbp2_status[10];
1730 sense_data[13] = sbp2_status[11];
1731 sense_data[14] = sbp2_status[20];
1732 sense_data[15] = sbp2_status[21];
1733
Stefan Richtere8ca5662006-11-02 21:16:08 +01001734 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
Stefan Richter3e98eab42006-07-23 22:16:00 +02001737static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1738 int destid, quadlet_t *data, u64 addr,
1739 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Stefan Richterca0c7452006-11-02 21:16:08 +01001741 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001742 struct sbp2_lu *lu = NULL, *lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001744 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
Stefan Richter138c8af2006-11-02 21:16:08 +01001746 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001747 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Stefan Richter60657722006-07-23 22:18:00 +02001749 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1750 SBP2_ERR("Wrong size of status block");
1751 return RCODE_ADDRESS_ERROR;
1752 }
1753 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001755 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001758 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001760 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001762
1763 /* Find the unit which wrote the status. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001764 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1765 if (lu_tmp->ne->nodeid == nodeid &&
1766 lu_tmp->status_fifo_addr == addr) {
1767 lu = lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 break;
1769 }
1770 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001771 if (unlikely(!lu)) {
1772 SBP2_ERR("lu is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001773 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775
Stefan Richter138c8af2006-11-02 21:16:08 +01001776 /* Put response into lu status fifo buffer. The first two bytes
Stefan Richter3e98eab42006-07-23 22:16:00 +02001777 * come in big endian bit order. Often the target writes only a
1778 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001779 * is implied to be zeros. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001780 sb = &lu->status_block;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001781 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1782 memcpy(sb, data, length);
1783 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Stefan Richtere8ca5662006-11-02 21:16:08 +01001785 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001786 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
Stefan Richter138c8af2006-11-02 21:16:08 +01001787 cmd = NULL;
Stefan Richter60657722006-07-23 22:18:00 +02001788 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001789 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1790 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01001791 dma_sync_single_for_cpu(hi->host->device.parent,
1792 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001793 sizeof(struct sbp2_command_orb),
1794 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001795 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001796 sizeof(cmd->scatter_gather_element),
1797 DMA_BIDIRECTIONAL);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001798 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001799 /*
1800 * FIXME: If the src field in the status is 1, the ORB DMA must
1801 * not be reused until status for a subsequent ORB is received.
1802 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001803 SCpnt = cmd->Current_SCpnt;
1804 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1805 sbp2util_mark_command_completed(lu, cmd);
1806 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001809 u32 h = sb->ORB_offset_hi_misc;
1810 u32 r = STATUS_GET_RESP(h);
1811
1812 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001813 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001814 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001815 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001816 r == RESP_STATUS_TRANSPORT_FAILURE ?
1817 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001818 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001819 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001820
Stefan Richteredf1fb22006-11-02 21:16:08 +01001821 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab42006-07-23 22:16:00 +02001822 scsi_status = sbp2_status_to_sense_data(
1823 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001824
Stefan Richteredf1fb22006-11-02 21:16:08 +01001825 if (STATUS_TEST_DEAD(h))
Stefan Richter138c8af2006-11-02 21:16:08 +01001826 sbp2_agent_reset(lu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828
Stefan Richtere8ca5662006-11-02 21:16:08 +01001829 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001830 * are none, we know that the fetch agent left the active state
1831 * _and_ that we did not reactivate it yet. Therefore clear
1832 * last_orb so that next time we write directly to the
1833 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001834 * to refetch the next_ORB. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001835 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1836 if (list_empty(&lu->cmd_orb_inuse))
1837 lu->last_orb = NULL;
1838 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001841 /* It's probably status after a management request. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001842 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1843 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1844 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1845 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1846 lu->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001847 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850
Stefan Richteredf1fb22006-11-02 21:16:08 +01001851 if (SCpnt)
Stefan Richter138c8af2006-11-02 21:16:08 +01001852 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1853 cmd->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001854 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/**************************************
1858 * SCSI interface related section
1859 **************************************/
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1862 void (*done)(struct scsi_cmnd *))
1863{
Stefan Richter138c8af2006-11-02 21:16:08 +01001864 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001865 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001866 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Stefan Richter138c8af2006-11-02 21:16:08 +01001868 if (unlikely(!sbp2util_node_is_available(lu)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001869 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Stefan Richter138c8af2006-11-02 21:16:08 +01001871 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Stefan Richter5796aa72006-11-02 21:16:08 +01001873 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001874 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001875 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
Stefan Richtere8ca5662006-11-02 21:16:08 +01001878 /* Multiple units are currently represented to the SCSI core as separate
1879 * targets, not as one target with multiple LUs. Therefore return
1880 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001881 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001882 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Stefan Richter138c8af2006-11-02 21:16:08 +01001884 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001886 result = DID_BUS_BUSY << 16;
1887 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889
Stefan Richtere8ca5662006-11-02 21:16:08 +01001890 /* Bidirectional commands are not yet implemented,
1891 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001892 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001893 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1894 result = DID_ERROR << 16;
1895 goto done;
1896 }
1897
Stefan Richter138c8af2006-11-02 21:16:08 +01001898 if (sbp2_send_command(lu, SCpnt, done)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 SBP2_ERR("Error sending SCSI command");
Stefan Richter138c8af2006-11-02 21:16:08 +01001900 sbp2scsi_complete_command(lu,
1901 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 SCpnt, done);
1903 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Jody McIntyreabd559b2005-09-30 11:59:06 -07001906done:
1907 SCpnt->result = result;
1908 done(SCpnt);
1909 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
Stefan Richter138c8af2006-11-02 21:16:08 +01001912static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
Stefan Richter138c8af2006-11-02 21:16:08 +01001914 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +01001916 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001917 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Stefan Richter138c8af2006-11-02 21:16:08 +01001919 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1920 while (!list_empty(&lu->cmd_orb_inuse)) {
1921 lh = lu->cmd_orb_inuse.next;
1922 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +01001923 dma_sync_single_for_cpu(hi->host->device.parent,
1924 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001925 sizeof(struct sbp2_command_orb),
1926 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001927 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001928 sizeof(cmd->scatter_gather_element),
1929 DMA_BIDIRECTIONAL);
Stefan Richter138c8af2006-11-02 21:16:08 +01001930 sbp2util_mark_command_completed(lu, cmd);
1931 if (cmd->Current_SCpnt) {
1932 cmd->Current_SCpnt->result = status << 16;
1933 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001936 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 return;
1939}
1940
1941/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001942 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001944static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1945 struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 void (*done)(struct scsi_cmnd *))
1947{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (!SCpnt) {
1949 SBP2_ERR("SCpnt is NULL");
1950 return;
1951 }
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001954 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001955 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001956 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Stefan Richtera237f352005-11-07 06:31:39 -05001958 case SBP2_SCSI_STATUS_BUSY:
1959 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1960 SCpnt->result = DID_BUS_BUSY << 16;
1961 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Stefan Richtera237f352005-11-07 06:31:39 -05001963 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001964 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001965 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Stefan Richtera237f352005-11-07 06:31:39 -05001967 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1968 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1969 SCpnt->result = DID_NO_CONNECT << 16;
1970 scsi_print_command(SCpnt);
1971 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Stefan Richtera237f352005-11-07 06:31:39 -05001973 case SBP2_SCSI_STATUS_CONDITION_MET:
1974 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1975 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1976 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1977 SCpnt->result = DID_ERROR << 16;
1978 scsi_print_command(SCpnt);
1979 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Stefan Richtera237f352005-11-07 06:31:39 -05001981 default:
1982 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1983 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
1985
Stefan Richtere8ca5662006-11-02 21:16:08 +01001986 /* If a bus reset is in progress and there was an error, complete
1987 * the command as busy so that it will get retried. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001988 if (!hpsb_node_entry_valid(lu->ne)
Stefan Richtera237f352005-11-07 06:31:39 -05001989 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 SBP2_ERR("Completing command with busy (bus reset)");
1991 SCpnt->result = DID_BUS_BUSY << 16;
1992 }
1993
Stefan Richtere8ca5662006-11-02 21:16:08 +01001994 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05001995 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Jody McIntyreabd559b2005-09-30 11:59:06 -07001998static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1999{
Stefan Richter138c8af2006-11-02 21:16:08 +01002000 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richtera80614d2006-02-14 22:04:19 -05002001
Stefan Richter138c8af2006-11-02 21:16:08 +01002002 lu->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02002003 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05002004
Stefan Richter138c8af2006-11-02 21:16:08 +01002005 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002006 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002007 return 0;
2008}
2009
Jody McIntyreabd559b2005-09-30 11:59:06 -07002010static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Stefan Richter138c8af2006-11-02 21:16:08 +01002012 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richter24d3bf82006-05-15 22:04:59 +02002013
Ben Collins365c7862005-11-07 06:31:24 -05002014 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002015
Stefan Richter1a74bc62007-01-10 20:17:15 +01002016 if (sdev->type == TYPE_ROM)
2017 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002018 if (sdev->type == TYPE_DISK &&
Stefan Richter138c8af2006-11-02 21:16:08 +01002019 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richter24d3bf82006-05-15 22:04:59 +02002020 sdev->skip_ms_page_8 = 1;
Stefan Richter138c8af2006-11-02 21:16:08 +01002021 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richtere9a1c522006-05-15 22:06:37 +02002022 sdev->fix_capacity = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return 0;
2024}
2025
Jody McIntyreabd559b2005-09-30 11:59:06 -07002026static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2027{
Stefan Richter138c8af2006-11-02 21:16:08 +01002028 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002029 return;
2030}
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002033 * Called by scsi stack when something has really gone wrong.
2034 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 */
2036static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2037{
Stefan Richter138c8af2006-11-02 21:16:08 +01002038 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
2039 struct sbp2_fwhost_info *hi = lu->hi;
2040 struct sbp2_command_info *cmd;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002041 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Stefan Richter35644092006-11-02 21:16:08 +01002043 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 scsi_print_command(SCpnt);
2045
Stefan Richter138c8af2006-11-02 21:16:08 +01002046 if (sbp2util_node_is_available(lu)) {
2047 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Stefan Richter23077f12006-09-11 20:17:14 +02002049 /* Return a matching command structure to the free pool. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002050 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2051 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2052 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01002053 dma_sync_single_for_cpu(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01002054 cmd->command_orb_dma,
2055 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +01002056 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01002057 dma_sync_single_for_cpu(hi->host->device.parent,
2058 cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +01002059 sizeof(cmd->scatter_gather_element),
Stefan Richter9b7d9c02006-11-22 21:44:34 +01002060 DMA_BIDIRECTIONAL);
Stefan Richter138c8af2006-11-02 21:16:08 +01002061 sbp2util_mark_command_completed(lu, cmd);
2062 if (cmd->Current_SCpnt) {
2063 cmd->Current_SCpnt->result = DID_ABORT << 16;
2064 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066 }
Stefan Richter138c8af2006-11-02 21:16:08 +01002067 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Stefan Richter138c8af2006-11-02 21:16:08 +01002069 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
2071
Stefan Richtera237f352005-11-07 06:31:39 -05002072 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075/*
2076 * Called by scsi stack when something has really gone wrong.
2077 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002078static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
Stefan Richter138c8af2006-11-02 21:16:08 +01002080 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Stefan Richter35644092006-11-02 21:16:08 +01002082 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Stefan Richter138c8af2006-11-02 21:16:08 +01002084 if (sbp2util_node_is_available(lu)) {
Stefan Richter35644092006-11-02 21:16:08 +01002085 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter138c8af2006-11-02 21:16:08 +01002086 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088
Jody McIntyreabd559b2005-09-30 11:59:06 -07002089 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002090}
2091
Stefan Richtera237f352005-11-07 06:31:39 -05002092static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2093 struct device_attribute *attr,
2094 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
2096 struct scsi_device *sdev;
Stefan Richter138c8af2006-11-02 21:16:08 +01002097 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 if (!(sdev = to_scsi_device(dev)))
2100 return 0;
2101
Stefan Richter138c8af2006-11-02 21:16:08 +01002102 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return 0;
2104
Stefan Richter138c8af2006-11-02 21:16:08 +01002105 return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)lu->ne->guid,
2106 lu->ud->id, ORB_SET_LUN(lu->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2110MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2111MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2112MODULE_LICENSE("GPL");
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114static int sbp2_module_init(void)
2115{
2116 int ret;
2117
Stefan Richterca0c7452006-11-02 21:16:08 +01002118 if (sbp2_serialize_io) {
2119 sbp2_shost_template.can_queue = 1;
2120 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
2122
Stefan Richter24d3bf82006-05-15 22:04:59 +02002123 if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01002124 (sbp2_max_sectors * 512) > (128 * 1024))
2125 sbp2_max_sectors = 128 * 1024 / 512;
2126 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 ret = hpsb_register_protocol(&sbp2_driver);
2130 if (ret) {
2131 SBP2_ERR("Failed to register protocol");
2132 hpsb_unregister_highlevel(&sbp2_highlevel);
2133 return ret;
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return 0;
2136}
2137
2138static void __exit sbp2_module_exit(void)
2139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 hpsb_unregister_highlevel(&sbp2_highlevel);
2142}
2143
2144module_init(sbp2_module_init);
2145module_exit(sbp2_module_exit);