blob: 9e2b1964d71add2103a735164cc7560de5ca3b38 [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 Richter4e6343a2007-12-16 17:31:26 +010054#include <linux/blkdev.h>
Stefan Richter902abed2006-08-14 18:56:00 +020055#include <linux/compiler.h>
56#include <linux/delay.h>
57#include <linux/device.h>
58#include <linux/dma-mapping.h>
59#include <linux/gfp.h>
60#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/kernel.h>
62#include <linux/list.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070063#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/module.h>
65#include <linux/moduleparam.h>
Andrew Mortonf84c9222007-04-23 11:50:56 -070066#include <linux/sched.h>
Stefan Richter902abed2006-08-14 18:56:00 +020067#include <linux/slab.h>
68#include <linux/spinlock.h>
69#include <linux/stat.h>
70#include <linux/string.h>
71#include <linux/stringify.h>
72#include <linux/types.h>
Stefan Richtere8398bb2006-07-23 22:19:00 +020073#include <linux/wait.h>
Stefan Richter20e20082007-05-05 17:18:12 +020074#include <linux/workqueue.h>
Adrian Bunk87ae9af2007-10-30 10:35:04 +010075#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <asm/byteorder.h>
Stefan Richter902abed2006-08-14 18:56:00 +020078#include <asm/errno.h>
79#include <asm/param.h>
Stefan Richter902abed2006-08-14 18:56:00 +020080#include <asm/system.h>
81#include <asm/types.h>
82
83#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
84#include <asm/io.h> /* for bus_to_virt */
85#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#include <scsi/scsi.h>
88#include <scsi/scsi_cmnd.h>
89#include <scsi/scsi_dbg.h>
90#include <scsi/scsi_device.h>
91#include <scsi/scsi_host.h>
92
93#include "csr1212.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include "highlevel.h"
Stefan Richter902abed2006-08-14 18:56:00 +020095#include "hosts.h"
96#include "ieee1394.h"
97#include "ieee1394_core.h"
98#include "ieee1394_hotplug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include "ieee1394_transactions.h"
Stefan Richter902abed2006-08-14 18:56:00 +0200100#include "ieee1394_types.h"
101#include "nodemgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include "sbp2.h"
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * Module load parameter definitions
106 */
107
108/*
109 * Change max_speed on module load if you have a bad IEEE-1394
110 * controller that has trouble running 2KB packets at 400mb.
111 *
112 * NOTE: On certain OHCI parts I have seen short packets on async transmit
113 * (probably due to PCI latency/throughput issues with the part). You can
114 * bump down the speed if you are running into problems.
115 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100116static int sbp2_max_speed = IEEE1394_SPEED_MAX;
117module_param_named(max_speed, sbp2_max_speed, int, 0644);
Stefan Richter28b06672006-11-02 21:16:08 +0100118MODULE_PARM_DESC(max_speed, "Force max speed "
119 "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
Stefan Richter77bba7a2007-06-17 23:54:52 +0200122 * Set serialize_io to 0 or N to use dynamically appended lists of command ORBs.
123 * This is and always has been buggy in multiple subtle ways. See above TODOs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100125static int sbp2_serialize_io = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200126module_param_named(serialize_io, sbp2_serialize_io, bool, 0444);
127MODULE_PARM_DESC(serialize_io, "Serialize requests coming from SCSI drivers "
128 "(default = Y, faster but buggy = N)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
Stefan Richter4e6343a2007-12-16 17:31:26 +0100131 * Adjust max_sectors if you'd like to influence how many sectors each SCSI
132 * command can transfer at most. Please note that some older SBP-2 bridge
133 * chips are broken for transfers greater or equal to 128KB, therefore
134 * max_sectors used to be a safe 255 sectors for many years. We now have a
135 * default of 0 here which means that we let the SCSI stack choose a limit.
136 *
137 * The SBP2_WORKAROUND_128K_MAX_TRANS flag, if set either in the workarounds
138 * module parameter or in the sbp2_workarounds_table[], will override the
139 * value of max_sectors. We should use sbp2_workarounds_table[] to cover any
140 * bridge chip which becomes known to need the 255 sectors limit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
Stefan Richter4e6343a2007-12-16 17:31:26 +0100142static int sbp2_max_sectors;
Stefan Richterca0c7452006-11-02 21:16:08 +0100143module_param_named(max_sectors, sbp2_max_sectors, int, 0444);
144MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported "
Stefan Richter4e6343a2007-12-16 17:31:26 +0100145 "(default = 0 = use SCSI stack's default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147/*
148 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
149 * do an exclusive login, as it's generally unsafe to have two hosts
150 * talking to a single sbp2 device at the same time (filesystem coherency,
151 * etc.). If you're running an sbp2 device that supports multiple logins,
152 * and you're either running read-only filesystems or some sort of special
Ben Collins20f45782006-06-12 18:13:11 -0400153 * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster
154 * File System, or Lustre, then set exclusive_login to zero.
155 *
156 * So far only bridges from Oxford Semiconductor are known to support
157 * concurrent logins. Depending on firmware, four or two concurrent logins
158 * are possible on OXFW911 and newer Oxsemi bridges.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Stefan Richterca0c7452006-11-02 21:16:08 +0100160static int sbp2_exclusive_login = 1;
Stefan Richter77bba7a2007-06-17 23:54:52 +0200161module_param_named(exclusive_login, sbp2_exclusive_login, bool, 0644);
Stefan Richterca0c7452006-11-02 21:16:08 +0100162MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
Stefan Richter77bba7a2007-06-17 23:54:52 +0200163 "(default = Y, use N for concurrent initiators)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200166 * If any of the following workarounds is required for your device to work,
167 * please submit the kernel messages logged by sbp2 to the linux1394-devel
168 * mailing list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 *
Stefan Richter24d3bf82006-05-15 22:04:59 +0200170 * - 128kB max transfer
171 * Limit transfer size. Necessary for some old bridges.
172 *
173 * - 36 byte inquiry
174 * When scsi_mod probes the device, let the inquiry command look like that
175 * from MS Windows.
176 *
177 * - skip mode page 8
178 * Suppress sending of mode_sense for mode page 8 if the device pretends to
179 * support the SCSI Primary Block commands instead of Reduced Block Commands.
Stefan Richtere9a1c522006-05-15 22:06:37 +0200180 *
181 * - fix capacity
182 * Tell sd_mod to correct the last sector number reported by read_capacity.
183 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
184 * Don't use this with devices which don't have this bug.
Stefan Richter679c0cd2006-05-15 22:08:09 +0200185 *
Stefan Richterd94a9832008-02-03 23:07:44 +0100186 * - delay inquiry
187 * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry.
188 *
Stefan Richter679c0cd2006-05-15 22:08:09 +0200189 * - override internal blacklist
190 * Instead of adding to the built-in blacklist, use only the workarounds
191 * specified in the module load parameter.
192 * Useful if a blacklist entry interfered with a non-broken device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200194static int sbp2_default_workarounds;
195module_param_named(workarounds, sbp2_default_workarounds, int, 0644);
196MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
197 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
198 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
199 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richtere9a1c522006-05-15 22:06:37 +0200200 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richterd94a9832008-02-03 23:07:44 +0100201 ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY)
Stefan Richter679c0cd2006-05-15 22:08:09 +0200202 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
Stefan Richter24d3bf82006-05-15 22:04:59 +0200203 ", or a combination)");
204
Stefan Richterd7794c82007-05-27 13:17:15 +0200205/*
206 * This influences the format of the sysfs attribute
207 * /sys/bus/scsi/devices/.../ieee1394_id.
208 *
209 * The default format is like in older kernels: %016Lx:%d:%d
210 * It contains the target's EUI-64, a number given to the logical unit by
211 * the ieee1394 driver's nodemgr (starting at 0), and the LUN.
212 *
213 * The long format is: %016Lx:%06x:%04x
214 * It contains the target's EUI-64, the unit directory's directory_ID as per
215 * IEEE 1212 clause 7.7.19, and the LUN. This format comes closest to the
216 * format of SBP(-3) target port and logical unit identifier as per SAM (SCSI
217 * Architecture Model) rev.2 to 4 annex A. Therefore and because it is
218 * independent of the implementation of the ieee1394 nodemgr, the longer format
219 * is recommended for future use.
220 */
221static int sbp2_long_sysfs_ieee1394_id;
222module_param_named(long_ieee1394_id, sbp2_long_sysfs_ieee1394_id, bool, 0644);
223MODULE_PARM_DESC(long_ieee1394_id, "8+3+2 bytes format of ieee1394_id in sysfs "
224 "(default = backwards-compatible = N, SAM-conforming = Y)");
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Stefan Richteredf1fb22006-11-02 21:16:08 +0100227#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
228#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/*
231 * Globals
232 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100233static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32);
234static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100235 void (*)(struct scsi_cmnd *));
Stefan Richter138c8af2006-11-02 21:16:08 +0100236static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *);
237static int sbp2_start_device(struct sbp2_lu *);
238static void sbp2_remove_device(struct sbp2_lu *);
239static int sbp2_login_device(struct sbp2_lu *);
240static int sbp2_reconnect_device(struct sbp2_lu *);
241static int sbp2_logout_device(struct sbp2_lu *);
Stefan Richterea42ea02006-11-02 21:16:08 +0100242static void sbp2_host_reset(struct hpsb_host *);
243static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *,
244 u64, size_t, u16);
Stefan Richter138c8af2006-11-02 21:16:08 +0100245static int sbp2_agent_reset(struct sbp2_lu *, int);
246static void sbp2_parse_unit_directory(struct sbp2_lu *,
Stefan Richterea42ea02006-11-02 21:16:08 +0100247 struct unit_directory *);
Stefan Richter138c8af2006-11-02 21:16:08 +0100248static int sbp2_set_busy_timeout(struct sbp2_lu *);
249static int sbp2_max_speed_and_size(struct sbp2_lu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
253
Stefan Richter261b5f62007-08-11 11:52:08 +0200254static DEFINE_RWLOCK(sbp2_hi_logical_units_lock);
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static struct hpsb_highlevel sbp2_highlevel = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100257 .name = SBP2_DEVICE_NAME,
258 .host_reset = sbp2_host_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
261static struct hpsb_address_ops sbp2_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100262 .write = sbp2_handle_status_write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263};
264
265#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
Stefan Richterea42ea02006-11-02 21:16:08 +0100266static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *,
267 u64, size_t, u16);
268static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64,
269 size_t, u16);
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100272 .read = sbp2_handle_physdma_read,
273 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275#endif
276
Stefan Richterea42ea02006-11-02 21:16:08 +0100277
278/*
279 * Interface to driver core and IEEE 1394 core
280 */
281static struct ieee1394_device_id sbp2_id_table[] = {
282 {
283 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
284 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
285 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
286 {}
287};
288MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
289
290static int sbp2_probe(struct device *);
291static int sbp2_remove(struct device *);
292static int sbp2_update(struct unit_directory *);
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static struct hpsb_protocol_driver sbp2_driver = {
Ben Collinsed30c262006-11-23 13:59:48 -0500295 .name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 .id_table = sbp2_id_table,
297 .update = sbp2_update,
298 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .probe = sbp2_probe,
300 .remove = sbp2_remove,
301 },
302};
303
Stefan Richterea42ea02006-11-02 21:16:08 +0100304
305/*
306 * Interface to SCSI core
307 */
308static int sbp2scsi_queuecommand(struct scsi_cmnd *,
309 void (*)(struct scsi_cmnd *));
310static int sbp2scsi_abort(struct scsi_cmnd *);
311static int sbp2scsi_reset(struct scsi_cmnd *);
312static int sbp2scsi_slave_alloc(struct scsi_device *);
313static int sbp2scsi_slave_configure(struct scsi_device *);
314static void sbp2scsi_slave_destroy(struct scsi_device *);
315static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *,
316 struct device_attribute *, char *);
317
318static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
319
320static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
321 &dev_attr_ieee1394_id,
322 NULL
323};
324
Stefan Richterca0c7452006-11-02 21:16:08 +0100325static struct scsi_host_template sbp2_shost_template = {
Stefan Richterea42ea02006-11-02 21:16:08 +0100326 .module = THIS_MODULE,
327 .name = "SBP-2 IEEE-1394",
328 .proc_name = SBP2_DEVICE_NAME,
329 .queuecommand = sbp2scsi_queuecommand,
330 .eh_abort_handler = sbp2scsi_abort,
331 .eh_device_reset_handler = sbp2scsi_reset,
332 .slave_alloc = sbp2scsi_slave_alloc,
333 .slave_configure = sbp2scsi_slave_configure,
334 .slave_destroy = sbp2scsi_slave_destroy,
335 .this_id = -1,
336 .sg_tablesize = SG_ALL,
337 .use_clustering = ENABLE_CLUSTERING,
338 .cmd_per_lun = SBP2_MAX_CMDS,
339 .can_queue = SBP2_MAX_CMDS,
Stefan Richterea42ea02006-11-02 21:16:08 +0100340 .sdev_attrs = sbp2_sysfs_sdev_attrs,
341};
342
Stefan Richter4618fd32006-12-30 15:37:09 +0100343/* for match-all entries in sbp2_workarounds_table */
344#define SBP2_ROM_VALUE_WILDCARD 0x1000000
Stefan Richterea42ea02006-11-02 21:16:08 +0100345
Stefan Richtera80614d2006-02-14 22:04:19 -0500346/*
Stefan Richter24d3bf82006-05-15 22:04:59 +0200347 * List of devices with known bugs.
348 *
349 * The firmware_revision field, masked with 0xffff00, is the best indicator
350 * for the type of bridge chip of a device. It yields a few false positives
351 * but this did not break correctly behaving devices so far.
Stefan Richtera80614d2006-02-14 22:04:19 -0500352 */
Stefan Richter24d3bf82006-05-15 22:04:59 +0200353static const struct {
354 u32 firmware_revision;
Stefan Richtere9a1c522006-05-15 22:06:37 +0200355 u32 model_id;
Stefan Richter24d3bf82006-05-15 22:04:59 +0200356 unsigned workarounds;
357} sbp2_workarounds_table[] = {
Ben Collins4b9a3342006-06-12 18:10:18 -0400358 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
Stefan Richter24d3bf82006-05-15 22:04:59 +0200359 .firmware_revision = 0x002800,
Ben Collins4b9a3342006-06-12 18:10:18 -0400360 .model_id = 0x001010,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200361 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
362 SBP2_WORKAROUND_MODE_SENSE_8,
363 },
Stefan Richterd94a9832008-02-03 23:07:44 +0100364 /* DViCO Momobay FX-3A with TSB42AA9A bridge */ {
365 .firmware_revision = 0x002800,
366 .model_id = 0x000000,
367 .workarounds = SBP2_WORKAROUND_DELAY_INQUIRY,
368 },
Stefan Richter24d3bf82006-05-15 22:04:59 +0200369 /* Initio bridges, actually only needed for some older ones */ {
370 .firmware_revision = 0x000200,
Stefan Richter4618fd32006-12-30 15:37:09 +0100371 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200372 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
373 },
374 /* Symbios bridge */ {
375 .firmware_revision = 0xa0b800,
Stefan Richter4618fd32006-12-30 15:37:09 +0100376 .model_id = SBP2_ROM_VALUE_WILDCARD,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200377 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
Stefan Richtere9a1c522006-05-15 22:06:37 +0200378 },
Stefan Richtere9a1c522006-05-15 22:06:37 +0200379 /* iPod 4th generation */ {
380 .firmware_revision = 0x0a2700,
381 .model_id = 0x000021,
382 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
383 },
384 /* iPod mini */ {
385 .firmware_revision = 0x0a2700,
386 .model_id = 0x000023,
387 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
388 },
389 /* iPod Photo */ {
390 .firmware_revision = 0x0a2700,
391 .model_id = 0x00007e,
392 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
Stefan Richter24d3bf82006-05-15 22:04:59 +0200393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/**************************************
397 * General utility functions
398 **************************************/
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400#ifndef __BIG_ENDIAN
401/*
402 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
403 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400404static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 u32 *temp = buffer;
407
408 for (length = (length >> 2); length--; )
409 temp[length] = be32_to_cpu(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
412/*
413 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
414 */
Stefan Richter2b01b802006-07-03 12:02:28 -0400415static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 u32 *temp = buffer;
418
419 for (length = (length >> 2); length--; )
420 temp[length] = cpu_to_be32(temp[length]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422#else /* BIG_ENDIAN */
423/* Why waste the cpu cycles? */
Stefan Richter611aa192006-08-02 18:44:00 +0200424#define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0)
425#define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#endif
427
Stefan Richterca0c7452006-11-02 21:16:08 +0100428static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Stefan Richtere8398bb2006-07-23 22:19:00 +0200430/*
431 * Waits for completion of an SBP-2 access request.
432 * Returns nonzero if timed out or prematurely interrupted.
433 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100434static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout)
Stefan Richtere8398bb2006-07-23 22:19:00 +0200435{
Stefan Richterca0c7452006-11-02 21:16:08 +0100436 long leftover;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200437
Stefan Richterca0c7452006-11-02 21:16:08 +0100438 leftover = wait_event_interruptible_timeout(
Stefan Richter138c8af2006-11-02 21:16:08 +0100439 sbp2_access_wq, lu->access_complete, timeout);
440 lu->access_complete = 0;
Stefan Richtere8398bb2006-07-23 22:19:00 +0200441 return leftover <= 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Stefan Richter138c8af2006-11-02 21:16:08 +0100444static void sbp2_free_packet(void *packet)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 hpsb_free_tlabel(packet);
447 hpsb_free_packet(packet);
448}
449
Stefan Richtere8ca5662006-11-02 21:16:08 +0100450/*
451 * This is much like hpsb_node_write(), except it ignores the response
452 * subaction and returns immediately. Can be used from atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 */
454static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richter138c8af2006-11-02 21:16:08 +0100455 quadlet_t *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct hpsb_packet *packet;
458
Stefan Richter138c8af2006-11-02 21:16:08 +0100459 packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len);
Stefan Richtera237f352005-11-07 06:31:39 -0500460 if (!packet)
461 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Stefan Richter138c8af2006-11-02 21:16:08 +0100463 hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 hpsb_node_fill_packet(ne, packet);
Stefan Richtera237f352005-11-07 06:31:39 -0500465 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 sbp2_free_packet(packet);
467 return -EIO;
468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return 0;
470}
471
Stefan Richter138c8af2006-11-02 21:16:08 +0100472static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset,
473 quadlet_t *data, size_t len)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200474{
Stefan Richter138c8af2006-11-02 21:16:08 +0100475 /* There is a small window after a bus reset within which the node
476 * entry's generation is current but the reconnect wasn't completed. */
477 if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET))
Stefan Richter09ee67a2006-08-14 18:43:00 +0200478 return;
479
Stefan Richter138c8af2006-11-02 21:16:08 +0100480 if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset,
Stefan Richter09ee67a2006-08-14 18:43:00 +0200481 data, len))
482 SBP2_ERR("sbp2util_notify_fetch_agent failed.");
Stefan Richter138c8af2006-11-02 21:16:08 +0100483
484 /* Now accept new SCSI commands, unless a bus reset happended during
485 * hpsb_node_write. */
486 if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET))
487 scsi_unblock_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200488}
489
David Howellsc4028952006-11-22 14:57:56 +0000490static void sbp2util_write_orb_pointer(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200491{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100492 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200493 quadlet_t data[2];
494
Stefan Richterec9b7e12006-12-07 23:23:25 +0100495 data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id);
496 data[1] = lu->last_orb_dma;
Stefan Richter09ee67a2006-08-14 18:43:00 +0200497 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richterec9b7e12006-12-07 23:23:25 +0100498 sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200499}
500
David Howellsc4028952006-11-22 14:57:56 +0000501static void sbp2util_write_doorbell(struct work_struct *work)
Stefan Richter09ee67a2006-08-14 18:43:00 +0200502{
Stefan Richterec9b7e12006-12-07 23:23:25 +0100503 struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work);
504
505 sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200506}
507
Stefan Richter138c8af2006-11-02 21:16:08 +0100508static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Stefan Richter138c8af2006-11-02 21:16:08 +0100510 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100511 struct sbp2_command_info *cmd;
Stefan Richter3d269cb2007-02-04 20:57:38 +0100512 int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 for (i = 0; i < orbs; i++) {
Stefan Richter3d269cb2007-02-04 20:57:38 +0100515 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
516 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -0500517 return -ENOMEM;
Stefan Richter97d552e2006-12-29 23:47:04 +0100518 cmd->command_orb_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100519 &cmd->command_orb,
520 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100521 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100522 cmd->sge_dma = dma_map_single(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +0100523 &cmd->scatter_gather_element,
524 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100525 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100526 INIT_LIST_HEAD(&cmd->list);
527 list_add_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
530}
531
Stefan Richtera2ee3f92007-08-11 11:51:16 +0200532static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu,
533 struct hpsb_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct list_head *lh, *next;
Stefan Richter138c8af2006-11-02 21:16:08 +0100536 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 unsigned long flags;
538
Stefan Richter138c8af2006-11-02 21:16:08 +0100539 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
540 if (!list_empty(&lu->cmd_orb_completed))
541 list_for_each_safe(lh, next, &lu->cmd_orb_completed) {
542 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +0100543 dma_unmap_single(host->device.parent,
544 cmd->command_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100546 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +0100547 dma_unmap_single(host->device.parent, cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100548 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +0100549 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +0100550 kfree(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100552 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return;
554}
555
556/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100557 * Finds the sbp2_command for a given outstanding command ORB.
558 * Only looks at the in-use list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 */
560static struct sbp2_command_info *sbp2util_find_command_for_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100561 struct sbp2_lu *lu, dma_addr_t orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Stefan Richter138c8af2006-11-02 21:16:08 +0100563 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 unsigned long flags;
565
Stefan Richter138c8af2006-11-02 21:16:08 +0100566 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
567 if (!list_empty(&lu->cmd_orb_inuse))
568 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
569 if (cmd->command_orb_dma == orb) {
570 spin_unlock_irqrestore(
571 &lu->cmd_orb_lock, flags);
572 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100574 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500575 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578/*
Stefan Richtere8ca5662006-11-02 21:16:08 +0100579 * Finds the sbp2_command for a given outstanding SCpnt.
580 * Only looks at the in-use list.
Stefan Richter138c8af2006-11-02 21:16:08 +0100581 * Must be called with lu->cmd_orb_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
Stefan Richter24c7cd02006-04-01 21:11:41 +0200583static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(
Stefan Richter138c8af2006-11-02 21:16:08 +0100584 struct sbp2_lu *lu, void *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Stefan Richter138c8af2006-11-02 21:16:08 +0100586 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Stefan Richter138c8af2006-11-02 21:16:08 +0100588 if (!list_empty(&lu->cmd_orb_inuse))
589 list_for_each_entry(cmd, &lu->cmd_orb_inuse, list)
590 if (cmd->Current_SCpnt == SCpnt)
591 return cmd;
Stefan Richtera237f352005-11-07 06:31:39 -0500592 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595static struct sbp2_command_info *sbp2util_allocate_command_orb(
Stefan Richter138c8af2006-11-02 21:16:08 +0100596 struct sbp2_lu *lu,
597 struct scsi_cmnd *Current_SCpnt,
598 void (*Current_done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +0100601 struct sbp2_command_info *cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unsigned long flags;
603
Stefan Richter138c8af2006-11-02 21:16:08 +0100604 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
605 if (!list_empty(&lu->cmd_orb_completed)) {
606 lh = lu->cmd_orb_completed.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 list_del(lh);
Stefan Richter138c8af2006-11-02 21:16:08 +0100608 cmd = list_entry(lh, struct sbp2_command_info, list);
609 cmd->Current_done = Current_done;
610 cmd->Current_SCpnt = Current_SCpnt;
611 list_add_tail(&cmd->list, &lu->cmd_orb_inuse);
612 } else
Stefan Richterd024ebc2006-03-28 20:03:55 -0500613 SBP2_ERR("%s: no orbs available", __FUNCTION__);
Stefan Richter138c8af2006-11-02 21:16:08 +0100614 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
615 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Stefan Richter58272c12006-11-04 09:55:33 +0100618/*
619 * Unmaps the DMAs of a command and moves the command to the completed ORB list.
620 * Must be called with lu->cmd_orb_lock held.
621 */
622static void sbp2util_mark_command_completed(struct sbp2_lu *lu,
623 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Stefan Richter58272c12006-11-04 09:55:33 +0100625 struct hpsb_host *host = lu->ud->ne->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Stefan Richter138c8af2006-11-02 21:16:08 +0100627 if (cmd->cmd_dma) {
628 if (cmd->dma_type == CMD_DMA_SINGLE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100629 dma_unmap_single(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100630 cmd->dma_size, cmd->dma_dir);
631 else if (cmd->dma_type == CMD_DMA_PAGE)
Stefan Richter97d552e2006-12-29 23:47:04 +0100632 dma_unmap_page(host->device.parent, cmd->cmd_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +0100633 cmd->dma_size, cmd->dma_dir);
Stefan Richteredf1fb22006-11-02 21:16:08 +0100634 /* XXX: Check for CMD_DMA_NONE bug */
Stefan Richter138c8af2006-11-02 21:16:08 +0100635 cmd->dma_type = CMD_DMA_NONE;
636 cmd->cmd_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100638 if (cmd->sge_buffer) {
Stefan Richter97d552e2006-12-29 23:47:04 +0100639 dma_unmap_sg(host->device.parent, cmd->sge_buffer,
Stefan Richter138c8af2006-11-02 21:16:08 +0100640 cmd->dma_size, cmd->dma_dir);
641 cmd->sge_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
Stefan Richtercd641f62006-11-02 21:16:08 +0100643 list_move_tail(&cmd->list, &lu->cmd_orb_completed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Jody McIntyreabd559b2005-09-30 11:59:06 -0700646/*
Stefan Richter138c8af2006-11-02 21:16:08 +0100647 * Is lu valid? Is the 1394 node still present?
Jody McIntyreabd559b2005-09-30 11:59:06 -0700648 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100649static inline int sbp2util_node_is_available(struct sbp2_lu *lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700650{
Stefan Richter138c8af2006-11-02 21:16:08 +0100651 return lu && lu->ne && !lu->ne->in_limbo;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/*********************************************
655 * IEEE-1394 core driver stack related section
656 *********************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658static int sbp2_probe(struct device *dev)
659{
660 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100661 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 ud = container_of(dev, struct unit_directory, device);
664
665 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
666 * instead. */
667 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
668 return -ENODEV;
669
Stefan Richter138c8af2006-11-02 21:16:08 +0100670 lu = sbp2_alloc_device(ud);
671 if (!lu)
Stefan Richtera237f352005-11-07 06:31:39 -0500672 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Stefan Richter138c8af2006-11-02 21:16:08 +0100674 sbp2_parse_unit_directory(lu, ud);
675 return sbp2_start_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678static int sbp2_remove(struct device *dev)
679{
680 struct unit_directory *ud;
Stefan Richter138c8af2006-11-02 21:16:08 +0100681 struct sbp2_lu *lu;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700682 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 ud = container_of(dev, struct unit_directory, device);
Stefan Richter138c8af2006-11-02 21:16:08 +0100685 lu = ud->device.driver_data;
686 if (!lu)
Jody McIntyreabd559b2005-09-30 11:59:06 -0700687 return 0;
688
Stefan Richter138c8af2006-11-02 21:16:08 +0100689 if (lu->shost) {
Stefan Richterbf637ec2006-01-31 00:13:06 -0500690 /* Get rid of enqueued commands if there is no chance to
691 * send them. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100692 if (!sbp2util_node_is_available(lu))
693 sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT);
Stefan Richtere8ca5662006-11-02 21:16:08 +0100694 /* scsi_remove_device() may trigger shutdown functions of SCSI
Stefan Richterbf637ec2006-01-31 00:13:06 -0500695 * highlevel drivers which would deadlock if blocked. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100696 atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN);
697 scsi_unblock_requests(lu->shost);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500698 }
Stefan Richter138c8af2006-11-02 21:16:08 +0100699 sdev = lu->sdev;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700700 if (sdev) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100701 lu->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700702 scsi_remove_device(sdev);
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Stefan Richter138c8af2006-11-02 21:16:08 +0100705 sbp2_logout_device(lu);
706 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 return 0;
709}
710
711static int sbp2_update(struct unit_directory *ud)
712{
Stefan Richter138c8af2006-11-02 21:16:08 +0100713 struct sbp2_lu *lu = ud->device.driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Stefan Richter138c8af2006-11-02 21:16:08 +0100715 if (sbp2_reconnect_device(lu)) {
Stefan Richtere8ca5662006-11-02 21:16:08 +0100716 /* Reconnect has failed. Perhaps we didn't reconnect fast
717 * enough. Try a regular login, but first log out just in
718 * case of any weirdness. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100719 sbp2_logout_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Stefan Richter138c8af2006-11-02 21:16:08 +0100721 if (sbp2_login_device(lu)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /* Login failed too, just fail, and the backend
723 * will call our sbp2_remove for us */
724 SBP2_ERR("Failed to reconnect to sbp2 device!");
725 return -EBUSY;
726 }
727 }
728
Stefan Richter138c8af2006-11-02 21:16:08 +0100729 sbp2_set_busy_timeout(lu);
730 sbp2_agent_reset(lu, 1);
731 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Stefan Richtere8ca5662006-11-02 21:16:08 +0100733 /* Complete any pending commands with busy (so they get retried)
734 * and remove them from our queue. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100735 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Stefan Richter4fc383c2006-08-14 18:46:00 +0200737 /* Accept new commands unless there was another bus reset in the
738 * meantime. */
Stefan Richter138c8af2006-11-02 21:16:08 +0100739 if (hpsb_node_entry_valid(lu->ne)) {
740 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
741 scsi_unblock_requests(lu->shost);
Stefan Richter4fc383c2006-08-14 18:46:00 +0200742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return 0;
744}
745
Stefan Richter138c8af2006-11-02 21:16:08 +0100746static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Stefan Richterca0c7452006-11-02 21:16:08 +0100748 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100749 struct Scsi_Host *shost = NULL;
750 struct sbp2_lu *lu = NULL;
Stefan Richter261b5f62007-08-11 11:52:08 +0200751 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Stefan Richter138c8af2006-11-02 21:16:08 +0100753 lu = kzalloc(sizeof(*lu), GFP_KERNEL);
754 if (!lu) {
755 SBP2_ERR("failed to create lu");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 goto failed_alloc;
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Stefan Richter138c8af2006-11-02 21:16:08 +0100759 lu->ne = ud->ne;
760 lu->ud = ud;
761 lu->speed_code = IEEE1394_SPEED_100;
762 lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
763 lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE;
764 INIT_LIST_HEAD(&lu->cmd_orb_inuse);
765 INIT_LIST_HEAD(&lu->cmd_orb_completed);
766 INIT_LIST_HEAD(&lu->lu_list);
767 spin_lock_init(&lu->cmd_orb_lock);
768 atomic_set(&lu->state, SBP2LU_STATE_RUNNING);
769 INIT_WORK(&lu->protocol_work, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Stefan Richter138c8af2006-11-02 21:16:08 +0100771 ud->device.driver_data = lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
774 if (!hi) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100775 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host,
776 sizeof(*hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (!hi) {
778 SBP2_ERR("failed to allocate hostinfo");
779 goto failed_alloc;
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 hi->host = ud->ne->host;
Stefan Richter138c8af2006-11-02 21:16:08 +0100782 INIT_LIST_HEAD(&hi->logical_units);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
785 /* Handle data movement if physical dma is not
Stefan Richter55664052006-03-28 19:59:42 -0500786 * enabled or not supported on host controller */
787 if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host,
788 &sbp2_physdma_ops,
789 0x0ULL, 0xfffffffcULL)) {
790 SBP2_ERR("failed to register lower 4GB address range");
791 goto failed_alloc;
792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793#endif
794 }
795
Stefan Richter147830f2006-03-28 19:54:52 -0500796 /* Prevent unloading of the 1394 host */
797 if (!try_module_get(hi->host->driver->owner)) {
798 SBP2_ERR("failed to get a reference on 1394 host driver");
799 goto failed_alloc;
800 }
801
Stefan Richter138c8af2006-11-02 21:16:08 +0100802 lu->hi = hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Stefan Richter261b5f62007-08-11 11:52:08 +0200804 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +0100805 list_add_tail(&lu->lu_list, &hi->logical_units);
Stefan Richter261b5f62007-08-11 11:52:08 +0200806 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Stefan Richter35bdddb2006-01-31 00:13:33 -0500808 /* Register the status FIFO address range. We could use the same FIFO
809 * for targets at different nodes. However we need different FIFOs per
Stefan Richtera54c9d32006-05-15 22:09:46 +0200810 * target in order to support multi-unit devices.
811 * The FIFO is located out of the local host controller's physical range
812 * but, if possible, within the posted write area. Status writes will
813 * then be performed as unified transactions. This slightly reduces
814 * bandwidth usage, and some Prolific based devices seem to require it.
815 */
Stefan Richter138c8af2006-11-02 21:16:08 +0100816 lu->status_fifo_addr = hpsb_allocate_and_register_addrspace(
Stefan Richter35bdddb2006-01-31 00:13:33 -0500817 &sbp2_highlevel, ud->ne->host, &sbp2_ops,
818 sizeof(struct sbp2_status_block), sizeof(quadlet_t),
Ben Collins40ae6c52006-06-12 18:13:49 -0400819 ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END);
Stefan Richter138c8af2006-11-02 21:16:08 +0100820 if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) {
Stefan Richter35bdddb2006-01-31 00:13:33 -0500821 SBP2_ERR("failed to allocate status FIFO address range");
822 goto failed_alloc;
823 }
824
Stefan Richter138c8af2006-11-02 21:16:08 +0100825 shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long));
826 if (!shost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 SBP2_ERR("failed to register scsi host");
828 goto failed_alloc;
829 }
830
Stefan Richter138c8af2006-11-02 21:16:08 +0100831 shost->hostdata[0] = (unsigned long)lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Stefan Richter138c8af2006-11-02 21:16:08 +0100833 if (!scsi_add_host(shost, &ud->device)) {
834 lu->shost = shost;
835 return lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
838 SBP2_ERR("failed to add scsi host");
Stefan Richter138c8af2006-11-02 21:16:08 +0100839 scsi_host_put(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841failed_alloc:
Stefan Richter138c8af2006-11-02 21:16:08 +0100842 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return NULL;
844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846static void sbp2_host_reset(struct hpsb_host *host)
847{
Stefan Richterca0c7452006-11-02 21:16:08 +0100848 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +0100849 struct sbp2_lu *lu;
Stefan Richter261b5f62007-08-11 11:52:08 +0200850 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter2cccbb52006-08-14 18:59:00 +0200853 if (!hi)
854 return;
Stefan Richter261b5f62007-08-11 11:52:08 +0200855
856 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +0100857 list_for_each_entry(lu, &hi->logical_units, lu_list)
858 if (likely(atomic_read(&lu->state) !=
Stefan Richter2cccbb52006-08-14 18:59:00 +0200859 SBP2LU_STATE_IN_SHUTDOWN)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100860 atomic_set(&lu->state, SBP2LU_STATE_IN_RESET);
861 scsi_block_requests(lu->shost);
Stefan Richter09ee67a2006-08-14 18:43:00 +0200862 }
Stefan Richter261b5f62007-08-11 11:52:08 +0200863 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Stefan Richter138c8af2006-11-02 21:16:08 +0100866static int sbp2_start_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Stefan Richter138c8af2006-11-02 21:16:08 +0100868 struct sbp2_fwhost_info *hi = lu->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500869 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Stefan Richter97d552e2006-12-29 23:47:04 +0100871 lu->login_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500872 sizeof(struct sbp2_login_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100873 &lu->login_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100874 if (!lu->login_response)
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->query_logins_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500878 sizeof(struct sbp2_query_logins_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100879 &lu->query_logins_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100880 if (!lu->query_logins_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->query_logins_response = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500884 sizeof(struct sbp2_query_logins_response),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100885 &lu->query_logins_response_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100886 if (!lu->query_logins_response)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Stefan Richter97d552e2006-12-29 23:47:04 +0100889 lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500890 sizeof(struct sbp2_reconnect_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100891 &lu->reconnect_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100892 if (!lu->reconnect_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Stefan Richter97d552e2006-12-29 23:47:04 +0100895 lu->logout_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500896 sizeof(struct sbp2_logout_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100897 &lu->logout_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100898 if (!lu->logout_orb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Stefan Richter97d552e2006-12-29 23:47:04 +0100901 lu->login_orb = dma_alloc_coherent(hi->host->device.parent,
Stefan Richtera237f352005-11-07 06:31:39 -0500902 sizeof(struct sbp2_login_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +0100903 &lu->login_orb_dma, GFP_KERNEL);
Stefan Richter138c8af2006-11-02 21:16:08 +0100904 if (!lu->login_orb)
Stefan Richtereaceec72005-12-13 11:05:05 -0500905 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Stefan Richter3d269cb2007-02-04 20:57:38 +0100907 if (sbp2util_create_command_orb_pool(lu))
908 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Stefan Richtere8ca5662006-11-02 21:16:08 +0100910 /* Wait a second before trying to log in. Previously logged in
911 * initiators need a chance to reconnect. */
Stefan Richter902abed2006-08-14 18:56:00 +0200912 if (msleep_interruptible(1000)) {
Stefan Richter138c8af2006-11-02 21:16:08 +0100913 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return -EINTR;
915 }
Stefan Richtera237f352005-11-07 06:31:39 -0500916
Stefan Richter138c8af2006-11-02 21:16:08 +0100917 if (sbp2_login_device(lu)) {
918 sbp2_remove_device(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return -EBUSY;
920 }
921
Stefan Richter138c8af2006-11-02 21:16:08 +0100922 sbp2_set_busy_timeout(lu);
923 sbp2_agent_reset(lu, 1);
924 sbp2_max_speed_and_size(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Stefan Richterd94a9832008-02-03 23:07:44 +0100926 if (lu->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY)
927 ssleep(SBP2_INQUIRY_DELAY);
928
Stefan Richter138c8af2006-11-02 21:16:08 +0100929 error = scsi_add_device(lu->shost, 0, lu->ud->id, 0);
James Bottomley146f7262005-09-10 12:44:09 -0500930 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 SBP2_ERR("scsi_add_device failed");
Stefan Richter138c8af2006-11-02 21:16:08 +0100932 sbp2_logout_device(lu);
933 sbp2_remove_device(lu);
James Bottomley146f7262005-09-10 12:44:09 -0500934 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936
937 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500938
939alloc_fail:
Stefan Richter138c8af2006-11-02 21:16:08 +0100940 SBP2_ERR("Could not allocate memory for lu");
941 sbp2_remove_device(lu);
Stefan Richtereaceec72005-12-13 11:05:05 -0500942 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Stefan Richter138c8af2006-11-02 21:16:08 +0100945static void sbp2_remove_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Stefan Richterca0c7452006-11-02 21:16:08 +0100947 struct sbp2_fwhost_info *hi;
Stefan Richter261b5f62007-08-11 11:52:08 +0200948 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Stefan Richter138c8af2006-11-02 21:16:08 +0100950 if (!lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return;
Stefan Richter138c8af2006-11-02 21:16:08 +0100952 hi = lu->hi;
Stefan Richtera2ee3f92007-08-11 11:51:16 +0200953 if (!hi)
954 goto no_hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Stefan Richter138c8af2006-11-02 21:16:08 +0100956 if (lu->shost) {
957 scsi_remove_host(lu->shost);
958 scsi_host_put(lu->shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
Stefan Richter09ee67a2006-08-14 18:43:00 +0200960 flush_scheduled_work();
Stefan Richtera2ee3f92007-08-11 11:51:16 +0200961 sbp2util_remove_command_orb_pool(lu, hi->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Stefan Richter261b5f62007-08-11 11:52:08 +0200963 write_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +0100964 list_del(&lu->lu_list);
Stefan Richter261b5f62007-08-11 11:52:08 +0200965 write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Stefan Richter138c8af2006-11-02 21:16:08 +0100967 if (lu->login_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_login_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100970 lu->login_response,
971 lu->login_response_dma);
972 if (lu->login_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100973 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 sizeof(struct sbp2_login_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100975 lu->login_orb,
976 lu->login_orb_dma);
977 if (lu->reconnect_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100978 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 sizeof(struct sbp2_reconnect_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100980 lu->reconnect_orb,
981 lu->reconnect_orb_dma);
982 if (lu->logout_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100983 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 sizeof(struct sbp2_logout_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100985 lu->logout_orb,
986 lu->logout_orb_dma);
987 if (lu->query_logins_orb)
Stefan Richter97d552e2006-12-29 23:47:04 +0100988 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 sizeof(struct sbp2_query_logins_orb),
Stefan Richter138c8af2006-11-02 21:16:08 +0100990 lu->query_logins_orb,
991 lu->query_logins_orb_dma);
992 if (lu->query_logins_response)
Stefan Richter97d552e2006-12-29 23:47:04 +0100993 dma_free_coherent(hi->host->device.parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 sizeof(struct sbp2_query_logins_response),
Stefan Richter138c8af2006-11-02 21:16:08 +0100995 lu->query_logins_response,
996 lu->query_logins_response_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Stefan Richter138c8af2006-11-02 21:16:08 +0100998 if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE)
Stefan Richter35bdddb2006-01-31 00:13:33 -0500999 hpsb_unregister_addrspace(&sbp2_highlevel, hi->host,
Stefan Richter138c8af2006-11-02 21:16:08 +01001000 lu->status_fifo_addr);
Stefan Richter35bdddb2006-01-31 00:13:33 -05001001
Stefan Richter138c8af2006-11-02 21:16:08 +01001002 lu->ud->device.driver_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Stefan Richtera2ee3f92007-08-11 11:51:16 +02001004 module_put(hi->host->driver->owner);
1005no_hi:
Stefan Richter138c8af2006-11-02 21:16:08 +01001006 kfree(lu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1010/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001011 * Deal with write requests on adapters which do not support physical DMA or
1012 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 */
Stefan Richtera237f352005-11-07 06:31:39 -05001014static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1015 int destid, quadlet_t *data, u64 addr,
1016 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Stefan Richtera237f352005-11-07 06:31:39 -05001018 memcpy(bus_to_virt((u32) addr), data, length);
Stefan Richtera237f352005-11-07 06:31:39 -05001019 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001023 * Deal with read requests on adapters which do not support physical DMA or
1024 * have it switched off.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
Stefan Richtera237f352005-11-07 06:31:39 -05001026static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1027 quadlet_t *data, u64 addr, size_t length,
1028 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Stefan Richtera237f352005-11-07 06:31:39 -05001030 memcpy(data, bus_to_virt((u32) addr), length);
Stefan Richtera237f352005-11-07 06:31:39 -05001031 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033#endif
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035/**************************************
1036 * SBP-2 protocol related section
1037 **************************************/
1038
Stefan Richter138c8af2006-11-02 21:16:08 +01001039static int sbp2_query_logins(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Stefan Richter138c8af2006-11-02 21:16:08 +01001041 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 quadlet_t data[2];
1043 int max_logins;
1044 int active_logins;
1045
Stefan Richter138c8af2006-11-02 21:16:08 +01001046 lu->query_logins_orb->reserved1 = 0x0;
1047 lu->query_logins_orb->reserved2 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Stefan Richter138c8af2006-11-02 21:16:08 +01001049 lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma;
1050 lu->query_logins_orb->query_response_hi =
1051 ORB_SET_NODE_ID(hi->host->node_id);
1052 lu->query_logins_orb->lun_misc =
1053 ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1054 lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
1055 lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Stefan Richter138c8af2006-11-02 21:16:08 +01001057 lu->query_logins_orb->reserved_resp_length =
1058 ORB_SET_QUERY_LOGINS_RESP_LENGTH(
1059 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Stefan Richter138c8af2006-11-02 21:16:08 +01001061 lu->query_logins_orb->status_fifo_hi =
1062 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1063 lu->query_logins_orb->status_fifo_lo =
1064 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Stefan Richter138c8af2006-11-02 21:16:08 +01001066 sbp2util_cpu_to_be32_buffer(lu->query_logins_orb,
1067 sizeof(struct sbp2_query_logins_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Stefan Richter138c8af2006-11-02 21:16:08 +01001069 memset(lu->query_logins_response, 0,
1070 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001073 data[1] = lu->query_logins_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 sbp2util_cpu_to_be32_buffer(data, 8);
1075
Stefan Richter138c8af2006-11-02 21:16:08 +01001076 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Stefan Richter138c8af2006-11-02 21:16:08 +01001078 if (sbp2util_access_timeout(lu, 2*HZ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001080 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082
Stefan Richter138c8af2006-11-02 21:16:08 +01001083 if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001085 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
Stefan Richter138c8af2006-11-02 21:16:08 +01001088 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001089 SBP2_INFO("Error querying logins to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001090 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
Stefan Richter138c8af2006-11-02 21:16:08 +01001093 sbp2util_cpu_to_be32_buffer(lu->query_logins_response,
1094 sizeof(struct sbp2_query_logins_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Stefan Richter138c8af2006-11-02 21:16:08 +01001096 max_logins = RESPONSE_GET_MAX_LOGINS(
1097 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001098 SBP2_INFO("Maximum concurrent logins supported: %d", max_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Stefan Richter138c8af2006-11-02 21:16:08 +01001100 active_logins = RESPONSE_GET_ACTIVE_LOGINS(
1101 lu->query_logins_response->length_max_logins);
Ben Collins20f45782006-06-12 18:13:11 -04001102 SBP2_INFO("Number of active logins: %d", active_logins);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001105 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107
1108 return 0;
1109}
1110
Stefan Richter138c8af2006-11-02 21:16:08 +01001111static int sbp2_login_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Stefan Richter138c8af2006-11-02 21:16:08 +01001113 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 quadlet_t data[2];
1115
Stefan Richter138c8af2006-11-02 21:16:08 +01001116 if (!lu->login_orb)
Stefan Richtera237f352005-11-07 06:31:39 -05001117 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Stefan Richter138c8af2006-11-02 21:16:08 +01001119 if (!sbp2_exclusive_login && sbp2_query_logins(lu)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001120 SBP2_INFO("Device does not support any more concurrent logins");
1121 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123
Stefan Richtere8ca5662006-11-02 21:16:08 +01001124 /* assume no password */
Stefan Richter138c8af2006-11-02 21:16:08 +01001125 lu->login_orb->password_hi = 0;
1126 lu->login_orb->password_lo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Stefan Richter138c8af2006-11-02 21:16:08 +01001128 lu->login_orb->login_response_lo = lu->login_response_dma;
1129 lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1130 lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001131
1132 /* one second reconnect time */
Stefan Richter138c8af2006-11-02 21:16:08 +01001133 lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0);
1134 lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login);
1135 lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1);
1136 lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Stefan Richter138c8af2006-11-02 21:16:08 +01001138 lu->login_orb->passwd_resp_lengths =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Stefan Richter138c8af2006-11-02 21:16:08 +01001141 lu->login_orb->status_fifo_hi =
1142 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1143 lu->login_orb->status_fifo_lo =
1144 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Stefan Richter138c8af2006-11-02 21:16:08 +01001146 sbp2util_cpu_to_be32_buffer(lu->login_orb,
1147 sizeof(struct sbp2_login_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Stefan Richter138c8af2006-11-02 21:16:08 +01001149 memset(lu->login_response, 0, sizeof(struct sbp2_login_response));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001152 data[1] = lu->login_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 sbp2util_cpu_to_be32_buffer(data, 8);
1154
Stefan Richter138c8af2006-11-02 21:16:08 +01001155 hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Stefan Richtere8ca5662006-11-02 21:16:08 +01001157 /* wait up to 20 seconds for login status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001158 if (sbp2util_access_timeout(lu, 20*HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001159 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001160 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162
Stefan Richtere8ca5662006-11-02 21:16:08 +01001163 /* make sure that the returned status matches the login ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001164 if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001165 SBP2_ERR("Error logging into SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001166 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168
Stefan Richter138c8af2006-11-02 21:16:08 +01001169 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001170 SBP2_ERR("Error logging into SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001171 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173
Stefan Richter138c8af2006-11-02 21:16:08 +01001174 sbp2util_cpu_to_be32_buffer(lu->login_response,
1175 sizeof(struct sbp2_login_response));
1176 lu->command_block_agent_addr =
1177 ((u64)lu->login_response->command_block_agent_hi) << 32;
1178 lu->command_block_agent_addr |=
1179 ((u64)lu->login_response->command_block_agent_lo);
1180 lu->command_block_agent_addr &= 0x0000ffffffffffffULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 SBP2_INFO("Logged into SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
Stefan Richter138c8af2006-11-02 21:16:08 +01001186static int sbp2_logout_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Stefan Richter138c8af2006-11-02 21:16:08 +01001188 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 quadlet_t data[2];
1190 int error;
1191
Stefan Richter138c8af2006-11-02 21:16:08 +01001192 lu->logout_orb->reserved1 = 0x0;
1193 lu->logout_orb->reserved2 = 0x0;
1194 lu->logout_orb->reserved3 = 0x0;
1195 lu->logout_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Stefan Richter138c8af2006-11-02 21:16:08 +01001197 lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1198 lu->logout_orb->login_ID_misc |=
1199 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1200 lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Stefan Richter138c8af2006-11-02 21:16:08 +01001202 lu->logout_orb->reserved5 = 0x0;
1203 lu->logout_orb->status_fifo_hi =
1204 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1205 lu->logout_orb->status_fifo_lo =
1206 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Stefan Richter138c8af2006-11-02 21:16:08 +01001208 sbp2util_cpu_to_be32_buffer(lu->logout_orb,
1209 sizeof(struct sbp2_logout_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001212 data[1] = lu->logout_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 sbp2util_cpu_to_be32_buffer(data, 8);
1214
Stefan Richter138c8af2006-11-02 21:16:08 +01001215 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (error)
1217 return error;
1218
Stefan Richtere8ca5662006-11-02 21:16:08 +01001219 /* wait up to 1 second for the device to complete logout */
Stefan Richter138c8af2006-11-02 21:16:08 +01001220 if (sbp2util_access_timeout(lu, HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return -EIO;
1222
1223 SBP2_INFO("Logged out of SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Stefan Richter138c8af2006-11-02 21:16:08 +01001227static int sbp2_reconnect_device(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Stefan Richter138c8af2006-11-02 21:16:08 +01001229 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 quadlet_t data[2];
1231 int error;
1232
Stefan Richter138c8af2006-11-02 21:16:08 +01001233 lu->reconnect_orb->reserved1 = 0x0;
1234 lu->reconnect_orb->reserved2 = 0x0;
1235 lu->reconnect_orb->reserved3 = 0x0;
1236 lu->reconnect_orb->reserved4 = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Stefan Richter138c8af2006-11-02 21:16:08 +01001238 lu->reconnect_orb->login_ID_misc =
1239 ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1240 lu->reconnect_orb->login_ID_misc |=
1241 ORB_SET_LOGIN_ID(lu->login_response->length_login_ID);
1242 lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Stefan Richter138c8af2006-11-02 21:16:08 +01001244 lu->reconnect_orb->reserved5 = 0x0;
1245 lu->reconnect_orb->status_fifo_hi =
1246 ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id);
1247 lu->reconnect_orb->status_fifo_lo =
1248 ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Stefan Richter138c8af2006-11-02 21:16:08 +01001250 sbp2util_cpu_to_be32_buffer(lu->reconnect_orb,
1251 sizeof(struct sbp2_reconnect_orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001254 data[1] = lu->reconnect_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 sbp2util_cpu_to_be32_buffer(data, 8);
1256
Stefan Richter138c8af2006-11-02 21:16:08 +01001257 error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (error)
1259 return error;
1260
Stefan Richtere8ca5662006-11-02 21:16:08 +01001261 /* wait up to 1 second for reconnect status */
Stefan Richter138c8af2006-11-02 21:16:08 +01001262 if (sbp2util_access_timeout(lu, HZ)) {
Stefan Richtere8398bb2006-07-23 22:19:00 +02001263 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001264 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266
Stefan Richtere8ca5662006-11-02 21:16:08 +01001267 /* make sure that the returned status matches the reconnect ORB */
Stefan Richter138c8af2006-11-02 21:16:08 +01001268 if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) {
Stefan Richter60657722006-07-23 22:18:00 +02001269 SBP2_ERR("Error reconnecting to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001270 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272
Stefan Richter138c8af2006-11-02 21:16:08 +01001273 if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) {
Stefan Richter60657722006-07-23 22:18:00 +02001274 SBP2_ERR("Error reconnecting to SBP-2 device - failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001275 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Stefan Richter35644092006-11-02 21:16:08 +01001278 SBP2_INFO("Reconnected to SBP-2 device");
Stefan Richtera237f352005-11-07 06:31:39 -05001279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001283 * Set the target node's Single Phase Retry limit. Affects the target's retry
1284 * behaviour if our node is too busy to accept requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001286static int sbp2_set_busy_timeout(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 quadlet_t data;
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001291 if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4))
Stefan Richterd024ebc2006-03-28 20:03:55 -05001292 SBP2_ERR("%s error", __FUNCTION__);
Stefan Richtera237f352005-11-07 06:31:39 -05001293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
Stefan Richter138c8af2006-11-02 21:16:08 +01001296static void sbp2_parse_unit_directory(struct sbp2_lu *lu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 struct unit_directory *ud)
1298{
1299 struct csr1212_keyval *kv;
1300 struct csr1212_dentry *dentry;
1301 u64 management_agent_addr;
Stefan Richter9117c6d2006-11-02 21:16:08 +01001302 u32 unit_characteristics, firmware_revision;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001303 unsigned workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 int i;
1305
Stefan Richter9117c6d2006-11-02 21:16:08 +01001306 management_agent_addr = 0;
1307 unit_characteristics = 0;
1308 firmware_revision = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1311 switch (kv->key.id) {
1312 case CSR1212_KV_ID_DEPENDENT_INFO:
Stefan Richteredf1fb22006-11-02 21:16:08 +01001313 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001315 CSR1212_REGISTER_SPACE_BASE +
1316 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Stefan Richteredf1fb22006-11-02 21:16:08 +01001318 else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE)
Stefan Richter138c8af2006-11-02 21:16:08 +01001319 lu->lun = ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 break;
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 case SBP2_UNIT_CHARACTERISTICS_KEY:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001323 /* FIXME: This is ignored so far.
1324 * See SBP-2 clause 7.4.8. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 unit_characteristics = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
1327
1328 case SBP2_FIRMWARE_REVISION_KEY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 firmware_revision = kv->value.immediate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 break;
1331
1332 default:
Stefan Richtere8ca5662006-11-02 21:16:08 +01001333 /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY.
1334 * Its "ordered" bit has consequences for command ORB
1335 * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
1337 }
1338 }
1339
Stefan Richter24d3bf82006-05-15 22:04:59 +02001340 workarounds = sbp2_default_workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Stefan Richter679c0cd2006-05-15 22:08:09 +02001342 if (!(workarounds & SBP2_WORKAROUND_OVERRIDE))
1343 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
Stefan Richter4618fd32006-12-30 15:37:09 +01001344 if (sbp2_workarounds_table[i].firmware_revision !=
1345 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001346 sbp2_workarounds_table[i].firmware_revision !=
1347 (firmware_revision & 0xffff00))
1348 continue;
Stefan Richter4618fd32006-12-30 15:37:09 +01001349 if (sbp2_workarounds_table[i].model_id !=
1350 SBP2_ROM_VALUE_WILDCARD &&
Stefan Richter679c0cd2006-05-15 22:08:09 +02001351 sbp2_workarounds_table[i].model_id != ud->model_id)
1352 continue;
1353 workarounds |= sbp2_workarounds_table[i].workarounds;
1354 break;
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Stefan Richter24d3bf82006-05-15 22:04:59 +02001357 if (workarounds)
Stefan Richtere9a1c522006-05-15 22:06:37 +02001358 SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x "
1359 "(firmware_revision 0x%06x, vendor_id 0x%06x,"
1360 " model_id 0x%06x)",
Stefan Richter24d3bf82006-05-15 22:04:59 +02001361 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richtere9a1c522006-05-15 22:06:37 +02001362 workarounds, firmware_revision,
1363 ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id,
1364 ud->model_id);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001365
1366 /* We would need one SCSI host template for each target to adjust
1367 * max_sectors on the fly, therefore warn only. */
1368 if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS &&
Stefan Richterca0c7452006-11-02 21:16:08 +01001369 (sbp2_max_sectors * 512) > (128 * 1024))
Stefan Richter35644092006-11-02 21:16:08 +01001370 SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB "
Stefan Richter24d3bf82006-05-15 22:04:59 +02001371 "max transfer size. WARNING: Current max_sectors "
1372 "setting is larger than 128KB (%d sectors)",
1373 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid),
Stefan Richterca0c7452006-11-02 21:16:08 +01001374 sbp2_max_sectors);
Stefan Richter24d3bf82006-05-15 22:04:59 +02001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* If this is a logical unit directory entry, process the parent
1377 * to get the values. */
1378 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001379 struct unit_directory *parent_ud = container_of(
1380 ud->device.parent, struct unit_directory, device);
1381 sbp2_parse_unit_directory(lu, parent_ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 } else {
Stefan Richter138c8af2006-11-02 21:16:08 +01001383 lu->management_agent_addr = management_agent_addr;
1384 lu->workarounds = workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Stefan Richter138c8af2006-11-02 21:16:08 +01001386 lu->lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388}
1389
Ben Collinsfd23ade2006-06-12 18:14:14 -04001390#define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2))
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392/*
1393 * This function is called in order to determine the max speed and packet
1394 * size we can use in our ORBs. Note, that we (the driver and host) only
1395 * initiate the transaction. The SBP-2 device actually transfers the data
1396 * (by reading from the DMA area we tell it). This means that the SBP-2
1397 * device decides the actual maximum data it can transfer. We just tell it
1398 * the speed that it needs to use, and the max_rec the host supports, and
1399 * it takes care of the rest.
1400 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001401static int sbp2_max_speed_and_size(struct sbp2_lu *lu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Stefan Richter138c8af2006-11-02 21:16:08 +01001403 struct sbp2_fwhost_info *hi = lu->hi;
Ben Collinsfd23ade2006-06-12 18:14:14 -04001404 u8 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Stefan Richter138c8af2006-11-02 21:16:08 +01001406 lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Stefan Richter138c8af2006-11-02 21:16:08 +01001408 if (lu->speed_code > sbp2_max_speed) {
1409 lu->speed_code = sbp2_max_speed;
Stefan Richterca0c7452006-11-02 21:16:08 +01001410 SBP2_INFO("Reducing speed to %s",
1411 hpsb_speedto_str[sbp2_max_speed]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
1414 /* Payload size is the lesser of what our speed supports and what
1415 * our host supports. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001416 payload = min(sbp2_speedto_max_payload[lu->speed_code],
Ben Collinsfd23ade2006-06-12 18:14:14 -04001417 (u8) (hi->host->csr.max_rec - 1));
1418
1419 /* If physical DMA is off, work around limitation in ohci1394:
1420 * packet size must not exceed PAGE_SIZE */
Stefan Richter138c8af2006-11-02 21:16:08 +01001421 if (lu->ne->host->low_addr_space < (1ULL << 32))
Ben Collinsfd23ade2006-06-12 18:14:14 -04001422 while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE &&
1423 payload)
1424 payload--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Stefan Richter35644092006-11-02 21:16:08 +01001426 SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
Stefan Richter138c8af2006-11-02 21:16:08 +01001427 NODE_BUS_ARGS(hi->host, lu->ne->nodeid),
1428 hpsb_speedto_str[lu->speed_code],
Stefan Richter35644092006-11-02 21:16:08 +01001429 SBP2_PAYLOAD_TO_BYTES(payload));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Stefan Richter138c8af2006-11-02 21:16:08 +01001431 lu->max_payload_size = payload;
Stefan Richtera237f352005-11-07 06:31:39 -05001432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
Stefan Richter138c8af2006-11-02 21:16:08 +01001435static int sbp2_agent_reset(struct sbp2_lu *lu, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 quadlet_t data;
1438 u64 addr;
1439 int retval;
Stefan Richtercc078182006-07-23 22:12:00 +02001440 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Stefan Richterec9b7e12006-12-07 23:23:25 +01001442 /* flush lu->protocol_work */
Stefan Richter09ee67a2006-08-14 18:43:00 +02001443 if (wait)
1444 flush_scheduled_work();
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 data = ntohl(SBP2_AGENT_RESET_DATA);
Stefan Richter138c8af2006-11-02 21:16:08 +01001447 addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 if (wait)
Stefan Richter138c8af2006-11-02 21:16:08 +01001450 retval = hpsb_node_write(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001452 retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 if (retval < 0) {
1455 SBP2_ERR("hpsb_node_write failed.\n");
1456 return -EIO;
1457 }
1458
Stefan Richtere8ca5662006-11-02 21:16:08 +01001459 /* make sure that the ORB_POINTER is written on next command */
Stefan Richter138c8af2006-11-02 21:16:08 +01001460 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1461 lu->last_orb = NULL;
1462 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Stefan Richtera237f352005-11-07 06:31:39 -05001464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001467static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
Stefan Richterca0c7452006-11-02 21:16:08 +01001468 struct sbp2_fwhost_info *hi,
Stefan Richter138c8af2006-11-02 21:16:08 +01001469 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001470 unsigned int scsi_use_sg,
Stefan Richter825f1df2007-11-04 14:59:24 +01001471 struct scatterlist *sg,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001472 u32 orb_direction,
1473 enum dma_data_direction dma_dir)
1474{
Stefan Richter138c8af2006-11-02 21:16:08 +01001475 cmd->dma_dir = dma_dir;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001476 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1477 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1478
Stefan Richtere8ca5662006-11-02 21:16:08 +01001479 /* special case if only one element (and less than 64KB in size) */
Stefan Richter5fcf5002008-02-01 22:31:10 +01001480 if (scsi_use_sg == 1 && sg->length <= SBP2_MAX_SG_ELEMENT_LENGTH) {
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001481
Stefan Richter5fcf5002008-02-01 22:31:10 +01001482 cmd->dma_size = sg->length;
Stefan Richter138c8af2006-11-02 21:16:08 +01001483 cmd->dma_type = CMD_DMA_PAGE;
Stefan Richter97d552e2006-12-29 23:47:04 +01001484 cmd->cmd_dma = dma_map_page(hi->host->device.parent,
Stefan Richter825f1df2007-11-04 14:59:24 +01001485 sg_page(sg), sg->offset,
Stefan Richter138c8af2006-11-02 21:16:08 +01001486 cmd->dma_size, cmd->dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001487
Stefan Richter138c8af2006-11-02 21:16:08 +01001488 orb->data_descriptor_lo = cmd->cmd_dma;
1489 orb->misc |= ORB_SET_DATA_SIZE(cmd->dma_size);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001490
1491 } else {
1492 struct sbp2_unrestricted_page_table *sg_element =
Stefan Richter138c8af2006-11-02 21:16:08 +01001493 &cmd->scatter_gather_element[0];
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001494 u32 sg_count, sg_len;
1495 dma_addr_t sg_addr;
Stefan Richter825f1df2007-11-04 14:59:24 +01001496 int i, count = dma_map_sg(hi->host->device.parent, sg,
Stefan Richter97d552e2006-12-29 23:47:04 +01001497 scsi_use_sg, dma_dir);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001498
Stefan Richter138c8af2006-11-02 21:16:08 +01001499 cmd->dma_size = scsi_use_sg;
Stefan Richter825f1df2007-11-04 14:59:24 +01001500 cmd->sge_buffer = sg;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001501
1502 /* use page tables (s/g) */
1503 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
Stefan Richter138c8af2006-11-02 21:16:08 +01001504 orb->data_descriptor_lo = cmd->sge_dma;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001505
Stefan Richtere8ca5662006-11-02 21:16:08 +01001506 /* loop through and fill out our SBP-2 page tables
1507 * (and split up anything too large) */
Stefan Richter825f1df2007-11-04 14:59:24 +01001508 for (i = 0, sg_count = 0; i < count; i++, sg = sg_next(sg)) {
1509 sg_len = sg_dma_len(sg);
1510 sg_addr = sg_dma_address(sg);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001511 while (sg_len) {
1512 sg_element[sg_count].segment_base_lo = sg_addr;
1513 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1514 sg_element[sg_count].length_segment_base_hi =
1515 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1516 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1517 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1518 } else {
1519 sg_element[sg_count].length_segment_base_hi =
1520 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1521 sg_len = 0;
1522 }
1523 sg_count++;
1524 }
1525 }
1526
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001527 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1528
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001529 sbp2util_cpu_to_be32_buffer(sg_element,
Stefan Richter138c8af2006-11-02 21:16:08 +01001530 (sizeof(struct sbp2_unrestricted_page_table)) *
1531 sg_count);
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001532 }
1533}
1534
Stefan Richter138c8af2006-11-02 21:16:08 +01001535static void sbp2_create_command_orb(struct sbp2_lu *lu,
1536 struct sbp2_command_info *cmd,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001537 unchar *scsi_cmd,
1538 unsigned int scsi_use_sg,
1539 unsigned int scsi_request_bufflen,
Stefan Richter825f1df2007-11-04 14:59:24 +01001540 struct scatterlist *sg,
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001541 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Stefan Richter138c8af2006-11-02 21:16:08 +01001543 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001544 struct sbp2_command_orb *orb = &cmd->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001545 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 /*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001548 * Set-up our command ORB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 *
1550 * NOTE: We're doing unrestricted page tables (s/g), as this is
1551 * best performance (at least with the devices I have). This means
1552 * that data_size becomes the number of s/g elements, and
1553 * page_size should be zero (for unrestricted).
1554 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001555 orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1556 orb->next_ORB_lo = 0x0;
1557 orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size);
1558 orb->misc |= ORB_SET_SPEED(lu->speed_code);
1559 orb->misc |= ORB_SET_NOTIFY(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Stefan Richter43863eb2005-12-12 23:03:24 -05001561 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001562 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001563 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001564 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001565 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001566 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001567 else {
Stefan Richter35644092006-11-02 21:16:08 +01001568 SBP2_INFO("Falling back to DMA_NONE");
Stefan Richter43863eb2005-12-12 23:03:24 -05001569 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
Stefan Richtere8ca5662006-11-02 21:16:08 +01001572 /* set up our page table stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Stefan Richter138c8af2006-11-02 21:16:08 +01001574 orb->data_descriptor_hi = 0x0;
1575 orb->data_descriptor_lo = 0x0;
1576 orb->misc |= ORB_SET_DIRECTION(1);
FUJITA Tomonorid7dea2c2007-05-14 20:00:04 +09001577 } else
Stefan Richter825f1df2007-11-04 14:59:24 +01001578 sbp2_prep_command_orb_sg(orb, hi, cmd, scsi_use_sg, sg,
Stefan Richter138c8af2006-11-02 21:16:08 +01001579 orb_direction, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Stefan Richter138c8af2006-11-02 21:16:08 +01001581 sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Stefan Richter138c8af2006-11-02 21:16:08 +01001583 memset(orb->cdb, 0, 12);
1584 memcpy(orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
Stefan Richter138c8af2006-11-02 21:16:08 +01001587static void sbp2_link_orb_command(struct sbp2_lu *lu,
1588 struct sbp2_command_info *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Stefan Richter138c8af2006-11-02 21:16:08 +01001590 struct sbp2_fwhost_info *hi = lu->hi;
Stefan Richtercc078182006-07-23 22:12:00 +02001591 struct sbp2_command_orb *last_orb;
1592 dma_addr_t last_orb_dma;
Stefan Richter138c8af2006-11-02 21:16:08 +01001593 u64 addr = lu->command_block_agent_addr;
Stefan Richtercc078182006-07-23 22:12:00 +02001594 quadlet_t data[2];
1595 size_t length;
1596 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Stefan Richter97d552e2006-12-29 23:47:04 +01001598 dma_sync_single_for_device(hi->host->device.parent,
1599 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001600 sizeof(struct sbp2_command_orb),
1601 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001602 dma_sync_single_for_device(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001603 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001604 DMA_TO_DEVICE);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001605
1606 /* check to see if there are any previous orbs to use */
Stefan Richter138c8af2006-11-02 21:16:08 +01001607 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1608 last_orb = lu->last_orb;
1609 last_orb_dma = lu->last_orb_dma;
Stefan Richtercc078182006-07-23 22:12:00 +02001610 if (!last_orb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001612 * last_orb == NULL means: We know that the target's fetch agent
1613 * is not active right now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 */
Stefan Richtercc078182006-07-23 22:12:00 +02001615 addr += SBP2_ORB_POINTER_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
Stefan Richter138c8af2006-11-02 21:16:08 +01001617 data[1] = cmd->command_orb_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 sbp2util_cpu_to_be32_buffer(data, 8);
Stefan Richtercc078182006-07-23 22:12:00 +02001619 length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 /*
Stefan Richtercc078182006-07-23 22:12:00 +02001622 * last_orb != NULL means: We know that the target's fetch agent
1623 * is (very probably) not dead or in reset state right now.
1624 * We have an ORB already sent that we can append a new one to.
1625 * The target's fetch agent may or may not have read this
1626 * previous ORB yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 */
Stefan Richter97d552e2006-12-29 23:47:04 +01001628 dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001629 sizeof(struct sbp2_command_orb),
1630 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001631 last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma);
Stefan Richtercc078182006-07-23 22:12:00 +02001632 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 /* Tells hardware that this pointer is valid */
Stefan Richtercc078182006-07-23 22:12:00 +02001634 last_orb->next_ORB_hi = 0;
Stefan Richter97d552e2006-12-29 23:47:04 +01001635 dma_sync_single_for_device(hi->host->device.parent,
1636 last_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001637 sizeof(struct sbp2_command_orb),
1638 DMA_TO_DEVICE);
Stefan Richtercc078182006-07-23 22:12:00 +02001639 addr += SBP2_DOORBELL_OFFSET;
1640 data[0] = 0;
1641 length = 4;
1642 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001643 lu->last_orb = &cmd->command_orb;
1644 lu->last_orb_dma = cmd->command_orb_dma;
1645 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Stefan Richter138c8af2006-11-02 21:16:08 +01001647 if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) {
Stefan Richter09ee67a2006-08-14 18:43:00 +02001648 /*
1649 * sbp2util_node_write_no_wait failed. We certainly ran out
1650 * of transaction labels, perhaps just because there were no
1651 * context switches which gave khpsbpkt a chance to collect
1652 * free tlabels. Try again in non-atomic context. If necessary,
1653 * the workqueue job will sleep to guaranteedly get a tlabel.
1654 * We do not accept new commands until the job is over.
1655 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001656 scsi_block_requests(lu->shost);
1657 PREPARE_WORK(&lu->protocol_work,
Stefan Richter09ee67a2006-08-14 18:43:00 +02001658 last_orb ? sbp2util_write_doorbell:
Stefan Richterec9b7e12006-12-07 23:23:25 +01001659 sbp2util_write_orb_pointer);
Stefan Richter138c8af2006-11-02 21:16:08 +01001660 schedule_work(&lu->protocol_work);
Stefan Richter09ee67a2006-08-14 18:43:00 +02001661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662}
1663
Stefan Richter138c8af2006-11-02 21:16:08 +01001664static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 void (*done)(struct scsi_cmnd *))
1666{
Stefan Richter138c8af2006-11-02 21:16:08 +01001667 unchar *scsi_cmd = (unchar *)SCpnt->cmnd;
Stefan Richter138c8af2006-11-02 21:16:08 +01001668 struct sbp2_command_info *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Stefan Richter138c8af2006-11-02 21:16:08 +01001670 cmd = sbp2util_allocate_command_orb(lu, SCpnt, done);
1671 if (!cmd)
Stefan Richtera237f352005-11-07 06:31:39 -05001672 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
FUJITA Tomonorid7dea2c2007-05-14 20:00:04 +09001674 sbp2_create_command_orb(lu, cmd, scsi_cmd, scsi_sg_count(SCpnt),
Stefan Richter825f1df2007-11-04 14:59:24 +01001675 scsi_bufflen(SCpnt), scsi_sglist(SCpnt),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 SCpnt->sc_data_direction);
Stefan Richter138c8af2006-11-02 21:16:08 +01001677 sbp2_link_orb_command(lu, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Stefan Richtera237f352005-11-07 06:31:39 -05001679 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * Translates SBP-2 status into SCSI sense data for check conditions
1684 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001685static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
1686 unchar *sense_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Stefan Richtere8ca5662006-11-02 21:16:08 +01001688 /* OK, it's pretty ugly... ;-) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 sense_data[0] = 0x70;
1690 sense_data[1] = 0x0;
1691 sense_data[2] = sbp2_status[9];
1692 sense_data[3] = sbp2_status[12];
1693 sense_data[4] = sbp2_status[13];
1694 sense_data[5] = sbp2_status[14];
1695 sense_data[6] = sbp2_status[15];
1696 sense_data[7] = 10;
1697 sense_data[8] = sbp2_status[16];
1698 sense_data[9] = sbp2_status[17];
1699 sense_data[10] = sbp2_status[18];
1700 sense_data[11] = sbp2_status[19];
1701 sense_data[12] = sbp2_status[10];
1702 sense_data[13] = sbp2_status[11];
1703 sense_data[14] = sbp2_status[20];
1704 sense_data[15] = sbp2_status[21];
1705
Stefan Richtere8ca5662006-11-02 21:16:08 +01001706 return sbp2_status[8] & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Stefan Richter3e98eab42006-07-23 22:16:00 +02001709static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid,
1710 int destid, quadlet_t *data, u64 addr,
1711 size_t length, u16 fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Stefan Richterca0c7452006-11-02 21:16:08 +01001713 struct sbp2_fwhost_info *hi;
Stefan Richter138c8af2006-11-02 21:16:08 +01001714 struct sbp2_lu *lu = NULL, *lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 struct scsi_cmnd *SCpnt = NULL;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001716 struct sbp2_status_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
Stefan Richter138c8af2006-11-02 21:16:08 +01001718 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001719 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Stefan Richter60657722006-07-23 22:18:00 +02001721 if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) {
1722 SBP2_ERR("Wrong size of status block");
1723 return RCODE_ADDRESS_ERROR;
1724 }
1725 if (unlikely(!host)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001727 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
Stefan Richter60657722006-07-23 22:18:00 +02001730 if (unlikely(!hi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05001732 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001734
1735 /* Find the unit which wrote the status. */
Stefan Richter261b5f62007-08-11 11:52:08 +02001736 read_lock_irqsave(&sbp2_hi_logical_units_lock, flags);
Stefan Richter138c8af2006-11-02 21:16:08 +01001737 list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) {
1738 if (lu_tmp->ne->nodeid == nodeid &&
1739 lu_tmp->status_fifo_addr == addr) {
1740 lu = lu_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 break;
1742 }
1743 }
Stefan Richter261b5f62007-08-11 11:52:08 +02001744 read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags);
1745
Stefan Richter138c8af2006-11-02 21:16:08 +01001746 if (unlikely(!lu)) {
1747 SBP2_ERR("lu is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05001748 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750
Stefan Richter138c8af2006-11-02 21:16:08 +01001751 /* Put response into lu status fifo buffer. The first two bytes
Stefan Richter3e98eab42006-07-23 22:16:00 +02001752 * come in big endian bit order. Often the target writes only a
1753 * truncated status block, minimally the first two quadlets. The rest
Stefan Richtere8ca5662006-11-02 21:16:08 +01001754 * is implied to be zeros. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001755 sb = &lu->status_block;
Stefan Richter3e98eab42006-07-23 22:16:00 +02001756 memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent));
1757 memcpy(sb, data, length);
1758 sbp2util_be32_to_cpu_buffer(sb, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Stefan Richtere8ca5662006-11-02 21:16:08 +01001760 /* Ignore unsolicited status. Handle command ORB status. */
Stefan Richter60657722006-07-23 22:18:00 +02001761 if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2))
Stefan Richter138c8af2006-11-02 21:16:08 +01001762 cmd = NULL;
Stefan Richter60657722006-07-23 22:18:00 +02001763 else
Stefan Richter138c8af2006-11-02 21:16:08 +01001764 cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo);
1765 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01001766 dma_sync_single_for_cpu(hi->host->device.parent,
1767 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001768 sizeof(struct sbp2_command_orb),
1769 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001770 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001771 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001772 DMA_TO_DEVICE);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001773 /* Grab SCSI command pointers and check status. */
Stefan Richter60657722006-07-23 22:18:00 +02001774 /*
1775 * FIXME: If the src field in the status is 1, the ORB DMA must
1776 * not be reused until status for a subsequent ORB is received.
1777 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001778 SCpnt = cmd->Current_SCpnt;
1779 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1780 sbp2util_mark_command_completed(lu, cmd);
1781 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 if (SCpnt) {
Stefan Richterabbca102006-08-14 18:51:00 +02001784 u32 h = sb->ORB_offset_hi_misc;
1785 u32 r = STATUS_GET_RESP(h);
1786
1787 if (r != RESP_STATUS_REQUEST_COMPLETE) {
Stefan Richter35644092006-11-02 21:16:08 +01001788 SBP2_INFO("resp 0x%x, sbp_status 0x%x",
Stefan Richterabbca102006-08-14 18:51:00 +02001789 r, STATUS_GET_SBP_STATUS(h));
Stefan Richter60657722006-07-23 22:18:00 +02001790 scsi_status =
Stefan Richterabbca102006-08-14 18:51:00 +02001791 r == RESP_STATUS_TRANSPORT_FAILURE ?
1792 SBP2_SCSI_STATUS_BUSY :
Stefan Richter60657722006-07-23 22:18:00 +02001793 SBP2_SCSI_STATUS_COMMAND_TERMINATED;
Stefan Richterabbca102006-08-14 18:51:00 +02001794 }
Stefan Richtere8ca5662006-11-02 21:16:08 +01001795
Stefan Richteredf1fb22006-11-02 21:16:08 +01001796 if (STATUS_GET_LEN(h) > 1)
Stefan Richter3e98eab42006-07-23 22:16:00 +02001797 scsi_status = sbp2_status_to_sense_data(
1798 (unchar *)sb, SCpnt->sense_buffer);
Stefan Richtere8ca5662006-11-02 21:16:08 +01001799
Stefan Richteredf1fb22006-11-02 21:16:08 +01001800 if (STATUS_TEST_DEAD(h))
Stefan Richter138c8af2006-11-02 21:16:08 +01001801 sbp2_agent_reset(lu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Stefan Richtere8ca5662006-11-02 21:16:08 +01001804 /* Check here to see if there are no commands in-use. If there
Stefan Richtercc078182006-07-23 22:12:00 +02001805 * are none, we know that the fetch agent left the active state
1806 * _and_ that we did not reactivate it yet. Therefore clear
1807 * last_orb so that next time we write directly to the
1808 * ORB_POINTER register. That way the fetch agent does not need
Stefan Richtere8ca5662006-11-02 21:16:08 +01001809 * to refetch the next_ORB. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001810 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1811 if (list_empty(&lu->cmd_orb_inuse))
1812 lu->last_orb = NULL;
1813 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 } else {
Stefan Richtere8ca5662006-11-02 21:16:08 +01001816 /* It's probably status after a management request. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001817 if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) ||
1818 (sb->ORB_offset_lo == lu->login_orb_dma) ||
1819 (sb->ORB_offset_lo == lu->query_logins_orb_dma) ||
1820 (sb->ORB_offset_lo == lu->logout_orb_dma)) {
1821 lu->access_complete = 1;
Stefan Richterca0c7452006-11-02 21:16:08 +01001822 wake_up_interruptible(&sbp2_access_wq);
Stefan Richtere8398bb2006-07-23 22:19:00 +02001823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 }
1825
Stefan Richteredf1fb22006-11-02 21:16:08 +01001826 if (SCpnt)
Stefan Richter138c8af2006-11-02 21:16:08 +01001827 sbp2scsi_complete_command(lu, scsi_status, SCpnt,
1828 cmd->Current_done);
Stefan Richtera237f352005-11-07 06:31:39 -05001829 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832/**************************************
1833 * SCSI interface related section
1834 **************************************/
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
1837 void (*done)(struct scsi_cmnd *))
1838{
Stefan Richter138c8af2006-11-02 21:16:08 +01001839 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Stefan Richterca0c7452006-11-02 21:16:08 +01001840 struct sbp2_fwhost_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001841 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Stefan Richter138c8af2006-11-02 21:16:08 +01001843 if (unlikely(!sbp2util_node_is_available(lu)))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001844 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Stefan Richter138c8af2006-11-02 21:16:08 +01001846 hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Stefan Richter5796aa72006-11-02 21:16:08 +01001848 if (unlikely(!hi)) {
Stefan Richterca0c7452006-11-02 21:16:08 +01001849 SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001850 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852
Stefan Richtere8ca5662006-11-02 21:16:08 +01001853 /* Multiple units are currently represented to the SCSI core as separate
1854 * targets, not as one target with multiple LUs. Therefore return
1855 * selection time-out to any IO directed at non-zero LUNs. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001856 if (unlikely(SCpnt->device->lun))
Jody McIntyreabd559b2005-09-30 11:59:06 -07001857 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Stefan Richter138c8af2006-11-02 21:16:08 +01001859 if (unlikely(!hpsb_node_entry_valid(lu->ne))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07001861 result = DID_BUS_BUSY << 16;
1862 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
1864
Stefan Richtere8ca5662006-11-02 21:16:08 +01001865 /* Bidirectional commands are not yet implemented,
1866 * and unknown transfer direction not handled. */
Stefan Richter5796aa72006-11-02 21:16:08 +01001867 if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) {
Stefan Richter43863eb2005-12-12 23:03:24 -05001868 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
1869 result = DID_ERROR << 16;
1870 goto done;
1871 }
1872
Stefan Richter138c8af2006-11-02 21:16:08 +01001873 if (sbp2_send_command(lu, SCpnt, done)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 SBP2_ERR("Error sending SCSI command");
Stefan Richter138c8af2006-11-02 21:16:08 +01001875 sbp2scsi_complete_command(lu,
1876 SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 SCpnt, done);
1878 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07001879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Jody McIntyreabd559b2005-09-30 11:59:06 -07001881done:
1882 SCpnt->result = result;
1883 done(SCpnt);
1884 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
Stefan Richter138c8af2006-11-02 21:16:08 +01001887static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Stefan Richter138c8af2006-11-02 21:16:08 +01001889 struct sbp2_fwhost_info *hi = lu->hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 struct list_head *lh;
Stefan Richter138c8af2006-11-02 21:16:08 +01001891 struct sbp2_command_info *cmd;
Jody McIntyre79456192005-11-07 06:29:39 -05001892 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Stefan Richter138c8af2006-11-02 21:16:08 +01001894 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
1895 while (!list_empty(&lu->cmd_orb_inuse)) {
1896 lh = lu->cmd_orb_inuse.next;
1897 cmd = list_entry(lh, struct sbp2_command_info, list);
Stefan Richter97d552e2006-12-29 23:47:04 +01001898 dma_sync_single_for_cpu(hi->host->device.parent,
1899 cmd->command_orb_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001900 sizeof(struct sbp2_command_orb),
1901 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01001902 dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma,
Stefan Richter9b7d9c02006-11-22 21:44:34 +01001903 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01001904 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01001905 sbp2util_mark_command_completed(lu, cmd);
1906 if (cmd->Current_SCpnt) {
1907 cmd->Current_SCpnt->result = status << 16;
1908 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
1910 }
Stefan Richter138c8af2006-11-02 21:16:08 +01001911 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 return;
1914}
1915
1916/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01001917 * Complete a regular SCSI command. Can be called in atomic context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 */
Stefan Richter138c8af2006-11-02 21:16:08 +01001919static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status,
1920 struct scsi_cmnd *SCpnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 void (*done)(struct scsi_cmnd *))
1922{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (!SCpnt) {
1924 SBP2_ERR("SCpnt is NULL");
1925 return;
1926 }
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05001929 case SBP2_SCSI_STATUS_GOOD:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001930 SCpnt->result = DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001931 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Stefan Richtera237f352005-11-07 06:31:39 -05001933 case SBP2_SCSI_STATUS_BUSY:
1934 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
1935 SCpnt->result = DID_BUS_BUSY << 16;
1936 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Stefan Richtera237f352005-11-07 06:31:39 -05001938 case SBP2_SCSI_STATUS_CHECK_CONDITION:
Stefan Richter8f0525f2006-03-28 20:03:45 -05001939 SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16;
Stefan Richtera237f352005-11-07 06:31:39 -05001940 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Stefan Richtera237f352005-11-07 06:31:39 -05001942 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
1943 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
1944 SCpnt->result = DID_NO_CONNECT << 16;
1945 scsi_print_command(SCpnt);
1946 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Stefan Richtera237f352005-11-07 06:31:39 -05001948 case SBP2_SCSI_STATUS_CONDITION_MET:
1949 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
1950 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
1951 SBP2_ERR("Bad SCSI status = %x", scsi_status);
1952 SCpnt->result = DID_ERROR << 16;
1953 scsi_print_command(SCpnt);
1954 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Stefan Richtera237f352005-11-07 06:31:39 -05001956 default:
1957 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
1958 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960
Stefan Richtere8ca5662006-11-02 21:16:08 +01001961 /* If a bus reset is in progress and there was an error, complete
1962 * the command as busy so that it will get retried. */
Stefan Richter138c8af2006-11-02 21:16:08 +01001963 if (!hpsb_node_entry_valid(lu->ne)
Stefan Richtera237f352005-11-07 06:31:39 -05001964 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 SBP2_ERR("Completing command with busy (bus reset)");
1966 SCpnt->result = DID_BUS_BUSY << 16;
1967 }
1968
Stefan Richtere8ca5662006-11-02 21:16:08 +01001969 /* Tell the SCSI stack that we're done with this command. */
Stefan Richtera237f352005-11-07 06:31:39 -05001970 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
Jody McIntyreabd559b2005-09-30 11:59:06 -07001973static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
1974{
Stefan Richter138c8af2006-11-02 21:16:08 +01001975 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richtera80614d2006-02-14 22:04:19 -05001976
Stefan Richteref774c12008-02-17 14:57:10 +01001977 if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0)
1978 return -ENODEV;
1979
Stefan Richter138c8af2006-11-02 21:16:08 +01001980 lu->sdev = sdev;
Stefan Richterc394f1e2006-08-07 20:48:00 +02001981 sdev->allow_restart = 1;
Stefan Richtera80614d2006-02-14 22:04:19 -05001982
James Bottomley465ff312008-01-01 10:00:10 -06001983 /*
1984 * Update the dma alignment (minimum alignment requirements for
1985 * start and end of DMA transfers) to be a sector
1986 */
1987 blk_queue_update_dma_alignment(sdev->request_queue, 511);
1988
Stefan Richter138c8af2006-11-02 21:16:08 +01001989 if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtera80614d2006-02-14 22:04:19 -05001990 sdev->inquiry_len = 36;
Jody McIntyreabd559b2005-09-30 11:59:06 -07001991 return 0;
1992}
1993
Jody McIntyreabd559b2005-09-30 11:59:06 -07001994static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Stefan Richter138c8af2006-11-02 21:16:08 +01001996 struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
Stefan Richter24d3bf82006-05-15 22:04:59 +02001997
Ben Collins365c7862005-11-07 06:31:24 -05001998 sdev->use_10_for_rw = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02001999
Stefan Richter1a74bc62007-01-10 20:17:15 +01002000 if (sdev->type == TYPE_ROM)
2001 sdev->use_10_for_ms = 1;
Stefan Richter24d3bf82006-05-15 22:04:59 +02002002 if (sdev->type == TYPE_DISK &&
Stefan Richter138c8af2006-11-02 21:16:08 +01002003 lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Stefan Richter24d3bf82006-05-15 22:04:59 +02002004 sdev->skip_ms_page_8 = 1;
Stefan Richter138c8af2006-11-02 21:16:08 +01002005 if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richtere9a1c522006-05-15 22:06:37 +02002006 sdev->fix_capacity = 1;
Stefan Richter4e6343a2007-12-16 17:31:26 +01002007 if (lu->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
2008 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return 0;
2010}
2011
Jody McIntyreabd559b2005-09-30 11:59:06 -07002012static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2013{
Stefan Richter138c8af2006-11-02 21:16:08 +01002014 ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002015 return;
2016}
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018/*
Stefan Richtere8ca5662006-11-02 21:16:08 +01002019 * Called by scsi stack when something has really gone wrong.
2020 * Usually called when a command has timed-out for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 */
2022static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2023{
Stefan Richter138c8af2006-11-02 21:16:08 +01002024 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
2025 struct sbp2_fwhost_info *hi = lu->hi;
2026 struct sbp2_command_info *cmd;
Stefan Richter24c7cd02006-04-01 21:11:41 +02002027 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Stefan Richter35644092006-11-02 21:16:08 +01002029 SBP2_INFO("aborting sbp2 command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 scsi_print_command(SCpnt);
2031
Stefan Richter138c8af2006-11-02 21:16:08 +01002032 if (sbp2util_node_is_available(lu)) {
2033 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Stefan Richter23077f12006-09-11 20:17:14 +02002035 /* Return a matching command structure to the free pool. */
Stefan Richter138c8af2006-11-02 21:16:08 +01002036 spin_lock_irqsave(&lu->cmd_orb_lock, flags);
2037 cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt);
2038 if (cmd) {
Stefan Richter97d552e2006-12-29 23:47:04 +01002039 dma_sync_single_for_cpu(hi->host->device.parent,
Stefan Richter138c8af2006-11-02 21:16:08 +01002040 cmd->command_orb_dma,
2041 sizeof(struct sbp2_command_orb),
Stefan Richter9b7d9c02006-11-22 21:44:34 +01002042 DMA_TO_DEVICE);
Stefan Richter97d552e2006-12-29 23:47:04 +01002043 dma_sync_single_for_cpu(hi->host->device.parent,
2044 cmd->sge_dma,
Stefan Richter138c8af2006-11-02 21:16:08 +01002045 sizeof(cmd->scatter_gather_element),
Stefan Richter2446a792007-02-04 20:54:57 +01002046 DMA_TO_DEVICE);
Stefan Richter138c8af2006-11-02 21:16:08 +01002047 sbp2util_mark_command_completed(lu, cmd);
2048 if (cmd->Current_SCpnt) {
2049 cmd->Current_SCpnt->result = DID_ABORT << 16;
2050 cmd->Current_done(cmd->Current_SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052 }
Stefan Richter138c8af2006-11-02 21:16:08 +01002053 spin_unlock_irqrestore(&lu->cmd_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Stefan Richter138c8af2006-11-02 21:16:08 +01002055 sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
2057
Stefan Richtera237f352005-11-07 06:31:39 -05002058 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060
2061/*
2062 * Called by scsi stack when something has really gone wrong.
2063 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002064static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Stefan Richter138c8af2006-11-02 21:16:08 +01002066 struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Stefan Richter35644092006-11-02 21:16:08 +01002068 SBP2_INFO("reset requested");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Stefan Richter138c8af2006-11-02 21:16:08 +01002070 if (sbp2util_node_is_available(lu)) {
Stefan Richter35644092006-11-02 21:16:08 +01002071 SBP2_INFO("generating sbp2 fetch agent reset");
Stefan Richter138c8af2006-11-02 21:16:08 +01002072 sbp2_agent_reset(lu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
2074
Jody McIntyreabd559b2005-09-30 11:59:06 -07002075 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002076}
2077
Stefan Richtera237f352005-11-07 06:31:39 -05002078static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2079 struct device_attribute *attr,
2080 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
2082 struct scsi_device *sdev;
Stefan Richter138c8af2006-11-02 21:16:08 +01002083 struct sbp2_lu *lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 if (!(sdev = to_scsi_device(dev)))
2086 return 0;
2087
Stefan Richter138c8af2006-11-02 21:16:08 +01002088 if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return 0;
2090
Stefan Richterd7794c82007-05-27 13:17:15 +02002091 if (sbp2_long_sysfs_ieee1394_id)
2092 return sprintf(buf, "%016Lx:%06x:%04x\n",
2093 (unsigned long long)lu->ne->guid,
2094 lu->ud->directory_id, ORB_SET_LUN(lu->lun));
2095 else
2096 return sprintf(buf, "%016Lx:%d:%d\n",
2097 (unsigned long long)lu->ne->guid,
2098 lu->ud->id, ORB_SET_LUN(lu->lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2102MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2103MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2104MODULE_LICENSE("GPL");
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106static int sbp2_module_init(void)
2107{
2108 int ret;
2109
Stefan Richterca0c7452006-11-02 21:16:08 +01002110 if (sbp2_serialize_io) {
2111 sbp2_shost_template.can_queue = 1;
2112 sbp2_shost_template.cmd_per_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
Stefan Richterca0c7452006-11-02 21:16:08 +01002115 sbp2_shost_template.max_sectors = sbp2_max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 hpsb_register_highlevel(&sbp2_highlevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 ret = hpsb_register_protocol(&sbp2_driver);
2119 if (ret) {
2120 SBP2_ERR("Failed to register protocol");
2121 hpsb_unregister_highlevel(&sbp2_highlevel);
2122 return ret;
2123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return 0;
2125}
2126
2127static void __exit sbp2_module_exit(void)
2128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 hpsb_unregister_protocol(&sbp2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 hpsb_unregister_highlevel(&sbp2_highlevel);
2131}
2132
2133module_init(sbp2_module_init);
2134module_exit(sbp2_module_exit);