2 * SBP2 driver (SCSI over IEEE1394)
4 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
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.
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.
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.
22 * The basic structure of this driver is based on the old storage driver,
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>
31 #include <linux/blkdev.h>
32 #include <linux/delay.h>
33 #include <linux/device.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/kernel.h>
36 #include <linux/mod_devicetable.h>
37 #include <linux/module.h>
38 #include <linux/moduleparam.h>
39 #include <linux/scatterlist.h>
40 #include <linux/string.h>
41 #include <linux/stringify.h>
42 #include <linux/timer.h>
43 #include <linux/workqueue.h>
44 #include <asm/system.h>
46 #include <scsi/scsi.h>
47 #include <scsi/scsi_cmnd.h>
48 #include <scsi/scsi_device.h>
49 #include <scsi/scsi_host.h>
51 #include "fw-device.h"
52 #include "fw-topology.h"
53 #include "fw-transaction.h"
56 * So far only bridges from Oxford Semiconductor are known to support
57 * concurrent logins. Depending on firmware, four or two concurrent logins
58 * are possible on OXFW911 and newer Oxsemi bridges.
60 * Concurrent logins are useful together with cluster filesystems.
62 static int sbp2_param_exclusive_login
= 1;
63 module_param_named(exclusive_login
, sbp2_param_exclusive_login
, bool, 0644);
64 MODULE_PARM_DESC(exclusive_login
, "Exclusive login to sbp2 device "
65 "(default = Y, use N for concurrent initiators)");
68 * Flags for firmware oddities
70 * - 128kB max transfer
71 * Limit transfer size. Necessary for some old bridges.
74 * When scsi_mod probes the device, let the inquiry command look like that
78 * Suppress sending of mode_sense for mode page 8 if the device pretends to
79 * support the SCSI Primary Block commands instead of Reduced Block Commands.
82 * Tell sd_mod to correct the last sector number reported by read_capacity.
83 * Avoids access beyond actual disk limits on devices with an off-by-one bug.
84 * Don't use this with devices which don't have this bug.
87 * Wait extra SBP2_INQUIRY_DELAY seconds after login before SCSI inquiry.
90 * Set the power condition field in the START STOP UNIT commands sent by
91 * sd_mod on suspend, resume, and shutdown (if manage_start_stop is on).
92 * Some disks need this to spin down or to resume properly.
94 * - override internal blacklist
95 * Instead of adding to the built-in blacklist, use only the workarounds
96 * specified in the module load parameter.
97 * Useful if a blacklist entry interfered with a non-broken device.
99 #define SBP2_WORKAROUND_128K_MAX_TRANS 0x1
100 #define SBP2_WORKAROUND_INQUIRY_36 0x2
101 #define SBP2_WORKAROUND_MODE_SENSE_8 0x4
102 #define SBP2_WORKAROUND_FIX_CAPACITY 0x8
103 #define SBP2_WORKAROUND_DELAY_INQUIRY 0x10
104 #define SBP2_INQUIRY_DELAY 12
105 #define SBP2_WORKAROUND_POWER_CONDITION 0x20
106 #define SBP2_WORKAROUND_OVERRIDE 0x100
108 static int sbp2_param_workarounds
;
109 module_param_named(workarounds
, sbp2_param_workarounds
, int, 0644);
110 MODULE_PARM_DESC(workarounds
, "Work around device bugs (default = 0"
111 ", 128kB max transfer = " __stringify(SBP2_WORKAROUND_128K_MAX_TRANS
)
112 ", 36 byte inquiry = " __stringify(SBP2_WORKAROUND_INQUIRY_36
)
113 ", skip mode page 8 = " __stringify(SBP2_WORKAROUND_MODE_SENSE_8
)
114 ", fix capacity = " __stringify(SBP2_WORKAROUND_FIX_CAPACITY
)
115 ", delay inquiry = " __stringify(SBP2_WORKAROUND_DELAY_INQUIRY
)
116 ", set power condition in start stop unit = "
117 __stringify(SBP2_WORKAROUND_POWER_CONDITION
)
118 ", override internal blacklist = " __stringify(SBP2_WORKAROUND_OVERRIDE
)
119 ", or a combination)");
121 /* I don't know why the SCSI stack doesn't define something like this... */
122 typedef void (*scsi_done_fn_t
)(struct scsi_cmnd
*);
124 static const char sbp2_driver_name
[] = "sbp2";
127 * We create one struct sbp2_logical_unit per SBP-2 Logical Unit Number Entry
128 * and one struct scsi_device per sbp2_logical_unit.
130 struct sbp2_logical_unit
{
131 struct sbp2_target
*tgt
;
132 struct list_head link
;
133 struct fw_address_handler address_handler
;
134 struct list_head orb_list
;
136 u64 command_block_agent_address
;
141 * The generation is updated once we've logged in or reconnected
142 * to the logical unit. Thus, I/O to the device will automatically
143 * fail and get retried if it happens in a window where the device
144 * is not ready, e.g. after a bus reset but before we reconnect.
148 struct delayed_work work
;
154 * We create one struct sbp2_target per IEEE 1212 Unit Directory
155 * and one struct Scsi_Host per sbp2_target.
159 struct fw_unit
*unit
;
161 struct list_head lu_list
;
163 u64 management_agent_address
;
168 unsigned int workarounds
;
169 unsigned int mgt_orb_timeout
;
171 int dont_block
; /* counter for each logical unit */
172 int blocked
; /* ditto */
175 /* Impossible login_id, to detect logout attempt before successful login */
176 #define INVALID_LOGIN_ID 0x10000
179 * Per section 7.4.8 of the SBP-2 spec, a mgt_ORB_timeout value can be
180 * provided in the config rom. Most devices do provide a value, which
181 * we'll use for login management orbs, but with some sane limits.
183 #define SBP2_MIN_LOGIN_ORB_TIMEOUT 5000U /* Timeout in ms */
184 #define SBP2_MAX_LOGIN_ORB_TIMEOUT 40000U /* Timeout in ms */
185 #define SBP2_ORB_TIMEOUT 2000U /* Timeout in ms */
186 #define SBP2_ORB_NULL 0x80000000
187 #define SBP2_MAX_SG_ELEMENT_LENGTH 0xf000
188 #define SBP2_RETRY_LIMIT 0xf /* 15 retries */
189 #define SBP2_CYCLE_LIMIT (0xc8 << 12) /* 200 125us cycles */
192 * There is no transport protocol limit to the CDB length, but we implement
193 * a fixed length only. 16 bytes is enough for disks larger than 2 TB.
195 #define SBP2_MAX_CDB_SIZE 16
197 /* Unit directory keys */
198 #define SBP2_CSR_UNIT_CHARACTERISTICS 0x3a
199 #define SBP2_CSR_FIRMWARE_REVISION 0x3c
200 #define SBP2_CSR_LOGICAL_UNIT_NUMBER 0x14
201 #define SBP2_CSR_LOGICAL_UNIT_DIRECTORY 0xd4
203 /* Management orb opcodes */
204 #define SBP2_LOGIN_REQUEST 0x0
205 #define SBP2_QUERY_LOGINS_REQUEST 0x1
206 #define SBP2_RECONNECT_REQUEST 0x3
207 #define SBP2_SET_PASSWORD_REQUEST 0x4
208 #define SBP2_LOGOUT_REQUEST 0x7
209 #define SBP2_ABORT_TASK_REQUEST 0xb
210 #define SBP2_ABORT_TASK_SET 0xc
211 #define SBP2_LOGICAL_UNIT_RESET 0xe
212 #define SBP2_TARGET_RESET_REQUEST 0xf
214 /* Offsets for command block agent registers */
215 #define SBP2_AGENT_STATE 0x00
216 #define SBP2_AGENT_RESET 0x04
217 #define SBP2_ORB_POINTER 0x08
218 #define SBP2_DOORBELL 0x10
219 #define SBP2_UNSOLICITED_STATUS_ENABLE 0x14
221 /* Status write response codes */
222 #define SBP2_STATUS_REQUEST_COMPLETE 0x0
223 #define SBP2_STATUS_TRANSPORT_FAILURE 0x1
224 #define SBP2_STATUS_ILLEGAL_REQUEST 0x2
225 #define SBP2_STATUS_VENDOR_DEPENDENT 0x3
227 #define STATUS_GET_ORB_HIGH(v) ((v).status & 0xffff)
228 #define STATUS_GET_SBP_STATUS(v) (((v).status >> 16) & 0xff)
229 #define STATUS_GET_LEN(v) (((v).status >> 24) & 0x07)
230 #define STATUS_GET_DEAD(v) (((v).status >> 27) & 0x01)
231 #define STATUS_GET_RESPONSE(v) (((v).status >> 28) & 0x03)
232 #define STATUS_GET_SOURCE(v) (((v).status >> 30) & 0x03)
233 #define STATUS_GET_ORB_LOW(v) ((v).orb_low)
234 #define STATUS_GET_DATA(v) ((v).data)
242 struct sbp2_pointer
{
248 struct fw_transaction t
;
250 dma_addr_t request_bus
;
252 struct sbp2_pointer pointer
;
253 void (*callback
)(struct sbp2_orb
* orb
, struct sbp2_status
* status
);
254 struct list_head link
;
257 #define MANAGEMENT_ORB_LUN(v) ((v))
258 #define MANAGEMENT_ORB_FUNCTION(v) ((v) << 16)
259 #define MANAGEMENT_ORB_RECONNECT(v) ((v) << 20)
260 #define MANAGEMENT_ORB_EXCLUSIVE(v) ((v) ? 1 << 28 : 0)
261 #define MANAGEMENT_ORB_REQUEST_FORMAT(v) ((v) << 29)
262 #define MANAGEMENT_ORB_NOTIFY ((1) << 31)
264 #define MANAGEMENT_ORB_RESPONSE_LENGTH(v) ((v))
265 #define MANAGEMENT_ORB_PASSWORD_LENGTH(v) ((v) << 16)
267 struct sbp2_management_orb
{
268 struct sbp2_orb base
;
270 struct sbp2_pointer password
;
271 struct sbp2_pointer response
;
274 struct sbp2_pointer status_fifo
;
277 dma_addr_t response_bus
;
278 struct completion done
;
279 struct sbp2_status status
;
282 struct sbp2_login_response
{
284 struct sbp2_pointer command_block_agent
;
285 __be32 reconnect_hold
;
287 #define COMMAND_ORB_DATA_SIZE(v) ((v))
288 #define COMMAND_ORB_PAGE_SIZE(v) ((v) << 16)
289 #define COMMAND_ORB_PAGE_TABLE_PRESENT ((1) << 19)
290 #define COMMAND_ORB_MAX_PAYLOAD(v) ((v) << 20)
291 #define COMMAND_ORB_SPEED(v) ((v) << 24)
292 #define COMMAND_ORB_DIRECTION ((1) << 27)
293 #define COMMAND_ORB_REQUEST_FORMAT(v) ((v) << 29)
294 #define COMMAND_ORB_NOTIFY ((1) << 31)
296 struct sbp2_command_orb
{
297 struct sbp2_orb base
;
299 struct sbp2_pointer next
;
300 struct sbp2_pointer data_descriptor
;
302 u8 command_block
[SBP2_MAX_CDB_SIZE
];
304 struct scsi_cmnd
*cmd
;
306 struct sbp2_logical_unit
*lu
;
308 struct sbp2_pointer page_table
[SG_ALL
] __attribute__((aligned(8)));
309 dma_addr_t page_table_bus
;
313 * List of devices with known bugs.
315 * The firmware_revision field, masked with 0xffff00, is the best
316 * indicator for the type of bridge chip of a device. It yields a few
317 * false positives but this did not break correctly behaving devices
318 * so far. We use ~0 as a wildcard, since the 24 bit values we get
319 * from the config rom can never match that.
321 static const struct {
322 u32 firmware_revision
;
324 unsigned int workarounds
;
325 } sbp2_workarounds_table
[] = {
326 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
327 .firmware_revision
= 0x002800,
329 .workarounds
= SBP2_WORKAROUND_INQUIRY_36
|
330 SBP2_WORKAROUND_MODE_SENSE_8
|
331 SBP2_WORKAROUND_POWER_CONDITION
,
333 /* DViCO Momobay FX-3A with TSB42AA9A bridge */ {
334 .firmware_revision
= 0x002800,
336 .workarounds
= SBP2_WORKAROUND_DELAY_INQUIRY
|
337 SBP2_WORKAROUND_POWER_CONDITION
,
339 /* Initio bridges, actually only needed for some older ones */ {
340 .firmware_revision
= 0x000200,
342 .workarounds
= SBP2_WORKAROUND_INQUIRY_36
,
344 /* PL-3507 bridge with Prolific firmware */ {
345 .firmware_revision
= 0x012800,
347 .workarounds
= SBP2_WORKAROUND_POWER_CONDITION
,
349 /* Symbios bridge */ {
350 .firmware_revision
= 0xa0b800,
352 .workarounds
= SBP2_WORKAROUND_128K_MAX_TRANS
,
354 /* Datafab MD2-FW2 with Symbios/LSILogic SYM13FW500 bridge */ {
355 .firmware_revision
= 0x002600,
357 .workarounds
= SBP2_WORKAROUND_128K_MAX_TRANS
,
360 * iPod 2nd generation: needs 128k max transfer size workaround
361 * iPod 3rd generation: needs fix capacity workaround
364 .firmware_revision
= 0x0a2700,
366 .workarounds
= SBP2_WORKAROUND_128K_MAX_TRANS
|
367 SBP2_WORKAROUND_FIX_CAPACITY
,
369 /* iPod 4th generation */ {
370 .firmware_revision
= 0x0a2700,
372 .workarounds
= SBP2_WORKAROUND_FIX_CAPACITY
,
375 .firmware_revision
= 0x0a2700,
377 .workarounds
= SBP2_WORKAROUND_FIX_CAPACITY
,
380 .firmware_revision
= 0x0a2700,
382 .workarounds
= SBP2_WORKAROUND_FIX_CAPACITY
,
385 .firmware_revision
= 0x0a2700,
387 .workarounds
= SBP2_WORKAROUND_FIX_CAPACITY
,
392 free_orb(struct kref
*kref
)
394 struct sbp2_orb
*orb
= container_of(kref
, struct sbp2_orb
, kref
);
400 sbp2_status_write(struct fw_card
*card
, struct fw_request
*request
,
401 int tcode
, int destination
, int source
,
402 int generation
, int speed
,
403 unsigned long long offset
,
404 void *payload
, size_t length
, void *callback_data
)
406 struct sbp2_logical_unit
*lu
= callback_data
;
407 struct sbp2_orb
*orb
;
408 struct sbp2_status status
;
412 if (tcode
!= TCODE_WRITE_BLOCK_REQUEST
||
413 length
== 0 || length
> sizeof(status
)) {
414 fw_send_response(card
, request
, RCODE_TYPE_ERROR
);
418 header_size
= min(length
, 2 * sizeof(u32
));
419 fw_memcpy_from_be32(&status
, payload
, header_size
);
420 if (length
> header_size
)
421 memcpy(status
.data
, payload
+ 8, length
- header_size
);
422 if (STATUS_GET_SOURCE(status
) == 2 || STATUS_GET_SOURCE(status
) == 3) {
423 fw_notify("non-orb related status write, not handled\n");
424 fw_send_response(card
, request
, RCODE_COMPLETE
);
428 /* Lookup the orb corresponding to this status write. */
429 spin_lock_irqsave(&card
->lock
, flags
);
430 list_for_each_entry(orb
, &lu
->orb_list
, link
) {
431 if (STATUS_GET_ORB_HIGH(status
) == 0 &&
432 STATUS_GET_ORB_LOW(status
) == orb
->request_bus
) {
433 orb
->rcode
= RCODE_COMPLETE
;
434 list_del(&orb
->link
);
438 spin_unlock_irqrestore(&card
->lock
, flags
);
440 if (&orb
->link
!= &lu
->orb_list
)
441 orb
->callback(orb
, &status
);
443 fw_error("status write for unknown orb\n");
445 kref_put(&orb
->kref
, free_orb
);
447 fw_send_response(card
, request
, RCODE_COMPLETE
);
451 complete_transaction(struct fw_card
*card
, int rcode
,
452 void *payload
, size_t length
, void *data
)
454 struct sbp2_orb
*orb
= data
;
458 * This is a little tricky. We can get the status write for
459 * the orb before we get this callback. The status write
460 * handler above will assume the orb pointer transaction was
461 * successful and set the rcode to RCODE_COMPLETE for the orb.
462 * So this callback only sets the rcode if it hasn't already
463 * been set and only does the cleanup if the transaction
464 * failed and we didn't already get a status write.
466 spin_lock_irqsave(&card
->lock
, flags
);
468 if (orb
->rcode
== -1)
470 if (orb
->rcode
!= RCODE_COMPLETE
) {
471 list_del(&orb
->link
);
472 spin_unlock_irqrestore(&card
->lock
, flags
);
473 orb
->callback(orb
, NULL
);
475 spin_unlock_irqrestore(&card
->lock
, flags
);
478 kref_put(&orb
->kref
, free_orb
);
482 sbp2_send_orb(struct sbp2_orb
*orb
, struct sbp2_logical_unit
*lu
,
483 int node_id
, int generation
, u64 offset
)
485 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
488 orb
->pointer
.high
= 0;
489 orb
->pointer
.low
= cpu_to_be32(orb
->request_bus
);
491 spin_lock_irqsave(&device
->card
->lock
, flags
);
492 list_add_tail(&orb
->link
, &lu
->orb_list
);
493 spin_unlock_irqrestore(&device
->card
->lock
, flags
);
495 /* Take a ref for the orb list and for the transaction callback. */
496 kref_get(&orb
->kref
);
497 kref_get(&orb
->kref
);
499 fw_send_request(device
->card
, &orb
->t
, TCODE_WRITE_BLOCK_REQUEST
,
500 node_id
, generation
, device
->max_speed
, offset
,
501 &orb
->pointer
, sizeof(orb
->pointer
),
502 complete_transaction
, orb
);
505 static int sbp2_cancel_orbs(struct sbp2_logical_unit
*lu
)
507 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
508 struct sbp2_orb
*orb
, *next
;
509 struct list_head list
;
511 int retval
= -ENOENT
;
513 INIT_LIST_HEAD(&list
);
514 spin_lock_irqsave(&device
->card
->lock
, flags
);
515 list_splice_init(&lu
->orb_list
, &list
);
516 spin_unlock_irqrestore(&device
->card
->lock
, flags
);
518 list_for_each_entry_safe(orb
, next
, &list
, link
) {
520 if (fw_cancel_transaction(device
->card
, &orb
->t
) == 0)
523 orb
->rcode
= RCODE_CANCELLED
;
524 orb
->callback(orb
, NULL
);
531 complete_management_orb(struct sbp2_orb
*base_orb
, struct sbp2_status
*status
)
533 struct sbp2_management_orb
*orb
=
534 container_of(base_orb
, struct sbp2_management_orb
, base
);
537 memcpy(&orb
->status
, status
, sizeof(*status
));
538 complete(&orb
->done
);
542 sbp2_send_management_orb(struct sbp2_logical_unit
*lu
, int node_id
,
543 int generation
, int function
, int lun_or_login_id
,
546 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
547 struct sbp2_management_orb
*orb
;
548 unsigned int timeout
;
549 int retval
= -ENOMEM
;
551 if (function
== SBP2_LOGOUT_REQUEST
&& fw_device_is_shutdown(device
))
554 orb
= kzalloc(sizeof(*orb
), GFP_ATOMIC
);
558 kref_init(&orb
->base
.kref
);
560 dma_map_single(device
->card
->device
, &orb
->response
,
561 sizeof(orb
->response
), DMA_FROM_DEVICE
);
562 if (dma_mapping_error(device
->card
->device
, orb
->response_bus
))
563 goto fail_mapping_response
;
565 orb
->request
.response
.high
= 0;
566 orb
->request
.response
.low
= cpu_to_be32(orb
->response_bus
);
568 orb
->request
.misc
= cpu_to_be32(
569 MANAGEMENT_ORB_NOTIFY
|
570 MANAGEMENT_ORB_FUNCTION(function
) |
571 MANAGEMENT_ORB_LUN(lun_or_login_id
));
572 orb
->request
.length
= cpu_to_be32(
573 MANAGEMENT_ORB_RESPONSE_LENGTH(sizeof(orb
->response
)));
575 orb
->request
.status_fifo
.high
=
576 cpu_to_be32(lu
->address_handler
.offset
>> 32);
577 orb
->request
.status_fifo
.low
=
578 cpu_to_be32(lu
->address_handler
.offset
);
580 if (function
== SBP2_LOGIN_REQUEST
) {
581 /* Ask for 2^2 == 4 seconds reconnect grace period */
582 orb
->request
.misc
|= cpu_to_be32(
583 MANAGEMENT_ORB_RECONNECT(2) |
584 MANAGEMENT_ORB_EXCLUSIVE(sbp2_param_exclusive_login
));
585 timeout
= lu
->tgt
->mgt_orb_timeout
;
587 timeout
= SBP2_ORB_TIMEOUT
;
590 init_completion(&orb
->done
);
591 orb
->base
.callback
= complete_management_orb
;
593 orb
->base
.request_bus
=
594 dma_map_single(device
->card
->device
, &orb
->request
,
595 sizeof(orb
->request
), DMA_TO_DEVICE
);
596 if (dma_mapping_error(device
->card
->device
, orb
->base
.request_bus
))
597 goto fail_mapping_request
;
599 sbp2_send_orb(&orb
->base
, lu
, node_id
, generation
,
600 lu
->tgt
->management_agent_address
);
602 wait_for_completion_timeout(&orb
->done
, msecs_to_jiffies(timeout
));
605 if (sbp2_cancel_orbs(lu
) == 0) {
606 fw_error("%s: orb reply timed out, rcode=0x%02x\n",
607 lu
->tgt
->bus_id
, orb
->base
.rcode
);
611 if (orb
->base
.rcode
!= RCODE_COMPLETE
) {
612 fw_error("%s: management write failed, rcode 0x%02x\n",
613 lu
->tgt
->bus_id
, orb
->base
.rcode
);
617 if (STATUS_GET_RESPONSE(orb
->status
) != 0 ||
618 STATUS_GET_SBP_STATUS(orb
->status
) != 0) {
619 fw_error("%s: error status: %d:%d\n", lu
->tgt
->bus_id
,
620 STATUS_GET_RESPONSE(orb
->status
),
621 STATUS_GET_SBP_STATUS(orb
->status
));
627 dma_unmap_single(device
->card
->device
, orb
->base
.request_bus
,
628 sizeof(orb
->request
), DMA_TO_DEVICE
);
629 fail_mapping_request
:
630 dma_unmap_single(device
->card
->device
, orb
->response_bus
,
631 sizeof(orb
->response
), DMA_FROM_DEVICE
);
632 fail_mapping_response
:
634 memcpy(response
, orb
->response
, sizeof(orb
->response
));
635 kref_put(&orb
->base
.kref
, free_orb
);
641 complete_agent_reset_write(struct fw_card
*card
, int rcode
,
642 void *payload
, size_t length
, void *done
)
647 static void sbp2_agent_reset(struct sbp2_logical_unit
*lu
)
649 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
650 DECLARE_COMPLETION_ONSTACK(done
);
651 struct fw_transaction t
;
654 fw_send_request(device
->card
, &t
, TCODE_WRITE_QUADLET_REQUEST
,
655 lu
->tgt
->node_id
, lu
->generation
, device
->max_speed
,
656 lu
->command_block_agent_address
+ SBP2_AGENT_RESET
,
657 &z
, sizeof(z
), complete_agent_reset_write
, &done
);
658 wait_for_completion(&done
);
662 complete_agent_reset_write_no_wait(struct fw_card
*card
, int rcode
,
663 void *payload
, size_t length
, void *data
)
668 static void sbp2_agent_reset_no_wait(struct sbp2_logical_unit
*lu
)
670 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
671 struct fw_transaction
*t
;
674 t
= kmalloc(sizeof(*t
), GFP_ATOMIC
);
678 fw_send_request(device
->card
, t
, TCODE_WRITE_QUADLET_REQUEST
,
679 lu
->tgt
->node_id
, lu
->generation
, device
->max_speed
,
680 lu
->command_block_agent_address
+ SBP2_AGENT_RESET
,
681 &z
, sizeof(z
), complete_agent_reset_write_no_wait
, t
);
684 static void sbp2_set_generation(struct sbp2_logical_unit
*lu
, int generation
)
686 struct fw_card
*card
= fw_device(lu
->tgt
->unit
->device
.parent
)->card
;
689 /* serialize with comparisons of lu->generation and card->generation */
690 spin_lock_irqsave(&card
->lock
, flags
);
691 lu
->generation
= generation
;
692 spin_unlock_irqrestore(&card
->lock
, flags
);
695 static inline void sbp2_allow_block(struct sbp2_logical_unit
*lu
)
698 * We may access dont_block without taking card->lock here:
699 * All callers of sbp2_allow_block() and all callers of sbp2_unblock()
700 * are currently serialized against each other.
701 * And a wrong result in sbp2_conditionally_block()'s access of
702 * dont_block is rather harmless, it simply misses its first chance.
704 --lu
->tgt
->dont_block
;
708 * Blocks lu->tgt if all of the following conditions are met:
709 * - Login, INQUIRY, and high-level SCSI setup of all of the target's
710 * logical units have been finished (indicated by dont_block == 0).
711 * - lu->generation is stale.
713 * Note, scsi_block_requests() must be called while holding card->lock,
714 * otherwise it might foil sbp2_[conditionally_]unblock()'s attempt to
715 * unblock the target.
717 static void sbp2_conditionally_block(struct sbp2_logical_unit
*lu
)
719 struct sbp2_target
*tgt
= lu
->tgt
;
720 struct fw_card
*card
= fw_device(tgt
->unit
->device
.parent
)->card
;
721 struct Scsi_Host
*shost
=
722 container_of((void *)tgt
, struct Scsi_Host
, hostdata
[0]);
725 spin_lock_irqsave(&card
->lock
, flags
);
726 if (!tgt
->dont_block
&& !lu
->blocked
&&
727 lu
->generation
!= card
->generation
) {
729 if (++tgt
->blocked
== 1)
730 scsi_block_requests(shost
);
732 spin_unlock_irqrestore(&card
->lock
, flags
);
736 * Unblocks lu->tgt as soon as all its logical units can be unblocked.
737 * Note, it is harmless to run scsi_unblock_requests() outside the
738 * card->lock protected section. On the other hand, running it inside
739 * the section might clash with shost->host_lock.
741 static void sbp2_conditionally_unblock(struct sbp2_logical_unit
*lu
)
743 struct sbp2_target
*tgt
= lu
->tgt
;
744 struct fw_card
*card
= fw_device(tgt
->unit
->device
.parent
)->card
;
745 struct Scsi_Host
*shost
=
746 container_of((void *)tgt
, struct Scsi_Host
, hostdata
[0]);
748 bool unblock
= false;
750 spin_lock_irqsave(&card
->lock
, flags
);
751 if (lu
->blocked
&& lu
->generation
== card
->generation
) {
753 unblock
= --tgt
->blocked
== 0;
755 spin_unlock_irqrestore(&card
->lock
, flags
);
758 scsi_unblock_requests(shost
);
762 * Prevents future blocking of tgt and unblocks it.
763 * Note, it is harmless to run scsi_unblock_requests() outside the
764 * card->lock protected section. On the other hand, running it inside
765 * the section might clash with shost->host_lock.
767 static void sbp2_unblock(struct sbp2_target
*tgt
)
769 struct fw_card
*card
= fw_device(tgt
->unit
->device
.parent
)->card
;
770 struct Scsi_Host
*shost
=
771 container_of((void *)tgt
, struct Scsi_Host
, hostdata
[0]);
774 spin_lock_irqsave(&card
->lock
, flags
);
776 spin_unlock_irqrestore(&card
->lock
, flags
);
778 scsi_unblock_requests(shost
);
781 static int sbp2_lun2int(u16 lun
)
783 struct scsi_lun eight_bytes_lun
;
785 memset(&eight_bytes_lun
, 0, sizeof(eight_bytes_lun
));
786 eight_bytes_lun
.scsi_lun
[0] = (lun
>> 8) & 0xff;
787 eight_bytes_lun
.scsi_lun
[1] = lun
& 0xff;
789 return scsilun_to_int(&eight_bytes_lun
);
792 static void sbp2_release_target(struct kref
*kref
)
794 struct sbp2_target
*tgt
= container_of(kref
, struct sbp2_target
, kref
);
795 struct sbp2_logical_unit
*lu
, *next
;
796 struct Scsi_Host
*shost
=
797 container_of((void *)tgt
, struct Scsi_Host
, hostdata
[0]);
798 struct scsi_device
*sdev
;
799 struct fw_device
*device
= fw_device(tgt
->unit
->device
.parent
);
801 /* prevent deadlocks */
804 list_for_each_entry_safe(lu
, next
, &tgt
->lu_list
, link
) {
805 sdev
= scsi_device_lookup(shost
, 0, 0, sbp2_lun2int(lu
->lun
));
807 scsi_remove_device(sdev
);
808 scsi_device_put(sdev
);
810 if (lu
->login_id
!= INVALID_LOGIN_ID
) {
811 int generation
, node_id
;
813 * tgt->node_id may be obsolete here if we failed
814 * during initial login or after a bus reset where
815 * the topology changed.
817 generation
= device
->generation
;
818 smp_rmb(); /* node_id vs. generation */
819 node_id
= device
->node_id
;
820 sbp2_send_management_orb(lu
, node_id
, generation
,
824 fw_core_remove_address_handler(&lu
->address_handler
);
828 scsi_remove_host(shost
);
829 fw_notify("released %s, target %d:0:0\n", tgt
->bus_id
, shost
->host_no
);
831 fw_unit_put(tgt
->unit
);
832 scsi_host_put(shost
);
833 fw_device_put(device
);
836 static struct workqueue_struct
*sbp2_wq
;
838 static void sbp2_target_put(struct sbp2_target
*tgt
)
840 kref_put(&tgt
->kref
, sbp2_release_target
);
844 * Always get the target's kref when scheduling work on one its units.
845 * Each workqueue job is responsible to call sbp2_target_put() upon return.
847 static void sbp2_queue_work(struct sbp2_logical_unit
*lu
, unsigned long delay
)
849 kref_get(&lu
->tgt
->kref
);
850 if (!queue_delayed_work(sbp2_wq
, &lu
->work
, delay
))
851 sbp2_target_put(lu
->tgt
);
855 complete_set_busy_timeout(struct fw_card
*card
, int rcode
,
856 void *payload
, size_t length
, void *done
)
862 * Write retransmit retry values into the BUSY_TIMEOUT register.
863 * - The single-phase retry protocol is supported by all SBP-2 devices, but the
864 * default retry_limit value is 0 (i.e. never retry transmission). We write a
865 * saner value after logging into the device.
866 * - The dual-phase retry protocol is optional to implement, and if not
867 * supported, writes to the dual-phase portion of the register will be
868 * ignored. We try to write the original 1394-1995 default here.
869 * - In the case of devices that are also SBP-3-compliant, all writes are
870 * ignored, as the register is read-only, but contains single-phase retry of
871 * 15, which is what we're trying to set for all SBP-2 device anyway, so this
872 * write attempt is safe and yields more consistent behavior for all devices.
874 * See section 8.3.2.3.5 of the 1394-1995 spec, section 6.2 of the SBP-2 spec,
875 * and section 6.4 of the SBP-3 spec for further details.
877 static void sbp2_set_busy_timeout(struct sbp2_logical_unit
*lu
)
879 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
880 DECLARE_COMPLETION_ONSTACK(done
);
881 struct fw_transaction t
;
882 static __be32 busy_timeout
;
884 busy_timeout
= cpu_to_be32(SBP2_CYCLE_LIMIT
| SBP2_RETRY_LIMIT
);
886 fw_send_request(device
->card
, &t
, TCODE_WRITE_QUADLET_REQUEST
,
887 lu
->tgt
->node_id
, lu
->generation
, device
->max_speed
,
888 CSR_REGISTER_BASE
+ CSR_BUSY_TIMEOUT
, &busy_timeout
,
889 sizeof(busy_timeout
), complete_set_busy_timeout
, &done
);
890 wait_for_completion(&done
);
893 static void sbp2_reconnect(struct work_struct
*work
);
895 static void sbp2_login(struct work_struct
*work
)
897 struct sbp2_logical_unit
*lu
=
898 container_of(work
, struct sbp2_logical_unit
, work
.work
);
899 struct sbp2_target
*tgt
= lu
->tgt
;
900 struct fw_device
*device
= fw_device(tgt
->unit
->device
.parent
);
901 struct Scsi_Host
*shost
;
902 struct scsi_device
*sdev
;
903 struct sbp2_login_response response
;
904 int generation
, node_id
, local_node_id
;
906 if (fw_device_is_shutdown(device
))
909 generation
= device
->generation
;
910 smp_rmb(); /* node_id must not be older than generation */
911 node_id
= device
->node_id
;
912 local_node_id
= device
->card
->node_id
;
914 /* If this is a re-login attempt, log out, or we might be rejected. */
916 sbp2_send_management_orb(lu
, device
->node_id
, generation
,
917 SBP2_LOGOUT_REQUEST
, lu
->login_id
, NULL
);
919 if (sbp2_send_management_orb(lu
, node_id
, generation
,
920 SBP2_LOGIN_REQUEST
, lu
->lun
, &response
) < 0) {
921 if (lu
->retries
++ < 5) {
922 sbp2_queue_work(lu
, DIV_ROUND_UP(HZ
, 5));
924 fw_error("%s: failed to login to LUN %04x\n",
925 tgt
->bus_id
, lu
->lun
);
926 /* Let any waiting I/O fail from now on. */
927 sbp2_unblock(lu
->tgt
);
932 tgt
->node_id
= node_id
;
933 tgt
->address_high
= local_node_id
<< 16;
934 sbp2_set_generation(lu
, generation
);
936 lu
->command_block_agent_address
=
937 ((u64
)(be32_to_cpu(response
.command_block_agent
.high
) & 0xffff)
938 << 32) | be32_to_cpu(response
.command_block_agent
.low
);
939 lu
->login_id
= be32_to_cpu(response
.misc
) & 0xffff;
941 fw_notify("%s: logged in to LUN %04x (%d retries)\n",
942 tgt
->bus_id
, lu
->lun
, lu
->retries
);
944 /* set appropriate retry limit(s) in BUSY_TIMEOUT register */
945 sbp2_set_busy_timeout(lu
);
947 PREPARE_DELAYED_WORK(&lu
->work
, sbp2_reconnect
);
948 sbp2_agent_reset(lu
);
950 /* This was a re-login. */
952 sbp2_cancel_orbs(lu
);
953 sbp2_conditionally_unblock(lu
);
957 if (lu
->tgt
->workarounds
& SBP2_WORKAROUND_DELAY_INQUIRY
)
958 ssleep(SBP2_INQUIRY_DELAY
);
960 shost
= container_of((void *)tgt
, struct Scsi_Host
, hostdata
[0]);
961 sdev
= __scsi_add_device(shost
, 0, 0, sbp2_lun2int(lu
->lun
), lu
);
963 * FIXME: We are unable to perform reconnects while in sbp2_login().
964 * Therefore __scsi_add_device() will get into trouble if a bus reset
965 * happens in parallel. It will either fail or leave us with an
966 * unusable sdev. As a workaround we check for this and retry the
967 * whole login and SCSI probing.
970 /* Reported error during __scsi_add_device() */
972 goto out_logout_login
;
974 /* Unreported error during __scsi_add_device() */
975 smp_rmb(); /* get current card generation */
976 if (generation
!= device
->card
->generation
) {
977 scsi_remove_device(sdev
);
978 scsi_device_put(sdev
);
979 goto out_logout_login
;
982 /* No error during __scsi_add_device() */
984 scsi_device_put(sdev
);
985 sbp2_allow_block(lu
);
989 smp_rmb(); /* generation may have changed */
990 generation
= device
->generation
;
991 smp_rmb(); /* node_id must not be older than generation */
993 sbp2_send_management_orb(lu
, device
->node_id
, generation
,
994 SBP2_LOGOUT_REQUEST
, lu
->login_id
, NULL
);
996 * If a bus reset happened, sbp2_update will have requeued
997 * lu->work already. Reset the work from reconnect to login.
999 PREPARE_DELAYED_WORK(&lu
->work
, sbp2_login
);
1001 sbp2_target_put(tgt
);
1004 static int sbp2_add_logical_unit(struct sbp2_target
*tgt
, int lun_entry
)
1006 struct sbp2_logical_unit
*lu
;
1008 lu
= kmalloc(sizeof(*lu
), GFP_KERNEL
);
1012 lu
->address_handler
.length
= 0x100;
1013 lu
->address_handler
.address_callback
= sbp2_status_write
;
1014 lu
->address_handler
.callback_data
= lu
;
1016 if (fw_core_add_address_handler(&lu
->address_handler
,
1017 &fw_high_memory_region
) < 0) {
1023 lu
->lun
= lun_entry
& 0xffff;
1024 lu
->login_id
= INVALID_LOGIN_ID
;
1026 lu
->has_sdev
= false;
1027 lu
->blocked
= false;
1029 INIT_LIST_HEAD(&lu
->orb_list
);
1030 INIT_DELAYED_WORK(&lu
->work
, sbp2_login
);
1032 list_add_tail(&lu
->link
, &tgt
->lu_list
);
1036 static int sbp2_scan_logical_unit_dir(struct sbp2_target
*tgt
, u32
*directory
)
1038 struct fw_csr_iterator ci
;
1041 fw_csr_iterator_init(&ci
, directory
);
1042 while (fw_csr_iterator_next(&ci
, &key
, &value
))
1043 if (key
== SBP2_CSR_LOGICAL_UNIT_NUMBER
&&
1044 sbp2_add_logical_unit(tgt
, value
) < 0)
1049 static int sbp2_scan_unit_dir(struct sbp2_target
*tgt
, u32
*directory
,
1050 u32
*model
, u32
*firmware_revision
)
1052 struct fw_csr_iterator ci
;
1054 unsigned int timeout
;
1056 fw_csr_iterator_init(&ci
, directory
);
1057 while (fw_csr_iterator_next(&ci
, &key
, &value
)) {
1060 case CSR_DEPENDENT_INFO
| CSR_OFFSET
:
1061 tgt
->management_agent_address
=
1062 CSR_REGISTER_BASE
+ 4 * value
;
1065 case CSR_DIRECTORY_ID
:
1066 tgt
->directory_id
= value
;
1073 case SBP2_CSR_FIRMWARE_REVISION
:
1074 *firmware_revision
= value
;
1077 case SBP2_CSR_UNIT_CHARACTERISTICS
:
1078 /* the timeout value is stored in 500ms units */
1079 timeout
= ((unsigned int) value
>> 8 & 0xff) * 500;
1080 timeout
= max(timeout
, SBP2_MIN_LOGIN_ORB_TIMEOUT
);
1081 tgt
->mgt_orb_timeout
=
1082 min(timeout
, SBP2_MAX_LOGIN_ORB_TIMEOUT
);
1084 if (timeout
> tgt
->mgt_orb_timeout
)
1085 fw_notify("%s: config rom contains %ds "
1086 "management ORB timeout, limiting "
1087 "to %ds\n", tgt
->bus_id
,
1089 tgt
->mgt_orb_timeout
/ 1000);
1092 case SBP2_CSR_LOGICAL_UNIT_NUMBER
:
1093 if (sbp2_add_logical_unit(tgt
, value
) < 0)
1097 case SBP2_CSR_LOGICAL_UNIT_DIRECTORY
:
1098 /* Adjust for the increment in the iterator */
1099 if (sbp2_scan_logical_unit_dir(tgt
, ci
.p
- 1 + value
) < 0)
1107 static void sbp2_init_workarounds(struct sbp2_target
*tgt
, u32 model
,
1108 u32 firmware_revision
)
1111 unsigned int w
= sbp2_param_workarounds
;
1114 fw_notify("Please notify linux1394-devel@lists.sourceforge.net "
1115 "if you need the workarounds parameter for %s\n",
1118 if (w
& SBP2_WORKAROUND_OVERRIDE
)
1121 for (i
= 0; i
< ARRAY_SIZE(sbp2_workarounds_table
); i
++) {
1123 if (sbp2_workarounds_table
[i
].firmware_revision
!=
1124 (firmware_revision
& 0xffffff00))
1127 if (sbp2_workarounds_table
[i
].model
!= model
&&
1128 sbp2_workarounds_table
[i
].model
!= ~0)
1131 w
|= sbp2_workarounds_table
[i
].workarounds
;
1136 fw_notify("Workarounds for %s: 0x%x "
1137 "(firmware_revision 0x%06x, model_id 0x%06x)\n",
1138 tgt
->bus_id
, w
, firmware_revision
, model
);
1139 tgt
->workarounds
= w
;
1142 static struct scsi_host_template scsi_driver_template
;
1144 static int sbp2_probe(struct device
*dev
)
1146 struct fw_unit
*unit
= fw_unit(dev
);
1147 struct fw_device
*device
= fw_device(unit
->device
.parent
);
1148 struct sbp2_target
*tgt
;
1149 struct sbp2_logical_unit
*lu
;
1150 struct Scsi_Host
*shost
;
1151 u32 model
, firmware_revision
;
1153 shost
= scsi_host_alloc(&scsi_driver_template
, sizeof(*tgt
));
1157 tgt
= (struct sbp2_target
*)shost
->hostdata
;
1158 unit
->device
.driver_data
= tgt
;
1160 kref_init(&tgt
->kref
);
1161 INIT_LIST_HEAD(&tgt
->lu_list
);
1162 tgt
->bus_id
= unit
->device
.bus_id
;
1163 tgt
->guid
= (u64
)device
->config_rom
[3] << 32 | device
->config_rom
[4];
1165 if (fw_device_enable_phys_dma(device
) < 0)
1166 goto fail_shost_put
;
1168 shost
->max_cmd_len
= SBP2_MAX_CDB_SIZE
;
1170 if (scsi_add_host(shost
, &unit
->device
) < 0)
1171 goto fail_shost_put
;
1173 fw_device_get(device
);
1176 /* Initialize to values that won't match anything in our table. */
1177 firmware_revision
= 0xff000000;
1180 /* implicit directory ID */
1181 tgt
->directory_id
= ((unit
->directory
- device
->config_rom
) * 4
1182 + CSR_CONFIG_ROM
) & 0xffffff;
1184 if (sbp2_scan_unit_dir(tgt
, unit
->directory
, &model
,
1185 &firmware_revision
) < 0)
1188 sbp2_init_workarounds(tgt
, model
, firmware_revision
);
1190 /* Do the login in a workqueue so we can easily reschedule retries. */
1191 list_for_each_entry(lu
, &tgt
->lu_list
, link
)
1192 sbp2_queue_work(lu
, DIV_ROUND_UP(HZ
, 5));
1196 sbp2_target_put(tgt
);
1200 scsi_host_put(shost
);
1204 static int sbp2_remove(struct device
*dev
)
1206 struct fw_unit
*unit
= fw_unit(dev
);
1207 struct sbp2_target
*tgt
= unit
->device
.driver_data
;
1209 sbp2_target_put(tgt
);
1213 static void sbp2_reconnect(struct work_struct
*work
)
1215 struct sbp2_logical_unit
*lu
=
1216 container_of(work
, struct sbp2_logical_unit
, work
.work
);
1217 struct sbp2_target
*tgt
= lu
->tgt
;
1218 struct fw_device
*device
= fw_device(tgt
->unit
->device
.parent
);
1219 int generation
, node_id
, local_node_id
;
1221 if (fw_device_is_shutdown(device
))
1224 generation
= device
->generation
;
1225 smp_rmb(); /* node_id must not be older than generation */
1226 node_id
= device
->node_id
;
1227 local_node_id
= device
->card
->node_id
;
1229 if (sbp2_send_management_orb(lu
, node_id
, generation
,
1230 SBP2_RECONNECT_REQUEST
,
1231 lu
->login_id
, NULL
) < 0) {
1233 * If reconnect was impossible even though we are in the
1234 * current generation, fall back and try to log in again.
1236 * We could check for "Function rejected" status, but
1237 * looking at the bus generation as simpler and more general.
1239 smp_rmb(); /* get current card generation */
1240 if (generation
== device
->card
->generation
||
1241 lu
->retries
++ >= 5) {
1242 fw_error("%s: failed to reconnect\n", tgt
->bus_id
);
1244 PREPARE_DELAYED_WORK(&lu
->work
, sbp2_login
);
1246 sbp2_queue_work(lu
, DIV_ROUND_UP(HZ
, 5));
1250 tgt
->node_id
= node_id
;
1251 tgt
->address_high
= local_node_id
<< 16;
1252 sbp2_set_generation(lu
, generation
);
1254 fw_notify("%s: reconnected to LUN %04x (%d retries)\n",
1255 tgt
->bus_id
, lu
->lun
, lu
->retries
);
1257 sbp2_agent_reset(lu
);
1258 sbp2_cancel_orbs(lu
);
1259 sbp2_conditionally_unblock(lu
);
1261 sbp2_target_put(tgt
);
1264 static void sbp2_update(struct fw_unit
*unit
)
1266 struct sbp2_target
*tgt
= unit
->device
.driver_data
;
1267 struct sbp2_logical_unit
*lu
;
1269 fw_device_enable_phys_dma(fw_device(unit
->device
.parent
));
1272 * Fw-core serializes sbp2_update() against sbp2_remove().
1273 * Iteration over tgt->lu_list is therefore safe here.
1275 list_for_each_entry(lu
, &tgt
->lu_list
, link
) {
1276 sbp2_conditionally_block(lu
);
1278 sbp2_queue_work(lu
, 0);
1282 #define SBP2_UNIT_SPEC_ID_ENTRY 0x0000609e
1283 #define SBP2_SW_VERSION_ENTRY 0x00010483
1285 static const struct fw_device_id sbp2_id_table
[] = {
1287 .match_flags
= FW_MATCH_SPECIFIER_ID
| FW_MATCH_VERSION
,
1288 .specifier_id
= SBP2_UNIT_SPEC_ID_ENTRY
,
1289 .version
= SBP2_SW_VERSION_ENTRY
,
1294 static struct fw_driver sbp2_driver
= {
1296 .owner
= THIS_MODULE
,
1297 .name
= sbp2_driver_name
,
1298 .bus
= &fw_bus_type
,
1299 .probe
= sbp2_probe
,
1300 .remove
= sbp2_remove
,
1302 .update
= sbp2_update
,
1303 .id_table
= sbp2_id_table
,
1306 static void sbp2_unmap_scatterlist(struct device
*card_device
,
1307 struct sbp2_command_orb
*orb
)
1309 if (scsi_sg_count(orb
->cmd
))
1310 dma_unmap_sg(card_device
, scsi_sglist(orb
->cmd
),
1311 scsi_sg_count(orb
->cmd
),
1312 orb
->cmd
->sc_data_direction
);
1314 if (orb
->request
.misc
& cpu_to_be32(COMMAND_ORB_PAGE_TABLE_PRESENT
))
1315 dma_unmap_single(card_device
, orb
->page_table_bus
,
1316 sizeof(orb
->page_table
), DMA_TO_DEVICE
);
1320 sbp2_status_to_sense_data(u8
*sbp2_status
, u8
*sense_data
)
1324 sense_data
[0] = 0x70;
1325 sense_data
[1] = 0x0;
1326 sense_data
[2] = sbp2_status
[1];
1327 sense_data
[3] = sbp2_status
[4];
1328 sense_data
[4] = sbp2_status
[5];
1329 sense_data
[5] = sbp2_status
[6];
1330 sense_data
[6] = sbp2_status
[7];
1332 sense_data
[8] = sbp2_status
[8];
1333 sense_data
[9] = sbp2_status
[9];
1334 sense_data
[10] = sbp2_status
[10];
1335 sense_data
[11] = sbp2_status
[11];
1336 sense_data
[12] = sbp2_status
[2];
1337 sense_data
[13] = sbp2_status
[3];
1338 sense_data
[14] = sbp2_status
[12];
1339 sense_data
[15] = sbp2_status
[13];
1341 sam_status
= sbp2_status
[0] & 0x3f;
1343 switch (sam_status
) {
1345 case SAM_STAT_CHECK_CONDITION
:
1346 case SAM_STAT_CONDITION_MET
:
1348 case SAM_STAT_RESERVATION_CONFLICT
:
1349 case SAM_STAT_COMMAND_TERMINATED
:
1350 return DID_OK
<< 16 | sam_status
;
1353 return DID_ERROR
<< 16;
1358 complete_command_orb(struct sbp2_orb
*base_orb
, struct sbp2_status
*status
)
1360 struct sbp2_command_orb
*orb
=
1361 container_of(base_orb
, struct sbp2_command_orb
, base
);
1362 struct fw_device
*device
= fw_device(orb
->lu
->tgt
->unit
->device
.parent
);
1365 if (status
!= NULL
) {
1366 if (STATUS_GET_DEAD(*status
))
1367 sbp2_agent_reset_no_wait(orb
->lu
);
1369 switch (STATUS_GET_RESPONSE(*status
)) {
1370 case SBP2_STATUS_REQUEST_COMPLETE
:
1371 result
= DID_OK
<< 16;
1373 case SBP2_STATUS_TRANSPORT_FAILURE
:
1374 result
= DID_BUS_BUSY
<< 16;
1376 case SBP2_STATUS_ILLEGAL_REQUEST
:
1377 case SBP2_STATUS_VENDOR_DEPENDENT
:
1379 result
= DID_ERROR
<< 16;
1383 if (result
== DID_OK
<< 16 && STATUS_GET_LEN(*status
) > 1)
1384 result
= sbp2_status_to_sense_data(STATUS_GET_DATA(*status
),
1385 orb
->cmd
->sense_buffer
);
1388 * If the orb completes with status == NULL, something
1389 * went wrong, typically a bus reset happened mid-orb
1390 * or when sending the write (less likely).
1392 result
= DID_BUS_BUSY
<< 16;
1393 sbp2_conditionally_block(orb
->lu
);
1396 dma_unmap_single(device
->card
->device
, orb
->base
.request_bus
,
1397 sizeof(orb
->request
), DMA_TO_DEVICE
);
1398 sbp2_unmap_scatterlist(device
->card
->device
, orb
);
1400 orb
->cmd
->result
= result
;
1401 orb
->done(orb
->cmd
);
1405 sbp2_map_scatterlist(struct sbp2_command_orb
*orb
, struct fw_device
*device
,
1406 struct sbp2_logical_unit
*lu
)
1408 struct scatterlist
*sg
;
1409 int sg_len
, l
, i
, j
, count
;
1412 sg
= scsi_sglist(orb
->cmd
);
1413 count
= dma_map_sg(device
->card
->device
, sg
, scsi_sg_count(orb
->cmd
),
1414 orb
->cmd
->sc_data_direction
);
1419 * Handle the special case where there is only one element in
1420 * the scatter list by converting it to an immediate block
1421 * request. This is also a workaround for broken devices such
1422 * as the second generation iPod which doesn't support page
1425 if (count
== 1 && sg_dma_len(sg
) < SBP2_MAX_SG_ELEMENT_LENGTH
) {
1426 orb
->request
.data_descriptor
.high
=
1427 cpu_to_be32(lu
->tgt
->address_high
);
1428 orb
->request
.data_descriptor
.low
=
1429 cpu_to_be32(sg_dma_address(sg
));
1430 orb
->request
.misc
|=
1431 cpu_to_be32(COMMAND_ORB_DATA_SIZE(sg_dma_len(sg
)));
1436 * Convert the scatterlist to an sbp2 page table. If any
1437 * scatterlist entries are too big for sbp2, we split them as we
1438 * go. Even if we ask the block I/O layer to not give us sg
1439 * elements larger than 65535 bytes, some IOMMUs may merge sg elements
1440 * during DMA mapping, and Linux currently doesn't prevent this.
1442 for (i
= 0, j
= 0; i
< count
; i
++, sg
= sg_next(sg
)) {
1443 sg_len
= sg_dma_len(sg
);
1444 sg_addr
= sg_dma_address(sg
);
1446 /* FIXME: This won't get us out of the pinch. */
1447 if (unlikely(j
>= ARRAY_SIZE(orb
->page_table
))) {
1448 fw_error("page table overflow\n");
1449 goto fail_page_table
;
1451 l
= min(sg_len
, SBP2_MAX_SG_ELEMENT_LENGTH
);
1452 orb
->page_table
[j
].low
= cpu_to_be32(sg_addr
);
1453 orb
->page_table
[j
].high
= cpu_to_be32(l
<< 16);
1460 orb
->page_table_bus
=
1461 dma_map_single(device
->card
->device
, orb
->page_table
,
1462 sizeof(orb
->page_table
), DMA_TO_DEVICE
);
1463 if (dma_mapping_error(device
->card
->device
, orb
->page_table_bus
))
1464 goto fail_page_table
;
1467 * The data_descriptor pointer is the one case where we need
1468 * to fill in the node ID part of the address. All other
1469 * pointers assume that the data referenced reside on the
1470 * initiator (i.e. us), but data_descriptor can refer to data
1471 * on other nodes so we need to put our ID in descriptor.high.
1473 orb
->request
.data_descriptor
.high
= cpu_to_be32(lu
->tgt
->address_high
);
1474 orb
->request
.data_descriptor
.low
= cpu_to_be32(orb
->page_table_bus
);
1475 orb
->request
.misc
|= cpu_to_be32(COMMAND_ORB_PAGE_TABLE_PRESENT
|
1476 COMMAND_ORB_DATA_SIZE(j
));
1481 dma_unmap_sg(device
->card
->device
, sg
, scsi_sg_count(orb
->cmd
),
1482 orb
->cmd
->sc_data_direction
);
1487 /* SCSI stack integration */
1489 static int sbp2_scsi_queuecommand(struct scsi_cmnd
*cmd
, scsi_done_fn_t done
)
1491 struct sbp2_logical_unit
*lu
= cmd
->device
->hostdata
;
1492 struct fw_device
*device
= fw_device(lu
->tgt
->unit
->device
.parent
);
1493 struct sbp2_command_orb
*orb
;
1494 unsigned int max_payload
;
1495 int retval
= SCSI_MLQUEUE_HOST_BUSY
;
1498 * Bidirectional commands are not yet implemented, and unknown
1499 * transfer direction not handled.
1501 if (cmd
->sc_data_direction
== DMA_BIDIRECTIONAL
) {
1502 fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
1503 cmd
->result
= DID_ERROR
<< 16;
1508 orb
= kzalloc(sizeof(*orb
), GFP_ATOMIC
);
1510 fw_notify("failed to alloc orb\n");
1511 return SCSI_MLQUEUE_HOST_BUSY
;
1514 /* Initialize rcode to something not RCODE_COMPLETE. */
1515 orb
->base
.rcode
= -1;
1516 kref_init(&orb
->base
.kref
);
1522 orb
->request
.next
.high
= cpu_to_be32(SBP2_ORB_NULL
);
1524 * At speed 100 we can do 512 bytes per packet, at speed 200,
1525 * 1024 bytes per packet etc. The SBP-2 max_payload field
1526 * specifies the max payload size as 2 ^ (max_payload + 2), so
1527 * if we set this to max_speed + 7, we get the right value.
1529 max_payload
= min(device
->max_speed
+ 7,
1530 device
->card
->max_receive
- 1);
1531 orb
->request
.misc
= cpu_to_be32(
1532 COMMAND_ORB_MAX_PAYLOAD(max_payload
) |
1533 COMMAND_ORB_SPEED(device
->max_speed
) |
1534 COMMAND_ORB_NOTIFY
);
1536 if (cmd
->sc_data_direction
== DMA_FROM_DEVICE
)
1537 orb
->request
.misc
|= cpu_to_be32(COMMAND_ORB_DIRECTION
);
1539 if (scsi_sg_count(cmd
) && sbp2_map_scatterlist(orb
, device
, lu
) < 0)
1542 memcpy(orb
->request
.command_block
, cmd
->cmnd
, cmd
->cmd_len
);
1544 orb
->base
.callback
= complete_command_orb
;
1545 orb
->base
.request_bus
=
1546 dma_map_single(device
->card
->device
, &orb
->request
,
1547 sizeof(orb
->request
), DMA_TO_DEVICE
);
1548 if (dma_mapping_error(device
->card
->device
, orb
->base
.request_bus
)) {
1549 sbp2_unmap_scatterlist(device
->card
->device
, orb
);
1553 sbp2_send_orb(&orb
->base
, lu
, lu
->tgt
->node_id
, lu
->generation
,
1554 lu
->command_block_agent_address
+ SBP2_ORB_POINTER
);
1557 kref_put(&orb
->base
.kref
, free_orb
);
1561 static int sbp2_scsi_slave_alloc(struct scsi_device
*sdev
)
1563 struct sbp2_logical_unit
*lu
= sdev
->hostdata
;
1565 /* (Re-)Adding logical units via the SCSI stack is not supported. */
1569 sdev
->allow_restart
= 1;
1571 /* SBP-2 requires quadlet alignment of the data buffers. */
1572 blk_queue_update_dma_alignment(sdev
->request_queue
, 4 - 1);
1574 if (lu
->tgt
->workarounds
& SBP2_WORKAROUND_INQUIRY_36
)
1575 sdev
->inquiry_len
= 36;
1580 static int sbp2_scsi_slave_configure(struct scsi_device
*sdev
)
1582 struct sbp2_logical_unit
*lu
= sdev
->hostdata
;
1584 sdev
->use_10_for_rw
= 1;
1586 if (sbp2_param_exclusive_login
)
1587 sdev
->manage_start_stop
= 1;
1589 if (sdev
->type
== TYPE_ROM
)
1590 sdev
->use_10_for_ms
= 1;
1592 if (sdev
->type
== TYPE_DISK
&&
1593 lu
->tgt
->workarounds
& SBP2_WORKAROUND_MODE_SENSE_8
)
1594 sdev
->skip_ms_page_8
= 1;
1596 if (lu
->tgt
->workarounds
& SBP2_WORKAROUND_FIX_CAPACITY
)
1597 sdev
->fix_capacity
= 1;
1599 if (lu
->tgt
->workarounds
& SBP2_WORKAROUND_POWER_CONDITION
)
1600 sdev
->start_stop_pwr_cond
= 1;
1602 if (lu
->tgt
->workarounds
& SBP2_WORKAROUND_128K_MAX_TRANS
)
1603 blk_queue_max_sectors(sdev
->request_queue
, 128 * 1024 / 512);
1609 * Called by scsi stack when something has really gone wrong. Usually
1610 * called when a command has timed-out for some reason.
1612 static int sbp2_scsi_abort(struct scsi_cmnd
*cmd
)
1614 struct sbp2_logical_unit
*lu
= cmd
->device
->hostdata
;
1616 fw_notify("%s: sbp2_scsi_abort\n", lu
->tgt
->bus_id
);
1617 sbp2_agent_reset(lu
);
1618 sbp2_cancel_orbs(lu
);
1624 * Format of /sys/bus/scsi/devices/.../ieee1394_id:
1625 * u64 EUI-64 : u24 directory_ID : u16 LUN (all printed in hexadecimal)
1627 * This is the concatenation of target port identifier and logical unit
1628 * identifier as per SAM-2...SAM-4 annex A.
1631 sbp2_sysfs_ieee1394_id_show(struct device
*dev
, struct device_attribute
*attr
,
1634 struct scsi_device
*sdev
= to_scsi_device(dev
);
1635 struct sbp2_logical_unit
*lu
;
1640 lu
= sdev
->hostdata
;
1642 return sprintf(buf
, "%016llx:%06x:%04x\n",
1643 (unsigned long long)lu
->tgt
->guid
,
1644 lu
->tgt
->directory_id
, lu
->lun
);
1647 static DEVICE_ATTR(ieee1394_id
, S_IRUGO
, sbp2_sysfs_ieee1394_id_show
, NULL
);
1649 static struct device_attribute
*sbp2_scsi_sysfs_attrs
[] = {
1650 &dev_attr_ieee1394_id
,
1654 static struct scsi_host_template scsi_driver_template
= {
1655 .module
= THIS_MODULE
,
1656 .name
= "SBP-2 IEEE-1394",
1657 .proc_name
= sbp2_driver_name
,
1658 .queuecommand
= sbp2_scsi_queuecommand
,
1659 .slave_alloc
= sbp2_scsi_slave_alloc
,
1660 .slave_configure
= sbp2_scsi_slave_configure
,
1661 .eh_abort_handler
= sbp2_scsi_abort
,
1663 .sg_tablesize
= SG_ALL
,
1664 .use_clustering
= ENABLE_CLUSTERING
,
1667 .sdev_attrs
= sbp2_scsi_sysfs_attrs
,
1670 MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
1671 MODULE_DESCRIPTION("SCSI over IEEE1394");
1672 MODULE_LICENSE("GPL");
1673 MODULE_DEVICE_TABLE(ieee1394
, sbp2_id_table
);
1675 /* Provide a module alias so root-on-sbp2 initrds don't break. */
1676 #ifndef CONFIG_IEEE1394_SBP2_MODULE
1677 MODULE_ALIAS("sbp2");
1680 static int __init
sbp2_init(void)
1682 sbp2_wq
= create_singlethread_workqueue(KBUILD_MODNAME
);
1686 return driver_register(&sbp2_driver
.driver
);
1689 static void __exit
sbp2_cleanup(void)
1691 driver_unregister(&sbp2_driver
.driver
);
1692 destroy_workqueue(sbp2_wq
);
1695 module_init(sbp2_init
);
1696 module_exit(sbp2_cleanup
);