blob: 8963dd484eb9d3db65cab0f6910f494cd9445064 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sbp2.c - SBP-2 protocol driver for IEEE-1394
3 *
4 * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com)
5 * jamesg@filanet.com (JSG)
6 *
7 * Copyright (C) 2003 Ben Collins <bcollins@debian.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24/*
25 * Brief Description:
26 *
27 * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394
28 * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level
29 * driver. It also registers as a SCSI lower-level driver in order to accept
30 * SCSI commands for transport using SBP-2.
31 *
32 * You may access any attached SBP-2 storage devices as if they were SCSI
33 * devices (e.g. mount /dev/sda1, fdisk, mkfs, etc.).
34 *
35 * Current Issues:
36 *
37 * - Error Handling: SCSI aborts and bus reset requests are handled somewhat
38 * but the code needs additional debugging.
39 */
40
41#include <linux/config.h>
42#include <linux/kernel.h>
43#include <linux/list.h>
44#include <linux/string.h>
45#include <linux/slab.h>
46#include <linux/interrupt.h>
47#include <linux/fs.h>
48#include <linux/poll.h>
49#include <linux/module.h>
50#include <linux/moduleparam.h>
51#include <linux/types.h>
52#include <linux/delay.h>
53#include <linux/sched.h>
54#include <linux/blkdev.h>
55#include <linux/smp_lock.h>
56#include <linux/init.h>
57#include <linux/pci.h>
58
59#include <asm/current.h>
60#include <asm/uaccess.h>
61#include <asm/io.h>
62#include <asm/byteorder.h>
63#include <asm/atomic.h>
64#include <asm/system.h>
65#include <asm/scatterlist.h>
66
67#include <scsi/scsi.h>
68#include <scsi/scsi_cmnd.h>
69#include <scsi/scsi_dbg.h>
70#include <scsi/scsi_device.h>
71#include <scsi/scsi_host.h>
72
73#include "csr1212.h"
74#include "ieee1394.h"
75#include "ieee1394_types.h"
76#include "ieee1394_core.h"
77#include "nodemgr.h"
78#include "hosts.h"
79#include "highlevel.h"
80#include "ieee1394_transactions.h"
81#include "sbp2.h"
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * Module load parameter definitions
85 */
86
87/*
88 * Change max_speed on module load if you have a bad IEEE-1394
89 * controller that has trouble running 2KB packets at 400mb.
90 *
91 * NOTE: On certain OHCI parts I have seen short packets on async transmit
92 * (probably due to PCI latency/throughput issues with the part). You can
93 * bump down the speed if you are running into problems.
94 */
95static int max_speed = IEEE1394_SPEED_MAX;
96module_param(max_speed, int, 0644);
Jody McIntyre2bab3592005-09-30 11:59:07 -070097MODULE_PARM_DESC(max_speed, "Force max speed (3 = 800mb, 2 = 400mb, 1 = 200mb, 0 = 100mb)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * Set serialize_io to 1 if you'd like only one scsi command sent
101 * down to us at a time (debugging). This might be necessary for very
102 * badly behaved sbp2 devices.
Jody McIntyre2bab3592005-09-30 11:59:07 -0700103 *
104 * TODO: Make this configurable per device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
Jody McIntyre2bab3592005-09-30 11:59:07 -0700106static int serialize_io = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107module_param(serialize_io, int, 0444);
Jody McIntyre2bab3592005-09-30 11:59:07 -0700108MODULE_PARM_DESC(serialize_io, "Serialize I/O coming from scsi drivers (default = 1, faster = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/*
111 * Bump up max_sectors if you'd like to support very large sized
112 * transfers. Please note that some older sbp2 bridge chips are broken for
113 * transfers greater or equal to 128KB. Default is a value of 255
114 * sectors, or just under 128KB (at 512 byte sector size). I can note that
115 * the Oxsemi sbp2 chipsets have no problems supporting very large
116 * transfer sizes.
117 */
118static int max_sectors = SBP2_MAX_SECTORS;
119module_param(max_sectors, int, 0444);
120MODULE_PARM_DESC(max_sectors, "Change max sectors per I/O supported (default = 255)");
121
122/*
123 * Exclusive login to sbp2 device? In most cases, the sbp2 driver should
124 * do an exclusive login, as it's generally unsafe to have two hosts
125 * talking to a single sbp2 device at the same time (filesystem coherency,
126 * etc.). If you're running an sbp2 device that supports multiple logins,
127 * and you're either running read-only filesystems or some sort of special
128 * filesystem supporting multiple hosts (one such filesystem is OpenGFS,
129 * see opengfs.sourceforge.net for more info), then set exclusive_login
130 * to zero. Note: The Oxsemi OXFW911 sbp2 chipset supports up to four
131 * concurrent logins.
132 */
133static int exclusive_login = 1;
134module_param(exclusive_login, int, 0644);
135MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device (default = 1)");
136
137/*
138 * SCSI inquiry hack for really badly behaved sbp2 devices. Turn this on
139 * if your sbp2 device is not properly handling the SCSI inquiry command.
140 * This hack makes the inquiry look more like a typical MS Windows
141 * inquiry.
142 *
143 * If force_inquiry_hack=1 is required for your device to work,
144 * please submit the logged sbp2_firmware_revision value of this device to
145 * the linux1394-devel mailing list.
146 */
Ben Collins1934b8b2005-07-09 20:01:23 -0400147static int force_inquiry_hack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148module_param(force_inquiry_hack, int, 0444);
149MODULE_PARM_DESC(force_inquiry_hack, "Force SCSI inquiry hack (default = 0)");
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
152 * Export information about protocols/devices supported by this driver.
153 */
154static struct ieee1394_device_id sbp2_id_table[] = {
155 {
Stefan Richtera237f352005-11-07 06:31:39 -0500156 .match_flags = IEEE1394_MATCH_SPECIFIER_ID | IEEE1394_MATCH_VERSION,
157 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
158 .version = SBP2_SW_VERSION_ENTRY & 0xffffff},
159 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
162MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
163
164/*
165 * Debug levels, configured via kernel config, or enable here.
166 */
167
Olaf Hering44456d32005-07-27 11:45:17 -0700168#define CONFIG_IEEE1394_SBP2_DEBUG 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/* #define CONFIG_IEEE1394_SBP2_DEBUG_ORBS */
170/* #define CONFIG_IEEE1394_SBP2_DEBUG_DMA */
171/* #define CONFIG_IEEE1394_SBP2_DEBUG 1 */
172/* #define CONFIG_IEEE1394_SBP2_DEBUG 2 */
173/* #define CONFIG_IEEE1394_SBP2_PACKET_DUMP */
174
175#ifdef CONFIG_IEEE1394_SBP2_DEBUG_ORBS
176#define SBP2_ORB_DEBUG(fmt, args...) HPSB_ERR("sbp2(%s): "fmt, __FUNCTION__, ## args)
177static u32 global_outstanding_command_orbs = 0;
178#define outstanding_orb_incr global_outstanding_command_orbs++
179#define outstanding_orb_decr global_outstanding_command_orbs--
180#else
181#define SBP2_ORB_DEBUG(fmt, args...)
182#define outstanding_orb_incr
183#define outstanding_orb_decr
184#endif
185
186#ifdef CONFIG_IEEE1394_SBP2_DEBUG_DMA
187#define SBP2_DMA_ALLOC(fmt, args...) \
188 HPSB_ERR("sbp2(%s)alloc(%d): "fmt, __FUNCTION__, \
189 ++global_outstanding_dmas, ## args)
190#define SBP2_DMA_FREE(fmt, args...) \
191 HPSB_ERR("sbp2(%s)free(%d): "fmt, __FUNCTION__, \
192 --global_outstanding_dmas, ## args)
193static u32 global_outstanding_dmas = 0;
194#else
195#define SBP2_DMA_ALLOC(fmt, args...)
196#define SBP2_DMA_FREE(fmt, args...)
197#endif
198
199#if CONFIG_IEEE1394_SBP2_DEBUG >= 2
200#define SBP2_DEBUG(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
201#define SBP2_INFO(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
202#define SBP2_NOTICE(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
203#define SBP2_WARN(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
204#elif CONFIG_IEEE1394_SBP2_DEBUG == 1
205#define SBP2_DEBUG(fmt, args...) HPSB_DEBUG("sbp2: "fmt, ## args)
206#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
207#define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
208#define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
209#else
210#define SBP2_DEBUG(fmt, args...)
211#define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
212#define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
213#define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
214#endif
215
216#define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
219 * Globals
220 */
221
222static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
223 u32 status);
224
225static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
226 u32 scsi_status, struct scsi_cmnd *SCpnt,
227 void (*done)(struct scsi_cmnd *));
228
229static struct scsi_host_template scsi_driver_template;
230
231static const u8 sbp2_speedto_max_payload[] = { 0x7, 0x8, 0x9, 0xA, 0xB, 0xC };
232
233static void sbp2_host_reset(struct hpsb_host *host);
234
235static int sbp2_probe(struct device *dev);
236static int sbp2_remove(struct device *dev);
237static int sbp2_update(struct unit_directory *ud);
238
239static struct hpsb_highlevel sbp2_highlevel = {
240 .name = SBP2_DEVICE_NAME,
241 .host_reset = sbp2_host_reset,
242};
243
244static struct hpsb_address_ops sbp2_ops = {
245 .write = sbp2_handle_status_write
246};
247
248#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
249static struct hpsb_address_ops sbp2_physdma_ops = {
Stefan Richtera237f352005-11-07 06:31:39 -0500250 .read = sbp2_handle_physdma_read,
251 .write = sbp2_handle_physdma_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253#endif
254
255static struct hpsb_protocol_driver sbp2_driver = {
256 .name = "SBP2 Driver",
257 .id_table = sbp2_id_table,
258 .update = sbp2_update,
259 .driver = {
260 .name = SBP2_DEVICE_NAME,
261 .bus = &ieee1394_bus_type,
262 .probe = sbp2_probe,
263 .remove = sbp2_remove,
264 },
265};
266
267
268/* List of device firmware's that require a forced 36 byte inquiry. */
269static u32 sbp2_broken_inquiry_list[] = {
270 0x00002800, /* Stefan Richter <richtest@bauwesen.tu-cottbus.de> */
271 /* DViCO Momobay CX-1 */
272 0x00000200 /* Andreas Plesch <plesch@fas.harvard.edu> */
273 /* QPS Fire DVDBurner */
274};
275
276#define NUM_BROKEN_INQUIRY_DEVS \
277 (sizeof(sbp2_broken_inquiry_list)/sizeof(*sbp2_broken_inquiry_list))
278
279/**************************************
280 * General utility functions
281 **************************************/
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283#ifndef __BIG_ENDIAN
284/*
285 * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
286 */
287static __inline__ void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
288{
289 u32 *temp = buffer;
290
291 for (length = (length >> 2); length--; )
292 temp[length] = be32_to_cpu(temp[length]);
293
294 return;
295}
296
297/*
298 * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
299 */
300static __inline__ void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
301{
302 u32 *temp = buffer;
303
304 for (length = (length >> 2); length--; )
305 temp[length] = cpu_to_be32(temp[length]);
306
307 return;
308}
309#else /* BIG_ENDIAN */
310/* Why waste the cpu cycles? */
311#define sbp2util_be32_to_cpu_buffer(x,y)
312#define sbp2util_cpu_to_be32_buffer(x,y)
313#endif
314
315#ifdef CONFIG_IEEE1394_SBP2_PACKET_DUMP
316/*
317 * Debug packet dump routine. Length is in bytes.
318 */
Stefan Richtera237f352005-11-07 06:31:39 -0500319static void sbp2util_packet_dump(void *buffer, int length, char *dump_name,
320 u32 dump_phys_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 int i;
323 unsigned char *dump = buffer;
324
325 if (!dump || !length || !dump_name)
326 return;
327
328 if (dump_phys_addr)
329 printk("[%s, 0x%x]", dump_name, dump_phys_addr);
330 else
331 printk("[%s]", dump_name);
332 for (i = 0; i < length; i++) {
333 if (i > 0x3f) {
334 printk("\n ...");
335 break;
336 }
337 if ((i & 0x3) == 0)
338 printk(" ");
339 if ((i & 0xf) == 0)
340 printk("\n ");
Stefan Richtera237f352005-11-07 06:31:39 -0500341 printk("%02x ", (int)dump[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 printk("\n");
344
345 return;
346}
347#else
348#define sbp2util_packet_dump(w,x,y,z)
349#endif
350
351/*
352 * Goofy routine that basically does a down_timeout function.
353 */
354static int sbp2util_down_timeout(atomic_t *done, int timeout)
355{
356 int i;
357
358 for (i = timeout; (i > 0 && atomic_read(done) == 0); i-= HZ/10) {
359 if (msleep_interruptible(100)) /* 100ms */
Stefan Richtera237f352005-11-07 06:31:39 -0500360 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
Stefan Richtera237f352005-11-07 06:31:39 -0500362 return (i > 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365/* Free's an allocated packet */
366static void sbp2_free_packet(struct hpsb_packet *packet)
367{
368 hpsb_free_tlabel(packet);
369 hpsb_free_packet(packet);
370}
371
372/* This is much like hpsb_node_write(), except it ignores the response
373 * subaction and returns immediately. Can be used from interrupts.
374 */
375static int sbp2util_node_write_no_wait(struct node_entry *ne, u64 addr,
Stefan Richtera237f352005-11-07 06:31:39 -0500376 quadlet_t *buffer, size_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct hpsb_packet *packet;
379
380 packet = hpsb_make_writepacket(ne->host, ne->nodeid,
381 addr, buffer, length);
Stefan Richtera237f352005-11-07 06:31:39 -0500382 if (!packet)
383 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Stefan Richtera237f352005-11-07 06:31:39 -0500385 hpsb_set_packet_complete_task(packet,
386 (void (*)(void *))sbp2_free_packet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 packet);
388
389 hpsb_node_fill_packet(ne, packet);
390
Stefan Richtera237f352005-11-07 06:31:39 -0500391 if (hpsb_send_packet(packet) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 sbp2_free_packet(packet);
393 return -EIO;
394 }
395
396 return 0;
397}
398
399/*
400 * This function is called to create a pool of command orbs used for
401 * command processing. It is called when a new sbp2 device is detected.
402 */
403static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id)
404{
405 struct sbp2scsi_host_info *hi = scsi_id->hi;
406 int i;
407 unsigned long flags, orbs;
408 struct sbp2_command_info *command;
409
410 orbs = serialize_io ? 2 : SBP2_MAX_CMDS;
411
412 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
413 for (i = 0; i < orbs; i++) {
Stefan Richter85511582005-11-07 06:31:45 -0500414 command = kzalloc(sizeof(*command), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (!command) {
Stefan Richtera237f352005-11-07 06:31:39 -0500416 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock,
417 flags);
418 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 command->command_orb_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500421 pci_map_single(hi->host->pdev, &command->command_orb,
422 sizeof(struct sbp2_command_orb),
423 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 SBP2_DMA_ALLOC("single command orb DMA");
425 command->sge_dma =
Stefan Richtera237f352005-11-07 06:31:39 -0500426 pci_map_single(hi->host->pdev,
427 &command->scatter_gather_element,
428 sizeof(command->scatter_gather_element),
429 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 SBP2_DMA_ALLOC("scatter_gather_element");
431 INIT_LIST_HEAD(&command->list);
432 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
433 }
434 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
435 return 0;
436}
437
438/*
439 * This function is called to delete a pool of command orbs.
440 */
441static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id)
442{
443 struct hpsb_host *host = scsi_id->hi->host;
444 struct list_head *lh, *next;
445 struct sbp2_command_info *command;
446 unsigned long flags;
447
448 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
449 if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
450 list_for_each_safe(lh, next, &scsi_id->sbp2_command_orb_completed) {
451 command = list_entry(lh, struct sbp2_command_info, list);
452
453 /* Release our generic DMA's */
454 pci_unmap_single(host->pdev, command->command_orb_dma,
455 sizeof(struct sbp2_command_orb),
456 PCI_DMA_BIDIRECTIONAL);
457 SBP2_DMA_FREE("single command orb DMA");
458 pci_unmap_single(host->pdev, command->sge_dma,
459 sizeof(command->scatter_gather_element),
460 PCI_DMA_BIDIRECTIONAL);
461 SBP2_DMA_FREE("scatter_gather_element");
462
463 kfree(command);
464 }
465 }
466 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
467 return;
468}
469
470/*
471 * This function finds the sbp2_command for a given outstanding command
472 * orb.Only looks at the inuse list.
473 */
474static struct sbp2_command_info *sbp2util_find_command_for_orb(
475 struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
476{
477 struct sbp2_command_info *command;
478 unsigned long flags;
479
480 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
481 if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
482 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
483 if (command->command_orb_dma == orb) {
484 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500485 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 }
488 }
489 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
490
491 SBP2_ORB_DEBUG("could not match command orb %x", (unsigned int)orb);
492
Stefan Richtera237f352005-11-07 06:31:39 -0500493 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496/*
497 * This function finds the sbp2_command for a given outstanding SCpnt.
498 * Only looks at the inuse list.
499 */
500static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(struct scsi_id_instance_data *scsi_id, void *SCpnt)
501{
502 struct sbp2_command_info *command;
503 unsigned long flags;
504
505 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
506 if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
507 list_for_each_entry(command, &scsi_id->sbp2_command_orb_inuse, list) {
508 if (command->Current_SCpnt == SCpnt) {
509 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500510 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 }
513 }
514 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500515 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518/*
519 * This function allocates a command orb used to send a scsi command.
520 */
521static struct sbp2_command_info *sbp2util_allocate_command_orb(
522 struct scsi_id_instance_data *scsi_id,
523 struct scsi_cmnd *Current_SCpnt,
524 void (*Current_done)(struct scsi_cmnd *))
525{
526 struct list_head *lh;
527 struct sbp2_command_info *command = NULL;
528 unsigned long flags;
529
530 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
531 if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
532 lh = scsi_id->sbp2_command_orb_completed.next;
533 list_del(lh);
534 command = list_entry(lh, struct sbp2_command_info, list);
535 command->Current_done = Current_done;
536 command->Current_SCpnt = Current_SCpnt;
537 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_inuse);
538 } else {
539 SBP2_ERR("sbp2util_allocate_command_orb - No orbs available!");
540 }
541 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Stefan Richtera237f352005-11-07 06:31:39 -0500542 return command;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545/* Free our DMA's */
546static void sbp2util_free_command_dma(struct sbp2_command_info *command)
547{
548 struct scsi_id_instance_data *scsi_id =
549 (struct scsi_id_instance_data *)command->Current_SCpnt->device->host->hostdata[0];
550 struct hpsb_host *host;
551
552 if (!scsi_id) {
553 printk(KERN_ERR "%s: scsi_id == NULL\n", __FUNCTION__);
554 return;
555 }
556
557 host = scsi_id->ud->ne->host;
558
559 if (command->cmd_dma) {
560 if (command->dma_type == CMD_DMA_SINGLE) {
561 pci_unmap_single(host->pdev, command->cmd_dma,
562 command->dma_size, command->dma_dir);
563 SBP2_DMA_FREE("single bulk");
564 } else if (command->dma_type == CMD_DMA_PAGE) {
565 pci_unmap_page(host->pdev, command->cmd_dma,
566 command->dma_size, command->dma_dir);
567 SBP2_DMA_FREE("single page");
568 } /* XXX: Check for CMD_DMA_NONE bug */
569 command->dma_type = CMD_DMA_NONE;
570 command->cmd_dma = 0;
571 }
572
573 if (command->sge_buffer) {
574 pci_unmap_sg(host->pdev, command->sge_buffer,
575 command->dma_size, command->dma_dir);
576 SBP2_DMA_FREE("scatter list");
577 command->sge_buffer = NULL;
578 }
579}
580
581/*
582 * This function moves a command to the completed orb list.
583 */
Stefan Richtera237f352005-11-07 06:31:39 -0500584static void sbp2util_mark_command_completed(struct scsi_id_instance_data *scsi_id,
585 struct sbp2_command_info *command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 unsigned long flags;
588
589 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
590 list_del(&command->list);
591 sbp2util_free_command_dma(command);
592 list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
593 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
594}
595
Jody McIntyreabd559b2005-09-30 11:59:06 -0700596/*
597 * Is scsi_id valid? Is the 1394 node still present?
598 */
599static inline int sbp2util_node_is_available(struct scsi_id_instance_data *scsi_id)
600{
601 return scsi_id && scsi_id->ne && !scsi_id->ne->in_limbo;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/*********************************************
605 * IEEE-1394 core driver stack related section
606 *********************************************/
607static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud);
608
609static int sbp2_probe(struct device *dev)
610{
611 struct unit_directory *ud;
612 struct scsi_id_instance_data *scsi_id;
613
614 SBP2_DEBUG("sbp2_probe");
615
616 ud = container_of(dev, struct unit_directory, device);
617
618 /* Don't probe UD's that have the LUN flag. We'll probe the LUN(s)
619 * instead. */
620 if (ud->flags & UNIT_DIRECTORY_HAS_LUN_DIRECTORY)
621 return -ENODEV;
622
Stefan Richtera237f352005-11-07 06:31:39 -0500623 scsi_id = sbp2_alloc_device(ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Stefan Richtera237f352005-11-07 06:31:39 -0500625 if (!scsi_id)
626 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Stefan Richtera237f352005-11-07 06:31:39 -0500628 sbp2_parse_unit_directory(scsi_id, ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Stefan Richtera237f352005-11-07 06:31:39 -0500630 return sbp2_start_device(scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633static int sbp2_remove(struct device *dev)
634{
635 struct unit_directory *ud;
636 struct scsi_id_instance_data *scsi_id;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700637 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 SBP2_DEBUG("sbp2_remove");
640
641 ud = container_of(dev, struct unit_directory, device);
642 scsi_id = ud->device.driver_data;
Jody McIntyreabd559b2005-09-30 11:59:06 -0700643 if (!scsi_id)
644 return 0;
645
Stefan Richterbf637ec2006-01-31 00:13:06 -0500646 if (scsi_id->scsi_host) {
647 /* Get rid of enqueued commands if there is no chance to
648 * send them. */
649 if (!sbp2util_node_is_available(scsi_id))
650 sbp2scsi_complete_all_commands(scsi_id, DID_NO_CONNECT);
651 /* scsi_remove_device() will trigger shutdown functions of SCSI
652 * highlevel drivers which would deadlock if blocked. */
Jody McIntyreabd559b2005-09-30 11:59:06 -0700653 scsi_unblock_requests(scsi_id->scsi_host);
Stefan Richterbf637ec2006-01-31 00:13:06 -0500654 }
Jody McIntyreabd559b2005-09-30 11:59:06 -0700655 sdev = scsi_id->sdev;
656 if (sdev) {
657 scsi_id->sdev = NULL;
658 scsi_remove_device(sdev);
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 sbp2_logout_device(scsi_id);
662 sbp2_remove_device(scsi_id);
663
664 return 0;
665}
666
667static int sbp2_update(struct unit_directory *ud)
668{
669 struct scsi_id_instance_data *scsi_id = ud->device.driver_data;
670
671 SBP2_DEBUG("sbp2_update");
672
673 if (sbp2_reconnect_device(scsi_id)) {
674
675 /*
676 * Ok, reconnect has failed. Perhaps we didn't
677 * reconnect fast enough. Try doing a regular login, but
678 * first do a logout just in case of any weirdness.
679 */
680 sbp2_logout_device(scsi_id);
681
682 if (sbp2_login_device(scsi_id)) {
683 /* Login failed too, just fail, and the backend
684 * will call our sbp2_remove for us */
685 SBP2_ERR("Failed to reconnect to sbp2 device!");
686 return -EBUSY;
687 }
688 }
689
690 /* Set max retries to something large on the device. */
691 sbp2_set_busy_timeout(scsi_id);
692
693 /* Do a SBP-2 fetch agent reset. */
694 sbp2_agent_reset(scsi_id, 1);
695
696 /* Get the max speed and packet size that we can use. */
697 sbp2_max_speed_and_size(scsi_id);
698
699 /* Complete any pending commands with busy (so they get
700 * retried) and remove them from our queue
701 */
702 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
703
704 /* Make sure we unblock requests (since this is likely after a bus
705 * reset). */
706 scsi_unblock_requests(scsi_id->scsi_host);
707
708 return 0;
709}
710
711/* This functions is called by the sbp2_probe, for each new device. We now
712 * allocate one scsi host for each scsi_id (unit directory). */
713static struct scsi_id_instance_data *sbp2_alloc_device(struct unit_directory *ud)
714{
715 struct sbp2scsi_host_info *hi;
716 struct Scsi_Host *scsi_host = NULL;
717 struct scsi_id_instance_data *scsi_id = NULL;
718
719 SBP2_DEBUG("sbp2_alloc_device");
720
Stefan Richter85511582005-11-07 06:31:45 -0500721 scsi_id = kzalloc(sizeof(*scsi_id), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!scsi_id) {
723 SBP2_ERR("failed to create scsi_id");
724 goto failed_alloc;
725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 scsi_id->ne = ud->ne;
728 scsi_id->ud = ud;
729 scsi_id->speed_code = IEEE1394_SPEED_100;
730 scsi_id->max_payload_size = sbp2_speedto_max_payload[IEEE1394_SPEED_100];
731 atomic_set(&scsi_id->sbp2_login_complete, 0);
732 INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_inuse);
733 INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_completed);
734 INIT_LIST_HEAD(&scsi_id->scsi_list);
735 spin_lock_init(&scsi_id->sbp2_command_orb_lock);
Ben Collinse309fc62005-11-07 06:31:34 -0500736 scsi_id->sbp2_lun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 ud->device.driver_data = scsi_id;
739
740 hi = hpsb_get_hostinfo(&sbp2_highlevel, ud->ne->host);
741 if (!hi) {
742 hi = hpsb_create_hostinfo(&sbp2_highlevel, ud->ne->host, sizeof(*hi));
743 if (!hi) {
744 SBP2_ERR("failed to allocate hostinfo");
745 goto failed_alloc;
746 }
747 SBP2_DEBUG("sbp2_alloc_device: allocated hostinfo");
748 hi->host = ud->ne->host;
749 INIT_LIST_HEAD(&hi->scsi_ids);
750
751 /* Register our sbp2 status address space... */
752 hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host, &sbp2_ops,
753 SBP2_STATUS_FIFO_ADDRESS,
754 SBP2_STATUS_FIFO_ADDRESS +
755 SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(SBP2_MAX_UDS_PER_NODE+1));
756#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
757 /* Handle data movement if physical dma is not
758 * enabled/supportedon host controller */
759 hpsb_register_addrspace(&sbp2_highlevel, ud->ne->host, &sbp2_physdma_ops,
760 0x0ULL, 0xfffffffcULL);
761#endif
762 }
763
764 scsi_id->hi = hi;
765
766 list_add_tail(&scsi_id->scsi_list, &hi->scsi_ids);
767
768 /* Register our host with the SCSI stack. */
Alexandre Olivaa2ef79e2005-06-15 22:26:31 -0700769 scsi_host = scsi_host_alloc(&scsi_driver_template,
Stefan Richtera237f352005-11-07 06:31:39 -0500770 sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!scsi_host) {
772 SBP2_ERR("failed to register scsi host");
773 goto failed_alloc;
774 }
775
776 scsi_host->hostdata[0] = (unsigned long)scsi_id;
777
778 if (!scsi_add_host(scsi_host, &ud->device)) {
779 scsi_id->scsi_host = scsi_host;
780 return scsi_id;
781 }
782
783 SBP2_ERR("failed to add scsi host");
784 scsi_host_put(scsi_host);
785
786failed_alloc:
787 sbp2_remove_device(scsi_id);
788 return NULL;
789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791static void sbp2_host_reset(struct hpsb_host *host)
792{
793 struct sbp2scsi_host_info *hi;
794 struct scsi_id_instance_data *scsi_id;
795
796 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
797
798 if (hi) {
799 list_for_each_entry(scsi_id, &hi->scsi_ids, scsi_list)
800 scsi_block_requests(scsi_id->scsi_host);
801 }
802}
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804/*
805 * This function is where we first pull the node unique ids, and then
806 * allocate memory and register a SBP-2 device.
807 */
808static int sbp2_start_device(struct scsi_id_instance_data *scsi_id)
809{
810 struct sbp2scsi_host_info *hi = scsi_id->hi;
James Bottomley146f7262005-09-10 12:44:09 -0500811 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 SBP2_DEBUG("sbp2_start_device");
814
815 /* Login FIFO DMA */
816 scsi_id->login_response =
Stefan Richtera237f352005-11-07 06:31:39 -0500817 pci_alloc_consistent(hi->host->pdev,
818 sizeof(struct sbp2_login_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 &scsi_id->login_response_dma);
820 if (!scsi_id->login_response)
821 goto alloc_fail;
822 SBP2_DMA_ALLOC("consistent DMA region for login FIFO");
823
824 /* Query logins ORB DMA */
825 scsi_id->query_logins_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500826 pci_alloc_consistent(hi->host->pdev,
827 sizeof(struct sbp2_query_logins_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 &scsi_id->query_logins_orb_dma);
829 if (!scsi_id->query_logins_orb)
830 goto alloc_fail;
831 SBP2_DMA_ALLOC("consistent DMA region for query logins ORB");
832
833 /* Query logins response DMA */
834 scsi_id->query_logins_response =
Stefan Richtera237f352005-11-07 06:31:39 -0500835 pci_alloc_consistent(hi->host->pdev,
836 sizeof(struct sbp2_query_logins_response),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 &scsi_id->query_logins_response_dma);
838 if (!scsi_id->query_logins_response)
839 goto alloc_fail;
840 SBP2_DMA_ALLOC("consistent DMA region for query logins response");
841
842 /* Reconnect ORB DMA */
843 scsi_id->reconnect_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500844 pci_alloc_consistent(hi->host->pdev,
845 sizeof(struct sbp2_reconnect_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 &scsi_id->reconnect_orb_dma);
847 if (!scsi_id->reconnect_orb)
848 goto alloc_fail;
849 SBP2_DMA_ALLOC("consistent DMA region for reconnect ORB");
850
851 /* Logout ORB DMA */
852 scsi_id->logout_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500853 pci_alloc_consistent(hi->host->pdev,
854 sizeof(struct sbp2_logout_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 &scsi_id->logout_orb_dma);
856 if (!scsi_id->logout_orb)
857 goto alloc_fail;
858 SBP2_DMA_ALLOC("consistent DMA region for logout ORB");
859
860 /* Login ORB DMA */
861 scsi_id->login_orb =
Stefan Richtera237f352005-11-07 06:31:39 -0500862 pci_alloc_consistent(hi->host->pdev,
863 sizeof(struct sbp2_login_orb),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 &scsi_id->login_orb_dma);
Stefan Richtereaceec72005-12-13 11:05:05 -0500865 if (!scsi_id->login_orb)
866 goto alloc_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 SBP2_DMA_ALLOC("consistent DMA region for login ORB");
868
869 SBP2_DEBUG("New SBP-2 device inserted, SCSI ID = %x", scsi_id->ud->id);
870
871 /*
872 * Create our command orb pool
873 */
874 if (sbp2util_create_command_orb_pool(scsi_id)) {
875 SBP2_ERR("sbp2util_create_command_orb_pool failed!");
876 sbp2_remove_device(scsi_id);
877 return -ENOMEM;
878 }
879
880 /* Schedule a timeout here. The reason is that we may be so close
881 * to a bus reset, that the device is not available for logins.
882 * This can happen when the bus reset is caused by the host
883 * connected to the sbp2 device being removed. That host would
884 * have a certain amount of time to relogin before the sbp2 device
885 * allows someone else to login instead. One second makes sense. */
886 msleep_interruptible(1000);
887 if (signal_pending(current)) {
888 SBP2_WARN("aborting sbp2_start_device due to event");
889 sbp2_remove_device(scsi_id);
890 return -EINTR;
891 }
Stefan Richtera237f352005-11-07 06:31:39 -0500892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 /*
894 * Login to the sbp-2 device
895 */
896 if (sbp2_login_device(scsi_id)) {
897 /* Login failed, just remove the device. */
898 sbp2_remove_device(scsi_id);
899 return -EBUSY;
900 }
901
902 /*
903 * Set max retries to something large on the device
904 */
905 sbp2_set_busy_timeout(scsi_id);
906
907 /*
908 * Do a SBP-2 fetch agent reset
909 */
910 sbp2_agent_reset(scsi_id, 1);
911
912 /*
913 * Get the max speed and packet size that we can use
914 */
915 sbp2_max_speed_and_size(scsi_id);
916
917 /* Add this device to the scsi layer now */
James Bottomley146f7262005-09-10 12:44:09 -0500918 error = scsi_add_device(scsi_id->scsi_host, 0, scsi_id->ud->id, 0);
919 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 SBP2_ERR("scsi_add_device failed");
Stefan Richterdc3edd52005-12-12 23:03:30 -0500921 sbp2_logout_device(scsi_id);
922 sbp2_remove_device(scsi_id);
James Bottomley146f7262005-09-10 12:44:09 -0500923 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
926 return 0;
Stefan Richtereaceec72005-12-13 11:05:05 -0500927
928alloc_fail:
929 SBP2_ERR("Could not allocate memory for scsi_id");
930 sbp2_remove_device(scsi_id);
931 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934/*
935 * This function removes an sbp2 device from the sbp2scsi_host_info struct.
936 */
937static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id)
938{
939 struct sbp2scsi_host_info *hi;
940
941 SBP2_DEBUG("sbp2_remove_device");
942
943 if (!scsi_id)
944 return;
945
946 hi = scsi_id->hi;
947
948 /* This will remove our scsi device aswell */
949 if (scsi_id->scsi_host) {
950 scsi_remove_host(scsi_id->scsi_host);
951 scsi_host_put(scsi_id->scsi_host);
952 }
953
954 sbp2util_remove_command_orb_pool(scsi_id);
955
956 list_del(&scsi_id->scsi_list);
957
958 if (scsi_id->login_response) {
959 pci_free_consistent(hi->host->pdev,
960 sizeof(struct sbp2_login_response),
961 scsi_id->login_response,
962 scsi_id->login_response_dma);
963 SBP2_DMA_FREE("single login FIFO");
964 }
965
966 if (scsi_id->login_orb) {
967 pci_free_consistent(hi->host->pdev,
968 sizeof(struct sbp2_login_orb),
969 scsi_id->login_orb,
970 scsi_id->login_orb_dma);
971 SBP2_DMA_FREE("single login ORB");
972 }
973
974 if (scsi_id->reconnect_orb) {
975 pci_free_consistent(hi->host->pdev,
976 sizeof(struct sbp2_reconnect_orb),
977 scsi_id->reconnect_orb,
978 scsi_id->reconnect_orb_dma);
979 SBP2_DMA_FREE("single reconnect orb");
980 }
981
982 if (scsi_id->logout_orb) {
983 pci_free_consistent(hi->host->pdev,
984 sizeof(struct sbp2_logout_orb),
985 scsi_id->logout_orb,
986 scsi_id->logout_orb_dma);
987 SBP2_DMA_FREE("single logout orb");
988 }
989
990 if (scsi_id->query_logins_orb) {
991 pci_free_consistent(hi->host->pdev,
992 sizeof(struct sbp2_query_logins_orb),
993 scsi_id->query_logins_orb,
994 scsi_id->query_logins_orb_dma);
995 SBP2_DMA_FREE("single query logins orb");
996 }
997
998 if (scsi_id->query_logins_response) {
999 pci_free_consistent(hi->host->pdev,
1000 sizeof(struct sbp2_query_logins_response),
1001 scsi_id->query_logins_response,
1002 scsi_id->query_logins_response_dma);
1003 SBP2_DMA_FREE("single query logins data");
1004 }
1005
1006 scsi_id->ud->device.driver_data = NULL;
1007
1008 SBP2_DEBUG("SBP-2 device removed, SCSI ID = %d", scsi_id->ud->id);
1009
1010 kfree(scsi_id);
1011}
1012
1013#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMA
1014/*
1015 * This function deals with physical dma write requests (for adapters that do not support
1016 * physical dma in hardware). Mostly just here for debugging...
1017 */
Stefan Richtera237f352005-11-07 06:31:39 -05001018static int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid,
1019 int destid, quadlet_t *data, u64 addr,
1020 size_t length, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022
Stefan Richtera237f352005-11-07 06:31:39 -05001023 /*
1024 * Manually put the data in the right place.
1025 */
1026 memcpy(bus_to_virt((u32) addr), data, length);
1027 sbp2util_packet_dump(data, length, "sbp2 phys dma write by device",
1028 (u32) addr);
1029 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032/*
1033 * This function deals with physical dma read requests (for adapters that do not support
1034 * physical dma in hardware). Mostly just here for debugging...
1035 */
Stefan Richtera237f352005-11-07 06:31:39 -05001036static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid,
1037 quadlet_t *data, u64 addr, size_t length,
1038 u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
1040
Stefan Richtera237f352005-11-07 06:31:39 -05001041 /*
1042 * Grab data from memory and send a read response.
1043 */
1044 memcpy(data, bus_to_virt((u32) addr), length);
1045 sbp2util_packet_dump(data, length, "sbp2 phys dma read by device",
1046 (u32) addr);
1047 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049#endif
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051/**************************************
1052 * SBP-2 protocol related section
1053 **************************************/
1054
1055/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 * This function queries the device for the maximum concurrent logins it
1057 * supports.
1058 */
1059static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
1060{
1061 struct sbp2scsi_host_info *hi = scsi_id->hi;
1062 quadlet_t data[2];
1063 int max_logins;
1064 int active_logins;
1065
1066 SBP2_DEBUG("sbp2_query_logins");
1067
1068 scsi_id->query_logins_orb->reserved1 = 0x0;
1069 scsi_id->query_logins_orb->reserved2 = 0x0;
1070
1071 scsi_id->query_logins_orb->query_response_lo = scsi_id->query_logins_response_dma;
1072 scsi_id->query_logins_orb->query_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1073 SBP2_DEBUG("sbp2_query_logins: query_response_hi/lo initialized");
1074
1075 scsi_id->query_logins_orb->lun_misc = ORB_SET_FUNCTION(SBP2_QUERY_LOGINS_REQUEST);
1076 scsi_id->query_logins_orb->lun_misc |= ORB_SET_NOTIFY(1);
Ben Collinse309fc62005-11-07 06:31:34 -05001077 scsi_id->query_logins_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 SBP2_DEBUG("sbp2_query_logins: lun_misc initialized");
1079
1080 scsi_id->query_logins_orb->reserved_resp_length =
1081 ORB_SET_QUERY_LOGINS_RESP_LENGTH(sizeof(struct sbp2_query_logins_response));
1082 SBP2_DEBUG("sbp2_query_logins: reserved_resp_length initialized");
1083
1084 scsi_id->query_logins_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
1085 SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
1086 scsi_id->query_logins_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
1087 SBP2_STATUS_FIFO_ADDRESS_HI);
1088 SBP2_DEBUG("sbp2_query_logins: status FIFO initialized");
1089
1090 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb));
1091
1092 SBP2_DEBUG("sbp2_query_logins: orb byte-swapped");
1093
1094 sbp2util_packet_dump(scsi_id->query_logins_orb, sizeof(struct sbp2_query_logins_orb),
1095 "sbp2 query logins orb", scsi_id->query_logins_orb_dma);
1096
1097 memset(scsi_id->query_logins_response, 0, sizeof(struct sbp2_query_logins_response));
1098 memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
1099
1100 SBP2_DEBUG("sbp2_query_logins: query_logins_response/status FIFO memset");
1101
1102 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1103 data[1] = scsi_id->query_logins_orb_dma;
1104 sbp2util_cpu_to_be32_buffer(data, 8);
1105
1106 atomic_set(&scsi_id->sbp2_login_complete, 0);
1107
1108 SBP2_DEBUG("sbp2_query_logins: prepared to write");
1109 hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
1110 SBP2_DEBUG("sbp2_query_logins: written");
1111
1112 if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, 2*HZ)) {
1113 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001114 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
1117 if (scsi_id->status_block.ORB_offset_lo != scsi_id->query_logins_orb_dma) {
1118 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001119 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121
1122 if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
1123 STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
1124 STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
1125
1126 SBP2_INFO("Error querying logins to SBP-2 device - timed out");
Stefan Richtera237f352005-11-07 06:31:39 -05001127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129
1130 sbp2util_cpu_to_be32_buffer(scsi_id->query_logins_response, sizeof(struct sbp2_query_logins_response));
1131
1132 SBP2_DEBUG("length_max_logins = %x",
1133 (unsigned int)scsi_id->query_logins_response->length_max_logins);
1134
1135 SBP2_DEBUG("Query logins to SBP-2 device successful");
1136
1137 max_logins = RESPONSE_GET_MAX_LOGINS(scsi_id->query_logins_response->length_max_logins);
1138 SBP2_DEBUG("Maximum concurrent logins supported: %d", max_logins);
1139
1140 active_logins = RESPONSE_GET_ACTIVE_LOGINS(scsi_id->query_logins_response->length_max_logins);
1141 SBP2_DEBUG("Number of active logins: %d", active_logins);
1142
1143 if (active_logins >= max_logins) {
Stefan Richtera237f352005-11-07 06:31:39 -05001144 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146
1147 return 0;
1148}
1149
1150/*
1151 * This function is called in order to login to a particular SBP-2 device,
1152 * after a bus reset.
1153 */
1154static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
1155{
1156 struct sbp2scsi_host_info *hi = scsi_id->hi;
1157 quadlet_t data[2];
1158
1159 SBP2_DEBUG("sbp2_login_device");
1160
1161 if (!scsi_id->login_orb) {
1162 SBP2_DEBUG("sbp2_login_device: login_orb not alloc'd!");
Stefan Richtera237f352005-11-07 06:31:39 -05001163 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
1166 if (!exclusive_login) {
1167 if (sbp2_query_logins(scsi_id)) {
1168 SBP2_INFO("Device does not support any more concurrent logins");
Stefan Richtera237f352005-11-07 06:31:39 -05001169 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
1171 }
1172
1173 /* Set-up login ORB, assume no password */
1174 scsi_id->login_orb->password_hi = 0;
1175 scsi_id->login_orb->password_lo = 0;
1176 SBP2_DEBUG("sbp2_login_device: password_hi/lo initialized");
1177
1178 scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
1179 scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
1180 SBP2_DEBUG("sbp2_login_device: login_response_hi/lo initialized");
1181
1182 scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(SBP2_LOGIN_REQUEST);
1183 scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0); /* One second reconnect time */
1184 scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(exclusive_login); /* Exclusive access to device */
1185 scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1); /* Notify us of login complete */
Ben Collinse309fc62005-11-07 06:31:34 -05001186 scsi_id->login_orb->lun_misc |= ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 SBP2_DEBUG("sbp2_login_device: lun_misc initialized");
1188
1189 scsi_id->login_orb->passwd_resp_lengths =
1190 ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
1191 SBP2_DEBUG("sbp2_login_device: passwd_resp_lengths initialized");
1192
1193 scsi_id->login_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
1194 SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
1195 scsi_id->login_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
1196 SBP2_STATUS_FIFO_ADDRESS_HI);
1197 SBP2_DEBUG("sbp2_login_device: status FIFO initialized");
1198
1199 /*
1200 * Byte swap ORB if necessary
1201 */
1202 sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
1203
1204 SBP2_DEBUG("sbp2_login_device: orb byte-swapped");
1205
1206 sbp2util_packet_dump(scsi_id->login_orb, sizeof(struct sbp2_login_orb),
1207 "sbp2 login orb", scsi_id->login_orb_dma);
1208
1209 /*
1210 * Initialize login response and status fifo
1211 */
1212 memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
1213 memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
1214
1215 SBP2_DEBUG("sbp2_login_device: login_response/status FIFO memset");
1216
1217 /*
1218 * Ok, let's write to the target's management agent register
1219 */
1220 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1221 data[1] = scsi_id->login_orb_dma;
1222 sbp2util_cpu_to_be32_buffer(data, 8);
1223
1224 atomic_set(&scsi_id->sbp2_login_complete, 0);
1225
1226 SBP2_DEBUG("sbp2_login_device: prepared to write to %08x",
1227 (unsigned int)scsi_id->sbp2_management_agent_addr);
1228 hpsb_node_write(scsi_id->ne, scsi_id->sbp2_management_agent_addr, data, 8);
1229 SBP2_DEBUG("sbp2_login_device: written");
1230
1231 /*
1232 * Wait for login status (up to 20 seconds)...
1233 */
1234 if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, 20*HZ)) {
1235 SBP2_ERR("Error logging into SBP-2 device - login timed-out");
Stefan Richtera237f352005-11-07 06:31:39 -05001236 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238
1239 /*
1240 * Sanity. Make sure status returned matches login orb.
1241 */
1242 if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
1243 SBP2_ERR("Error logging into SBP-2 device - login timed-out");
Stefan Richtera237f352005-11-07 06:31:39 -05001244 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246
1247 /*
1248 * Check status
1249 */
1250 if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
1251 STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
1252 STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
1253
1254 SBP2_ERR("Error logging into SBP-2 device - login failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001255 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257
1258 /*
1259 * Byte swap the login response, for use when reconnecting or
1260 * logging out.
1261 */
1262 sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
1263
1264 /*
1265 * Grab our command block agent address from the login response.
1266 */
1267 SBP2_DEBUG("command_block_agent_hi = %x",
1268 (unsigned int)scsi_id->login_response->command_block_agent_hi);
1269 SBP2_DEBUG("command_block_agent_lo = %x",
1270 (unsigned int)scsi_id->login_response->command_block_agent_lo);
1271
1272 scsi_id->sbp2_command_block_agent_addr =
1273 ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
1274 scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
1275 scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
1276
1277 SBP2_INFO("Logged into SBP-2 device");
1278
Stefan Richtera237f352005-11-07 06:31:39 -05001279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281}
1282
1283/*
1284 * This function is called in order to logout from a particular SBP-2
1285 * device, usually called during driver unload.
1286 */
1287static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
1288{
1289 struct sbp2scsi_host_info *hi = scsi_id->hi;
1290 quadlet_t data[2];
1291 int error;
1292
1293 SBP2_DEBUG("sbp2_logout_device");
1294
1295 /*
1296 * Set-up logout ORB
1297 */
1298 scsi_id->logout_orb->reserved1 = 0x0;
1299 scsi_id->logout_orb->reserved2 = 0x0;
1300 scsi_id->logout_orb->reserved3 = 0x0;
1301 scsi_id->logout_orb->reserved4 = 0x0;
1302
1303 scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_LOGOUT_REQUEST);
1304 scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1305
1306 /* Notify us when complete */
1307 scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1308
1309 scsi_id->logout_orb->reserved5 = 0x0;
1310 scsi_id->logout_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
1311 SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
1312 scsi_id->logout_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
1313 SBP2_STATUS_FIFO_ADDRESS_HI);
1314
1315 /*
1316 * Byte swap ORB if necessary
1317 */
1318 sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
1319
1320 sbp2util_packet_dump(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb),
1321 "sbp2 logout orb", scsi_id->logout_orb_dma);
1322
1323 /*
1324 * Ok, let's write to the target's management agent register
1325 */
1326 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1327 data[1] = scsi_id->logout_orb_dma;
1328 sbp2util_cpu_to_be32_buffer(data, 8);
1329
1330 atomic_set(&scsi_id->sbp2_login_complete, 0);
1331
1332 error = hpsb_node_write(scsi_id->ne,
Stefan Richtera237f352005-11-07 06:31:39 -05001333 scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (error)
1335 return error;
1336
1337 /* Wait for device to logout...1 second. */
1338 if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, HZ))
1339 return -EIO;
1340
1341 SBP2_INFO("Logged out of SBP-2 device");
1342
Stefan Richtera237f352005-11-07 06:31:39 -05001343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345}
1346
1347/*
1348 * This function is called in order to reconnect to a particular SBP-2
1349 * device, after a bus reset.
1350 */
1351static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
1352{
1353 struct sbp2scsi_host_info *hi = scsi_id->hi;
1354 quadlet_t data[2];
1355 int error;
1356
1357 SBP2_DEBUG("sbp2_reconnect_device");
1358
1359 /*
1360 * Set-up reconnect ORB
1361 */
1362 scsi_id->reconnect_orb->reserved1 = 0x0;
1363 scsi_id->reconnect_orb->reserved2 = 0x0;
1364 scsi_id->reconnect_orb->reserved3 = 0x0;
1365 scsi_id->reconnect_orb->reserved4 = 0x0;
1366
1367 scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(SBP2_RECONNECT_REQUEST);
1368 scsi_id->reconnect_orb->login_ID_misc |=
1369 ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
1370
1371 /* Notify us when complete */
1372 scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
1373
1374 scsi_id->reconnect_orb->reserved5 = 0x0;
1375 scsi_id->reconnect_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO +
1376 SBP2_STATUS_FIFO_ENTRY_TO_OFFSET(scsi_id->ud->id);
1377 scsi_id->reconnect_orb->status_FIFO_hi =
1378 (ORB_SET_NODE_ID(hi->host->node_id) | SBP2_STATUS_FIFO_ADDRESS_HI);
1379
1380 /*
1381 * Byte swap ORB if necessary
1382 */
1383 sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
1384
1385 sbp2util_packet_dump(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb),
1386 "sbp2 reconnect orb", scsi_id->reconnect_orb_dma);
1387
1388 /*
1389 * Initialize status fifo
1390 */
1391 memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
1392
1393 /*
1394 * Ok, let's write to the target's management agent register
1395 */
1396 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1397 data[1] = scsi_id->reconnect_orb_dma;
1398 sbp2util_cpu_to_be32_buffer(data, 8);
1399
1400 atomic_set(&scsi_id->sbp2_login_complete, 0);
1401
1402 error = hpsb_node_write(scsi_id->ne,
Stefan Richtera237f352005-11-07 06:31:39 -05001403 scsi_id->sbp2_management_agent_addr, data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (error)
1405 return error;
1406
1407 /*
1408 * Wait for reconnect status (up to 1 second)...
1409 */
1410 if (sbp2util_down_timeout(&scsi_id->sbp2_login_complete, HZ)) {
1411 SBP2_ERR("Error reconnecting to SBP-2 device - reconnect timed-out");
Stefan Richtera237f352005-11-07 06:31:39 -05001412 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414
1415 /*
1416 * Sanity. Make sure status returned matches reconnect orb.
1417 */
1418 if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
1419 SBP2_ERR("Error reconnecting to SBP-2 device - reconnect timed-out");
Stefan Richtera237f352005-11-07 06:31:39 -05001420 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
1423 /*
1424 * Check status
1425 */
1426 if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
1427 STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
1428 STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
1429
1430 SBP2_ERR("Error reconnecting to SBP-2 device - reconnect failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001431 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433
1434 HPSB_DEBUG("Reconnected to SBP-2 device");
1435
Stefan Richtera237f352005-11-07 06:31:39 -05001436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438}
1439
1440/*
1441 * This function is called in order to set the busy timeout (number of
1442 * retries to attempt) on the sbp2 device.
1443 */
1444static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id)
1445{
1446 quadlet_t data;
1447
1448 SBP2_DEBUG("sbp2_set_busy_timeout");
1449
1450 /*
1451 * Ok, let's write to the target's busy timeout register
1452 */
1453 data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
1454
1455 if (hpsb_node_write(scsi_id->ne, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4)) {
1456 SBP2_ERR("sbp2_set_busy_timeout error");
1457 }
1458
Stefan Richtera237f352005-11-07 06:31:39 -05001459 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462/*
1463 * This function is called to parse sbp2 device's config rom unit
1464 * directory. Used to determine things like sbp2 management agent offset,
1465 * and command set used (SCSI or RBC).
1466 */
1467static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
1468 struct unit_directory *ud)
1469{
1470 struct csr1212_keyval *kv;
1471 struct csr1212_dentry *dentry;
1472 u64 management_agent_addr;
1473 u32 command_set_spec_id, command_set, unit_characteristics,
Stefan Richtera237f352005-11-07 06:31:39 -05001474 firmware_revision, workarounds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 int i;
1476
1477 SBP2_DEBUG("sbp2_parse_unit_directory");
1478
1479 management_agent_addr = 0x0;
1480 command_set_spec_id = 0x0;
1481 command_set = 0x0;
1482 unit_characteristics = 0x0;
1483 firmware_revision = 0x0;
1484
1485 /* Handle different fields in the unit directory, based on keys */
1486 csr1212_for_each_dir_entry(ud->ne->csr, kv, ud->ud_kv, dentry) {
1487 switch (kv->key.id) {
1488 case CSR1212_KV_ID_DEPENDENT_INFO:
1489 if (kv->key.type == CSR1212_KV_TYPE_CSR_OFFSET) {
1490 /* Save off the management agent address */
1491 management_agent_addr =
Stefan Richtera237f352005-11-07 06:31:39 -05001492 CSR1212_REGISTER_SPACE_BASE +
1493 (kv->value.csr_offset << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 SBP2_DEBUG("sbp2_management_agent_addr = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001496 (unsigned int)management_agent_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 } else if (kv->key.type == CSR1212_KV_TYPE_IMMEDIATE) {
Stefan Richtera237f352005-11-07 06:31:39 -05001498 scsi_id->sbp2_lun =
1499 ORB_SET_LUN(kv->value.immediate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501 break;
1502
1503 case SBP2_COMMAND_SET_SPEC_ID_KEY:
1504 /* Command spec organization */
1505 command_set_spec_id = kv->value.immediate;
1506 SBP2_DEBUG("sbp2_command_set_spec_id = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001507 (unsigned int)command_set_spec_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 break;
1509
1510 case SBP2_COMMAND_SET_KEY:
1511 /* Command set used by sbp2 device */
1512 command_set = kv->value.immediate;
1513 SBP2_DEBUG("sbp2_command_set = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001514 (unsigned int)command_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 break;
1516
1517 case SBP2_UNIT_CHARACTERISTICS_KEY:
1518 /*
1519 * Unit characterisitcs (orb related stuff
1520 * that I'm not yet paying attention to)
1521 */
1522 unit_characteristics = kv->value.immediate;
1523 SBP2_DEBUG("sbp2_unit_characteristics = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001524 (unsigned int)unit_characteristics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 break;
1526
1527 case SBP2_FIRMWARE_REVISION_KEY:
1528 /* Firmware revision */
1529 firmware_revision = kv->value.immediate;
1530 if (force_inquiry_hack)
1531 SBP2_INFO("sbp2_firmware_revision = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001532 (unsigned int)firmware_revision);
1533 else
1534 SBP2_DEBUG("sbp2_firmware_revision = %x",
1535 (unsigned int)firmware_revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 break;
1537
1538 default:
1539 break;
1540 }
1541 }
1542
1543 /* This is the start of our broken device checking. We try to hack
1544 * around oddities and known defects. */
1545 workarounds = 0x0;
1546
1547 /* If the vendor id is 0xa0b8 (Symbios vendor id), then we have a
1548 * bridge with 128KB max transfer size limitation. For sanity, we
1549 * only voice this when the current max_sectors setting
1550 * exceeds the 128k limit. By default, that is not the case.
1551 *
1552 * It would be really nice if we could detect this before the scsi
1553 * host gets initialized. That way we can down-force the
1554 * max_sectors to account for it. That is not currently
1555 * possible. */
1556 if ((firmware_revision & 0xffff00) ==
1557 SBP2_128KB_BROKEN_FIRMWARE &&
1558 (max_sectors * 512) > (128*1024)) {
1559 SBP2_WARN("Node " NODE_BUS_FMT ": Bridge only supports 128KB max transfer size.",
1560 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid));
1561 SBP2_WARN("WARNING: Current max_sectors setting is larger than 128KB (%d sectors)!",
1562 max_sectors);
1563 workarounds |= SBP2_BREAKAGE_128K_MAX_TRANSFER;
1564 }
1565
1566 /* Check for a blacklisted set of devices that require us to force
1567 * a 36 byte host inquiry. This can be overriden as a module param
1568 * (to force all hosts). */
1569 for (i = 0; i < NUM_BROKEN_INQUIRY_DEVS; i++) {
1570 if ((firmware_revision & 0xffff00) ==
1571 sbp2_broken_inquiry_list[i]) {
1572 SBP2_WARN("Node " NODE_BUS_FMT ": Using 36byte inquiry workaround",
1573 NODE_BUS_ARGS(ud->ne->host, ud->ne->nodeid));
1574 workarounds |= SBP2_BREAKAGE_INQUIRY_HACK;
1575 break; /* No need to continue. */
1576 }
1577 }
1578
1579 /* If this is a logical unit directory entry, process the parent
1580 * to get the values. */
1581 if (ud->flags & UNIT_DIRECTORY_LUN_DIRECTORY) {
1582 struct unit_directory *parent_ud =
1583 container_of(ud->device.parent, struct unit_directory, device);
1584 sbp2_parse_unit_directory(scsi_id, parent_ud);
1585 } else {
1586 scsi_id->sbp2_management_agent_addr = management_agent_addr;
1587 scsi_id->sbp2_command_set_spec_id = command_set_spec_id;
1588 scsi_id->sbp2_command_set = command_set;
1589 scsi_id->sbp2_unit_characteristics = unit_characteristics;
1590 scsi_id->sbp2_firmware_revision = firmware_revision;
1591 scsi_id->workarounds = workarounds;
1592 if (ud->flags & UNIT_DIRECTORY_HAS_LUN)
Ben Collinse309fc62005-11-07 06:31:34 -05001593 scsi_id->sbp2_lun = ORB_SET_LUN(ud->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595}
1596
1597/*
1598 * This function is called in order to determine the max speed and packet
1599 * size we can use in our ORBs. Note, that we (the driver and host) only
1600 * initiate the transaction. The SBP-2 device actually transfers the data
1601 * (by reading from the DMA area we tell it). This means that the SBP-2
1602 * device decides the actual maximum data it can transfer. We just tell it
1603 * the speed that it needs to use, and the max_rec the host supports, and
1604 * it takes care of the rest.
1605 */
1606static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id)
1607{
1608 struct sbp2scsi_host_info *hi = scsi_id->hi;
1609
1610 SBP2_DEBUG("sbp2_max_speed_and_size");
1611
1612 /* Initial setting comes from the hosts speed map */
Stefan Richtera237f352005-11-07 06:31:39 -05001613 scsi_id->speed_code =
1614 hi->host->speed_map[NODEID_TO_NODE(hi->host->node_id) * 64 +
1615 NODEID_TO_NODE(scsi_id->ne->nodeid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 /* Bump down our speed if the user requested it */
1618 if (scsi_id->speed_code > max_speed) {
1619 scsi_id->speed_code = max_speed;
1620 SBP2_ERR("Forcing SBP-2 max speed down to %s",
1621 hpsb_speedto_str[scsi_id->speed_code]);
1622 }
1623
1624 /* Payload size is the lesser of what our speed supports and what
1625 * our host supports. */
Stefan Richtera237f352005-11-07 06:31:39 -05001626 scsi_id->max_payload_size =
1627 min(sbp2_speedto_max_payload[scsi_id->speed_code],
1628 (u8) (hi->host->csr.max_rec - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 HPSB_DEBUG("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
1631 NODE_BUS_ARGS(hi->host, scsi_id->ne->nodeid),
1632 hpsb_speedto_str[scsi_id->speed_code],
Stefan Richtera237f352005-11-07 06:31:39 -05001633 1 << ((u32) scsi_id->max_payload_size + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Stefan Richtera237f352005-11-07 06:31:39 -05001635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
1638/*
1639 * This function is called in order to perform a SBP-2 agent reset.
1640 */
1641static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait)
1642{
1643 quadlet_t data;
1644 u64 addr;
1645 int retval;
1646
1647 SBP2_DEBUG("sbp2_agent_reset");
1648
1649 /*
1650 * Ok, let's write to the target's management agent register
1651 */
1652 data = ntohl(SBP2_AGENT_RESET_DATA);
1653 addr = scsi_id->sbp2_command_block_agent_addr + SBP2_AGENT_RESET_OFFSET;
1654
1655 if (wait)
1656 retval = hpsb_node_write(scsi_id->ne, addr, &data, 4);
1657 else
1658 retval = sbp2util_node_write_no_wait(scsi_id->ne, addr, &data, 4);
1659
1660 if (retval < 0) {
1661 SBP2_ERR("hpsb_node_write failed.\n");
1662 return -EIO;
1663 }
1664
1665 /*
1666 * Need to make sure orb pointer is written on next command
1667 */
1668 scsi_id->last_orb = NULL;
1669
Stefan Richtera237f352005-11-07 06:31:39 -05001670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001673static void sbp2_prep_command_orb_sg(struct sbp2_command_orb *orb,
1674 struct sbp2scsi_host_info *hi,
1675 struct sbp2_command_info *command,
1676 unsigned int scsi_use_sg,
1677 struct scatterlist *sgpnt,
1678 u32 orb_direction,
1679 enum dma_data_direction dma_dir)
1680{
1681 command->dma_dir = dma_dir;
1682 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1683 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1684
1685 /* Special case if only one element (and less than 64KB in size) */
1686 if ((scsi_use_sg == 1) &&
1687 (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
1688
1689 SBP2_DEBUG("Only one s/g element");
1690 command->dma_size = sgpnt[0].length;
1691 command->dma_type = CMD_DMA_PAGE;
1692 command->cmd_dma = pci_map_page(hi->host->pdev,
1693 sgpnt[0].page,
1694 sgpnt[0].offset,
1695 command->dma_size,
1696 command->dma_dir);
1697 SBP2_DMA_ALLOC("single page scatter element");
1698
1699 orb->data_descriptor_lo = command->cmd_dma;
1700 orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
1701
1702 } else {
1703 struct sbp2_unrestricted_page_table *sg_element =
1704 &command->scatter_gather_element[0];
1705 u32 sg_count, sg_len;
1706 dma_addr_t sg_addr;
1707 int i, count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg,
1708 dma_dir);
1709
1710 SBP2_DMA_ALLOC("scatter list");
1711
1712 command->dma_size = scsi_use_sg;
1713 command->sge_buffer = sgpnt;
1714
1715 /* use page tables (s/g) */
1716 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1717 orb->data_descriptor_lo = command->sge_dma;
1718
1719 /*
1720 * Loop through and fill out our sbp-2 page tables
1721 * (and split up anything too large)
1722 */
1723 for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
1724 sg_len = sg_dma_len(sgpnt);
1725 sg_addr = sg_dma_address(sgpnt);
1726 while (sg_len) {
1727 sg_element[sg_count].segment_base_lo = sg_addr;
1728 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1729 sg_element[sg_count].length_segment_base_hi =
1730 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1731 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1732 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1733 } else {
1734 sg_element[sg_count].length_segment_base_hi =
1735 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1736 sg_len = 0;
1737 }
1738 sg_count++;
1739 }
1740 }
1741
1742 /* Number of page table (s/g) elements */
1743 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1744
1745 sbp2util_packet_dump(sg_element,
1746 (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1747 "sbp2 s/g list", command->sge_dma);
1748
1749 /* Byte swap page tables if necessary */
1750 sbp2util_cpu_to_be32_buffer(sg_element,
1751 (sizeof(struct sbp2_unrestricted_page_table)) *
1752 sg_count);
1753 }
1754}
1755
1756static void sbp2_prep_command_orb_no_sg(struct sbp2_command_orb *orb,
1757 struct sbp2scsi_host_info *hi,
1758 struct sbp2_command_info *command,
1759 struct scatterlist *sgpnt,
1760 u32 orb_direction,
1761 unsigned int scsi_request_bufflen,
1762 void *scsi_request_buffer,
1763 enum dma_data_direction dma_dir)
1764{
1765 command->dma_dir = dma_dir;
1766 command->dma_size = scsi_request_bufflen;
1767 command->dma_type = CMD_DMA_SINGLE;
1768 command->cmd_dma = pci_map_single(hi->host->pdev, scsi_request_buffer,
1769 command->dma_size, command->dma_dir);
1770 orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
1771 orb->misc |= ORB_SET_DIRECTION(orb_direction);
1772
1773 SBP2_DMA_ALLOC("single bulk");
1774
1775 /*
1776 * Handle case where we get a command w/o s/g enabled (but
1777 * check for transfers larger than 64K)
1778 */
1779 if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
1780
1781 orb->data_descriptor_lo = command->cmd_dma;
1782 orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
1783
1784 } else {
1785 struct sbp2_unrestricted_page_table *sg_element =
1786 &command->scatter_gather_element[0];
1787 u32 sg_count, sg_len;
1788 dma_addr_t sg_addr;
1789
1790 /*
1791 * Need to turn this into page tables, since the
1792 * buffer is too large.
1793 */
1794 orb->data_descriptor_lo = command->sge_dma;
1795
1796 /* Use page tables (s/g) */
1797 orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
1798
1799 /*
1800 * fill out our sbp-2 page tables (and split up
1801 * the large buffer)
1802 */
1803 sg_count = 0;
1804 sg_len = scsi_request_bufflen;
1805 sg_addr = command->cmd_dma;
1806 while (sg_len) {
1807 sg_element[sg_count].segment_base_lo = sg_addr;
1808 if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
1809 sg_element[sg_count].length_segment_base_hi =
1810 PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
1811 sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
1812 sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
1813 } else {
1814 sg_element[sg_count].length_segment_base_hi =
1815 PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
1816 sg_len = 0;
1817 }
1818 sg_count++;
1819 }
1820
1821 /* Number of page table (s/g) elements */
1822 orb->misc |= ORB_SET_DATA_SIZE(sg_count);
1823
1824 sbp2util_packet_dump(sg_element,
1825 (sizeof(struct sbp2_unrestricted_page_table)) * sg_count,
1826 "sbp2 s/g list", command->sge_dma);
1827
1828 /* Byte swap page tables if necessary */
1829 sbp2util_cpu_to_be32_buffer(sg_element,
1830 (sizeof(struct sbp2_unrestricted_page_table)) *
1831 sg_count);
1832 }
1833}
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835/*
1836 * This function is called to create the actual command orb and s/g list
1837 * out of the scsi command itself.
1838 */
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001839static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id,
1840 struct sbp2_command_info *command,
1841 unchar *scsi_cmd,
1842 unsigned int scsi_use_sg,
1843 unsigned int scsi_request_bufflen,
1844 void *scsi_request_buffer,
1845 enum dma_data_direction dma_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 struct sbp2scsi_host_info *hi = scsi_id->hi;
Stefan Richtera237f352005-11-07 06:31:39 -05001848 struct scatterlist *sgpnt = (struct scatterlist *)scsi_request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 struct sbp2_command_orb *command_orb = &command->command_orb;
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001850 u32 orb_direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 /*
1853 * Set-up our command ORB..
1854 *
1855 * NOTE: We're doing unrestricted page tables (s/g), as this is
1856 * best performance (at least with the devices I have). This means
1857 * that data_size becomes the number of s/g elements, and
1858 * page_size should be zero (for unrestricted).
1859 */
1860 command_orb->next_ORB_hi = ORB_SET_NULL_PTR(1);
1861 command_orb->next_ORB_lo = 0x0;
1862 command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
1863 command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
Stefan Richtera237f352005-11-07 06:31:39 -05001864 command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Stefan Richter43863eb2005-12-12 23:03:24 -05001866 if (dma_dir == DMA_NONE)
Stefan Richtera237f352005-11-07 06:31:39 -05001867 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Stefan Richter43863eb2005-12-12 23:03:24 -05001868 else if (dma_dir == DMA_TO_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001869 orb_direction = ORB_DIRECTION_WRITE_TO_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001870 else if (dma_dir == DMA_FROM_DEVICE && scsi_request_bufflen)
Stefan Richtera237f352005-11-07 06:31:39 -05001871 orb_direction = ORB_DIRECTION_READ_FROM_MEDIA;
Stefan Richter43863eb2005-12-12 23:03:24 -05001872 else {
1873 SBP2_WARN("Falling back to DMA_NONE");
1874 orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001877 /* Set-up our pagetable stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 if (orb_direction == ORB_DIRECTION_NO_DATA_TRANSFER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 SBP2_DEBUG("No data transfer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 command_orb->data_descriptor_hi = 0x0;
1881 command_orb->data_descriptor_lo = 0x0;
1882 command_orb->misc |= ORB_SET_DIRECTION(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 } else if (scsi_use_sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 SBP2_DEBUG("Use scatter/gather");
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001885 sbp2_prep_command_orb_sg(command_orb, hi, command, scsi_use_sg,
1886 sgpnt, orb_direction, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 SBP2_DEBUG("No scatter/gather");
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001889 sbp2_prep_command_orb_no_sg(command_orb, hi, command, sgpnt,
1890 orb_direction, scsi_request_bufflen,
1891 scsi_request_buffer, dma_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001894 /* Byte swap command ORB if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
1896
Stefan Richtercf8d2c02005-12-13 11:05:03 -05001897 /* Put our scsi command in the command ORB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 memset(command_orb->cdb, 0, 12);
1899 memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
1902/*
1903 * This function is called in order to begin a regular SBP-2 command.
1904 */
1905static int sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id,
1906 struct sbp2_command_info *command)
1907{
1908 struct sbp2scsi_host_info *hi = scsi_id->hi;
1909 struct sbp2_command_orb *command_orb = &command->command_orb;
1910 struct node_entry *ne = scsi_id->ne;
1911 u64 addr;
1912
1913 outstanding_orb_incr;
1914 SBP2_ORB_DEBUG("sending command orb %p, total orbs = %x",
Stefan Richtera237f352005-11-07 06:31:39 -05001915 command_orb, global_outstanding_command_orbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 pci_dma_sync_single_for_device(hi->host->pdev, command->command_orb_dma,
1918 sizeof(struct sbp2_command_orb),
1919 PCI_DMA_BIDIRECTIONAL);
1920 pci_dma_sync_single_for_device(hi->host->pdev, command->sge_dma,
1921 sizeof(command->scatter_gather_element),
1922 PCI_DMA_BIDIRECTIONAL);
1923 /*
1924 * Check to see if there are any previous orbs to use
1925 */
1926 if (scsi_id->last_orb == NULL) {
1927 quadlet_t data[2];
1928
1929 /*
1930 * Ok, let's write to the target's management agent register
1931 */
1932 addr = scsi_id->sbp2_command_block_agent_addr + SBP2_ORB_POINTER_OFFSET;
1933 data[0] = ORB_SET_NODE_ID(hi->host->node_id);
1934 data[1] = command->command_orb_dma;
1935 sbp2util_cpu_to_be32_buffer(data, 8);
1936
1937 SBP2_ORB_DEBUG("write command agent, command orb %p", command_orb);
1938
1939 if (sbp2util_node_write_no_wait(ne, addr, data, 8) < 0) {
1940 SBP2_ERR("sbp2util_node_write_no_wait failed.\n");
1941 return -EIO;
1942 }
1943
1944 SBP2_ORB_DEBUG("write command agent complete");
1945
1946 scsi_id->last_orb = command_orb;
1947 scsi_id->last_orb_dma = command->command_orb_dma;
1948
1949 } else {
1950 quadlet_t data;
1951
1952 /*
1953 * We have an orb already sent (maybe or maybe not
1954 * processed) that we can append this orb to. So do so,
1955 * and ring the doorbell. Have to be very careful
1956 * modifying these next orb pointers, as they are accessed
1957 * both by the sbp2 device and us.
1958 */
1959 scsi_id->last_orb->next_ORB_lo =
Stefan Richtera237f352005-11-07 06:31:39 -05001960 cpu_to_be32(command->command_orb_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 /* Tells hardware that this pointer is valid */
1962 scsi_id->last_orb->next_ORB_hi = 0x0;
Stefan Richtera237f352005-11-07 06:31:39 -05001963 pci_dma_sync_single_for_device(hi->host->pdev,
1964 scsi_id->last_orb_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 sizeof(struct sbp2_command_orb),
1966 PCI_DMA_BIDIRECTIONAL);
1967
1968 /*
1969 * Ring the doorbell
1970 */
1971 data = cpu_to_be32(command->command_orb_dma);
1972 addr = scsi_id->sbp2_command_block_agent_addr + SBP2_DOORBELL_OFFSET;
1973
1974 SBP2_ORB_DEBUG("ring doorbell, command orb %p", command_orb);
1975
1976 if (sbp2util_node_write_no_wait(ne, addr, &data, 4) < 0) {
1977 SBP2_ERR("sbp2util_node_write_no_wait failed");
Stefan Richtera237f352005-11-07 06:31:39 -05001978 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980
1981 scsi_id->last_orb = command_orb;
1982 scsi_id->last_orb_dma = command->command_orb_dma;
1983
1984 }
Stefan Richtera237f352005-11-07 06:31:39 -05001985 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
1988/*
1989 * This function is called in order to begin a regular SBP-2 command.
1990 */
1991static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
1992 struct scsi_cmnd *SCpnt,
1993 void (*done)(struct scsi_cmnd *))
1994{
1995 unchar *cmd = (unchar *) SCpnt->cmnd;
1996 unsigned int request_bufflen = SCpnt->request_bufflen;
1997 struct sbp2_command_info *command;
1998
1999 SBP2_DEBUG("sbp2_send_command");
2000#if (CONFIG_IEEE1394_SBP2_DEBUG >= 2) || defined(CONFIG_IEEE1394_SBP2_PACKET_DUMP)
2001 printk("[scsi command]\n ");
2002 scsi_print_command(SCpnt);
2003#endif
2004 SBP2_DEBUG("SCSI transfer size = %x", request_bufflen);
2005 SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
2006
2007 /*
2008 * Allocate a command orb and s/g structure
2009 */
2010 command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done);
2011 if (!command) {
Stefan Richtera237f352005-11-07 06:31:39 -05002012 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014
2015 /*
2016 * The scsi stack sends down a request_bufflen which does not match the
2017 * length field in the scsi cdb. This causes some sbp2 devices to
2018 * reject this inquiry command. Fix the request_bufflen.
2019 */
2020 if (*cmd == INQUIRY) {
2021 if (force_inquiry_hack || scsi_id->workarounds & SBP2_BREAKAGE_INQUIRY_HACK)
2022 request_bufflen = cmd[4] = 0x24;
2023 else
2024 request_bufflen = cmd[4];
2025 }
2026
2027 /*
2028 * Now actually fill in the comamnd orb and sbp2 s/g list
2029 */
2030 sbp2_create_command_orb(scsi_id, command, cmd, SCpnt->use_sg,
2031 request_bufflen, SCpnt->request_buffer,
2032 SCpnt->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 sbp2util_packet_dump(&command->command_orb, sizeof(struct sbp2_command_orb),
2035 "sbp2 command orb", command->command_orb_dma);
2036
2037 /*
2038 * Initialize status fifo
2039 */
2040 memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
2041
2042 /*
2043 * Link up the orb, and ring the doorbell if needed
2044 */
2045 sbp2_link_orb_command(scsi_id, command);
2046
Stefan Richtera237f352005-11-07 06:31:39 -05002047 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 * Translates SBP-2 status into SCSI sense data for check conditions
2052 */
2053static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
2054{
2055 SBP2_DEBUG("sbp2_status_to_sense_data");
2056
2057 /*
2058 * Ok, it's pretty ugly... ;-)
2059 */
2060 sense_data[0] = 0x70;
2061 sense_data[1] = 0x0;
2062 sense_data[2] = sbp2_status[9];
2063 sense_data[3] = sbp2_status[12];
2064 sense_data[4] = sbp2_status[13];
2065 sense_data[5] = sbp2_status[14];
2066 sense_data[6] = sbp2_status[15];
2067 sense_data[7] = 10;
2068 sense_data[8] = sbp2_status[16];
2069 sense_data[9] = sbp2_status[17];
2070 sense_data[10] = sbp2_status[18];
2071 sense_data[11] = sbp2_status[19];
2072 sense_data[12] = sbp2_status[10];
2073 sense_data[13] = sbp2_status[11];
2074 sense_data[14] = sbp2_status[20];
2075 sense_data[15] = sbp2_status[21];
2076
Stefan Richtera237f352005-11-07 06:31:39 -05002077 return sbp2_status[8] & 0x3f; /* return scsi status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080/*
2081 * This function is called after a command is completed, in order to do any necessary SBP-2
2082 * response data translations for the SCSI stack
2083 */
Stefan Richtera237f352005-11-07 06:31:39 -05002084static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct scsi_cmnd *SCpnt)
2086{
2087 u8 *scsi_buf = SCpnt->request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 SBP2_DEBUG("sbp2_check_sbp2_response");
2090
Al Viroe30809f2006-02-08 14:09:00 -05002091 if (SCpnt->cmnd[0] == INQUIRY && (SCpnt->cmnd[1] & 3) == 0) {
Stefan Richtera237f352005-11-07 06:31:39 -05002092 /*
2093 * Make sure data length is ok. Minimum length is 36 bytes
2094 */
2095 if (scsi_buf[4] == 0) {
2096 scsi_buf[4] = 36 - 5;
2097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Stefan Richtera237f352005-11-07 06:31:39 -05002099 /*
2100 * Fix ansi revision and response data format
2101 */
2102 scsi_buf[2] |= 2;
2103 scsi_buf[3] = (scsi_buf[3] & 0xf0) | 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
2107/*
2108 * This function deals with status writes from the SBP-2 device
2109 */
2110static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid,
2111 quadlet_t *data, u64 addr, size_t length, u16 fl)
2112{
2113 struct sbp2scsi_host_info *hi;
2114 struct scsi_id_instance_data *scsi_id = NULL, *scsi_id_tmp;
2115 u32 id;
2116 struct scsi_cmnd *SCpnt = NULL;
2117 u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
2118 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05002119 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 SBP2_DEBUG("sbp2_handle_status_write");
2122
2123 sbp2util_packet_dump(data, length, "sbp2 status write by device", (u32)addr);
2124
2125 if (!host) {
2126 SBP2_ERR("host is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05002127 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129
2130 hi = hpsb_get_hostinfo(&sbp2_highlevel, host);
2131
2132 if (!hi) {
2133 SBP2_ERR("host info is NULL - this is bad!");
Stefan Richtera237f352005-11-07 06:31:39 -05002134 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136
2137 /*
2138 * Find our scsi_id structure by looking at the status fifo address written to by
2139 * the sbp2 device.
2140 */
2141 id = SBP2_STATUS_FIFO_OFFSET_TO_ENTRY((u32)(addr - SBP2_STATUS_FIFO_ADDRESS));
2142 list_for_each_entry(scsi_id_tmp, &hi->scsi_ids, scsi_list) {
2143 if (scsi_id_tmp->ne->nodeid == nodeid && scsi_id_tmp->ud->id == id) {
2144 scsi_id = scsi_id_tmp;
2145 break;
2146 }
2147 }
2148
2149 if (!scsi_id) {
2150 SBP2_ERR("scsi_id is NULL - device is gone?");
Stefan Richtera237f352005-11-07 06:31:39 -05002151 return RCODE_ADDRESS_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 }
2153
2154 /*
2155 * Put response into scsi_id status fifo...
2156 */
2157 memcpy(&scsi_id->status_block, data, length);
2158
2159 /*
2160 * Byte swap first two quadlets (8 bytes) of status for processing
2161 */
2162 sbp2util_be32_to_cpu_buffer(&scsi_id->status_block, 8);
2163
2164 /*
2165 * Handle command ORB status here if necessary. First, need to match status with command.
2166 */
2167 command = sbp2util_find_command_for_orb(scsi_id, scsi_id->status_block.ORB_offset_lo);
2168 if (command) {
2169
2170 SBP2_DEBUG("Found status for command ORB");
2171 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2172 sizeof(struct sbp2_command_orb),
2173 PCI_DMA_BIDIRECTIONAL);
2174 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2175 sizeof(command->scatter_gather_element),
2176 PCI_DMA_BIDIRECTIONAL);
2177
2178 SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
2179 outstanding_orb_decr;
2180
2181 /*
2182 * Matched status with command, now grab scsi command pointers and check status
2183 */
2184 SCpnt = command->Current_SCpnt;
2185 sbp2util_mark_command_completed(scsi_id, command);
2186
2187 if (SCpnt) {
2188
2189 /*
2190 * See if the target stored any scsi status information
2191 */
2192 if (STATUS_GET_LENGTH(scsi_id->status_block.ORB_offset_hi_misc) > 1) {
2193 /*
2194 * Translate SBP-2 status to SCSI sense data
2195 */
2196 SBP2_DEBUG("CHECK CONDITION");
2197 scsi_status = sbp2_status_to_sense_data((unchar *)&scsi_id->status_block, SCpnt->sense_buffer);
2198 }
2199
2200 /*
2201 * Check to see if the dead bit is set. If so, we'll have to initiate
2202 * a fetch agent reset.
2203 */
2204 if (STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc)) {
2205
2206 /*
2207 * Initiate a fetch agent reset.
2208 */
2209 SBP2_DEBUG("Dead bit set - initiating fetch agent reset");
2210 sbp2_agent_reset(scsi_id, 0);
2211 }
2212
2213 SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
2214 }
2215
2216 /*
2217 * Check here to see if there are no commands in-use. If there are none, we can
2218 * null out last orb so that next time around we write directly to the orb pointer...
2219 * Quick start saves one 1394 bus transaction.
2220 */
Jody McIntyre79456192005-11-07 06:29:39 -05002221 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (list_empty(&scsi_id->sbp2_command_orb_inuse)) {
2223 scsi_id->last_orb = NULL;
2224 }
Jody McIntyre79456192005-11-07 06:29:39 -05002225 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 } else {
2228
2229 /*
2230 * It's probably a login/logout/reconnect status.
2231 */
2232 if ((scsi_id->login_orb_dma == scsi_id->status_block.ORB_offset_lo) ||
2233 (scsi_id->query_logins_orb_dma == scsi_id->status_block.ORB_offset_lo) ||
2234 (scsi_id->reconnect_orb_dma == scsi_id->status_block.ORB_offset_lo) ||
2235 (scsi_id->logout_orb_dma == scsi_id->status_block.ORB_offset_lo)) {
2236 atomic_set(&scsi_id->sbp2_login_complete, 1);
2237 }
2238 }
2239
2240 if (SCpnt) {
2241
2242 /* Complete the SCSI command. */
2243 SBP2_DEBUG("Completing SCSI command");
2244 sbp2scsi_complete_command(scsi_id, scsi_status, SCpnt,
2245 command->Current_done);
2246 SBP2_ORB_DEBUG("command orb completed");
2247 }
2248
Stefan Richtera237f352005-11-07 06:31:39 -05002249 return RCODE_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252/**************************************
2253 * SCSI interface related section
2254 **************************************/
2255
2256/*
2257 * This routine is the main request entry routine for doing I/O. It is
2258 * called from the scsi stack directly.
2259 */
2260static int sbp2scsi_queuecommand(struct scsi_cmnd *SCpnt,
2261 void (*done)(struct scsi_cmnd *))
2262{
2263 struct scsi_id_instance_data *scsi_id =
2264 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2265 struct sbp2scsi_host_info *hi;
Jody McIntyreabd559b2005-09-30 11:59:06 -07002266 int result = DID_NO_CONNECT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 SBP2_DEBUG("sbp2scsi_queuecommand");
2269
Jody McIntyreabd559b2005-09-30 11:59:06 -07002270 if (!sbp2util_node_is_available(scsi_id))
2271 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
2273 hi = scsi_id->hi;
2274
2275 if (!hi) {
2276 SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
Jody McIntyreabd559b2005-09-30 11:59:06 -07002277 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 }
2279
2280 /*
2281 * Until we handle multiple luns, just return selection time-out
2282 * to any IO directed at non-zero LUNs
2283 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002284 if (SCpnt->device->lun)
2285 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /*
2288 * Check for request sense command, and handle it here
2289 * (autorequest sense)
2290 */
2291 if (SCpnt->cmnd[0] == REQUEST_SENSE) {
2292 SBP2_DEBUG("REQUEST_SENSE");
2293 memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
2294 memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
2295 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
Jody McIntyreabd559b2005-09-30 11:59:06 -07002296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298
2299 /*
2300 * Check to see if we are in the middle of a bus reset.
2301 */
2302 if (!hpsb_node_entry_valid(scsi_id->ne)) {
2303 SBP2_ERR("Bus reset in progress - rejecting command");
Jody McIntyreabd559b2005-09-30 11:59:06 -07002304 result = DID_BUS_BUSY << 16;
2305 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
2308 /*
Stefan Richter43863eb2005-12-12 23:03:24 -05002309 * Bidirectional commands are not yet implemented,
2310 * and unknown transfer direction not handled.
2311 */
2312 if (SCpnt->sc_data_direction == DMA_BIDIRECTIONAL) {
2313 SBP2_ERR("Cannot handle DMA_BIDIRECTIONAL - rejecting command");
2314 result = DID_ERROR << 16;
2315 goto done;
2316 }
2317
2318 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 * Try and send our SCSI command
2320 */
2321 if (sbp2_send_command(scsi_id, SCpnt, done)) {
2322 SBP2_ERR("Error sending SCSI command");
2323 sbp2scsi_complete_command(scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT,
2324 SCpnt, done);
2325 }
Jody McIntyreabd559b2005-09-30 11:59:06 -07002326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Jody McIntyreabd559b2005-09-30 11:59:06 -07002328done:
2329 SCpnt->result = result;
2330 done(SCpnt);
2331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
2334/*
2335 * This function is called in order to complete all outstanding SBP-2
2336 * commands (in case of resets, etc.).
2337 */
2338static void sbp2scsi_complete_all_commands(struct scsi_id_instance_data *scsi_id,
2339 u32 status)
2340{
2341 struct sbp2scsi_host_info *hi = scsi_id->hi;
2342 struct list_head *lh;
2343 struct sbp2_command_info *command;
Jody McIntyre79456192005-11-07 06:29:39 -05002344 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 SBP2_DEBUG("sbp2scsi_complete_all_commands");
2347
Jody McIntyre79456192005-11-07 06:29:39 -05002348 spin_lock_irqsave(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
2350 SBP2_DEBUG("Found pending command to complete");
2351 lh = scsi_id->sbp2_command_orb_inuse.next;
2352 command = list_entry(lh, struct sbp2_command_info, list);
2353 pci_dma_sync_single_for_cpu(hi->host->pdev, command->command_orb_dma,
2354 sizeof(struct sbp2_command_orb),
2355 PCI_DMA_BIDIRECTIONAL);
2356 pci_dma_sync_single_for_cpu(hi->host->pdev, command->sge_dma,
2357 sizeof(command->scatter_gather_element),
2358 PCI_DMA_BIDIRECTIONAL);
2359 sbp2util_mark_command_completed(scsi_id, command);
2360 if (command->Current_SCpnt) {
2361 command->Current_SCpnt->result = status << 16;
2362 command->Current_done(command->Current_SCpnt);
2363 }
2364 }
Jody McIntyre79456192005-11-07 06:29:39 -05002365 spin_unlock_irqrestore(&scsi_id->sbp2_command_orb_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 return;
2368}
2369
2370/*
2371 * This function is called in order to complete a regular SBP-2 command.
2372 *
2373 * This can be called in interrupt context.
2374 */
2375static void sbp2scsi_complete_command(struct scsi_id_instance_data *scsi_id,
2376 u32 scsi_status, struct scsi_cmnd *SCpnt,
2377 void (*done)(struct scsi_cmnd *))
2378{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 SBP2_DEBUG("sbp2scsi_complete_command");
2380
2381 /*
2382 * Sanity
2383 */
2384 if (!SCpnt) {
2385 SBP2_ERR("SCpnt is NULL");
2386 return;
2387 }
2388
2389 /*
2390 * If a bus reset is in progress and there was an error, don't
2391 * complete the command, just let it get retried at the end of the
2392 * bus reset.
2393 */
Stefan Richtera237f352005-11-07 06:31:39 -05002394 if (!hpsb_node_entry_valid(scsi_id->ne)
2395 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 SBP2_ERR("Bus reset in progress - retry command later");
2397 return;
2398 }
Stefan Richtera237f352005-11-07 06:31:39 -05002399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /*
2401 * Switch on scsi status
2402 */
2403 switch (scsi_status) {
Stefan Richtera237f352005-11-07 06:31:39 -05002404 case SBP2_SCSI_STATUS_GOOD:
2405 SCpnt->result = DID_OK;
2406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Stefan Richtera237f352005-11-07 06:31:39 -05002408 case SBP2_SCSI_STATUS_BUSY:
2409 SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
2410 SCpnt->result = DID_BUS_BUSY << 16;
2411 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Stefan Richtera237f352005-11-07 06:31:39 -05002413 case SBP2_SCSI_STATUS_CHECK_CONDITION:
2414 SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
2415 SCpnt->result = CHECK_CONDITION << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Stefan Richtera237f352005-11-07 06:31:39 -05002417 /*
2418 * Debug stuff
2419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420#if CONFIG_IEEE1394_SBP2_DEBUG >= 1
Stefan Richtera237f352005-11-07 06:31:39 -05002421 scsi_print_command(SCpnt);
2422 scsi_print_sense("bh", SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423#endif
2424
Stefan Richtera237f352005-11-07 06:31:39 -05002425 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Stefan Richtera237f352005-11-07 06:31:39 -05002427 case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
2428 SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
2429 SCpnt->result = DID_NO_CONNECT << 16;
2430 scsi_print_command(SCpnt);
2431 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Stefan Richtera237f352005-11-07 06:31:39 -05002433 case SBP2_SCSI_STATUS_CONDITION_MET:
2434 case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
2435 case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
2436 SBP2_ERR("Bad SCSI status = %x", scsi_status);
2437 SCpnt->result = DID_ERROR << 16;
2438 scsi_print_command(SCpnt);
2439 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Stefan Richtera237f352005-11-07 06:31:39 -05002441 default:
2442 SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
2443 SCpnt->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 }
2445
2446 /*
2447 * Take care of any sbp2 response data mucking here (RBC stuff, etc.)
2448 */
2449 if (SCpnt->result == DID_OK) {
2450 sbp2_check_sbp2_response(scsi_id, SCpnt);
2451 }
2452
2453 /*
2454 * If a bus reset is in progress and there was an error, complete
2455 * the command as busy so that it will get retried.
2456 */
Stefan Richtera237f352005-11-07 06:31:39 -05002457 if (!hpsb_node_entry_valid(scsi_id->ne)
2458 && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 SBP2_ERR("Completing command with busy (bus reset)");
2460 SCpnt->result = DID_BUS_BUSY << 16;
2461 }
2462
2463 /*
2464 * If a unit attention occurs, return busy status so it gets
2465 * retried... it could have happened because of a 1394 bus reset
2466 * or hot-plug...
2467 */
2468#if 0
2469 if ((scsi_status == SBP2_SCSI_STATUS_CHECK_CONDITION) &&
2470 (SCpnt->sense_buffer[2] == UNIT_ATTENTION)) {
2471 SBP2_DEBUG("UNIT ATTENTION - return busy");
2472 SCpnt->result = DID_BUS_BUSY << 16;
2473 }
2474#endif
2475
2476 /*
2477 * Tell scsi stack that we're done with this command
2478 */
Stefan Richtera237f352005-11-07 06:31:39 -05002479 done(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
Jody McIntyreabd559b2005-09-30 11:59:06 -07002482static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
2483{
2484 ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = sdev;
2485 return 0;
2486}
2487
Jody McIntyreabd559b2005-09-30 11:59:06 -07002488static int sbp2scsi_slave_configure(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
2490 blk_queue_dma_alignment(sdev->request_queue, (512 - 1));
Ben Collins365c7862005-11-07 06:31:24 -05002491 sdev->use_10_for_rw = 1;
2492 sdev->use_10_for_ms = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return 0;
2494}
2495
Jody McIntyreabd559b2005-09-30 11:59:06 -07002496static void sbp2scsi_slave_destroy(struct scsi_device *sdev)
2497{
2498 ((struct scsi_id_instance_data *)sdev->host->hostdata[0])->sdev = NULL;
2499 return;
2500}
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502/*
2503 * Called by scsi stack when something has really gone wrong. Usually
2504 * called when a command has timed-out for some reason.
2505 */
2506static int sbp2scsi_abort(struct scsi_cmnd *SCpnt)
2507{
2508 struct scsi_id_instance_data *scsi_id =
2509 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2510 struct sbp2scsi_host_info *hi = scsi_id->hi;
2511 struct sbp2_command_info *command;
2512
2513 SBP2_ERR("aborting sbp2 command");
2514 scsi_print_command(SCpnt);
2515
Jody McIntyreabd559b2005-09-30 11:59:06 -07002516 if (sbp2util_node_is_available(scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 /*
2519 * Right now, just return any matching command structures
2520 * to the free pool.
2521 */
2522 command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
2523 if (command) {
2524 SBP2_DEBUG("Found command to abort");
2525 pci_dma_sync_single_for_cpu(hi->host->pdev,
2526 command->command_orb_dma,
2527 sizeof(struct sbp2_command_orb),
2528 PCI_DMA_BIDIRECTIONAL);
2529 pci_dma_sync_single_for_cpu(hi->host->pdev,
2530 command->sge_dma,
2531 sizeof(command->scatter_gather_element),
2532 PCI_DMA_BIDIRECTIONAL);
2533 sbp2util_mark_command_completed(scsi_id, command);
2534 if (command->Current_SCpnt) {
2535 command->Current_SCpnt->result = DID_ABORT << 16;
2536 command->Current_done(command->Current_SCpnt);
2537 }
2538 }
2539
2540 /*
2541 * Initiate a fetch agent reset.
2542 */
2543 sbp2_agent_reset(scsi_id, 0);
2544 sbp2scsi_complete_all_commands(scsi_id, DID_BUS_BUSY);
2545 }
2546
Stefan Richtera237f352005-11-07 06:31:39 -05002547 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
2550/*
2551 * Called by scsi stack when something has really gone wrong.
2552 */
Jody McIntyreabd559b2005-09-30 11:59:06 -07002553static int sbp2scsi_reset(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554{
2555 struct scsi_id_instance_data *scsi_id =
2556 (struct scsi_id_instance_data *)SCpnt->device->host->hostdata[0];
2557
2558 SBP2_ERR("reset requested");
2559
Jody McIntyreabd559b2005-09-30 11:59:06 -07002560 if (sbp2util_node_is_available(scsi_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 SBP2_ERR("Generating sbp2 fetch agent reset");
2562 sbp2_agent_reset(scsi_id, 0);
2563 }
2564
Jody McIntyreabd559b2005-09-30 11:59:06 -07002565 return SUCCESS;
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04002566}
2567
Stefan Richtera237f352005-11-07 06:31:39 -05002568static ssize_t sbp2_sysfs_ieee1394_id_show(struct device *dev,
2569 struct device_attribute *attr,
2570 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571{
2572 struct scsi_device *sdev;
2573 struct scsi_id_instance_data *scsi_id;
2574 int lun;
2575
2576 if (!(sdev = to_scsi_device(dev)))
2577 return 0;
2578
2579 if (!(scsi_id = (struct scsi_id_instance_data *)sdev->host->hostdata[0]))
2580 return 0;
2581
Ben Collinse309fc62005-11-07 06:31:34 -05002582 lun = ORB_SET_LUN(scsi_id->sbp2_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 return sprintf(buf, "%016Lx:%d:%d\n", (unsigned long long)scsi_id->ne->guid,
2585 scsi_id->ud->id, lun);
2586}
2587static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
2588
2589static struct device_attribute *sbp2_sysfs_sdev_attrs[] = {
2590 &dev_attr_ieee1394_id,
2591 NULL
2592};
2593
2594MODULE_AUTHOR("Ben Collins <bcollins@debian.org>");
2595MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
2596MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
2597MODULE_LICENSE("GPL");
2598
2599/* SCSI host template */
2600static struct scsi_host_template scsi_driver_template = {
2601 .module = THIS_MODULE,
2602 .name = "SBP-2 IEEE-1394",
2603 .proc_name = SBP2_DEVICE_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 .queuecommand = sbp2scsi_queuecommand,
2605 .eh_abort_handler = sbp2scsi_abort,
2606 .eh_device_reset_handler = sbp2scsi_reset,
Jody McIntyreabd559b2005-09-30 11:59:06 -07002607 .slave_alloc = sbp2scsi_slave_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 .slave_configure = sbp2scsi_slave_configure,
Jody McIntyreabd559b2005-09-30 11:59:06 -07002609 .slave_destroy = sbp2scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 .this_id = -1,
2611 .sg_tablesize = SG_ALL,
2612 .use_clustering = ENABLE_CLUSTERING,
2613 .cmd_per_lun = SBP2_MAX_CMDS,
2614 .can_queue = SBP2_MAX_CMDS,
2615 .emulated = 1,
2616 .sdev_attrs = sbp2_sysfs_sdev_attrs,
2617};
2618
2619static int sbp2_module_init(void)
2620{
2621 int ret;
2622
2623 SBP2_DEBUG("sbp2_module_init");
2624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 /* Module load debug option to force one command at a time (serializing I/O) */
2626 if (serialize_io) {
Jody McIntyre2bab3592005-09-30 11:59:07 -07002627 SBP2_INFO("Driver forced to serialize I/O (serialize_io=1)");
2628 SBP2_INFO("Try serialize_io=0 for better performance");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 scsi_driver_template.can_queue = 1;
2630 scsi_driver_template.cmd_per_lun = 1;
2631 }
2632
2633 /* Set max sectors (module load option). Default is 255 sectors. */
2634 scsi_driver_template.max_sectors = max_sectors;
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 /* Register our high level driver with 1394 stack */
2637 hpsb_register_highlevel(&sbp2_highlevel);
2638
2639 ret = hpsb_register_protocol(&sbp2_driver);
2640 if (ret) {
2641 SBP2_ERR("Failed to register protocol");
2642 hpsb_unregister_highlevel(&sbp2_highlevel);
2643 return ret;
2644 }
2645
2646 return 0;
2647}
2648
2649static void __exit sbp2_module_exit(void)
2650{
2651 SBP2_DEBUG("sbp2_module_exit");
2652
2653 hpsb_unregister_protocol(&sbp2_driver);
2654
2655 hpsb_unregister_highlevel(&sbp2_highlevel);
2656}
2657
2658module_init(sbp2_module_init);
2659module_exit(sbp2_module_exit);