blob: 4b6861cf0417f1f317e1130205c6b1d717b6e333 [file] [log] [blame]
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001/*
2 * SuperTrak EX Series Storage Controller driver for Linux
3 *
4 * Copyright (C) 2005, 2006 Promise Technology Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Written By:
12 * Ed Lin <promise_linux@promise.com>
13 *
Jeff Garzik5a25ba12006-09-01 03:12:19 -040014 */
15
16#include <linux/init.h>
17#include <linux/errno.h>
18#include <linux/kernel.h>
19#include <linux/delay.h>
Jeff Garzik5a25ba12006-09-01 03:12:19 -040020#include <linux/time.h>
21#include <linux/pci.h>
22#include <linux/blkdev.h>
23#include <linux/interrupt.h>
24#include <linux/types.h>
25#include <linux/module.h>
26#include <linux/spinlock.h>
27#include <asm/io.h>
28#include <asm/irq.h>
29#include <asm/byteorder.h>
30#include <scsi/scsi.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_cmnd.h>
33#include <scsi/scsi_host.h>
Ed Lincf355882006-09-01 14:31:51 +080034#include <scsi/scsi_tcq.h>
Ed Linc25da0a2007-05-09 20:50:42 -080035#include <scsi/scsi_dbg.h>
Jeff Garzik5a25ba12006-09-01 03:12:19 -040036
37#define DRV_NAME "stex"
Ed Linc25da0a2007-05-09 20:50:42 -080038#define ST_DRIVER_VERSION "3.6.0000.1"
Ed Linfb4f66b2006-09-27 19:23:41 +080039#define ST_VER_MAJOR 3
Ed Linc25da0a2007-05-09 20:50:42 -080040#define ST_VER_MINOR 6
Jeff Garzik5a25ba12006-09-01 03:12:19 -040041#define ST_OEM 0
Ed Linfb4f66b2006-09-27 19:23:41 +080042#define ST_BUILD_VER 1
Jeff Garzik5a25ba12006-09-01 03:12:19 -040043
44enum {
45 /* MU register offset */
46 IMR0 = 0x10, /* MU_INBOUND_MESSAGE_REG0 */
47 IMR1 = 0x14, /* MU_INBOUND_MESSAGE_REG1 */
48 OMR0 = 0x18, /* MU_OUTBOUND_MESSAGE_REG0 */
49 OMR1 = 0x1c, /* MU_OUTBOUND_MESSAGE_REG1 */
50 IDBL = 0x20, /* MU_INBOUND_DOORBELL */
51 IIS = 0x24, /* MU_INBOUND_INTERRUPT_STATUS */
52 IIM = 0x28, /* MU_INBOUND_INTERRUPT_MASK */
53 ODBL = 0x2c, /* MU_OUTBOUND_DOORBELL */
54 OIS = 0x30, /* MU_OUTBOUND_INTERRUPT_STATUS */
55 OIM = 0x3c, /* MU_OUTBOUND_INTERRUPT_MASK */
56
57 /* MU register value */
58 MU_INBOUND_DOORBELL_HANDSHAKE = 1,
59 MU_INBOUND_DOORBELL_REQHEADCHANGED = 2,
60 MU_INBOUND_DOORBELL_STATUSTAILCHANGED = 4,
61 MU_INBOUND_DOORBELL_HMUSTOPPED = 8,
62 MU_INBOUND_DOORBELL_RESET = 16,
63
64 MU_OUTBOUND_DOORBELL_HANDSHAKE = 1,
65 MU_OUTBOUND_DOORBELL_REQUESTTAILCHANGED = 2,
66 MU_OUTBOUND_DOORBELL_STATUSHEADCHANGED = 4,
67 MU_OUTBOUND_DOORBELL_BUSCHANGE = 8,
68 MU_OUTBOUND_DOORBELL_HASEVENT = 16,
69
70 /* MU status code */
71 MU_STATE_STARTING = 1,
72 MU_STATE_FMU_READY_FOR_HANDSHAKE = 2,
73 MU_STATE_SEND_HANDSHAKE_FRAME = 3,
74 MU_STATE_STARTED = 4,
75 MU_STATE_RESETTING = 5,
76
Ed Lin76fbf962006-12-04 17:49:42 -080077 MU_MAX_DELAY = 120,
Jeff Garzik5a25ba12006-09-01 03:12:19 -040078 MU_HANDSHAKE_SIGNATURE = 0x55aaaa55,
Ed Lin529e7a62006-12-04 17:49:34 -080079 MU_HANDSHAKE_SIGNATURE_HALF = 0x5a5a0000,
Ed Lin76fbf962006-12-04 17:49:42 -080080 MU_HARD_RESET_WAIT = 30000,
Jeff Garzik5a25ba12006-09-01 03:12:19 -040081 HMU_PARTNER_TYPE = 2,
82
83 /* firmware returned values */
84 SRB_STATUS_SUCCESS = 0x01,
85 SRB_STATUS_ERROR = 0x04,
86 SRB_STATUS_BUSY = 0x05,
87 SRB_STATUS_INVALID_REQUEST = 0x06,
88 SRB_STATUS_SELECTION_TIMEOUT = 0x0A,
89 SRB_SEE_SENSE = 0x80,
90
91 /* task attribute */
92 TASK_ATTRIBUTE_SIMPLE = 0x0,
93 TASK_ATTRIBUTE_HEADOFQUEUE = 0x1,
94 TASK_ATTRIBUTE_ORDERED = 0x2,
95 TASK_ATTRIBUTE_ACA = 0x4,
96
97 /* request count, etc. */
98 MU_MAX_REQUEST = 32,
Jeff Garzik5a25ba12006-09-01 03:12:19 -040099
100 /* one message wasted, use MU_MAX_REQUEST+1
101 to handle MU_MAX_REQUEST messages */
102 MU_REQ_COUNT = (MU_MAX_REQUEST + 1),
103 MU_STATUS_COUNT = (MU_MAX_REQUEST + 1),
104
105 STEX_CDB_LENGTH = MAX_COMMAND_SIZE,
106 REQ_VARIABLE_LEN = 1024,
107 STATUS_VAR_LEN = 128,
108 ST_CAN_QUEUE = MU_MAX_REQUEST,
109 ST_CMD_PER_LUN = MU_MAX_REQUEST,
110 ST_MAX_SG = 32,
111
112 /* sg flags */
113 SG_CF_EOT = 0x80, /* end of table */
114 SG_CF_64B = 0x40, /* 64 bit item */
115 SG_CF_HOST = 0x20, /* sg in host memory */
116
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400117 st_shasta = 0,
118 st_vsc = 1,
Ed Lin94e91082006-12-04 17:49:39 -0800119 st_vsc1 = 2,
120 st_yosemite = 3,
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400121
122 PASSTHRU_REQ_TYPE = 0x00000001,
123 PASSTHRU_REQ_NO_WAKEUP = 0x00000100,
124 ST_INTERNAL_TIMEOUT = 30,
125
Ed Linfb4f66b2006-09-27 19:23:41 +0800126 ST_TO_CMD = 0,
127 ST_FROM_CMD = 1,
128
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400129 /* vendor specific commands of Promise */
Ed Linfb4f66b2006-09-27 19:23:41 +0800130 MGT_CMD = 0xd8,
131 SINBAND_MGT_CMD = 0xd9,
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400132 ARRAY_CMD = 0xe0,
133 CONTROLLER_CMD = 0xe1,
134 DEBUGGING_CMD = 0xe2,
135 PASSTHRU_CMD = 0xe3,
136
137 PASSTHRU_GET_ADAPTER = 0x05,
138 PASSTHRU_GET_DRVVER = 0x10,
Ed Linfb4f66b2006-09-27 19:23:41 +0800139
140 CTLR_CONFIG_CMD = 0x03,
141 CTLR_SHUTDOWN = 0x0d,
142
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400143 CTLR_POWER_STATE_CHANGE = 0x0e,
144 CTLR_POWER_SAVING = 0x01,
145
146 PASSTHRU_SIGNATURE = 0x4e415041,
Ed Linfb4f66b2006-09-27 19:23:41 +0800147 MGT_CMD_SIGNATURE = 0xba,
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400148
149 INQUIRY_EVPD = 0x01,
Ed Lin94e91082006-12-04 17:49:39 -0800150
151 ST_ADDITIONAL_MEM = 0x200000,
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400152};
153
Ed Linfb4f66b2006-09-27 19:23:41 +0800154/* SCSI inquiry data */
155typedef struct st_inq {
156 u8 DeviceType :5;
157 u8 DeviceTypeQualifier :3;
158 u8 DeviceTypeModifier :7;
159 u8 RemovableMedia :1;
160 u8 Versions;
161 u8 ResponseDataFormat :4;
162 u8 HiSupport :1;
163 u8 NormACA :1;
164 u8 ReservedBit :1;
165 u8 AERC :1;
166 u8 AdditionalLength;
167 u8 Reserved[2];
168 u8 SoftReset :1;
169 u8 CommandQueue :1;
170 u8 Reserved2 :1;
171 u8 LinkedCommands :1;
172 u8 Synchronous :1;
173 u8 Wide16Bit :1;
174 u8 Wide32Bit :1;
175 u8 RelativeAddressing :1;
176 u8 VendorId[8];
177 u8 ProductId[16];
178 u8 ProductRevisionLevel[4];
179 u8 VendorSpecific[20];
180 u8 Reserved3[40];
181} ST_INQ;
182
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400183struct st_sgitem {
184 u8 ctrl; /* SG_CF_xxx */
185 u8 reserved[3];
186 __le32 count;
187 __le32 addr;
188 __le32 addr_hi;
189};
190
191struct st_sgtable {
192 __le16 sg_count;
193 __le16 max_sg_count;
194 __le32 sz_in_byte;
195 struct st_sgitem table[ST_MAX_SG];
196};
197
198struct handshake_frame {
199 __le32 rb_phy; /* request payload queue physical address */
200 __le32 rb_phy_hi;
201 __le16 req_sz; /* size of each request payload */
202 __le16 req_cnt; /* count of reqs the buffer can hold */
203 __le16 status_sz; /* size of each status payload */
204 __le16 status_cnt; /* count of status the buffer can hold */
205 __le32 hosttime; /* seconds from Jan 1, 1970 (GMT) */
206 __le32 hosttime_hi;
207 u8 partner_type; /* who sends this frame */
208 u8 reserved0[7];
209 __le32 partner_ver_major;
210 __le32 partner_ver_minor;
211 __le32 partner_ver_oem;
212 __le32 partner_ver_build;
Ed Lin94e91082006-12-04 17:49:39 -0800213 __le32 extra_offset; /* NEW */
214 __le32 extra_size; /* NEW */
215 u32 reserved1[2];
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400216};
217
218struct req_msg {
219 __le16 tag;
220 u8 lun;
221 u8 target;
222 u8 task_attr;
223 u8 task_manage;
224 u8 prd_entry;
Ed Linf903d7b72006-09-27 19:23:33 +0800225 u8 payload_sz; /* payload size in 4-byte, not used */
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400226 u8 cdb[STEX_CDB_LENGTH];
227 u8 variable[REQ_VARIABLE_LEN];
228};
229
230struct status_msg {
231 __le16 tag;
232 u8 lun;
233 u8 target;
234 u8 srb_status;
235 u8 scsi_status;
236 u8 reserved;
237 u8 payload_sz; /* payload size in 4-byte */
238 u8 variable[STATUS_VAR_LEN];
239};
240
241struct ver_info {
242 u32 major;
243 u32 minor;
244 u32 oem;
245 u32 build;
246 u32 reserved[2];
247};
248
249struct st_frame {
250 u32 base[6];
251 u32 rom_addr;
252
253 struct ver_info drv_ver;
254 struct ver_info bios_ver;
255
256 u32 bus;
257 u32 slot;
258 u32 irq_level;
259 u32 irq_vec;
260 u32 id;
261 u32 subid;
262
263 u32 dimm_size;
264 u8 dimm_type;
265 u8 reserved[3];
266
267 u32 channel;
268 u32 reserved1;
269};
270
271struct st_drvver {
272 u32 major;
273 u32 minor;
274 u32 oem;
275 u32 build;
276 u32 signature[2];
277 u8 console_id;
278 u8 host_no;
279 u8 reserved0[2];
280 u32 reserved[3];
281};
282
283#define MU_REQ_BUFFER_SIZE (MU_REQ_COUNT * sizeof(struct req_msg))
284#define MU_STATUS_BUFFER_SIZE (MU_STATUS_COUNT * sizeof(struct status_msg))
285#define MU_BUFFER_SIZE (MU_REQ_BUFFER_SIZE + MU_STATUS_BUFFER_SIZE)
Ed Linfb4f66b2006-09-27 19:23:41 +0800286#define STEX_EXTRA_SIZE max(sizeof(struct st_frame), sizeof(ST_INQ))
287#define STEX_BUFFER_SIZE (MU_BUFFER_SIZE + STEX_EXTRA_SIZE)
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400288
289struct st_ccb {
290 struct req_msg *req;
291 struct scsi_cmnd *cmd;
292
293 void *sense_buffer;
294 unsigned int sense_bufflen;
295 int sg_count;
296
297 u32 req_type;
298 u8 srb_status;
299 u8 scsi_status;
300};
301
302struct st_hba {
303 void __iomem *mmio_base; /* iomapped PCI memory space */
304 void *dma_mem;
305 dma_addr_t dma_handle;
Ed Lin94e91082006-12-04 17:49:39 -0800306 size_t dma_size;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400307
308 struct Scsi_Host *host;
309 struct pci_dev *pdev;
310
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400311 u32 req_head;
312 u32 req_tail;
313 u32 status_head;
314 u32 status_tail;
315
316 struct status_msg *status_buffer;
317 void *copy_buffer; /* temp buffer for driver-handled commands */
318 struct st_ccb ccb[MU_MAX_REQUEST];
319 struct st_ccb *wait_ccb;
320 wait_queue_head_t waitq;
321
322 unsigned int mu_status;
323 int out_req_cnt;
324
325 unsigned int cardtype;
326};
327
328static const char console_inq_page[] =
329{
330 0x03,0x00,0x03,0x03,0xFA,0x00,0x00,0x30,
331 0x50,0x72,0x6F,0x6D,0x69,0x73,0x65,0x20, /* "Promise " */
332 0x52,0x41,0x49,0x44,0x20,0x43,0x6F,0x6E, /* "RAID Con" */
333 0x73,0x6F,0x6C,0x65,0x20,0x20,0x20,0x20, /* "sole " */
334 0x31,0x2E,0x30,0x30,0x20,0x20,0x20,0x20, /* "1.00 " */
335 0x53,0x58,0x2F,0x52,0x53,0x41,0x46,0x2D, /* "SX/RSAF-" */
336 0x54,0x45,0x31,0x2E,0x30,0x30,0x20,0x20, /* "TE1.00 " */
337 0x0C,0x20,0x20,0x20,0x20,0x20,0x20,0x20
338};
339
340MODULE_AUTHOR("Ed Lin");
341MODULE_DESCRIPTION("Promise Technology SuperTrak EX Controllers");
342MODULE_LICENSE("GPL");
343MODULE_VERSION(ST_DRIVER_VERSION);
344
345static void stex_gettime(__le32 *time)
346{
347 struct timeval tv;
348 do_gettimeofday(&tv);
349
350 *time = cpu_to_le32(tv.tv_sec & 0xffffffff);
351 *(time + 1) = cpu_to_le32((tv.tv_sec >> 16) >> 16);
352}
353
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400354static struct status_msg *stex_get_status(struct st_hba *hba)
355{
356 struct status_msg *status =
357 hba->status_buffer + hba->status_tail;
358
359 ++hba->status_tail;
360 hba->status_tail %= MU_STATUS_COUNT;
361
362 return status;
363}
364
365static void stex_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
366{
367 cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
368
369 cmd->sense_buffer[0] = 0x70; /* fixed format, current */
370 cmd->sense_buffer[2] = sk;
371 cmd->sense_buffer[7] = 18 - 8; /* additional sense length */
372 cmd->sense_buffer[12] = asc;
373 cmd->sense_buffer[13] = ascq;
374}
375
376static void stex_invalid_field(struct scsi_cmnd *cmd,
377 void (*done)(struct scsi_cmnd *))
378{
379 /* "Invalid field in cbd" */
380 stex_set_sense(cmd, ILLEGAL_REQUEST, 0x24, 0x0);
381 done(cmd);
382}
383
384static struct req_msg *stex_alloc_req(struct st_hba *hba)
385{
386 struct req_msg *req = ((struct req_msg *)hba->dma_mem) +
387 hba->req_head;
388
389 ++hba->req_head;
390 hba->req_head %= MU_REQ_COUNT;
391
392 return req;
393}
394
395static int stex_map_sg(struct st_hba *hba,
396 struct req_msg *req, struct st_ccb *ccb)
397{
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400398 struct scsi_cmnd *cmd;
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900399 struct scatterlist *sg;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400400 struct st_sgtable *dst;
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900401 int i, nseg;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400402
403 cmd = ccb->cmd;
404 dst = (struct st_sgtable *)req->variable;
405 dst->max_sg_count = cpu_to_le16(ST_MAX_SG);
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900406 dst->sz_in_byte = cpu_to_le32(scsi_bufflen(cmd));
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400407
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900408 nseg = scsi_dma_map(cmd);
409 if (nseg < 0)
410 return -EIO;
411 if (nseg) {
412 ccb->sg_count = nseg;
413 dst->sg_count = cpu_to_le16((u16)nseg);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400414
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900415 scsi_for_each_sg(cmd, sg, nseg, i) {
416 dst->table[i].count = cpu_to_le32((u32)sg_dma_len(sg));
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400417 dst->table[i].addr =
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900418 cpu_to_le32(sg_dma_address(sg) & 0xffffffff);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400419 dst->table[i].addr_hi =
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900420 cpu_to_le32((sg_dma_address(sg) >> 16) >> 16);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400421 dst->table[i].ctrl = SG_CF_64B | SG_CF_HOST;
422 }
423 dst->table[--i].ctrl |= SG_CF_EOT;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400424 }
425
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400426 return 0;
427}
428
429static void stex_internal_copy(struct scsi_cmnd *cmd,
Ed Linfb4f66b2006-09-27 19:23:41 +0800430 const void *src, size_t *count, int sg_count, int direction)
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400431{
432 size_t lcount;
433 size_t len;
434 void *s, *d, *base = NULL;
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900435 size_t offset;
436
437 if (*count > scsi_bufflen(cmd))
438 *count = scsi_bufflen(cmd);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400439 lcount = *count;
440 while (lcount) {
441 len = lcount;
442 s = (void *)src;
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900443
444 offset = *count - lcount;
445 s += offset;
446 base = scsi_kmap_atomic_sg(scsi_sglist(cmd),
447 sg_count, &offset, &len);
448 if (!base) {
449 *count -= lcount;
450 return;
451 }
452 d = base + offset;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400453
Ed Linfb4f66b2006-09-27 19:23:41 +0800454 if (direction == ST_TO_CMD)
455 memcpy(d, s, len);
456 else
457 memcpy(s, d, len);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400458
459 lcount -= len;
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900460 scsi_kunmap_atomic_sg(base);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400461 }
462}
463
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400464static void stex_controller_info(struct st_hba *hba, struct st_ccb *ccb)
465{
466 struct st_frame *p;
467 size_t count = sizeof(struct st_frame);
468
469 p = hba->copy_buffer;
Ed Lin4eea9dc2006-12-04 17:49:28 -0800470 stex_internal_copy(ccb->cmd, p, &count, ccb->sg_count, ST_FROM_CMD);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400471 memset(p->base, 0, sizeof(u32)*6);
472 *(unsigned long *)(p->base) = pci_resource_start(hba->pdev, 0);
473 p->rom_addr = 0;
474
475 p->drv_ver.major = ST_VER_MAJOR;
476 p->drv_ver.minor = ST_VER_MINOR;
477 p->drv_ver.oem = ST_OEM;
478 p->drv_ver.build = ST_BUILD_VER;
479
480 p->bus = hba->pdev->bus->number;
481 p->slot = hba->pdev->devfn;
482 p->irq_level = 0;
483 p->irq_vec = hba->pdev->irq;
484 p->id = hba->pdev->vendor << 16 | hba->pdev->device;
485 p->subid =
486 hba->pdev->subsystem_vendor << 16 | hba->pdev->subsystem_device;
487
Ed Linfb4f66b2006-09-27 19:23:41 +0800488 stex_internal_copy(ccb->cmd, p, &count, ccb->sg_count, ST_TO_CMD);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400489}
490
491static void
492stex_send_cmd(struct st_hba *hba, struct req_msg *req, u16 tag)
493{
494 req->tag = cpu_to_le16(tag);
495 req->task_attr = TASK_ATTRIBUTE_SIMPLE;
496 req->task_manage = 0; /* not supported yet */
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400497
498 hba->ccb[tag].req = req;
499 hba->out_req_cnt++;
500
501 writel(hba->req_head, hba->mmio_base + IMR0);
502 writel(MU_INBOUND_DOORBELL_REQHEADCHANGED, hba->mmio_base + IDBL);
503 readl(hba->mmio_base + IDBL); /* flush */
504}
505
506static int
Ed Lincf355882006-09-01 14:31:51 +0800507stex_slave_alloc(struct scsi_device *sdev)
508{
509 /* Cheat: usually extracted from Inquiry data */
510 sdev->tagged_supported = 1;
511
512 scsi_activate_tcq(sdev, sdev->host->can_queue);
513
514 return 0;
515}
516
517static int
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400518stex_slave_config(struct scsi_device *sdev)
519{
520 sdev->use_10_for_rw = 1;
521 sdev->use_10_for_ms = 1;
522 sdev->timeout = 60 * HZ;
Ed Lincf355882006-09-01 14:31:51 +0800523 sdev->tagged_supported = 1;
524
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400525 return 0;
526}
527
528static void
529stex_slave_destroy(struct scsi_device *sdev)
530{
Ed Lincf355882006-09-01 14:31:51 +0800531 scsi_deactivate_tcq(sdev, 1);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400532}
533
534static int
535stex_queuecommand(struct scsi_cmnd *cmd, void (* done)(struct scsi_cmnd *))
536{
537 struct st_hba *hba;
538 struct Scsi_Host *host;
539 unsigned int id,lun;
540 struct req_msg *req;
541 u16 tag;
542 host = cmd->device->host;
543 id = cmd->device->id;
Ed Line0b2e592007-05-09 20:50:33 -0800544 lun = cmd->device->lun;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400545 hba = (struct st_hba *) &host->hostdata[0];
546
547 switch (cmd->cmnd[0]) {
548 case MODE_SENSE_10:
549 {
550 static char ms10_caching_page[12] =
551 { 0, 0x12, 0, 0, 0, 0, 0, 0, 0x8, 0xa, 0x4, 0 };
552 unsigned char page;
553 page = cmd->cmnd[2] & 0x3f;
554 if (page == 0x8 || page == 0x3f) {
FUJITA Tomonori26106e32008-02-22 23:11:03 +0900555 size_t cp_len = sizeof(ms10_caching_page);
556 stex_internal_copy(cmd, ms10_caching_page,
557 &cp_len, scsi_sg_count(cmd),
558 ST_TO_CMD);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400559 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
560 done(cmd);
561 } else
562 stex_invalid_field(cmd, done);
563 return 0;
564 }
Ed Line0b2e592007-05-09 20:50:33 -0800565 case REPORT_LUNS:
566 /*
567 * The shasta firmware does not report actual luns in the
568 * target, so fail the command to force sequential lun scan.
569 * Also, the console device does not support this command.
570 */
571 if (hba->cardtype == st_shasta || id == host->max_id - 1) {
572 stex_invalid_field(cmd, done);
573 return 0;
574 }
575 break;
Ed Lind116a7b2007-05-09 20:50:40 -0800576 case TEST_UNIT_READY:
577 if (id == host->max_id - 1) {
578 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
579 done(cmd);
580 return 0;
581 }
582 break;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400583 case INQUIRY:
Ed Line0b2e592007-05-09 20:50:33 -0800584 if (id != host->max_id - 1)
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400585 break;
586 if (lun == 0 && (cmd->cmnd[1] & INQUIRY_EVPD) == 0) {
FUJITA Tomonori26106e32008-02-22 23:11:03 +0900587 size_t cp_len = sizeof(console_inq_page);
588 stex_internal_copy(cmd, console_inq_page,
589 &cp_len, scsi_sg_count(cmd),
590 ST_TO_CMD);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400591 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
592 done(cmd);
593 } else
594 stex_invalid_field(cmd, done);
595 return 0;
596 case PASSTHRU_CMD:
597 if (cmd->cmnd[1] == PASSTHRU_GET_DRVVER) {
598 struct st_drvver ver;
FUJITA Tomonori26106e32008-02-22 23:11:03 +0900599 size_t cp_len = sizeof(ver);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400600 ver.major = ST_VER_MAJOR;
601 ver.minor = ST_VER_MINOR;
602 ver.oem = ST_OEM;
603 ver.build = ST_BUILD_VER;
604 ver.signature[0] = PASSTHRU_SIGNATURE;
Ed Line0b2e592007-05-09 20:50:33 -0800605 ver.console_id = host->max_id - 1;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400606 ver.host_no = hba->host->host_no;
FUJITA Tomonori26106e32008-02-22 23:11:03 +0900607 stex_internal_copy(cmd, &ver, &cp_len,
608 scsi_sg_count(cmd), ST_TO_CMD);
609 cmd->result = sizeof(ver) == cp_len ?
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400610 DID_OK << 16 | COMMAND_COMPLETE << 8 :
611 DID_ERROR << 16 | COMMAND_COMPLETE << 8;
612 done(cmd);
613 return 0;
614 }
615 default:
616 break;
617 }
618
619 cmd->scsi_done = done;
620
Ed Lincf355882006-09-01 14:31:51 +0800621 tag = cmd->request->tag;
622
623 if (unlikely(tag >= host->can_queue))
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400624 return SCSI_MLQUEUE_HOST_BUSY;
625
626 req = stex_alloc_req(hba);
Ed Linfb4f66b2006-09-27 19:23:41 +0800627
Ed Line0b2e592007-05-09 20:50:33 -0800628 req->lun = lun;
629 req->target = id;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400630
631 /* cdb */
632 memcpy(req->cdb, cmd->cmnd, STEX_CDB_LENGTH);
633
634 hba->ccb[tag].cmd = cmd;
635 hba->ccb[tag].sense_bufflen = SCSI_SENSE_BUFFERSIZE;
636 hba->ccb[tag].sense_buffer = cmd->sense_buffer;
637 hba->ccb[tag].req_type = 0;
638
639 if (cmd->sc_data_direction != DMA_NONE)
640 stex_map_sg(hba, req, &hba->ccb[tag]);
641
642 stex_send_cmd(hba, req, tag);
643 return 0;
644}
645
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400646static void stex_scsi_done(struct st_ccb *ccb)
647{
648 struct scsi_cmnd *cmd = ccb->cmd;
649 int result;
650
651 if (ccb->srb_status == SRB_STATUS_SUCCESS || ccb->srb_status == 0) {
652 result = ccb->scsi_status;
653 switch (ccb->scsi_status) {
654 case SAM_STAT_GOOD:
655 result |= DID_OK << 16 | COMMAND_COMPLETE << 8;
656 break;
657 case SAM_STAT_CHECK_CONDITION:
658 result |= DRIVER_SENSE << 24;
659 break;
660 case SAM_STAT_BUSY:
661 result |= DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
662 break;
663 default:
664 result |= DID_ERROR << 16 | COMMAND_COMPLETE << 8;
665 break;
666 }
667 }
668 else if (ccb->srb_status & SRB_SEE_SENSE)
669 result = DRIVER_SENSE << 24 | SAM_STAT_CHECK_CONDITION;
670 else switch (ccb->srb_status) {
671 case SRB_STATUS_SELECTION_TIMEOUT:
672 result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
673 break;
674 case SRB_STATUS_BUSY:
675 result = DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
676 break;
677 case SRB_STATUS_INVALID_REQUEST:
678 case SRB_STATUS_ERROR:
679 default:
680 result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
681 break;
682 }
683
684 cmd->result = result;
685 cmd->scsi_done(cmd);
686}
687
688static void stex_copy_data(struct st_ccb *ccb,
689 struct status_msg *resp, unsigned int variable)
690{
691 size_t count = variable;
692 if (resp->scsi_status != SAM_STAT_GOOD) {
693 if (ccb->sense_buffer != NULL)
694 memcpy(ccb->sense_buffer, resp->variable,
695 min(variable, ccb->sense_bufflen));
696 return;
697 }
698
699 if (ccb->cmd == NULL)
700 return;
Ed Linfb4f66b2006-09-27 19:23:41 +0800701 stex_internal_copy(ccb->cmd,
702 resp->variable, &count, ccb->sg_count, ST_TO_CMD);
703}
704
705static void stex_ys_commands(struct st_hba *hba,
706 struct st_ccb *ccb, struct status_msg *resp)
707{
708 size_t count;
709
710 if (ccb->cmd->cmnd[0] == MGT_CMD &&
711 resp->scsi_status != SAM_STAT_CHECK_CONDITION) {
Ed Lin968a5762007-07-05 12:09:06 -0700712 scsi_set_resid(ccb->cmd, scsi_bufflen(ccb->cmd) -
713 le32_to_cpu(*(__le32 *)&resp->variable[0]));
Ed Linfb4f66b2006-09-27 19:23:41 +0800714 return;
715 }
716
717 if (resp->srb_status != 0)
718 return;
719
720 /* determine inquiry command status by DeviceTypeQualifier */
721 if (ccb->cmd->cmnd[0] == INQUIRY &&
722 resp->scsi_status == SAM_STAT_GOOD) {
723 ST_INQ *inq_data;
724
725 count = STEX_EXTRA_SIZE;
726 stex_internal_copy(ccb->cmd, hba->copy_buffer,
727 &count, ccb->sg_count, ST_FROM_CMD);
728 inq_data = (ST_INQ *)hba->copy_buffer;
729 if (inq_data->DeviceTypeQualifier != 0)
730 ccb->srb_status = SRB_STATUS_SELECTION_TIMEOUT;
731 else
732 ccb->srb_status = SRB_STATUS_SUCCESS;
Ed Linfb4f66b2006-09-27 19:23:41 +0800733 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400734}
735
736static void stex_mu_intr(struct st_hba *hba, u32 doorbell)
737{
738 void __iomem *base = hba->mmio_base;
739 struct status_msg *resp;
740 struct st_ccb *ccb;
741 unsigned int size;
742 u16 tag;
743
744 if (!(doorbell & MU_OUTBOUND_DOORBELL_STATUSHEADCHANGED))
745 return;
746
747 /* status payloads */
748 hba->status_head = readl(base + OMR1);
749 if (unlikely(hba->status_head >= MU_STATUS_COUNT)) {
750 printk(KERN_WARNING DRV_NAME "(%s): invalid status head\n",
751 pci_name(hba->pdev));
752 return;
753 }
754
Ed Linfb4f66b2006-09-27 19:23:41 +0800755 /*
756 * it's not a valid status payload if:
757 * 1. there are no pending requests(e.g. during init stage)
758 * 2. there are some pending requests, but the controller is in
759 * reset status, and its type is not st_yosemite
760 * firmware of st_yosemite in reset status will return pending requests
761 * to driver, so we allow it to pass
762 */
763 if (unlikely(hba->out_req_cnt <= 0 ||
764 (hba->mu_status == MU_STATE_RESETTING &&
765 hba->cardtype != st_yosemite))) {
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400766 hba->status_tail = hba->status_head;
767 goto update_status;
768 }
769
770 while (hba->status_tail != hba->status_head) {
771 resp = stex_get_status(hba);
772 tag = le16_to_cpu(resp->tag);
Ed Lincf355882006-09-01 14:31:51 +0800773 if (unlikely(tag >= hba->host->can_queue)) {
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400774 printk(KERN_WARNING DRV_NAME
775 "(%s): invalid tag\n", pci_name(hba->pdev));
776 continue;
777 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400778
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400779 ccb = &hba->ccb[tag];
780 if (hba->wait_ccb == ccb)
781 hba->wait_ccb = NULL;
782 if (unlikely(ccb->req == NULL)) {
783 printk(KERN_WARNING DRV_NAME
784 "(%s): lagging req\n", pci_name(hba->pdev));
Ed Linfb4f66b2006-09-27 19:23:41 +0800785 hba->out_req_cnt--;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400786 continue;
787 }
788
789 size = resp->payload_sz * sizeof(u32); /* payload size */
790 if (unlikely(size < sizeof(*resp) - STATUS_VAR_LEN ||
791 size > sizeof(*resp))) {
792 printk(KERN_WARNING DRV_NAME "(%s): bad status size\n",
793 pci_name(hba->pdev));
794 } else {
795 size -= sizeof(*resp) - STATUS_VAR_LEN; /* copy size */
796 if (size)
797 stex_copy_data(ccb, resp, size);
798 }
799
800 ccb->srb_status = resp->srb_status;
801 ccb->scsi_status = resp->scsi_status;
802
Ed Lincf355882006-09-01 14:31:51 +0800803 if (likely(ccb->cmd != NULL)) {
Ed Linfb4f66b2006-09-27 19:23:41 +0800804 if (hba->cardtype == st_yosemite)
805 stex_ys_commands(hba, ccb, resp);
806
Ed Lincf355882006-09-01 14:31:51 +0800807 if (unlikely(ccb->cmd->cmnd[0] == PASSTHRU_CMD &&
808 ccb->cmd->cmnd[1] == PASSTHRU_GET_ADAPTER))
809 stex_controller_info(hba, ccb);
Ed Linfb4f66b2006-09-27 19:23:41 +0800810
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900811 scsi_dma_unmap(ccb->cmd);
Ed Lincf355882006-09-01 14:31:51 +0800812 stex_scsi_done(ccb);
813 hba->out_req_cnt--;
814 } else if (ccb->req_type & PASSTHRU_REQ_TYPE) {
815 hba->out_req_cnt--;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400816 if (ccb->req_type & PASSTHRU_REQ_NO_WAKEUP) {
817 ccb->req_type = 0;
818 continue;
819 }
820 ccb->req_type = 0;
821 if (waitqueue_active(&hba->waitq))
822 wake_up(&hba->waitq);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400823 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400824 }
825
826update_status:
827 writel(hba->status_head, base + IMR1);
828 readl(base + IMR1); /* flush */
829}
830
David Howells7d12e782006-10-05 14:55:46 +0100831static irqreturn_t stex_intr(int irq, void *__hba)
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400832{
833 struct st_hba *hba = __hba;
834 void __iomem *base = hba->mmio_base;
835 u32 data;
836 unsigned long flags;
837 int handled = 0;
838
839 spin_lock_irqsave(hba->host->host_lock, flags);
840
841 data = readl(base + ODBL);
842
843 if (data && data != 0xffffffff) {
844 /* clear the interrupt */
845 writel(data, base + ODBL);
846 readl(base + ODBL); /* flush */
847 stex_mu_intr(hba, data);
848 handled = 1;
849 }
850
851 spin_unlock_irqrestore(hba->host->host_lock, flags);
852
853 return IRQ_RETVAL(handled);
854}
855
856static int stex_handshake(struct st_hba *hba)
857{
858 void __iomem *base = hba->mmio_base;
859 struct handshake_frame *h;
860 dma_addr_t status_phys;
Ed Lin529e7a62006-12-04 17:49:34 -0800861 u32 data;
Ed Lin76fbf962006-12-04 17:49:42 -0800862 unsigned long before;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400863
864 if (readl(base + OMR0) != MU_HANDSHAKE_SIGNATURE) {
865 writel(MU_INBOUND_DOORBELL_HANDSHAKE, base + IDBL);
866 readl(base + IDBL);
Ed Lin76fbf962006-12-04 17:49:42 -0800867 before = jiffies;
868 while (readl(base + OMR0) != MU_HANDSHAKE_SIGNATURE) {
869 if (time_after(jiffies, before + MU_MAX_DELAY * HZ)) {
870 printk(KERN_ERR DRV_NAME
871 "(%s): no handshake signature\n",
872 pci_name(hba->pdev));
873 return -1;
874 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400875 rmb();
876 msleep(1);
877 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400878 }
879
880 udelay(10);
881
Ed Lin529e7a62006-12-04 17:49:34 -0800882 data = readl(base + OMR1);
883 if ((data & 0xffff0000) == MU_HANDSHAKE_SIGNATURE_HALF) {
884 data &= 0x0000ffff;
885 if (hba->host->can_queue > data)
886 hba->host->can_queue = data;
887 }
888
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400889 h = (struct handshake_frame *)(hba->dma_mem + MU_REQ_BUFFER_SIZE);
890 h->rb_phy = cpu_to_le32(hba->dma_handle);
891 h->rb_phy_hi = cpu_to_le32((hba->dma_handle >> 16) >> 16);
892 h->req_sz = cpu_to_le16(sizeof(struct req_msg));
893 h->req_cnt = cpu_to_le16(MU_REQ_COUNT);
894 h->status_sz = cpu_to_le16(sizeof(struct status_msg));
895 h->status_cnt = cpu_to_le16(MU_STATUS_COUNT);
896 stex_gettime(&h->hosttime);
897 h->partner_type = HMU_PARTNER_TYPE;
Ed Lin94e91082006-12-04 17:49:39 -0800898 if (hba->dma_size > STEX_BUFFER_SIZE) {
899 h->extra_offset = cpu_to_le32(STEX_BUFFER_SIZE);
900 h->extra_size = cpu_to_le32(ST_ADDITIONAL_MEM);
901 } else
902 h->extra_offset = h->extra_size = 0;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400903
904 status_phys = hba->dma_handle + MU_REQ_BUFFER_SIZE;
905 writel(status_phys, base + IMR0);
906 readl(base + IMR0);
907 writel((status_phys >> 16) >> 16, base + IMR1);
908 readl(base + IMR1);
909
910 writel((status_phys >> 16) >> 16, base + OMR0); /* old fw compatible */
911 readl(base + OMR0);
912 writel(MU_INBOUND_DOORBELL_HANDSHAKE, base + IDBL);
913 readl(base + IDBL); /* flush */
914
915 udelay(10);
Ed Lin76fbf962006-12-04 17:49:42 -0800916 before = jiffies;
917 while (readl(base + OMR0) != MU_HANDSHAKE_SIGNATURE) {
918 if (time_after(jiffies, before + MU_MAX_DELAY * HZ)) {
919 printk(KERN_ERR DRV_NAME
920 "(%s): no signature after handshake frame\n",
921 pci_name(hba->pdev));
922 return -1;
923 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400924 rmb();
925 msleep(1);
926 }
927
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400928 writel(0, base + IMR0);
929 readl(base + IMR0);
930 writel(0, base + OMR0);
931 readl(base + OMR0);
932 writel(0, base + IMR1);
933 readl(base + IMR1);
934 writel(0, base + OMR1);
935 readl(base + OMR1); /* flush */
936 hba->mu_status = MU_STATE_STARTED;
937 return 0;
938}
939
940static int stex_abort(struct scsi_cmnd *cmd)
941{
942 struct Scsi_Host *host = cmd->device->host;
943 struct st_hba *hba = (struct st_hba *)host->hostdata;
Ed Lincf355882006-09-01 14:31:51 +0800944 u16 tag = cmd->request->tag;
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400945 void __iomem *base;
946 u32 data;
947 int result = SUCCESS;
948 unsigned long flags;
Ed Linc25da0a2007-05-09 20:50:42 -0800949
950 printk(KERN_INFO DRV_NAME
951 "(%s): aborting command\n", pci_name(hba->pdev));
952 scsi_print_command(cmd);
953
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400954 base = hba->mmio_base;
955 spin_lock_irqsave(host->host_lock, flags);
Ed Lincf355882006-09-01 14:31:51 +0800956 if (tag < host->can_queue && hba->ccb[tag].cmd == cmd)
957 hba->wait_ccb = &hba->ccb[tag];
958 else {
959 for (tag = 0; tag < host->can_queue; tag++)
960 if (hba->ccb[tag].cmd == cmd) {
961 hba->wait_ccb = &hba->ccb[tag];
962 break;
963 }
964 if (tag >= host->can_queue)
965 goto out;
966 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400967
968 data = readl(base + ODBL);
969 if (data == 0 || data == 0xffffffff)
970 goto fail_out;
971
972 writel(data, base + ODBL);
973 readl(base + ODBL); /* flush */
974
975 stex_mu_intr(hba, data);
976
977 if (hba->wait_ccb == NULL) {
978 printk(KERN_WARNING DRV_NAME
979 "(%s): lost interrupt\n", pci_name(hba->pdev));
980 goto out;
981 }
982
983fail_out:
FUJITA Tomonorid5587d52007-05-26 10:01:24 +0900984 scsi_dma_unmap(cmd);
Jeff Garzik5a25ba12006-09-01 03:12:19 -0400985 hba->wait_ccb->req = NULL; /* nullify the req's future return */
986 hba->wait_ccb = NULL;
987 result = FAILED;
988out:
989 spin_unlock_irqrestore(host->host_lock, flags);
990 return result;
991}
992
993static void stex_hard_reset(struct st_hba *hba)
994{
995 struct pci_bus *bus;
996 int i;
997 u16 pci_cmd;
998 u8 pci_bctl;
999
1000 for (i = 0; i < 16; i++)
1001 pci_read_config_dword(hba->pdev, i * 4,
1002 &hba->pdev->saved_config_space[i]);
1003
1004 /* Reset secondary bus. Our controller(MU/ATU) is the only device on
1005 secondary bus. Consult Intel 80331/3 developer's manual for detail */
1006 bus = hba->pdev->bus;
1007 pci_read_config_byte(bus->self, PCI_BRIDGE_CONTROL, &pci_bctl);
1008 pci_bctl |= PCI_BRIDGE_CTL_BUS_RESET;
1009 pci_write_config_byte(bus->self, PCI_BRIDGE_CONTROL, pci_bctl);
Ed Lin69f4a512007-05-09 20:50:37 -08001010
1011 /*
1012 * 1 ms may be enough for 8-port controllers. But 16-port controllers
1013 * require more time to finish bus reset. Use 100 ms here for safety
1014 */
1015 msleep(100);
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001016 pci_bctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
1017 pci_write_config_byte(bus->self, PCI_BRIDGE_CONTROL, pci_bctl);
1018
Ed Lin76fbf962006-12-04 17:49:42 -08001019 for (i = 0; i < MU_HARD_RESET_WAIT; i++) {
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001020 pci_read_config_word(hba->pdev, PCI_COMMAND, &pci_cmd);
Ed Lin47c4f992006-12-04 17:49:31 -08001021 if (pci_cmd != 0xffff && (pci_cmd & PCI_COMMAND_MASTER))
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001022 break;
1023 msleep(1);
1024 }
1025
1026 ssleep(5);
1027 for (i = 0; i < 16; i++)
1028 pci_write_config_dword(hba->pdev, i * 4,
1029 hba->pdev->saved_config_space[i]);
1030}
1031
1032static int stex_reset(struct scsi_cmnd *cmd)
1033{
1034 struct st_hba *hba;
1035 unsigned long flags;
Ed Linfb4f66b2006-09-27 19:23:41 +08001036 unsigned long before;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001037 hba = (struct st_hba *) &cmd->device->host->hostdata[0];
1038
Ed Linc25da0a2007-05-09 20:50:42 -08001039 printk(KERN_INFO DRV_NAME
1040 "(%s): resetting host\n", pci_name(hba->pdev));
1041 scsi_print_command(cmd);
1042
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001043 hba->mu_status = MU_STATE_RESETTING;
1044
1045 if (hba->cardtype == st_shasta)
1046 stex_hard_reset(hba);
1047
Ed Linfb4f66b2006-09-27 19:23:41 +08001048 if (hba->cardtype != st_yosemite) {
1049 if (stex_handshake(hba)) {
1050 printk(KERN_WARNING DRV_NAME
1051 "(%s): resetting: handshake failed\n",
1052 pci_name(hba->pdev));
1053 return FAILED;
1054 }
1055 spin_lock_irqsave(hba->host->host_lock, flags);
1056 hba->req_head = 0;
1057 hba->req_tail = 0;
1058 hba->status_head = 0;
1059 hba->status_tail = 0;
1060 hba->out_req_cnt = 0;
1061 spin_unlock_irqrestore(hba->host->host_lock, flags);
1062 return SUCCESS;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001063 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001064
Ed Linfb4f66b2006-09-27 19:23:41 +08001065 /* st_yosemite */
1066 writel(MU_INBOUND_DOORBELL_RESET, hba->mmio_base + IDBL);
1067 readl(hba->mmio_base + IDBL); /* flush */
1068 before = jiffies;
1069 while (hba->out_req_cnt > 0) {
1070 if (time_after(jiffies, before + ST_INTERNAL_TIMEOUT * HZ)) {
1071 printk(KERN_WARNING DRV_NAME
1072 "(%s): reset timeout\n", pci_name(hba->pdev));
1073 return FAILED;
1074 }
1075 msleep(1);
1076 }
1077
1078 hba->mu_status = MU_STATE_STARTED;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001079 return SUCCESS;
1080}
1081
1082static int stex_biosparam(struct scsi_device *sdev,
1083 struct block_device *bdev, sector_t capacity, int geom[])
1084{
Ed Linb4b8bed2006-12-04 17:49:24 -08001085 int heads = 255, sectors = 63;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001086
1087 if (capacity < 0x200000) {
1088 heads = 64;
1089 sectors = 32;
1090 }
1091
Ed Linb4b8bed2006-12-04 17:49:24 -08001092 sector_div(capacity, heads * sectors);
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001093
1094 geom[0] = heads;
1095 geom[1] = sectors;
Ed Linb4b8bed2006-12-04 17:49:24 -08001096 geom[2] = capacity;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001097
1098 return 0;
1099}
1100
1101static struct scsi_host_template driver_template = {
1102 .module = THIS_MODULE,
1103 .name = DRV_NAME,
1104 .proc_name = DRV_NAME,
1105 .bios_param = stex_biosparam,
1106 .queuecommand = stex_queuecommand,
Ed Lincf355882006-09-01 14:31:51 +08001107 .slave_alloc = stex_slave_alloc,
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001108 .slave_configure = stex_slave_config,
1109 .slave_destroy = stex_slave_destroy,
1110 .eh_abort_handler = stex_abort,
1111 .eh_host_reset_handler = stex_reset,
1112 .can_queue = ST_CAN_QUEUE,
1113 .this_id = -1,
1114 .sg_tablesize = ST_MAX_SG,
1115 .cmd_per_lun = ST_CMD_PER_LUN,
1116};
1117
1118static int stex_set_dma_mask(struct pci_dev * pdev)
1119{
1120 int ret;
1121 if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)
1122 && !pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))
1123 return 0;
1124 ret = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1125 if (!ret)
1126 ret = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1127 return ret;
1128}
1129
1130static int __devinit
1131stex_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1132{
1133 struct st_hba *hba;
1134 struct Scsi_Host *host;
1135 int err;
1136
1137 err = pci_enable_device(pdev);
1138 if (err)
1139 return err;
1140
1141 pci_set_master(pdev);
1142
1143 host = scsi_host_alloc(&driver_template, sizeof(struct st_hba));
1144
1145 if (!host) {
1146 printk(KERN_ERR DRV_NAME "(%s): scsi_host_alloc failed\n",
1147 pci_name(pdev));
1148 err = -ENOMEM;
1149 goto out_disable;
1150 }
1151
1152 hba = (struct st_hba *)host->hostdata;
1153 memset(hba, 0, sizeof(struct st_hba));
1154
1155 err = pci_request_regions(pdev, DRV_NAME);
1156 if (err < 0) {
1157 printk(KERN_ERR DRV_NAME "(%s): request regions failed\n",
1158 pci_name(pdev));
1159 goto out_scsi_host_put;
1160 }
1161
Ed Linc25da0a2007-05-09 20:50:42 -08001162 hba->mmio_base = ioremap_nocache(pci_resource_start(pdev, 0),
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001163 pci_resource_len(pdev, 0));
1164 if ( !hba->mmio_base) {
1165 printk(KERN_ERR DRV_NAME "(%s): memory map failed\n",
1166 pci_name(pdev));
1167 err = -ENOMEM;
1168 goto out_release_regions;
1169 }
1170
1171 err = stex_set_dma_mask(pdev);
1172 if (err) {
1173 printk(KERN_ERR DRV_NAME "(%s): set dma mask failed\n",
1174 pci_name(pdev));
1175 goto out_iounmap;
1176 }
1177
Ed Lin94e91082006-12-04 17:49:39 -08001178 hba->cardtype = (unsigned int) id->driver_data;
1179 if (hba->cardtype == st_vsc && (pdev->subsystem_device & 0xf) == 0x1)
1180 hba->cardtype = st_vsc1;
1181 hba->dma_size = (hba->cardtype == st_vsc1) ?
1182 (STEX_BUFFER_SIZE + ST_ADDITIONAL_MEM) : (STEX_BUFFER_SIZE);
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001183 hba->dma_mem = dma_alloc_coherent(&pdev->dev,
Ed Lin94e91082006-12-04 17:49:39 -08001184 hba->dma_size, &hba->dma_handle, GFP_KERNEL);
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001185 if (!hba->dma_mem) {
1186 err = -ENOMEM;
1187 printk(KERN_ERR DRV_NAME "(%s): dma mem alloc failed\n",
1188 pci_name(pdev));
1189 goto out_iounmap;
1190 }
1191
1192 hba->status_buffer =
1193 (struct status_msg *)(hba->dma_mem + MU_REQ_BUFFER_SIZE);
1194 hba->copy_buffer = hba->dma_mem + MU_BUFFER_SIZE;
1195 hba->mu_status = MU_STATE_STARTING;
1196
Ed Line0b2e592007-05-09 20:50:33 -08001197 if (hba->cardtype == st_shasta) {
1198 host->max_lun = 8;
1199 host->max_id = 16 + 1;
1200 } else if (hba->cardtype == st_yosemite) {
1201 host->max_lun = 128;
1202 host->max_id = 1 + 1;
1203 } else {
1204 /* st_vsc and st_vsc1 */
1205 host->max_lun = 1;
1206 host->max_id = 128 + 1;
1207 }
1208 host->max_channel = 0;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001209 host->unique_id = host->host_no;
1210 host->max_cmd_len = STEX_CDB_LENGTH;
1211
1212 hba->host = host;
1213 hba->pdev = pdev;
1214 init_waitqueue_head(&hba->waitq);
1215
1216 err = request_irq(pdev->irq, stex_intr, IRQF_SHARED, DRV_NAME, hba);
1217 if (err) {
1218 printk(KERN_ERR DRV_NAME "(%s): request irq failed\n",
1219 pci_name(pdev));
1220 goto out_pci_free;
1221 }
1222
1223 err = stex_handshake(hba);
1224 if (err)
1225 goto out_free_irq;
1226
Ed Lin529e7a62006-12-04 17:49:34 -08001227 err = scsi_init_shared_tag_map(host, host->can_queue);
James Bottomleydeb81d82006-09-01 09:28:48 -04001228 if (err) {
Ed Lincf355882006-09-01 14:31:51 +08001229 printk(KERN_ERR DRV_NAME "(%s): init shared queue failed\n",
1230 pci_name(pdev));
1231 goto out_free_irq;
1232 }
1233
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001234 pci_set_drvdata(pdev, hba);
1235
1236 err = scsi_add_host(host, &pdev->dev);
1237 if (err) {
1238 printk(KERN_ERR DRV_NAME "(%s): scsi_add_host failed\n",
1239 pci_name(pdev));
1240 goto out_free_irq;
1241 }
1242
1243 scsi_scan_host(host);
1244
1245 return 0;
1246
1247out_free_irq:
1248 free_irq(pdev->irq, hba);
1249out_pci_free:
Ed Lin94e91082006-12-04 17:49:39 -08001250 dma_free_coherent(&pdev->dev, hba->dma_size,
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001251 hba->dma_mem, hba->dma_handle);
1252out_iounmap:
1253 iounmap(hba->mmio_base);
1254out_release_regions:
1255 pci_release_regions(pdev);
1256out_scsi_host_put:
1257 scsi_host_put(host);
1258out_disable:
1259 pci_disable_device(pdev);
1260
1261 return err;
1262}
1263
1264static void stex_hba_stop(struct st_hba *hba)
1265{
1266 struct req_msg *req;
1267 unsigned long flags;
1268 unsigned long before;
Ed Lincf355882006-09-01 14:31:51 +08001269 u16 tag = 0;
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001270
1271 spin_lock_irqsave(hba->host->host_lock, flags);
1272 req = stex_alloc_req(hba);
1273 memset(req->cdb, 0, STEX_CDB_LENGTH);
1274
Ed Linfb4f66b2006-09-27 19:23:41 +08001275 if (hba->cardtype == st_yosemite) {
1276 req->cdb[0] = MGT_CMD;
1277 req->cdb[1] = MGT_CMD_SIGNATURE;
1278 req->cdb[2] = CTLR_CONFIG_CMD;
1279 req->cdb[3] = CTLR_SHUTDOWN;
1280 } else {
1281 req->cdb[0] = CONTROLLER_CMD;
1282 req->cdb[1] = CTLR_POWER_STATE_CHANGE;
1283 req->cdb[2] = CTLR_POWER_SAVING;
1284 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001285
1286 hba->ccb[tag].cmd = NULL;
1287 hba->ccb[tag].sg_count = 0;
1288 hba->ccb[tag].sense_bufflen = 0;
1289 hba->ccb[tag].sense_buffer = NULL;
1290 hba->ccb[tag].req_type |= PASSTHRU_REQ_TYPE;
1291
1292 stex_send_cmd(hba, req, tag);
1293 spin_unlock_irqrestore(hba->host->host_lock, flags);
1294
Ed Lincf355882006-09-01 14:31:51 +08001295 before = jiffies;
1296 while (hba->ccb[tag].req_type & PASSTHRU_REQ_TYPE) {
1297 if (time_after(jiffies, before + ST_INTERNAL_TIMEOUT * HZ))
1298 return;
1299 msleep(10);
1300 }
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001301}
1302
1303static void stex_hba_free(struct st_hba *hba)
1304{
1305 free_irq(hba->pdev->irq, hba);
1306
1307 iounmap(hba->mmio_base);
1308
1309 pci_release_regions(hba->pdev);
1310
Ed Lin94e91082006-12-04 17:49:39 -08001311 dma_free_coherent(&hba->pdev->dev, hba->dma_size,
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001312 hba->dma_mem, hba->dma_handle);
1313}
1314
1315static void stex_remove(struct pci_dev *pdev)
1316{
1317 struct st_hba *hba = pci_get_drvdata(pdev);
1318
1319 scsi_remove_host(hba->host);
1320
1321 pci_set_drvdata(pdev, NULL);
1322
1323 stex_hba_stop(hba);
1324
1325 stex_hba_free(hba);
1326
1327 scsi_host_put(hba->host);
1328
1329 pci_disable_device(pdev);
1330}
1331
1332static void stex_shutdown(struct pci_dev *pdev)
1333{
1334 struct st_hba *hba = pci_get_drvdata(pdev);
1335
1336 stex_hba_stop(hba);
1337}
1338
1339static struct pci_device_id stex_pci_tbl[] = {
Ed Linee926b22006-12-04 17:49:36 -08001340 /* st_shasta */
1341 { 0x105a, 0x8350, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1342 st_shasta }, /* SuperTrak EX8350/8300/16350/16300 */
1343 { 0x105a, 0xc350, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1344 st_shasta }, /* SuperTrak EX12350 */
1345 { 0x105a, 0x4302, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1346 st_shasta }, /* SuperTrak EX4350 */
1347 { 0x105a, 0xe350, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1348 st_shasta }, /* SuperTrak EX24350 */
1349
1350 /* st_vsc */
1351 { 0x105a, 0x7250, PCI_ANY_ID, PCI_ANY_ID, 0, 0, st_vsc },
1352
1353 /* st_yosemite */
1354 { 0x105a, 0x8650, PCI_ANY_ID, 0x4600, 0, 0,
1355 st_yosemite }, /* SuperTrak EX4650 */
1356 { 0x105a, 0x8650, PCI_ANY_ID, 0x4610, 0, 0,
1357 st_yosemite }, /* SuperTrak EX4650o */
1358 { 0x105a, 0x8650, PCI_ANY_ID, 0x8600, 0, 0,
1359 st_yosemite }, /* SuperTrak EX8650EL */
1360 { 0x105a, 0x8650, PCI_ANY_ID, 0x8601, 0, 0,
1361 st_yosemite }, /* SuperTrak EX8650 */
1362 { 0x105a, 0x8650, PCI_ANY_ID, 0x8602, 0, 0,
1363 st_yosemite }, /* SuperTrak EX8654 */
1364 { 0x105a, 0x8650, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
1365 st_yosemite }, /* generic st_yosemite */
Jeff Garzik5a25ba12006-09-01 03:12:19 -04001366 { } /* terminate list */
1367};
1368MODULE_DEVICE_TABLE(pci, stex_pci_tbl);
1369
1370static struct pci_driver stex_pci_driver = {
1371 .name = DRV_NAME,
1372 .id_table = stex_pci_tbl,
1373 .probe = stex_probe,
1374 .remove = __devexit_p(stex_remove),
1375 .shutdown = stex_shutdown,
1376};
1377
1378static int __init stex_init(void)
1379{
1380 printk(KERN_INFO DRV_NAME
1381 ": Promise SuperTrak EX Driver version: %s\n",
1382 ST_DRIVER_VERSION);
1383
1384 return pci_register_driver(&stex_pci_driver);
1385}
1386
1387static void __exit stex_exit(void)
1388{
1389 pci_unregister_driver(&stex_pci_driver);
1390}
1391
1392module_init(stex_init);
1393module_exit(stex_exit);