firewire: fw-sbp2: always enable IRQs before calling command ORB callback
[deliverable/linux.git] / drivers / firewire / fw-sbp2.c
CommitLineData
c781c06d
KH
1/*
2 * SBP2 driver (SCSI over IEEE1394)
9ba136d0 3 *
27a15e50 4 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
9ba136d0
KH
5 *
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
c781c06d
KH
21/*
22 * The basic structure of this driver is based on the old storage driver,
27a15e50
KH
23 * 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
9ba136d0
KH
31#include <linux/kernel.h>
32#include <linux/module.h>
5cd54c94 33#include <linux/moduleparam.h>
fe69ca3a 34#include <linux/mod_devicetable.h>
9ba136d0 35#include <linux/device.h>
0b5b2903 36#include <linux/scatterlist.h>
9ba136d0 37#include <linux/dma-mapping.h>
cf47c7a2 38#include <linux/blkdev.h>
e7cdf237 39#include <linux/string.h>
1d3d52c5 40#include <linux/timer.h>
9ba136d0
KH
41
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
5cd54c94
SR
52/*
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
9ba136d0 64/* I don't know why the SCSI stack doesn't define something like this... */
a98e2719 65typedef void (*scsi_done_fn_t)(struct scsi_cmnd *);
9ba136d0
KH
66
67static const char sbp2_driver_name[] = "sbp2";
68
69struct sbp2_device {
b3d6e151 70 struct kref kref;
9ba136d0
KH
71 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
c781c06d
KH
79 /*
80 * We cache these addresses and only update them once we've
9ba136d0
KH
81 * 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
c781c06d
KH
84 * handle it (e.g. after a bus reset but before we reconnect).
85 */
9ba136d0
KH
86 int node_id;
87 int address_high;
88 int generation;
89
7f37c426
KH
90 int retries;
91 struct delayed_work work;
9ba136d0
KH
92};
93
94#define SBP2_MAX_SG_ELEMENT_LENGTH 0xf000
95#define SBP2_MAX_SECTORS 255 /* Max sectors supported */
1d3d52c5 96#define SBP2_ORB_TIMEOUT 2000 /* Timeout in ms */
9ba136d0
KH
97
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
a77754a7
KH
140#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)
9ba136d0
KH
148
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;
e57d2011 162 struct kref kref;
9ba136d0
KH
163 dma_addr_t request_bus;
164 int rcode;
165 struct sbp2_pointer pointer;
a98e2719 166 void (*callback)(struct sbp2_orb * orb, struct sbp2_status * status);
9ba136d0
KH
167 struct list_head link;
168};
169
a77754a7
KH
170#define MANAGEMENT_ORB_LUN(v) ((v))
171#define MANAGEMENT_ORB_FUNCTION(v) ((v) << 16)
172#define MANAGEMENT_ORB_RECONNECT(v) ((v) << 20)
5cd54c94 173#define MANAGEMENT_ORB_EXCLUSIVE(v) ((v) ? 1 << 28 : 0)
a77754a7
KH
174#define MANAGEMENT_ORB_REQUEST_FORMAT(v) ((v) << 29)
175#define MANAGEMENT_ORB_NOTIFY ((1) << 31)
9ba136d0 176
a77754a7
KH
177#define MANAGEMENT_ORB_RESPONSE_LENGTH(v) ((v))
178#define MANAGEMENT_ORB_PASSWORD_LENGTH(v) ((v) << 16)
9ba136d0
KH
179
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
a77754a7
KH
195#define LOGIN_RESPONSE_GET_LOGIN_ID(v) ((v).misc & 0xffff)
196#define LOGIN_RESPONSE_GET_LENGTH(v) (((v).misc >> 16) & 0xffff)
9ba136d0
KH
197
198struct sbp2_login_response {
199 u32 misc;
200 struct sbp2_pointer command_block_agent;
201 u32 reconnect_hold;
202};
a77754a7
KH
203#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)
9ba136d0
KH
211
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
9fb2dd12 224 struct sbp2_pointer page_table[SG_ALL] __attribute__((aligned(8)));
9ba136d0 225 dma_addr_t page_table_bus;
9ba136d0
KH
226};
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 },
c781c06d
KH
258
259 /*
260 * There are iPods (2nd gen, 3rd gen) with model_id == 0, but
9ba136d0
KH
261 * these iPods do not feature the read_capacity bug according
262 * to one report. Read_capacity behaviour as well as model_id
c781c06d
KH
263 * could change due to Apple-supplied firmware updates though.
264 */
265
9ba136d0
KH
266 /* 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
e57d2011
KH
283static void
284free_orb(struct kref *kref)
285{
286 struct sbp2_orb *orb = container_of(kref, struct sbp2_orb, kref);
287
288 kfree(orb);
289}
290
9ba136d0
KH
291static void
292sbp2_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 ||
2d826cc5 305 length == 0 || length > sizeof(status)) {
9ba136d0
KH
306 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);
a77754a7 314 if (STATUS_GET_SOURCE(status) == 2 || STATUS_GET_SOURCE(status) == 3) {
9ba136d0
KH
315 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) {
a77754a7 323 if (STATUS_GET_ORB_HIGH(status) == 0 &&
e57d2011
KH
324 STATUS_GET_ORB_LOW(status) == orb->request_bus) {
325 orb->rcode = RCODE_COMPLETE;
9ba136d0
KH
326 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
e57d2011
KH
337 kref_put(&orb->kref, free_orb);
338
9ba136d0
KH
339 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
e57d2011
KH
349 /*
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) {
9ba136d0 363 list_del(&orb->link);
1b34e974 364 spin_unlock_irqrestore(&card->lock, flags);
9ba136d0 365 orb->callback(orb, NULL);
1b34e974
SR
366 } else {
367 spin_unlock_irqrestore(&card->lock, flags);
9ba136d0 368 }
e57d2011 369
e57d2011 370 kref_put(&orb->kref, free_orb);
9ba136d0
KH
371}
372
373static void
374sbp2_send_orb(struct sbp2_orb *orb, struct fw_unit *unit,
375 int node_id, int generation, u64 offset)
376{
377 struct fw_device *device = fw_device(unit->device.parent);
378 struct sbp2_device *sd = unit->device.driver_data;
379 unsigned long flags;
380
381 orb->pointer.high = 0;
382 orb->pointer.low = orb->request_bus;
2d826cc5 383 fw_memcpy_to_be32(&orb->pointer, &orb->pointer, sizeof(orb->pointer));
9ba136d0
KH
384
385 spin_lock_irqsave(&device->card->lock, flags);
386 list_add_tail(&orb->link, &sd->orb_list);
387 spin_unlock_irqrestore(&device->card->lock, flags);
388
e57d2011
KH
389 /* Take a ref for the orb list and for the transaction callback. */
390 kref_get(&orb->kref);
391 kref_get(&orb->kref);
392
9ba136d0 393 fw_send_request(device->card, &orb->t, TCODE_WRITE_BLOCK_REQUEST,
f1397490 394 node_id, generation, device->max_speed, offset,
2d826cc5 395 &orb->pointer, sizeof(orb->pointer),
9ba136d0
KH
396 complete_transaction, orb);
397}
398
2aaad97b 399static int sbp2_cancel_orbs(struct fw_unit *unit)
9ba136d0
KH
400{
401 struct fw_device *device = fw_device(unit->device.parent);
402 struct sbp2_device *sd = unit->device.driver_data;
403 struct sbp2_orb *orb, *next;
404 struct list_head list;
405 unsigned long flags;
2aaad97b 406 int retval = -ENOENT;
9ba136d0
KH
407
408 INIT_LIST_HEAD(&list);
409 spin_lock_irqsave(&device->card->lock, flags);
410 list_splice_init(&sd->orb_list, &list);
411 spin_unlock_irqrestore(&device->card->lock, flags);
412
413 list_for_each_entry_safe(orb, next, &list, link) {
2aaad97b 414 retval = 0;
730c32f5
KH
415 if (fw_cancel_transaction(device->card, &orb->t) == 0)
416 continue;
417
9ba136d0
KH
418 orb->rcode = RCODE_CANCELLED;
419 orb->callback(orb, NULL);
420 }
9ba136d0 421
2aaad97b 422 return retval;
1d3d52c5
KH
423}
424
9ba136d0
KH
425static void
426complete_management_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
427{
428 struct sbp2_management_orb *orb =
6f061487 429 container_of(base_orb, struct sbp2_management_orb, base);
9ba136d0
KH
430
431 if (status)
2d826cc5 432 memcpy(&orb->status, status, sizeof(*status));
9ba136d0
KH
433 complete(&orb->done);
434}
435
436static int
437sbp2_send_management_orb(struct fw_unit *unit, int node_id, int generation,
438 int function, int lun, void *response)
439{
440 struct fw_device *device = fw_device(unit->device.parent);
441 struct sbp2_device *sd = unit->device.driver_data;
442 struct sbp2_management_orb *orb;
9ba136d0
KH
443 int retval = -ENOMEM;
444
2d826cc5 445 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
9ba136d0
KH
446 if (orb == NULL)
447 return -ENOMEM;
448
e57d2011 449 kref_init(&orb->base.kref);
9ba136d0
KH
450 orb->response_bus =
451 dma_map_single(device->card->device, &orb->response,
2d826cc5 452 sizeof(orb->response), DMA_FROM_DEVICE);
82eff9db 453 if (dma_mapping_error(orb->response_bus))
7aa48481 454 goto fail_mapping_response;
9ba136d0
KH
455
456 orb->request.response.high = 0;
457 orb->request.response.low = orb->response_bus;
458
459 orb->request.misc =
a77754a7
KH
460 MANAGEMENT_ORB_NOTIFY |
461 MANAGEMENT_ORB_FUNCTION(function) |
462 MANAGEMENT_ORB_LUN(lun);
9ba136d0 463 orb->request.length =
2d826cc5 464 MANAGEMENT_ORB_RESPONSE_LENGTH(sizeof(orb->response));
9ba136d0
KH
465
466 orb->request.status_fifo.high = sd->address_handler.offset >> 32;
467 orb->request.status_fifo.low = sd->address_handler.offset;
468
9ba136d0
KH
469 if (function == SBP2_LOGIN_REQUEST) {
470 orb->request.misc |=
5cd54c94 471 MANAGEMENT_ORB_EXCLUSIVE(sbp2_param_exclusive_login) |
a77754a7 472 MANAGEMENT_ORB_RECONNECT(0);
9ba136d0
KH
473 }
474
2d826cc5 475 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
9ba136d0
KH
476
477 init_completion(&orb->done);
478 orb->base.callback = complete_management_orb;
2aaad97b 479
7aa48481
SR
480 orb->base.request_bus =
481 dma_map_single(device->card->device, &orb->request,
482 sizeof(orb->request), DMA_TO_DEVICE);
483 if (dma_mapping_error(orb->base.request_bus))
484 goto fail_mapping_request;
485
9ba136d0
KH
486 sbp2_send_orb(&orb->base, unit,
487 node_id, generation, sd->management_agent_address);
488
2aaad97b
KH
489 wait_for_completion_timeout(&orb->done,
490 msecs_to_jiffies(SBP2_ORB_TIMEOUT));
9ba136d0 491
9ba136d0 492 retval = -EIO;
2aaad97b
KH
493 if (sbp2_cancel_orbs(unit) == 0) {
494 fw_error("orb reply timed out, rcode=0x%02x\n",
9ba136d0
KH
495 orb->base.rcode);
496 goto out;
497 }
498
2aaad97b
KH
499 if (orb->base.rcode != RCODE_COMPLETE) {
500 fw_error("management write failed, rcode 0x%02x\n",
9ba136d0
KH
501 orb->base.rcode);
502 goto out;
503 }
504
a77754a7
KH
505 if (STATUS_GET_RESPONSE(orb->status) != 0 ||
506 STATUS_GET_SBP_STATUS(orb->status) != 0) {
9ba136d0 507 fw_error("error status: %d:%d\n",
a77754a7
KH
508 STATUS_GET_RESPONSE(orb->status),
509 STATUS_GET_SBP_STATUS(orb->status));
9ba136d0
KH
510 goto out;
511 }
512
513 retval = 0;
514 out:
515 dma_unmap_single(device->card->device, orb->base.request_bus,
2d826cc5 516 sizeof(orb->request), DMA_TO_DEVICE);
7aa48481 517 fail_mapping_request:
9ba136d0 518 dma_unmap_single(device->card->device, orb->response_bus,
2d826cc5 519 sizeof(orb->response), DMA_FROM_DEVICE);
7aa48481 520 fail_mapping_response:
9ba136d0
KH
521 if (response)
522 fw_memcpy_from_be32(response,
2d826cc5 523 orb->response, sizeof(orb->response));
e57d2011 524 kref_put(&orb->base.kref, free_orb);
9ba136d0
KH
525
526 return retval;
527}
528
529static void
530complete_agent_reset_write(struct fw_card *card, int rcode,
531 void *payload, size_t length, void *data)
532{
533 struct fw_transaction *t = data;
534
9ba136d0
KH
535 kfree(t);
536}
537
538static int sbp2_agent_reset(struct fw_unit *unit)
539{
540 struct fw_device *device = fw_device(unit->device.parent);
541 struct sbp2_device *sd = unit->device.driver_data;
542 struct fw_transaction *t;
543 static u32 zero;
544
2d826cc5 545 t = kzalloc(sizeof(*t), GFP_ATOMIC);
9ba136d0
KH
546 if (t == NULL)
547 return -ENOMEM;
548
549 fw_send_request(device->card, t, TCODE_WRITE_QUADLET_REQUEST,
ffd0db26 550 sd->node_id, sd->generation, device->max_speed,
9ba136d0 551 sd->command_block_agent_address + SBP2_AGENT_RESET,
2d826cc5 552 &zero, sizeof(zero), complete_agent_reset_write, t);
9ba136d0
KH
553
554 return 0;
555}
556
7f37c426 557static void sbp2_reconnect(struct work_struct *work);
ad85274f 558static struct scsi_host_template scsi_driver_template;
7f37c426 559
79352e9f 560static void release_sbp2_device(struct kref *kref)
b3d6e151
KH
561{
562 struct sbp2_device *sd = container_of(kref, struct sbp2_device, kref);
ad85274f
KH
563 struct Scsi_Host *host =
564 container_of((void *)sd, struct Scsi_Host, hostdata[0]);
b3d6e151 565
79352e9f 566 scsi_remove_host(host);
b3d6e151
KH
567 sbp2_send_management_orb(sd->unit, sd->node_id, sd->generation,
568 SBP2_LOGOUT_REQUEST, sd->login_id, NULL);
b3d6e151
KH
569 fw_core_remove_address_handler(&sd->address_handler);
570 fw_notify("removed sbp2 unit %s\n", sd->unit->device.bus_id);
571 put_device(&sd->unit->device);
ad85274f 572 scsi_host_put(host);
b3d6e151
KH
573}
574
7f37c426
KH
575static void sbp2_login(struct work_struct *work)
576{
577 struct sbp2_device *sd =
578 container_of(work, struct sbp2_device, work.work);
ad85274f
KH
579 struct Scsi_Host *host =
580 container_of((void *)sd, struct Scsi_Host, hostdata[0]);
7f37c426
KH
581 struct fw_unit *unit = sd->unit;
582 struct fw_device *device = fw_device(unit->device.parent);
583 struct sbp2_login_response response;
584 int generation, node_id, local_node_id, lun, retval;
585
586 /* FIXME: Make this work for multi-lun devices. */
587 lun = 0;
588
589 generation = device->card->generation;
590 node_id = device->node->node_id;
591 local_node_id = device->card->local_node->node_id;
592
593 if (sbp2_send_management_orb(unit, node_id, generation,
594 SBP2_LOGIN_REQUEST, lun, &response) < 0) {
595 if (sd->retries++ < 5) {
7f37c426
KH
596 schedule_delayed_work(&sd->work, DIV_ROUND_UP(HZ, 5));
597 } else {
598 fw_error("failed to login to %s\n",
599 unit->device.bus_id);
b3d6e151 600 kref_put(&sd->kref, release_sbp2_device);
7f37c426
KH
601 }
602 return;
603 }
604
605 sd->generation = generation;
606 sd->node_id = node_id;
607 sd->address_high = local_node_id << 16;
608
609 /* Get command block agent offset and login id. */
610 sd->command_block_agent_address =
5c5539d8 611 ((u64) (response.command_block_agent.high & 0xffff) << 32) |
7f37c426 612 response.command_block_agent.low;
a77754a7 613 sd->login_id = LOGIN_RESPONSE_GET_LOGIN_ID(response);
7f37c426 614
5c5539d8
KH
615 fw_notify("logged in to sbp2 unit %s (%d retries)\n",
616 unit->device.bus_id, sd->retries);
617 fw_notify(" - management_agent_address: 0x%012llx\n",
7f37c426
KH
618 (unsigned long long) sd->management_agent_address);
619 fw_notify(" - command_block_agent_address: 0x%012llx\n",
620 (unsigned long long) sd->command_block_agent_address);
5c5539d8 621 fw_notify(" - status write address: 0x%012llx\n",
7f37c426
KH
622 (unsigned long long) sd->address_handler.offset);
623
624#if 0
625 /* FIXME: The linux1394 sbp2 does this last step. */
626 sbp2_set_busy_timeout(scsi_id);
627#endif
628
1da0c93b 629 PREPARE_DELAYED_WORK(&sd->work, sbp2_reconnect);
7f37c426
KH
630 sbp2_agent_reset(unit);
631
ad85274f
KH
632 /* FIXME: Loop over luns here. */
633 lun = 0;
634 retval = scsi_add_device(host, 0, 0, lun);
7f37c426
KH
635 if (retval < 0) {
636 sbp2_send_management_orb(unit, sd->node_id, sd->generation,
637 SBP2_LOGOUT_REQUEST, sd->login_id,
638 NULL);
c781c06d
KH
639 /*
640 * Set this back to sbp2_login so we fall back and
641 * retry login on bus reset.
642 */
1da0c93b 643 PREPARE_DELAYED_WORK(&sd->work, sbp2_login);
7f37c426 644 }
b3d6e151 645 kref_put(&sd->kref, release_sbp2_device);
7f37c426 646}
9ba136d0
KH
647
648static int sbp2_probe(struct device *dev)
649{
650 struct fw_unit *unit = fw_unit(dev);
651 struct fw_device *device = fw_device(unit->device.parent);
652 struct sbp2_device *sd;
653 struct fw_csr_iterator ci;
ad85274f
KH
654 struct Scsi_Host *host;
655 int i, key, value, err;
9ba136d0
KH
656 u32 model, firmware_revision;
657
ad85274f
KH
658 err = -ENOMEM;
659 host = scsi_host_alloc(&scsi_driver_template, sizeof(*sd));
660 if (host == NULL)
661 goto fail;
9ba136d0 662
ad85274f 663 sd = (struct sbp2_device *) host->hostdata;
9ba136d0
KH
664 unit->device.driver_data = sd;
665 sd->unit = unit;
666 INIT_LIST_HEAD(&sd->orb_list);
b3d6e151 667 kref_init(&sd->kref);
9ba136d0
KH
668
669 sd->address_handler.length = 0x100;
670 sd->address_handler.address_callback = sbp2_status_write;
671 sd->address_handler.callback_data = sd;
672
ad85274f
KH
673 err = fw_core_add_address_handler(&sd->address_handler,
674 &fw_high_memory_region);
675 if (err < 0)
676 goto fail_host;
9ba136d0 677
ad85274f
KH
678 err = fw_device_enable_phys_dma(device);
679 if (err < 0)
680 goto fail_address_handler;
681
682 err = scsi_add_host(host, &unit->device);
683 if (err < 0)
684 goto fail_address_handler;
9ba136d0 685
c781c06d
KH
686 /*
687 * Scan unit directory to get management agent address,
9ba136d0 688 * firmware revison and model. Initialize firmware_revision
c781c06d
KH
689 * and model to values that wont match anything in our table.
690 */
9ba136d0
KH
691 firmware_revision = 0xff000000;
692 model = 0xff000000;
693 fw_csr_iterator_init(&ci, unit->directory);
694 while (fw_csr_iterator_next(&ci, &key, &value)) {
695 switch (key) {
696 case CSR_DEPENDENT_INFO | CSR_OFFSET:
697 sd->management_agent_address =
698 0xfffff0000000ULL + 4 * value;
699 break;
700 case SBP2_FIRMWARE_REVISION:
701 firmware_revision = value;
702 break;
703 case CSR_MODEL:
704 model = value;
705 break;
706 }
707 }
708
709 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
710 if (sbp2_workarounds_table[i].firmware_revision !=
711 (firmware_revision & 0xffffff00))
712 continue;
713 if (sbp2_workarounds_table[i].model != model &&
714 sbp2_workarounds_table[i].model != ~0)
715 continue;
716 sd->workarounds |= sbp2_workarounds_table[i].workarounds;
717 break;
718 }
719
720 if (sd->workarounds)
721 fw_notify("Workarounds for node %s: 0x%x "
722 "(firmware_revision 0x%06x, model_id 0x%06x)\n",
723 unit->device.bus_id,
724 sd->workarounds, firmware_revision, model);
725
b3d6e151
KH
726 get_device(&unit->device);
727
c781c06d
KH
728 /*
729 * We schedule work to do the login so we can easily
b3d6e151 730 * reschedule retries. Always get the ref before scheduling
c781c06d
KH
731 * work.
732 */
7f37c426 733 INIT_DELAYED_WORK(&sd->work, sbp2_login);
b3d6e151
KH
734 if (schedule_delayed_work(&sd->work, 0))
735 kref_get(&sd->kref);
9ba136d0
KH
736
737 return 0;
ad85274f
KH
738
739 fail_address_handler:
740 fw_core_remove_address_handler(&sd->address_handler);
741 fail_host:
742 scsi_host_put(host);
743 fail:
744 return err;
9ba136d0
KH
745}
746
747static int sbp2_remove(struct device *dev)
748{
749 struct fw_unit *unit = fw_unit(dev);
750 struct sbp2_device *sd = unit->device.driver_data;
751
b3d6e151 752 kref_put(&sd->kref, release_sbp2_device);
9ba136d0
KH
753
754 return 0;
755}
756
757static void sbp2_reconnect(struct work_struct *work)
758{
7f37c426
KH
759 struct sbp2_device *sd =
760 container_of(work, struct sbp2_device, work.work);
9ba136d0
KH
761 struct fw_unit *unit = sd->unit;
762 struct fw_device *device = fw_device(unit->device.parent);
763 int generation, node_id, local_node_id;
764
9ba136d0
KH
765 generation = device->card->generation;
766 node_id = device->node->node_id;
767 local_node_id = device->card->local_node->node_id;
768
7f37c426
KH
769 if (sbp2_send_management_orb(unit, node_id, generation,
770 SBP2_RECONNECT_REQUEST,
771 sd->login_id, NULL) < 0) {
5c5539d8 772 if (sd->retries++ >= 5) {
7f37c426
KH
773 fw_error("failed to reconnect to %s\n",
774 unit->device.bus_id);
775 /* Fall back and try to log in again. */
776 sd->retries = 0;
1da0c93b 777 PREPARE_DELAYED_WORK(&sd->work, sbp2_login);
7f37c426
KH
778 }
779 schedule_delayed_work(&sd->work, DIV_ROUND_UP(HZ, 5));
780 return;
781 }
9ba136d0
KH
782
783 sd->generation = generation;
784 sd->node_id = node_id;
907293d7 785 sd->address_high = local_node_id << 16;
7f37c426 786
5c5539d8
KH
787 fw_notify("reconnected to unit %s (%d retries)\n",
788 unit->device.bus_id, sd->retries);
7f37c426
KH
789 sbp2_agent_reset(unit);
790 sbp2_cancel_orbs(unit);
b3d6e151 791 kref_put(&sd->kref, release_sbp2_device);
9ba136d0
KH
792}
793
794static void sbp2_update(struct fw_unit *unit)
795{
796 struct fw_device *device = fw_device(unit->device.parent);
797 struct sbp2_device *sd = unit->device.driver_data;
798
7f37c426 799 sd->retries = 0;
9ba136d0 800 fw_device_enable_phys_dma(device);
b3d6e151
KH
801 if (schedule_delayed_work(&sd->work, 0))
802 kref_get(&sd->kref);
9ba136d0
KH
803}
804
805#define SBP2_UNIT_SPEC_ID_ENTRY 0x0000609e
806#define SBP2_SW_VERSION_ENTRY 0x00010483
807
21ebcd12 808static const struct fw_device_id sbp2_id_table[] = {
9ba136d0
KH
809 {
810 .match_flags = FW_MATCH_SPECIFIER_ID | FW_MATCH_VERSION,
811 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY,
5af4e5ea 812 .version = SBP2_SW_VERSION_ENTRY,
9ba136d0
KH
813 },
814 { }
815};
816
817static struct fw_driver sbp2_driver = {
818 .driver = {
819 .owner = THIS_MODULE,
820 .name = sbp2_driver_name,
821 .bus = &fw_bus_type,
822 .probe = sbp2_probe,
823 .remove = sbp2_remove,
824 },
825 .update = sbp2_update,
826 .id_table = sbp2_id_table,
827};
828
fbb5423c
KH
829static unsigned int
830sbp2_status_to_sense_data(u8 *sbp2_status, u8 *sense_data)
9ba136d0 831{
fbb5423c
KH
832 int sam_status;
833
9ba136d0
KH
834 sense_data[0] = 0x70;
835 sense_data[1] = 0x0;
836 sense_data[2] = sbp2_status[1];
837 sense_data[3] = sbp2_status[4];
838 sense_data[4] = sbp2_status[5];
839 sense_data[5] = sbp2_status[6];
840 sense_data[6] = sbp2_status[7];
841 sense_data[7] = 10;
842 sense_data[8] = sbp2_status[8];
843 sense_data[9] = sbp2_status[9];
844 sense_data[10] = sbp2_status[10];
845 sense_data[11] = sbp2_status[11];
846 sense_data[12] = sbp2_status[2];
847 sense_data[13] = sbp2_status[3];
848 sense_data[14] = sbp2_status[12];
849 sense_data[15] = sbp2_status[13];
850
fbb5423c 851 sam_status = sbp2_status[0] & 0x3f;
9ba136d0 852
fbb5423c
KH
853 switch (sam_status) {
854 case SAM_STAT_GOOD:
9ba136d0 855 case SAM_STAT_CHECK_CONDITION:
9ba136d0 856 case SAM_STAT_CONDITION_MET:
fbb5423c 857 case SAM_STAT_BUSY:
9ba136d0
KH
858 case SAM_STAT_RESERVATION_CONFLICT:
859 case SAM_STAT_COMMAND_TERMINATED:
fbb5423c
KH
860 return DID_OK << 16 | sam_status;
861
9ba136d0 862 default:
fbb5423c 863 return DID_ERROR << 16;
9ba136d0
KH
864 }
865}
866
867static void
868complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
869{
6f061487
JF
870 struct sbp2_command_orb *orb =
871 container_of(base_orb, struct sbp2_command_orb, base);
9ba136d0
KH
872 struct fw_unit *unit = orb->unit;
873 struct fw_device *device = fw_device(unit->device.parent);
9ba136d0
KH
874 int result;
875
876 if (status != NULL) {
a77754a7 877 if (STATUS_GET_DEAD(*status))
9ba136d0 878 sbp2_agent_reset(unit);
9ba136d0 879
a77754a7 880 switch (STATUS_GET_RESPONSE(*status)) {
9ba136d0 881 case SBP2_STATUS_REQUEST_COMPLETE:
fbb5423c 882 result = DID_OK << 16;
9ba136d0
KH
883 break;
884 case SBP2_STATUS_TRANSPORT_FAILURE:
fbb5423c 885 result = DID_BUS_BUSY << 16;
9ba136d0
KH
886 break;
887 case SBP2_STATUS_ILLEGAL_REQUEST:
888 case SBP2_STATUS_VENDOR_DEPENDENT:
889 default:
fbb5423c 890 result = DID_ERROR << 16;
9ba136d0
KH
891 break;
892 }
893
a77754a7
KH
894 if (result == DID_OK << 16 && STATUS_GET_LEN(*status) > 1)
895 result = sbp2_status_to_sense_data(STATUS_GET_DATA(*status),
9ba136d0
KH
896 orb->cmd->sense_buffer);
897 } else {
c781c06d
KH
898 /*
899 * If the orb completes with status == NULL, something
9ba136d0 900 * went wrong, typically a bus reset happened mid-orb
c781c06d
KH
901 * or when sending the write (less likely).
902 */
fbb5423c 903 result = DID_BUS_BUSY << 16;
9ba136d0
KH
904 }
905
906 dma_unmap_single(device->card->device, orb->base.request_bus,
2d826cc5 907 sizeof(orb->request), DMA_TO_DEVICE);
9ba136d0 908
412edf65
SR
909 if (scsi_sg_count(orb->cmd) > 0)
910 dma_unmap_sg(device->card->device, scsi_sglist(orb->cmd),
911 scsi_sg_count(orb->cmd),
9ba136d0 912 orb->cmd->sc_data_direction);
9ba136d0
KH
913
914 if (orb->page_table_bus != 0)
915 dma_unmap_single(device->card->device, orb->page_table_bus,
b4be016a 916 sizeof(orb->page_table), DMA_TO_DEVICE);
9ba136d0 917
fbb5423c 918 orb->cmd->result = result;
9ba136d0 919 orb->done(orb->cmd);
9ba136d0
KH
920}
921
95ffc5e3 922static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
9ba136d0 923{
ad85274f
KH
924 struct sbp2_device *sd =
925 (struct sbp2_device *)orb->cmd->device->host->hostdata;
926 struct fw_unit *unit = sd->unit;
9ba136d0 927 struct fw_device *device = fw_device(unit->device.parent);
9ba136d0
KH
928 struct scatterlist *sg;
929 int sg_len, l, i, j, count;
9ba136d0
KH
930 dma_addr_t sg_addr;
931
412edf65
SR
932 sg = scsi_sglist(orb->cmd);
933 count = dma_map_sg(device->card->device, sg, scsi_sg_count(orb->cmd),
9ba136d0 934 orb->cmd->sc_data_direction);
95ffc5e3
KH
935 if (count == 0)
936 goto fail;
9ba136d0 937
c781c06d
KH
938 /*
939 * Handle the special case where there is only one element in
9ba136d0
KH
940 * the scatter list by converting it to an immediate block
941 * request. This is also a workaround for broken devices such
942 * as the second generation iPod which doesn't support page
c781c06d
KH
943 * tables.
944 */
9ba136d0
KH
945 if (count == 1 && sg_dma_len(sg) < SBP2_MAX_SG_ELEMENT_LENGTH) {
946 orb->request.data_descriptor.high = sd->address_high;
947 orb->request.data_descriptor.low = sg_dma_address(sg);
948 orb->request.misc |=
a77754a7 949 COMMAND_ORB_DATA_SIZE(sg_dma_len(sg));
95ffc5e3 950 return 0;
9ba136d0
KH
951 }
952
c781c06d
KH
953 /*
954 * Convert the scatterlist to an sbp2 page table. If any
36abb3b1
KHSR
955 * scatterlist entries are too big for sbp2, we split them as we
956 * go. Even if we ask the block I/O layer to not give us sg
957 * elements larger than 65535 bytes, some IOMMUs may merge sg elements
958 * during DMA mapping, and Linux currently doesn't prevent this.
c781c06d 959 */
9ba136d0
KH
960 for (i = 0, j = 0; i < count; i++) {
961 sg_len = sg_dma_len(sg + i);
962 sg_addr = sg_dma_address(sg + i);
963 while (sg_len) {
332ef331
SR
964 /* FIXME: This won't get us out of the pinch. */
965 if (unlikely(j >= ARRAY_SIZE(orb->page_table))) {
966 fw_error("page table overflow\n");
967 goto fail_page_table;
968 }
9ba136d0
KH
969 l = min(sg_len, SBP2_MAX_SG_ELEMENT_LENGTH);
970 orb->page_table[j].low = sg_addr;
971 orb->page_table[j].high = (l << 16);
972 sg_addr += l;
973 sg_len -= l;
974 j++;
975 }
976 }
977
b4be016a
SR
978 fw_memcpy_to_be32(orb->page_table, orb->page_table,
979 sizeof(orb->page_table[0]) * j);
980 orb->page_table_bus =
981 dma_map_single(device->card->device, orb->page_table,
982 sizeof(orb->page_table), DMA_TO_DEVICE);
983 if (dma_mapping_error(orb->page_table_bus))
984 goto fail_page_table;
9ba136d0 985
c781c06d
KH
986 /*
987 * The data_descriptor pointer is the one case where we need
9ba136d0
KH
988 * to fill in the node ID part of the address. All other
989 * pointers assume that the data referenced reside on the
990 * initiator (i.e. us), but data_descriptor can refer to data
c781c06d
KH
991 * on other nodes so we need to put our ID in descriptor.high.
992 */
9ba136d0
KH
993 orb->request.data_descriptor.high = sd->address_high;
994 orb->request.data_descriptor.low = orb->page_table_bus;
995 orb->request.misc |=
a77754a7
KH
996 COMMAND_ORB_PAGE_TABLE_PRESENT |
997 COMMAND_ORB_DATA_SIZE(j);
9ba136d0 998
95ffc5e3
KH
999 return 0;
1000
1001 fail_page_table:
412edf65 1002 dma_unmap_sg(device->card->device, sg, scsi_sg_count(orb->cmd),
95ffc5e3
KH
1003 orb->cmd->sc_data_direction);
1004 fail:
1005 return -ENOMEM;
9ba136d0
KH
1006}
1007
9ba136d0
KH
1008/* SCSI stack integration */
1009
1010static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
1011{
ad85274f
KH
1012 struct sbp2_device *sd =
1013 (struct sbp2_device *)cmd->device->host->hostdata;
1014 struct fw_unit *unit = sd->unit;
9ba136d0 1015 struct fw_device *device = fw_device(unit->device.parent);
9ba136d0 1016 struct sbp2_command_orb *orb;
25659f71 1017 unsigned max_payload;
9ba136d0 1018
c781c06d
KH
1019 /*
1020 * Bidirectional commands are not yet implemented, and unknown
1021 * transfer direction not handled.
1022 */
9ba136d0 1023 if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) {
8a8cea27 1024 fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
e1b68c4d
KH
1025 cmd->result = DID_ERROR << 16;
1026 done(cmd);
1027 return 0;
9ba136d0
KH
1028 }
1029
2d826cc5 1030 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
9ba136d0
KH
1031 if (orb == NULL) {
1032 fw_notify("failed to alloc orb\n");
82eff9db 1033 goto fail_alloc;
9ba136d0
KH
1034 }
1035
12f26aa1
KH
1036 /* Initialize rcode to something not RCODE_COMPLETE. */
1037 orb->base.rcode = -1;
e57d2011 1038 kref_init(&orb->base.kref);
9ba136d0
KH
1039
1040 orb->unit = unit;
1041 orb->done = done;
1042 orb->cmd = cmd;
1043
1044 orb->request.next.high = SBP2_ORB_NULL;
1045 orb->request.next.low = 0x0;
c781c06d
KH
1046 /*
1047 * At speed 100 we can do 512 bytes per packet, at speed 200,
9ba136d0
KH
1048 * 1024 bytes per packet etc. The SBP-2 max_payload field
1049 * specifies the max payload size as 2 ^ (max_payload + 2), so
c781c06d
KH
1050 * if we set this to max_speed + 7, we get the right value.
1051 */
25659f71
SR
1052 max_payload = min(device->max_speed + 7,
1053 device->card->max_receive - 1);
9ba136d0 1054 orb->request.misc =
25659f71 1055 COMMAND_ORB_MAX_PAYLOAD(max_payload) |
f1397490 1056 COMMAND_ORB_SPEED(device->max_speed) |
a77754a7 1057 COMMAND_ORB_NOTIFY;
9ba136d0
KH
1058
1059 if (cmd->sc_data_direction == DMA_FROM_DEVICE)
1060 orb->request.misc |=
a77754a7 1061 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_FROM_MEDIA);
9ba136d0
KH
1062 else if (cmd->sc_data_direction == DMA_TO_DEVICE)
1063 orb->request.misc |=
a77754a7 1064 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_TO_MEDIA);
9ba136d0 1065
412edf65 1066 if (scsi_sg_count(cmd) && sbp2_command_orb_map_scatterlist(orb) < 0)
8526392a 1067 goto fail_mapping;
9ba136d0 1068
2d826cc5 1069 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
9ba136d0
KH
1070
1071 memset(orb->request.command_block,
2d826cc5 1072 0, sizeof(orb->request.command_block));
9ba136d0
KH
1073 memcpy(orb->request.command_block, cmd->cmnd, COMMAND_SIZE(*cmd->cmnd));
1074
1075 orb->base.callback = complete_command_orb;
8526392a
SR
1076 orb->base.request_bus =
1077 dma_map_single(device->card->device, &orb->request,
1078 sizeof(orb->request), DMA_TO_DEVICE);
1079 if (dma_mapping_error(orb->base.request_bus))
1080 goto fail_mapping;
9ba136d0
KH
1081
1082 sbp2_send_orb(&orb->base, unit, sd->node_id, sd->generation,
1083 sd->command_block_agent_address + SBP2_ORB_POINTER);
1084
e57d2011 1085 kref_put(&orb->base.kref, free_orb);
9ba136d0 1086 return 0;
82eff9db 1087
82eff9db 1088 fail_mapping:
e57d2011 1089 kref_put(&orb->base.kref, free_orb);
82eff9db 1090 fail_alloc:
e1b68c4d 1091 return SCSI_MLQUEUE_HOST_BUSY;
9ba136d0
KH
1092}
1093
cfb01381
SR
1094static int sbp2_scsi_slave_alloc(struct scsi_device *sdev)
1095{
ad85274f 1096 struct sbp2_device *sd = (struct sbp2_device *)sdev->host->hostdata;
cfb01381
SR
1097
1098 sdev->allow_restart = 1;
1099
1100 if (sd->workarounds & SBP2_WORKAROUND_INQUIRY_36)
1101 sdev->inquiry_len = 36;
1102 return 0;
1103}
1104
9ba136d0
KH
1105static int sbp2_scsi_slave_configure(struct scsi_device *sdev)
1106{
ad85274f
KH
1107 struct sbp2_device *sd = (struct sbp2_device *)sdev->host->hostdata;
1108 struct fw_unit *unit = sd->unit;
9ba136d0 1109
cfb01381
SR
1110 sdev->use_10_for_rw = 1;
1111
1112 if (sdev->type == TYPE_ROM)
1113 sdev->use_10_for_ms = 1;
9ba136d0
KH
1114 if (sdev->type == TYPE_DISK &&
1115 sd->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
1116 sdev->skip_ms_page_8 = 1;
1117 if (sd->workarounds & SBP2_WORKAROUND_FIX_CAPACITY) {
1118 fw_notify("setting fix_capacity for %s\n", unit->device.bus_id);
1119 sdev->fix_capacity = 1;
1120 }
cf47c7a2
SR
1121 if (sd->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
1122 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
9ba136d0
KH
1123 return 0;
1124}
1125
1126/*
1127 * Called by scsi stack when something has really gone wrong. Usually
1128 * called when a command has timed-out for some reason.
1129 */
1130static int sbp2_scsi_abort(struct scsi_cmnd *cmd)
1131{
ad85274f
KH
1132 struct sbp2_device *sd =
1133 (struct sbp2_device *)cmd->device->host->hostdata;
1134 struct fw_unit *unit = sd->unit;
9ba136d0
KH
1135
1136 fw_notify("sbp2_scsi_abort\n");
0fc7d6e4 1137 sbp2_agent_reset(unit);
9ba136d0
KH
1138 sbp2_cancel_orbs(unit);
1139
1140 return SUCCESS;
1141}
1142
14e21986
SR
1143/*
1144 * Format of /sys/bus/scsi/devices/.../ieee1394_id:
1145 * u64 EUI-64 : u24 directory_ID : u16 LUN (all printed in hexadecimal)
1146 *
1147 * This is the concatenation of target port identifier and logical unit
1148 * identifier as per SAM-2...SAM-4 annex A.
1149 */
1150static ssize_t
1151sbp2_sysfs_ieee1394_id_show(struct device *dev, struct device_attribute *attr,
1152 char *buf)
1153{
1154 struct scsi_device *sdev = to_scsi_device(dev);
1155 struct sbp2_device *sd;
1156 struct fw_unit *unit;
1157 struct fw_device *device;
1158 u32 directory_id;
1159 struct fw_csr_iterator ci;
1160 int key, value, lun;
1161
1162 if (!sdev)
1163 return 0;
1164 sd = (struct sbp2_device *)sdev->host->hostdata;
1165 unit = sd->unit;
1166 device = fw_device(unit->device.parent);
1167
1168 /* implicit directory ID */
1169 directory_id = ((unit->directory - device->config_rom) * 4
1170 + CSR_CONFIG_ROM) & 0xffffff;
1171
1172 /* explicit directory ID, overrides implicit ID if present */
1173 fw_csr_iterator_init(&ci, unit->directory);
1174 while (fw_csr_iterator_next(&ci, &key, &value))
1175 if (key == CSR_DIRECTORY_ID) {
1176 directory_id = value;
1177 break;
1178 }
1179
1180 /* FIXME: Make this work for multi-lun devices. */
1181 lun = 0;
1182
1183 return sprintf(buf, "%08x%08x:%06x:%04x\n",
1184 device->config_rom[3], device->config_rom[4],
1185 directory_id, lun);
1186}
1187
1188static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
1189
1190static struct device_attribute *sbp2_scsi_sysfs_attrs[] = {
1191 &dev_attr_ieee1394_id,
1192 NULL
1193};
1194
9ba136d0
KH
1195static struct scsi_host_template scsi_driver_template = {
1196 .module = THIS_MODULE,
1197 .name = "SBP-2 IEEE-1394",
b02b6bc4 1198 .proc_name = sbp2_driver_name,
9ba136d0 1199 .queuecommand = sbp2_scsi_queuecommand,
cfb01381 1200 .slave_alloc = sbp2_scsi_slave_alloc,
9ba136d0
KH
1201 .slave_configure = sbp2_scsi_slave_configure,
1202 .eh_abort_handler = sbp2_scsi_abort,
1203 .this_id = -1,
1204 .sg_tablesize = SG_ALL,
1205 .use_clustering = ENABLE_CLUSTERING,
02af8e70
SR
1206 .cmd_per_lun = 1,
1207 .can_queue = 1,
14e21986 1208 .sdev_attrs = sbp2_scsi_sysfs_attrs,
9ba136d0
KH
1209};
1210
9ba136d0
KH
1211MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
1212MODULE_DESCRIPTION("SCSI over IEEE1394");
1213MODULE_LICENSE("GPL");
1214MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
1215
1e4c7b0d
OH
1216/* Provide a module alias so root-on-sbp2 initrds don't break. */
1217#ifndef CONFIG_IEEE1394_SBP2_MODULE
1218MODULE_ALIAS("sbp2");
1219#endif
1220
9ba136d0
KH
1221static int __init sbp2_init(void)
1222{
1223 return driver_register(&sbp2_driver.driver);
1224}
1225
1226static void __exit sbp2_cleanup(void)
1227{
1228 driver_unregister(&sbp2_driver.driver);
1229}
1230
1231module_init(sbp2_init);
1232module_exit(sbp2_cleanup);
This page took 0.150001 seconds and 5 git commands to generate.