blob: 4a118fbc7b2442695c8c709f74d43dcb1883fccb [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * SBP2 driver (SCSI over IEEE1394)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05003 *
Kristian Høgsberg27a15e52007-02-06 14:49:39 -05004 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
Kristian Høgsbergc781c062007-05-07 20:33:32 -040021/*
22 * The basic structure of this driver is based on the old storage driver,
Kristian Høgsberg27a15e52007-02-06 14:49:39 -050023 * drivers/ieee1394/sbp2.c, originally written by
24 * James Goodwin <jamesg@filanet.com>
25 * with later contributions and ongoing maintenance from
26 * Ben Collins <bcollins@debian.org>,
27 * Stefan Richter <stefanr@s5r6.in-berlin.de>
28 * and many others.
29 */
30
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050031#include <linux/kernel.h>
32#include <linux/module.h>
Stefan Richter5cd54c92007-06-17 23:55:41 +020033#include <linux/moduleparam.h>
Stefan Richterfe69ca32006-12-28 12:46:54 +010034#include <linux/mod_devicetable.h>
Stefan Richter9220f192008-02-03 23:04:38 +010035#include <linux/delay.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050036#include <linux/device.h>
Andrew Morton0b5b2902006-12-27 14:49:23 -080037#include <linux/scatterlist.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050038#include <linux/dma-mapping.h>
Stefan Richtercf47c7a2007-06-17 23:52:08 +020039#include <linux/blkdev.h>
Stefan Richtere7cdf232007-07-01 13:54:57 +020040#include <linux/string.h>
Stefan Richter2df222b2007-08-13 17:48:25 +020041#include <linux/stringify.h>
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -050042#include <linux/timer.h>
Stefan Richterdf8ec242007-08-12 12:51:18 +020043#include <linux/workqueue.h>
Stefan Richterb5d2a5e2008-01-25 18:57:41 +010044#include <asm/system.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050045
46#include <scsi/scsi.h>
47#include <scsi/scsi_cmnd.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050048#include <scsi/scsi_device.h>
49#include <scsi/scsi_host.h>
50
51#include "fw-transaction.h"
52#include "fw-topology.h"
53#include "fw-device.h"
54
Stefan Richter5cd54c92007-06-17 23:55:41 +020055/*
56 * So far only bridges from Oxford Semiconductor are known to support
57 * concurrent logins. Depending on firmware, four or two concurrent logins
58 * are possible on OXFW911 and newer Oxsemi bridges.
59 *
60 * Concurrent logins are useful together with cluster filesystems.
61 */
62static int sbp2_param_exclusive_login = 1;
63module_param_named(exclusive_login, sbp2_param_exclusive_login, bool, 0644);
64MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
65 "(default = Y, use N for concurrent initiators)");
66
Stefan Richter2df222b2007-08-13 17:48:25 +020067/*
68 * Flags for firmware oddities
69 *
70 * - 128kB max transfer
71 * Limit transfer size. Necessary for some old bridges.
72 *
73 * - 36 byte inquiry
74 * When scsi_mod probes the device, let the inquiry command look like that
75 * from MS Windows.
76 *
77 * - skip mode page 8
78 * Suppress sending of mode_sense for mode page 8 if the device pretends to
79 * support the SCSI Primary Block commands instead of Reduced Block Commands.
80 *
81 * - fix capacity
82 * Tell sd_mod to correct the last sector number reported by read_capacity.
83 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
84 * Don't use this with devices which don't have this bug.
85 *
Stefan Richter9220f192008-02-03 23:04:38 +010086 * - delay inquiry
87 * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry.
88 *
Stefan Richter2df222b2007-08-13 17:48:25 +020089 * - override internal blacklist
90 * Instead of adding to the built-in blacklist, use only the workarounds
91 * specified in the module load parameter.
92 * Useful if a blacklist entry interfered with a non-broken device.
93 */
94#define SBP2_WORKAROUND_128K_MAX_TRANS 0x1
95#define SBP2_WORKAROUND_INQUIRY_36 0x2
96#define SBP2_WORKAROUND_MODE_SENSE_8 0x4
97#define SBP2_WORKAROUND_FIX_CAPACITY 0x8
Stefan Richter9220f192008-02-03 23:04:38 +010098#define SBP2_WORKAROUND_DELAY_INQUIRY 0x10
99#define SBP2_INQUIRY_DELAY 12
Stefan Richter2df222b2007-08-13 17:48:25 +0200100#define SBP2_WORKAROUND_OVERRIDE 0x100
101
102static int sbp2_param_workarounds;
103module_param_named(workarounds, sbp2_param_workarounds, int, 0644);
104MODULE_PARM_DESC(workarounds, "Work around device bugs (default = 0"
105 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS)
106 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36)
107 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8)
108 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY)
Stefan Richter9220f192008-02-03 23:04:38 +0100109 ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY)
Stefan Richter2df222b2007-08-13 17:48:25 +0200110 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE)
111 ", or a combination)");
112
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500113/* I don't know why the SCSI stack doesn't define something like this... */
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400114typedef void (*scsi_done_fn_t)(struct scsi_cmnd *);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500115
116static const char sbp2_driver_name[] = "sbp2";
117
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200118/*
119 * We create one struct sbp2_logical_unit per SBP-2 Logical Unit Number Entry
120 * and one struct scsi_device per sbp2_logical_unit.
121 */
122struct sbp2_logical_unit {
123 struct sbp2_target *tgt;
124 struct list_head link;
125 struct scsi_device *sdev;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500126 struct fw_address_handler address_handler;
127 struct list_head orb_list;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200128
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500129 u64 command_block_agent_address;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200130 u16 lun;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500131 int login_id;
132
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400133 /*
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200134 * The generation is updated once we've logged in or reconnected
135 * to the logical unit. Thus, I/O to the device will automatically
136 * fail and get retried if it happens in a window where the device
137 * is not ready, e.g. after a bus reset but before we reconnect.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400138 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500139 int generation;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500140 int retries;
141 struct delayed_work work;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500142};
143
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200144/*
145 * We create one struct sbp2_target per IEEE 1212 Unit Directory
146 * and one struct Scsi_Host per sbp2_target.
147 */
148struct sbp2_target {
149 struct kref kref;
150 struct fw_unit *unit;
Stefan Richter05cca732008-01-26 17:42:45 +0100151 struct list_head lu_list;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200152
153 u64 management_agent_address;
154 int directory_id;
155 int node_id;
156 int address_high;
Stefan Richter05cca732008-01-26 17:42:45 +0100157 unsigned int workarounds;
Jarod Wilson384170d2008-01-25 23:31:12 -0500158 unsigned int mgt_orb_timeout;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200159};
160
Jarod Wilsona4c379c2008-01-19 13:15:05 +0100161/*
162 * Per section 7.4.8 of the SBP-2 spec, a mgt_ORB_timeout value can be
Jarod Wilson384170d2008-01-25 23:31:12 -0500163 * provided in the config rom. Most devices do provide a value, which
164 * we'll use for login management orbs, but with some sane limits.
Jarod Wilsona4c379c2008-01-19 13:15:05 +0100165 */
Jarod Wilson384170d2008-01-25 23:31:12 -0500166#define SBP2_MIN_LOGIN_ORB_TIMEOUT 5000U /* Timeout in ms */
167#define SBP2_MAX_LOGIN_ORB_TIMEOUT 40000U /* Timeout in ms */
Stefan Richter05cca732008-01-26 17:42:45 +0100168#define SBP2_ORB_TIMEOUT 2000U /* Timeout in ms */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500169#define SBP2_ORB_NULL 0x80000000
Jarod Wilsona4c379c2008-01-19 13:15:05 +0100170#define SBP2_MAX_SG_ELEMENT_LENGTH 0xf000
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500171
172#define SBP2_DIRECTION_TO_MEDIA 0x0
173#define SBP2_DIRECTION_FROM_MEDIA 0x1
174
175/* Unit directory keys */
Jarod Wilson384170d2008-01-25 23:31:12 -0500176#define SBP2_CSR_UNIT_CHARACTERISTICS 0x3a
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200177#define SBP2_CSR_FIRMWARE_REVISION 0x3c
178#define SBP2_CSR_LOGICAL_UNIT_NUMBER 0x14
179#define SBP2_CSR_LOGICAL_UNIT_DIRECTORY 0xd4
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500180
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500181/* Management orb opcodes */
182#define SBP2_LOGIN_REQUEST 0x0
183#define SBP2_QUERY_LOGINS_REQUEST 0x1
184#define SBP2_RECONNECT_REQUEST 0x3
185#define SBP2_SET_PASSWORD_REQUEST 0x4
186#define SBP2_LOGOUT_REQUEST 0x7
187#define SBP2_ABORT_TASK_REQUEST 0xb
188#define SBP2_ABORT_TASK_SET 0xc
189#define SBP2_LOGICAL_UNIT_RESET 0xe
190#define SBP2_TARGET_RESET_REQUEST 0xf
191
192/* Offsets for command block agent registers */
193#define SBP2_AGENT_STATE 0x00
194#define SBP2_AGENT_RESET 0x04
195#define SBP2_ORB_POINTER 0x08
196#define SBP2_DOORBELL 0x10
197#define SBP2_UNSOLICITED_STATUS_ENABLE 0x14
198
199/* Status write response codes */
200#define SBP2_STATUS_REQUEST_COMPLETE 0x0
201#define SBP2_STATUS_TRANSPORT_FAILURE 0x1
202#define SBP2_STATUS_ILLEGAL_REQUEST 0x2
203#define SBP2_STATUS_VENDOR_DEPENDENT 0x3
204
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400205#define STATUS_GET_ORB_HIGH(v) ((v).status & 0xffff)
206#define STATUS_GET_SBP_STATUS(v) (((v).status >> 16) & 0xff)
207#define STATUS_GET_LEN(v) (((v).status >> 24) & 0x07)
208#define STATUS_GET_DEAD(v) (((v).status >> 27) & 0x01)
209#define STATUS_GET_RESPONSE(v) (((v).status >> 28) & 0x03)
210#define STATUS_GET_SOURCE(v) (((v).status >> 30) & 0x03)
211#define STATUS_GET_ORB_LOW(v) ((v).orb_low)
212#define STATUS_GET_DATA(v) ((v).data)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500213
214struct sbp2_status {
215 u32 status;
216 u32 orb_low;
217 u8 data[24];
218};
219
220struct sbp2_pointer {
221 u32 high;
222 u32 low;
223};
224
225struct sbp2_orb {
226 struct fw_transaction t;
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400227 struct kref kref;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500228 dma_addr_t request_bus;
229 int rcode;
230 struct sbp2_pointer pointer;
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400231 void (*callback)(struct sbp2_orb * orb, struct sbp2_status * status);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500232 struct list_head link;
233};
234
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400235#define MANAGEMENT_ORB_LUN(v) ((v))
236#define MANAGEMENT_ORB_FUNCTION(v) ((v) << 16)
237#define MANAGEMENT_ORB_RECONNECT(v) ((v) << 20)
Stefan Richter5cd54c92007-06-17 23:55:41 +0200238#define MANAGEMENT_ORB_EXCLUSIVE(v) ((v) ? 1 << 28 : 0)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400239#define MANAGEMENT_ORB_REQUEST_FORMAT(v) ((v) << 29)
240#define MANAGEMENT_ORB_NOTIFY ((1) << 31)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500241
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400242#define MANAGEMENT_ORB_RESPONSE_LENGTH(v) ((v))
243#define MANAGEMENT_ORB_PASSWORD_LENGTH(v) ((v) << 16)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500244
245struct sbp2_management_orb {
246 struct sbp2_orb base;
247 struct {
248 struct sbp2_pointer password;
249 struct sbp2_pointer response;
250 u32 misc;
251 u32 length;
252 struct sbp2_pointer status_fifo;
253 } request;
254 __be32 response[4];
255 dma_addr_t response_bus;
256 struct completion done;
257 struct sbp2_status status;
258};
259
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400260#define LOGIN_RESPONSE_GET_LOGIN_ID(v) ((v).misc & 0xffff)
261#define LOGIN_RESPONSE_GET_LENGTH(v) (((v).misc >> 16) & 0xffff)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500262
263struct sbp2_login_response {
264 u32 misc;
265 struct sbp2_pointer command_block_agent;
266 u32 reconnect_hold;
267};
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400268#define COMMAND_ORB_DATA_SIZE(v) ((v))
269#define COMMAND_ORB_PAGE_SIZE(v) ((v) << 16)
270#define COMMAND_ORB_PAGE_TABLE_PRESENT ((1) << 19)
271#define COMMAND_ORB_MAX_PAYLOAD(v) ((v) << 20)
272#define COMMAND_ORB_SPEED(v) ((v) << 24)
273#define COMMAND_ORB_DIRECTION(v) ((v) << 27)
274#define COMMAND_ORB_REQUEST_FORMAT(v) ((v) << 29)
275#define COMMAND_ORB_NOTIFY ((1) << 31)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500276
277struct sbp2_command_orb {
278 struct sbp2_orb base;
279 struct {
280 struct sbp2_pointer next;
281 struct sbp2_pointer data_descriptor;
282 u32 misc;
283 u8 command_block[12];
284 } request;
285 struct scsi_cmnd *cmd;
286 scsi_done_fn_t done;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200287 struct sbp2_logical_unit *lu;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500288
Stefan Richter9fb2dd12007-07-01 13:55:31 +0200289 struct sbp2_pointer page_table[SG_ALL] __attribute__((aligned(8)));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500290 dma_addr_t page_table_bus;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500291};
292
293/*
294 * List of devices with known bugs.
295 *
296 * The firmware_revision field, masked with 0xffff00, is the best
297 * indicator for the type of bridge chip of a device. It yields a few
298 * false positives but this did not break correctly behaving devices
299 * so far. We use ~0 as a wildcard, since the 24 bit values we get
300 * from the config rom can never match that.
301 */
302static const struct {
303 u32 firmware_revision;
304 u32 model;
Stefan Richter05cca732008-01-26 17:42:45 +0100305 unsigned int workarounds;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500306} sbp2_workarounds_table[] = {
307 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
308 .firmware_revision = 0x002800,
309 .model = 0x001010,
310 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
311 SBP2_WORKAROUND_MODE_SENSE_8,
312 },
Stefan Richter9220f192008-02-03 23:04:38 +0100313 /* DViCO Momobay FX-3A with TSB42AA9A bridge */ {
314 .firmware_revision = 0x002800,
315 .model = 0x000000,
316 .workarounds = SBP2_WORKAROUND_DELAY_INQUIRY,
317 },
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500318 /* Initio bridges, actually only needed for some older ones */ {
319 .firmware_revision = 0x000200,
320 .model = ~0,
321 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
322 },
323 /* Symbios bridge */ {
324 .firmware_revision = 0xa0b800,
325 .model = ~0,
326 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
327 },
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400328
329 /*
330 * There are iPods (2nd gen, 3rd gen) with model_id == 0, but
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500331 * these iPods do not feature the read_capacity bug according
332 * to one report. Read_capacity behaviour as well as model_id
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400333 * could change due to Apple-supplied firmware updates though.
334 */
335
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500336 /* iPod 4th generation. */ {
337 .firmware_revision = 0x0a2700,
338 .model = 0x000021,
339 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
340 },
341 /* iPod mini */ {
342 .firmware_revision = 0x0a2700,
343 .model = 0x000023,
344 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
345 },
346 /* iPod Photo */ {
347 .firmware_revision = 0x0a2700,
348 .model = 0x00007e,
349 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
350 }
351};
352
353static void
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400354free_orb(struct kref *kref)
355{
356 struct sbp2_orb *orb = container_of(kref, struct sbp2_orb, kref);
357
358 kfree(orb);
359}
360
361static void
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500362sbp2_status_write(struct fw_card *card, struct fw_request *request,
363 int tcode, int destination, int source,
364 int generation, int speed,
365 unsigned long long offset,
366 void *payload, size_t length, void *callback_data)
367{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200368 struct sbp2_logical_unit *lu = callback_data;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500369 struct sbp2_orb *orb;
370 struct sbp2_status status;
371 size_t header_size;
372 unsigned long flags;
373
374 if (tcode != TCODE_WRITE_BLOCK_REQUEST ||
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400375 length == 0 || length > sizeof(status)) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500376 fw_send_response(card, request, RCODE_TYPE_ERROR);
377 return;
378 }
379
380 header_size = min(length, 2 * sizeof(u32));
381 fw_memcpy_from_be32(&status, payload, header_size);
382 if (length > header_size)
383 memcpy(status.data, payload + 8, length - header_size);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400384 if (STATUS_GET_SOURCE(status) == 2 || STATUS_GET_SOURCE(status) == 3) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500385 fw_notify("non-orb related status write, not handled\n");
386 fw_send_response(card, request, RCODE_COMPLETE);
387 return;
388 }
389
390 /* Lookup the orb corresponding to this status write. */
391 spin_lock_irqsave(&card->lock, flags);
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200392 list_for_each_entry(orb, &lu->orb_list, link) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400393 if (STATUS_GET_ORB_HIGH(status) == 0 &&
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400394 STATUS_GET_ORB_LOW(status) == orb->request_bus) {
395 orb->rcode = RCODE_COMPLETE;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500396 list_del(&orb->link);
397 break;
398 }
399 }
400 spin_unlock_irqrestore(&card->lock, flags);
401
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200402 if (&orb->link != &lu->orb_list)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500403 orb->callback(orb, &status);
404 else
405 fw_error("status write for unknown orb\n");
406
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400407 kref_put(&orb->kref, free_orb);
408
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500409 fw_send_response(card, request, RCODE_COMPLETE);
410}
411
412static void
413complete_transaction(struct fw_card *card, int rcode,
414 void *payload, size_t length, void *data)
415{
416 struct sbp2_orb *orb = data;
417 unsigned long flags;
418
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400419 /*
420 * This is a little tricky. We can get the status write for
421 * the orb before we get this callback. The status write
422 * handler above will assume the orb pointer transaction was
423 * successful and set the rcode to RCODE_COMPLETE for the orb.
424 * So this callback only sets the rcode if it hasn't already
425 * been set and only does the cleanup if the transaction
426 * failed and we didn't already get a status write.
427 */
428 spin_lock_irqsave(&card->lock, flags);
429
430 if (orb->rcode == -1)
431 orb->rcode = rcode;
432 if (orb->rcode != RCODE_COMPLETE) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500433 list_del(&orb->link);
Stefan Richter1b34e972007-08-25 10:40:42 +0200434 spin_unlock_irqrestore(&card->lock, flags);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500435 orb->callback(orb, NULL);
Stefan Richter1b34e972007-08-25 10:40:42 +0200436 } else {
437 spin_unlock_irqrestore(&card->lock, flags);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500438 }
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400439
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400440 kref_put(&orb->kref, free_orb);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500441}
442
443static void
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200444sbp2_send_orb(struct sbp2_orb *orb, struct sbp2_logical_unit *lu,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500445 int node_id, int generation, u64 offset)
446{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200447 struct fw_device *device = fw_device(lu->tgt->unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500448 unsigned long flags;
449
450 orb->pointer.high = 0;
451 orb->pointer.low = orb->request_bus;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400452 fw_memcpy_to_be32(&orb->pointer, &orb->pointer, sizeof(orb->pointer));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500453
454 spin_lock_irqsave(&device->card->lock, flags);
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200455 list_add_tail(&orb->link, &lu->orb_list);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500456 spin_unlock_irqrestore(&device->card->lock, flags);
457
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400458 /* Take a ref for the orb list and for the transaction callback. */
459 kref_get(&orb->kref);
460 kref_get(&orb->kref);
461
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500462 fw_send_request(device->card, &orb->t, TCODE_WRITE_BLOCK_REQUEST,
Stefan Richterf1397492007-06-10 21:31:36 +0200463 node_id, generation, device->max_speed, offset,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400464 &orb->pointer, sizeof(orb->pointer),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500465 complete_transaction, orb);
466}
467
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200468static int sbp2_cancel_orbs(struct sbp2_logical_unit *lu)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500469{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200470 struct fw_device *device = fw_device(lu->tgt->unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500471 struct sbp2_orb *orb, *next;
472 struct list_head list;
473 unsigned long flags;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500474 int retval = -ENOENT;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500475
476 INIT_LIST_HEAD(&list);
477 spin_lock_irqsave(&device->card->lock, flags);
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200478 list_splice_init(&lu->orb_list, &list);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500479 spin_unlock_irqrestore(&device->card->lock, flags);
480
481 list_for_each_entry_safe(orb, next, &list, link) {
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500482 retval = 0;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500483 if (fw_cancel_transaction(device->card, &orb->t) == 0)
484 continue;
485
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500486 orb->rcode = RCODE_CANCELLED;
487 orb->callback(orb, NULL);
488 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500489
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500490 return retval;
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -0500491}
492
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500493static void
494complete_management_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
495{
496 struct sbp2_management_orb *orb =
Jay Fenlason6f061482007-06-27 16:04:33 -0400497 container_of(base_orb, struct sbp2_management_orb, base);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500498
499 if (status)
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400500 memcpy(&orb->status, status, sizeof(*status));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500501 complete(&orb->done);
502}
503
504static int
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200505sbp2_send_management_orb(struct sbp2_logical_unit *lu, int node_id,
506 int generation, int function, int lun_or_login_id,
507 void *response)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500508{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200509 struct fw_device *device = fw_device(lu->tgt->unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500510 struct sbp2_management_orb *orb;
Jarod Wilsona4c379c2008-01-19 13:15:05 +0100511 unsigned int timeout;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500512 int retval = -ENOMEM;
513
Stefan Richterbe6f48b2008-01-27 19:14:44 +0100514 if (function == SBP2_LOGOUT_REQUEST && fw_device_is_shutdown(device))
515 return 0;
516
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400517 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500518 if (orb == NULL)
519 return -ENOMEM;
520
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400521 kref_init(&orb->base.kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500522 orb->response_bus =
523 dma_map_single(device->card->device, &orb->response,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400524 sizeof(orb->response), DMA_FROM_DEVICE);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -0500525 if (dma_mapping_error(orb->response_bus))
Stefan Richter7aa48482007-07-02 21:04:44 +0200526 goto fail_mapping_response;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500527
528 orb->request.response.high = 0;
529 orb->request.response.low = orb->response_bus;
530
531 orb->request.misc =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400532 MANAGEMENT_ORB_NOTIFY |
533 MANAGEMENT_ORB_FUNCTION(function) |
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200534 MANAGEMENT_ORB_LUN(lun_or_login_id);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500535 orb->request.length =
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400536 MANAGEMENT_ORB_RESPONSE_LENGTH(sizeof(orb->response));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500537
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200538 orb->request.status_fifo.high = lu->address_handler.offset >> 32;
539 orb->request.status_fifo.low = lu->address_handler.offset;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500540
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500541 if (function == SBP2_LOGIN_REQUEST) {
Stefan Richter14dc9922008-01-20 01:25:31 +0100542 /* Ask for 2^2 == 4 seconds reconnect grace period */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500543 orb->request.misc |=
Stefan Richter14dc9922008-01-20 01:25:31 +0100544 MANAGEMENT_ORB_RECONNECT(2) |
545 MANAGEMENT_ORB_EXCLUSIVE(sbp2_param_exclusive_login);
Jarod Wilson384170d2008-01-25 23:31:12 -0500546 timeout = lu->tgt->mgt_orb_timeout;
Jarod Wilsona4c379c2008-01-19 13:15:05 +0100547 } else {
548 timeout = SBP2_ORB_TIMEOUT;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500549 }
550
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400551 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500552
553 init_completion(&orb->done);
554 orb->base.callback = complete_management_orb;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500555
Stefan Richter7aa48482007-07-02 21:04:44 +0200556 orb->base.request_bus =
557 dma_map_single(device->card->device, &orb->request,
558 sizeof(orb->request), DMA_TO_DEVICE);
559 if (dma_mapping_error(orb->base.request_bus))
560 goto fail_mapping_request;
561
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200562 sbp2_send_orb(&orb->base, lu, node_id, generation,
563 lu->tgt->management_agent_address);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500564
Jarod Wilsona4c379c2008-01-19 13:15:05 +0100565 wait_for_completion_timeout(&orb->done, msecs_to_jiffies(timeout));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500566
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500567 retval = -EIO;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200568 if (sbp2_cancel_orbs(lu) == 0) {
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500569 fw_error("orb reply timed out, rcode=0x%02x\n",
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500570 orb->base.rcode);
571 goto out;
572 }
573
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500574 if (orb->base.rcode != RCODE_COMPLETE) {
575 fw_error("management write failed, rcode 0x%02x\n",
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500576 orb->base.rcode);
577 goto out;
578 }
579
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400580 if (STATUS_GET_RESPONSE(orb->status) != 0 ||
581 STATUS_GET_SBP_STATUS(orb->status) != 0) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500582 fw_error("error status: %d:%d\n",
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400583 STATUS_GET_RESPONSE(orb->status),
584 STATUS_GET_SBP_STATUS(orb->status));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500585 goto out;
586 }
587
588 retval = 0;
589 out:
590 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400591 sizeof(orb->request), DMA_TO_DEVICE);
Stefan Richter7aa48482007-07-02 21:04:44 +0200592 fail_mapping_request:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500593 dma_unmap_single(device->card->device, orb->response_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400594 sizeof(orb->response), DMA_FROM_DEVICE);
Stefan Richter7aa48482007-07-02 21:04:44 +0200595 fail_mapping_response:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500596 if (response)
597 fw_memcpy_from_be32(response,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400598 orb->response, sizeof(orb->response));
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400599 kref_put(&orb->base.kref, free_orb);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500600
601 return retval;
602}
603
604static void
605complete_agent_reset_write(struct fw_card *card, int rcode,
606 void *payload, size_t length, void *data)
607{
608 struct fw_transaction *t = data;
609
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500610 kfree(t);
611}
612
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200613static int sbp2_agent_reset(struct sbp2_logical_unit *lu)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500614{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200615 struct fw_device *device = fw_device(lu->tgt->unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500616 struct fw_transaction *t;
617 static u32 zero;
618
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400619 t = kzalloc(sizeof(*t), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500620 if (t == NULL)
621 return -ENOMEM;
622
623 fw_send_request(device->card, t, TCODE_WRITE_QUADLET_REQUEST,
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200624 lu->tgt->node_id, lu->generation, device->max_speed,
625 lu->command_block_agent_address + SBP2_AGENT_RESET,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400626 &zero, sizeof(zero), complete_agent_reset_write, t);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500627
628 return 0;
629}
630
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200631static void sbp2_release_target(struct kref *kref)
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400632{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200633 struct sbp2_target *tgt = container_of(kref, struct sbp2_target, kref);
634 struct sbp2_logical_unit *lu, *next;
635 struct Scsi_Host *shost =
636 container_of((void *)tgt, struct Scsi_Host, hostdata[0]);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400637
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200638 list_for_each_entry_safe(lu, next, &tgt->lu_list, link) {
639 if (lu->sdev)
640 scsi_remove_device(lu->sdev);
641
Stefan Richterbe6f48b2008-01-27 19:14:44 +0100642 sbp2_send_management_orb(lu, tgt->node_id, lu->generation,
643 SBP2_LOGOUT_REQUEST, lu->login_id, NULL);
Stefan Richter4dccd022008-01-20 01:24:26 +0100644
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200645 fw_core_remove_address_handler(&lu->address_handler);
646 list_del(&lu->link);
647 kfree(lu);
648 }
649 scsi_remove_host(shost);
650 fw_notify("released %s\n", tgt->unit->device.bus_id);
651
652 put_device(&tgt->unit->device);
653 scsi_host_put(shost);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400654}
655
Stefan Richterdf8ec242007-08-12 12:51:18 +0200656static struct workqueue_struct *sbp2_wq;
657
Stefan Richter285838e2007-11-07 01:12:51 +0100658/*
659 * Always get the target's kref when scheduling work on one its units.
660 * Each workqueue job is responsible to call sbp2_target_put() upon return.
661 */
662static void sbp2_queue_work(struct sbp2_logical_unit *lu, unsigned long delay)
663{
664 if (queue_delayed_work(sbp2_wq, &lu->work, delay))
665 kref_get(&lu->tgt->kref);
666}
667
668static void sbp2_target_put(struct sbp2_target *tgt)
669{
670 kref_put(&tgt->kref, sbp2_release_target);
671}
672
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200673static void sbp2_reconnect(struct work_struct *work);
674
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500675static void sbp2_login(struct work_struct *work)
676{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200677 struct sbp2_logical_unit *lu =
678 container_of(work, struct sbp2_logical_unit, work.work);
679 struct Scsi_Host *shost =
680 container_of((void *)lu->tgt, struct Scsi_Host, hostdata[0]);
681 struct scsi_device *sdev;
682 struct scsi_lun eight_bytes_lun;
683 struct fw_unit *unit = lu->tgt->unit;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500684 struct fw_device *device = fw_device(unit->device.parent);
685 struct sbp2_login_response response;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200686 int generation, node_id, local_node_id;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500687
Stefan Richterbe6f48b2008-01-27 19:14:44 +0100688 if (fw_device_is_shutdown(device))
689 goto out;
690
Stefan Richter5a8a1bc2008-01-24 01:53:19 +0100691 generation = device->generation;
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100692 smp_rmb(); /* node_id must not be older than generation */
Stefan Richter5a8a1bc2008-01-24 01:53:19 +0100693 node_id = device->node_id;
694 local_node_id = device->card->node_id;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500695
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200696 if (sbp2_send_management_orb(lu, node_id, generation,
697 SBP2_LOGIN_REQUEST, lu->lun, &response) < 0) {
Stefan Richter285838e2007-11-07 01:12:51 +0100698 if (lu->retries++ < 5)
699 sbp2_queue_work(lu, DIV_ROUND_UP(HZ, 5));
700 else
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200701 fw_error("failed to login to %s LUN %04x\n",
702 unit->device.bus_id, lu->lun);
Stefan Richter285838e2007-11-07 01:12:51 +0100703 goto out;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500704 }
705
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200706 lu->generation = generation;
707 lu->tgt->node_id = node_id;
708 lu->tgt->address_high = local_node_id << 16;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500709
710 /* Get command block agent offset and login id. */
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200711 lu->command_block_agent_address =
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500712 ((u64) (response.command_block_agent.high & 0xffff) << 32) |
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500713 response.command_block_agent.low;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200714 lu->login_id = LOGIN_RESPONSE_GET_LOGIN_ID(response);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500715
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200716 fw_notify("logged in to %s LUN %04x (%d retries)\n",
717 unit->device.bus_id, lu->lun, lu->retries);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500718
719#if 0
720 /* FIXME: The linux1394 sbp2 does this last step. */
721 sbp2_set_busy_timeout(scsi_id);
722#endif
723
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200724 PREPARE_DELAYED_WORK(&lu->work, sbp2_reconnect);
725 sbp2_agent_reset(lu);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500726
Stefan Richter9220f192008-02-03 23:04:38 +0100727 if (lu->tgt->workarounds & SBP2_WORKAROUND_DELAY_INQUIRY)
728 ssleep(SBP2_INQUIRY_DELAY);
729
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200730 memset(&eight_bytes_lun, 0, sizeof(eight_bytes_lun));
731 eight_bytes_lun.scsi_lun[0] = (lu->lun >> 8) & 0xff;
732 eight_bytes_lun.scsi_lun[1] = lu->lun & 0xff;
733
734 sdev = __scsi_add_device(shost, 0, 0,
735 scsilun_to_int(&eight_bytes_lun), lu);
736 if (IS_ERR(sdev)) {
Stefan Richter1b9c12b2008-01-26 17:43:23 +0100737 smp_rmb(); /* generation may have changed */
738 generation = device->generation;
739 smp_rmb(); /* node_id must not be older than generation */
740
741 sbp2_send_management_orb(lu, device->node_id, generation,
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200742 SBP2_LOGOUT_REQUEST, lu->login_id, NULL);
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400743 /*
744 * Set this back to sbp2_login so we fall back and
745 * retry login on bus reset.
746 */
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200747 PREPARE_DELAYED_WORK(&lu->work, sbp2_login);
748 } else {
749 lu->sdev = sdev;
750 scsi_device_put(sdev);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500751 }
Stefan Richter285838e2007-11-07 01:12:51 +0100752 out:
753 sbp2_target_put(lu->tgt);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500754}
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500755
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200756static int sbp2_add_logical_unit(struct sbp2_target *tgt, int lun_entry)
757{
758 struct sbp2_logical_unit *lu;
759
760 lu = kmalloc(sizeof(*lu), GFP_KERNEL);
761 if (!lu)
762 return -ENOMEM;
763
764 lu->address_handler.length = 0x100;
765 lu->address_handler.address_callback = sbp2_status_write;
766 lu->address_handler.callback_data = lu;
767
768 if (fw_core_add_address_handler(&lu->address_handler,
769 &fw_high_memory_region) < 0) {
770 kfree(lu);
771 return -ENOMEM;
772 }
773
774 lu->tgt = tgt;
775 lu->sdev = NULL;
776 lu->lun = lun_entry & 0xffff;
777 lu->retries = 0;
778 INIT_LIST_HEAD(&lu->orb_list);
779 INIT_DELAYED_WORK(&lu->work, sbp2_login);
780
781 list_add_tail(&lu->link, &tgt->lu_list);
782 return 0;
783}
784
785static int sbp2_scan_logical_unit_dir(struct sbp2_target *tgt, u32 *directory)
786{
787 struct fw_csr_iterator ci;
788 int key, value;
789
790 fw_csr_iterator_init(&ci, directory);
791 while (fw_csr_iterator_next(&ci, &key, &value))
792 if (key == SBP2_CSR_LOGICAL_UNIT_NUMBER &&
793 sbp2_add_logical_unit(tgt, value) < 0)
794 return -ENOMEM;
795 return 0;
796}
797
798static int sbp2_scan_unit_dir(struct sbp2_target *tgt, u32 *directory,
799 u32 *model, u32 *firmware_revision)
800{
801 struct fw_csr_iterator ci;
802 int key, value;
Jarod Wilson384170d2008-01-25 23:31:12 -0500803 unsigned int timeout;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200804
805 fw_csr_iterator_init(&ci, directory);
806 while (fw_csr_iterator_next(&ci, &key, &value)) {
807 switch (key) {
808
809 case CSR_DEPENDENT_INFO | CSR_OFFSET:
810 tgt->management_agent_address =
811 CSR_REGISTER_BASE + 4 * value;
812 break;
813
814 case CSR_DIRECTORY_ID:
815 tgt->directory_id = value;
816 break;
817
818 case CSR_MODEL:
819 *model = value;
820 break;
821
822 case SBP2_CSR_FIRMWARE_REVISION:
823 *firmware_revision = value;
824 break;
825
Jarod Wilson384170d2008-01-25 23:31:12 -0500826 case SBP2_CSR_UNIT_CHARACTERISTICS:
827 /* the timeout value is stored in 500ms units */
828 timeout = ((unsigned int) value >> 8 & 0xff) * 500;
829 timeout = max(timeout, SBP2_MIN_LOGIN_ORB_TIMEOUT);
830 tgt->mgt_orb_timeout =
831 min(timeout, SBP2_MAX_LOGIN_ORB_TIMEOUT);
832
833 if (timeout > tgt->mgt_orb_timeout)
834 fw_notify("%s: config rom contains %ds "
835 "management ORB timeout, limiting "
836 "to %ds\n", tgt->unit->device.bus_id,
837 timeout / 1000,
838 tgt->mgt_orb_timeout / 1000);
839 break;
840
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200841 case SBP2_CSR_LOGICAL_UNIT_NUMBER:
842 if (sbp2_add_logical_unit(tgt, value) < 0)
843 return -ENOMEM;
844 break;
845
846 case SBP2_CSR_LOGICAL_UNIT_DIRECTORY:
847 if (sbp2_scan_logical_unit_dir(tgt, ci.p + value) < 0)
848 return -ENOMEM;
849 break;
850 }
851 }
852 return 0;
853}
854
855static void sbp2_init_workarounds(struct sbp2_target *tgt, u32 model,
856 u32 firmware_revision)
857{
858 int i;
Stefan Richter05cca732008-01-26 17:42:45 +0100859 unsigned int w = sbp2_param_workarounds;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200860
Stefan Richter2df222b2007-08-13 17:48:25 +0200861 if (w)
862 fw_notify("Please notify linux1394-devel@lists.sourceforge.net "
863 "if you need the workarounds parameter for %s\n",
864 tgt->unit->device.bus_id);
865
866 if (w & SBP2_WORKAROUND_OVERRIDE)
867 goto out;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200868
869 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
870
871 if (sbp2_workarounds_table[i].firmware_revision !=
872 (firmware_revision & 0xffffff00))
873 continue;
874
875 if (sbp2_workarounds_table[i].model != model &&
876 sbp2_workarounds_table[i].model != ~0)
877 continue;
878
Stefan Richter2df222b2007-08-13 17:48:25 +0200879 w |= sbp2_workarounds_table[i].workarounds;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200880 break;
881 }
Stefan Richter2df222b2007-08-13 17:48:25 +0200882 out:
883 if (w)
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200884 fw_notify("Workarounds for %s: 0x%x "
885 "(firmware_revision 0x%06x, model_id 0x%06x)\n",
886 tgt->unit->device.bus_id,
Stefan Richter2df222b2007-08-13 17:48:25 +0200887 w, firmware_revision, model);
888 tgt->workarounds = w;
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200889}
890
891static struct scsi_host_template scsi_driver_template;
892
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500893static int sbp2_probe(struct device *dev)
894{
895 struct fw_unit *unit = fw_unit(dev);
896 struct fw_device *device = fw_device(unit->device.parent);
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200897 struct sbp2_target *tgt;
898 struct sbp2_logical_unit *lu;
899 struct Scsi_Host *shost;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500900 u32 model, firmware_revision;
901
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200902 shost = scsi_host_alloc(&scsi_driver_template, sizeof(*tgt));
903 if (shost == NULL)
904 return -ENOMEM;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500905
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200906 tgt = (struct sbp2_target *)shost->hostdata;
907 unit->device.driver_data = tgt;
908 tgt->unit = unit;
909 kref_init(&tgt->kref);
910 INIT_LIST_HEAD(&tgt->lu_list);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500911
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200912 if (fw_device_enable_phys_dma(device) < 0)
913 goto fail_shost_put;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500914
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200915 if (scsi_add_host(shost, &unit->device) < 0)
916 goto fail_shost_put;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500917
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200918 /* Initialize to values that won't match anything in our table. */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500919 firmware_revision = 0xff000000;
920 model = 0xff000000;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500921
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200922 /* implicit directory ID */
923 tgt->directory_id = ((unit->directory - device->config_rom) * 4
924 + CSR_CONFIG_ROM) & 0xffffff;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500925
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200926 if (sbp2_scan_unit_dir(tgt, unit->directory, &model,
927 &firmware_revision) < 0)
928 goto fail_tgt_put;
929
930 sbp2_init_workarounds(tgt, model, firmware_revision);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500931
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400932 get_device(&unit->device);
933
Stefan Richter285838e2007-11-07 01:12:51 +0100934 /* Do the login in a workqueue so we can easily reschedule retries. */
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200935 list_for_each_entry(lu, &tgt->lu_list, link)
Stefan Richter285838e2007-11-07 01:12:51 +0100936 sbp2_queue_work(lu, 0);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500937 return 0;
Kristian Høgsbergad852742007-05-09 19:23:07 -0400938
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200939 fail_tgt_put:
Stefan Richter285838e2007-11-07 01:12:51 +0100940 sbp2_target_put(tgt);
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200941 return -ENOMEM;
942
943 fail_shost_put:
944 scsi_host_put(shost);
945 return -ENOMEM;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500946}
947
948static int sbp2_remove(struct device *dev)
949{
950 struct fw_unit *unit = fw_unit(dev);
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200951 struct sbp2_target *tgt = unit->device.driver_data;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500952
Stefan Richter285838e2007-11-07 01:12:51 +0100953 sbp2_target_put(tgt);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500954 return 0;
955}
956
957static void sbp2_reconnect(struct work_struct *work)
958{
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200959 struct sbp2_logical_unit *lu =
960 container_of(work, struct sbp2_logical_unit, work.work);
961 struct fw_unit *unit = lu->tgt->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500962 struct fw_device *device = fw_device(unit->device.parent);
963 int generation, node_id, local_node_id;
964
Stefan Richterbe6f48b2008-01-27 19:14:44 +0100965 if (fw_device_is_shutdown(device))
966 goto out;
967
Stefan Richter5a8a1bc2008-01-24 01:53:19 +0100968 generation = device->generation;
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100969 smp_rmb(); /* node_id must not be older than generation */
Stefan Richter5a8a1bc2008-01-24 01:53:19 +0100970 node_id = device->node_id;
971 local_node_id = device->card->node_id;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500972
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200973 if (sbp2_send_management_orb(lu, node_id, generation,
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500974 SBP2_RECONNECT_REQUEST,
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200975 lu->login_id, NULL) < 0) {
976 if (lu->retries++ >= 5) {
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500977 fw_error("failed to reconnect to %s\n",
978 unit->device.bus_id);
979 /* Fall back and try to log in again. */
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200980 lu->retries = 0;
981 PREPARE_DELAYED_WORK(&lu->work, sbp2_login);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500982 }
Stefan Richter285838e2007-11-07 01:12:51 +0100983 sbp2_queue_work(lu, DIV_ROUND_UP(HZ, 5));
984 goto out;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500985 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500986
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200987 lu->generation = generation;
988 lu->tgt->node_id = node_id;
989 lu->tgt->address_high = local_node_id << 16;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500990
Stefan Richter5a3c2be2007-08-25 14:05:28 +0200991 fw_notify("reconnected to %s LUN %04x (%d retries)\n",
992 unit->device.bus_id, lu->lun, lu->retries);
993
994 sbp2_agent_reset(lu);
995 sbp2_cancel_orbs(lu);
Stefan Richter285838e2007-11-07 01:12:51 +0100996 out:
997 sbp2_target_put(lu->tgt);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500998}
999
1000static void sbp2_update(struct fw_unit *unit)
1001{
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001002 struct sbp2_target *tgt = unit->device.driver_data;
1003 struct sbp2_logical_unit *lu;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001004
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001005 fw_device_enable_phys_dma(fw_device(unit->device.parent));
1006
1007 /*
1008 * Fw-core serializes sbp2_update() against sbp2_remove().
1009 * Iteration over tgt->lu_list is therefore safe here.
1010 */
1011 list_for_each_entry(lu, &tgt->lu_list, link) {
1012 lu->retries = 0;
Stefan Richter285838e2007-11-07 01:12:51 +01001013 sbp2_queue_work(lu, 0);
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001014 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001015}
1016
1017#define SBP2_UNIT_SPEC_ID_ENTRY 0x0000609e
1018#define SBP2_SW_VERSION_ENTRY 0x00010483
1019
Stefan Richter21ebcd12007-01-14 15:29:07 +01001020static const struct fw_device_id sbp2_id_table[] = {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001021 {
1022 .match_flags = FW_MATCH_SPECIFIER_ID | FW_MATCH_VERSION,
1023 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY,
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001024 .version = SBP2_SW_VERSION_ENTRY,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001025 },
1026 { }
1027};
1028
1029static struct fw_driver sbp2_driver = {
1030 .driver = {
1031 .owner = THIS_MODULE,
1032 .name = sbp2_driver_name,
1033 .bus = &fw_bus_type,
1034 .probe = sbp2_probe,
1035 .remove = sbp2_remove,
1036 },
1037 .update = sbp2_update,
1038 .id_table = sbp2_id_table,
1039};
1040
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001041static unsigned int
1042sbp2_status_to_sense_data(u8 *sbp2_status, u8 *sense_data)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001043{
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001044 int sam_status;
1045
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001046 sense_data[0] = 0x70;
1047 sense_data[1] = 0x0;
1048 sense_data[2] = sbp2_status[1];
1049 sense_data[3] = sbp2_status[4];
1050 sense_data[4] = sbp2_status[5];
1051 sense_data[5] = sbp2_status[6];
1052 sense_data[6] = sbp2_status[7];
1053 sense_data[7] = 10;
1054 sense_data[8] = sbp2_status[8];
1055 sense_data[9] = sbp2_status[9];
1056 sense_data[10] = sbp2_status[10];
1057 sense_data[11] = sbp2_status[11];
1058 sense_data[12] = sbp2_status[2];
1059 sense_data[13] = sbp2_status[3];
1060 sense_data[14] = sbp2_status[12];
1061 sense_data[15] = sbp2_status[13];
1062
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001063 sam_status = sbp2_status[0] & 0x3f;
1064
1065 switch (sam_status) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001066 case SAM_STAT_GOOD:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001067 case SAM_STAT_CHECK_CONDITION:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001068 case SAM_STAT_CONDITION_MET:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001069 case SAM_STAT_BUSY:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001070 case SAM_STAT_RESERVATION_CONFLICT:
1071 case SAM_STAT_COMMAND_TERMINATED:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001072 return DID_OK << 16 | sam_status;
1073
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001074 default:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001075 return DID_ERROR << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001076 }
1077}
1078
1079static void
1080complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
1081{
Jay Fenlason6f061482007-06-27 16:04:33 -04001082 struct sbp2_command_orb *orb =
1083 container_of(base_orb, struct sbp2_command_orb, base);
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001084 struct fw_device *device = fw_device(orb->lu->tgt->unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001085 int result;
1086
1087 if (status != NULL) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001088 if (STATUS_GET_DEAD(*status))
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001089 sbp2_agent_reset(orb->lu);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001090
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001091 switch (STATUS_GET_RESPONSE(*status)) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001092 case SBP2_STATUS_REQUEST_COMPLETE:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001093 result = DID_OK << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001094 break;
1095 case SBP2_STATUS_TRANSPORT_FAILURE:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001096 result = DID_BUS_BUSY << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001097 break;
1098 case SBP2_STATUS_ILLEGAL_REQUEST:
1099 case SBP2_STATUS_VENDOR_DEPENDENT:
1100 default:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001101 result = DID_ERROR << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001102 break;
1103 }
1104
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001105 if (result == DID_OK << 16 && STATUS_GET_LEN(*status) > 1)
1106 result = sbp2_status_to_sense_data(STATUS_GET_DATA(*status),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001107 orb->cmd->sense_buffer);
1108 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001109 /*
1110 * If the orb completes with status == NULL, something
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001111 * went wrong, typically a bus reset happened mid-orb
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001112 * or when sending the write (less likely).
1113 */
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001114 result = DID_BUS_BUSY << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001115 }
1116
1117 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001118 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001119
Stefan Richter412edf62007-07-16 21:05:41 +02001120 if (scsi_sg_count(orb->cmd) > 0)
1121 dma_unmap_sg(device->card->device, scsi_sglist(orb->cmd),
1122 scsi_sg_count(orb->cmd),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001123 orb->cmd->sc_data_direction);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001124
1125 if (orb->page_table_bus != 0)
1126 dma_unmap_single(device->card->device, orb->page_table_bus,
Stefan Richterb4be0162007-07-02 22:07:34 +02001127 sizeof(orb->page_table), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001128
Kristian Høgsbergfbb54232007-04-10 18:11:18 -04001129 orb->cmd->result = result;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001130 orb->done(orb->cmd);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001131}
1132
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001133static int
1134sbp2_map_scatterlist(struct sbp2_command_orb *orb, struct fw_device *device,
1135 struct sbp2_logical_unit *lu)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001136{
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001137 struct scatterlist *sg;
1138 int sg_len, l, i, j, count;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001139 dma_addr_t sg_addr;
1140
Stefan Richter412edf62007-07-16 21:05:41 +02001141 sg = scsi_sglist(orb->cmd);
1142 count = dma_map_sg(device->card->device, sg, scsi_sg_count(orb->cmd),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001143 orb->cmd->sc_data_direction);
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001144 if (count == 0)
1145 goto fail;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001146
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001147 /*
1148 * Handle the special case where there is only one element in
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001149 * the scatter list by converting it to an immediate block
1150 * request. This is also a workaround for broken devices such
1151 * as the second generation iPod which doesn't support page
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001152 * tables.
1153 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001154 if (count == 1 && sg_dma_len(sg) < SBP2_MAX_SG_ELEMENT_LENGTH) {
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001155 orb->request.data_descriptor.high = lu->tgt->address_high;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001156 orb->request.data_descriptor.low = sg_dma_address(sg);
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001157 orb->request.misc |= COMMAND_ORB_DATA_SIZE(sg_dma_len(sg));
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001158 return 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001159 }
1160
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001161 /*
1162 * Convert the scatterlist to an sbp2 page table. If any
Kristian Høgsberg, Stefan Richter36abb3b2007-05-09 19:23:10 -04001163 * scatterlist entries are too big for sbp2, we split them as we
1164 * go. Even if we ask the block I/O layer to not give us sg
1165 * elements larger than 65535 bytes, some IOMMUs may merge sg elements
1166 * during DMA mapping, and Linux currently doesn't prevent this.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001167 */
Stefan Richterb7811da2008-01-15 21:10:50 +01001168 for (i = 0, j = 0; i < count; i++, sg = sg_next(sg)) {
1169 sg_len = sg_dma_len(sg);
1170 sg_addr = sg_dma_address(sg);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001171 while (sg_len) {
Stefan Richter332ef332007-07-01 13:56:03 +02001172 /* FIXME: This won't get us out of the pinch. */
1173 if (unlikely(j >= ARRAY_SIZE(orb->page_table))) {
1174 fw_error("page table overflow\n");
1175 goto fail_page_table;
1176 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001177 l = min(sg_len, SBP2_MAX_SG_ELEMENT_LENGTH);
1178 orb->page_table[j].low = sg_addr;
1179 orb->page_table[j].high = (l << 16);
1180 sg_addr += l;
1181 sg_len -= l;
1182 j++;
1183 }
1184 }
1185
Stefan Richterb4be0162007-07-02 22:07:34 +02001186 fw_memcpy_to_be32(orb->page_table, orb->page_table,
1187 sizeof(orb->page_table[0]) * j);
1188 orb->page_table_bus =
1189 dma_map_single(device->card->device, orb->page_table,
1190 sizeof(orb->page_table), DMA_TO_DEVICE);
1191 if (dma_mapping_error(orb->page_table_bus))
1192 goto fail_page_table;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001193
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001194 /*
1195 * The data_descriptor pointer is the one case where we need
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001196 * to fill in the node ID part of the address. All other
1197 * pointers assume that the data referenced reside on the
1198 * initiator (i.e. us), but data_descriptor can refer to data
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001199 * on other nodes so we need to put our ID in descriptor.high.
1200 */
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001201 orb->request.data_descriptor.high = lu->tgt->address_high;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001202 orb->request.data_descriptor.low = orb->page_table_bus;
1203 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001204 COMMAND_ORB_PAGE_TABLE_PRESENT |
1205 COMMAND_ORB_DATA_SIZE(j);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001206
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001207 return 0;
1208
1209 fail_page_table:
Stefan Richter412edf62007-07-16 21:05:41 +02001210 dma_unmap_sg(device->card->device, sg, scsi_sg_count(orb->cmd),
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001211 orb->cmd->sc_data_direction);
1212 fail:
1213 return -ENOMEM;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001214}
1215
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001216/* SCSI stack integration */
1217
1218static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
1219{
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001220 struct sbp2_logical_unit *lu = cmd->device->hostdata;
1221 struct fw_device *device = fw_device(lu->tgt->unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001222 struct sbp2_command_orb *orb;
Stefan Richter05cca732008-01-26 17:42:45 +01001223 unsigned int max_payload;
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001224 int retval = SCSI_MLQUEUE_HOST_BUSY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001225
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001226 /*
1227 * Bidirectional commands are not yet implemented, and unknown
1228 * transfer direction not handled.
1229 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001230 if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02001231 fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
Kristian Høgsberge1b68c42007-05-09 19:23:09 -04001232 cmd->result = DID_ERROR << 16;
1233 done(cmd);
1234 return 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001235 }
1236
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001237 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001238 if (orb == NULL) {
1239 fw_notify("failed to alloc orb\n");
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001240 return SCSI_MLQUEUE_HOST_BUSY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001241 }
1242
Kristian Høgsberg12f26aa2007-04-10 18:11:20 -04001243 /* Initialize rcode to something not RCODE_COMPLETE. */
1244 orb->base.rcode = -1;
Kristian Høgsberge57d2012007-08-24 18:59:58 -04001245 kref_init(&orb->base.kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001246
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001247 orb->lu = lu;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001248 orb->done = done;
1249 orb->cmd = cmd;
1250
1251 orb->request.next.high = SBP2_ORB_NULL;
1252 orb->request.next.low = 0x0;
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001253 /*
1254 * At speed 100 we can do 512 bytes per packet, at speed 200,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001255 * 1024 bytes per packet etc. The SBP-2 max_payload field
1256 * specifies the max payload size as 2 ^ (max_payload + 2), so
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001257 * if we set this to max_speed + 7, we get the right value.
1258 */
Stefan Richter25659f72007-07-21 22:43:05 +02001259 max_payload = min(device->max_speed + 7,
1260 device->card->max_receive - 1);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001261 orb->request.misc =
Stefan Richter25659f72007-07-21 22:43:05 +02001262 COMMAND_ORB_MAX_PAYLOAD(max_payload) |
Stefan Richterf1397492007-06-10 21:31:36 +02001263 COMMAND_ORB_SPEED(device->max_speed) |
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001264 COMMAND_ORB_NOTIFY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001265
1266 if (cmd->sc_data_direction == DMA_FROM_DEVICE)
1267 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001268 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_FROM_MEDIA);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001269 else if (cmd->sc_data_direction == DMA_TO_DEVICE)
1270 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001271 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_TO_MEDIA);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001272
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001273 if (scsi_sg_count(cmd) && sbp2_map_scatterlist(orb, device, lu) < 0)
1274 goto out;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001275
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001276 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001277
1278 memset(orb->request.command_block,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001279 0, sizeof(orb->request.command_block));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001280 memcpy(orb->request.command_block, cmd->cmnd, COMMAND_SIZE(*cmd->cmnd));
1281
1282 orb->base.callback = complete_command_orb;
Stefan Richter85263922007-07-02 21:04:08 +02001283 orb->base.request_bus =
1284 dma_map_single(device->card->device, &orb->request,
1285 sizeof(orb->request), DMA_TO_DEVICE);
1286 if (dma_mapping_error(orb->base.request_bus))
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001287 goto out;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001288
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001289 sbp2_send_orb(&orb->base, lu, lu->tgt->node_id, lu->generation,
1290 lu->command_block_agent_address + SBP2_ORB_POINTER);
1291 retval = 0;
1292 out:
Kristian Høgsberge57d2012007-08-24 18:59:58 -04001293 kref_put(&orb->base.kref, free_orb);
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001294 return retval;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001295}
1296
Stefan Richtercfb01382007-01-23 21:20:08 +01001297static int sbp2_scsi_slave_alloc(struct scsi_device *sdev)
1298{
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001299 struct sbp2_logical_unit *lu = sdev->hostdata;
Stefan Richtercfb01382007-01-23 21:20:08 +01001300
1301 sdev->allow_restart = 1;
1302
James Bottomley465ff312008-01-01 10:00:10 -06001303 /*
1304 * Update the dma alignment (minimum alignment requirements for
1305 * start and end of DMA transfers) to be a sector
1306 */
1307 blk_queue_update_dma_alignment(sdev->request_queue, 511);
1308
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001309 if (lu->tgt->workarounds & SBP2_WORKAROUND_INQUIRY_36)
Stefan Richtercfb01382007-01-23 21:20:08 +01001310 sdev->inquiry_len = 36;
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001311
Stefan Richtercfb01382007-01-23 21:20:08 +01001312 return 0;
1313}
1314
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001315static int sbp2_scsi_slave_configure(struct scsi_device *sdev)
1316{
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001317 struct sbp2_logical_unit *lu = sdev->hostdata;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001318
Stefan Richtercfb01382007-01-23 21:20:08 +01001319 sdev->use_10_for_rw = 1;
1320
1321 if (sdev->type == TYPE_ROM)
1322 sdev->use_10_for_ms = 1;
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001323
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001324 if (sdev->type == TYPE_DISK &&
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001325 lu->tgt->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001326 sdev->skip_ms_page_8 = 1;
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001327
1328 if (lu->tgt->workarounds & SBP2_WORKAROUND_FIX_CAPACITY)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001329 sdev->fix_capacity = 1;
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001330
1331 if (lu->tgt->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
Stefan Richtercf47c7a2007-06-17 23:52:08 +02001332 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001333
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001334 return 0;
1335}
1336
1337/*
1338 * Called by scsi stack when something has really gone wrong. Usually
1339 * called when a command has timed-out for some reason.
1340 */
1341static int sbp2_scsi_abort(struct scsi_cmnd *cmd)
1342{
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001343 struct sbp2_logical_unit *lu = cmd->device->hostdata;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001344
1345 fw_notify("sbp2_scsi_abort\n");
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001346 sbp2_agent_reset(lu);
1347 sbp2_cancel_orbs(lu);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001348
1349 return SUCCESS;
1350}
1351
Stefan Richter14e21982007-05-27 13:18:27 +02001352/*
1353 * Format of /sys/bus/scsi/devices/.../ieee1394_id:
1354 * u64 EUI-64 : u24 directory_ID : u16 LUN (all printed in hexadecimal)
1355 *
1356 * This is the concatenation of target port identifier and logical unit
1357 * identifier as per SAM-2...SAM-4 annex A.
1358 */
1359static ssize_t
1360sbp2_sysfs_ieee1394_id_show(struct device *dev, struct device_attribute *attr,
1361 char *buf)
1362{
1363 struct scsi_device *sdev = to_scsi_device(dev);
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001364 struct sbp2_logical_unit *lu;
Stefan Richter14e21982007-05-27 13:18:27 +02001365 struct fw_device *device;
Stefan Richter14e21982007-05-27 13:18:27 +02001366
1367 if (!sdev)
1368 return 0;
Stefan Richter14e21982007-05-27 13:18:27 +02001369
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001370 lu = sdev->hostdata;
1371 device = fw_device(lu->tgt->unit->device.parent);
Stefan Richter14e21982007-05-27 13:18:27 +02001372
1373 return sprintf(buf, "%08x%08x:%06x:%04x\n",
1374 device->config_rom[3], device->config_rom[4],
Stefan Richter5a3c2be2007-08-25 14:05:28 +02001375 lu->tgt->directory_id, lu->lun);
Stefan Richter14e21982007-05-27 13:18:27 +02001376}
1377
1378static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
1379
1380static struct device_attribute *sbp2_scsi_sysfs_attrs[] = {
1381 &dev_attr_ieee1394_id,
1382 NULL
1383};
1384
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001385static struct scsi_host_template scsi_driver_template = {
1386 .module = THIS_MODULE,
1387 .name = "SBP-2 IEEE-1394",
Kristian Høgsbergb02b6bc2007-05-09 19:23:12 -04001388 .proc_name = sbp2_driver_name,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001389 .queuecommand = sbp2_scsi_queuecommand,
Stefan Richtercfb01382007-01-23 21:20:08 +01001390 .slave_alloc = sbp2_scsi_slave_alloc,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001391 .slave_configure = sbp2_scsi_slave_configure,
1392 .eh_abort_handler = sbp2_scsi_abort,
1393 .this_id = -1,
1394 .sg_tablesize = SG_ALL,
1395 .use_clustering = ENABLE_CLUSTERING,
Stefan Richter02af8e72007-01-21 20:50:11 +01001396 .cmd_per_lun = 1,
1397 .can_queue = 1,
Stefan Richter14e21982007-05-27 13:18:27 +02001398 .sdev_attrs = sbp2_scsi_sysfs_attrs,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001399};
1400
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001401MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
1402MODULE_DESCRIPTION("SCSI over IEEE1394");
1403MODULE_LICENSE("GPL");
1404MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
1405
Olaf Hering1e4c7b02007-05-05 23:17:13 +02001406/* Provide a module alias so root-on-sbp2 initrds don't break. */
1407#ifndef CONFIG_IEEE1394_SBP2_MODULE
1408MODULE_ALIAS("sbp2");
1409#endif
1410
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001411static int __init sbp2_init(void)
1412{
Stefan Richterdf8ec242007-08-12 12:51:18 +02001413 sbp2_wq = create_singlethread_workqueue(KBUILD_MODNAME);
1414 if (!sbp2_wq)
1415 return -ENOMEM;
1416
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001417 return driver_register(&sbp2_driver.driver);
1418}
1419
1420static void __exit sbp2_cleanup(void)
1421{
1422 driver_unregister(&sbp2_driver.driver);
Stefan Richterdf8ec242007-08-12 12:51:18 +02001423 destroy_workqueue(sbp2_wq);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001424}
1425
1426module_init(sbp2_init);
1427module_exit(sbp2_cleanup);