blob: e0c385a3b45079efc796904d588733a3f5a08449 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sbp2.c - SBP-2 protocol driver for IEEE-1394
3 *
4 * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com)
5 * jamesg@filanet.com (JSG)
6 *
7 * Copyright (C) 2003 Ben Collins <bcollins@debian.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24/*
25 * Brief Description:
26 *
27 * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394
28 * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level
29 * driver. It also registers as a SCSI lower-level driver in order to accept
30 * SCSI commands for transport using SBP-2.
31 *
Stefan Richter2a533b12006-11-02 21:16:08 +010032 * You may access any attached SBP-2 (usually storage devices) as regular
33 * SCSI devices. E.g. mount /dev/sda1, fdisk, mkfs, etc..
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
Stefan Richter2a533b12006-11-02 21:16:08 +010035 * See http://www.t10.org/drafts.htm#sbp2 for the final draft of the SBP-2
36 * specification and for where to purchase the official standard.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Stefan Richter2a533b12006-11-02 21:16:08 +010038 * TODO:
39 * - look into possible improvements of the SCSI error handlers
40 * - handle Unit_Characteristics.mgt_ORB_timeout and .ORB_size
41 * - handle Logical_Unit_Number.ordered
42 * - handle src == 1 in status blocks
43 * - reimplement the DMA mapping in absence of physical DMA so that
44 * bus_to_virt is no longer required
45 * - debug the handling of absent physical DMA
46 * - replace CONFIG_IEEE1394_SBP2_PHYS_DMA by automatic detection
47 * (this is easy but depends on the previous two TODO items)
48 * - make the parameter serialize_io configurable per device
49 * - move all requests to fetch agent registers into non-atomic context,
50 * replace all usages of sbp2util_node_write_no_wait by true transactions
Stefan Richter2a533b12006-11-02 21:16:08 +010051 * Grep for inline FIXME comments below.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53
Stefan Richter902abed2006-08-14 18:56:00 +020054#include <linux/compiler.h>
55#include <linux/delay.h>
56#include <linux/device.h>
57#include <linux/dma-mapping.h>
58#include <linux/gfp.h>
59#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/kernel.h>
61#include <linux/list.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070062#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/module.h>
64#include <linux/moduleparam.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070065#include <linux/sched.h>
Stefan Richter902abed2006-08-14 18:56:00 +020066#include <linux/slab.h>
67#include <linux/spinlock.h>
68#include <linux/stat.h>
69#include <linux/string.h>
70#include <linux/stringify.h>
71#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020072#include <linux/wait.h>
Stefan Richter20e20082007-05-05 17:18:12 +020073#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020076#include <asm/errno.h>
77#include <asm/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <asm/scatterlist.h>
Stefan Richter902abed2006-08-14 18:56:00 +020079#include <asm/system.h>
80#include <asm/types.h>
81
82#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
83#include <asm/io.h> /* for bus_to_virt */
84#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#include <scsi/scsi.h>
87#include <scsi/scsi_cmnd.h>
88#include <scsi/scsi_dbg.h>
89#include <scsi/scsi_device.h>
90#include <scsi/scsi_host.h>
91
92#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020094#include "hosts.h"
95#include "ieee1394.h"
96#include "ieee1394_core.h"
97#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +020099#include "ieee1394_types.h"
100#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include "sbp2.h"
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Module load parameter definitions
105 */
106
107/*
108 * Change max_speed on module load if you have a bad IEEE-1394
109 * controller that has trouble running 2KB packets at 400mb.
110 *
111 * NOTE: On certain OHCI parts I have seen short packets on async transmit
112 * (probably due to PCI latency/throughput issues with the part). You can
113 * bump down the speed if you are running into problems.
114 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100115static int sbp2_max_speed = IEEE1394_SPEED_MAX;
116module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter28b06672006-11-02 21:16:08 +0100117MODULE_PARM_DESC(max_speed, "Force max speed "
118 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/*
Stefan Richter77bba7a2007-06-17 23:54:52 +0200121 * Set serialize_io to 0 or N to use dynamically appended lists of command ORBs.
122 * This is and always has been buggy in multiple subtle ways. See above TODOs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100124static int sbp2_serialize_io = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200125module_param_named(serialize_io, sbp2_serialize_io, bool, 0444);
126MODULE_PARM_DESC(serialize_io, "Serialize requests coming from SCSI drivers "
127 "(default = Y, faster but buggy = N)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
130 * Bump up max_sectors if you'd like to support very large sized
131 * transfers. Please note that some older sbp2 bridge chips are broken for
132 * transfers greater or equal to 128KB. Default is a value of 255
133 * sectors, or just under 128KB (at 512 byte sector size). I can note that
134 * the Oxsemi sbp2 chipsets have no problems supporting very large
135 * transfer sizes.
136 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100137static int sbp2_max_sectors = SBP2_MAX_SECTORS;
138module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
139MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
140 "(default = " __stringify(SBP2_MAX_SECTORS) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142/*
143 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
144 * do an exclusive login, as it's generally unsafe to have two hosts
145 * talking to a single sbp2 device at the same time (filesystem coherency,
146 * etc.). If you're running an sbp2 device that supports multiple logins,
147 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400148 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
149 * File System, or Lustre, then set exclusive_login to zero.
150 *
151 * So far only bridges from Oxford Semiconductor are known to support
152 * concurrent logins. Depending on firmware, four or two concurrent logins
153 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100155static int sbp2_exclusive_login = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200156module_param_named(exclusive_login, sbp2_exclusive_login, bool, 0644);
Stefan Richterca0c7452006-11-02 21:16:08 +0100157MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
Stefan Richter77bba7a2007-06-17 23:54:52 +0200158 "(default = Y, use N for concurrent initiators)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200161 * If any of the following workarounds is required for your device to work,
162 * please submit the kernel messages logged by sbp2 to the linux1394-devel
163 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200165 * - 128kB max transfer
166 * Limit transfer size. Necessary for some old bridges.
167 *
168 * - 36 byte inquiry
169 * When scsi_mod probes the device, let the inquiry command look like that
170 * from MS Windows.
171 *
172 * - skip mode page 8
173 * Suppress sending of mode_sense for mode page 8 if the device pretends to
174 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200175 *
176 * - fix capacity
177 * Tell sd_mod to correct the last sector number reported by read_capacity.
178 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
179 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200180 *
181 * - override internal blacklist
182 * Instead of adding to the built-in blacklist, use only the workarounds
183 * specified in the module load parameter.
184 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200186static int sbp2_default_workarounds;
187module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
188MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
189 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
190 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
191 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200192 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200193 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200194 ", or a combination)");
195
Stefan Richterd7794c82007-05-27 13:17:15 +0200196/*
197 * This influences the format of the sysfs attribute
198 * /sys/bus/scsi/devices/.../ieee1394_id.
199 *
200 * The default format is like in older kernels: %016Lx:%d:%d
201 * It contains the target's EUI-64, a number given to the logical unit by
202 * the ieee1394 driver's nodemgr (starting at 0), and the LUN.
203 *
204 * The long format is: %016Lx:%06x:%04x
205 * It contains the target's EUI-64, the unit directory's directory_ID as per
206 * IEEE 1212 clause 7.7.19, and the LUN. This format comes closest to the
207 * format of SBP(-3) target port and logical unit identifier as per SAM (SCSI
208 * Architecture Model) rev.2 to 4 annex A. Therefore and because it is
209 * independent of the implementation of the ieee1394 nodemgr, the longer format
210 * is recommended for future use.
211 */
212static int sbp2_long_sysfs_ieee1394_id;
213module_param_named(long_ieee1394_id, sbp2_long_sysfs_ieee1394_id, bool, 0644);
214MODULE_PARM_DESC(long_ieee1394_id, "8+3+2 bytes format of ieee1394_id in sysfs "
215 "(default = backwards-compatible = N, SAM-conforming = Y)");
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Stefan Richteredf1fb22006-11-02 21:16:08 +0100218#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
219#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/*
222 * Globals
223 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100224static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
225static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100226 void (*)(struct scsi_cmnd *));
Stefan Richter138c8af2006-11-02 21:16:08 +0100227static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
228static int sbp2_start_device(struct sbp2_lu *);
229static void sbp2_remove_device(struct sbp2_lu *);
230static int sbp2_login_device(struct sbp2_lu *);
231static int sbp2_reconnect_device(struct sbp2_lu *);
232static int sbp2_logout_device(struct sbp2_lu *);
Stefan Richterea42ea02006-11-02 21:16:08 +0100233static void sbp2_host_reset(struct hpsb_host *);
234static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
235 u64, size_t, u16);
Stefan Richter138c8af2006-11-02 21:16:08 +0100236static int sbp2_agent_reset(struct sbp2_lu *, int);
237static void sbp2_parse_unit_directory(struct sbp2_lu *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100238 struct unit_directory *);
Stefan Richter138c8af2006-11-02 21:16:08 +0100239static int sbp2_set_busy_timeout(struct sbp2_lu *);
240static int sbp2_max_speed_and_size(struct sbp2_lu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100246 .name = SBP2_DEVICE_NAME,
247 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
250static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100251 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253
254#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100255static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
256 u64, size_t, u16);
257static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
258 size_t, u16);
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100261 .read = sbp2_handle_physdma_read,
262 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263};
264#endif
265
Stefan Richterea42ea02006-11-02 21:16:08 +0100266
267/*
268 * Interface to driver core and IEEE 1394 core
269 */
270static struct ieee1394_device_id sbp2_id_table[] = {
271 {
272 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
273 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
274 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
275 {}
276};
277MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
278
279static int sbp2_probe(struct device *);
280static int sbp2_remove(struct device *);
281static int sbp2_update(struct unit_directory *);
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283static struct hpsb_protocol_driver sbp2_driver = {
Ben Collinsed30c262006-11-23 13:59:48 -0500284 .name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .id_table = sbp2_id_table,
286 .update = sbp2_update,
287 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 .probe = sbp2_probe,
289 .remove = sbp2_remove,
290 },
291};
292
Stefan Richterea42ea02006-11-02 21:16:08 +0100293
294/*
295 * Interface to SCSI core
296 */
297static int sbp2scsi_queuecommand(struct scsi_cmnd *,
298 void (*)(struct scsi_cmnd *));
299static int sbp2scsi_abort(struct scsi_cmnd *);
300static int sbp2scsi_reset(struct scsi_cmnd *);
301static int sbp2scsi_slave_alloc(struct scsi_device *);
302static int sbp2scsi_slave_configure(struct scsi_device *);
303static void sbp2scsi_slave_destroy(struct scsi_device *);
304static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
305 struct device_attribute *, char *);
306
307static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
308
309static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
310 &dev_attr_ieee1394_id,
311 NULL
312};
313
Stefan Richterca0c7452006-11-02 21:16:08 +0100314static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100315 .module = THIS_MODULE,
316 .name = "SBP-2 IEEE-1394",
317 .proc_name = SBP2_DEVICE_NAME,
318 .queuecommand = sbp2scsi_queuecommand,
319 .eh_abort_handler = sbp2scsi_abort,
320 .eh_device_reset_handler = sbp2scsi_reset,
321 .slave_alloc = sbp2scsi_slave_alloc,
322 .slave_configure = sbp2scsi_slave_configure,
323 .slave_destroy = sbp2scsi_slave_destroy,
324 .this_id = -1,
325 .sg_tablesize = SG_ALL,
326 .use_clustering = ENABLE_CLUSTERING,
327 .cmd_per_lun = SBP2_MAX_CMDS,
328 .can_queue = SBP2_MAX_CMDS,
Stefan Richterea42ea02006-11-02 21:16:08 +0100329 .sdev_attrs = sbp2_sysfs_sdev_attrs,
330};
331
Stefan Richter4618fd32006-12-30 15:37:09 +0100332/* for match-all entries in sbp2_workarounds_table */
333#define SBP2_ROM_VALUE_WILDCARD 0x1000000
Stefan Richterea42ea02006-11-02 21:16:08 +0100334
Stefan Richtera80614d2006-02-14 22:04:19 -0500335/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200336 * List of devices with known bugs.
337 *
338 * The firmware_revision field, masked with 0xffff00, is the best indicator
339 * for the type of bridge chip of a device. It yields a few false positives
340 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500341 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200342static const struct {
343 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200344 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200345 unsigned workarounds;
346} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400347 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200348 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400349 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200350 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
351 SBP2_WORKAROUND_MODE_SENSE_8,
352 },
353 /* Initio bridges, actually only needed for some older ones */ {
354 .firmware_revision = 0x000200,
Stefan Richter4618fd32006-12-30 15:37:09 +0100355 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200356 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
357 },
358 /* Symbios bridge */ {
359 .firmware_revision = 0xa0b800,
Stefan Richter4618fd32006-12-30 15:37:09 +0100360 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200361 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200362 },
Stefan Richtere9a1c522006-05-15 22:06:37 +0200363 /* iPod 4th generation */ {
364 .firmware_revision = 0x0a2700,
365 .model_id = 0x000021,
366 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
367 },
368 /* iPod mini */ {
369 .firmware_revision = 0x0a2700,
370 .model_id = 0x000023,
371 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
372 },
373 /* iPod Photo */ {
374 .firmware_revision = 0x0a2700,
375 .model_id = 0x00007e,
376 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378};
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/**************************************
381 * General utility functions
382 **************************************/
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#ifndef __BIG_ENDIAN
385/*
386 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
387 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400388static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 u32 *temp = buffer;
391
392 for (length = (length >> 2); length--; )
393 temp[length] = be32_to_cpu(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396/*
397 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
398 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400399static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 u32 *temp = buffer;
402
403 for (length = (length >> 2); length--; )
404 temp[length] = cpu_to_be32(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406#else /* BIG_ENDIAN */
407/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200408#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
409#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#endif
411
Stefan Richterca0c7452006-11-02 21:16:08 +0100412static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Stefan Richtere8398bb2006-07-23 22:19:00 +0200414/*
415 * Waits for completion of an SBP-2 access request.
416 * Returns nonzero if timed out or prematurely interrupted.
417 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100418static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
Stefan Richtere8398bb2006-07-23 22:19:00 +0200419{
Stefan Richterca0c7452006-11-02 21:16:08 +0100420 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200421
Stefan Richterca0c7452006-11-02 21:16:08 +0100422 leftover = wait_event_interruptible_timeout(
Stefan Richter138c8af2006-11-02 21:16:08 +0100423 sbp2_access_wq, lu->access_complete, timeout);
424 lu->access_complete = 0;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200425 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Stefan Richter138c8af2006-11-02 21:16:08 +0100428static void sbp2_free_packet(void *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 hpsb_free_tlabel(packet);
431 hpsb_free_packet(packet);
432}
433
Stefan Richtere8ca5662006-11-02 21:16:08 +0100434/*
435 * This is much like hpsb_node_write(), except it ignores the response
436 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
438static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richter138c8af2006-11-02 21:16:08 +0100439 quadlet_t *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct hpsb_packet *packet;
442
Stefan Richter138c8af2006-11-02 21:16:08 +0100443 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
Stefan Richtera237f352005-11-07 06:31:39 -0500444 if (!packet)
445 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Stefan Richter138c8af2006-11-02 21:16:08 +0100447 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 hpsb_node_fill_packet(ne, packet);
Stefan Richtera237f352005-11-07 06:31:39 -0500449 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 sbp2_free_packet(packet);
451 return -EIO;
452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454}
455
Stefan Richter138c8af2006-11-02 21:16:08 +0100456static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
457 quadlet_t *data, size_t len)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200458{
Stefan Richter138c8af2006-11-02 21:16:08 +0100459 /* There is a small window after a bus reset within which the node
460 * entry's generation is current but the reconnect wasn't completed. */
461 if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200462 return;
463
Stefan Richter138c8af2006-11-02 21:16:08 +0100464 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200465 data, len))
466 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
Stefan Richter138c8af2006-11-02 21:16:08 +0100467
468 /* Now accept new SCSI commands, unless a bus reset happended during
469 * hpsb_node_write. */
470 if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
471 scsi_unblock_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200472}
473
David Howellsc4028952006-11-22 14:57:56 +0000474static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200475{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100476 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200477 quadlet_t data[2];
478
Stefan Richterec9b7e12006-12-07 23:23:25 +0100479 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
480 data[1] = lu->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200481 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterec9b7e12006-12-07 23:23:25 +0100482 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200483}
484
David Howellsc4028952006-11-22 14:57:56 +0000485static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200486{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100487 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
488
489 sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200490}
491
Stefan Richter138c8af2006-11-02 21:16:08 +0100492static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Stefan Richter138c8af2006-11-02 21:16:08 +0100494 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100495 struct sbp2_command_info *cmd;
Stefan Richter3d269cb2007-02-04 20:57:38 +0100496 int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 for (i = 0; i < orbs; i++) {
Stefan Richter3d269cb2007-02-04 20:57:38 +0100499 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
500 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -0500501 return -ENOMEM;
Stefan Richter97d552e2006-12-29 23:47:04 +0100502 cmd->command_orb_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100503 &cmd->command_orb,
504 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100505 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100506 cmd->sge_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100507 &cmd->scatter_gather_element,
508 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100509 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100510 INIT_LIST_HEAD(&cmd->list);
511 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return 0;
514}
515
Stefan Richter138c8af2006-11-02 21:16:08 +0100516static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Stefan Richter138c8af2006-11-02 21:16:08 +0100518 struct hpsb_host *host = lu->hi->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct list_head *lh, *next;
Stefan Richter138c8af2006-11-02 21:16:08 +0100520 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned long flags;
522
Stefan Richter138c8af2006-11-02 21:16:08 +0100523 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
524 if (!list_empty(&lu->cmd_orb_completed))
525 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
526 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +0100527 dma_unmap_single(host->device.parent,
528 cmd->command_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100530 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100531 dma_unmap_single(host->device.parent, cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100532 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100533 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100534 kfree(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100536 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return;
538}
539
540/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100541 * Finds the sbp2_command for a given outstanding command ORB.
542 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 */
544static struct sbp2_command_info *sbp2util_find_command_for_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100545 struct sbp2_lu *lu, dma_addr_t orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Stefan Richter138c8af2006-11-02 21:16:08 +0100547 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 unsigned long flags;
549
Stefan Richter138c8af2006-11-02 21:16:08 +0100550 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
551 if (!list_empty(&lu->cmd_orb_inuse))
552 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
553 if (cmd->command_orb_dma == orb) {
554 spin_unlock_irqrestore(
555 &lu->cmd_orb_lock, flags);
556 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100558 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500559 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100563 * Finds the sbp2_command for a given outstanding SCpnt.
564 * Only looks at the in-use list.
Stefan Richter138c8af2006-11-02 21:16:08 +0100565 * Must be called with lu->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200567static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
Stefan Richter138c8af2006-11-02 21:16:08 +0100568 struct sbp2_lu *lu, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Stefan Richter138c8af2006-11-02 21:16:08 +0100570 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Stefan Richter138c8af2006-11-02 21:16:08 +0100572 if (!list_empty(&lu->cmd_orb_inuse))
573 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
574 if (cmd->Current_SCpnt == SCpnt)
575 return cmd;
Stefan Richtera237f352005-11-07 06:31:39 -0500576 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579static struct sbp2_command_info *sbp2util_allocate_command_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100580 struct sbp2_lu *lu,
581 struct scsi_cmnd *Current_SCpnt,
582 void (*Current_done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +0100585 struct sbp2_command_info *cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 unsigned long flags;
587
Stefan Richter138c8af2006-11-02 21:16:08 +0100588 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
589 if (!list_empty(&lu->cmd_orb_completed)) {
590 lh = lu->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 list_del(lh);
Stefan Richter138c8af2006-11-02 21:16:08 +0100592 cmd = list_entry(lh, struct sbp2_command_info, list);
593 cmd->Current_done = Current_done;
594 cmd->Current_SCpnt = Current_SCpnt;
595 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
596 } else
Stefan Richterd024ebc2006-03-28 20:03:55 -0500597 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Stefan Richter138c8af2006-11-02 21:16:08 +0100598 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
599 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Stefan Richter58272c12006-11-04 09:55:33 +0100602/*
603 * Unmaps the DMAs of a command and moves the command to the completed ORB list.
604 * Must be called with lu->cmd_orb_lock held.
605 */
606static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
607 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Stefan Richter58272c12006-11-04 09:55:33 +0100609 struct hpsb_host *host = lu->ud->ne->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Stefan Richter138c8af2006-11-02 21:16:08 +0100611 if (cmd->cmd_dma) {
612 if (cmd->dma_type == CMD_DMA_SINGLE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100613 dma_unmap_single(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100614 cmd->dma_size, cmd->dma_dir);
615 else if (cmd->dma_type == CMD_DMA_PAGE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100616 dma_unmap_page(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100617 cmd->dma_size, cmd->dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100618 /* XXX: Check for CMD_DMA_NONE bug */
Stefan Richter138c8af2006-11-02 21:16:08 +0100619 cmd->dma_type = CMD_DMA_NONE;
620 cmd->cmd_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100622 if (cmd->sge_buffer) {
Stefan Richter97d552e2006-12-29 23:47:04 +0100623 dma_unmap_sg(host->device.parent, cmd->sge_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +0100624 cmd->dma_size, cmd->dma_dir);
625 cmd->sge_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Stefan Richtercd641f62006-11-02 21:16:08 +0100627 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Jody McIntyreabd559b2005-09-30 11:59:06 -0700630/*
Stefan Richter138c8af2006-11-02 21:16:08 +0100631 * Is lu valid? Is the 1394 node still present?
Jody McIntyreabd559b2005-09-30 11:59:06 -0700632 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100633static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700634{
Stefan Richter138c8af2006-11-02 21:16:08 +0100635 return lu && lu->ne && !lu->ne->in_limbo;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700636}
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638/*********************************************
639 * IEEE-1394 core driver stack related section
640 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642static int sbp2_probe(struct device *dev)
643{
644 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100645 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ud = container_of(dev, struct unit_directory, device);
648
649 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
650 * instead. */
651 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
652 return -ENODEV;
653
Stefan Richter138c8af2006-11-02 21:16:08 +0100654 lu = sbp2_alloc_device(ud);
655 if (!lu)
Stefan Richtera237f352005-11-07 06:31:39 -0500656 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Stefan Richter138c8af2006-11-02 21:16:08 +0100658 sbp2_parse_unit_directory(lu, ud);
659 return sbp2_start_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662static int sbp2_remove(struct device *dev)
663{
664 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100665 struct sbp2_lu *lu;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700666 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 ud = container_of(dev, struct unit_directory, device);
Stefan Richter138c8af2006-11-02 21:16:08 +0100669 lu = ud->device.driver_data;
670 if (!lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700671 return 0;
672
Stefan Richter138c8af2006-11-02 21:16:08 +0100673 if (lu->shost) {
Stefan Richterbf637ec2006-01-31 00:13:06 -0500674 /* Get rid of enqueued commands if there is no chance to
675 * send them. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100676 if (!sbp2util_node_is_available(lu))
677 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100678 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500679 * highlevel drivers which would deadlock if blocked. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100680 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
681 scsi_unblock_requests(lu->shost);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500682 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100683 sdev = lu->sdev;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700684 if (sdev) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100685 lu->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700686 scsi_remove_device(sdev);
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Stefan Richter138c8af2006-11-02 21:16:08 +0100689 sbp2_logout_device(lu);
690 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 return 0;
693}
694
695static int sbp2_update(struct unit_directory *ud)
696{
Stefan Richter138c8af2006-11-02 21:16:08 +0100697 struct sbp2_lu *lu = ud->device.driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Stefan Richter138c8af2006-11-02 21:16:08 +0100699 if (sbp2_reconnect_device(lu)) {
Stefan Richtere8ca5662006-11-02 21:16:08 +0100700 /* Reconnect has failed. Perhaps we didn't reconnect fast
701 * enough. Try a regular login, but first log out just in
702 * case of any weirdness. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100703 sbp2_logout_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Stefan Richter138c8af2006-11-02 21:16:08 +0100705 if (sbp2_login_device(lu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* Login failed too, just fail, and the backend
707 * will call our sbp2_remove for us */
708 SBP2_ERR("Failed to reconnect to sbp2 device!");
709 return -EBUSY;
710 }
711 }
712
Stefan Richter138c8af2006-11-02 21:16:08 +0100713 sbp2_set_busy_timeout(lu);
714 sbp2_agent_reset(lu, 1);
715 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Stefan Richtere8ca5662006-11-02 21:16:08 +0100717 /* Complete any pending commands with busy (so they get retried)
718 * and remove them from our queue. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100719 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Stefan Richter4fc383c2006-08-14 18:46:00 +0200721 /* Accept new commands unless there was another bus reset in the
722 * meantime. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100723 if (hpsb_node_entry_valid(lu->ne)) {
724 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
725 scsi_unblock_requests(lu->shost);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return 0;
728}
729
Stefan Richter138c8af2006-11-02 21:16:08 +0100730static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Stefan Richterca0c7452006-11-02 21:16:08 +0100732 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100733 struct Scsi_Host *shost = NULL;
734 struct sbp2_lu *lu = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Stefan Richter138c8af2006-11-02 21:16:08 +0100736 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
737 if (!lu) {
738 SBP2_ERR("failed to create lu");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto failed_alloc;
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Stefan Richter138c8af2006-11-02 21:16:08 +0100742 lu->ne = ud->ne;
743 lu->ud = ud;
744 lu->speed_code = IEEE1394_SPEED_100;
745 lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
746 lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
747 INIT_LIST_HEAD(&lu->cmd_orb_inuse);
748 INIT_LIST_HEAD(&lu->cmd_orb_completed);
749 INIT_LIST_HEAD(&lu->lu_list);
750 spin_lock_init(&lu->cmd_orb_lock);
751 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
752 INIT_WORK(&lu->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Stefan Richter138c8af2006-11-02 21:16:08 +0100754 ud->device.driver_data = lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
757 if (!hi) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100758 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
759 sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!hi) {
761 SBP2_ERR("failed to allocate hostinfo");
762 goto failed_alloc;
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 hi->host = ud->ne->host;
Stefan Richter138c8af2006-11-02 21:16:08 +0100765 INIT_LIST_HEAD(&hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
768 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500769 * enabled or not supported on host controller */
770 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
771 &sbp2_physdma_ops,
772 0x0ULL, 0xfffffffcULL)) {
773 SBP2_ERR("failed to register lower 4GB address range");
774 goto failed_alloc;
775 }
Stefan Richter05556592007-02-04 20:25:43 +0100776#else
777 if (dma_set_mask(hi->host->device.parent, DMA_32BIT_MASK)) {
778 SBP2_ERR("failed to set 4GB DMA mask");
779 goto failed_alloc;
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781#endif
782 }
783
Stefan Richter147830f2006-03-28 19:54:52 -0500784 /* Prevent unloading of the 1394 host */
785 if (!try_module_get(hi->host->driver->owner)) {
786 SBP2_ERR("failed to get a reference on 1394 host driver");
787 goto failed_alloc;
788 }
789
Stefan Richter138c8af2006-11-02 21:16:08 +0100790 lu->hi = hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Stefan Richter138c8af2006-11-02 21:16:08 +0100792 list_add_tail(&lu->lu_list, &hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Stefan Richter35bdddb2006-01-31 00:13:33 -0500794 /* Register the status FIFO address range. We could use the same FIFO
795 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200796 * target in order to support multi-unit devices.
797 * The FIFO is located out of the local host controller's physical range
798 * but, if possible, within the posted write area. Status writes will
799 * then be performed as unified transactions. This slightly reduces
800 * bandwidth usage, and some Prolific based devices seem to require it.
801 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100802 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
Stefan Richter35bdddb2006-01-31 00:13:33 -0500803 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
804 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400805 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Stefan Richter138c8af2006-11-02 21:16:08 +0100806 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500807 SBP2_ERR("failed to allocate status FIFO address range");
808 goto failed_alloc;
809 }
810
Stefan Richter138c8af2006-11-02 21:16:08 +0100811 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
812 if (!shost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 SBP2_ERR("failed to register scsi host");
814 goto failed_alloc;
815 }
816
Stefan Richter138c8af2006-11-02 21:16:08 +0100817 shost->hostdata[0] = (unsigned long)lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Stefan Richter138c8af2006-11-02 21:16:08 +0100819 if (!scsi_add_host(shost, &ud->device)) {
820 lu->shost = shost;
821 return lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823
824 SBP2_ERR("failed to add scsi host");
Stefan Richter138c8af2006-11-02 21:16:08 +0100825 scsi_host_put(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827failed_alloc:
Stefan Richter138c8af2006-11-02 21:16:08 +0100828 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return NULL;
830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832static void sbp2_host_reset(struct hpsb_host *host)
833{
Stefan Richterca0c7452006-11-02 21:16:08 +0100834 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100835 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200838 if (!hi)
839 return;
Stefan Richter138c8af2006-11-02 21:16:08 +0100840 list_for_each_entry(lu, &hi->logical_units, lu_list)
841 if (likely(atomic_read(&lu->state) !=
Stefan Richter2cccbb52006-08-14 18:59:00 +0200842 SBP2LU_STATE_IN_SHUTDOWN)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100843 atomic_set(&lu->state, SBP2LU_STATE_IN_RESET);
844 scsi_block_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Stefan Richter138c8af2006-11-02 21:16:08 +0100848static int sbp2_start_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Stefan Richter138c8af2006-11-02 21:16:08 +0100850 struct sbp2_fwhost_info *hi = lu->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500851 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Stefan Richter97d552e2006-12-29 23:47:04 +0100853 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500854 sizeof(struct sbp2_login_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100855 &lu->login_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100856 if (!lu->login_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Stefan Richter97d552e2006-12-29 23:47:04 +0100859 lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500860 sizeof(struct sbp2_query_logins_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100861 &lu->query_logins_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100862 if (!lu->query_logins_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Stefan Richter97d552e2006-12-29 23:47:04 +0100865 lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500866 sizeof(struct sbp2_query_logins_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100867 &lu->query_logins_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100868 if (!lu->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Stefan Richter97d552e2006-12-29 23:47:04 +0100871 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500872 sizeof(struct sbp2_reconnect_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100873 &lu->reconnect_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100874 if (!lu->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Stefan Richter97d552e2006-12-29 23:47:04 +0100877 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500878 sizeof(struct sbp2_logout_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100879 &lu->logout_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100880 if (!lu->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Stefan Richter97d552e2006-12-29 23:47:04 +0100883 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500884 sizeof(struct sbp2_login_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100885 &lu->login_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100886 if (!lu->login_orb)
Stefan Richtereaceec72005-12-13 11:05:05 -0500887 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Stefan Richter3d269cb2007-02-04 20:57:38 +0100889 if (sbp2util_create_command_orb_pool(lu))
890 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Stefan Richtere8ca5662006-11-02 21:16:08 +0100892 /* Wait a second before trying to log in. Previously logged in
893 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200894 if (msleep_interruptible(1000)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100895 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -EINTR;
897 }
Stefan Richtera237f352005-11-07 06:31:39 -0500898
Stefan Richter138c8af2006-11-02 21:16:08 +0100899 if (sbp2_login_device(lu)) {
900 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return -EBUSY;
902 }
903
Stefan Richter138c8af2006-11-02 21:16:08 +0100904 sbp2_set_busy_timeout(lu);
905 sbp2_agent_reset(lu, 1);
906 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Stefan Richter138c8af2006-11-02 21:16:08 +0100908 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
James Bottomley146f7262005-09-10 12:44:09 -0500909 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 SBP2_ERR("scsi_add_device failed");
Stefan Richter138c8af2006-11-02 21:16:08 +0100911 sbp2_logout_device(lu);
912 sbp2_remove_device(lu);
James Bottomley146f7262005-09-10 12:44:09 -0500913 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
916 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500917
918alloc_fail:
Stefan Richter138c8af2006-11-02 21:16:08 +0100919 SBP2_ERR("Could not allocate memory for lu");
920 sbp2_remove_device(lu);
Stefan Richtereaceec72005-12-13 11:05:05 -0500921 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Stefan Richter138c8af2006-11-02 21:16:08 +0100924static void sbp2_remove_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Stefan Richterca0c7452006-11-02 21:16:08 +0100926 struct sbp2_fwhost_info *hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Stefan Richter138c8af2006-11-02 21:16:08 +0100928 if (!lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return;
930
Stefan Richter138c8af2006-11-02 21:16:08 +0100931 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Stefan Richter138c8af2006-11-02 21:16:08 +0100933 if (lu->shost) {
934 scsi_remove_host(lu->shost);
935 scsi_host_put(lu->shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Stefan Richter09ee67a2006-08-14 18:43:00 +0200937 flush_scheduled_work();
Stefan Richter138c8af2006-11-02 21:16:08 +0100938 sbp2util_remove_command_orb_pool(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Stefan Richter138c8af2006-11-02 21:16:08 +0100940 list_del(&lu->lu_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Stefan Richter138c8af2006-11-02 21:16:08 +0100942 if (lu->login_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100943 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 sizeof(struct sbp2_login_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100945 lu->login_response,
946 lu->login_response_dma);
947 if (lu->login_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100948 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 sizeof(struct sbp2_login_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100950 lu->login_orb,
951 lu->login_orb_dma);
952 if (lu->reconnect_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100953 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 sizeof(struct sbp2_reconnect_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100955 lu->reconnect_orb,
956 lu->reconnect_orb_dma);
957 if (lu->logout_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100958 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 sizeof(struct sbp2_logout_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100960 lu->logout_orb,
961 lu->logout_orb_dma);
962 if (lu->query_logins_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100963 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 sizeof(struct sbp2_query_logins_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100965 lu->query_logins_orb,
966 lu->query_logins_orb_dma);
967 if (lu->query_logins_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100968 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 sizeof(struct sbp2_query_logins_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100970 lu->query_logins_response,
971 lu->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Stefan Richter138c8af2006-11-02 21:16:08 +0100973 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -0500974 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Stefan Richter138c8af2006-11-02 21:16:08 +0100975 lu->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -0500976
Stefan Richter138c8af2006-11-02 21:16:08 +0100977 lu->ud->device.driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Stefan Richter147830f2006-03-28 19:54:52 -0500979 if (hi)
980 module_put(hi->host->driver->owner);
981
Stefan Richter138c8af2006-11-02 21:16:08 +0100982 kfree(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
985#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
986/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100987 * Deal with write requests on adapters which do not support physical DMA or
988 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
Stefan Richtera237f352005-11-07 06:31:39 -0500990static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
991 int destid, quadlet_t *data, u64 addr,
992 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Stefan Richtera237f352005-11-07 06:31:39 -0500994 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500995 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100999 * Deal with read requests on adapters which do not support physical DMA or
1000 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 */
Stefan Richtera237f352005-11-07 06:31:39 -05001002static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1003 quadlet_t *data, u64 addr, size_t length,
1004 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Stefan Richtera237f352005-11-07 06:31:39 -05001006 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -05001007 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009#endif
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/**************************************
1012 * SBP-2 protocol related section
1013 **************************************/
1014
Stefan Richter138c8af2006-11-02 21:16:08 +01001015static int sbp2_query_logins(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Stefan Richter138c8af2006-11-02 21:16:08 +01001017 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 quadlet_t data[2];
1019 int max_logins;
1020 int active_logins;
1021
Stefan Richter138c8af2006-11-02 21:16:08 +01001022 lu->query_logins_orb->reserved1 = 0x0;
1023 lu->query_logins_orb->reserved2 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Stefan Richter138c8af2006-11-02 21:16:08 +01001025 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1026 lu->query_logins_orb->query_response_hi =
1027 ORB_SET_NODE_ID(hi->host->node_id);
1028 lu->query_logins_orb->lun_misc =
1029 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1030 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1031 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Stefan Richter138c8af2006-11-02 21:16:08 +01001033 lu->query_logins_orb->reserved_resp_length =
1034 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1035 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Stefan Richter138c8af2006-11-02 21:16:08 +01001037 lu->query_logins_orb->status_fifo_hi =
1038 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1039 lu->query_logins_orb->status_fifo_lo =
1040 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Stefan Richter138c8af2006-11-02 21:16:08 +01001042 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1043 sizeof(struct sbp2_query_logins_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Stefan Richter138c8af2006-11-02 21:16:08 +01001045 memset(lu->query_logins_response, 0,
1046 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001049 data[1] = lu->query_logins_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 sbp2util_cpu_to_be32_buffer(data, 8);
1051
Stefan Richter138c8af2006-11-02 21:16:08 +01001052 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Stefan Richter138c8af2006-11-02 21:16:08 +01001054 if (sbp2util_access_timeout(lu, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001056 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058
Stefan Richter138c8af2006-11-02 21:16:08 +01001059 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001061 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Stefan Richter138c8af2006-11-02 21:16:08 +01001064 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001065 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001066 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068
Stefan Richter138c8af2006-11-02 21:16:08 +01001069 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1070 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Stefan Richter138c8af2006-11-02 21:16:08 +01001072 max_logins = RESPONSE_GET_MAX_LOGINS(
1073 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001074 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Stefan Richter138c8af2006-11-02 21:16:08 +01001076 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1077 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001078 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001081 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
1084 return 0;
1085}
1086
Stefan Richter138c8af2006-11-02 21:16:08 +01001087static int sbp2_login_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Stefan Richter138c8af2006-11-02 21:16:08 +01001089 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 quadlet_t data[2];
1091
Stefan Richter138c8af2006-11-02 21:16:08 +01001092 if (!lu->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001093 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Stefan Richter138c8af2006-11-02 21:16:08 +01001095 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001096 SBP2_INFO("Device does not support any more concurrent logins");
1097 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
1099
Stefan Richtere8ca5662006-11-02 21:16:08 +01001100 /* assume no password */
Stefan Richter138c8af2006-11-02 21:16:08 +01001101 lu->login_orb->password_hi = 0;
1102 lu->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Stefan Richter138c8af2006-11-02 21:16:08 +01001104 lu->login_orb->login_response_lo = lu->login_response_dma;
1105 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1106 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001107
1108 /* one second reconnect time */
Stefan Richter138c8af2006-11-02 21:16:08 +01001109 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1110 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1111 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1112 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Stefan Richter138c8af2006-11-02 21:16:08 +01001114 lu->login_orb->passwd_resp_lengths =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Stefan Richter138c8af2006-11-02 21:16:08 +01001117 lu->login_orb->status_fifo_hi =
1118 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1119 lu->login_orb->status_fifo_lo =
1120 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Stefan Richter138c8af2006-11-02 21:16:08 +01001122 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1123 sizeof(struct sbp2_login_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Stefan Richter138c8af2006-11-02 21:16:08 +01001125 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001128 data[1] = lu->login_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 sbp2util_cpu_to_be32_buffer(data, 8);
1130
Stefan Richter138c8af2006-11-02 21:16:08 +01001131 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Stefan Richtere8ca5662006-11-02 21:16:08 +01001133 /* wait up to 20 seconds for login status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001134 if (sbp2util_access_timeout(lu, 20*HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001135 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001136 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138
Stefan Richtere8ca5662006-11-02 21:16:08 +01001139 /* make sure that the returned status matches the login ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001140 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001141 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001142 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144
Stefan Richter138c8af2006-11-02 21:16:08 +01001145 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001146 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001147 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
Stefan Richter138c8af2006-11-02 21:16:08 +01001150 sbp2util_cpu_to_be32_buffer(lu->login_response,
1151 sizeof(struct sbp2_login_response));
1152 lu->command_block_agent_addr =
1153 ((u64)lu->login_response->command_block_agent_hi) << 32;
1154 lu->command_block_agent_addr |=
1155 ((u64)lu->login_response->command_block_agent_lo);
1156 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001159 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Stefan Richter138c8af2006-11-02 21:16:08 +01001162static int sbp2_logout_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Stefan Richter138c8af2006-11-02 21:16:08 +01001164 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 quadlet_t data[2];
1166 int error;
1167
Stefan Richter138c8af2006-11-02 21:16:08 +01001168 lu->logout_orb->reserved1 = 0x0;
1169 lu->logout_orb->reserved2 = 0x0;
1170 lu->logout_orb->reserved3 = 0x0;
1171 lu->logout_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Stefan Richter138c8af2006-11-02 21:16:08 +01001173 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1174 lu->logout_orb->login_ID_misc |=
1175 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1176 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Stefan Richter138c8af2006-11-02 21:16:08 +01001178 lu->logout_orb->reserved5 = 0x0;
1179 lu->logout_orb->status_fifo_hi =
1180 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1181 lu->logout_orb->status_fifo_lo =
1182 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Stefan Richter138c8af2006-11-02 21:16:08 +01001184 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1185 sizeof(struct sbp2_logout_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001188 data[1] = lu->logout_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 sbp2util_cpu_to_be32_buffer(data, 8);
1190
Stefan Richter138c8af2006-11-02 21:16:08 +01001191 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (error)
1193 return error;
1194
Stefan Richtere8ca5662006-11-02 21:16:08 +01001195 /* wait up to 1 second for the device to complete logout */
Stefan Richter138c8af2006-11-02 21:16:08 +01001196 if (sbp2util_access_timeout(lu, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return -EIO;
1198
1199 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Stefan Richter138c8af2006-11-02 21:16:08 +01001203static int sbp2_reconnect_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Stefan Richter138c8af2006-11-02 21:16:08 +01001205 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 quadlet_t data[2];
1207 int error;
1208
Stefan Richter138c8af2006-11-02 21:16:08 +01001209 lu->reconnect_orb->reserved1 = 0x0;
1210 lu->reconnect_orb->reserved2 = 0x0;
1211 lu->reconnect_orb->reserved3 = 0x0;
1212 lu->reconnect_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Stefan Richter138c8af2006-11-02 21:16:08 +01001214 lu->reconnect_orb->login_ID_misc =
1215 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1216 lu->reconnect_orb->login_ID_misc |=
1217 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1218 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Stefan Richter138c8af2006-11-02 21:16:08 +01001220 lu->reconnect_orb->reserved5 = 0x0;
1221 lu->reconnect_orb->status_fifo_hi =
1222 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1223 lu->reconnect_orb->status_fifo_lo =
1224 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Stefan Richter138c8af2006-11-02 21:16:08 +01001226 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1227 sizeof(struct sbp2_reconnect_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001230 data[1] = lu->reconnect_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 sbp2util_cpu_to_be32_buffer(data, 8);
1232
Stefan Richter138c8af2006-11-02 21:16:08 +01001233 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (error)
1235 return error;
1236
Stefan Richtere8ca5662006-11-02 21:16:08 +01001237 /* wait up to 1 second for reconnect status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001238 if (sbp2util_access_timeout(lu, HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001239 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001240 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242
Stefan Richtere8ca5662006-11-02 21:16:08 +01001243 /* make sure that the returned status matches the reconnect ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001244 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001245 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001246 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248
Stefan Richter138c8af2006-11-02 21:16:08 +01001249 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001250 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001251 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253
Stefan Richter35644092006-11-02 21:16:08 +01001254 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001259 * Set the target node's Single Phase Retry limit. Affects the target's retry
1260 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001262static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 quadlet_t data;
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001267 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
Stefan Richterd024ebc2006-03-28 20:03:55 -05001268 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Stefan Richter138c8af2006-11-02 21:16:08 +01001272static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct unit_directory *ud)
1274{
1275 struct csr1212_keyval *kv;
1276 struct csr1212_dentry *dentry;
1277 u64 management_agent_addr;
Stefan Richter9117c6d2006-11-02 21:16:08 +01001278 u32 unit_characteristics, firmware_revision;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001279 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 int i;
1281
Stefan Richter9117c6d2006-11-02 21:16:08 +01001282 management_agent_addr = 0;
1283 unit_characteristics = 0;
1284 firmware_revision = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1287 switch (kv->key.id) {
1288 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001289 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001291 CSR1212_REGISTER_SPACE_BASE +
1292 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Stefan Richteredf1fb22006-11-02 21:16:08 +01001294 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richter138c8af2006-11-02 21:16:08 +01001295 lu->lun = ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 break;
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001299 /* FIXME: This is ignored so far.
1300 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 break;
1303
1304 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 break;
1307
1308 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001309 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1310 * Its "ordered" bit has consequences for command ORB
1311 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 break;
1313 }
1314 }
1315
Stefan Richter24d3bf82006-05-15 22:04:59 +02001316 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Stefan Richter679c0cd2006-05-15 22:08:09 +02001318 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1319 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
Stefan Richter4618fd32006-12-30 15:37:09 +01001320 if (sbp2_workarounds_table[i].firmware_revision !=
1321 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001322 sbp2_workarounds_table[i].firmware_revision !=
1323 (firmware_revision & 0xffff00))
1324 continue;
Stefan Richter4618fd32006-12-30 15:37:09 +01001325 if (sbp2_workarounds_table[i].model_id !=
1326 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001327 sbp2_workarounds_table[i].model_id != ud->model_id)
1328 continue;
1329 workarounds |= sbp2_workarounds_table[i].workarounds;
1330 break;
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Stefan Richter24d3bf82006-05-15 22:04:59 +02001333 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001334 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1335 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1336 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001337 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001338 workarounds, firmware_revision,
1339 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1340 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001341
1342 /* We would need one SCSI host template for each target to adjust
1343 * max_sectors on the fly, therefore warn only. */
1344 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001345 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001346 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001347 "max transfer size. WARNING: Current max_sectors "
1348 "setting is larger than 128KB (%d sectors)",
1349 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001350 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /* If this is a logical unit directory entry, process the parent
1353 * to get the values. */
1354 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001355 struct unit_directory *parent_ud = container_of(
1356 ud->device.parent, struct unit_directory, device);
1357 sbp2_parse_unit_directory(lu, parent_ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 } else {
Stefan Richter138c8af2006-11-02 21:16:08 +01001359 lu->management_agent_addr = management_agent_addr;
1360 lu->workarounds = workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richter138c8af2006-11-02 21:16:08 +01001362 lu->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364}
1365
Ben Collinsfd23ade2006-06-12 18:14:14 -04001366#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368/*
1369 * This function is called in order to determine the max speed and packet
1370 * size we can use in our ORBs. Note, that we (the driver and host) only
1371 * initiate the transaction. The SBP-2 device actually transfers the data
1372 * (by reading from the DMA area we tell it). This means that the SBP-2
1373 * device decides the actual maximum data it can transfer. We just tell it
1374 * the speed that it needs to use, and the max_rec the host supports, and
1375 * it takes care of the rest.
1376 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001377static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Stefan Richter138c8af2006-11-02 21:16:08 +01001379 struct sbp2_fwhost_info *hi = lu->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001380 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Stefan Richter138c8af2006-11-02 21:16:08 +01001382 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Stefan Richter138c8af2006-11-02 21:16:08 +01001384 if (lu->speed_code > sbp2_max_speed) {
1385 lu->speed_code = sbp2_max_speed;
Stefan Richterca0c7452006-11-02 21:16:08 +01001386 SBP2_INFO("Reducing speed to %s",
1387 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
1390 /* Payload size is the lesser of what our speed supports and what
1391 * our host supports. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001392 payload = min(sbp2_speedto_max_payload[lu->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001393 (u8) (hi->host->csr.max_rec - 1));
1394
1395 /* If physical DMA is off, work around limitation in ohci1394:
1396 * packet size must not exceed PAGE_SIZE */
Stefan Richter138c8af2006-11-02 21:16:08 +01001397 if (lu->ne->host->low_addr_space < (1ULL << 32))
Ben Collinsfd23ade2006-06-12 18:14:14 -04001398 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1399 payload)
1400 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Stefan Richter35644092006-11-02 21:16:08 +01001402 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
Stefan Richter138c8af2006-11-02 21:16:08 +01001403 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1404 hpsb_speedto_str[lu->speed_code],
Stefan Richter35644092006-11-02 21:16:08 +01001405 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Stefan Richter138c8af2006-11-02 21:16:08 +01001407 lu->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Stefan Richter138c8af2006-11-02 21:16:08 +01001411static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413 quadlet_t data;
1414 u64 addr;
1415 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001416 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Stefan Richterec9b7e12006-12-07 23:23:25 +01001418 /* flush lu->protocol_work */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001419 if (wait)
1420 flush_scheduled_work();
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richter138c8af2006-11-02 21:16:08 +01001423 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 if (wait)
Stefan Richter138c8af2006-11-02 21:16:08 +01001426 retval = hpsb_node_write(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001428 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 if (retval < 0) {
1431 SBP2_ERR("hpsb_node_write failed.\n");
1432 return -EIO;
1433 }
1434
Stefan Richtere8ca5662006-11-02 21:16:08 +01001435 /* make sure that the ORB_POINTER is written on next command */
Stefan Richter138c8af2006-11-02 21:16:08 +01001436 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1437 lu->last_orb = NULL;
1438 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Stefan Richtera237f352005-11-07 06:31:39 -05001440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441}
1442
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001443static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001444 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001445 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001446 unsigned int scsi_use_sg,
1447 struct scatterlist *sgpnt,
1448 u32 orb_direction,
1449 enum dma_data_direction dma_dir)
1450{
Stefan Richter138c8af2006-11-02 21:16:08 +01001451 cmd->dma_dir = dma_dir;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001452 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1453 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1454
Stefan Richtere8ca5662006-11-02 21:16:08 +01001455 /* special case if only one element (and less than 64KB in size) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001456 if ((scsi_use_sg == 1) &&
1457 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1458
Stefan Richter138c8af2006-11-02 21:16:08 +01001459 cmd->dma_size = sgpnt[0].length;
1460 cmd->dma_type = CMD_DMA_PAGE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001461 cmd->cmd_dma = dma_map_page(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01001462 sgpnt[0].page, sgpnt[0].offset,
1463 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001464
Stefan Richter138c8af2006-11-02 21:16:08 +01001465 orb->data_descriptor_lo = cmd->cmd_dma;
1466 orb->misc |= ORB_SET_DATA_SIZE(cmd->dma_size);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001467
1468 } else {
1469 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001470 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001471 u32 sg_count, sg_len;
1472 dma_addr_t sg_addr;
Stefan Richter97d552e2006-12-29 23:47:04 +01001473 int i, count = dma_map_sg(hi->host->device.parent, sgpnt,
1474 scsi_use_sg, dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001475
Stefan Richter138c8af2006-11-02 21:16:08 +01001476 cmd->dma_size = scsi_use_sg;
1477 cmd->sge_buffer = sgpnt;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001478
1479 /* use page tables (s/g) */
1480 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
Stefan Richter138c8af2006-11-02 21:16:08 +01001481 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001482
Stefan Richtere8ca5662006-11-02 21:16:08 +01001483 /* loop through and fill out our SBP-2 page tables
1484 * (and split up anything too large) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001485 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1486 sg_len = sg_dma_len(sgpnt);
1487 sg_addr = sg_dma_address(sgpnt);
1488 while (sg_len) {
1489 sg_element[sg_count].segment_base_lo = sg_addr;
1490 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1491 sg_element[sg_count].length_segment_base_hi =
1492 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1493 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1494 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1495 } else {
1496 sg_element[sg_count].length_segment_base_hi =
1497 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1498 sg_len = 0;
1499 }
1500 sg_count++;
1501 }
1502 }
1503
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001504 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1505
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001506 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001507 (sizeof(struct sbp2_unrestricted_page_table)) *
1508 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001509 }
1510}
1511
1512static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001513 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001514 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001515 struct scatterlist *sgpnt,
1516 u32 orb_direction,
1517 unsigned int scsi_request_bufflen,
1518 void *scsi_request_buffer,
1519 enum dma_data_direction dma_dir)
1520{
Stefan Richter138c8af2006-11-02 21:16:08 +01001521 cmd->dma_dir = dma_dir;
1522 cmd->dma_size = scsi_request_bufflen;
1523 cmd->dma_type = CMD_DMA_SINGLE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001524 cmd->cmd_dma = dma_map_single(hi->host->device.parent,
1525 scsi_request_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +01001526 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001527 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1528 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1529
Stefan Richtere8ca5662006-11-02 21:16:08 +01001530 /* handle case where we get a command w/o s/g enabled
1531 * (but check for transfers larger than 64K) */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001532 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1533
Stefan Richter138c8af2006-11-02 21:16:08 +01001534 orb->data_descriptor_lo = cmd->cmd_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001535 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1536
1537 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001538 /* The buffer is too large. Turn this into page tables. */
1539
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001540 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001541 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001542 u32 sg_count, sg_len;
1543 dma_addr_t sg_addr;
1544
Stefan Richter138c8af2006-11-02 21:16:08 +01001545 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001546 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1547
Stefan Richtere8ca5662006-11-02 21:16:08 +01001548 /* fill out our SBP-2 page tables; split up the large buffer */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001549 sg_count = 0;
1550 sg_len = scsi_request_bufflen;
Stefan Richter138c8af2006-11-02 21:16:08 +01001551 sg_addr = cmd->cmd_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001552 while (sg_len) {
1553 sg_element[sg_count].segment_base_lo = sg_addr;
1554 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1555 sg_element[sg_count].length_segment_base_hi =
1556 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1557 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1558 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1559 } else {
1560 sg_element[sg_count].length_segment_base_hi =
1561 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1562 sg_len = 0;
1563 }
1564 sg_count++;
1565 }
1566
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001567 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1568
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001569 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001570 (sizeof(struct sbp2_unrestricted_page_table)) *
1571 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001572 }
1573}
1574
Stefan Richter138c8af2006-11-02 21:16:08 +01001575static void sbp2_create_command_orb(struct sbp2_lu *lu,
1576 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001577 unchar *scsi_cmd,
1578 unsigned int scsi_use_sg,
1579 unsigned int scsi_request_bufflen,
1580 void *scsi_request_buffer,
1581 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Stefan Richter138c8af2006-11-02 21:16:08 +01001583 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001584 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Stefan Richter138c8af2006-11-02 21:16:08 +01001585 struct sbp2_command_orb *orb = &cmd->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001586 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001589 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 *
1591 * NOTE: We're doing unrestricted page tables (s/g), as this is
1592 * best performance (at least with the devices I have). This means
1593 * that data_size becomes the number of s/g elements, and
1594 * page_size should be zero (for unrestricted).
1595 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001596 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1597 orb->next_ORB_lo = 0x0;
1598 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1599 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1600 orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Stefan Richter43863eb2005-12-12 23:03:24 -05001602 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001603 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001604 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001605 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001606 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001607 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001608 else {
Stefan Richter35644092006-11-02 21:16:08 +01001609 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001610 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
1612
Stefan Richtere8ca5662006-11-02 21:16:08 +01001613 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001615 orb->data_descriptor_hi = 0x0;
1616 orb->data_descriptor_lo = 0x0;
1617 orb->misc |= ORB_SET_DIRECTION(1);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001618 } else if (scsi_use_sg)
Stefan Richter138c8af2006-11-02 21:16:08 +01001619 sbp2_prep_command_orb_sg(orb, hi, cmd, scsi_use_sg, sgpnt,
1620 orb_direction, dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +01001621 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001622 sbp2_prep_command_orb_no_sg(orb, hi, cmd, sgpnt, orb_direction,
1623 scsi_request_bufflen,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001624 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Stefan Richter138c8af2006-11-02 21:16:08 +01001626 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Stefan Richter138c8af2006-11-02 21:16:08 +01001628 memset(orb->cdb, 0, 12);
1629 memcpy(orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
Stefan Richter138c8af2006-11-02 21:16:08 +01001632static void sbp2_link_orb_command(struct sbp2_lu *lu,
1633 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Stefan Richter138c8af2006-11-02 21:16:08 +01001635 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtercc078182006-07-23 22:12:00 +02001636 struct sbp2_command_orb *last_orb;
1637 dma_addr_t last_orb_dma;
Stefan Richter138c8af2006-11-02 21:16:08 +01001638 u64 addr = lu->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001639 quadlet_t data[2];
1640 size_t length;
1641 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Stefan Richter97d552e2006-12-29 23:47:04 +01001643 dma_sync_single_for_device(hi->host->device.parent,
1644 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001645 sizeof(struct sbp2_command_orb),
1646 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001647 dma_sync_single_for_device(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001648 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001649 DMA_TO_DEVICE);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001650
1651 /* check to see if there are any previous orbs to use */
Stefan Richter138c8af2006-11-02 21:16:08 +01001652 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1653 last_orb = lu->last_orb;
1654 last_orb_dma = lu->last_orb_dma;
Stefan Richtercc078182006-07-23 22:12:00 +02001655 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001657 * last_orb == NULL means: We know that the target's fetch agent
1658 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 */
Stefan Richtercc078182006-07-23 22:12:00 +02001660 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001662 data[1] = cmd->command_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001664 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001667 * last_orb != NULL means: We know that the target's fetch agent
1668 * is (very probably) not dead or in reset state right now.
1669 * We have an ORB already sent that we can append a new one to.
1670 * The target's fetch agent may or may not have read this
1671 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 */
Stefan Richter97d552e2006-12-29 23:47:04 +01001673 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001674 sizeof(struct sbp2_command_orb),
1675 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001676 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
Stefan Richtercc078182006-07-23 22:12:00 +02001677 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001679 last_orb->next_ORB_hi = 0;
Stefan Richter97d552e2006-12-29 23:47:04 +01001680 dma_sync_single_for_device(hi->host->device.parent,
1681 last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001682 sizeof(struct sbp2_command_orb),
1683 DMA_TO_DEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001684 addr += SBP2_DOORBELL_OFFSET;
1685 data[0] = 0;
1686 length = 4;
1687 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001688 lu->last_orb = &cmd->command_orb;
1689 lu->last_orb_dma = cmd->command_orb_dma;
1690 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Stefan Richter138c8af2006-11-02 21:16:08 +01001692 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
Stefan Richter09ee67a2006-08-14 18:43:00 +02001693 /*
1694 * sbp2util_node_write_no_wait failed. We certainly ran out
1695 * of transaction labels, perhaps just because there were no
1696 * context switches which gave khpsbpkt a chance to collect
1697 * free tlabels. Try again in non-atomic context. If necessary,
1698 * the workqueue job will sleep to guaranteedly get a tlabel.
1699 * We do not accept new commands until the job is over.
1700 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001701 scsi_block_requests(lu->shost);
1702 PREPARE_WORK(&lu->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001703 last_orb ? sbp2util_write_doorbell:
Stefan Richterec9b7e12006-12-07 23:23:25 +01001704 sbp2util_write_orb_pointer);
Stefan Richter138c8af2006-11-02 21:16:08 +01001705 schedule_work(&lu->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Stefan Richter138c8af2006-11-02 21:16:08 +01001709static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 void (*done)(struct scsi_cmnd *))
1711{
Stefan Richter138c8af2006-11-02 21:16:08 +01001712 unchar *scsi_cmd = (unchar *)SCpnt->cmnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 unsigned int request_bufflen = SCpnt->request_bufflen;
Stefan Richter138c8af2006-11-02 21:16:08 +01001714 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Stefan Richter138c8af2006-11-02 21:16:08 +01001716 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1717 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -05001718 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Stefan Richter138c8af2006-11-02 21:16:08 +01001720 sbp2_create_command_orb(lu, cmd, scsi_cmd, SCpnt->use_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 request_bufflen, SCpnt->request_buffer,
1722 SCpnt->sc_data_direction);
Stefan Richter138c8af2006-11-02 21:16:08 +01001723 sbp2_link_orb_command(lu, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Stefan Richtera237f352005-11-07 06:31:39 -05001725 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726}
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * Translates SBP-2 status into SCSI sense data for check conditions
1730 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001731static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1732 unchar *sense_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001734 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sense_data[0] = 0x70;
1736 sense_data[1] = 0x0;
1737 sense_data[2] = sbp2_status[9];
1738 sense_data[3] = sbp2_status[12];
1739 sense_data[4] = sbp2_status[13];
1740 sense_data[5] = sbp2_status[14];
1741 sense_data[6] = sbp2_status[15];
1742 sense_data[7] = 10;
1743 sense_data[8] = sbp2_status[16];
1744 sense_data[9] = sbp2_status[17];
1745 sense_data[10] = sbp2_status[18];
1746 sense_data[11] = sbp2_status[19];
1747 sense_data[12] = sbp2_status[10];
1748 sense_data[13] = sbp2_status[11];
1749 sense_data[14] = sbp2_status[20];
1750 sense_data[15] = sbp2_status[21];
1751
Stefan Richtere8ca5662006-11-02 21:16:08 +01001752 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
Stefan Richter3e98eab2006-07-23 22:16:00 +02001755static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1756 int destid, quadlet_t *data, u64 addr,
1757 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
Stefan Richterca0c7452006-11-02 21:16:08 +01001759 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001760 struct sbp2_lu *lu = NULL, *lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab2006-07-23 22:16:00 +02001762 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
Stefan Richter138c8af2006-11-02 21:16:08 +01001764 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001765 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Stefan Richter60657722006-07-23 22:18:00 +02001767 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1768 SBP2_ERR("Wrong size of status block");
1769 return RCODE_ADDRESS_ERROR;
1770 }
1771 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001773 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001776 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001778 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001780
1781 /* Find the unit which wrote the status. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001782 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1783 if (lu_tmp->ne->nodeid == nodeid &&
1784 lu_tmp->status_fifo_addr == addr) {
1785 lu = lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 break;
1787 }
1788 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001789 if (unlikely(!lu)) {
1790 SBP2_ERR("lu is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001791 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
1793
Stefan Richter138c8af2006-11-02 21:16:08 +01001794 /* Put response into lu status fifo buffer. The first two bytes
Stefan Richter3e98eab2006-07-23 22:16:00 +02001795 * come in big endian bit order. Often the target writes only a
1796 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001797 * is implied to be zeros. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001798 sb = &lu->status_block;
Stefan Richter3e98eab2006-07-23 22:16:00 +02001799 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1800 memcpy(sb, data, length);
1801 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Stefan Richtere8ca5662006-11-02 21:16:08 +01001803 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001804 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
Stefan Richter138c8af2006-11-02 21:16:08 +01001805 cmd = NULL;
Stefan Richter60657722006-07-23 22:18:00 +02001806 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001807 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1808 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01001809 dma_sync_single_for_cpu(hi->host->device.parent,
1810 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001811 sizeof(struct sbp2_command_orb),
1812 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001813 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001814 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001815 DMA_TO_DEVICE);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001816 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001817 /*
1818 * FIXME: If the src field in the status is 1, the ORB DMA must
1819 * not be reused until status for a subsequent ORB is received.
1820 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001821 SCpnt = cmd->Current_SCpnt;
1822 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1823 sbp2util_mark_command_completed(lu, cmd);
1824 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001827 u32 h = sb->ORB_offset_hi_misc;
1828 u32 r = STATUS_GET_RESP(h);
1829
1830 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001831 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001832 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001833 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001834 r == RESP_STATUS_TRANSPORT_FAILURE ?
1835 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001836 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001837 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001838
Stefan Richteredf1fb22006-11-02 21:16:08 +01001839 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab2006-07-23 22:16:00 +02001840 scsi_status = sbp2_status_to_sense_data(
1841 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001842
Stefan Richteredf1fb22006-11-02 21:16:08 +01001843 if (STATUS_TEST_DEAD(h))
Stefan Richter138c8af2006-11-02 21:16:08 +01001844 sbp2_agent_reset(lu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
1846
Stefan Richtere8ca5662006-11-02 21:16:08 +01001847 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001848 * are none, we know that the fetch agent left the active state
1849 * _and_ that we did not reactivate it yet. Therefore clear
1850 * last_orb so that next time we write directly to the
1851 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001852 * to refetch the next_ORB. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001853 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1854 if (list_empty(&lu->cmd_orb_inuse))
1855 lu->last_orb = NULL;
1856 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001859 /* It's probably status after a management request. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001860 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1861 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1862 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1863 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1864 lu->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001865 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868
Stefan Richteredf1fb22006-11-02 21:16:08 +01001869 if (SCpnt)
Stefan Richter138c8af2006-11-02 21:16:08 +01001870 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1871 cmd->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001872 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873}
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875/**************************************
1876 * SCSI interface related section
1877 **************************************/
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1880 void (*done)(struct scsi_cmnd *))
1881{
Stefan Richter138c8af2006-11-02 21:16:08 +01001882 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001883 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001884 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Stefan Richter138c8af2006-11-02 21:16:08 +01001886 if (unlikely(!sbp2util_node_is_available(lu)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001887 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Stefan Richter138c8af2006-11-02 21:16:08 +01001889 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Stefan Richter5796aa72006-11-02 21:16:08 +01001891 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001892 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001893 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895
Stefan Richtere8ca5662006-11-02 21:16:08 +01001896 /* Multiple units are currently represented to the SCSI core as separate
1897 * targets, not as one target with multiple LUs. Therefore return
1898 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001899 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001900 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Stefan Richter138c8af2006-11-02 21:16:08 +01001902 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001904 result = DID_BUS_BUSY << 16;
1905 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907
Stefan Richtere8ca5662006-11-02 21:16:08 +01001908 /* Bidirectional commands are not yet implemented,
1909 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001910 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001911 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1912 result = DID_ERROR << 16;
1913 goto done;
1914 }
1915
Stefan Richter138c8af2006-11-02 21:16:08 +01001916 if (sbp2_send_command(lu, SCpnt, done)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 SBP2_ERR("Error sending SCSI command");
Stefan Richter138c8af2006-11-02 21:16:08 +01001918 sbp2scsi_complete_command(lu,
1919 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 SCpnt, done);
1921 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Jody McIntyreabd559b2005-09-30 11:59:06 -07001924done:
1925 SCpnt->result = result;
1926 done(SCpnt);
1927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
Stefan Richter138c8af2006-11-02 21:16:08 +01001930static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
Stefan Richter138c8af2006-11-02 21:16:08 +01001932 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +01001934 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001935 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Stefan Richter138c8af2006-11-02 21:16:08 +01001937 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1938 while (!list_empty(&lu->cmd_orb_inuse)) {
1939 lh = lu->cmd_orb_inuse.next;
1940 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +01001941 dma_sync_single_for_cpu(hi->host->device.parent,
1942 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001943 sizeof(struct sbp2_command_orb),
1944 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001945 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001946 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001947 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001948 sbp2util_mark_command_completed(lu, cmd);
1949 if (cmd->Current_SCpnt) {
1950 cmd->Current_SCpnt->result = status << 16;
1951 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001954 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 return;
1957}
1958
1959/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001960 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001962static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1963 struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 void (*done)(struct scsi_cmnd *))
1965{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (!SCpnt) {
1967 SBP2_ERR("SCpnt is NULL");
1968 return;
1969 }
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001972 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001973 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001974 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Stefan Richtera237f352005-11-07 06:31:39 -05001976 case SBP2_SCSI_STATUS_BUSY:
1977 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1978 SCpnt->result = DID_BUS_BUSY << 16;
1979 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Stefan Richtera237f352005-11-07 06:31:39 -05001981 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001982 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001983 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Stefan Richtera237f352005-11-07 06:31:39 -05001985 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1986 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1987 SCpnt->result = DID_NO_CONNECT << 16;
1988 scsi_print_command(SCpnt);
1989 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Stefan Richtera237f352005-11-07 06:31:39 -05001991 case SBP2_SCSI_STATUS_CONDITION_MET:
1992 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1993 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1994 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1995 SCpnt->result = DID_ERROR << 16;
1996 scsi_print_command(SCpnt);
1997 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Stefan Richtera237f352005-11-07 06:31:39 -05001999 default:
2000 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
2001 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 }
2003
Stefan Richtere8ca5662006-11-02 21:16:08 +01002004 /* If a bus reset is in progress and there was an error, complete
2005 * the command as busy so that it will get retried. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002006 if (!hpsb_node_entry_valid(lu->ne)
Stefan Richtera237f352005-11-07 06:31:39 -05002007 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 SBP2_ERR("Completing command with busy (bus reset)");
2009 SCpnt->result = DID_BUS_BUSY << 16;
2010 }
2011
Stefan Richtere8ca5662006-11-02 21:16:08 +01002012 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05002013 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
Jody McIntyreabd559b2005-09-30 11:59:06 -07002016static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
2017{
Stefan Richter138c8af2006-11-02 21:16:08 +01002018 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richtera80614d2006-02-14 22:04:19 -05002019
Stefan Richter138c8af2006-11-02 21:16:08 +01002020 lu->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02002021 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05002022
Stefan Richter138c8af2006-11-02 21:16:08 +01002023 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05002024 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002025 return 0;
2026}
2027
Jody McIntyreabd559b2005-09-30 11:59:06 -07002028static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Stefan Richter138c8af2006-11-02 21:16:08 +01002030 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richter24d3bf82006-05-15 22:04:59 +02002031
Ben Collins365c7862005-11-07 06:31:24 -05002032 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002033
Stefan Richter1a74bc62007-01-10 20:17:15 +01002034 if (sdev->type == TYPE_ROM)
2035 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002036 if (sdev->type == TYPE_DISK &&
Stefan Richter138c8af2006-11-02 21:16:08 +01002037 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richter24d3bf82006-05-15 22:04:59 +02002038 sdev->skip_ms_page_8 = 1;
Stefan Richter138c8af2006-11-02 21:16:08 +01002039 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richtere9a1c522006-05-15 22:06:37 +02002040 sdev->fix_capacity = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 return 0;
2042}
2043
Jody McIntyreabd559b2005-09-30 11:59:06 -07002044static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2045{
Stefan Richter138c8af2006-11-02 21:16:08 +01002046 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002047 return;
2048}
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002051 * Called by scsi stack when something has really gone wrong.
2052 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 */
2054static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2055{
Stefan Richter138c8af2006-11-02 21:16:08 +01002056 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
2057 struct sbp2_fwhost_info *hi = lu->hi;
2058 struct sbp2_command_info *cmd;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002059 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Stefan Richter35644092006-11-02 21:16:08 +01002061 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 scsi_print_command(SCpnt);
2063
Stefan Richter138c8af2006-11-02 21:16:08 +01002064 if (sbp2util_node_is_available(lu)) {
2065 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Stefan Richter23077f12006-09-11 20:17:14 +02002067 /* Return a matching command structure to the free pool. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002068 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2069 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2070 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01002071 dma_sync_single_for_cpu(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01002072 cmd->command_orb_dma,
2073 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +01002074 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01002075 dma_sync_single_for_cpu(hi->host->device.parent,
2076 cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +01002077 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01002078 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01002079 sbp2util_mark_command_completed(lu, cmd);
2080 if (cmd->Current_SCpnt) {
2081 cmd->Current_SCpnt->result = DID_ABORT << 16;
2082 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084 }
Stefan Richter138c8af2006-11-02 21:16:08 +01002085 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Stefan Richter138c8af2006-11-02 21:16:08 +01002087 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
2089
Stefan Richtera237f352005-11-07 06:31:39 -05002090 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
2093/*
2094 * Called by scsi stack when something has really gone wrong.
2095 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002096static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Stefan Richter138c8af2006-11-02 21:16:08 +01002098 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Stefan Richter35644092006-11-02 21:16:08 +01002100 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Stefan Richter138c8af2006-11-02 21:16:08 +01002102 if (sbp2util_node_is_available(lu)) {
Stefan Richter35644092006-11-02 21:16:08 +01002103 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter138c8af2006-11-02 21:16:08 +01002104 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
Jody McIntyreabd559b2005-09-30 11:59:06 -07002107 return SUCCESS;
Jeff Garzik 94d0e7b2005-05-28 07:55:48 -04002108}
2109
Stefan Richtera237f352005-11-07 06:31:39 -05002110static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2111 struct device_attribute *attr,
2112 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 struct scsi_device *sdev;
Stefan Richter138c8af2006-11-02 21:16:08 +01002115 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 if (!(sdev = to_scsi_device(dev)))
2118 return 0;
2119
Stefan Richter138c8af2006-11-02 21:16:08 +01002120 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return 0;
2122
Stefan Richterd7794c82007-05-27 13:17:15 +02002123 if (sbp2_long_sysfs_ieee1394_id)
2124 return sprintf(buf, "%016Lx:%06x:%04x\n",
2125 (unsigned long long)lu->ne->guid,
2126 lu->ud->directory_id, ORB_SET_LUN(lu->lun));
2127 else
2128 return sprintf(buf, "%016Lx:%d:%d\n",
2129 (unsigned long long)lu->ne->guid,
2130 lu->ud->id, ORB_SET_LUN(lu->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2134MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2135MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2136MODULE_LICENSE("GPL");
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138static int sbp2_module_init(void)
2139{
2140 int ret;
2141
Stefan Richterca0c7452006-11-02 21:16:08 +01002142 if (sbp2_serialize_io) {
2143 sbp2_shost_template.can_queue = 1;
2144 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
Stefan Richter24d3bf82006-05-15 22:04:59 +02002147 if (sbp2_default_workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01002148 (sbp2_max_sectors * 512) > (128 * 1024))
2149 sbp2_max_sectors = 128 * 1024 / 512;
2150 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 ret = hpsb_register_protocol(&sbp2_driver);
2154 if (ret) {
2155 SBP2_ERR("Failed to register protocol");
2156 hpsb_unregister_highlevel(&sbp2_highlevel);
2157 return ret;
2158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return 0;
2160}
2161
2162static void __exit sbp2_module_exit(void)
2163{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 hpsb_unregister_highlevel(&sbp2_highlevel);
2166}
2167
2168module_init(sbp2_module_init);
2169module_exit(sbp2_module_exit);