Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sbp2.c - SBP-2 protocol driver for IEEE-1394 |
| 3 | * |
| 4 | * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com) |
| 5 | * jamesg@filanet.com (JSG) |
| 6 | * |
| 7 | * Copyright (C) 2003 Ben Collins <bcollins@debian.org> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software Foundation, |
| 21 | * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * Brief Description: |
| 26 | * |
| 27 | * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394 |
| 28 | * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level |
| 29 | * driver. It also registers as a SCSI lower-level driver in order to accept |
| 30 | * SCSI commands for transport using SBP-2. |
| 31 | * |
Stefan Richter | 2a533b1 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 32 | * You may access any attached SBP-2 (usually storage devices) as regular |
| 33 | * SCSI devices. E.g. mount /dev/sda1, fdisk, mkfs, etc.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | * |
Stefan Richter | 2a533b1 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 35 | * See http://www.t10.org/drafts.htm#sbp2 for the final draft of the SBP-2 |
| 36 | * specification and for where to purchase the official standard. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | * |
Stefan Richter | 2a533b1 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 38 | * TODO: |
| 39 | * - look into possible improvements of the SCSI error handlers |
| 40 | * - handle Unit_Characteristics.mgt_ORB_timeout and .ORB_size |
| 41 | * - handle Logical_Unit_Number.ordered |
| 42 | * - handle src == 1 in status blocks |
| 43 | * - reimplement the DMA mapping in absence of physical DMA so that |
| 44 | * bus_to_virt is no longer required |
| 45 | * - debug the handling of absent physical DMA |
| 46 | * - replace CONFIG_IEEE1394_SBP2_PHYS_DMA by automatic detection |
| 47 | * (this is easy but depends on the previous two TODO items) |
| 48 | * - make the parameter serialize_io configurable per device |
| 49 | * - move all requests to fetch agent registers into non-atomic context, |
| 50 | * replace all usages of sbp2util_node_write_no_wait by true transactions |
Stefan Richter | 2a533b1 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 51 | * Grep for inline FIXME comments below. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | */ |
| 53 | |
Stefan Richter | 4e6343a | 2007-12-16 17:31:26 +0100 | [diff] [blame] | 54 | #include <linux/blkdev.h> |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 55 | #include <linux/compiler.h> |
| 56 | #include <linux/delay.h> |
| 57 | #include <linux/device.h> |
| 58 | #include <linux/dma-mapping.h> |
| 59 | #include <linux/gfp.h> |
| 60 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/kernel.h> |
| 62 | #include <linux/list.h> |
Andrew Morton | f84c922 | 2007-04-23 11:50:56 -0700 | [diff] [blame] | 63 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <linux/module.h> |
| 65 | #include <linux/moduleparam.h> |
Andrew Morton | f84c922 | 2007-04-23 11:50:56 -0700 | [diff] [blame] | 66 | #include <linux/sched.h> |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 67 | #include <linux/slab.h> |
| 68 | #include <linux/spinlock.h> |
| 69 | #include <linux/stat.h> |
| 70 | #include <linux/string.h> |
| 71 | #include <linux/stringify.h> |
| 72 | #include <linux/types.h> |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 73 | #include <linux/wait.h> |
Stefan Richter | 20e2008 | 2007-05-05 17:18:12 +0200 | [diff] [blame] | 74 | #include <linux/workqueue.h> |
Adrian Bunk | 87ae9af | 2007-10-30 10:35:04 +0100 | [diff] [blame] | 75 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #include <asm/byteorder.h> |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 78 | #include <asm/errno.h> |
| 79 | #include <asm/param.h> |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 80 | #include <asm/system.h> |
| 81 | #include <asm/types.h> |
| 82 | |
| 83 | #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA |
| 84 | #include <asm/io.h> /* for bus_to_virt */ |
| 85 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
| 87 | #include <scsi/scsi.h> |
| 88 | #include <scsi/scsi_cmnd.h> |
| 89 | #include <scsi/scsi_dbg.h> |
| 90 | #include <scsi/scsi_device.h> |
| 91 | #include <scsi/scsi_host.h> |
| 92 | |
| 93 | #include "csr1212.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #include "highlevel.h" |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 95 | #include "hosts.h" |
| 96 | #include "ieee1394.h" |
| 97 | #include "ieee1394_core.h" |
| 98 | #include "ieee1394_hotplug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #include "ieee1394_transactions.h" |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 100 | #include "ieee1394_types.h" |
| 101 | #include "nodemgr.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | #include "sbp2.h" |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | /* |
| 105 | * Module load parameter definitions |
| 106 | */ |
| 107 | |
| 108 | /* |
| 109 | * Change max_speed on module load if you have a bad IEEE-1394 |
| 110 | * controller that has trouble running 2KB packets at 400mb. |
| 111 | * |
| 112 | * NOTE: On certain OHCI parts I have seen short packets on async transmit |
| 113 | * (probably due to PCI latency/throughput issues with the part). You can |
| 114 | * bump down the speed if you are running into problems. |
| 115 | */ |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 116 | static int sbp2_max_speed = IEEE1394_SPEED_MAX; |
| 117 | module_param_named(max_speed, sbp2_max_speed, int, 0644); |
Stefan Richter | 28b0667 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 118 | MODULE_PARM_DESC(max_speed, "Force max speed " |
| 119 | "(3 = 800Mb/s, 2 = 400Mb/s, 1 = 200Mb/s, 0 = 100Mb/s)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | /* |
Stefan Richter | 77bba7a | 2007-06-17 23:54:52 +0200 | [diff] [blame] | 122 | * Set serialize_io to 0 or N to use dynamically appended lists of command ORBs. |
| 123 | * This is and always has been buggy in multiple subtle ways. See above TODOs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | */ |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 125 | static int sbp2_serialize_io = 1; |
Stefan Richter | 77bba7a | 2007-06-17 23:54:52 +0200 | [diff] [blame] | 126 | module_param_named(serialize_io, sbp2_serialize_io, bool, 0444); |
| 127 | MODULE_PARM_DESC(serialize_io, "Serialize requests coming from SCSI drivers " |
| 128 | "(default = Y, faster but buggy = N)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | /* |
Stefan Richter | 4e6343a | 2007-12-16 17:31:26 +0100 | [diff] [blame] | 131 | * Adjust max_sectors if you'd like to influence how many sectors each SCSI |
| 132 | * command can transfer at most. Please note that some older SBP-2 bridge |
| 133 | * chips are broken for transfers greater or equal to 128KB, therefore |
| 134 | * max_sectors used to be a safe 255 sectors for many years. We now have a |
| 135 | * default of 0 here which means that we let the SCSI stack choose a limit. |
| 136 | * |
| 137 | * The SBP2_WORKAROUND_128K_MAX_TRANS flag, if set either in the workarounds |
| 138 | * module parameter or in the sbp2_workarounds_table[], will override the |
| 139 | * value of max_sectors. We should use sbp2_workarounds_table[] to cover any |
| 140 | * bridge chip which becomes known to need the 255 sectors limit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | */ |
Stefan Richter | 4e6343a | 2007-12-16 17:31:26 +0100 | [diff] [blame] | 142 | static int sbp2_max_sectors; |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 143 | module_param_named(max_sectors, sbp2_max_sectors, int, 0444); |
| 144 | MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported " |
Stefan Richter | 4e6343a | 2007-12-16 17:31:26 +0100 | [diff] [blame] | 145 | "(default = 0 = use SCSI stack's default)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | /* |
| 148 | * Exclusive login to sbp2 device? In most cases, the sbp2 driver should |
| 149 | * do an exclusive login, as it's generally unsafe to have two hosts |
| 150 | * talking to a single sbp2 device at the same time (filesystem coherency, |
| 151 | * etc.). If you're running an sbp2 device that supports multiple logins, |
| 152 | * and you're either running read-only filesystems or some sort of special |
Ben Collins | 20f4578 | 2006-06-12 18:13:11 -0400 | [diff] [blame] | 153 | * filesystem supporting multiple hosts, e.g. OpenGFS, Oracle Cluster |
| 154 | * File System, or Lustre, then set exclusive_login to zero. |
| 155 | * |
| 156 | * So far only bridges from Oxford Semiconductor are known to support |
| 157 | * concurrent logins. Depending on firmware, four or two concurrent logins |
| 158 | * are possible on OXFW911 and newer Oxsemi bridges. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | */ |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 160 | static int sbp2_exclusive_login = 1; |
Stefan Richter | 77bba7a | 2007-06-17 23:54:52 +0200 | [diff] [blame] | 161 | module_param_named(exclusive_login, sbp2_exclusive_login, bool, 0644); |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 162 | MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device " |
Stefan Richter | 77bba7a | 2007-06-17 23:54:52 +0200 | [diff] [blame] | 163 | "(default = Y, use N for concurrent initiators)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | /* |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 166 | * If any of the following workarounds is required for your device to work, |
| 167 | * please submit the kernel messages logged by sbp2 to the linux1394-devel |
| 168 | * mailing list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | * |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 170 | * - 128kB max transfer |
| 171 | * Limit transfer size. Necessary for some old bridges. |
| 172 | * |
| 173 | * - 36 byte inquiry |
| 174 | * When scsi_mod probes the device, let the inquiry command look like that |
| 175 | * from MS Windows. |
| 176 | * |
| 177 | * - skip mode page 8 |
| 178 | * Suppress sending of mode_sense for mode page 8 if the device pretends to |
| 179 | * support the SCSI Primary Block commands instead of Reduced Block Commands. |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 180 | * |
| 181 | * - fix capacity |
| 182 | * Tell sd_mod to correct the last sector number reported by read_capacity. |
| 183 | * Avoids access beyond actual disk limits on devices with an off-by-one bug. |
| 184 | * Don't use this with devices which don't have this bug. |
Stefan Richter | 679c0cd | 2006-05-15 22:08:09 +0200 | [diff] [blame] | 185 | * |
Stefan Richter | d94a983 | 2008-02-03 23:07:44 +0100 | [diff] [blame] | 186 | * - delay inquiry |
| 187 | * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry. |
| 188 | * |
Stefan Richter | 679c0cd | 2006-05-15 22:08:09 +0200 | [diff] [blame] | 189 | * - override internal blacklist |
| 190 | * Instead of adding to the built-in blacklist, use only the workarounds |
| 191 | * specified in the module load parameter. |
| 192 | * Useful if a blacklist entry interfered with a non-broken device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | */ |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 194 | static int sbp2_default_workarounds; |
| 195 | module_param_named(workarounds, sbp2_default_workarounds, int, 0644); |
| 196 | MODULE_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 Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 200 | ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY) |
Stefan Richter | d94a983 | 2008-02-03 23:07:44 +0100 | [diff] [blame] | 201 | ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY) |
Stefan Richter | 679c0cd | 2006-05-15 22:08:09 +0200 | [diff] [blame] | 202 | ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE) |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 203 | ", or a combination)"); |
| 204 | |
Stefan Richter | d7794c8 | 2007-05-27 13:17:15 +0200 | [diff] [blame] | 205 | /* |
| 206 | * This influences the format of the sysfs attribute |
| 207 | * /sys/bus/scsi/devices/.../ieee1394_id. |
| 208 | * |
| 209 | * The default format is like in older kernels: %016Lx:%d:%d |
| 210 | * It contains the target's EUI-64, a number given to the logical unit by |
| 211 | * the ieee1394 driver's nodemgr (starting at 0), and the LUN. |
| 212 | * |
| 213 | * The long format is: %016Lx:%06x:%04x |
| 214 | * It contains the target's EUI-64, the unit directory's directory_ID as per |
| 215 | * IEEE 1212 clause 7.7.19, and the LUN. This format comes closest to the |
| 216 | * format of SBP(-3) target port and logical unit identifier as per SAM (SCSI |
| 217 | * Architecture Model) rev.2 to 4 annex A. Therefore and because it is |
| 218 | * independent of the implementation of the ieee1394 nodemgr, the longer format |
| 219 | * is recommended for future use. |
| 220 | */ |
| 221 | static int sbp2_long_sysfs_ieee1394_id; |
| 222 | module_param_named(long_ieee1394_id, sbp2_long_sysfs_ieee1394_id, bool, 0644); |
| 223 | MODULE_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 227 | #define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args) |
| 228 | #define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* |
| 231 | * Globals |
| 232 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 233 | static void sbp2scsi_complete_all_commands(struct sbp2_lu *, u32); |
| 234 | static void sbp2scsi_complete_command(struct sbp2_lu *, u32, struct scsi_cmnd *, |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 235 | void (*)(struct scsi_cmnd *)); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 236 | static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *); |
| 237 | static int sbp2_start_device(struct sbp2_lu *); |
| 238 | static void sbp2_remove_device(struct sbp2_lu *); |
| 239 | static int sbp2_login_device(struct sbp2_lu *); |
| 240 | static int sbp2_reconnect_device(struct sbp2_lu *); |
| 241 | static int sbp2_logout_device(struct sbp2_lu *); |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 242 | static void sbp2_host_reset(struct hpsb_host *); |
| 243 | static int sbp2_handle_status_write(struct hpsb_host *, int, int, quadlet_t *, |
| 244 | u64, size_t, u16); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 245 | static int sbp2_agent_reset(struct sbp2_lu *, int); |
| 246 | static void sbp2_parse_unit_directory(struct sbp2_lu *, |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 247 | struct unit_directory *); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 248 | static int sbp2_set_busy_timeout(struct sbp2_lu *); |
| 249 | static int sbp2_max_speed_and_size(struct sbp2_lu *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC }; |
| 253 | |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 254 | static DEFINE_RWLOCK(sbp2_hi_logical_units_lock); |
| 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | static struct hpsb_highlevel sbp2_highlevel = { |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 257 | .name = SBP2_DEVICE_NAME, |
| 258 | .host_reset = sbp2_host_reset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | }; |
| 260 | |
| 261 | static struct hpsb_address_ops sbp2_ops = { |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 262 | .write = sbp2_handle_status_write |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 266 | static int sbp2_handle_physdma_write(struct hpsb_host *, int, int, quadlet_t *, |
| 267 | u64, size_t, u16); |
| 268 | static int sbp2_handle_physdma_read(struct hpsb_host *, int, quadlet_t *, u64, |
| 269 | size_t, u16); |
| 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | static struct hpsb_address_ops sbp2_physdma_ops = { |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 272 | .read = sbp2_handle_physdma_read, |
| 273 | .write = sbp2_handle_physdma_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | }; |
| 275 | #endif |
| 276 | |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 277 | |
| 278 | /* |
| 279 | * Interface to driver core and IEEE 1394 core |
| 280 | */ |
| 281 | static 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 | }; |
| 288 | MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table); |
| 289 | |
| 290 | static int sbp2_probe(struct device *); |
| 291 | static int sbp2_remove(struct device *); |
| 292 | static int sbp2_update(struct unit_directory *); |
| 293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | static struct hpsb_protocol_driver sbp2_driver = { |
Ben Collins | ed30c26 | 2006-11-23 13:59:48 -0500 | [diff] [blame] | 295 | .name = SBP2_DEVICE_NAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | .id_table = sbp2_id_table, |
| 297 | .update = sbp2_update, |
| 298 | .driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | .probe = sbp2_probe, |
| 300 | .remove = sbp2_remove, |
| 301 | }, |
| 302 | }; |
| 303 | |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 304 | |
| 305 | /* |
| 306 | * Interface to SCSI core |
| 307 | */ |
| 308 | static int sbp2scsi_queuecommand(struct scsi_cmnd *, |
| 309 | void (*)(struct scsi_cmnd *)); |
| 310 | static int sbp2scsi_abort(struct scsi_cmnd *); |
| 311 | static int sbp2scsi_reset(struct scsi_cmnd *); |
| 312 | static int sbp2scsi_slave_alloc(struct scsi_device *); |
| 313 | static int sbp2scsi_slave_configure(struct scsi_device *); |
| 314 | static void sbp2scsi_slave_destroy(struct scsi_device *); |
| 315 | static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *, |
| 316 | struct device_attribute *, char *); |
| 317 | |
| 318 | static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL); |
| 319 | |
| 320 | static struct device_attribute *sbp2_sysfs_sdev_attrs[] = { |
| 321 | &dev_attr_ieee1394_id, |
| 322 | NULL |
| 323 | }; |
| 324 | |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 325 | static struct scsi_host_template sbp2_shost_template = { |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 326 | .module = THIS_MODULE, |
| 327 | .name = "SBP-2 IEEE-1394", |
| 328 | .proc_name = SBP2_DEVICE_NAME, |
| 329 | .queuecommand = sbp2scsi_queuecommand, |
| 330 | .eh_abort_handler = sbp2scsi_abort, |
| 331 | .eh_device_reset_handler = sbp2scsi_reset, |
| 332 | .slave_alloc = sbp2scsi_slave_alloc, |
| 333 | .slave_configure = sbp2scsi_slave_configure, |
| 334 | .slave_destroy = sbp2scsi_slave_destroy, |
| 335 | .this_id = -1, |
| 336 | .sg_tablesize = SG_ALL, |
| 337 | .use_clustering = ENABLE_CLUSTERING, |
| 338 | .cmd_per_lun = SBP2_MAX_CMDS, |
| 339 | .can_queue = SBP2_MAX_CMDS, |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 340 | .sdev_attrs = sbp2_sysfs_sdev_attrs, |
| 341 | }; |
| 342 | |
Stefan Richter | 4618fd3 | 2006-12-30 15:37:09 +0100 | [diff] [blame] | 343 | /* for match-all entries in sbp2_workarounds_table */ |
| 344 | #define SBP2_ROM_VALUE_WILDCARD 0x1000000 |
Stefan Richter | ea42ea0 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 345 | |
Stefan Richter | a80614d | 2006-02-14 22:04:19 -0500 | [diff] [blame] | 346 | /* |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 347 | * List of devices with known bugs. |
| 348 | * |
| 349 | * The firmware_revision field, masked with 0xffff00, is the best indicator |
| 350 | * for the type of bridge chip of a device. It yields a few false positives |
| 351 | * but this did not break correctly behaving devices so far. |
Stefan Richter | a80614d | 2006-02-14 22:04:19 -0500 | [diff] [blame] | 352 | */ |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 353 | static const struct { |
| 354 | u32 firmware_revision; |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 355 | u32 model_id; |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 356 | unsigned workarounds; |
| 357 | } sbp2_workarounds_table[] = { |
Ben Collins | 4b9a334 | 2006-06-12 18:10:18 -0400 | [diff] [blame] | 358 | /* DViCO Momobay CX-1 with TSB42AA9 bridge */ { |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 359 | .firmware_revision = 0x002800, |
Ben Collins | 4b9a334 | 2006-06-12 18:10:18 -0400 | [diff] [blame] | 360 | .model_id = 0x001010, |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 361 | .workarounds = SBP2_WORKAROUND_INQUIRY_36 | |
| 362 | SBP2_WORKAROUND_MODE_SENSE_8, |
| 363 | }, |
Stefan Richter | d94a983 | 2008-02-03 23:07:44 +0100 | [diff] [blame] | 364 | /* DViCO Momobay FX-3A with TSB42AA9A bridge */ { |
| 365 | .firmware_revision = 0x002800, |
| 366 | .model_id = 0x000000, |
| 367 | .workarounds = SBP2_WORKAROUND_DELAY_INQUIRY, |
| 368 | }, |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 369 | /* Initio bridges, actually only needed for some older ones */ { |
| 370 | .firmware_revision = 0x000200, |
Stefan Richter | 4618fd3 | 2006-12-30 15:37:09 +0100 | [diff] [blame] | 371 | .model_id = SBP2_ROM_VALUE_WILDCARD, |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 372 | .workarounds = SBP2_WORKAROUND_INQUIRY_36, |
| 373 | }, |
| 374 | /* Symbios bridge */ { |
| 375 | .firmware_revision = 0xa0b800, |
Stefan Richter | 4618fd3 | 2006-12-30 15:37:09 +0100 | [diff] [blame] | 376 | .model_id = SBP2_ROM_VALUE_WILDCARD, |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 377 | .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS, |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 378 | }, |
Stefan Richter | 6e45ef4 | 2008-03-11 22:32:52 +0100 | [diff] [blame] | 379 | /* Datafab MD2-FW2 with Symbios/LSILogic SYM13FW500 bridge */ { |
| 380 | .firmware_revision = 0x002600, |
| 381 | .model_id = SBP2_ROM_VALUE_WILDCARD, |
| 382 | .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS, |
| 383 | }, |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 384 | /* iPod 4th generation */ { |
| 385 | .firmware_revision = 0x0a2700, |
| 386 | .model_id = 0x000021, |
| 387 | .workarounds = SBP2_WORKAROUND_FIX_CAPACITY, |
| 388 | }, |
| 389 | /* iPod mini */ { |
| 390 | .firmware_revision = 0x0a2700, |
| 391 | .model_id = 0x000023, |
| 392 | .workarounds = SBP2_WORKAROUND_FIX_CAPACITY, |
| 393 | }, |
| 394 | /* iPod Photo */ { |
| 395 | .firmware_revision = 0x0a2700, |
| 396 | .model_id = 0x00007e, |
| 397 | .workarounds = SBP2_WORKAROUND_FIX_CAPACITY, |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | }; |
| 400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | /************************************** |
| 402 | * General utility functions |
| 403 | **************************************/ |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | #ifndef __BIG_ENDIAN |
| 406 | /* |
| 407 | * Converts a buffer from be32 to cpu byte ordering. Length is in bytes. |
| 408 | */ |
Stefan Richter | 2b01b80 | 2006-07-03 12:02:28 -0400 | [diff] [blame] | 409 | static inline void sbp2util_be32_to_cpu_buffer(void *buffer, int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
| 411 | u32 *temp = buffer; |
| 412 | |
| 413 | for (length = (length >> 2); length--; ) |
| 414 | temp[length] = be32_to_cpu(temp[length]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | /* |
| 418 | * Converts a buffer from cpu to be32 byte ordering. Length is in bytes. |
| 419 | */ |
Stefan Richter | 2b01b80 | 2006-07-03 12:02:28 -0400 | [diff] [blame] | 420 | static inline void sbp2util_cpu_to_be32_buffer(void *buffer, int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | { |
| 422 | u32 *temp = buffer; |
| 423 | |
| 424 | for (length = (length >> 2); length--; ) |
| 425 | temp[length] = cpu_to_be32(temp[length]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | #else /* BIG_ENDIAN */ |
| 428 | /* Why waste the cpu cycles? */ |
Stefan Richter | 611aa19 | 2006-08-02 18:44:00 +0200 | [diff] [blame] | 429 | #define sbp2util_be32_to_cpu_buffer(x,y) do {} while (0) |
| 430 | #define sbp2util_cpu_to_be32_buffer(x,y) do {} while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | #endif |
| 432 | |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 433 | static DECLARE_WAIT_QUEUE_HEAD(sbp2_access_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 435 | /* |
| 436 | * Waits for completion of an SBP-2 access request. |
| 437 | * Returns nonzero if timed out or prematurely interrupted. |
| 438 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 439 | static int sbp2util_access_timeout(struct sbp2_lu *lu, int timeout) |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 440 | { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 441 | long leftover; |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 442 | |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 443 | leftover = wait_event_interruptible_timeout( |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 444 | sbp2_access_wq, lu->access_complete, timeout); |
| 445 | lu->access_complete = 0; |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 446 | return leftover <= 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 449 | static void sbp2_free_packet(void *packet) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | { |
| 451 | hpsb_free_tlabel(packet); |
| 452 | hpsb_free_packet(packet); |
| 453 | } |
| 454 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 455 | /* |
| 456 | * This is much like hpsb_node_write(), except it ignores the response |
| 457 | * subaction and returns immediately. Can be used from atomic context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | */ |
| 459 | static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 460 | quadlet_t *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
| 462 | struct hpsb_packet *packet; |
| 463 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 464 | packet = hpsb_make_writepacket(ne->host, ne->nodeid, addr, buf, len); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 465 | if (!packet) |
| 466 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 468 | hpsb_set_packet_complete_task(packet, sbp2_free_packet, packet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | hpsb_node_fill_packet(ne, packet); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 470 | if (hpsb_send_packet(packet) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | sbp2_free_packet(packet); |
| 472 | return -EIO; |
| 473 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return 0; |
| 475 | } |
| 476 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 477 | static void sbp2util_notify_fetch_agent(struct sbp2_lu *lu, u64 offset, |
| 478 | quadlet_t *data, size_t len) |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 479 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 480 | /* There is a small window after a bus reset within which the node |
| 481 | * entry's generation is current but the reconnect wasn't completed. */ |
| 482 | if (unlikely(atomic_read(&lu->state) == SBP2LU_STATE_IN_RESET)) |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 483 | return; |
| 484 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 485 | if (hpsb_node_write(lu->ne, lu->command_block_agent_addr + offset, |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 486 | data, len)) |
| 487 | SBP2_ERR("sbp2util_notify_fetch_agent failed."); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 488 | |
| 489 | /* Now accept new SCSI commands, unless a bus reset happended during |
| 490 | * hpsb_node_write. */ |
| 491 | if (likely(atomic_read(&lu->state) != SBP2LU_STATE_IN_RESET)) |
| 492 | scsi_unblock_requests(lu->shost); |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 493 | } |
| 494 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 495 | static void sbp2util_write_orb_pointer(struct work_struct *work) |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 496 | { |
Stefan Richter | ec9b7e1 | 2006-12-07 23:23:25 +0100 | [diff] [blame] | 497 | struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work); |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 498 | quadlet_t data[2]; |
| 499 | |
Stefan Richter | ec9b7e1 | 2006-12-07 23:23:25 +0100 | [diff] [blame] | 500 | data[0] = ORB_SET_NODE_ID(lu->hi->host->node_id); |
| 501 | data[1] = lu->last_orb_dma; |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 502 | sbp2util_cpu_to_be32_buffer(data, 8); |
Stefan Richter | ec9b7e1 | 2006-12-07 23:23:25 +0100 | [diff] [blame] | 503 | sbp2util_notify_fetch_agent(lu, SBP2_ORB_POINTER_OFFSET, data, 8); |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 504 | } |
| 505 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 506 | static void sbp2util_write_doorbell(struct work_struct *work) |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 507 | { |
Stefan Richter | ec9b7e1 | 2006-12-07 23:23:25 +0100 | [diff] [blame] | 508 | struct sbp2_lu *lu = container_of(work, struct sbp2_lu, protocol_work); |
| 509 | |
| 510 | sbp2util_notify_fetch_agent(lu, SBP2_DOORBELL_OFFSET, NULL, 4); |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 511 | } |
| 512 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 513 | static int sbp2util_create_command_orb_pool(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 515 | struct sbp2_fwhost_info *hi = lu->hi; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 516 | struct sbp2_command_info *cmd; |
Stefan Richter | 3d269cb | 2007-02-04 20:57:38 +0100 | [diff] [blame] | 517 | int i, orbs = sbp2_serialize_io ? 2 : SBP2_MAX_CMDS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | for (i = 0; i < orbs; i++) { |
Stefan Richter | 3d269cb | 2007-02-04 20:57:38 +0100 | [diff] [blame] | 520 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 521 | if (!cmd) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 522 | return -ENOMEM; |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 523 | cmd->command_orb_dma = dma_map_single(hi->host->device.parent, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 524 | &cmd->command_orb, |
| 525 | sizeof(struct sbp2_command_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 526 | DMA_TO_DEVICE); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 527 | cmd->sge_dma = dma_map_single(hi->host->device.parent, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 528 | &cmd->scatter_gather_element, |
| 529 | sizeof(cmd->scatter_gather_element), |
Stefan Richter | 2446a79 | 2007-02-04 20:54:57 +0100 | [diff] [blame] | 530 | DMA_TO_DEVICE); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 531 | INIT_LIST_HEAD(&cmd->list); |
| 532 | list_add_tail(&cmd->list, &lu->cmd_orb_completed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | return 0; |
| 535 | } |
| 536 | |
Stefan Richter | a2ee3f9 | 2007-08-11 11:51:16 +0200 | [diff] [blame] | 537 | static void sbp2util_remove_command_orb_pool(struct sbp2_lu *lu, |
| 538 | struct hpsb_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | struct list_head *lh, *next; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 541 | struct sbp2_command_info *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | unsigned long flags; |
| 543 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 544 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 545 | if (!list_empty(&lu->cmd_orb_completed)) |
| 546 | list_for_each_safe(lh, next, &lu->cmd_orb_completed) { |
| 547 | cmd = list_entry(lh, struct sbp2_command_info, list); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 548 | dma_unmap_single(host->device.parent, |
| 549 | cmd->command_orb_dma, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | sizeof(struct sbp2_command_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 551 | DMA_TO_DEVICE); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 552 | dma_unmap_single(host->device.parent, cmd->sge_dma, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 553 | sizeof(cmd->scatter_gather_element), |
Stefan Richter | 2446a79 | 2007-02-04 20:54:57 +0100 | [diff] [blame] | 554 | DMA_TO_DEVICE); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 555 | kfree(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 557 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | return; |
| 559 | } |
| 560 | |
| 561 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 562 | * Finds the sbp2_command for a given outstanding command ORB. |
| 563 | * Only looks at the in-use list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | */ |
| 565 | static struct sbp2_command_info *sbp2util_find_command_for_orb( |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 566 | struct sbp2_lu *lu, dma_addr_t orb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 568 | struct sbp2_command_info *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | unsigned long flags; |
| 570 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 571 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 572 | if (!list_empty(&lu->cmd_orb_inuse)) |
| 573 | list_for_each_entry(cmd, &lu->cmd_orb_inuse, list) |
| 574 | if (cmd->command_orb_dma == orb) { |
| 575 | spin_unlock_irqrestore( |
| 576 | &lu->cmd_orb_lock, flags); |
| 577 | return cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 579 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 580 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 584 | * Finds the sbp2_command for a given outstanding SCpnt. |
| 585 | * Only looks at the in-use list. |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 586 | * Must be called with lu->cmd_orb_lock held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | */ |
Stefan Richter | 24c7cd0 | 2006-04-01 21:11:41 +0200 | [diff] [blame] | 588 | static struct sbp2_command_info *sbp2util_find_command_for_SCpnt( |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 589 | struct sbp2_lu *lu, void *SCpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 591 | struct sbp2_command_info *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 593 | if (!list_empty(&lu->cmd_orb_inuse)) |
| 594 | list_for_each_entry(cmd, &lu->cmd_orb_inuse, list) |
| 595 | if (cmd->Current_SCpnt == SCpnt) |
| 596 | return cmd; |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 597 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | static struct sbp2_command_info *sbp2util_allocate_command_orb( |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 601 | struct sbp2_lu *lu, |
| 602 | struct scsi_cmnd *Current_SCpnt, |
| 603 | void (*Current_done)(struct scsi_cmnd *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
| 605 | struct list_head *lh; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 606 | struct sbp2_command_info *cmd = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | unsigned long flags; |
| 608 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 609 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 610 | if (!list_empty(&lu->cmd_orb_completed)) { |
| 611 | lh = lu->cmd_orb_completed.next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | list_del(lh); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 613 | cmd = list_entry(lh, struct sbp2_command_info, list); |
| 614 | cmd->Current_done = Current_done; |
| 615 | cmd->Current_SCpnt = Current_SCpnt; |
| 616 | list_add_tail(&cmd->list, &lu->cmd_orb_inuse); |
| 617 | } else |
Harvey Harrison | b1ce1fd | 2008-03-05 18:24:54 -0800 | [diff] [blame] | 618 | SBP2_ERR("%s: no orbs available", __func__); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 619 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
| 620 | return cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | } |
| 622 | |
Stefan Richter | 58272c1 | 2006-11-04 09:55:33 +0100 | [diff] [blame] | 623 | /* |
| 624 | * Unmaps the DMAs of a command and moves the command to the completed ORB list. |
| 625 | * Must be called with lu->cmd_orb_lock held. |
| 626 | */ |
| 627 | static void sbp2util_mark_command_completed(struct sbp2_lu *lu, |
| 628 | struct sbp2_command_info *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | { |
Stefan Richter | 58272c1 | 2006-11-04 09:55:33 +0100 | [diff] [blame] | 630 | struct hpsb_host *host = lu->ud->ne->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 632 | if (cmd->cmd_dma) { |
| 633 | if (cmd->dma_type == CMD_DMA_SINGLE) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 634 | dma_unmap_single(host->device.parent, cmd->cmd_dma, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 635 | cmd->dma_size, cmd->dma_dir); |
| 636 | else if (cmd->dma_type == CMD_DMA_PAGE) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 637 | dma_unmap_page(host->device.parent, cmd->cmd_dma, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 638 | cmd->dma_size, cmd->dma_dir); |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 639 | /* XXX: Check for CMD_DMA_NONE bug */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 640 | cmd->dma_type = CMD_DMA_NONE; |
| 641 | cmd->cmd_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 643 | if (cmd->sge_buffer) { |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 644 | dma_unmap_sg(host->device.parent, cmd->sge_buffer, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 645 | cmd->dma_size, cmd->dma_dir); |
| 646 | cmd->sge_buffer = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
Stefan Richter | cd641f6 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 648 | list_move_tail(&cmd->list, &lu->cmd_orb_completed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 651 | /* |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 652 | * Is lu valid? Is the 1394 node still present? |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 653 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 654 | static inline int sbp2util_node_is_available(struct sbp2_lu *lu) |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 655 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 656 | return lu && lu->ne && !lu->ne->in_limbo; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | /********************************************* |
| 660 | * IEEE-1394 core driver stack related section |
| 661 | *********************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
| 663 | static int sbp2_probe(struct device *dev) |
| 664 | { |
| 665 | struct unit_directory *ud; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 666 | struct sbp2_lu *lu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | ud = container_of(dev, struct unit_directory, device); |
| 669 | |
| 670 | /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s) |
| 671 | * instead. */ |
| 672 | if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY) |
| 673 | return -ENODEV; |
| 674 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 675 | lu = sbp2_alloc_device(ud); |
| 676 | if (!lu) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 677 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 679 | sbp2_parse_unit_directory(lu, ud); |
| 680 | return sbp2_start_device(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | static int sbp2_remove(struct device *dev) |
| 684 | { |
| 685 | struct unit_directory *ud; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 686 | struct sbp2_lu *lu; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 687 | struct scsi_device *sdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | ud = container_of(dev, struct unit_directory, device); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 690 | lu = ud->device.driver_data; |
| 691 | if (!lu) |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 692 | return 0; |
| 693 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 694 | if (lu->shost) { |
Stefan Richter | bf637ec | 2006-01-31 00:13:06 -0500 | [diff] [blame] | 695 | /* Get rid of enqueued commands if there is no chance to |
| 696 | * send them. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 697 | if (!sbp2util_node_is_available(lu)) |
| 698 | sbp2scsi_complete_all_commands(lu, DID_NO_CONNECT); |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 699 | /* scsi_remove_device() may trigger shutdown functions of SCSI |
Stefan Richter | bf637ec | 2006-01-31 00:13:06 -0500 | [diff] [blame] | 700 | * highlevel drivers which would deadlock if blocked. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 701 | atomic_set(&lu->state, SBP2LU_STATE_IN_SHUTDOWN); |
| 702 | scsi_unblock_requests(lu->shost); |
Stefan Richter | bf637ec | 2006-01-31 00:13:06 -0500 | [diff] [blame] | 703 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 704 | sdev = lu->sdev; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 705 | if (sdev) { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 706 | lu->sdev = NULL; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 707 | scsi_remove_device(sdev); |
| 708 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 710 | sbp2_logout_device(lu); |
| 711 | sbp2_remove_device(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
| 713 | return 0; |
| 714 | } |
| 715 | |
| 716 | static int sbp2_update(struct unit_directory *ud) |
| 717 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 718 | struct sbp2_lu *lu = ud->device.driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 720 | if (sbp2_reconnect_device(lu)) { |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 721 | /* Reconnect has failed. Perhaps we didn't reconnect fast |
| 722 | * enough. Try a regular login, but first log out just in |
| 723 | * case of any weirdness. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 724 | sbp2_logout_device(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 726 | if (sbp2_login_device(lu)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | /* Login failed too, just fail, and the backend |
| 728 | * will call our sbp2_remove for us */ |
| 729 | SBP2_ERR("Failed to reconnect to sbp2 device!"); |
| 730 | return -EBUSY; |
| 731 | } |
| 732 | } |
| 733 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 734 | sbp2_set_busy_timeout(lu); |
| 735 | sbp2_agent_reset(lu, 1); |
| 736 | sbp2_max_speed_and_size(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 738 | /* Complete any pending commands with busy (so they get retried) |
| 739 | * and remove them from our queue. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 740 | sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | |
Stefan Richter | 4fc383c | 2006-08-14 18:46:00 +0200 | [diff] [blame] | 742 | /* Accept new commands unless there was another bus reset in the |
| 743 | * meantime. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 744 | if (hpsb_node_entry_valid(lu->ne)) { |
| 745 | atomic_set(&lu->state, SBP2LU_STATE_RUNNING); |
| 746 | scsi_unblock_requests(lu->shost); |
Stefan Richter | 4fc383c | 2006-08-14 18:46:00 +0200 | [diff] [blame] | 747 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | return 0; |
| 749 | } |
| 750 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 751 | static struct sbp2_lu *sbp2_alloc_device(struct unit_directory *ud) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 753 | struct sbp2_fwhost_info *hi; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 754 | struct Scsi_Host *shost = NULL; |
| 755 | struct sbp2_lu *lu = NULL; |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 756 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 758 | lu = kzalloc(sizeof(*lu), GFP_KERNEL); |
| 759 | if (!lu) { |
| 760 | SBP2_ERR("failed to create lu"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | goto failed_alloc; |
| 762 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 764 | lu->ne = ud->ne; |
| 765 | lu->ud = ud; |
| 766 | lu->speed_code = IEEE1394_SPEED_100; |
| 767 | lu->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100]; |
| 768 | lu->status_fifo_addr = CSR1212_INVALID_ADDR_SPACE; |
| 769 | INIT_LIST_HEAD(&lu->cmd_orb_inuse); |
| 770 | INIT_LIST_HEAD(&lu->cmd_orb_completed); |
| 771 | INIT_LIST_HEAD(&lu->lu_list); |
| 772 | spin_lock_init(&lu->cmd_orb_lock); |
| 773 | atomic_set(&lu->state, SBP2LU_STATE_RUNNING); |
| 774 | INIT_WORK(&lu->protocol_work, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 776 | ud->device.driver_data = lu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
| 778 | hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host); |
| 779 | if (!hi) { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 780 | hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, |
| 781 | sizeof(*hi)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | if (!hi) { |
| 783 | SBP2_ERR("failed to allocate hostinfo"); |
| 784 | goto failed_alloc; |
| 785 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | hi->host = ud->ne->host; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 787 | INIT_LIST_HEAD(&hi->logical_units); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA |
| 790 | /* Handle data movement if physical dma is not |
Stefan Richter | 5566405 | 2006-03-28 19:59:42 -0500 | [diff] [blame] | 791 | * enabled or not supported on host controller */ |
| 792 | if (!hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host, |
| 793 | &sbp2_physdma_ops, |
| 794 | 0x0ULL, 0xfffffffcULL)) { |
| 795 | SBP2_ERR("failed to register lower 4GB address range"); |
| 796 | goto failed_alloc; |
| 797 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | #endif |
| 799 | } |
| 800 | |
Stefan Richter | 147830f | 2006-03-28 19:54:52 -0500 | [diff] [blame] | 801 | /* Prevent unloading of the 1394 host */ |
| 802 | if (!try_module_get(hi->host->driver->owner)) { |
| 803 | SBP2_ERR("failed to get a reference on 1394 host driver"); |
| 804 | goto failed_alloc; |
| 805 | } |
| 806 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 807 | lu->hi = hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 809 | write_lock_irqsave(&sbp2_hi_logical_units_lock, flags); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 810 | list_add_tail(&lu->lu_list, &hi->logical_units); |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 811 | write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Stefan Richter | 35bdddb | 2006-01-31 00:13:33 -0500 | [diff] [blame] | 813 | /* Register the status FIFO address range. We could use the same FIFO |
| 814 | * for targets at different nodes. However we need different FIFOs per |
Stefan Richter | a54c9d3 | 2006-05-15 22:09:46 +0200 | [diff] [blame] | 815 | * target in order to support multi-unit devices. |
| 816 | * The FIFO is located out of the local host controller's physical range |
| 817 | * but, if possible, within the posted write area. Status writes will |
| 818 | * then be performed as unified transactions. This slightly reduces |
| 819 | * bandwidth usage, and some Prolific based devices seem to require it. |
| 820 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 821 | lu->status_fifo_addr = hpsb_allocate_and_register_addrspace( |
Stefan Richter | 35bdddb | 2006-01-31 00:13:33 -0500 | [diff] [blame] | 822 | &sbp2_highlevel, ud->ne->host, &sbp2_ops, |
| 823 | sizeof(struct sbp2_status_block), sizeof(quadlet_t), |
Ben Collins | 40ae6c5 | 2006-06-12 18:13:49 -0400 | [diff] [blame] | 824 | ud->ne->host->low_addr_space, CSR1212_ALL_SPACE_END); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 825 | if (lu->status_fifo_addr == CSR1212_INVALID_ADDR_SPACE) { |
Stefan Richter | 35bdddb | 2006-01-31 00:13:33 -0500 | [diff] [blame] | 826 | SBP2_ERR("failed to allocate status FIFO address range"); |
| 827 | goto failed_alloc; |
| 828 | } |
| 829 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 830 | shost = scsi_host_alloc(&sbp2_shost_template, sizeof(unsigned long)); |
| 831 | if (!shost) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | SBP2_ERR("failed to register scsi host"); |
| 833 | goto failed_alloc; |
| 834 | } |
| 835 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 836 | shost->hostdata[0] = (unsigned long)lu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 838 | if (!scsi_add_host(shost, &ud->device)) { |
| 839 | lu->shost = shost; |
| 840 | return lu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | SBP2_ERR("failed to add scsi host"); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 844 | scsi_host_put(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
| 846 | failed_alloc: |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 847 | sbp2_remove_device(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | return NULL; |
| 849 | } |
| 850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | static void sbp2_host_reset(struct hpsb_host *host) |
| 852 | { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 853 | struct sbp2_fwhost_info *hi; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 854 | struct sbp2_lu *lu; |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 855 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | |
| 857 | hi = hpsb_get_hostinfo(&sbp2_highlevel, host); |
Stefan Richter | 2cccbb5 | 2006-08-14 18:59:00 +0200 | [diff] [blame] | 858 | if (!hi) |
| 859 | return; |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 860 | |
| 861 | read_lock_irqsave(&sbp2_hi_logical_units_lock, flags); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 862 | list_for_each_entry(lu, &hi->logical_units, lu_list) |
| 863 | if (likely(atomic_read(&lu->state) != |
Stefan Richter | 2cccbb5 | 2006-08-14 18:59:00 +0200 | [diff] [blame] | 864 | SBP2LU_STATE_IN_SHUTDOWN)) { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 865 | atomic_set(&lu->state, SBP2LU_STATE_IN_RESET); |
| 866 | scsi_block_requests(lu->shost); |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 867 | } |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 868 | read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 871 | static int sbp2_start_device(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 873 | struct sbp2_fwhost_info *hi = lu->hi; |
James Bottomley | 146f726 | 2005-09-10 12:44:09 -0500 | [diff] [blame] | 874 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 876 | lu->login_response = dma_alloc_coherent(hi->host->device.parent, |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 877 | sizeof(struct sbp2_login_response), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 878 | &lu->login_response_dma, GFP_KERNEL); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 879 | if (!lu->login_response) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 882 | lu->query_logins_orb = dma_alloc_coherent(hi->host->device.parent, |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 883 | sizeof(struct sbp2_query_logins_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 884 | &lu->query_logins_orb_dma, GFP_KERNEL); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 885 | if (!lu->query_logins_orb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 888 | lu->query_logins_response = dma_alloc_coherent(hi->host->device.parent, |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 889 | sizeof(struct sbp2_query_logins_response), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 890 | &lu->query_logins_response_dma, GFP_KERNEL); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 891 | if (!lu->query_logins_response) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 894 | lu->reconnect_orb = dma_alloc_coherent(hi->host->device.parent, |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 895 | sizeof(struct sbp2_reconnect_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 896 | &lu->reconnect_orb_dma, GFP_KERNEL); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 897 | if (!lu->reconnect_orb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 900 | lu->logout_orb = dma_alloc_coherent(hi->host->device.parent, |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 901 | sizeof(struct sbp2_logout_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 902 | &lu->logout_orb_dma, GFP_KERNEL); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 903 | if (!lu->logout_orb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 906 | lu->login_orb = dma_alloc_coherent(hi->host->device.parent, |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 907 | sizeof(struct sbp2_login_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 908 | &lu->login_orb_dma, GFP_KERNEL); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 909 | if (!lu->login_orb) |
Stefan Richter | eaceec7 | 2005-12-13 11:05:05 -0500 | [diff] [blame] | 910 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | |
Stefan Richter | 3d269cb | 2007-02-04 20:57:38 +0100 | [diff] [blame] | 912 | if (sbp2util_create_command_orb_pool(lu)) |
| 913 | goto alloc_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 915 | /* Wait a second before trying to log in. Previously logged in |
| 916 | * initiators need a chance to reconnect. */ |
Stefan Richter | 902abed | 2006-08-14 18:56:00 +0200 | [diff] [blame] | 917 | if (msleep_interruptible(1000)) { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 918 | sbp2_remove_device(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | return -EINTR; |
| 920 | } |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 921 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 922 | if (sbp2_login_device(lu)) { |
| 923 | sbp2_remove_device(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | return -EBUSY; |
| 925 | } |
| 926 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 927 | sbp2_set_busy_timeout(lu); |
| 928 | sbp2_agent_reset(lu, 1); |
| 929 | sbp2_max_speed_and_size(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Stefan Richter | d94a983 | 2008-02-03 23:07:44 +0100 | [diff] [blame] | 931 | if (lu->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY) |
| 932 | ssleep(SBP2_INQUIRY_DELAY); |
| 933 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 934 | error = scsi_add_device(lu->shost, 0, lu->ud->id, 0); |
James Bottomley | 146f726 | 2005-09-10 12:44:09 -0500 | [diff] [blame] | 935 | if (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | SBP2_ERR("scsi_add_device failed"); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 937 | sbp2_logout_device(lu); |
| 938 | sbp2_remove_device(lu); |
James Bottomley | 146f726 | 2005-09-10 12:44:09 -0500 | [diff] [blame] | 939 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | return 0; |
Stefan Richter | eaceec7 | 2005-12-13 11:05:05 -0500 | [diff] [blame] | 943 | |
| 944 | alloc_fail: |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 945 | SBP2_ERR("Could not allocate memory for lu"); |
| 946 | sbp2_remove_device(lu); |
Stefan Richter | eaceec7 | 2005-12-13 11:05:05 -0500 | [diff] [blame] | 947 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } |
| 949 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 950 | static void sbp2_remove_device(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 952 | struct sbp2_fwhost_info *hi; |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 953 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 955 | if (!lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | return; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 957 | hi = lu->hi; |
Stefan Richter | a2ee3f9 | 2007-08-11 11:51:16 +0200 | [diff] [blame] | 958 | if (!hi) |
| 959 | goto no_hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 961 | if (lu->shost) { |
| 962 | scsi_remove_host(lu->shost); |
| 963 | scsi_host_put(lu->shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | } |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 965 | flush_scheduled_work(); |
Stefan Richter | a2ee3f9 | 2007-08-11 11:51:16 +0200 | [diff] [blame] | 966 | sbp2util_remove_command_orb_pool(lu, hi->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 968 | write_lock_irqsave(&sbp2_hi_logical_units_lock, flags); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 969 | list_del(&lu->lu_list); |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 970 | write_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 972 | if (lu->login_response) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 973 | dma_free_coherent(hi->host->device.parent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | sizeof(struct sbp2_login_response), |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 975 | lu->login_response, |
| 976 | lu->login_response_dma); |
| 977 | if (lu->login_orb) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 978 | dma_free_coherent(hi->host->device.parent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | sizeof(struct sbp2_login_orb), |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 980 | lu->login_orb, |
| 981 | lu->login_orb_dma); |
| 982 | if (lu->reconnect_orb) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 983 | dma_free_coherent(hi->host->device.parent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | sizeof(struct sbp2_reconnect_orb), |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 985 | lu->reconnect_orb, |
| 986 | lu->reconnect_orb_dma); |
| 987 | if (lu->logout_orb) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 988 | dma_free_coherent(hi->host->device.parent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | sizeof(struct sbp2_logout_orb), |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 990 | lu->logout_orb, |
| 991 | lu->logout_orb_dma); |
| 992 | if (lu->query_logins_orb) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 993 | dma_free_coherent(hi->host->device.parent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | sizeof(struct sbp2_query_logins_orb), |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 995 | lu->query_logins_orb, |
| 996 | lu->query_logins_orb_dma); |
| 997 | if (lu->query_logins_response) |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 998 | dma_free_coherent(hi->host->device.parent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | sizeof(struct sbp2_query_logins_response), |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1000 | lu->query_logins_response, |
| 1001 | lu->query_logins_response_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1003 | if (lu->status_fifo_addr != CSR1212_INVALID_ADDR_SPACE) |
Stefan Richter | 35bdddb | 2006-01-31 00:13:33 -0500 | [diff] [blame] | 1004 | hpsb_unregister_addrspace(&sbp2_highlevel, hi->host, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1005 | lu->status_fifo_addr); |
Stefan Richter | 35bdddb | 2006-01-31 00:13:33 -0500 | [diff] [blame] | 1006 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1007 | lu->ud->device.driver_data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | |
Stefan Richter | a2ee3f9 | 2007-08-11 11:51:16 +0200 | [diff] [blame] | 1009 | module_put(hi->host->driver->owner); |
| 1010 | no_hi: |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1011 | kfree(lu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | } |
| 1013 | |
| 1014 | #ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA |
| 1015 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1016 | * Deal with write requests on adapters which do not support physical DMA or |
| 1017 | * have it switched off. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | */ |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1019 | static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid, |
| 1020 | int destid, quadlet_t *data, u64 addr, |
| 1021 | size_t length, u16 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | { |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1023 | memcpy(bus_to_virt((u32) addr), data, length); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1024 | return RCODE_COMPLETE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1028 | * Deal with read requests on adapters which do not support physical DMA or |
| 1029 | * have it switched off. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | */ |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1031 | static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid, |
| 1032 | quadlet_t *data, u64 addr, size_t length, |
| 1033 | u16 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | { |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1035 | memcpy(data, bus_to_virt((u32) addr), length); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1036 | return RCODE_COMPLETE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
| 1038 | #endif |
| 1039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | /************************************** |
| 1041 | * SBP-2 protocol related section |
| 1042 | **************************************/ |
| 1043 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1044 | static int sbp2_query_logins(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1046 | struct sbp2_fwhost_info *hi = lu->hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | quadlet_t data[2]; |
| 1048 | int max_logins; |
| 1049 | int active_logins; |
| 1050 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1051 | lu->query_logins_orb->reserved1 = 0x0; |
| 1052 | lu->query_logins_orb->reserved2 = 0x0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1054 | lu->query_logins_orb->query_response_lo = lu->query_logins_response_dma; |
| 1055 | lu->query_logins_orb->query_response_hi = |
| 1056 | ORB_SET_NODE_ID(hi->host->node_id); |
| 1057 | lu->query_logins_orb->lun_misc = |
| 1058 | ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST); |
| 1059 | lu->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1); |
| 1060 | lu->query_logins_orb->lun_misc |= ORB_SET_LUN(lu->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1062 | lu->query_logins_orb->reserved_resp_length = |
| 1063 | ORB_SET_QUERY_LOGINS_RESP_LENGTH( |
| 1064 | sizeof(struct sbp2_query_logins_response)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1066 | lu->query_logins_orb->status_fifo_hi = |
| 1067 | ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id); |
| 1068 | lu->query_logins_orb->status_fifo_lo = |
| 1069 | ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1071 | sbp2util_cpu_to_be32_buffer(lu->query_logins_orb, |
| 1072 | sizeof(struct sbp2_query_logins_orb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1074 | memset(lu->query_logins_response, 0, |
| 1075 | sizeof(struct sbp2_query_logins_response)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | data[0] = ORB_SET_NODE_ID(hi->host->node_id); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1078 | data[1] = lu->query_logins_orb_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | sbp2util_cpu_to_be32_buffer(data, 8); |
| 1080 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1081 | hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1083 | if (sbp2util_access_timeout(lu, 2*HZ)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | SBP2_INFO("Error querying logins to SBP-2 device - timed out"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1085 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | } |
| 1087 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1088 | if (lu->status_block.ORB_offset_lo != lu->query_logins_orb_dma) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | SBP2_INFO("Error querying logins to SBP-2 device - timed out"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1090 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | } |
| 1092 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1093 | if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) { |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1094 | SBP2_INFO("Error querying logins to SBP-2 device - failed"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1095 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | } |
| 1097 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1098 | sbp2util_cpu_to_be32_buffer(lu->query_logins_response, |
| 1099 | sizeof(struct sbp2_query_logins_response)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1101 | max_logins = RESPONSE_GET_MAX_LOGINS( |
| 1102 | lu->query_logins_response->length_max_logins); |
Ben Collins | 20f4578 | 2006-06-12 18:13:11 -0400 | [diff] [blame] | 1103 | SBP2_INFO("Maximum concurrent logins supported: %d", max_logins); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1105 | active_logins = RESPONSE_GET_ACTIVE_LOGINS( |
| 1106 | lu->query_logins_response->length_max_logins); |
Ben Collins | 20f4578 | 2006-06-12 18:13:11 -0400 | [diff] [blame] | 1107 | SBP2_INFO("Number of active logins: %d", active_logins); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | |
| 1109 | if (active_logins >= max_logins) { |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1110 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | return 0; |
| 1114 | } |
| 1115 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1116 | static int sbp2_login_device(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1118 | struct sbp2_fwhost_info *hi = lu->hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | quadlet_t data[2]; |
| 1120 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1121 | if (!lu->login_orb) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1122 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1124 | if (!sbp2_exclusive_login && sbp2_query_logins(lu)) { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1125 | SBP2_INFO("Device does not support any more concurrent logins"); |
| 1126 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1129 | /* assume no password */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1130 | lu->login_orb->password_hi = 0; |
| 1131 | lu->login_orb->password_lo = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1133 | lu->login_orb->login_response_lo = lu->login_response_dma; |
| 1134 | lu->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id); |
| 1135 | lu->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST); |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1136 | |
| 1137 | /* one second reconnect time */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1138 | lu->login_orb->lun_misc |= ORB_SET_RECONNECT(0); |
| 1139 | lu->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(sbp2_exclusive_login); |
| 1140 | lu->login_orb->lun_misc |= ORB_SET_NOTIFY(1); |
| 1141 | lu->login_orb->lun_misc |= ORB_SET_LUN(lu->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1143 | lu->login_orb->passwd_resp_lengths = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1146 | lu->login_orb->status_fifo_hi = |
| 1147 | ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id); |
| 1148 | lu->login_orb->status_fifo_lo = |
| 1149 | ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1151 | sbp2util_cpu_to_be32_buffer(lu->login_orb, |
| 1152 | sizeof(struct sbp2_login_orb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1154 | memset(lu->login_response, 0, sizeof(struct sbp2_login_response)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | data[0] = ORB_SET_NODE_ID(hi->host->node_id); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1157 | data[1] = lu->login_orb_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | sbp2util_cpu_to_be32_buffer(data, 8); |
| 1159 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1160 | hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1162 | /* wait up to 20 seconds for login status */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1163 | if (sbp2util_access_timeout(lu, 20*HZ)) { |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 1164 | SBP2_ERR("Error logging into SBP-2 device - timed out"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1165 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1168 | /* make sure that the returned status matches the login ORB */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1169 | if (lu->status_block.ORB_offset_lo != lu->login_orb_dma) { |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1170 | SBP2_ERR("Error logging into SBP-2 device - timed out"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1171 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1174 | if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) { |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1175 | SBP2_ERR("Error logging into SBP-2 device - failed"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1176 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1179 | sbp2util_cpu_to_be32_buffer(lu->login_response, |
| 1180 | sizeof(struct sbp2_login_response)); |
| 1181 | lu->command_block_agent_addr = |
| 1182 | ((u64)lu->login_response->command_block_agent_hi) << 32; |
| 1183 | lu->command_block_agent_addr |= |
| 1184 | ((u64)lu->login_response->command_block_agent_lo); |
| 1185 | lu->command_block_agent_addr &= 0x0000ffffffffffffULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
| 1187 | SBP2_INFO("Logged into SBP-2 device"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1188 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1191 | static int sbp2_logout_device(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1193 | struct sbp2_fwhost_info *hi = lu->hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | quadlet_t data[2]; |
| 1195 | int error; |
| 1196 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1197 | lu->logout_orb->reserved1 = 0x0; |
| 1198 | lu->logout_orb->reserved2 = 0x0; |
| 1199 | lu->logout_orb->reserved3 = 0x0; |
| 1200 | lu->logout_orb->reserved4 = 0x0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1202 | lu->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST); |
| 1203 | lu->logout_orb->login_ID_misc |= |
| 1204 | ORB_SET_LOGIN_ID(lu->login_response->length_login_ID); |
| 1205 | lu->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1207 | lu->logout_orb->reserved5 = 0x0; |
| 1208 | lu->logout_orb->status_fifo_hi = |
| 1209 | ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id); |
| 1210 | lu->logout_orb->status_fifo_lo = |
| 1211 | ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1213 | sbp2util_cpu_to_be32_buffer(lu->logout_orb, |
| 1214 | sizeof(struct sbp2_logout_orb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | data[0] = ORB_SET_NODE_ID(hi->host->node_id); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1217 | data[1] = lu->logout_orb_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | sbp2util_cpu_to_be32_buffer(data, 8); |
| 1219 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1220 | error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | if (error) |
| 1222 | return error; |
| 1223 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1224 | /* wait up to 1 second for the device to complete logout */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1225 | if (sbp2util_access_timeout(lu, HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | return -EIO; |
| 1227 | |
| 1228 | SBP2_INFO("Logged out of SBP-2 device"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1229 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | } |
| 1231 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1232 | static int sbp2_reconnect_device(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1234 | struct sbp2_fwhost_info *hi = lu->hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | quadlet_t data[2]; |
| 1236 | int error; |
| 1237 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1238 | lu->reconnect_orb->reserved1 = 0x0; |
| 1239 | lu->reconnect_orb->reserved2 = 0x0; |
| 1240 | lu->reconnect_orb->reserved3 = 0x0; |
| 1241 | lu->reconnect_orb->reserved4 = 0x0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1243 | lu->reconnect_orb->login_ID_misc = |
| 1244 | ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST); |
| 1245 | lu->reconnect_orb->login_ID_misc |= |
| 1246 | ORB_SET_LOGIN_ID(lu->login_response->length_login_ID); |
| 1247 | lu->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1249 | lu->reconnect_orb->reserved5 = 0x0; |
| 1250 | lu->reconnect_orb->status_fifo_hi = |
| 1251 | ORB_SET_STATUS_FIFO_HI(lu->status_fifo_addr, hi->host->node_id); |
| 1252 | lu->reconnect_orb->status_fifo_lo = |
| 1253 | ORB_SET_STATUS_FIFO_LO(lu->status_fifo_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1255 | sbp2util_cpu_to_be32_buffer(lu->reconnect_orb, |
| 1256 | sizeof(struct sbp2_reconnect_orb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | data[0] = ORB_SET_NODE_ID(hi->host->node_id); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1259 | data[1] = lu->reconnect_orb_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | sbp2util_cpu_to_be32_buffer(data, 8); |
| 1261 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1262 | error = hpsb_node_write(lu->ne, lu->management_agent_addr, data, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | if (error) |
| 1264 | return error; |
| 1265 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1266 | /* wait up to 1 second for reconnect status */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1267 | if (sbp2util_access_timeout(lu, HZ)) { |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 1268 | SBP2_ERR("Error reconnecting to SBP-2 device - timed out"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1269 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | } |
| 1271 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1272 | /* make sure that the returned status matches the reconnect ORB */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1273 | if (lu->status_block.ORB_offset_lo != lu->reconnect_orb_dma) { |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1274 | SBP2_ERR("Error reconnecting to SBP-2 device - timed out"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1275 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | } |
| 1277 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1278 | if (STATUS_TEST_RDS(lu->status_block.ORB_offset_hi_misc)) { |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1279 | SBP2_ERR("Error reconnecting to SBP-2 device - failed"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1280 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | } |
| 1282 | |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1283 | SBP2_INFO("Reconnected to SBP-2 device"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1284 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | } |
| 1286 | |
| 1287 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1288 | * Set the target node's Single Phase Retry limit. Affects the target's retry |
| 1289 | * behaviour if our node is too busy to accept requests. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1291 | static int sbp2_set_busy_timeout(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | { |
| 1293 | quadlet_t data; |
| 1294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1296 | if (hpsb_node_write(lu->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4)) |
Harvey Harrison | b1ce1fd | 2008-03-05 18:24:54 -0800 | [diff] [blame] | 1297 | SBP2_ERR("%s error", __func__); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1298 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1301 | static void sbp2_parse_unit_directory(struct sbp2_lu *lu, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | struct unit_directory *ud) |
| 1303 | { |
| 1304 | struct csr1212_keyval *kv; |
| 1305 | struct csr1212_dentry *dentry; |
| 1306 | u64 management_agent_addr; |
Stefan Richter | 9117c6d | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1307 | u32 unit_characteristics, firmware_revision; |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1308 | unsigned workarounds; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | int i; |
| 1310 | |
Stefan Richter | 9117c6d | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1311 | management_agent_addr = 0; |
| 1312 | unit_characteristics = 0; |
| 1313 | firmware_revision = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) { |
| 1316 | switch (kv->key.id) { |
| 1317 | case CSR1212_KV_ID_DEPENDENT_INFO: |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1318 | if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | management_agent_addr = |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1320 | CSR1212_REGISTER_SPACE_BASE + |
| 1321 | (kv->value.csr_offset << 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1323 | else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1324 | lu->lun = ORB_SET_LUN(kv->value.immediate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | break; |
| 1326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | case SBP2_UNIT_CHARACTERISTICS_KEY: |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1328 | /* FIXME: This is ignored so far. |
| 1329 | * See SBP-2 clause 7.4.8. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | unit_characteristics = kv->value.immediate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | break; |
| 1332 | |
| 1333 | case SBP2_FIRMWARE_REVISION_KEY: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | firmware_revision = kv->value.immediate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | break; |
| 1336 | |
| 1337 | default: |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1338 | /* FIXME: Check for SBP2_DEVICE_TYPE_AND_LUN_KEY. |
| 1339 | * Its "ordered" bit has consequences for command ORB |
| 1340 | * list handling. See SBP-2 clauses 4.6, 7.4.11, 10.2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | break; |
| 1342 | } |
| 1343 | } |
| 1344 | |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1345 | workarounds = sbp2_default_workarounds; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | |
Stefan Richter | 679c0cd | 2006-05-15 22:08:09 +0200 | [diff] [blame] | 1347 | if (!(workarounds & SBP2_WORKAROUND_OVERRIDE)) |
| 1348 | for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) { |
Stefan Richter | 4618fd3 | 2006-12-30 15:37:09 +0100 | [diff] [blame] | 1349 | if (sbp2_workarounds_table[i].firmware_revision != |
| 1350 | SBP2_ROM_VALUE_WILDCARD && |
Stefan Richter | 679c0cd | 2006-05-15 22:08:09 +0200 | [diff] [blame] | 1351 | sbp2_workarounds_table[i].firmware_revision != |
| 1352 | (firmware_revision & 0xffff00)) |
| 1353 | continue; |
Stefan Richter | 4618fd3 | 2006-12-30 15:37:09 +0100 | [diff] [blame] | 1354 | if (sbp2_workarounds_table[i].model_id != |
| 1355 | SBP2_ROM_VALUE_WILDCARD && |
Stefan Richter | 679c0cd | 2006-05-15 22:08:09 +0200 | [diff] [blame] | 1356 | sbp2_workarounds_table[i].model_id != ud->model_id) |
| 1357 | continue; |
| 1358 | workarounds |= sbp2_workarounds_table[i].workarounds; |
| 1359 | break; |
| 1360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1362 | if (workarounds) |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 1363 | SBP2_INFO("Workarounds for node " NODE_BUS_FMT ": 0x%x " |
| 1364 | "(firmware_revision 0x%06x, vendor_id 0x%06x," |
| 1365 | " model_id 0x%06x)", |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1366 | NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid), |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 1367 | workarounds, firmware_revision, |
| 1368 | ud->vendor_id ? ud->vendor_id : ud->ne->vendor_id, |
| 1369 | ud->model_id); |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1370 | |
| 1371 | /* We would need one SCSI host template for each target to adjust |
| 1372 | * max_sectors on the fly, therefore warn only. */ |
| 1373 | if (workarounds & SBP2_WORKAROUND_128K_MAX_TRANS && |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1374 | (sbp2_max_sectors * 512) > (128 * 1024)) |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1375 | SBP2_INFO("Node " NODE_BUS_FMT ": Bridge only supports 128KB " |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1376 | "max transfer size. WARNING: Current max_sectors " |
| 1377 | "setting is larger than 128KB (%d sectors)", |
| 1378 | NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid), |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1379 | sbp2_max_sectors); |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | /* If this is a logical unit directory entry, process the parent |
| 1382 | * to get the values. */ |
| 1383 | if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1384 | struct unit_directory *parent_ud = container_of( |
| 1385 | ud->device.parent, struct unit_directory, device); |
| 1386 | sbp2_parse_unit_directory(lu, parent_ud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | } else { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1388 | lu->management_agent_addr = management_agent_addr; |
| 1389 | lu->workarounds = workarounds; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | if (ud->flags & UNIT_DIRECTORY_HAS_LUN) |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1391 | lu->lun = ORB_SET_LUN(ud->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | } |
| 1394 | |
Ben Collins | fd23ade | 2006-06-12 18:14:14 -0400 | [diff] [blame] | 1395 | #define SBP2_PAYLOAD_TO_BYTES(p) (1 << ((p) + 2)) |
| 1396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | /* |
| 1398 | * This function is called in order to determine the max speed and packet |
| 1399 | * size we can use in our ORBs. Note, that we (the driver and host) only |
| 1400 | * initiate the transaction. The SBP-2 device actually transfers the data |
| 1401 | * (by reading from the DMA area we tell it). This means that the SBP-2 |
| 1402 | * device decides the actual maximum data it can transfer. We just tell it |
| 1403 | * the speed that it needs to use, and the max_rec the host supports, and |
| 1404 | * it takes care of the rest. |
| 1405 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1406 | static int sbp2_max_speed_and_size(struct sbp2_lu *lu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1408 | struct sbp2_fwhost_info *hi = lu->hi; |
Ben Collins | fd23ade | 2006-06-12 18:14:14 -0400 | [diff] [blame] | 1409 | u8 payload; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1411 | lu->speed_code = hi->host->speed[NODEID_TO_NODE(lu->ne->nodeid)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1413 | if (lu->speed_code > sbp2_max_speed) { |
| 1414 | lu->speed_code = sbp2_max_speed; |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1415 | SBP2_INFO("Reducing speed to %s", |
| 1416 | hpsb_speedto_str[sbp2_max_speed]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /* Payload size is the lesser of what our speed supports and what |
| 1420 | * our host supports. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1421 | payload = min(sbp2_speedto_max_payload[lu->speed_code], |
Ben Collins | fd23ade | 2006-06-12 18:14:14 -0400 | [diff] [blame] | 1422 | (u8) (hi->host->csr.max_rec - 1)); |
| 1423 | |
| 1424 | /* If physical DMA is off, work around limitation in ohci1394: |
| 1425 | * packet size must not exceed PAGE_SIZE */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1426 | if (lu->ne->host->low_addr_space < (1ULL << 32)) |
Ben Collins | fd23ade | 2006-06-12 18:14:14 -0400 | [diff] [blame] | 1427 | while (SBP2_PAYLOAD_TO_BYTES(payload) + 24 > PAGE_SIZE && |
| 1428 | payload) |
| 1429 | payload--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1431 | SBP2_INFO("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]", |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1432 | NODE_BUS_ARGS(hi->host, lu->ne->nodeid), |
| 1433 | hpsb_speedto_str[lu->speed_code], |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1434 | SBP2_PAYLOAD_TO_BYTES(payload)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1436 | lu->max_payload_size = payload; |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1437 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | } |
| 1439 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1440 | static int sbp2_agent_reset(struct sbp2_lu *lu, int wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | { |
| 1442 | quadlet_t data; |
| 1443 | u64 addr; |
| 1444 | int retval; |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1445 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
Stefan Richter | ec9b7e1 | 2006-12-07 23:23:25 +0100 | [diff] [blame] | 1447 | /* flush lu->protocol_work */ |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 1448 | if (wait) |
| 1449 | flush_scheduled_work(); |
| 1450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | data = ntohl(SBP2_AGENT_RESET_DATA); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1452 | addr = lu->command_block_agent_addr + SBP2_AGENT_RESET_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | |
| 1454 | if (wait) |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1455 | retval = hpsb_node_write(lu->ne, addr, &data, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | else |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1457 | retval = sbp2util_node_write_no_wait(lu->ne, addr, &data, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
| 1459 | if (retval < 0) { |
| 1460 | SBP2_ERR("hpsb_node_write failed.\n"); |
| 1461 | return -EIO; |
| 1462 | } |
| 1463 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1464 | /* make sure that the ORB_POINTER is written on next command */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1465 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 1466 | lu->last_orb = NULL; |
| 1467 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1469 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | } |
| 1471 | |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1472 | static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb, |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1473 | struct sbp2_fwhost_info *hi, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1474 | struct sbp2_command_info *cmd, |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1475 | unsigned int scsi_use_sg, |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1476 | struct scatterlist *sg, |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1477 | u32 orb_direction, |
| 1478 | enum dma_data_direction dma_dir) |
| 1479 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1480 | cmd->dma_dir = dma_dir; |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1481 | orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id); |
| 1482 | orb->misc |= ORB_SET_DIRECTION(orb_direction); |
| 1483 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1484 | /* special case if only one element (and less than 64KB in size) */ |
Stefan Richter | 5fcf500 | 2008-02-01 22:31:10 +0100 | [diff] [blame] | 1485 | if (scsi_use_sg == 1 && sg->length <= SBP2_MAX_SG_ELEMENT_LENGTH) { |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1486 | |
Stefan Richter | 5fcf500 | 2008-02-01 22:31:10 +0100 | [diff] [blame] | 1487 | cmd->dma_size = sg->length; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1488 | cmd->dma_type = CMD_DMA_PAGE; |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1489 | cmd->cmd_dma = dma_map_page(hi->host->device.parent, |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1490 | sg_page(sg), sg->offset, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1491 | cmd->dma_size, cmd->dma_dir); |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1492 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1493 | orb->data_descriptor_lo = cmd->cmd_dma; |
| 1494 | orb->misc |= ORB_SET_DATA_SIZE(cmd->dma_size); |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1495 | |
| 1496 | } else { |
| 1497 | struct sbp2_unrestricted_page_table *sg_element = |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1498 | &cmd->scatter_gather_element[0]; |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1499 | u32 sg_count, sg_len; |
| 1500 | dma_addr_t sg_addr; |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1501 | int i, count = dma_map_sg(hi->host->device.parent, sg, |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1502 | scsi_use_sg, dma_dir); |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1503 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1504 | cmd->dma_size = scsi_use_sg; |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1505 | cmd->sge_buffer = sg; |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1506 | |
| 1507 | /* use page tables (s/g) */ |
| 1508 | orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1509 | orb->data_descriptor_lo = cmd->sge_dma; |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1510 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1511 | /* loop through and fill out our SBP-2 page tables |
| 1512 | * (and split up anything too large) */ |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1513 | for (i = 0, sg_count = 0; i < count; i++, sg = sg_next(sg)) { |
| 1514 | sg_len = sg_dma_len(sg); |
| 1515 | sg_addr = sg_dma_address(sg); |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1516 | while (sg_len) { |
| 1517 | sg_element[sg_count].segment_base_lo = sg_addr; |
| 1518 | if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) { |
| 1519 | sg_element[sg_count].length_segment_base_hi = |
| 1520 | PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH); |
| 1521 | sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH; |
| 1522 | sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH; |
| 1523 | } else { |
| 1524 | sg_element[sg_count].length_segment_base_hi = |
| 1525 | PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len); |
| 1526 | sg_len = 0; |
| 1527 | } |
| 1528 | sg_count++; |
| 1529 | } |
| 1530 | } |
| 1531 | |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1532 | orb->misc |= ORB_SET_DATA_SIZE(sg_count); |
| 1533 | |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1534 | sbp2util_cpu_to_be32_buffer(sg_element, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1535 | (sizeof(struct sbp2_unrestricted_page_table)) * |
| 1536 | sg_count); |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1537 | } |
| 1538 | } |
| 1539 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1540 | static void sbp2_create_command_orb(struct sbp2_lu *lu, |
| 1541 | struct sbp2_command_info *cmd, |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1542 | unchar *scsi_cmd, |
| 1543 | unsigned int scsi_use_sg, |
| 1544 | unsigned int scsi_request_bufflen, |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1545 | struct scatterlist *sg, |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1546 | enum dma_data_direction dma_dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1548 | struct sbp2_fwhost_info *hi = lu->hi; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1549 | struct sbp2_command_orb *orb = &cmd->command_orb; |
Stefan Richter | cf8d2c0 | 2005-12-13 11:05:03 -0500 | [diff] [blame] | 1550 | u32 orb_direction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | |
| 1552 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1553 | * Set-up our command ORB. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | * |
| 1555 | * NOTE: We're doing unrestricted page tables (s/g), as this is |
| 1556 | * best performance (at least with the devices I have). This means |
| 1557 | * that data_size becomes the number of s/g elements, and |
| 1558 | * page_size should be zero (for unrestricted). |
| 1559 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1560 | orb->next_ORB_hi = ORB_SET_NULL_PTR(1); |
| 1561 | orb->next_ORB_lo = 0x0; |
| 1562 | orb->misc = ORB_SET_MAX_PAYLOAD(lu->max_payload_size); |
| 1563 | orb->misc |= ORB_SET_SPEED(lu->speed_code); |
| 1564 | orb->misc |= ORB_SET_NOTIFY(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | |
Stefan Richter | 43863eb | 2005-12-12 23:03:24 -0500 | [diff] [blame] | 1566 | if (dma_dir == DMA_NONE) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1567 | orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER; |
Stefan Richter | 43863eb | 2005-12-12 23:03:24 -0500 | [diff] [blame] | 1568 | else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1569 | orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA; |
Stefan Richter | 43863eb | 2005-12-12 23:03:24 -0500 | [diff] [blame] | 1570 | else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1571 | orb_direction = ORB_DIRECTION_READ_FROM_MEDIA; |
Stefan Richter | 43863eb | 2005-12-12 23:03:24 -0500 | [diff] [blame] | 1572 | else { |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1573 | SBP2_INFO("Falling back to DMA_NONE"); |
Stefan Richter | 43863eb | 2005-12-12 23:03:24 -0500 | [diff] [blame] | 1574 | orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1577 | /* set up our page table stuff */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1579 | orb->data_descriptor_hi = 0x0; |
| 1580 | orb->data_descriptor_lo = 0x0; |
| 1581 | orb->misc |= ORB_SET_DIRECTION(1); |
FUJITA Tomonori | d7dea2c | 2007-05-14 20:00:04 +0900 | [diff] [blame] | 1582 | } else |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1583 | sbp2_prep_command_orb_sg(orb, hi, cmd, scsi_use_sg, sg, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1584 | orb_direction, dma_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1586 | sbp2util_cpu_to_be32_buffer(orb, sizeof(*orb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1588 | memset(orb->cdb, 0, 12); |
| 1589 | memcpy(orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | } |
| 1591 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1592 | static void sbp2_link_orb_command(struct sbp2_lu *lu, |
| 1593 | struct sbp2_command_info *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1595 | struct sbp2_fwhost_info *hi = lu->hi; |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1596 | struct sbp2_command_orb *last_orb; |
| 1597 | dma_addr_t last_orb_dma; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1598 | u64 addr = lu->command_block_agent_addr; |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1599 | quadlet_t data[2]; |
| 1600 | size_t length; |
| 1601 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1603 | dma_sync_single_for_device(hi->host->device.parent, |
| 1604 | cmd->command_orb_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1605 | sizeof(struct sbp2_command_orb), |
| 1606 | DMA_TO_DEVICE); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1607 | dma_sync_single_for_device(hi->host->device.parent, cmd->sge_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1608 | sizeof(cmd->scatter_gather_element), |
Stefan Richter | 2446a79 | 2007-02-04 20:54:57 +0100 | [diff] [blame] | 1609 | DMA_TO_DEVICE); |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1610 | |
| 1611 | /* check to see if there are any previous orbs to use */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1612 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 1613 | last_orb = lu->last_orb; |
| 1614 | last_orb_dma = lu->last_orb_dma; |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1615 | if (!last_orb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | /* |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1617 | * last_orb == NULL means: We know that the target's fetch agent |
| 1618 | * is not active right now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | */ |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1620 | addr += SBP2_ORB_POINTER_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | data[0] = ORB_SET_NODE_ID(hi->host->node_id); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1622 | data[1] = cmd->command_orb_dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | sbp2util_cpu_to_be32_buffer(data, 8); |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1624 | length = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | /* |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1627 | * last_orb != NULL means: We know that the target's fetch agent |
| 1628 | * is (very probably) not dead or in reset state right now. |
| 1629 | * We have an ORB already sent that we can append a new one to. |
| 1630 | * The target's fetch agent may or may not have read this |
| 1631 | * previous ORB yet. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | */ |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1633 | dma_sync_single_for_cpu(hi->host->device.parent, last_orb_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1634 | sizeof(struct sbp2_command_orb), |
| 1635 | DMA_TO_DEVICE); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1636 | last_orb->next_ORB_lo = cpu_to_be32(cmd->command_orb_dma); |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1637 | wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | /* Tells hardware that this pointer is valid */ |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1639 | last_orb->next_ORB_hi = 0; |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1640 | dma_sync_single_for_device(hi->host->device.parent, |
| 1641 | last_orb_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1642 | sizeof(struct sbp2_command_orb), |
| 1643 | DMA_TO_DEVICE); |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1644 | addr += SBP2_DOORBELL_OFFSET; |
| 1645 | data[0] = 0; |
| 1646 | length = 4; |
| 1647 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1648 | lu->last_orb = &cmd->command_orb; |
| 1649 | lu->last_orb_dma = cmd->command_orb_dma; |
| 1650 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1652 | if (sbp2util_node_write_no_wait(lu->ne, addr, data, length)) { |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 1653 | /* |
| 1654 | * sbp2util_node_write_no_wait failed. We certainly ran out |
| 1655 | * of transaction labels, perhaps just because there were no |
| 1656 | * context switches which gave khpsbpkt a chance to collect |
| 1657 | * free tlabels. Try again in non-atomic context. If necessary, |
| 1658 | * the workqueue job will sleep to guaranteedly get a tlabel. |
| 1659 | * We do not accept new commands until the job is over. |
| 1660 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1661 | scsi_block_requests(lu->shost); |
| 1662 | PREPARE_WORK(&lu->protocol_work, |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 1663 | last_orb ? sbp2util_write_doorbell: |
Stefan Richter | ec9b7e1 | 2006-12-07 23:23:25 +0100 | [diff] [blame] | 1664 | sbp2util_write_orb_pointer); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1665 | schedule_work(&lu->protocol_work); |
Stefan Richter | 09ee67a | 2006-08-14 18:43:00 +0200 | [diff] [blame] | 1666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | } |
| 1668 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1669 | static int sbp2_send_command(struct sbp2_lu *lu, struct scsi_cmnd *SCpnt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | void (*done)(struct scsi_cmnd *)) |
| 1671 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1672 | unchar *scsi_cmd = (unchar *)SCpnt->cmnd; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1673 | struct sbp2_command_info *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1675 | cmd = sbp2util_allocate_command_orb(lu, SCpnt, done); |
| 1676 | if (!cmd) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1677 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | |
FUJITA Tomonori | d7dea2c | 2007-05-14 20:00:04 +0900 | [diff] [blame] | 1679 | sbp2_create_command_orb(lu, cmd, scsi_cmd, scsi_sg_count(SCpnt), |
Stefan Richter | 825f1df | 2007-11-04 14:59:24 +0100 | [diff] [blame] | 1680 | scsi_bufflen(SCpnt), scsi_sglist(SCpnt), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | SCpnt->sc_data_direction); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1682 | sbp2_link_orb_command(lu, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1684 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | } |
| 1686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | * Translates SBP-2 status into SCSI sense data for check conditions |
| 1689 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1690 | static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, |
| 1691 | unchar *sense_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | { |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1693 | /* OK, it's pretty ugly... ;-) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | sense_data[0] = 0x70; |
| 1695 | sense_data[1] = 0x0; |
| 1696 | sense_data[2] = sbp2_status[9]; |
| 1697 | sense_data[3] = sbp2_status[12]; |
| 1698 | sense_data[4] = sbp2_status[13]; |
| 1699 | sense_data[5] = sbp2_status[14]; |
| 1700 | sense_data[6] = sbp2_status[15]; |
| 1701 | sense_data[7] = 10; |
| 1702 | sense_data[8] = sbp2_status[16]; |
| 1703 | sense_data[9] = sbp2_status[17]; |
| 1704 | sense_data[10] = sbp2_status[18]; |
| 1705 | sense_data[11] = sbp2_status[19]; |
| 1706 | sense_data[12] = sbp2_status[10]; |
| 1707 | sense_data[13] = sbp2_status[11]; |
| 1708 | sense_data[14] = sbp2_status[20]; |
| 1709 | sense_data[15] = sbp2_status[21]; |
| 1710 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1711 | return sbp2_status[8] & 0x3f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | } |
| 1713 | |
Stefan Richter | 3e98eab4 | 2006-07-23 22:16:00 +0200 | [diff] [blame] | 1714 | static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, |
| 1715 | int destid, quadlet_t *data, u64 addr, |
| 1716 | size_t length, u16 fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1718 | struct sbp2_fwhost_info *hi; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1719 | struct sbp2_lu *lu = NULL, *lu_tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | struct scsi_cmnd *SCpnt = NULL; |
Stefan Richter | 3e98eab4 | 2006-07-23 22:16:00 +0200 | [diff] [blame] | 1721 | struct sbp2_status_block *sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | u32 scsi_status = SBP2_SCSI_STATUS_GOOD; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1723 | struct sbp2_command_info *cmd; |
Jody McIntyre | 7945619 | 2005-11-07 06:29:39 -0500 | [diff] [blame] | 1724 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1726 | if (unlikely(length < 8 || length > sizeof(struct sbp2_status_block))) { |
| 1727 | SBP2_ERR("Wrong size of status block"); |
| 1728 | return RCODE_ADDRESS_ERROR; |
| 1729 | } |
| 1730 | if (unlikely(!host)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | SBP2_ERR("host is NULL - this is bad!"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1732 | return RCODE_ADDRESS_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | hi = hpsb_get_hostinfo(&sbp2_highlevel, host); |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1735 | if (unlikely(!hi)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | SBP2_ERR("host info is NULL - this is bad!"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1737 | return RCODE_ADDRESS_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | } |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1739 | |
| 1740 | /* Find the unit which wrote the status. */ |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 1741 | read_lock_irqsave(&sbp2_hi_logical_units_lock, flags); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1742 | list_for_each_entry(lu_tmp, &hi->logical_units, lu_list) { |
| 1743 | if (lu_tmp->ne->nodeid == nodeid && |
| 1744 | lu_tmp->status_fifo_addr == addr) { |
| 1745 | lu = lu_tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | break; |
| 1747 | } |
| 1748 | } |
Stefan Richter | 261b5f6 | 2007-08-11 11:52:08 +0200 | [diff] [blame] | 1749 | read_unlock_irqrestore(&sbp2_hi_logical_units_lock, flags); |
| 1750 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1751 | if (unlikely(!lu)) { |
| 1752 | SBP2_ERR("lu is NULL - device is gone?"); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1753 | return RCODE_ADDRESS_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | } |
| 1755 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1756 | /* Put response into lu status fifo buffer. The first two bytes |
Stefan Richter | 3e98eab4 | 2006-07-23 22:16:00 +0200 | [diff] [blame] | 1757 | * come in big endian bit order. Often the target writes only a |
| 1758 | * truncated status block, minimally the first two quadlets. The rest |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1759 | * is implied to be zeros. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1760 | sb = &lu->status_block; |
Stefan Richter | 3e98eab4 | 2006-07-23 22:16:00 +0200 | [diff] [blame] | 1761 | memset(sb->command_set_dependent, 0, sizeof(sb->command_set_dependent)); |
| 1762 | memcpy(sb, data, length); |
| 1763 | sbp2util_be32_to_cpu_buffer(sb, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1765 | /* Ignore unsolicited status. Handle command ORB status. */ |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1766 | if (unlikely(STATUS_GET_SRC(sb->ORB_offset_hi_misc) == 2)) |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1767 | cmd = NULL; |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1768 | else |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1769 | cmd = sbp2util_find_command_for_orb(lu, sb->ORB_offset_lo); |
| 1770 | if (cmd) { |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1771 | dma_sync_single_for_cpu(hi->host->device.parent, |
| 1772 | cmd->command_orb_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1773 | sizeof(struct sbp2_command_orb), |
| 1774 | DMA_TO_DEVICE); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1775 | dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1776 | sizeof(cmd->scatter_gather_element), |
Stefan Richter | 2446a79 | 2007-02-04 20:54:57 +0100 | [diff] [blame] | 1777 | DMA_TO_DEVICE); |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1778 | /* Grab SCSI command pointers and check status. */ |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1779 | /* |
| 1780 | * FIXME: If the src field in the status is 1, the ORB DMA must |
| 1781 | * not be reused until status for a subsequent ORB is received. |
| 1782 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1783 | SCpnt = cmd->Current_SCpnt; |
| 1784 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 1785 | sbp2util_mark_command_completed(lu, cmd); |
| 1786 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | |
| 1788 | if (SCpnt) { |
Stefan Richter | abbca10 | 2006-08-14 18:51:00 +0200 | [diff] [blame] | 1789 | u32 h = sb->ORB_offset_hi_misc; |
| 1790 | u32 r = STATUS_GET_RESP(h); |
| 1791 | |
| 1792 | if (r != RESP_STATUS_REQUEST_COMPLETE) { |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1793 | SBP2_INFO("resp 0x%x, sbp_status 0x%x", |
Stefan Richter | abbca10 | 2006-08-14 18:51:00 +0200 | [diff] [blame] | 1794 | r, STATUS_GET_SBP_STATUS(h)); |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1795 | scsi_status = |
Stefan Richter | abbca10 | 2006-08-14 18:51:00 +0200 | [diff] [blame] | 1796 | r == RESP_STATUS_TRANSPORT_FAILURE ? |
| 1797 | SBP2_SCSI_STATUS_BUSY : |
Stefan Richter | 6065772 | 2006-07-23 22:18:00 +0200 | [diff] [blame] | 1798 | SBP2_SCSI_STATUS_COMMAND_TERMINATED; |
Stefan Richter | abbca10 | 2006-08-14 18:51:00 +0200 | [diff] [blame] | 1799 | } |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1800 | |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1801 | if (STATUS_GET_LEN(h) > 1) |
Stefan Richter | 3e98eab4 | 2006-07-23 22:16:00 +0200 | [diff] [blame] | 1802 | scsi_status = sbp2_status_to_sense_data( |
| 1803 | (unchar *)sb, SCpnt->sense_buffer); |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1804 | |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1805 | if (STATUS_TEST_DEAD(h)) |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1806 | sbp2_agent_reset(lu, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | } |
| 1808 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1809 | /* Check here to see if there are no commands in-use. If there |
Stefan Richter | cc07818 | 2006-07-23 22:12:00 +0200 | [diff] [blame] | 1810 | * are none, we know that the fetch agent left the active state |
| 1811 | * _and_ that we did not reactivate it yet. Therefore clear |
| 1812 | * last_orb so that next time we write directly to the |
| 1813 | * ORB_POINTER register. That way the fetch agent does not need |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1814 | * to refetch the next_ORB. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1815 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 1816 | if (list_empty(&lu->cmd_orb_inuse)) |
| 1817 | lu->last_orb = NULL; |
| 1818 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
| 1820 | } else { |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1821 | /* It's probably status after a management request. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1822 | if ((sb->ORB_offset_lo == lu->reconnect_orb_dma) || |
| 1823 | (sb->ORB_offset_lo == lu->login_orb_dma) || |
| 1824 | (sb->ORB_offset_lo == lu->query_logins_orb_dma) || |
| 1825 | (sb->ORB_offset_lo == lu->logout_orb_dma)) { |
| 1826 | lu->access_complete = 1; |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1827 | wake_up_interruptible(&sbp2_access_wq); |
Stefan Richter | e8398bb | 2006-07-23 22:19:00 +0200 | [diff] [blame] | 1828 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | } |
| 1830 | |
Stefan Richter | edf1fb2 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1831 | if (SCpnt) |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1832 | sbp2scsi_complete_command(lu, scsi_status, SCpnt, |
| 1833 | cmd->Current_done); |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1834 | return RCODE_COMPLETE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | } |
| 1836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | /************************************** |
| 1838 | * SCSI interface related section |
| 1839 | **************************************/ |
| 1840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt, |
| 1842 | void (*done)(struct scsi_cmnd *)) |
| 1843 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1844 | struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0]; |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1845 | struct sbp2_fwhost_info *hi; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1846 | int result = DID_NO_CONNECT << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1848 | if (unlikely(!sbp2util_node_is_available(lu))) |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1849 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1851 | hi = lu->hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | |
Stefan Richter | 5796aa7 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1853 | if (unlikely(!hi)) { |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1854 | SBP2_ERR("sbp2_fwhost_info is NULL - this is bad!"); |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1855 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | } |
| 1857 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1858 | /* Multiple units are currently represented to the SCSI core as separate |
| 1859 | * targets, not as one target with multiple LUs. Therefore return |
| 1860 | * selection time-out to any IO directed at non-zero LUNs. */ |
Stefan Richter | 5796aa7 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1861 | if (unlikely(SCpnt->device->lun)) |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1862 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1864 | if (unlikely(!hpsb_node_entry_valid(lu->ne))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | SBP2_ERR("Bus reset in progress - rejecting command"); |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1866 | result = DID_BUS_BUSY << 16; |
| 1867 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | } |
| 1869 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1870 | /* Bidirectional commands are not yet implemented, |
| 1871 | * and unknown transfer direction not handled. */ |
Stefan Richter | 5796aa7 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1872 | if (unlikely(SCpnt->sc_data_direction == DMA_BIDIRECTIONAL)) { |
Stefan Richter | 43863eb | 2005-12-12 23:03:24 -0500 | [diff] [blame] | 1873 | SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command"); |
| 1874 | result = DID_ERROR << 16; |
| 1875 | goto done; |
| 1876 | } |
| 1877 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1878 | if (sbp2_send_command(lu, SCpnt, done)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | SBP2_ERR("Error sending SCSI command"); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1880 | sbp2scsi_complete_command(lu, |
| 1881 | SBP2_SCSI_STATUS_SELECTION_TIMEOUT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | SCpnt, done); |
| 1883 | } |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1884 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1886 | done: |
| 1887 | SCpnt->result = result; |
| 1888 | done(SCpnt); |
| 1889 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | } |
| 1891 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1892 | static void sbp2scsi_complete_all_commands(struct sbp2_lu *lu, u32 status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1894 | struct sbp2_fwhost_info *hi = lu->hi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | struct list_head *lh; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1896 | struct sbp2_command_info *cmd; |
Jody McIntyre | 7945619 | 2005-11-07 06:29:39 -0500 | [diff] [blame] | 1897 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1899 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 1900 | while (!list_empty(&lu->cmd_orb_inuse)) { |
| 1901 | lh = lu->cmd_orb_inuse.next; |
| 1902 | cmd = list_entry(lh, struct sbp2_command_info, list); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1903 | dma_sync_single_for_cpu(hi->host->device.parent, |
| 1904 | cmd->command_orb_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1905 | sizeof(struct sbp2_command_orb), |
| 1906 | DMA_TO_DEVICE); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 1907 | dma_sync_single_for_cpu(hi->host->device.parent, cmd->sge_dma, |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 1908 | sizeof(cmd->scatter_gather_element), |
Stefan Richter | 2446a79 | 2007-02-04 20:54:57 +0100 | [diff] [blame] | 1909 | DMA_TO_DEVICE); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1910 | sbp2util_mark_command_completed(lu, cmd); |
| 1911 | if (cmd->Current_SCpnt) { |
| 1912 | cmd->Current_SCpnt->result = status << 16; |
| 1913 | cmd->Current_done(cmd->Current_SCpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | } |
| 1915 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1916 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | |
| 1918 | return; |
| 1919 | } |
| 1920 | |
| 1921 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1922 | * Complete a regular SCSI command. Can be called in atomic context. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1924 | static void sbp2scsi_complete_command(struct sbp2_lu *lu, u32 scsi_status, |
| 1925 | struct scsi_cmnd *SCpnt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | void (*done)(struct scsi_cmnd *)) |
| 1927 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | if (!SCpnt) { |
| 1929 | SBP2_ERR("SCpnt is NULL"); |
| 1930 | return; |
| 1931 | } |
| 1932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | switch (scsi_status) { |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1934 | case SBP2_SCSI_STATUS_GOOD: |
Stefan Richter | 8f0525f | 2006-03-28 20:03:45 -0500 | [diff] [blame] | 1935 | SCpnt->result = DID_OK << 16; |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1936 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1938 | case SBP2_SCSI_STATUS_BUSY: |
| 1939 | SBP2_ERR("SBP2_SCSI_STATUS_BUSY"); |
| 1940 | SCpnt->result = DID_BUS_BUSY << 16; |
| 1941 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1943 | case SBP2_SCSI_STATUS_CHECK_CONDITION: |
Stefan Richter | 8f0525f | 2006-03-28 20:03:45 -0500 | [diff] [blame] | 1944 | SCpnt->result = CHECK_CONDITION << 1 | DID_OK << 16; |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1945 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1947 | case SBP2_SCSI_STATUS_SELECTION_TIMEOUT: |
| 1948 | SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT"); |
| 1949 | SCpnt->result = DID_NO_CONNECT << 16; |
| 1950 | scsi_print_command(SCpnt); |
| 1951 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1953 | case SBP2_SCSI_STATUS_CONDITION_MET: |
| 1954 | case SBP2_SCSI_STATUS_RESERVATION_CONFLICT: |
| 1955 | case SBP2_SCSI_STATUS_COMMAND_TERMINATED: |
| 1956 | SBP2_ERR("Bad SCSI status = %x", scsi_status); |
| 1957 | SCpnt->result = DID_ERROR << 16; |
| 1958 | scsi_print_command(SCpnt); |
| 1959 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1961 | default: |
| 1962 | SBP2_ERR("Unsupported SCSI status = %x", scsi_status); |
| 1963 | SCpnt->result = DID_ERROR << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | } |
| 1965 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1966 | /* If a bus reset is in progress and there was an error, complete |
| 1967 | * the command as busy so that it will get retried. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1968 | if (!hpsb_node_entry_valid(lu->ne) |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1969 | && (scsi_status != SBP2_SCSI_STATUS_GOOD)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | SBP2_ERR("Completing command with busy (bus reset)"); |
| 1971 | SCpnt->result = DID_BUS_BUSY << 16; |
| 1972 | } |
| 1973 | |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1974 | /* Tell the SCSI stack that we're done with this command. */ |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 1975 | done(SCpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | } |
| 1977 | |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1978 | static int sbp2scsi_slave_alloc(struct scsi_device *sdev) |
| 1979 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1980 | struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0]; |
Stefan Richter | a80614d | 2006-02-14 22:04:19 -0500 | [diff] [blame] | 1981 | |
Stefan Richter | ef774c1 | 2008-02-17 14:57:10 +0100 | [diff] [blame] | 1982 | if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0) |
| 1983 | return -ENODEV; |
| 1984 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1985 | lu->sdev = sdev; |
Stefan Richter | c394f1e | 2006-08-07 20:48:00 +0200 | [diff] [blame] | 1986 | sdev->allow_restart = 1; |
Stefan Richter | a80614d | 2006-02-14 22:04:19 -0500 | [diff] [blame] | 1987 | |
Stefan Richter | a4b47d6 | 2008-01-27 22:32:22 +0100 | [diff] [blame] | 1988 | /* SBP-2 requires quadlet alignment of the data buffers. */ |
| 1989 | blk_queue_update_dma_alignment(sdev->request_queue, 4 - 1); |
James Bottomley | 465ff31 | 2008-01-01 10:00:10 -0600 | [diff] [blame] | 1990 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1991 | if (lu->workarounds & SBP2_WORKAROUND_INQUIRY_36) |
Stefan Richter | a80614d | 2006-02-14 22:04:19 -0500 | [diff] [blame] | 1992 | sdev->inquiry_len = 36; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1993 | return 0; |
| 1994 | } |
| 1995 | |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 1996 | static int sbp2scsi_slave_configure(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 1998 | struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0]; |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 1999 | |
Ben Collins | 365c786 | 2005-11-07 06:31:24 -0500 | [diff] [blame] | 2000 | sdev->use_10_for_rw = 1; |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 2001 | |
Stefan Richter | 1a74bc6 | 2007-01-10 20:17:15 +0100 | [diff] [blame] | 2002 | if (sdev->type == TYPE_ROM) |
| 2003 | sdev->use_10_for_ms = 1; |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 2004 | if (sdev->type == TYPE_DISK && |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2005 | lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8) |
Stefan Richter | 24d3bf8 | 2006-05-15 22:04:59 +0200 | [diff] [blame] | 2006 | sdev->skip_ms_page_8 = 1; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2007 | if (lu->workarounds & SBP2_WORKAROUND_FIX_CAPACITY) |
Stefan Richter | e9a1c52 | 2006-05-15 22:06:37 +0200 | [diff] [blame] | 2008 | sdev->fix_capacity = 1; |
Stefan Richter | 4e6343a | 2007-12-16 17:31:26 +0100 | [diff] [blame] | 2009 | if (lu->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS) |
| 2010 | blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | return 0; |
| 2012 | } |
| 2013 | |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 2014 | static void sbp2scsi_slave_destroy(struct scsi_device *sdev) |
| 2015 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2016 | ((struct sbp2_lu *)sdev->host->hostdata[0])->sdev = NULL; |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 2017 | return; |
| 2018 | } |
| 2019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | /* |
Stefan Richter | e8ca566 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2021 | * Called by scsi stack when something has really gone wrong. |
| 2022 | * Usually called when a command has timed-out for some reason. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | */ |
| 2024 | static int sbp2scsi_abort(struct scsi_cmnd *SCpnt) |
| 2025 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2026 | struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0]; |
| 2027 | struct sbp2_fwhost_info *hi = lu->hi; |
| 2028 | struct sbp2_command_info *cmd; |
Stefan Richter | 24c7cd0 | 2006-04-01 21:11:41 +0200 | [diff] [blame] | 2029 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2031 | SBP2_INFO("aborting sbp2 command"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | scsi_print_command(SCpnt); |
| 2033 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2034 | if (sbp2util_node_is_available(lu)) { |
| 2035 | sbp2_agent_reset(lu, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | |
Stefan Richter | 23077f1 | 2006-09-11 20:17:14 +0200 | [diff] [blame] | 2037 | /* Return a matching command structure to the free pool. */ |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2038 | spin_lock_irqsave(&lu->cmd_orb_lock, flags); |
| 2039 | cmd = sbp2util_find_command_for_SCpnt(lu, SCpnt); |
| 2040 | if (cmd) { |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 2041 | dma_sync_single_for_cpu(hi->host->device.parent, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2042 | cmd->command_orb_dma, |
| 2043 | sizeof(struct sbp2_command_orb), |
Stefan Richter | 9b7d9c0 | 2006-11-22 21:44:34 +0100 | [diff] [blame] | 2044 | DMA_TO_DEVICE); |
Stefan Richter | 97d552e | 2006-12-29 23:47:04 +0100 | [diff] [blame] | 2045 | dma_sync_single_for_cpu(hi->host->device.parent, |
| 2046 | cmd->sge_dma, |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2047 | sizeof(cmd->scatter_gather_element), |
Stefan Richter | 2446a79 | 2007-02-04 20:54:57 +0100 | [diff] [blame] | 2048 | DMA_TO_DEVICE); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2049 | sbp2util_mark_command_completed(lu, cmd); |
| 2050 | if (cmd->Current_SCpnt) { |
| 2051 | cmd->Current_SCpnt->result = DID_ABORT << 16; |
| 2052 | cmd->Current_done(cmd->Current_SCpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | } |
| 2054 | } |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2055 | spin_unlock_irqrestore(&lu->cmd_orb_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2057 | sbp2scsi_complete_all_commands(lu, DID_BUS_BUSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | } |
| 2059 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 2060 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | } |
| 2062 | |
| 2063 | /* |
| 2064 | * Called by scsi stack when something has really gone wrong. |
| 2065 | */ |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 2066 | static int sbp2scsi_reset(struct scsi_cmnd *SCpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | { |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2068 | struct sbp2_lu *lu = (struct sbp2_lu *)SCpnt->device->host->hostdata[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2070 | SBP2_INFO("reset requested"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2072 | if (sbp2util_node_is_available(lu)) { |
Stefan Richter | 3564409 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2073 | SBP2_INFO("generating sbp2 fetch agent reset"); |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2074 | sbp2_agent_reset(lu, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | } |
| 2076 | |
Jody McIntyre | abd559b | 2005-09-30 11:59:06 -0700 | [diff] [blame] | 2077 | return SUCCESS; |
Jeff Garzik | 94d0e7b8 | 2005-05-28 07:55:48 -0400 | [diff] [blame] | 2078 | } |
| 2079 | |
Stefan Richter | a237f35 | 2005-11-07 06:31:39 -0500 | [diff] [blame] | 2080 | static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev, |
| 2081 | struct device_attribute *attr, |
| 2082 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | { |
| 2084 | struct scsi_device *sdev; |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2085 | struct sbp2_lu *lu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | |
| 2087 | if (!(sdev = to_scsi_device(dev))) |
| 2088 | return 0; |
| 2089 | |
Stefan Richter | 138c8af | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2090 | if (!(lu = (struct sbp2_lu *)sdev->host->hostdata[0])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | return 0; |
| 2092 | |
Stefan Richter | d7794c8 | 2007-05-27 13:17:15 +0200 | [diff] [blame] | 2093 | if (sbp2_long_sysfs_ieee1394_id) |
| 2094 | return sprintf(buf, "%016Lx:%06x:%04x\n", |
| 2095 | (unsigned long long)lu->ne->guid, |
| 2096 | lu->ud->directory_id, ORB_SET_LUN(lu->lun)); |
| 2097 | else |
| 2098 | return sprintf(buf, "%016Lx:%d:%d\n", |
| 2099 | (unsigned long long)lu->ne->guid, |
| 2100 | lu->ud->id, ORB_SET_LUN(lu->lun)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | |
| 2103 | MODULE_AUTHOR("Ben Collins <bcollins@debian.org>"); |
| 2104 | MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver"); |
| 2105 | MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME); |
| 2106 | MODULE_LICENSE("GPL"); |
| 2107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | static int sbp2_module_init(void) |
| 2109 | { |
| 2110 | int ret; |
| 2111 | |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2112 | if (sbp2_serialize_io) { |
| 2113 | sbp2_shost_template.can_queue = 1; |
| 2114 | sbp2_shost_template.cmd_per_lun = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | } |
| 2116 | |
Stefan Richter | ca0c745 | 2006-11-02 21:16:08 +0100 | [diff] [blame] | 2117 | sbp2_shost_template.max_sectors = sbp2_max_sectors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | hpsb_register_highlevel(&sbp2_highlevel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | ret = hpsb_register_protocol(&sbp2_driver); |
| 2121 | if (ret) { |
| 2122 | SBP2_ERR("Failed to register protocol"); |
| 2123 | hpsb_unregister_highlevel(&sbp2_highlevel); |
| 2124 | return ret; |
| 2125 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | return 0; |
| 2127 | } |
| 2128 | |
| 2129 | static void __exit sbp2_module_exit(void) |
| 2130 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | hpsb_unregister_protocol(&sbp2_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | hpsb_unregister_highlevel(&sbp2_highlevel); |
| 2133 | } |
| 2134 | |
| 2135 | module_init(sbp2_module_init); |
| 2136 | module_exit(sbp2_module_exit); |