blob: 238730f75db197f857636ef224736d205cd2b571 [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>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050035#include <linux/device.h>
Andrew Morton0b5b2902006-12-27 14:49:23 -080036#include <linux/scatterlist.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050037#include <linux/dma-mapping.h>
Stefan Richtercf47c7a2007-06-17 23:52:08 +020038#include <linux/blkdev.h>
Stefan Richtere7cdf232007-07-01 13:54:57 +020039#include <linux/string.h>
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -050040#include <linux/timer.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050041
42#include <scsi/scsi.h>
43#include <scsi/scsi_cmnd.h>
44#include <scsi/scsi_dbg.h>
45#include <scsi/scsi_device.h>
46#include <scsi/scsi_host.h>
47
48#include "fw-transaction.h"
49#include "fw-topology.h"
50#include "fw-device.h"
51
Stefan Richter5cd54c92007-06-17 23:55:41 +020052/*
53 * So far only bridges from Oxford Semiconductor are known to support
54 * concurrent logins. Depending on firmware, four or two concurrent logins
55 * are possible on OXFW911 and newer Oxsemi bridges.
56 *
57 * Concurrent logins are useful together with cluster filesystems.
58 */
59static int sbp2_param_exclusive_login = 1;
60module_param_named(exclusive_login, sbp2_param_exclusive_login, bool, 0644);
61MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
62 "(default = Y, use N for concurrent initiators)");
63
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050064/* I don't know why the SCSI stack doesn't define something like this... */
Kristian Høgsberga98e2712007-05-07 20:33:34 -040065typedef void (*scsi_done_fn_t)(struct scsi_cmnd *);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050066
67static const char sbp2_driver_name[] = "sbp2";
68
69struct sbp2_device {
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -040070 struct kref kref;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050071 struct fw_unit *unit;
72 struct fw_address_handler address_handler;
73 struct list_head orb_list;
74 u64 management_agent_address;
75 u64 command_block_agent_address;
76 u32 workarounds;
77 int login_id;
78
Kristian Høgsbergc781c062007-05-07 20:33:32 -040079 /*
80 * We cache these addresses and only update them once we've
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050081 * logged in or reconnected to the sbp2 device. That way, any
82 * IO to the device will automatically fail and get retried if
83 * it happens in a window where the device is not ready to
Kristian Høgsbergc781c062007-05-07 20:33:32 -040084 * handle it (e.g. after a bus reset but before we reconnect).
85 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050086 int node_id;
87 int address_high;
88 int generation;
89
Kristian Høgsberg7f37c422007-02-06 14:49:34 -050090 int retries;
91 struct delayed_work work;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050092};
93
94#define SBP2_MAX_SG_ELEMENT_LENGTH 0xf000
95#define SBP2_MAX_SECTORS 255 /* Max sectors supported */
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -050096#define SBP2_ORB_TIMEOUT 2000 /* Timeout in ms */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050097
98#define SBP2_ORB_NULL 0x80000000
99
100#define SBP2_DIRECTION_TO_MEDIA 0x0
101#define SBP2_DIRECTION_FROM_MEDIA 0x1
102
103/* Unit directory keys */
104#define SBP2_COMMAND_SET_SPECIFIER 0x38
105#define SBP2_COMMAND_SET 0x39
106#define SBP2_COMMAND_SET_REVISION 0x3b
107#define SBP2_FIRMWARE_REVISION 0x3c
108
109/* Flags for detected oddities and brokeness */
110#define SBP2_WORKAROUND_128K_MAX_TRANS 0x1
111#define SBP2_WORKAROUND_INQUIRY_36 0x2
112#define SBP2_WORKAROUND_MODE_SENSE_8 0x4
113#define SBP2_WORKAROUND_FIX_CAPACITY 0x8
114#define SBP2_WORKAROUND_OVERRIDE 0x100
115
116/* Management orb opcodes */
117#define SBP2_LOGIN_REQUEST 0x0
118#define SBP2_QUERY_LOGINS_REQUEST 0x1
119#define SBP2_RECONNECT_REQUEST 0x3
120#define SBP2_SET_PASSWORD_REQUEST 0x4
121#define SBP2_LOGOUT_REQUEST 0x7
122#define SBP2_ABORT_TASK_REQUEST 0xb
123#define SBP2_ABORT_TASK_SET 0xc
124#define SBP2_LOGICAL_UNIT_RESET 0xe
125#define SBP2_TARGET_RESET_REQUEST 0xf
126
127/* Offsets for command block agent registers */
128#define SBP2_AGENT_STATE 0x00
129#define SBP2_AGENT_RESET 0x04
130#define SBP2_ORB_POINTER 0x08
131#define SBP2_DOORBELL 0x10
132#define SBP2_UNSOLICITED_STATUS_ENABLE 0x14
133
134/* Status write response codes */
135#define SBP2_STATUS_REQUEST_COMPLETE 0x0
136#define SBP2_STATUS_TRANSPORT_FAILURE 0x1
137#define SBP2_STATUS_ILLEGAL_REQUEST 0x2
138#define SBP2_STATUS_VENDOR_DEPENDENT 0x3
139
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400140#define STATUS_GET_ORB_HIGH(v) ((v).status & 0xffff)
141#define STATUS_GET_SBP_STATUS(v) (((v).status >> 16) & 0xff)
142#define STATUS_GET_LEN(v) (((v).status >> 24) & 0x07)
143#define STATUS_GET_DEAD(v) (((v).status >> 27) & 0x01)
144#define STATUS_GET_RESPONSE(v) (((v).status >> 28) & 0x03)
145#define STATUS_GET_SOURCE(v) (((v).status >> 30) & 0x03)
146#define STATUS_GET_ORB_LOW(v) ((v).orb_low)
147#define STATUS_GET_DATA(v) ((v).data)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500148
149struct sbp2_status {
150 u32 status;
151 u32 orb_low;
152 u8 data[24];
153};
154
155struct sbp2_pointer {
156 u32 high;
157 u32 low;
158};
159
160struct sbp2_orb {
161 struct fw_transaction t;
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400162 struct kref kref;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500163 dma_addr_t request_bus;
164 int rcode;
165 struct sbp2_pointer pointer;
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400166 void (*callback)(struct sbp2_orb * orb, struct sbp2_status * status);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500167 struct list_head link;
168};
169
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400170#define MANAGEMENT_ORB_LUN(v) ((v))
171#define MANAGEMENT_ORB_FUNCTION(v) ((v) << 16)
172#define MANAGEMENT_ORB_RECONNECT(v) ((v) << 20)
Stefan Richter5cd54c92007-06-17 23:55:41 +0200173#define MANAGEMENT_ORB_EXCLUSIVE(v) ((v) ? 1 << 28 : 0)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400174#define MANAGEMENT_ORB_REQUEST_FORMAT(v) ((v) << 29)
175#define MANAGEMENT_ORB_NOTIFY ((1) << 31)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500176
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400177#define MANAGEMENT_ORB_RESPONSE_LENGTH(v) ((v))
178#define MANAGEMENT_ORB_PASSWORD_LENGTH(v) ((v) << 16)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500179
180struct sbp2_management_orb {
181 struct sbp2_orb base;
182 struct {
183 struct sbp2_pointer password;
184 struct sbp2_pointer response;
185 u32 misc;
186 u32 length;
187 struct sbp2_pointer status_fifo;
188 } request;
189 __be32 response[4];
190 dma_addr_t response_bus;
191 struct completion done;
192 struct sbp2_status status;
193};
194
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400195#define LOGIN_RESPONSE_GET_LOGIN_ID(v) ((v).misc & 0xffff)
196#define LOGIN_RESPONSE_GET_LENGTH(v) (((v).misc >> 16) & 0xffff)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500197
198struct sbp2_login_response {
199 u32 misc;
200 struct sbp2_pointer command_block_agent;
201 u32 reconnect_hold;
202};
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400203#define COMMAND_ORB_DATA_SIZE(v) ((v))
204#define COMMAND_ORB_PAGE_SIZE(v) ((v) << 16)
205#define COMMAND_ORB_PAGE_TABLE_PRESENT ((1) << 19)
206#define COMMAND_ORB_MAX_PAYLOAD(v) ((v) << 20)
207#define COMMAND_ORB_SPEED(v) ((v) << 24)
208#define COMMAND_ORB_DIRECTION(v) ((v) << 27)
209#define COMMAND_ORB_REQUEST_FORMAT(v) ((v) << 29)
210#define COMMAND_ORB_NOTIFY ((1) << 31)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500211
212struct sbp2_command_orb {
213 struct sbp2_orb base;
214 struct {
215 struct sbp2_pointer next;
216 struct sbp2_pointer data_descriptor;
217 u32 misc;
218 u8 command_block[12];
219 } request;
220 struct scsi_cmnd *cmd;
221 scsi_done_fn_t done;
222 struct fw_unit *unit;
223
Stefan Richter9fb2dd12007-07-01 13:55:31 +0200224 struct sbp2_pointer page_table[SG_ALL] __attribute__((aligned(8)));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500225 dma_addr_t page_table_bus;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500226};
227
228/*
229 * List of devices with known bugs.
230 *
231 * The firmware_revision field, masked with 0xffff00, is the best
232 * indicator for the type of bridge chip of a device. It yields a few
233 * false positives but this did not break correctly behaving devices
234 * so far. We use ~0 as a wildcard, since the 24 bit values we get
235 * from the config rom can never match that.
236 */
237static const struct {
238 u32 firmware_revision;
239 u32 model;
240 unsigned workarounds;
241} sbp2_workarounds_table[] = {
242 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
243 .firmware_revision = 0x002800,
244 .model = 0x001010,
245 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
246 SBP2_WORKAROUND_MODE_SENSE_8,
247 },
248 /* Initio bridges, actually only needed for some older ones */ {
249 .firmware_revision = 0x000200,
250 .model = ~0,
251 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
252 },
253 /* Symbios bridge */ {
254 .firmware_revision = 0xa0b800,
255 .model = ~0,
256 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
257 },
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400258
259 /*
260 * There are iPods (2nd gen, 3rd gen) with model_id == 0, but
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500261 * these iPods do not feature the read_capacity bug according
262 * to one report. Read_capacity behaviour as well as model_id
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400263 * could change due to Apple-supplied firmware updates though.
264 */
265
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500266 /* iPod 4th generation. */ {
267 .firmware_revision = 0x0a2700,
268 .model = 0x000021,
269 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
270 },
271 /* iPod mini */ {
272 .firmware_revision = 0x0a2700,
273 .model = 0x000023,
274 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
275 },
276 /* iPod Photo */ {
277 .firmware_revision = 0x0a2700,
278 .model = 0x00007e,
279 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
280 }
281};
282
283static void
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400284free_orb(struct kref *kref)
285{
286 struct sbp2_orb *orb = container_of(kref, struct sbp2_orb, kref);
287
288 kfree(orb);
289}
290
291static void
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500292sbp2_status_write(struct fw_card *card, struct fw_request *request,
293 int tcode, int destination, int source,
294 int generation, int speed,
295 unsigned long long offset,
296 void *payload, size_t length, void *callback_data)
297{
298 struct sbp2_device *sd = callback_data;
299 struct sbp2_orb *orb;
300 struct sbp2_status status;
301 size_t header_size;
302 unsigned long flags;
303
304 if (tcode != TCODE_WRITE_BLOCK_REQUEST ||
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400305 length == 0 || length > sizeof(status)) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500306 fw_send_response(card, request, RCODE_TYPE_ERROR);
307 return;
308 }
309
310 header_size = min(length, 2 * sizeof(u32));
311 fw_memcpy_from_be32(&status, payload, header_size);
312 if (length > header_size)
313 memcpy(status.data, payload + 8, length - header_size);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400314 if (STATUS_GET_SOURCE(status) == 2 || STATUS_GET_SOURCE(status) == 3) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500315 fw_notify("non-orb related status write, not handled\n");
316 fw_send_response(card, request, RCODE_COMPLETE);
317 return;
318 }
319
320 /* Lookup the orb corresponding to this status write. */
321 spin_lock_irqsave(&card->lock, flags);
322 list_for_each_entry(orb, &sd->orb_list, link) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400323 if (STATUS_GET_ORB_HIGH(status) == 0 &&
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400324 STATUS_GET_ORB_LOW(status) == orb->request_bus) {
325 orb->rcode = RCODE_COMPLETE;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500326 list_del(&orb->link);
327 break;
328 }
329 }
330 spin_unlock_irqrestore(&card->lock, flags);
331
332 if (&orb->link != &sd->orb_list)
333 orb->callback(orb, &status);
334 else
335 fw_error("status write for unknown orb\n");
336
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400337 kref_put(&orb->kref, free_orb);
338
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500339 fw_send_response(card, request, RCODE_COMPLETE);
340}
341
342static void
343complete_transaction(struct fw_card *card, int rcode,
344 void *payload, size_t length, void *data)
345{
346 struct sbp2_orb *orb = data;
347 unsigned long flags;
348
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400349 /*
350 * This is a little tricky. We can get the status write for
351 * the orb before we get this callback. The status write
352 * handler above will assume the orb pointer transaction was
353 * successful and set the rcode to RCODE_COMPLETE for the orb.
354 * So this callback only sets the rcode if it hasn't already
355 * been set and only does the cleanup if the transaction
356 * failed and we didn't already get a status write.
357 */
358 spin_lock_irqsave(&card->lock, flags);
359
360 if (orb->rcode == -1)
361 orb->rcode = rcode;
362 if (orb->rcode != RCODE_COMPLETE) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500363 list_del(&orb->link);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500364 orb->callback(orb, NULL);
365 }
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400366
367 spin_unlock_irqrestore(&card->lock, flags);
368
369 kref_put(&orb->kref, free_orb);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500370}
371
372static void
373sbp2_send_orb(struct sbp2_orb *orb, struct fw_unit *unit,
374 int node_id, int generation, u64 offset)
375{
376 struct fw_device *device = fw_device(unit->device.parent);
377 struct sbp2_device *sd = unit->device.driver_data;
378 unsigned long flags;
379
380 orb->pointer.high = 0;
381 orb->pointer.low = orb->request_bus;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400382 fw_memcpy_to_be32(&orb->pointer, &orb->pointer, sizeof(orb->pointer));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500383
384 spin_lock_irqsave(&device->card->lock, flags);
385 list_add_tail(&orb->link, &sd->orb_list);
386 spin_unlock_irqrestore(&device->card->lock, flags);
387
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400388 /* Take a ref for the orb list and for the transaction callback. */
389 kref_get(&orb->kref);
390 kref_get(&orb->kref);
391
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500392 fw_send_request(device->card, &orb->t, TCODE_WRITE_BLOCK_REQUEST,
Stefan Richterf1397492007-06-10 21:31:36 +0200393 node_id, generation, device->max_speed, offset,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400394 &orb->pointer, sizeof(orb->pointer),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500395 complete_transaction, orb);
396}
397
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500398static int sbp2_cancel_orbs(struct fw_unit *unit)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500399{
400 struct fw_device *device = fw_device(unit->device.parent);
401 struct sbp2_device *sd = unit->device.driver_data;
402 struct sbp2_orb *orb, *next;
403 struct list_head list;
404 unsigned long flags;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500405 int retval = -ENOENT;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500406
407 INIT_LIST_HEAD(&list);
408 spin_lock_irqsave(&device->card->lock, flags);
409 list_splice_init(&sd->orb_list, &list);
410 spin_unlock_irqrestore(&device->card->lock, flags);
411
412 list_for_each_entry_safe(orb, next, &list, link) {
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500413 retval = 0;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500414 if (fw_cancel_transaction(device->card, &orb->t) == 0)
415 continue;
416
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500417 orb->rcode = RCODE_CANCELLED;
418 orb->callback(orb, NULL);
419 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500420
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500421 return retval;
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -0500422}
423
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500424static void
425complete_management_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
426{
427 struct sbp2_management_orb *orb =
Jay Fenlason6f061482007-06-27 16:04:33 -0400428 container_of(base_orb, struct sbp2_management_orb, base);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500429
430 if (status)
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400431 memcpy(&orb->status, status, sizeof(*status));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500432 complete(&orb->done);
433}
434
435static int
436sbp2_send_management_orb(struct fw_unit *unit, int node_id, int generation,
437 int function, int lun, void *response)
438{
439 struct fw_device *device = fw_device(unit->device.parent);
440 struct sbp2_device *sd = unit->device.driver_data;
441 struct sbp2_management_orb *orb;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500442 int retval = -ENOMEM;
443
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400444 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500445 if (orb == NULL)
446 return -ENOMEM;
447
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400448 kref_init(&orb->base.kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500449 orb->response_bus =
450 dma_map_single(device->card->device, &orb->response,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400451 sizeof(orb->response), DMA_FROM_DEVICE);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -0500452 if (dma_mapping_error(orb->response_bus))
Stefan Richter7aa48482007-07-02 21:04:44 +0200453 goto fail_mapping_response;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500454
455 orb->request.response.high = 0;
456 orb->request.response.low = orb->response_bus;
457
458 orb->request.misc =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400459 MANAGEMENT_ORB_NOTIFY |
460 MANAGEMENT_ORB_FUNCTION(function) |
461 MANAGEMENT_ORB_LUN(lun);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500462 orb->request.length =
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400463 MANAGEMENT_ORB_RESPONSE_LENGTH(sizeof(orb->response));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500464
465 orb->request.status_fifo.high = sd->address_handler.offset >> 32;
466 orb->request.status_fifo.low = sd->address_handler.offset;
467
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500468 if (function == SBP2_LOGIN_REQUEST) {
469 orb->request.misc |=
Stefan Richter5cd54c92007-06-17 23:55:41 +0200470 MANAGEMENT_ORB_EXCLUSIVE(sbp2_param_exclusive_login) |
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400471 MANAGEMENT_ORB_RECONNECT(0);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500472 }
473
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400474 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500475
476 init_completion(&orb->done);
477 orb->base.callback = complete_management_orb;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500478
Stefan Richter7aa48482007-07-02 21:04:44 +0200479 orb->base.request_bus =
480 dma_map_single(device->card->device, &orb->request,
481 sizeof(orb->request), DMA_TO_DEVICE);
482 if (dma_mapping_error(orb->base.request_bus))
483 goto fail_mapping_request;
484
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500485 sbp2_send_orb(&orb->base, unit,
486 node_id, generation, sd->management_agent_address);
487
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500488 wait_for_completion_timeout(&orb->done,
489 msecs_to_jiffies(SBP2_ORB_TIMEOUT));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500490
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500491 retval = -EIO;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500492 if (sbp2_cancel_orbs(unit) == 0) {
493 fw_error("orb reply timed out, rcode=0x%02x\n",
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500494 orb->base.rcode);
495 goto out;
496 }
497
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500498 if (orb->base.rcode != RCODE_COMPLETE) {
499 fw_error("management write failed, rcode 0x%02x\n",
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500500 orb->base.rcode);
501 goto out;
502 }
503
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400504 if (STATUS_GET_RESPONSE(orb->status) != 0 ||
505 STATUS_GET_SBP_STATUS(orb->status) != 0) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500506 fw_error("error status: %d:%d\n",
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400507 STATUS_GET_RESPONSE(orb->status),
508 STATUS_GET_SBP_STATUS(orb->status));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500509 goto out;
510 }
511
512 retval = 0;
513 out:
514 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400515 sizeof(orb->request), DMA_TO_DEVICE);
Stefan Richter7aa48482007-07-02 21:04:44 +0200516 fail_mapping_request:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500517 dma_unmap_single(device->card->device, orb->response_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400518 sizeof(orb->response), DMA_FROM_DEVICE);
Stefan Richter7aa48482007-07-02 21:04:44 +0200519 fail_mapping_response:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500520 if (response)
521 fw_memcpy_from_be32(response,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400522 orb->response, sizeof(orb->response));
Kristian Høgsberge57d2012007-08-24 18:59:58 -0400523 kref_put(&orb->base.kref, free_orb);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500524
525 return retval;
526}
527
528static void
529complete_agent_reset_write(struct fw_card *card, int rcode,
530 void *payload, size_t length, void *data)
531{
532 struct fw_transaction *t = data;
533
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500534 kfree(t);
535}
536
537static int sbp2_agent_reset(struct fw_unit *unit)
538{
539 struct fw_device *device = fw_device(unit->device.parent);
540 struct sbp2_device *sd = unit->device.driver_data;
541 struct fw_transaction *t;
542 static u32 zero;
543
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400544 t = kzalloc(sizeof(*t), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500545 if (t == NULL)
546 return -ENOMEM;
547
548 fw_send_request(device->card, t, TCODE_WRITE_QUADLET_REQUEST,
Stefan Richterffd0db22007-07-01 13:54:24 +0200549 sd->node_id, sd->generation, device->max_speed,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500550 sd->command_block_agent_address + SBP2_AGENT_RESET,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400551 &zero, sizeof(zero), complete_agent_reset_write, t);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500552
553 return 0;
554}
555
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500556static void sbp2_reconnect(struct work_struct *work);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400557static struct scsi_host_template scsi_driver_template;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500558
Stefan Richter79352e92007-06-18 18:46:49 +0200559static void release_sbp2_device(struct kref *kref)
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400560{
561 struct sbp2_device *sd = container_of(kref, struct sbp2_device, kref);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400562 struct Scsi_Host *host =
563 container_of((void *)sd, struct Scsi_Host, hostdata[0]);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400564
Stefan Richter79352e92007-06-18 18:46:49 +0200565 scsi_remove_host(host);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400566 sbp2_send_management_orb(sd->unit, sd->node_id, sd->generation,
567 SBP2_LOGOUT_REQUEST, sd->login_id, NULL);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400568 fw_core_remove_address_handler(&sd->address_handler);
569 fw_notify("removed sbp2 unit %s\n", sd->unit->device.bus_id);
570 put_device(&sd->unit->device);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400571 scsi_host_put(host);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400572}
573
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500574static void sbp2_login(struct work_struct *work)
575{
576 struct sbp2_device *sd =
577 container_of(work, struct sbp2_device, work.work);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400578 struct Scsi_Host *host =
579 container_of((void *)sd, struct Scsi_Host, hostdata[0]);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500580 struct fw_unit *unit = sd->unit;
581 struct fw_device *device = fw_device(unit->device.parent);
582 struct sbp2_login_response response;
583 int generation, node_id, local_node_id, lun, retval;
584
585 /* FIXME: Make this work for multi-lun devices. */
586 lun = 0;
587
588 generation = device->card->generation;
589 node_id = device->node->node_id;
590 local_node_id = device->card->local_node->node_id;
591
592 if (sbp2_send_management_orb(unit, node_id, generation,
593 SBP2_LOGIN_REQUEST, lun, &response) < 0) {
594 if (sd->retries++ < 5) {
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500595 schedule_delayed_work(&sd->work, DIV_ROUND_UP(HZ, 5));
596 } else {
597 fw_error("failed to login to %s\n",
598 unit->device.bus_id);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400599 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500600 }
601 return;
602 }
603
604 sd->generation = generation;
605 sd->node_id = node_id;
606 sd->address_high = local_node_id << 16;
607
608 /* Get command block agent offset and login id. */
609 sd->command_block_agent_address =
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500610 ((u64) (response.command_block_agent.high & 0xffff) << 32) |
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500611 response.command_block_agent.low;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400612 sd->login_id = LOGIN_RESPONSE_GET_LOGIN_ID(response);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500613
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500614 fw_notify("logged in to sbp2 unit %s (%d retries)\n",
615 unit->device.bus_id, sd->retries);
616 fw_notify(" - management_agent_address: 0x%012llx\n",
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500617 (unsigned long long) sd->management_agent_address);
618 fw_notify(" - command_block_agent_address: 0x%012llx\n",
619 (unsigned long long) sd->command_block_agent_address);
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500620 fw_notify(" - status write address: 0x%012llx\n",
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500621 (unsigned long long) sd->address_handler.offset);
622
623#if 0
624 /* FIXME: The linux1394 sbp2 does this last step. */
625 sbp2_set_busy_timeout(scsi_id);
626#endif
627
Kristian Høgsberg1da0c932007-03-07 12:12:40 -0500628 PREPARE_DELAYED_WORK(&sd->work, sbp2_reconnect);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500629 sbp2_agent_reset(unit);
630
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400631 /* FIXME: Loop over luns here. */
632 lun = 0;
633 retval = scsi_add_device(host, 0, 0, lun);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500634 if (retval < 0) {
635 sbp2_send_management_orb(unit, sd->node_id, sd->generation,
636 SBP2_LOGOUT_REQUEST, sd->login_id,
637 NULL);
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400638 /*
639 * Set this back to sbp2_login so we fall back and
640 * retry login on bus reset.
641 */
Kristian Høgsberg1da0c932007-03-07 12:12:40 -0500642 PREPARE_DELAYED_WORK(&sd->work, sbp2_login);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500643 }
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400644 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500645}
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500646
647static int sbp2_probe(struct device *dev)
648{
649 struct fw_unit *unit = fw_unit(dev);
650 struct fw_device *device = fw_device(unit->device.parent);
651 struct sbp2_device *sd;
652 struct fw_csr_iterator ci;
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400653 struct Scsi_Host *host;
654 int i, key, value, err;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500655 u32 model, firmware_revision;
656
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400657 err = -ENOMEM;
658 host = scsi_host_alloc(&scsi_driver_template, sizeof(*sd));
659 if (host == NULL)
660 goto fail;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500661
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400662 sd = (struct sbp2_device *) host->hostdata;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500663 unit->device.driver_data = sd;
664 sd->unit = unit;
665 INIT_LIST_HEAD(&sd->orb_list);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400666 kref_init(&sd->kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500667
668 sd->address_handler.length = 0x100;
669 sd->address_handler.address_callback = sbp2_status_write;
670 sd->address_handler.callback_data = sd;
671
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400672 err = fw_core_add_address_handler(&sd->address_handler,
673 &fw_high_memory_region);
674 if (err < 0)
675 goto fail_host;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500676
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400677 err = fw_device_enable_phys_dma(device);
678 if (err < 0)
679 goto fail_address_handler;
680
681 err = scsi_add_host(host, &unit->device);
682 if (err < 0)
683 goto fail_address_handler;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500684
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400685 /*
686 * Scan unit directory to get management agent address,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500687 * firmware revison and model. Initialize firmware_revision
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400688 * and model to values that wont match anything in our table.
689 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500690 firmware_revision = 0xff000000;
691 model = 0xff000000;
692 fw_csr_iterator_init(&ci, unit->directory);
693 while (fw_csr_iterator_next(&ci, &key, &value)) {
694 switch (key) {
695 case CSR_DEPENDENT_INFO | CSR_OFFSET:
696 sd->management_agent_address =
697 0xfffff0000000ULL + 4 * value;
698 break;
699 case SBP2_FIRMWARE_REVISION:
700 firmware_revision = value;
701 break;
702 case CSR_MODEL:
703 model = value;
704 break;
705 }
706 }
707
708 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
709 if (sbp2_workarounds_table[i].firmware_revision !=
710 (firmware_revision & 0xffffff00))
711 continue;
712 if (sbp2_workarounds_table[i].model != model &&
713 sbp2_workarounds_table[i].model != ~0)
714 continue;
715 sd->workarounds |= sbp2_workarounds_table[i].workarounds;
716 break;
717 }
718
719 if (sd->workarounds)
720 fw_notify("Workarounds for node %s: 0x%x "
721 "(firmware_revision 0x%06x, model_id 0x%06x)\n",
722 unit->device.bus_id,
723 sd->workarounds, firmware_revision, model);
724
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400725 get_device(&unit->device);
726
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400727 /*
728 * We schedule work to do the login so we can easily
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400729 * reschedule retries. Always get the ref before scheduling
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400730 * work.
731 */
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500732 INIT_DELAYED_WORK(&sd->work, sbp2_login);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400733 if (schedule_delayed_work(&sd->work, 0))
734 kref_get(&sd->kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500735
736 return 0;
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400737
738 fail_address_handler:
739 fw_core_remove_address_handler(&sd->address_handler);
740 fail_host:
741 scsi_host_put(host);
742 fail:
743 return err;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500744}
745
746static int sbp2_remove(struct device *dev)
747{
748 struct fw_unit *unit = fw_unit(dev);
749 struct sbp2_device *sd = unit->device.driver_data;
750
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400751 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500752
753 return 0;
754}
755
756static void sbp2_reconnect(struct work_struct *work)
757{
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500758 struct sbp2_device *sd =
759 container_of(work, struct sbp2_device, work.work);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500760 struct fw_unit *unit = sd->unit;
761 struct fw_device *device = fw_device(unit->device.parent);
762 int generation, node_id, local_node_id;
763
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500764 generation = device->card->generation;
765 node_id = device->node->node_id;
766 local_node_id = device->card->local_node->node_id;
767
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500768 if (sbp2_send_management_orb(unit, node_id, generation,
769 SBP2_RECONNECT_REQUEST,
770 sd->login_id, NULL) < 0) {
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500771 if (sd->retries++ >= 5) {
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500772 fw_error("failed to reconnect to %s\n",
773 unit->device.bus_id);
774 /* Fall back and try to log in again. */
775 sd->retries = 0;
Kristian Høgsberg1da0c932007-03-07 12:12:40 -0500776 PREPARE_DELAYED_WORK(&sd->work, sbp2_login);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500777 }
778 schedule_delayed_work(&sd->work, DIV_ROUND_UP(HZ, 5));
779 return;
780 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500781
782 sd->generation = generation;
783 sd->node_id = node_id;
Stefan Richter907293d2007-01-23 21:11:43 +0100784 sd->address_high = local_node_id << 16;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500785
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500786 fw_notify("reconnected to unit %s (%d retries)\n",
787 unit->device.bus_id, sd->retries);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500788 sbp2_agent_reset(unit);
789 sbp2_cancel_orbs(unit);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400790 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500791}
792
793static void sbp2_update(struct fw_unit *unit)
794{
795 struct fw_device *device = fw_device(unit->device.parent);
796 struct sbp2_device *sd = unit->device.driver_data;
797
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500798 sd->retries = 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500799 fw_device_enable_phys_dma(device);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400800 if (schedule_delayed_work(&sd->work, 0))
801 kref_get(&sd->kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500802}
803
804#define SBP2_UNIT_SPEC_ID_ENTRY 0x0000609e
805#define SBP2_SW_VERSION_ENTRY 0x00010483
806
Stefan Richter21ebcd12007-01-14 15:29:07 +0100807static const struct fw_device_id sbp2_id_table[] = {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500808 {
809 .match_flags = FW_MATCH_SPECIFIER_ID | FW_MATCH_VERSION,
810 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY,
Stefan Richter5af4e5e2007-01-21 20:45:32 +0100811 .version = SBP2_SW_VERSION_ENTRY,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500812 },
813 { }
814};
815
816static struct fw_driver sbp2_driver = {
817 .driver = {
818 .owner = THIS_MODULE,
819 .name = sbp2_driver_name,
820 .bus = &fw_bus_type,
821 .probe = sbp2_probe,
822 .remove = sbp2_remove,
823 },
824 .update = sbp2_update,
825 .id_table = sbp2_id_table,
826};
827
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400828static unsigned int
829sbp2_status_to_sense_data(u8 *sbp2_status, u8 *sense_data)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500830{
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400831 int sam_status;
832
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500833 sense_data[0] = 0x70;
834 sense_data[1] = 0x0;
835 sense_data[2] = sbp2_status[1];
836 sense_data[3] = sbp2_status[4];
837 sense_data[4] = sbp2_status[5];
838 sense_data[5] = sbp2_status[6];
839 sense_data[6] = sbp2_status[7];
840 sense_data[7] = 10;
841 sense_data[8] = sbp2_status[8];
842 sense_data[9] = sbp2_status[9];
843 sense_data[10] = sbp2_status[10];
844 sense_data[11] = sbp2_status[11];
845 sense_data[12] = sbp2_status[2];
846 sense_data[13] = sbp2_status[3];
847 sense_data[14] = sbp2_status[12];
848 sense_data[15] = sbp2_status[13];
849
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400850 sam_status = sbp2_status[0] & 0x3f;
851
852 switch (sam_status) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500853 case SAM_STAT_GOOD:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500854 case SAM_STAT_CHECK_CONDITION:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500855 case SAM_STAT_CONDITION_MET:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400856 case SAM_STAT_BUSY:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500857 case SAM_STAT_RESERVATION_CONFLICT:
858 case SAM_STAT_COMMAND_TERMINATED:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400859 return DID_OK << 16 | sam_status;
860
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500861 default:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400862 return DID_ERROR << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500863 }
864}
865
866static void
867complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
868{
Jay Fenlason6f061482007-06-27 16:04:33 -0400869 struct sbp2_command_orb *orb =
870 container_of(base_orb, struct sbp2_command_orb, base);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500871 struct fw_unit *unit = orb->unit;
872 struct fw_device *device = fw_device(unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500873 int result;
874
875 if (status != NULL) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400876 if (STATUS_GET_DEAD(*status))
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500877 sbp2_agent_reset(unit);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500878
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400879 switch (STATUS_GET_RESPONSE(*status)) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500880 case SBP2_STATUS_REQUEST_COMPLETE:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400881 result = DID_OK << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500882 break;
883 case SBP2_STATUS_TRANSPORT_FAILURE:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400884 result = DID_BUS_BUSY << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500885 break;
886 case SBP2_STATUS_ILLEGAL_REQUEST:
887 case SBP2_STATUS_VENDOR_DEPENDENT:
888 default:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400889 result = DID_ERROR << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500890 break;
891 }
892
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400893 if (result == DID_OK << 16 && STATUS_GET_LEN(*status) > 1)
894 result = sbp2_status_to_sense_data(STATUS_GET_DATA(*status),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500895 orb->cmd->sense_buffer);
896 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400897 /*
898 * If the orb completes with status == NULL, something
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500899 * went wrong, typically a bus reset happened mid-orb
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400900 * or when sending the write (less likely).
901 */
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400902 result = DID_BUS_BUSY << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500903 }
904
905 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400906 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500907
Stefan Richter412edf62007-07-16 21:05:41 +0200908 if (scsi_sg_count(orb->cmd) > 0)
909 dma_unmap_sg(device->card->device, scsi_sglist(orb->cmd),
910 scsi_sg_count(orb->cmd),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500911 orb->cmd->sc_data_direction);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500912
913 if (orb->page_table_bus != 0)
914 dma_unmap_single(device->card->device, orb->page_table_bus,
Stefan Richterb4be0162007-07-02 22:07:34 +0200915 sizeof(orb->page_table), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500916
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400917 orb->cmd->result = result;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500918 orb->done(orb->cmd);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500919}
920
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400921static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500922{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400923 struct sbp2_device *sd =
924 (struct sbp2_device *)orb->cmd->device->host->hostdata;
925 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500926 struct fw_device *device = fw_device(unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500927 struct scatterlist *sg;
928 int sg_len, l, i, j, count;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500929 dma_addr_t sg_addr;
930
Stefan Richter412edf62007-07-16 21:05:41 +0200931 sg = scsi_sglist(orb->cmd);
932 count = dma_map_sg(device->card->device, sg, scsi_sg_count(orb->cmd),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500933 orb->cmd->sc_data_direction);
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400934 if (count == 0)
935 goto fail;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500936
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400937 /*
938 * Handle the special case where there is only one element in
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500939 * the scatter list by converting it to an immediate block
940 * request. This is also a workaround for broken devices such
941 * as the second generation iPod which doesn't support page
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400942 * tables.
943 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500944 if (count == 1 && sg_dma_len(sg) < SBP2_MAX_SG_ELEMENT_LENGTH) {
945 orb->request.data_descriptor.high = sd->address_high;
946 orb->request.data_descriptor.low = sg_dma_address(sg);
947 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400948 COMMAND_ORB_DATA_SIZE(sg_dma_len(sg));
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400949 return 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500950 }
951
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400952 /*
953 * Convert the scatterlist to an sbp2 page table. If any
Kristian Høgsberg, Stefan Richter36abb3b2007-05-09 19:23:10 -0400954 * scatterlist entries are too big for sbp2, we split them as we
955 * go. Even if we ask the block I/O layer to not give us sg
956 * elements larger than 65535 bytes, some IOMMUs may merge sg elements
957 * during DMA mapping, and Linux currently doesn't prevent this.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400958 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500959 for (i = 0, j = 0; i < count; i++) {
960 sg_len = sg_dma_len(sg + i);
961 sg_addr = sg_dma_address(sg + i);
962 while (sg_len) {
Stefan Richter332ef332007-07-01 13:56:03 +0200963 /* FIXME: This won't get us out of the pinch. */
964 if (unlikely(j >= ARRAY_SIZE(orb->page_table))) {
965 fw_error("page table overflow\n");
966 goto fail_page_table;
967 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500968 l = min(sg_len, SBP2_MAX_SG_ELEMENT_LENGTH);
969 orb->page_table[j].low = sg_addr;
970 orb->page_table[j].high = (l << 16);
971 sg_addr += l;
972 sg_len -= l;
973 j++;
974 }
975 }
976
Stefan Richterb4be0162007-07-02 22:07:34 +0200977 fw_memcpy_to_be32(orb->page_table, orb->page_table,
978 sizeof(orb->page_table[0]) * j);
979 orb->page_table_bus =
980 dma_map_single(device->card->device, orb->page_table,
981 sizeof(orb->page_table), DMA_TO_DEVICE);
982 if (dma_mapping_error(orb->page_table_bus))
983 goto fail_page_table;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500984
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400985 /*
986 * The data_descriptor pointer is the one case where we need
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500987 * to fill in the node ID part of the address. All other
988 * pointers assume that the data referenced reside on the
989 * initiator (i.e. us), but data_descriptor can refer to data
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400990 * on other nodes so we need to put our ID in descriptor.high.
991 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500992 orb->request.data_descriptor.high = sd->address_high;
993 orb->request.data_descriptor.low = orb->page_table_bus;
994 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400995 COMMAND_ORB_PAGE_TABLE_PRESENT |
996 COMMAND_ORB_DATA_SIZE(j);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500997
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400998 return 0;
999
1000 fail_page_table:
Stefan Richter412edf62007-07-16 21:05:41 +02001001 dma_unmap_sg(device->card->device, sg, scsi_sg_count(orb->cmd),
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001002 orb->cmd->sc_data_direction);
1003 fail:
1004 return -ENOMEM;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001005}
1006
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001007/* SCSI stack integration */
1008
1009static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
1010{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001011 struct sbp2_device *sd =
1012 (struct sbp2_device *)cmd->device->host->hostdata;
1013 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001014 struct fw_device *device = fw_device(unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001015 struct sbp2_command_orb *orb;
Stefan Richter25659f72007-07-21 22:43:05 +02001016 unsigned max_payload;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001017
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001018 /*
1019 * Bidirectional commands are not yet implemented, and unknown
1020 * transfer direction not handled.
1021 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001022 if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02001023 fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
Kristian Høgsberge1b68c42007-05-09 19:23:09 -04001024 cmd->result = DID_ERROR << 16;
1025 done(cmd);
1026 return 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001027 }
1028
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001029 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001030 if (orb == NULL) {
1031 fw_notify("failed to alloc orb\n");
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001032 goto fail_alloc;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001033 }
1034
Kristian Høgsberg12f26aa2007-04-10 18:11:20 -04001035 /* Initialize rcode to something not RCODE_COMPLETE. */
1036 orb->base.rcode = -1;
Kristian Høgsberge57d2012007-08-24 18:59:58 -04001037 kref_init(&orb->base.kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001038
1039 orb->unit = unit;
1040 orb->done = done;
1041 orb->cmd = cmd;
1042
1043 orb->request.next.high = SBP2_ORB_NULL;
1044 orb->request.next.low = 0x0;
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001045 /*
1046 * At speed 100 we can do 512 bytes per packet, at speed 200,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001047 * 1024 bytes per packet etc. The SBP-2 max_payload field
1048 * specifies the max payload size as 2 ^ (max_payload + 2), so
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001049 * if we set this to max_speed + 7, we get the right value.
1050 */
Stefan Richter25659f72007-07-21 22:43:05 +02001051 max_payload = min(device->max_speed + 7,
1052 device->card->max_receive - 1);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001053 orb->request.misc =
Stefan Richter25659f72007-07-21 22:43:05 +02001054 COMMAND_ORB_MAX_PAYLOAD(max_payload) |
Stefan Richterf1397492007-06-10 21:31:36 +02001055 COMMAND_ORB_SPEED(device->max_speed) |
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001056 COMMAND_ORB_NOTIFY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001057
1058 if (cmd->sc_data_direction == DMA_FROM_DEVICE)
1059 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001060 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_FROM_MEDIA);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001061 else if (cmd->sc_data_direction == DMA_TO_DEVICE)
1062 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001063 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_TO_MEDIA);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001064
Stefan Richter412edf62007-07-16 21:05:41 +02001065 if (scsi_sg_count(cmd) && sbp2_command_orb_map_scatterlist(orb) < 0)
Stefan Richter85263922007-07-02 21:04:08 +02001066 goto fail_mapping;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001067
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001068 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001069
1070 memset(orb->request.command_block,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001071 0, sizeof(orb->request.command_block));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001072 memcpy(orb->request.command_block, cmd->cmnd, COMMAND_SIZE(*cmd->cmnd));
1073
1074 orb->base.callback = complete_command_orb;
Stefan Richter85263922007-07-02 21:04:08 +02001075 orb->base.request_bus =
1076 dma_map_single(device->card->device, &orb->request,
1077 sizeof(orb->request), DMA_TO_DEVICE);
1078 if (dma_mapping_error(orb->base.request_bus))
1079 goto fail_mapping;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001080
1081 sbp2_send_orb(&orb->base, unit, sd->node_id, sd->generation,
1082 sd->command_block_agent_address + SBP2_ORB_POINTER);
1083
Kristian Høgsberge57d2012007-08-24 18:59:58 -04001084 kref_put(&orb->base.kref, free_orb);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001085 return 0;
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001086
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001087 fail_mapping:
Kristian Høgsberge57d2012007-08-24 18:59:58 -04001088 kref_put(&orb->base.kref, free_orb);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001089 fail_alloc:
Kristian Høgsberge1b68c42007-05-09 19:23:09 -04001090 return SCSI_MLQUEUE_HOST_BUSY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001091}
1092
Stefan Richtercfb01382007-01-23 21:20:08 +01001093static int sbp2_scsi_slave_alloc(struct scsi_device *sdev)
1094{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001095 struct sbp2_device *sd = (struct sbp2_device *)sdev->host->hostdata;
Stefan Richtercfb01382007-01-23 21:20:08 +01001096
1097 sdev->allow_restart = 1;
1098
1099 if (sd->workarounds & SBP2_WORKAROUND_INQUIRY_36)
1100 sdev->inquiry_len = 36;
1101 return 0;
1102}
1103
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001104static int sbp2_scsi_slave_configure(struct scsi_device *sdev)
1105{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001106 struct sbp2_device *sd = (struct sbp2_device *)sdev->host->hostdata;
1107 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001108
Stefan Richtercfb01382007-01-23 21:20:08 +01001109 sdev->use_10_for_rw = 1;
1110
1111 if (sdev->type == TYPE_ROM)
1112 sdev->use_10_for_ms = 1;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001113 if (sdev->type == TYPE_DISK &&
1114 sd->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
1115 sdev->skip_ms_page_8 = 1;
1116 if (sd->workarounds & SBP2_WORKAROUND_FIX_CAPACITY) {
1117 fw_notify("setting fix_capacity for %s\n", unit->device.bus_id);
1118 sdev->fix_capacity = 1;
1119 }
Stefan Richtercf47c7a2007-06-17 23:52:08 +02001120 if (sd->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
1121 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001122 return 0;
1123}
1124
1125/*
1126 * Called by scsi stack when something has really gone wrong. Usually
1127 * called when a command has timed-out for some reason.
1128 */
1129static int sbp2_scsi_abort(struct scsi_cmnd *cmd)
1130{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001131 struct sbp2_device *sd =
1132 (struct sbp2_device *)cmd->device->host->hostdata;
1133 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001134
1135 fw_notify("sbp2_scsi_abort\n");
Kristian Høgsberg0fc7d6e2007-04-11 18:44:33 -04001136 sbp2_agent_reset(unit);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001137 sbp2_cancel_orbs(unit);
1138
1139 return SUCCESS;
1140}
1141
Stefan Richter14e21982007-05-27 13:18:27 +02001142/*
1143 * Format of /sys/bus/scsi/devices/.../ieee1394_id:
1144 * u64 EUI-64 : u24 directory_ID : u16 LUN (all printed in hexadecimal)
1145 *
1146 * This is the concatenation of target port identifier and logical unit
1147 * identifier as per SAM-2...SAM-4 annex A.
1148 */
1149static ssize_t
1150sbp2_sysfs_ieee1394_id_show(struct device *dev, struct device_attribute *attr,
1151 char *buf)
1152{
1153 struct scsi_device *sdev = to_scsi_device(dev);
1154 struct sbp2_device *sd;
1155 struct fw_unit *unit;
1156 struct fw_device *device;
1157 u32 directory_id;
1158 struct fw_csr_iterator ci;
1159 int key, value, lun;
1160
1161 if (!sdev)
1162 return 0;
1163 sd = (struct sbp2_device *)sdev->host->hostdata;
1164 unit = sd->unit;
1165 device = fw_device(unit->device.parent);
1166
1167 /* implicit directory ID */
1168 directory_id = ((unit->directory - device->config_rom) * 4
1169 + CSR_CONFIG_ROM) & 0xffffff;
1170
1171 /* explicit directory ID, overrides implicit ID if present */
1172 fw_csr_iterator_init(&ci, unit->directory);
1173 while (fw_csr_iterator_next(&ci, &key, &value))
1174 if (key == CSR_DIRECTORY_ID) {
1175 directory_id = value;
1176 break;
1177 }
1178
1179 /* FIXME: Make this work for multi-lun devices. */
1180 lun = 0;
1181
1182 return sprintf(buf, "%08x%08x:%06x:%04x\n",
1183 device->config_rom[3], device->config_rom[4],
1184 directory_id, lun);
1185}
1186
1187static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
1188
1189static struct device_attribute *sbp2_scsi_sysfs_attrs[] = {
1190 &dev_attr_ieee1394_id,
1191 NULL
1192};
1193
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001194static struct scsi_host_template scsi_driver_template = {
1195 .module = THIS_MODULE,
1196 .name = "SBP-2 IEEE-1394",
Kristian Høgsbergb02b6bc2007-05-09 19:23:12 -04001197 .proc_name = sbp2_driver_name,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001198 .queuecommand = sbp2_scsi_queuecommand,
Stefan Richtercfb01382007-01-23 21:20:08 +01001199 .slave_alloc = sbp2_scsi_slave_alloc,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001200 .slave_configure = sbp2_scsi_slave_configure,
1201 .eh_abort_handler = sbp2_scsi_abort,
1202 .this_id = -1,
1203 .sg_tablesize = SG_ALL,
1204 .use_clustering = ENABLE_CLUSTERING,
Stefan Richter02af8e72007-01-21 20:50:11 +01001205 .cmd_per_lun = 1,
1206 .can_queue = 1,
Stefan Richter14e21982007-05-27 13:18:27 +02001207 .sdev_attrs = sbp2_scsi_sysfs_attrs,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001208};
1209
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001210MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
1211MODULE_DESCRIPTION("SCSI over IEEE1394");
1212MODULE_LICENSE("GPL");
1213MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
1214
Olaf Hering1e4c7b02007-05-05 23:17:13 +02001215/* Provide a module alias so root-on-sbp2 initrds don't break. */
1216#ifndef CONFIG_IEEE1394_SBP2_MODULE
1217MODULE_ALIAS("sbp2");
1218#endif
1219
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001220static int __init sbp2_init(void)
1221{
1222 return driver_register(&sbp2_driver.driver);
1223}
1224
1225static void __exit sbp2_cleanup(void)
1226{
1227 driver_unregister(&sbp2_driver.driver);
1228}
1229
1230module_init(sbp2_init);
1231module_exit(sbp2_cleanup);