cciss_scsi.c 48.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
M
Mike Miller 已提交
2 3
 *    Disk Array driver for HP Smart Array controllers, SCSI Tape module.
 *    (C) Copyright 2001, 2007 Hewlett-Packard Development Company, L.P.
L
Linus Torvalds 已提交
4 5 6
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
M
Mike Miller 已提交
7
 *    the Free Software Foundation; version 2 of the License.
L
Linus Torvalds 已提交
8 9 10
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
M
Mike Miller 已提交
11 12
 *    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 *    General Public License for more details.
L
Linus Torvalds 已提交
13 14 15
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
M
Mike Miller 已提交
16 17
 *    Foundation, Inc., 59 Temple Place, Suite 300, Boston, MA
 *    02111-1307, USA.
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 *    Questions/Comments/Bugfixes to iss_storagedev@hp.com
 *    
 *    Author: Stephen M. Cameron
 */
#ifdef CONFIG_CISS_SCSI_TAPE

/* Here we have code to present the driver as a scsi driver 
   as it is simultaneously presented as a block driver.  The 
   reason for doing this is to allow access to SCSI tape drives
   through the array controller.  Note in particular, neither 
   physical nor logical disks are presented through the scsi layer. */

T
Tim Schmielau 已提交
31 32 33 34 35 36 37
#include <linux/timer.h>
#include <linux/completion.h>
#include <linux/slab.h>
#include <linux/string.h>

#include <asm/atomic.h>

L
Linus Torvalds 已提交
38 39 40 41 42 43
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_host.h> 

#include "cciss_scsi.h"

44 45 46
#define CCISS_ABORT_MSG 0x00
#define CCISS_RESET_MSG 0x01

47
static int fill_cmd(ctlr_info_t *h, CommandList_struct *c, __u8 cmd, void *buff,
48
	size_t size,
49
	__u8 page_code, unsigned char *scsi3addr,
50 51
	int cmd_type);

52 53 54 55
static CommandList_struct *cmd_alloc(ctlr_info_t *h);
static CommandList_struct *cmd_special_alloc(ctlr_info_t *h);
static void cmd_free(ctlr_info_t *h, CommandList_struct *c);
static void cmd_special_free(ctlr_info_t *h, CommandList_struct *c);
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64

static int cciss_scsi_proc_info(
		struct Scsi_Host *sh,
		char *buffer, /* data buffer */
		char **start, 	   /* where data in buffer starts */
		off_t offset,	   /* offset from start of imaginary file */
		int length, 	   /* length of data in buffer */
		int func);	   /* 0 == read, 1 == write */

J
Jeff Garzik 已提交
65 66
static int cciss_scsi_queue_command (struct Scsi_Host *h,
				     struct scsi_cmnd *cmd);
67 68
static int cciss_eh_device_reset_handler(struct scsi_cmnd *);
static int cciss_eh_abort_handler(struct scsi_cmnd *);
L
Linus Torvalds 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

static struct cciss_scsi_hba_t ccissscsi[MAX_CTLR] = {
	{ .name = "cciss0", .ndevices = 0 },
	{ .name = "cciss1", .ndevices = 0 },
	{ .name = "cciss2", .ndevices = 0 },
	{ .name = "cciss3", .ndevices = 0 },
	{ .name = "cciss4", .ndevices = 0 },
	{ .name = "cciss5", .ndevices = 0 },
	{ .name = "cciss6", .ndevices = 0 },
	{ .name = "cciss7", .ndevices = 0 },
};

static struct scsi_host_template cciss_driver_template = {
	.module			= THIS_MODULE,
	.name			= "cciss",
	.proc_name		= "cciss",
	.proc_info		= cciss_scsi_proc_info,
	.queuecommand		= cciss_scsi_queue_command,
	.can_queue		= SCSI_CCISS_CAN_QUEUE,
	.this_id		= 7,
	.cmd_per_lun		= 1,
	.use_clustering		= DISABLE_CLUSTERING,
91 92 93
	/* Can't have eh_bus_reset_handler or eh_host_reset_handler for cciss */
	.eh_device_reset_handler= cciss_eh_device_reset_handler,
	.eh_abort_handler	= cciss_eh_abort_handler,
L
Linus Torvalds 已提交
94 95 96
};

#pragma pack(1)
97

98 99
#define SCSI_PAD_32 8
#define SCSI_PAD_64 8
100

L
Linus Torvalds 已提交
101 102 103 104
struct cciss_scsi_cmd_stack_elem_t {
	CommandList_struct cmd;
	ErrorInfo_struct Err;
	__u32 busaddr;
105
	int cmdindex;
106
	u8 pad[IS_32_BIT * SCSI_PAD_32 + IS_64_BIT * SCSI_PAD_64];
L
Linus Torvalds 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
};

#pragma pack()

#define CMD_STACK_SIZE (SCSI_CCISS_CAN_QUEUE * \
		CCISS_MAX_SCSI_DEVS_PER_HBA + 2)
			// plus two for init time usage

#pragma pack(1)
struct cciss_scsi_cmd_stack_t {
	struct cciss_scsi_cmd_stack_elem_t *pool;
	struct cciss_scsi_cmd_stack_elem_t *elem[CMD_STACK_SIZE];
	dma_addr_t cmd_pool_handle;
	int top;
};
#pragma pack()

struct cciss_scsi_adapter_data_t {
	struct Scsi_Host *scsi_host;
	struct cciss_scsi_cmd_stack_t cmd_stack;
127
	SGDescriptor_struct **cmd_sg_list;
L
Linus Torvalds 已提交
128 129 130 131
	int registered;
	spinlock_t lock; // to protect ccissscsi[ctlr]; 
};

132 133 134 135
#define CPQ_TAPE_LOCK(h, flags) spin_lock_irqsave( \
	&h->scsi_ctlr->lock, flags);
#define CPQ_TAPE_UNLOCK(h, flags) spin_unlock_irqrestore( \
	&h->scsi_ctlr->lock, flags);
L
Linus Torvalds 已提交
136 137 138 139 140

static CommandList_struct *
scsi_cmd_alloc(ctlr_info_t *h)
{
	/* assume only one process in here at a time, locking done by caller. */
141
	/* use h->lock */
L
Linus Torvalds 已提交
142 143 144 145 146 147 148 149 150
	/* might be better to rewrite how we allocate scsi commands in a way that */
	/* needs no locking at all. */

	/* take the top memory chunk off the stack and return it, if any. */
	struct cciss_scsi_cmd_stack_elem_t *c;
	struct cciss_scsi_adapter_data_t *sa;
	struct cciss_scsi_cmd_stack_t *stk;
	u64bit temp64;

151
	sa = h->scsi_ctlr;
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161
	stk = &sa->cmd_stack; 

	if (stk->top < 0) 
		return NULL;
	c = stk->elem[stk->top]; 	
	/* memset(c, 0, sizeof(*c)); */
	memset(&c->cmd, 0, sizeof(c->cmd));
	memset(&c->Err, 0, sizeof(c->Err));
	/* set physical addr of cmd and addr of scsi parameters */
	c->cmd.busaddr = c->busaddr; 
162
	c->cmd.cmdindex = c->cmdindex;
L
Linus Torvalds 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
	/* (__u32) (stk->cmd_pool_handle + 
		(sizeof(struct cciss_scsi_cmd_stack_elem_t)*stk->top)); */

	temp64.val = (__u64) (c->busaddr + sizeof(CommandList_struct));
	/* (__u64) (stk->cmd_pool_handle + 
		(sizeof(struct cciss_scsi_cmd_stack_elem_t)*stk->top) +
		 sizeof(CommandList_struct)); */
	stk->top--;
	c->cmd.ErrDesc.Addr.lower = temp64.val32.lower;
	c->cmd.ErrDesc.Addr.upper = temp64.val32.upper;
	c->cmd.ErrDesc.Len = sizeof(ErrorInfo_struct);
	
	c->cmd.ctlr = h->ctlr;
	c->cmd.err_info = &c->Err;

	return (CommandList_struct *) c;
}

static void 
182
scsi_cmd_free(ctlr_info_t *h, CommandList_struct *c)
L
Linus Torvalds 已提交
183 184
{
	/* assume only one process in here at a time, locking done by caller. */
185
	/* use h->lock */
L
Linus Torvalds 已提交
186 187 188 189 190
	/* drop the free memory chunk on top of the stack. */

	struct cciss_scsi_adapter_data_t *sa;
	struct cciss_scsi_cmd_stack_t *stk;

191
	sa = h->scsi_ctlr;
L
Linus Torvalds 已提交
192
	stk = &sa->cmd_stack; 
D
Dan Carpenter 已提交
193
	stk->top++;
L
Linus Torvalds 已提交
194
	if (stk->top >= CMD_STACK_SIZE) {
195 196
		dev_err(&h->pdev->dev,
			"scsi_cmd_free called too many times.\n");
L
Linus Torvalds 已提交
197 198
		BUG();
	}
199
	stk->elem[stk->top] = (struct cciss_scsi_cmd_stack_elem_t *) c;
L
Linus Torvalds 已提交
200 201 202
}

static int
203
scsi_cmd_stack_setup(ctlr_info_t *h, struct cciss_scsi_adapter_data_t *sa)
L
Linus Torvalds 已提交
204 205 206 207 208
{
	int i;
	struct cciss_scsi_cmd_stack_t *stk;
	size_t size;

209 210 211
	sa->cmd_sg_list = cciss_allocate_sg_chain_blocks(h,
		h->chainsize, CMD_STACK_SIZE);
	if (!sa->cmd_sg_list && h->chainsize > 0)
212 213
		return -ENOMEM;

L
Linus Torvalds 已提交
214 215 216
	stk = &sa->cmd_stack; 
	size = sizeof(struct cciss_scsi_cmd_stack_elem_t) * CMD_STACK_SIZE;

217 218 219
	/* Check alignment, see cciss_cmd.h near CommandList_struct def. */
	BUILD_BUG_ON((sizeof(*stk->pool) % COMMANDLIST_ALIGNMENT) != 0);
	/* pci_alloc_consistent guarantees 32-bit DMA address will be used */
L
Linus Torvalds 已提交
220
	stk->pool = (struct cciss_scsi_cmd_stack_elem_t *)
221
		pci_alloc_consistent(h->pdev, size, &stk->cmd_pool_handle);
L
Linus Torvalds 已提交
222 223

	if (stk->pool == NULL) {
224 225 226
		cciss_free_sg_chain_blocks(sa->cmd_sg_list, CMD_STACK_SIZE);
		sa->cmd_sg_list = NULL;
		return -ENOMEM;
L
Linus Torvalds 已提交
227 228
	}

229 230 231 232 233 234 235
	stk->elem = kmalloc(sizeof(stk->elem[0]) * stk->nelems, GFP_KERNEL);
	if (!stk->elem) {
		pci_free_consistent(h->pdev, size, stk->pool,
		stk->cmd_pool_handle);
		return -1;
	}

L
Linus Torvalds 已提交
236 237 238 239
	for (i=0; i<CMD_STACK_SIZE; i++) {
		stk->elem[i] = &stk->pool[i];
		stk->elem[i]->busaddr = (__u32) (stk->cmd_pool_handle + 
			(sizeof(struct cciss_scsi_cmd_stack_elem_t) * i));
240
		stk->elem[i]->cmdindex = i;
L
Linus Torvalds 已提交
241 242 243 244 245 246
	}
	stk->top = CMD_STACK_SIZE-1;
	return 0;
}

static void
247
scsi_cmd_stack_free(ctlr_info_t *h)
L
Linus Torvalds 已提交
248 249 250 251 252
{
	struct cciss_scsi_adapter_data_t *sa;
	struct cciss_scsi_cmd_stack_t *stk;
	size_t size;

253
	sa = h->scsi_ctlr;
L
Linus Torvalds 已提交
254 255
	stk = &sa->cmd_stack; 
	if (stk->top != CMD_STACK_SIZE-1) {
256 257
		dev_warn(&h->pdev->dev,
			"bug: %d scsi commands are still outstanding.\n",
L
Linus Torvalds 已提交
258 259 260 261
			CMD_STACK_SIZE - stk->top);
	}
	size = sizeof(struct cciss_scsi_cmd_stack_elem_t) * CMD_STACK_SIZE;

262
	pci_free_consistent(h->pdev, size, stk->pool, stk->cmd_pool_handle);
L
Linus Torvalds 已提交
263
	stk->pool = NULL;
264
	cciss_free_sg_chain_blocks(sa->cmd_sg_list, CMD_STACK_SIZE);
265 266
	kfree(stk->elem);
	stk->elem = NULL;
L
Linus Torvalds 已提交
267 268
}

G
Grant Coady 已提交
269
#if 0
L
Linus Torvalds 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
static int xmargin=8;
static int amargin=60;

static void
print_bytes (unsigned char *c, int len, int hex, int ascii)
{

	int i;
	unsigned char *x;

	if (hex)
	{
		x = c;
		for (i=0;i<len;i++)
		{
			if ((i % xmargin) == 0 && i>0) printk("\n");
			if ((i % xmargin) == 0) printk("0x%04x:", i);
			printk(" %02x", *x);
			x++;
		}
		printk("\n");
	}
	if (ascii)
	{
		x = c;
		for (i=0;i<len;i++)
		{
			if ((i % amargin) == 0 && i>0) printk("\n");
			if ((i % amargin) == 0) printk("0x%04x:", i);
			if (*x > 26 && *x < 128) printk("%c", *x);
			else printk(".");
			x++;
		}
		printk("\n");
	}
}

static void
print_cmd(CommandList_struct *cp)
{
	printk("queue:%d\n", cp->Header.ReplyQueue);
	printk("sglist:%d\n", cp->Header.SGList);
	printk("sgtot:%d\n", cp->Header.SGTotal);
	printk("Tag:0x%08x/0x%08x\n", cp->Header.Tag.upper, 
			cp->Header.Tag.lower);
	printk("LUN:0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
		cp->Header.LUN.LunAddrBytes[0],
		cp->Header.LUN.LunAddrBytes[1],
		cp->Header.LUN.LunAddrBytes[2],
		cp->Header.LUN.LunAddrBytes[3],
		cp->Header.LUN.LunAddrBytes[4],
		cp->Header.LUN.LunAddrBytes[5],
		cp->Header.LUN.LunAddrBytes[6],
		cp->Header.LUN.LunAddrBytes[7]);
	printk("CDBLen:%d\n", cp->Request.CDBLen);
	printk("Type:%d\n",cp->Request.Type.Type);
	printk("Attr:%d\n",cp->Request.Type.Attribute);
	printk(" Dir:%d\n",cp->Request.Type.Direction);
	printk("Timeout:%d\n",cp->Request.Timeout);
	printk( "CDB: %02x %02x %02x %02x %02x %02x %02x %02x"
		" %02x %02x %02x %02x %02x %02x %02x %02x\n",
		cp->Request.CDB[0], cp->Request.CDB[1],
		cp->Request.CDB[2], cp->Request.CDB[3],
		cp->Request.CDB[4], cp->Request.CDB[5],
		cp->Request.CDB[6], cp->Request.CDB[7],
		cp->Request.CDB[8], cp->Request.CDB[9],
		cp->Request.CDB[10], cp->Request.CDB[11],
		cp->Request.CDB[12], cp->Request.CDB[13],
		cp->Request.CDB[14], cp->Request.CDB[15]),
	printk("edesc.Addr: 0x%08x/0%08x, Len  = %d\n", 
		cp->ErrDesc.Addr.upper, cp->ErrDesc.Addr.lower, 
			cp->ErrDesc.Len);
	printk("sgs..........Errorinfo:\n");
	printk("scsistatus:%d\n", cp->err_info->ScsiStatus);
	printk("senselen:%d\n", cp->err_info->SenseLen);
	printk("cmd status:%d\n", cp->err_info->CommandStatus);
	printk("resid cnt:%d\n", cp->err_info->ResidualCnt);
	printk("offense size:%d\n", cp->err_info->MoreErrInfo.Invalid_Cmd.offense_size);
	printk("offense byte:%d\n", cp->err_info->MoreErrInfo.Invalid_Cmd.offense_num);
	printk("offense value:%d\n", cp->err_info->MoreErrInfo.Invalid_Cmd.offense_value);
			
}

#endif

static int 
356
find_bus_target_lun(ctlr_info_t *h, int *bus, int *target, int *lun)
L
Linus Torvalds 已提交
357 358
{
	/* finds an unused bus, target, lun for a new device */
359
	/* assumes h->scsi_ctlr->lock is held */
L
Linus Torvalds 已提交
360 361 362 363 364 365
	int i, found=0;
	unsigned char target_taken[CCISS_MAX_SCSI_DEVS_PER_HBA];

	memset(&target_taken[0], 0, CCISS_MAX_SCSI_DEVS_PER_HBA);

	target_taken[SELF_SCSI_ID] = 1;	
366 367
	for (i = 0; i < ccissscsi[h->ctlr].ndevices; i++)
		target_taken[ccissscsi[h->ctlr].dev[i].target] = 1;
L
Linus Torvalds 已提交
368
	
369
	for (i = 0; i < CCISS_MAX_SCSI_DEVS_PER_HBA; i++) {
L
Linus Torvalds 已提交
370 371 372 373 374 375 376
		if (!target_taken[i]) {
			*bus = 0; *target=i; *lun = 0; found=1;
			break;
		}
	}
	return (!found);	
}
377 378 379 380
struct scsi2map {
	char scsi3addr[8];
	int bus, target, lun;
};
L
Linus Torvalds 已提交
381 382

static int 
383
cciss_scsi_add_entry(ctlr_info_t *h, int hostno,
384
		struct cciss_scsi_dev_t *device,
385
		struct scsi2map *added, int *nadded)
L
Linus Torvalds 已提交
386
{
387 388
	/* assumes h->scsi_ctlr->lock is held */
	int n = ccissscsi[h->ctlr].ndevices;
L
Linus Torvalds 已提交
389
	struct cciss_scsi_dev_t *sd;
390 391
	int i, bus, target, lun;
	unsigned char addr1[8], addr2[8];
L
Linus Torvalds 已提交
392 393

	if (n >= CCISS_MAX_SCSI_DEVS_PER_HBA) {
394 395
		dev_warn(&h->pdev->dev, "Too many devices, "
			"some will be inaccessible.\n");
L
Linus Torvalds 已提交
396 397
		return -1;
	}
398

399 400 401 402
	bus = target = -1;
	lun = 0;
	/* Is this device a non-zero lun of a multi-lun device */
	/* byte 4 of the 8-byte LUN addr will contain the logical unit no. */
403
	if (device->scsi3addr[4] != 0) {
404 405 406 407
		/* Search through our list and find the device which */
		/* has the same 8 byte LUN address, excepting byte 4. */
		/* Assign the same bus and target for this new LUN. */
		/* Use the logical unit number from the firmware. */
408
		memcpy(addr1, device->scsi3addr, 8);
409 410
		addr1[4] = 0;
		for (i = 0; i < n; i++) {
411
			sd = &ccissscsi[h->ctlr].dev[i];
412 413 414 415 416 417
			memcpy(addr2, sd->scsi3addr, 8);
			addr2[4] = 0;
			/* differ only in byte 4? */
			if (memcmp(addr1, addr2, 8) == 0) {
				bus = sd->bus;
				target = sd->target;
418
				lun = device->scsi3addr[4];
419 420 421 422 423
				break;
			}
		}
	}

424
	sd = &ccissscsi[h->ctlr].dev[n];
425
	if (lun == 0) {
426
		if (find_bus_target_lun(h,
427 428 429 430 431 432 433
			&sd->bus, &sd->target, &sd->lun) != 0)
			return -1;
	} else {
		sd->bus = bus;
		sd->target = target;
		sd->lun = lun;
	}
434 435 436 437 438
	added[*nadded].bus = sd->bus;
	added[*nadded].target = sd->target;
	added[*nadded].lun = sd->lun;
	(*nadded)++;

439 440 441 442 443 444
	memcpy(sd->scsi3addr, device->scsi3addr, 8);
	memcpy(sd->vendor, device->vendor, sizeof(sd->vendor));
	memcpy(sd->revision, device->revision, sizeof(sd->revision));
	memcpy(sd->device_id, device->device_id, sizeof(sd->device_id));
	sd->devtype = device->devtype;

445
	ccissscsi[h->ctlr].ndevices++;
L
Linus Torvalds 已提交
446 447 448 449 450

	/* initially, (before registering with scsi layer) we don't 
	   know our hostno and we don't want to print anything first 
	   time anyway (the scsi layer's inquiries will show that info) */
	if (hostno != -1)
451 452
		dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d added.\n",
			scsi_device_type(sd->devtype), hostno,
L
Linus Torvalds 已提交
453 454 455 456 457
			sd->bus, sd->target, sd->lun);
	return 0;
}

static void
458
cciss_scsi_remove_entry(ctlr_info_t *h, int hostno, int entry,
459
	struct scsi2map *removed, int *nremoved)
L
Linus Torvalds 已提交
460
{
461
	/* assumes h->ctlr]->scsi_ctlr->lock is held */
L
Linus Torvalds 已提交
462 463 464 465
	int i;
	struct cciss_scsi_dev_t sd;

	if (entry < 0 || entry >= CCISS_MAX_SCSI_DEVS_PER_HBA) return;
466
	sd = ccissscsi[h->ctlr].dev[entry];
467 468 469 470
	removed[*nremoved].bus    = sd.bus;
	removed[*nremoved].target = sd.target;
	removed[*nremoved].lun    = sd.lun;
	(*nremoved)++;
471 472 473
	for (i = entry; i < ccissscsi[h->ctlr].ndevices-1; i++)
		ccissscsi[h->ctlr].dev[i] = ccissscsi[h->ctlr].dev[i+1];
	ccissscsi[h->ctlr].ndevices--;
474 475
	dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d removed.\n",
		scsi_device_type(sd.devtype), hostno,
L
Linus Torvalds 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489
			sd.bus, sd.target, sd.lun);
}


#define SCSI3ADDR_EQ(a,b) ( \
	(a)[7] == (b)[7] && \
	(a)[6] == (b)[6] && \
	(a)[5] == (b)[5] && \
	(a)[4] == (b)[4] && \
	(a)[3] == (b)[3] && \
	(a)[2] == (b)[2] && \
	(a)[1] == (b)[1] && \
	(a)[0] == (b)[0])

490
static void fixup_botched_add(ctlr_info_t *h, char *scsi3addr)
491 492 493 494 495
{
	/* called when scsi_add_device fails in order to re-adjust */
	/* ccissscsi[] to match the mid layer's view. */
	unsigned long flags;
	int i, j;
496 497
	CPQ_TAPE_LOCK(h, flags);
	for (i = 0; i < ccissscsi[h->ctlr].ndevices; i++) {
498
		if (memcmp(scsi3addr,
499 500 501 502 503
				ccissscsi[h->ctlr].dev[i].scsi3addr, 8) == 0) {
			for (j = i; j < ccissscsi[h->ctlr].ndevices-1; j++)
				ccissscsi[h->ctlr].dev[j] =
					ccissscsi[h->ctlr].dev[j+1];
			ccissscsi[h->ctlr].ndevices--;
504 505 506
			break;
		}
	}
507
	CPQ_TAPE_UNLOCK(h, flags);
508 509
}

510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
static int device_is_the_same(struct cciss_scsi_dev_t *dev1,
	struct cciss_scsi_dev_t *dev2)
{
	return dev1->devtype == dev2->devtype &&
		memcmp(dev1->scsi3addr, dev2->scsi3addr,
			sizeof(dev1->scsi3addr)) == 0 &&
		memcmp(dev1->device_id, dev2->device_id,
			sizeof(dev1->device_id)) == 0 &&
		memcmp(dev1->vendor, dev2->vendor,
			sizeof(dev1->vendor)) == 0 &&
		memcmp(dev1->model, dev2->model,
			sizeof(dev1->model)) == 0 &&
		memcmp(dev1->revision, dev2->revision,
			sizeof(dev1->revision)) == 0;
}

L
Linus Torvalds 已提交
526
static int
527
adjust_cciss_scsi_table(ctlr_info_t *h, int hostno,
L
Linus Torvalds 已提交
528 529 530 531 532 533 534 535 536 537
	struct cciss_scsi_dev_t sd[], int nsds)
{
	/* sd contains scsi3 addresses and devtypes, but
	   bus target and lun are not filled in.  This funciton
	   takes what's in sd to be the current and adjusts
	   ccissscsi[] to be in line with what's in sd. */ 

	int i,j, found, changes=0;
	struct cciss_scsi_dev_t *csd;
	unsigned long flags;
538 539 540 541 542 543 544 545 546 547
	struct scsi2map *added, *removed;
	int nadded, nremoved;
	struct Scsi_Host *sh = NULL;

	added = kzalloc(sizeof(*added) * CCISS_MAX_SCSI_DEVS_PER_HBA,
			GFP_KERNEL);
	removed = kzalloc(sizeof(*removed) * CCISS_MAX_SCSI_DEVS_PER_HBA,
			GFP_KERNEL);

	if (!added || !removed) {
548 549
		dev_warn(&h->pdev->dev,
			"Out of memory in adjust_cciss_scsi_table\n");
550 551
		goto free_and_out;
	}
L
Linus Torvalds 已提交
552

553
	CPQ_TAPE_LOCK(h, flags);
L
Linus Torvalds 已提交
554

555
	if (hostno != -1)  /* if it's not the first time... */
556
		sh = h->scsi_ctlr->scsi_host;
557

L
Linus Torvalds 已提交
558 559 560 561
	/* find any devices in ccissscsi[] that are not in 
	   sd[] and remove them from ccissscsi[] */

	i = 0;
562 563
	nremoved = 0;
	nadded = 0;
564 565
	while (i < ccissscsi[h->ctlr].ndevices) {
		csd = &ccissscsi[h->ctlr].dev[i];
L
Linus Torvalds 已提交
566 567 568 569
		found=0;
		for (j=0;j<nsds;j++) {
			if (SCSI3ADDR_EQ(sd[j].scsi3addr,
				csd->scsi3addr)) {
570
				if (device_is_the_same(&sd[j], csd))
L
Linus Torvalds 已提交
571 572 573 574 575 576 577 578 579
					found=2;
				else
					found=1;
				break;
			}
		}

		if (found == 0) { /* device no longer present. */ 
			changes++;
580
			cciss_scsi_remove_entry(h, hostno, i,
581 582
				removed, &nremoved);
			/* remove ^^^, hence i not incremented */
583
		} else if (found == 1) { /* device is different in some way */
L
Linus Torvalds 已提交
584
			changes++;
585 586 587
			dev_info(&h->pdev->dev,
				"device c%db%dt%dl%d has changed.\n",
				hostno, csd->bus, csd->target, csd->lun);
588
			cciss_scsi_remove_entry(h, hostno, i,
589 590
				removed, &nremoved);
			/* remove ^^^, hence i not incremented */
591
			if (cciss_scsi_add_entry(h, hostno, &sd[j],
592 593 594
				added, &nadded) != 0)
				/* we just removed one, so add can't fail. */
					BUG();
L
Linus Torvalds 已提交
595
			csd->devtype = sd[j].devtype;
596 597 598 599 600 601 602 603
			memcpy(csd->device_id, sd[j].device_id,
				sizeof(csd->device_id));
			memcpy(csd->vendor, sd[j].vendor,
				sizeof(csd->vendor));
			memcpy(csd->model, sd[j].model,
				sizeof(csd->model));
			memcpy(csd->revision, sd[j].revision,
				sizeof(csd->revision));
L
Linus Torvalds 已提交
604 605 606 607 608 609 610 611 612
		} else 		/* device is same as it ever was, */
			i++;	/* so just move along. */
	}

	/* Now, make sure every device listed in sd[] is also
 	   listed in ccissscsi[], adding them if they aren't found */

	for (i=0;i<nsds;i++) {
		found=0;
613 614
		for (j = 0; j < ccissscsi[h->ctlr].ndevices; j++) {
			csd = &ccissscsi[h->ctlr].dev[j];
L
Linus Torvalds 已提交
615 616
			if (SCSI3ADDR_EQ(sd[i].scsi3addr,
				csd->scsi3addr)) {
617
				if (device_is_the_same(&sd[i], csd))
L
Linus Torvalds 已提交
618 619 620 621 622 623 624 625
					found=2;	/* found device */
				else
					found=1; 	/* found a bug. */
				break;
			}
		}
		if (!found) {
			changes++;
626
			if (cciss_scsi_add_entry(h, hostno, &sd[i],
627
				added, &nadded) != 0)
L
Linus Torvalds 已提交
628 629 630 631
				break;
		} else if (found == 1) {
			/* should never happen... */
			changes++;
632 633
			dev_warn(&h->pdev->dev,
				"device unexpectedly changed\n");
L
Linus Torvalds 已提交
634 635 636
			/* but if it does happen, we just ignore that device */
		}
	}
637
	CPQ_TAPE_UNLOCK(h, flags);
L
Linus Torvalds 已提交
638

639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
	/* Don't notify scsi mid layer of any changes the first time through */
	/* (or if there are no changes) scsi_scan_host will do it later the */
	/* first time through. */
	if (hostno == -1 || !changes)
		goto free_and_out;

	/* Notify scsi mid layer of any removed devices */
	for (i = 0; i < nremoved; i++) {
		struct scsi_device *sdev =
			scsi_device_lookup(sh, removed[i].bus,
				removed[i].target, removed[i].lun);
		if (sdev != NULL) {
			scsi_remove_device(sdev);
			scsi_device_put(sdev);
		} else {
			/* We don't expect to get here. */
			/* future cmds to this device will get selection */
			/* timeout as if the device was gone. */
657
			dev_warn(&h->pdev->dev, "didn't find "
658
				"c%db%dt%dl%d\n for removal.",
659
				hostno, removed[i].bus,
660 661 662 663 664 665 666 667 668 669 670
				removed[i].target, removed[i].lun);
		}
	}

	/* Notify scsi mid layer of any added devices */
	for (i = 0; i < nadded; i++) {
		int rc;
		rc = scsi_add_device(sh, added[i].bus,
			added[i].target, added[i].lun);
		if (rc == 0)
			continue;
671
		dev_warn(&h->pdev->dev, "scsi_add_device "
672
			"c%db%dt%dl%d failed, device not added.\n",
673
			hostno, added[i].bus, added[i].target, added[i].lun);
674 675
		/* now we have to remove it from ccissscsi, */
		/* since it didn't get added to scsi mid layer */
676
		fixup_botched_add(h, added[i].scsi3addr);
677
	}
L
Linus Torvalds 已提交
678

679 680 681
free_and_out:
	kfree(added);
	kfree(removed);
L
Linus Torvalds 已提交
682 683 684 685
	return 0;
}

static int
686
lookup_scsi3addr(ctlr_info_t *h, int bus, int target, int lun, char *scsi3addr)
L
Linus Torvalds 已提交
687 688 689 690 691
{
	int i;
	struct cciss_scsi_dev_t *sd;
	unsigned long flags;

692 693 694
	CPQ_TAPE_LOCK(h, flags);
	for (i = 0; i < ccissscsi[h->ctlr].ndevices; i++) {
		sd = &ccissscsi[h->ctlr].dev[i];
L
Linus Torvalds 已提交
695 696 697 698
		if (sd->bus == bus &&
		    sd->target == target &&
		    sd->lun == lun) {
			memcpy(scsi3addr, &sd->scsi3addr[0], 8);
699
			CPQ_TAPE_UNLOCK(h, flags);
L
Linus Torvalds 已提交
700 701 702
			return 0;
		}
	}
703
	CPQ_TAPE_UNLOCK(h, flags);
L
Linus Torvalds 已提交
704 705 706 707
	return -1;
}

static void 
708
cciss_scsi_setup(ctlr_info_t *h)
L
Linus Torvalds 已提交
709 710 711
{
	struct cciss_scsi_adapter_data_t * shba;

712
	ccissscsi[h->ctlr].ndevices = 0;
L
Linus Torvalds 已提交
713 714 715 716 717 718 719
	shba = (struct cciss_scsi_adapter_data_t *)
		kmalloc(sizeof(*shba), GFP_KERNEL);	
	if (shba == NULL)
		return;
	shba->scsi_host = NULL;
	spin_lock_init(&shba->lock);
	shba->registered = 0;
720
	if (scsi_cmd_stack_setup(h, shba) != 0) {
L
Linus Torvalds 已提交
721 722 723
		kfree(shba);
		shba = NULL;
	}
724
	h->scsi_ctlr = shba;
L
Linus Torvalds 已提交
725 726 727
	return;
}

728 729
static void complete_scsi_command(CommandList_struct *c, int timeout,
	__u32 tag)
L
Linus Torvalds 已提交
730 731
{
	struct scsi_cmnd *cmd;
732
	ctlr_info_t *h;
L
Linus Torvalds 已提交
733 734
	ErrorInfo_struct *ei;

735
	ei = c->err_info;
L
Linus Torvalds 已提交
736 737

	/* First, see if it was a message rather than a command */
738 739
	if (c->Request.Type.Type == TYPE_MSG)  {
		c->cmd_type = CMD_MSG_DONE;
L
Linus Torvalds 已提交
740 741 742
		return;
	}

743 744
	cmd = (struct scsi_cmnd *) c->scsi_cmd;
	h = hba[c->ctlr];
L
Linus Torvalds 已提交
745

746
	scsi_dma_unmap(cmd);
747 748
	if (c->Header.SGTotal > h->max_cmd_sgentries)
		cciss_unmap_sg_chain_block(h, c);
L
Linus Torvalds 已提交
749 750 751 752 753 754 755 756 757 758 759 760 761 762

	cmd->result = (DID_OK << 16); 		/* host byte */
	cmd->result |= (COMMAND_COMPLETE << 8);	/* msg byte */
	/* cmd->result |= (GOOD < 1); */		/* status byte */

	cmd->result |= (ei->ScsiStatus);
	/* printk("Scsistatus is 0x%02x\n", ei->ScsiStatus);  */

	/* copy the sense data whether we need to or not. */

	memcpy(cmd->sense_buffer, ei->SenseInfo, 
		ei->SenseLen > SCSI_SENSE_BUFFERSIZE ?
			SCSI_SENSE_BUFFERSIZE : 
			ei->SenseLen);
763
	scsi_set_resid(cmd, ei->ResidualCnt);
L
Linus Torvalds 已提交
764 765 766 767 768 769 770 771 772 773 774

	if(ei->CommandStatus != 0) 
	{ /* an error has occurred */ 
		switch(ei->CommandStatus)
		{
			case CMD_TARGET_STATUS:
				/* Pass it up to the upper layers... */
				if( ei->ScsiStatus)
                		{
#if 0
                    			printk(KERN_WARNING "cciss: cmd %p "
775 776
						"has SCSI Status = %x\n",
						c, ei->ScsiStatus);
L
Linus Torvalds 已提交
777
#endif
778
					cmd->result |= (ei->ScsiStatus << 1);
L
Linus Torvalds 已提交
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
                		}
				else {  /* scsi status is zero??? How??? */
					
	/* Ordinarily, this case should never happen, but there is a bug
	   in some released firmware revisions that allows it to happen
	   if, for example, a 4100 backplane loses power and the tape
	   drive is in it.  We assume that it's a fatal error of some
	   kind because we can't show that it wasn't. We will make it
	   look like selection timeout since that is the most common
	   reason for this to occur, and it's severe enough. */

					cmd->result = DID_NO_CONNECT << 16;
				}
			break;
			case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
			break;
			case CMD_DATA_OVERRUN:
796
				dev_warn(&h->pdev->dev, "%p has"
L
Linus Torvalds 已提交
797
					" completed with data overrun "
798
					"reported\n", c);
L
Linus Torvalds 已提交
799 800
			break;
			case CMD_INVALID: {
801 802
				/* print_bytes(c, sizeof(*c), 1, 0);
				print_cmd(c); */
L
Linus Torvalds 已提交
803 804 805 806 807 808 809 810 811
     /* We get CMD_INVALID if you address a non-existent tape drive instead
	of a selection timeout (no response).  You will see this if you yank 
	out a tape drive, then try to access it. This is kind of a shame
	because it means that any other CMD_INVALID (e.g. driver bug) will
	get interpreted as a missing target. */
				cmd->result = DID_NO_CONNECT << 16;
				}
			break;
			case CMD_PROTOCOL_ERR:
812 813
				dev_warn(&h->pdev->dev,
					"%p has protocol error\n", c);
L
Linus Torvalds 已提交
814 815 816
                        break;
			case CMD_HARDWARE_ERR:
				cmd->result = DID_ERROR << 16;
817 818
				dev_warn(&h->pdev->dev,
					"%p had hardware error\n", c);
L
Linus Torvalds 已提交
819 820 821
                        break;
			case CMD_CONNECTION_LOST:
				cmd->result = DID_ERROR << 16;
822 823
				dev_warn(&h->pdev->dev,
					"%p had connection lost\n", c);
L
Linus Torvalds 已提交
824 825 826
			break;
			case CMD_ABORTED:
				cmd->result = DID_ABORT << 16;
827
				dev_warn(&h->pdev->dev, "%p was aborted\n", c);
L
Linus Torvalds 已提交
828 829 830
			break;
			case CMD_ABORT_FAILED:
				cmd->result = DID_ERROR << 16;
831 832
				dev_warn(&h->pdev->dev,
					"%p reports abort failed\n", c);
L
Linus Torvalds 已提交
833 834 835
			break;
			case CMD_UNSOLICITED_ABORT:
				cmd->result = DID_ABORT << 16;
836
				dev_warn(&h->pdev->dev, "%p aborted due to an "
837
					"unsolicited abort\n", c);
L
Linus Torvalds 已提交
838 839 840
			break;
			case CMD_TIMEOUT:
				cmd->result = DID_TIME_OUT << 16;
841
				dev_warn(&h->pdev->dev, "%p timedout\n", c);
L
Linus Torvalds 已提交
842
			break;
843 844 845 846 847
			case CMD_UNABORTABLE:
				cmd->result = DID_ERROR << 16;
				dev_warn(&h->pdev->dev, "c %p command "
					"unabortable\n", c);
			break;
L
Linus Torvalds 已提交
848 849
			default:
				cmd->result = DID_ERROR << 16;
850 851
				dev_warn(&h->pdev->dev,
					"%p returned unknown status %x\n", c,
L
Linus Torvalds 已提交
852 853 854 855
						ei->CommandStatus); 
		}
	}
	cmd->scsi_done(cmd);
856
	scsi_cmd_free(h, c);
L
Linus Torvalds 已提交
857 858 859
}

static int
860
cciss_scsi_detect(ctlr_info_t *h)
L
Linus Torvalds 已提交
861 862 863 864 865 866 867 868 869 870
{
	struct Scsi_Host *sh;
	int error;

	sh = scsi_host_alloc(&cciss_driver_template, sizeof(struct ctlr_info *));
	if (sh == NULL)
		goto fail;
	sh->io_port = 0;	// good enough?  FIXME, 
	sh->n_io_port = 0;	// I don't think we use these two...
	sh->this_id = SELF_SCSI_ID;  
871
	sh->sg_tablesize = h->maxsgentries;
872
	sh->max_cmd_len = MAX_COMMAND_SIZE;
L
Linus Torvalds 已提交
873 874

	((struct cciss_scsi_adapter_data_t *) 
875 876 877
		h->scsi_ctlr)->scsi_host = sh;
	sh->hostdata[0] = (unsigned long) h;
	sh->irq = h->intr[SIMPLE_MODE_INT];
L
Linus Torvalds 已提交
878
	sh->unique_id = sh->irq;
879
	error = scsi_add_host(sh, &h->pdev->dev);
L
Linus Torvalds 已提交
880 881 882 883 884 885 886 887 888 889 890 891 892
	if (error)
		goto fail_host_put;
	scsi_scan_host(sh);
	return 1;

 fail_host_put:
	scsi_host_put(sh);
 fail:
	return 0;
}

static void
cciss_unmap_one(struct pci_dev *pdev,
893
		CommandList_struct *c,
L
Linus Torvalds 已提交
894 895 896 897 898
		size_t buflen,
		int data_direction)
{
	u64bit addr64;

899 900
	addr64.val32.lower = c->SG[0].Addr.lower;
	addr64.val32.upper = c->SG[0].Addr.upper;
L
Linus Torvalds 已提交
901 902 903 904 905
	pci_unmap_single(pdev, (dma_addr_t) addr64.val, buflen, data_direction);
}

static void
cciss_map_one(struct pci_dev *pdev,
906
		CommandList_struct *c,
L
Linus Torvalds 已提交
907 908 909 910 911 912 913
		unsigned char *buf,
		size_t buflen,
		int data_direction)
{
	__u64 addr64;

	addr64 = (__u64) pci_map_single(pdev, buf, buflen, data_direction);
914
	c->SG[0].Addr.lower =
L
Linus Torvalds 已提交
915
	  (__u32) (addr64 & (__u64) 0x00000000FFFFFFFF);
916
	c->SG[0].Addr.upper =
L
Linus Torvalds 已提交
917
	  (__u32) ((addr64 >> 32) & (__u64) 0x00000000FFFFFFFF);
918 919 920
	c->SG[0].Len = buflen;
	c->Header.SGList = (__u8) 1;   /* no. SGs contig in this cmd */
	c->Header.SGTotal = (__u16) 1; /* total sgs in this cmd list */
L
Linus Torvalds 已提交
921 922 923
}

static int
924 925
cciss_scsi_do_simple_cmd(ctlr_info_t *h,
			CommandList_struct *c,
L
Linus Torvalds 已提交
926 927 928 929 930 931
			unsigned char *scsi3addr, 
			unsigned char *cdb,
			unsigned char cdblen,
			unsigned char *buf, int bufsize,
			int direction)
{
932
	DECLARE_COMPLETION_ONSTACK(wait);
L
Linus Torvalds 已提交
933

934 935 936 937 938
	c->cmd_type = CMD_IOCTL_PEND; /* treat this like an ioctl */
	c->scsi_cmd = NULL;
	c->Header.ReplyQueue = 0;  /* unused in simple mode */
	memcpy(&c->Header.LUN, scsi3addr, sizeof(c->Header.LUN));
	c->Header.Tag.lower = c->busaddr;  /* Use k. address of cmd as tag */
L
Linus Torvalds 已提交
939 940 941 942 943 944
	// Fill in the request block...

	/* printk("Using scsi3addr 0x%02x%0x2%0x2%0x2%0x2%0x2%0x2%0x2\n", 
		scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
		scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]); */

945 946 947 948 949 950 951
	memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
	memcpy(c->Request.CDB, cdb, cdblen);
	c->Request.Timeout = 0;
	c->Request.CDBLen = cdblen;
	c->Request.Type.Type = TYPE_CMD;
	c->Request.Type.Attribute = ATTR_SIMPLE;
	c->Request.Type.Direction = direction;
L
Linus Torvalds 已提交
952 953

	/* Fill in the SG list and do dma mapping */
954
	cciss_map_one(h->pdev, c, (unsigned char *) buf,
L
Linus Torvalds 已提交
955 956
			bufsize, DMA_FROM_DEVICE); 

957 958
	c->waiting = &wait;
	enqueue_cmd_and_start_io(h, c);
L
Linus Torvalds 已提交
959 960 961
	wait_for_completion(&wait);

	/* undo the dma mapping */
962
	cciss_unmap_one(h->pdev, c, bufsize, DMA_FROM_DEVICE);
L
Linus Torvalds 已提交
963 964 965 966
	return(0);
}

static void 
967
cciss_scsi_interpret_error(ctlr_info_t *h, CommandList_struct *c)
L
Linus Torvalds 已提交
968 969 970
{
	ErrorInfo_struct *ei;

971
	ei = c->err_info;
L
Linus Torvalds 已提交
972 973 974
	switch(ei->CommandStatus)
	{
		case CMD_TARGET_STATUS:
975 976 977 978 979
			dev_warn(&h->pdev->dev,
				"cmd %p has completed with errors\n", c);
			dev_warn(&h->pdev->dev,
				"cmd %p has SCSI Status = %x\n",
				c, ei->ScsiStatus);
L
Linus Torvalds 已提交
980
			if (ei->ScsiStatus == 0)
981 982
				dev_warn(&h->pdev->dev,
				"SCSI status is abnormally zero.  "
L
Linus Torvalds 已提交
983 984 985 986 987
				"(probably indicates selection timeout "
				"reported incorrectly due to a known "
				"firmware bug, circa July, 2001.)\n");
		break;
		case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
988
			dev_info(&h->pdev->dev, "UNDERRUN\n");
L
Linus Torvalds 已提交
989 990
		break;
		case CMD_DATA_OVERRUN:
991
			dev_warn(&h->pdev->dev, "%p has"
L
Linus Torvalds 已提交
992
				" completed with data overrun "
993
				"reported\n", c);
L
Linus Torvalds 已提交
994 995 996 997
		break;
		case CMD_INVALID: {
			/* controller unfortunately reports SCSI passthru's */
			/* to non-existent targets as invalid commands. */
998 999
			dev_warn(&h->pdev->dev,
				"%p is reported invalid (probably means "
1000 1001 1002
				"target device no longer present)\n", c);
			/* print_bytes((unsigned char *) c, sizeof(*c), 1, 0);
			print_cmd(c);  */
L
Linus Torvalds 已提交
1003 1004 1005
			}
		break;
		case CMD_PROTOCOL_ERR:
1006
			dev_warn(&h->pdev->dev, "%p has protocol error\n", c);
L
Linus Torvalds 已提交
1007 1008 1009
		break;
		case CMD_HARDWARE_ERR:
			/* cmd->result = DID_ERROR << 16; */
1010
			dev_warn(&h->pdev->dev, "%p had hardware error\n", c);
L
Linus Torvalds 已提交
1011 1012
		break;
		case CMD_CONNECTION_LOST:
1013
			dev_warn(&h->pdev->dev, "%p had connection lost\n", c);
L
Linus Torvalds 已提交
1014 1015
		break;
		case CMD_ABORTED:
1016
			dev_warn(&h->pdev->dev, "%p was aborted\n", c);
L
Linus Torvalds 已提交
1017 1018
		break;
		case CMD_ABORT_FAILED:
1019 1020
			dev_warn(&h->pdev->dev,
				"%p reports abort failed\n", c);
L
Linus Torvalds 已提交
1021 1022
		break;
		case CMD_UNSOLICITED_ABORT:
1023
			dev_warn(&h->pdev->dev,
1024
				"%p aborted due to an unsolicited abort\n", c);
L
Linus Torvalds 已提交
1025 1026
		break;
		case CMD_TIMEOUT:
1027
			dev_warn(&h->pdev->dev, "%p timedout\n", c);
L
Linus Torvalds 已提交
1028
		break;
1029 1030 1031 1032
		case CMD_UNABORTABLE:
			dev_warn(&h->pdev->dev,
				"%p unabortable\n", c);
		break;
L
Linus Torvalds 已提交
1033
		default:
1034 1035 1036
			dev_warn(&h->pdev->dev,
				"%p returned unknown status %x\n",
				c, ei->CommandStatus);
L
Linus Torvalds 已提交
1037 1038 1039 1040
	}
}

static int
1041
cciss_scsi_do_inquiry(ctlr_info_t *h, unsigned char *scsi3addr,
1042 1043
	unsigned char page, unsigned char *buf,
	unsigned char bufsize)
L
Linus Torvalds 已提交
1044 1045
{
	int rc;
1046
	CommandList_struct *c;
L
Linus Torvalds 已提交
1047 1048 1049 1050
	char cdb[6];
	ErrorInfo_struct *ei;
	unsigned long flags;

1051 1052 1053
	spin_lock_irqsave(&h->lock, flags);
	c = scsi_cmd_alloc(h);
	spin_unlock_irqrestore(&h->lock, flags);
L
Linus Torvalds 已提交
1054

1055
	if (c == NULL) {			/* trouble... */
L
Linus Torvalds 已提交
1056 1057 1058 1059
		printk("cmd_alloc returned NULL!\n");
		return -1;
	}

1060
	ei = c->err_info;
L
Linus Torvalds 已提交
1061 1062

	cdb[0] = CISS_INQUIRY;
1063 1064
	cdb[1] = (page != 0);
	cdb[2] = page;
L
Linus Torvalds 已提交
1065
	cdb[3] = 0;
1066
	cdb[4] = bufsize;
L
Linus Torvalds 已提交
1067
	cdb[5] = 0;
1068
	rc = cciss_scsi_do_simple_cmd(h, c, scsi3addr, cdb,
1069
				6, buf, bufsize, XFER_READ);
L
Linus Torvalds 已提交
1070 1071 1072 1073 1074

	if (rc != 0) return rc; /* something went wrong */

	if (ei->CommandStatus != 0 && 
	    ei->CommandStatus != CMD_DATA_UNDERRUN) {
1075
		cciss_scsi_interpret_error(h, c);
L
Linus Torvalds 已提交
1076 1077
		rc = -1;
	}
1078 1079 1080
	spin_lock_irqsave(&h->lock, flags);
	scsi_cmd_free(h, c);
	spin_unlock_irqrestore(&h->lock, flags);
L
Linus Torvalds 已提交
1081 1082 1083
	return rc;	
}

1084
/* Get the device id from inquiry page 0x83 */
1085
static int cciss_scsi_get_device_id(ctlr_info_t *h, unsigned char *scsi3addr,
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
	unsigned char *device_id, int buflen)
{
	int rc;
	unsigned char *buf;

	if (buflen > 16)
		buflen = 16;
	buf = kzalloc(64, GFP_KERNEL);
	if (!buf)
		return -1;
1096
	rc = cciss_scsi_do_inquiry(h, scsi3addr, 0x83, buf, 64);
1097 1098 1099 1100 1101 1102
	if (rc == 0)
		memcpy(device_id, &buf[8], buflen);
	kfree(buf);
	return rc != 0;
}

L
Linus Torvalds 已提交
1103
static int
1104
cciss_scsi_do_report_phys_luns(ctlr_info_t *h,
L
Linus Torvalds 已提交
1105 1106 1107
		ReportLunData_struct *buf, int bufsize)
{
	int rc;
1108
	CommandList_struct *c;
L
Linus Torvalds 已提交
1109 1110 1111 1112 1113
	unsigned char cdb[12];
	unsigned char scsi3addr[8]; 
	ErrorInfo_struct *ei;
	unsigned long flags;

1114 1115 1116 1117
	spin_lock_irqsave(&h->lock, flags);
	c = scsi_cmd_alloc(h);
	spin_unlock_irqrestore(&h->lock, flags);
	if (c == NULL) {			/* trouble... */
L
Linus Torvalds 已提交
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
		printk("cmd_alloc returned NULL!\n");
		return -1;
	}

	memset(&scsi3addr[0], 0, 8); /* address the controller */
	cdb[0] = CISS_REPORT_PHYS;
	cdb[1] = 0;
	cdb[2] = 0;
	cdb[3] = 0;
	cdb[4] = 0;
	cdb[5] = 0;
	cdb[6] = (bufsize >> 24) & 0xFF;  //MSB
	cdb[7] = (bufsize >> 16) & 0xFF;
	cdb[8] = (bufsize >> 8) & 0xFF;
	cdb[9] = bufsize & 0xFF;
	cdb[10] = 0;
	cdb[11] = 0;

1136
	rc = cciss_scsi_do_simple_cmd(h, c, scsi3addr,
L
Linus Torvalds 已提交
1137 1138 1139 1140 1141 1142
				cdb, 12, 
				(unsigned char *) buf, 
				bufsize, XFER_READ);

	if (rc != 0) return rc; /* something went wrong */

1143
	ei = c->err_info;
L
Linus Torvalds 已提交
1144 1145
	if (ei->CommandStatus != 0 && 
	    ei->CommandStatus != CMD_DATA_UNDERRUN) {
1146
		cciss_scsi_interpret_error(h, c);
L
Linus Torvalds 已提交
1147 1148
		rc = -1;
	}
1149 1150 1151
	spin_lock_irqsave(&h->lock, flags);
	scsi_cmd_free(h, c);
	spin_unlock_irqrestore(&h->lock, flags);
L
Linus Torvalds 已提交
1152 1153 1154 1155
	return rc;	
}

static void
1156
cciss_update_non_disk_devices(ctlr_info_t *h, int hostno)
L
Linus Torvalds 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
{
	/* the idea here is we could get notified from /proc
	   that some devices have changed, so we do a report 
	   physical luns cmd, and adjust our list of devices 
	   accordingly.  (We can't rely on the scsi-mid layer just
	   doing inquiries, because the "busses" that the scsi 
	   mid-layer probes are totally fabricated by this driver,
	   so new devices wouldn't show up.

	   the scsi3addr's of devices won't change so long as the 
	   adapter is not reset.  That means we can rescan and 
	   tell which devices we already know about, vs. new 
	   devices, vs.  disappearing devices.

	   Also, if you yank out a tape drive, then put in a disk
	   in it's place, (say, a configured volume from another 
	   array controller for instance)  _don't_ poke this driver 
           (so it thinks it's still a tape, but _do_ poke the scsi 
           mid layer, so it does an inquiry... the scsi mid layer 
           will see the physical disk.  This would be bad.  Need to
	   think about how to prevent that.  One idea would be to 
	   snoop all scsi responses and if an inquiry repsonse comes
	   back that reports a disk, chuck it an return selection
	   timeout instead and adjust our table...  Not sure i like
	   that though.  

	 */
1184 1185
#define OBDR_TAPE_INQ_SIZE 49
#define OBDR_TAPE_SIG "$DR-10"
L
Linus Torvalds 已提交
1186
	ReportLunData_struct *ld_buff;
1187
	unsigned char *inq_buff;
L
Linus Torvalds 已提交
1188 1189 1190
	unsigned char scsi3addr[8];
	__u32 num_luns=0;
	unsigned char *ch;
1191
	struct cciss_scsi_dev_t *currentsd, *this_device;
L
Linus Torvalds 已提交
1192 1193 1194 1195
	int ncurrent=0;
	int reportlunsize = sizeof(*ld_buff) + CISS_MAX_PHYS_LUN * 8;
	int i;

1196
	ld_buff = kzalloc(reportlunsize, GFP_KERNEL);
1197
	inq_buff = kmalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
1198 1199 1200 1201 1202
	currentsd = kzalloc(sizeof(*currentsd) *
			(CCISS_MAX_SCSI_DEVS_PER_HBA+1), GFP_KERNEL);
	if (ld_buff == NULL || inq_buff == NULL || currentsd == NULL) {
		printk(KERN_ERR "cciss: out of memory\n");
		goto out;
L
Linus Torvalds 已提交
1203
	}
1204
	this_device = &currentsd[CCISS_MAX_SCSI_DEVS_PER_HBA];
1205
	if (cciss_scsi_do_report_phys_luns(h, ld_buff, reportlunsize) == 0) {
L
Linus Torvalds 已提交
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
		ch = &ld_buff->LUNListLength[0];
		num_luns = ((ch[0]<<24) | (ch[1]<<16) | (ch[2]<<8) | ch[3]) / 8;
		if (num_luns > CISS_MAX_PHYS_LUN) {
			printk(KERN_WARNING 
				"cciss: Maximum physical LUNs (%d) exceeded.  "
				"%d LUNs ignored.\n", CISS_MAX_PHYS_LUN, 
				num_luns - CISS_MAX_PHYS_LUN);
			num_luns = CISS_MAX_PHYS_LUN;
		}
	}
	else {
		printk(KERN_ERR  "cciss: Report physical LUNs failed.\n");
		goto out;
	}


	/* adjust our table of devices */	
1223
	for (i = 0; i < num_luns; i++) {
L
Linus Torvalds 已提交
1224 1225
		/* for each physical lun, do an inquiry */
		if (ld_buff->LUN[i][3] & 0xC0) continue;
1226
		memset(inq_buff, 0, OBDR_TAPE_INQ_SIZE);
L
Linus Torvalds 已提交
1227 1228
		memcpy(&scsi3addr[0], &ld_buff->LUN[i][0], 8);

1229
		if (cciss_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
1230
			(unsigned char) OBDR_TAPE_INQ_SIZE) != 0)
L
Linus Torvalds 已提交
1231
			/* Inquiry failed (msg printed already) */
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
			continue; /* so we will skip this device. */

		this_device->devtype = (inq_buff[0] & 0x1f);
		this_device->bus = -1;
		this_device->target = -1;
		this_device->lun = -1;
		memcpy(this_device->scsi3addr, scsi3addr, 8);
		memcpy(this_device->vendor, &inq_buff[8],
			sizeof(this_device->vendor));
		memcpy(this_device->model, &inq_buff[16],
			sizeof(this_device->model));
		memcpy(this_device->revision, &inq_buff[32],
			sizeof(this_device->revision));
		memset(this_device->device_id, 0,
			sizeof(this_device->device_id));
1247
		cciss_scsi_get_device_id(h, scsi3addr,
1248 1249 1250
			this_device->device_id, sizeof(this_device->device_id));

		switch (this_device->devtype)
L
Linus Torvalds 已提交
1251
		{
1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
		  case 0x05: /* CD-ROM */ {

			/* We don't *really* support actual CD-ROM devices,
			 * just this "One Button Disaster Recovery" tape drive
			 * which temporarily pretends to be a CD-ROM drive.
			 * So we check that the device is really an OBDR tape
			 * device by checking for "$DR-10" in bytes 43-48 of
			 * the inquiry data.
			 */
				char obdr_sig[7];

				strncpy(obdr_sig, &inq_buff[43], 6);
				obdr_sig[6] = '\0';
				if (strncmp(obdr_sig, OBDR_TAPE_SIG, 6) != 0)
					/* Not OBDR device, ignore it. */
					break;
			}
			/* fall through . . . */
L
Linus Torvalds 已提交
1270 1271 1272 1273
		  case 0x01: /* sequential access, (tape) */
		  case 0x08: /* medium changer */
			if (ncurrent >= CCISS_MAX_SCSI_DEVS_PER_HBA) {
				printk(KERN_INFO "cciss%d: %s ignored, "
1274
					"too many devices.\n", h->ctlr,
1275
					scsi_device_type(this_device->devtype));
L
Linus Torvalds 已提交
1276 1277
				break;
			}
1278
			currentsd[ncurrent] = *this_device;
L
Linus Torvalds 已提交
1279 1280 1281 1282 1283 1284 1285
			ncurrent++;
			break;
		  default: 
			break;
		}
	}

1286
	adjust_cciss_scsi_table(h, hostno, currentsd, ncurrent);
L
Linus Torvalds 已提交
1287 1288 1289
out:
	kfree(inq_buff);
	kfree(ld_buff);
1290
	kfree(currentsd);
L
Linus Torvalds 已提交
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
	return;
}

static int
is_keyword(char *ptr, int len, char *verb)  // Thanks to ncr53c8xx.c
{
	int verb_len = strlen(verb);
	if (len >= verb_len && !memcmp(verb,ptr,verb_len))
		return verb_len;
	else
		return 0;
}

static int
1305
cciss_scsi_user_command(ctlr_info_t *h, int hostno, char *buffer, int length)
L
Linus Torvalds 已提交
1306 1307 1308 1309
{
	int arg_len;

	if ((arg_len = is_keyword(buffer, length, "rescan")) != 0)
1310
		cciss_update_non_disk_devices(h, hostno);
L
Linus Torvalds 已提交
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
	else
		return -EINVAL;
	return length;
}


static int
cciss_scsi_proc_info(struct Scsi_Host *sh,
		char *buffer, /* data buffer */
		char **start, 	   /* where data in buffer starts */
		off_t offset,	   /* offset from start of imaginary file */
		int length, 	   /* length of data in buffer */
		int func)	   /* 0 == read, 1 == write */
{

	int buflen, datalen;
1327
	ctlr_info_t *h;
1328
	int i;
L
Linus Torvalds 已提交
1329

1330 1331
	h = (ctlr_info_t *) sh->hostdata[0];
	if (h == NULL)  /* This really shouldn't ever happen. */
L
Linus Torvalds 已提交
1332 1333 1334
		return -EINVAL;

	if (func == 0) {	/* User is reading from /proc/scsi/ciss*?/?*  */
1335
		buflen = sprintf(buffer, "cciss%d: SCSI host: %d\n",
1336
				h->ctlr, sh->host_no);
1337 1338 1339 1340 1341 1342 1343 1344 1345

		/* this information is needed by apps to know which cciss
		   device corresponds to which scsi host number without
		   having to open a scsi target device node.  The device
		   information is not a duplicate of /proc/scsi/scsi because
		   the two may be out of sync due to scsi hotplug, rather
		   this info is for an app to be able to use to know how to
		   get them back in sync. */

1346 1347 1348
		for (i = 0; i < ccissscsi[h->ctlr].ndevices; i++) {
			struct cciss_scsi_dev_t *sd =
				&ccissscsi[h->ctlr].dev[i];
1349 1350 1351 1352 1353 1354 1355 1356 1357
			buflen += sprintf(&buffer[buflen], "c%db%dt%dl%d %02d "
				"0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
				sh->host_no, sd->bus, sd->target, sd->lun,
				sd->devtype,
				sd->scsi3addr[0], sd->scsi3addr[1],
				sd->scsi3addr[2], sd->scsi3addr[3],
				sd->scsi3addr[4], sd->scsi3addr[5],
				sd->scsi3addr[6], sd->scsi3addr[7]);
		}
L
Linus Torvalds 已提交
1358 1359 1360 1361 1362 1363 1364 1365
		datalen = buflen - offset;
		if (datalen < 0) { 	/* they're reading past EOF. */
			datalen = 0;
			*start = buffer+buflen;	
		} else
			*start = buffer + offset;
		return(datalen);
	} else 	/* User is writing to /proc/scsi/cciss*?/?*  ... */
1366
		return cciss_scsi_user_command(h, sh->host_no,
L
Linus Torvalds 已提交
1367 1368 1369 1370 1371
			buffer, length);	
} 

/* cciss_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci 
   dma mapping  and fills in the scatter gather entries of the 
1372
   cciss command, c. */
L
Linus Torvalds 已提交
1373

1374
static void cciss_scatter_gather(ctlr_info_t *h, CommandList_struct *c,
1375
	struct scsi_cmnd *cmd)
L
Linus Torvalds 已提交
1376
{
1377 1378
	unsigned int len;
	struct scatterlist *sg;
L
Linus Torvalds 已提交
1379
	__u64 addr64;
1380 1381 1382 1383 1384 1385 1386 1387
	int request_nsgs, i, chained, sg_index;
	struct cciss_scsi_adapter_data_t *sa = h->scsi_ctlr;
	SGDescriptor_struct *curr_sg;

	BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);

	chained = 0;
	sg_index = 0;
1388
	curr_sg = c->SG;
1389 1390 1391 1392 1393 1394 1395
	request_nsgs = scsi_dma_map(cmd);
	if (request_nsgs) {
		scsi_for_each_sg(cmd, sg, request_nsgs, i) {
			if (sg_index + 1 == h->max_cmd_sgentries &&
				!chained && request_nsgs - i > 1) {
				chained = 1;
				sg_index = 0;
1396
				curr_sg = sa->cmd_sg_list[c->cmdindex];
1397
			}
1398 1399
			addr64 = (__u64) sg_dma_address(sg);
			len  = sg_dma_len(sg);
1400 1401 1402 1403 1404 1405 1406
			curr_sg[sg_index].Addr.lower =
				(__u32) (addr64 & 0x0FFFFFFFFULL);
			curr_sg[sg_index].Addr.upper =
				(__u32) ((addr64 >> 32) & 0x0FFFFFFFFULL);
			curr_sg[sg_index].Len = len;
			curr_sg[sg_index].Ext = 0;
			++sg_index;
L
Linus Torvalds 已提交
1407
		}
1408
		if (chained)
1409 1410
			cciss_map_sg_chain_block(h, c,
				sa->cmd_sg_list[c->cmdindex],
1411 1412
				(request_nsgs - (h->max_cmd_sgentries - 1)) *
					sizeof(SGDescriptor_struct));
1413
	}
1414 1415 1416
	/* track how many SG entries we are using */
	if (request_nsgs > h->maxSG)
		h->maxSG = request_nsgs;
1417
	c->Header.SGTotal = (__u8) request_nsgs + chained;
1418
	if (request_nsgs > h->max_cmd_sgentries)
1419
		c->Header.SGList = h->max_cmd_sgentries;
1420
	else
1421
		c->Header.SGList = c->Header.SGTotal;
L
Linus Torvalds 已提交
1422 1423 1424 1425 1426
	return;
}


static int
J
Jeff Garzik 已提交
1427
cciss_scsi_queue_command_lck(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
L
Linus Torvalds 已提交
1428
{
1429 1430
	ctlr_info_t *h;
	int rc;
L
Linus Torvalds 已提交
1431
	unsigned char scsi3addr[8];
1432
	CommandList_struct *c;
L
Linus Torvalds 已提交
1433 1434 1435 1436
	unsigned long flags;

	// Get the ptr to our adapter structure (hba[i]) out of cmd->host.
	// We violate cmd->host privacy here.  (Is there another way?)
1437
	h = (ctlr_info_t *) cmd->device->host->hostdata[0];
L
Linus Torvalds 已提交
1438

1439
	rc = lookup_scsi3addr(h, cmd->device->channel, cmd->device->id,
L
Linus Torvalds 已提交
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
			cmd->device->lun, scsi3addr);
	if (rc != 0) {
		/* the scsi nexus does not match any that we presented... */
		/* pretend to mid layer that we got selection timeout */
		cmd->result = DID_NO_CONNECT << 16;
		done(cmd);
		/* we might want to think about registering controller itself
		   as a processor device on the bus so sg binds to it. */
		return 0;
	}

	/* Ok, we have a reasonable scsi nexus, so send the cmd down, and
           see what the device thinks of it. */

1454 1455 1456 1457
	spin_lock_irqsave(&h->lock, flags);
	c = scsi_cmd_alloc(h);
	spin_unlock_irqrestore(&h->lock, flags);
	if (c == NULL) {			/* trouble... */
1458
		dev_warn(&h->pdev->dev, "scsi_cmd_alloc returned NULL!\n");
L
Linus Torvalds 已提交
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468
		/* FIXME: next 3 lines are -> BAD! <- */
		cmd->result = DID_NO_CONNECT << 16;
		done(cmd);
		return 0;
	}

	// Fill in the command list header

	cmd->scsi_done = done;    // save this for use by completion code 

1469 1470
	/* save c in case we have to abort it */
	cmd->host_scribble = (unsigned char *) c;
L
Linus Torvalds 已提交
1471

1472 1473 1474 1475 1476
	c->cmd_type = CMD_SCSI;
	c->scsi_cmd = cmd;
	c->Header.ReplyQueue = 0;  /* unused in simple mode */
	memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
	c->Header.Tag.lower = c->busaddr;  /* Use k. address of cmd as tag */
L
Linus Torvalds 已提交
1477 1478 1479
	
	// Fill in the request block...

1480 1481 1482 1483 1484 1485 1486
	c->Request.Timeout = 0;
	memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
	BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
	c->Request.CDBLen = cmd->cmd_len;
	memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
	c->Request.Type.Type = TYPE_CMD;
	c->Request.Type.Attribute = ATTR_SIMPLE;
L
Linus Torvalds 已提交
1487 1488
	switch(cmd->sc_data_direction)
	{
1489 1490 1491 1492 1493 1494 1495 1496 1497
	  case DMA_TO_DEVICE:
		c->Request.Type.Direction = XFER_WRITE;
		break;
	  case DMA_FROM_DEVICE:
		c->Request.Type.Direction = XFER_READ;
		break;
	  case DMA_NONE:
		c->Request.Type.Direction = XFER_NONE;
		break;
L
Linus Torvalds 已提交
1498 1499 1500 1501 1502
	  case DMA_BIDIRECTIONAL:
		// This can happen if a buggy application does a scsi passthru
		// and sets both inlen and outlen to non-zero. ( see
		// ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )

1503
		c->Request.Type.Direction = XFER_RSVD;
L
Linus Torvalds 已提交
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
		// This is technically wrong, and cciss controllers should
		// reject it with CMD_INVALID, which is the most correct 
		// response, but non-fibre backends appear to let it 
		// slide by, and give the same results as if this field
		// were set correctly.  Either way is acceptable for
		// our purposes here.

		break;

	  default: 
1514
		dev_warn(&h->pdev->dev, "unknown data direction: %d\n",
L
Linus Torvalds 已提交
1515 1516 1517 1518
			cmd->sc_data_direction);
		BUG();
		break;
	}
1519 1520
	cciss_scatter_gather(h, c, cmd);
	enqueue_cmd_and_start_io(h, c);
L
Linus Torvalds 已提交
1521 1522 1523 1524
	/* the cmd'll come back via intr handler in complete_scsi_command()  */
	return 0;
}

J
Jeff Garzik 已提交
1525 1526
static DEF_SCSI_QCMD(cciss_scsi_queue_command)

1527
static void cciss_unregister_scsi(ctlr_info_t *h)
L
Linus Torvalds 已提交
1528 1529 1530 1531 1532 1533 1534
{
	struct cciss_scsi_adapter_data_t *sa;
	struct cciss_scsi_cmd_stack_t *stk;
	unsigned long flags;

	/* we are being forcibly unloaded, and may not refuse. */

1535 1536
	spin_lock_irqsave(&h->lock, flags);
	sa = h->scsi_ctlr;
L
Linus Torvalds 已提交
1537 1538 1539 1540
	stk = &sa->cmd_stack; 

	/* if we weren't ever actually registered, don't unregister */ 
	if (sa->registered) {
1541
		spin_unlock_irqrestore(&h->lock, flags);
L
Linus Torvalds 已提交
1542 1543
		scsi_remove_host(sa->scsi_host);
		scsi_host_put(sa->scsi_host);
1544
		spin_lock_irqsave(&h->lock, flags);
L
Linus Torvalds 已提交
1545 1546 1547 1548 1549
	}

	/* set scsi_host to NULL so our detect routine will 
	   find us on register */
	sa->scsi_host = NULL;
1550 1551
	spin_unlock_irqrestore(&h->lock, flags);
	scsi_cmd_stack_free(h);
L
Linus Torvalds 已提交
1552 1553 1554
	kfree(sa);
}

1555
static int cciss_engage_scsi(ctlr_info_t *h)
L
Linus Torvalds 已提交
1556 1557 1558 1559 1560
{
	struct cciss_scsi_adapter_data_t *sa;
	struct cciss_scsi_cmd_stack_t *stk;
	unsigned long flags;

1561 1562
	spin_lock_irqsave(&h->lock, flags);
	sa = h->scsi_ctlr;
L
Linus Torvalds 已提交
1563 1564
	stk = &sa->cmd_stack; 

1565
	if (sa->registered) {
1566
		dev_info(&h->pdev->dev, "SCSI subsystem already engaged.\n");
1567
		spin_unlock_irqrestore(&h->lock, flags);
1568
		return -ENXIO;
L
Linus Torvalds 已提交
1569
	}
1570
	sa->registered = 1;
1571 1572 1573
	spin_unlock_irqrestore(&h->lock, flags);
	cciss_update_non_disk_devices(h, -1);
	cciss_scsi_detect(h);
L
Linus Torvalds 已提交
1574 1575 1576 1577
	return 0;
}

static void
1578
cciss_seq_tape_report(struct seq_file *seq, ctlr_info_t *h)
L
Linus Torvalds 已提交
1579 1580 1581
{
	unsigned long flags;

1582
	CPQ_TAPE_LOCK(h, flags);
1583
	seq_printf(seq,
1584
		"Sequential access devices: %d\n\n",
1585 1586
			ccissscsi[h->ctlr].ndevices);
	CPQ_TAPE_UNLOCK(h, flags);
L
Linus Torvalds 已提交
1587 1588
}

1589 1590 1591 1592 1593 1594 1595 1596
static int wait_for_device_to_become_ready(ctlr_info_t *h,
	unsigned char lunaddr[])
{
	int rc;
	int count = 0;
	int waittime = HZ;
	CommandList_struct *c;

1597
	c = cmd_alloc(h);
1598
	if (!c) {
1599 1600
		dev_warn(&h->pdev->dev, "out of memory in "
			"wait_for_device_to_become_ready.\n");
1601 1602 1603 1604 1605 1606 1607 1608 1609
		return IO_ERROR;
	}

	/* Send test unit ready until device ready, or give up. */
	while (count < 20) {

		/* Wait for a bit.  do this first, because if we send
		 * the TUR right away, the reset will just abort it.
		 */
1610
		schedule_timeout_uninterruptible(waittime);
1611 1612 1613 1614 1615 1616 1617
		count++;

		/* Increase wait time with each try, up to a point. */
		if (waittime < (HZ * 30))
			waittime = waittime * 2;

		/* Send the Test Unit Ready */
1618
		rc = fill_cmd(h, c, TEST_UNIT_READY, NULL, 0, 0,
1619
			lunaddr, TYPE_CMD);
1620 1621 1622 1623
		if (rc == 0)
			rc = sendcmd_withirq_core(h, c, 0);

		(void) process_sendcmd_error(h, c);
1624

1625 1626
		if (rc != 0)
			goto retry_tur;
1627

1628
		if (c->err_info->CommandStatus == CMD_SUCCESS)
1629 1630
			break;

1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
		if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
			c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
			if (c->err_info->SenseInfo[2] == NO_SENSE)
				break;
			if (c->err_info->SenseInfo[2] == UNIT_ATTENTION) {
				unsigned char asc;
				asc = c->err_info->SenseInfo[12];
				check_for_unit_attention(h, c);
				if (asc == POWER_OR_RESET)
					break;
			}
		}
retry_tur:
1644
		dev_warn(&h->pdev->dev, "Waiting %d secs "
1645
			"for device to become ready.\n",
1646
			waittime / HZ);
1647 1648 1649 1650
		rc = 1; /* device not ready. */
	}

	if (rc)
1651
		dev_warn(&h->pdev->dev, "giving up on device.\n");
1652
	else
1653
		dev_warn(&h->pdev->dev, "device is ready.\n");
1654

1655
	cmd_free(h, c);
1656 1657
	return rc;
}
1658

1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
/* Need at least one of these error handlers to keep ../scsi/hosts.c from 
 * complaining.  Doing a host- or bus-reset can't do anything good here. 
 * Despite what it might say in scsi_error.c, there may well be commands
 * on the controller, as the cciss driver registers twice, once as a block
 * device for the logical drives, and once as a scsi device, for any tape
 * drives.  So we know there are no commands out on the tape drives, but we
 * don't know there are no commands on the controller, and it is likely 
 * that there probably are, as the cciss block device is most commonly used
 * as a boot device (embedded controller on HP/Compaq systems.)
*/

static int cciss_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
{
	int rc;
	CommandList_struct *cmd_in_trouble;
1674
	unsigned char lunaddr[8];
1675
	ctlr_info_t *h;
1676 1677

	/* find the controller to which the command to be aborted was sent */
1678 1679
	h = (ctlr_info_t *) scsicmd->device->host->hostdata[0];
	if (h == NULL) /* paranoia */
1680
		return FAILED;
1681
	dev_warn(&h->pdev->dev, "resetting tape drive or medium changer.\n");
1682 1683
	/* find the command that's giving us trouble */
	cmd_in_trouble = (CommandList_struct *) scsicmd->host_scribble;
1684
	if (cmd_in_trouble == NULL) /* paranoia */
1685
		return FAILED;
1686
	memcpy(lunaddr, &cmd_in_trouble->Header.LUN.LunAddrBytes[0], 8);
1687
	/* send a reset to the SCSI LUN which the command was sent to */
1688
	rc = sendcmd_withirq(h, CCISS_RESET_MSG, NULL, 0, 0, lunaddr,
1689
		TYPE_MSG);
1690
	if (rc == 0 && wait_for_device_to_become_ready(h, lunaddr) == 0)
1691
		return SUCCESS;
1692
	dev_warn(&h->pdev->dev, "resetting device failed.\n");
1693 1694 1695 1696 1697 1698 1699
	return FAILED;
}

static int  cciss_eh_abort_handler(struct scsi_cmnd *scsicmd)
{
	int rc;
	CommandList_struct *cmd_to_abort;
1700
	unsigned char lunaddr[8];
1701
	ctlr_info_t *h;
1702 1703

	/* find the controller to which the command to be aborted was sent */
1704 1705
	h = (ctlr_info_t *) scsicmd->device->host->hostdata[0];
	if (h == NULL) /* paranoia */
1706
		return FAILED;
1707
	dev_warn(&h->pdev->dev, "aborting tardy SCSI cmd\n");
1708 1709 1710 1711 1712

	/* find the command to be aborted */
	cmd_to_abort = (CommandList_struct *) scsicmd->host_scribble;
	if (cmd_to_abort == NULL) /* paranoia */
		return FAILED;
1713
	memcpy(lunaddr, &cmd_to_abort->Header.LUN.LunAddrBytes[0], 8);
1714
	rc = sendcmd_withirq(h, CCISS_ABORT_MSG, &cmd_to_abort->Header.Tag,
1715
		0, 0, lunaddr, TYPE_MSG);
1716 1717 1718 1719 1720 1721
	if (rc == 0)
		return SUCCESS;
	return FAILED;

}

L
Linus Torvalds 已提交
1722 1723 1724 1725 1726 1727 1728
#else /* no CONFIG_CISS_SCSI_TAPE */

/* If no tape support, then these become defined out of existence */

#define cciss_scsi_setup(cntl_num)

#endif /* CONFIG_CISS_SCSI_TAPE */