2 * SuperTrak EX Series Storage Controller driver for Linux
4 * Copyright (C) 2005, 2006 Promise Technology Inc.
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.
12 * Ed Lin <promise_linux@promise.com>
16 #include <linux/init.h>
17 #include <linux/errno.h>
18 #include <linux/kernel.h>
19 #include <linux/delay.h>
20 #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>
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>
34 #include <scsi/scsi_tcq.h>
35 #include <scsi/scsi_dbg.h>
37 #define DRV_NAME "stex"
38 #define ST_DRIVER_VERSION "3.6.0000.1"
39 #define ST_VER_MAJOR 3
40 #define ST_VER_MINOR 6
42 #define ST_BUILD_VER 1
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 */
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,
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,
71 MU_STATE_STARTING
= 1,
72 MU_STATE_FMU_READY_FOR_HANDSHAKE
= 2,
73 MU_STATE_SEND_HANDSHAKE_FRAME
= 3,
75 MU_STATE_RESETTING
= 5,
78 MU_HANDSHAKE_SIGNATURE
= 0x55aaaa55,
79 MU_HANDSHAKE_SIGNATURE_HALF
= 0x5a5a0000,
80 MU_HARD_RESET_WAIT
= 30000,
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,
92 TASK_ATTRIBUTE_SIMPLE
= 0x0,
93 TASK_ATTRIBUTE_HEADOFQUEUE
= 0x1,
94 TASK_ATTRIBUTE_ORDERED
= 0x2,
95 TASK_ATTRIBUTE_ACA
= 0x4,
97 /* request count, etc. */
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),
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
,
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 */
122 PASSTHRU_REQ_TYPE
= 0x00000001,
123 PASSTHRU_REQ_NO_WAKEUP
= 0x00000100,
124 ST_INTERNAL_TIMEOUT
= 30,
129 /* vendor specific commands of Promise */
131 SINBAND_MGT_CMD
= 0xd9,
133 CONTROLLER_CMD
= 0xe1,
134 DEBUGGING_CMD
= 0xe2,
137 PASSTHRU_GET_ADAPTER
= 0x05,
138 PASSTHRU_GET_DRVVER
= 0x10,
140 CTLR_CONFIG_CMD
= 0x03,
141 CTLR_SHUTDOWN
= 0x0d,
143 CTLR_POWER_STATE_CHANGE
= 0x0e,
144 CTLR_POWER_SAVING
= 0x01,
146 PASSTHRU_SIGNATURE
= 0x4e415041,
147 MGT_CMD_SIGNATURE
= 0xba,
151 ST_ADDITIONAL_MEM
= 0x200000,
154 /* SCSI inquiry data */
155 typedef struct st_inq
{
157 u8 DeviceTypeQualifier
:3;
158 u8 DeviceTypeModifier
:7;
159 u8 RemovableMedia
:1;
161 u8 ResponseDataFormat
:4;
171 u8 LinkedCommands
:1;
175 u8 RelativeAddressing
:1;
178 u8 ProductRevisionLevel
[4];
179 u8 VendorSpecific
[20];
184 u8 ctrl
; /* SG_CF_xxx */
195 struct st_sgitem table
[ST_MAX_SG
];
198 struct handshake_frame
{
199 __le32 rb_phy
; /* request payload queue physical address */
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) */
207 u8 partner_type
; /* who sends this frame */
209 __le32 partner_ver_major
;
210 __le32 partner_ver_minor
;
211 __le32 partner_ver_oem
;
212 __le32 partner_ver_build
;
213 __le32 extra_offset
; /* NEW */
214 __le32 extra_size
; /* NEW */
225 u8 payload_sz
; /* payload size in 4-byte, not used */
226 u8 cdb
[STEX_CDB_LENGTH
];
227 u8 variable
[REQ_VARIABLE_LEN
];
237 u8 payload_sz
; /* payload size in 4-byte */
238 u8 variable
[STATUS_VAR_LEN
];
253 struct ver_info drv_ver
;
254 struct ver_info bios_ver
;
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)
286 #define STEX_EXTRA_SIZE max(sizeof(struct st_frame), sizeof(ST_INQ))
287 #define STEX_BUFFER_SIZE (MU_BUFFER_SIZE + STEX_EXTRA_SIZE)
291 struct scsi_cmnd
*cmd
;
294 unsigned int sense_bufflen
;
303 void __iomem
*mmio_base
; /* iomapped PCI memory space */
305 dma_addr_t dma_handle
;
308 struct Scsi_Host
*host
;
309 struct pci_dev
*pdev
;
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
;
322 unsigned int mu_status
;
325 unsigned int cardtype
;
328 static const char console_inq_page
[] =
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
340 MODULE_AUTHOR("Ed Lin");
341 MODULE_DESCRIPTION("Promise Technology SuperTrak EX Controllers");
342 MODULE_LICENSE("GPL");
343 MODULE_VERSION(ST_DRIVER_VERSION
);
345 static void stex_gettime(__le32
*time
)
348 do_gettimeofday(&tv
);
350 *time
= cpu_to_le32(tv
.tv_sec
& 0xffffffff);
351 *(time
+ 1) = cpu_to_le32((tv
.tv_sec
>> 16) >> 16);
354 static struct status_msg
*stex_get_status(struct st_hba
*hba
)
356 struct status_msg
*status
=
357 hba
->status_buffer
+ hba
->status_tail
;
360 hba
->status_tail
%= MU_STATUS_COUNT
;
365 static void stex_set_sense(struct scsi_cmnd
*cmd
, u8 sk
, u8 asc
, u8 ascq
)
367 cmd
->result
= (DRIVER_SENSE
<< 24) | SAM_STAT_CHECK_CONDITION
;
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
;
376 static void stex_invalid_field(struct scsi_cmnd
*cmd
,
377 void (*done
)(struct scsi_cmnd
*))
379 /* "Invalid field in cbd" */
380 stex_set_sense(cmd
, ILLEGAL_REQUEST
, 0x24, 0x0);
384 static struct req_msg
*stex_alloc_req(struct st_hba
*hba
)
386 struct req_msg
*req
= ((struct req_msg
*)hba
->dma_mem
) +
390 hba
->req_head
%= MU_REQ_COUNT
;
395 static int stex_map_sg(struct st_hba
*hba
,
396 struct req_msg
*req
, struct st_ccb
*ccb
)
398 struct scsi_cmnd
*cmd
;
399 struct scatterlist
*sg
;
400 struct st_sgtable
*dst
;
404 dst
= (struct st_sgtable
*)req
->variable
;
405 dst
->max_sg_count
= cpu_to_le16(ST_MAX_SG
);
406 dst
->sz_in_byte
= cpu_to_le32(scsi_bufflen(cmd
));
408 nseg
= scsi_dma_map(cmd
);
412 ccb
->sg_count
= nseg
;
413 dst
->sg_count
= cpu_to_le16((u16
)nseg
);
415 scsi_for_each_sg(cmd
, sg
, nseg
, i
) {
416 dst
->table
[i
].count
= cpu_to_le32((u32
)sg_dma_len(sg
));
418 cpu_to_le32(sg_dma_address(sg
) & 0xffffffff);
419 dst
->table
[i
].addr_hi
=
420 cpu_to_le32((sg_dma_address(sg
) >> 16) >> 16);
421 dst
->table
[i
].ctrl
= SG_CF_64B
| SG_CF_HOST
;
423 dst
->table
[--i
].ctrl
|= SG_CF_EOT
;
429 static void stex_internal_copy(struct scsi_cmnd
*cmd
,
430 const void *src
, size_t *count
, int sg_count
, int direction
)
434 void *s
, *d
, *base
= NULL
;
437 if (*count
> scsi_bufflen(cmd
))
438 *count
= scsi_bufflen(cmd
);
444 offset
= *count
- lcount
;
446 base
= scsi_kmap_atomic_sg(scsi_sglist(cmd
),
447 sg_count
, &offset
, &len
);
454 if (direction
== ST_TO_CMD
)
460 scsi_kunmap_atomic_sg(base
);
464 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
465 static int stex_direct_copy(struct scsi_cmnd
*cmd
,
466 const void *src
, size_t count
)
468 size_t cp_len
= count
;
471 n_elem
= scsi_dma_map(cmd
);
475 stex_internal_copy(cmd
, src
, &cp_len
, n_elem
, ST_TO_CMD
);
479 return cp_len
== count
;
483 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
484 static void stex_controller_info(struct st_hba
*hba
, struct st_ccb
*ccb
)
487 size_t count
= sizeof(struct st_frame
);
489 p
= hba
->copy_buffer
;
490 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
491 stex_internal_copy(ccb
->cmd
, p
, &count
, ccb
->sg_count
, ST_FROM_CMD
);
493 stex_internal_copy(ccb
->cmd
, p
, &count
, scsi_sg_count(ccb
->cmd
),
495 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
496 memset(p
->base
, 0, sizeof(u32
)*6);
497 *(unsigned long *)(p
->base
) = pci_resource_start(hba
->pdev
, 0);
500 p
->drv_ver
.major
= ST_VER_MAJOR
;
501 p
->drv_ver
.minor
= ST_VER_MINOR
;
502 p
->drv_ver
.oem
= ST_OEM
;
503 p
->drv_ver
.build
= ST_BUILD_VER
;
505 p
->bus
= hba
->pdev
->bus
->number
;
506 p
->slot
= hba
->pdev
->devfn
;
508 p
->irq_vec
= hba
->pdev
->irq
;
509 p
->id
= hba
->pdev
->vendor
<< 16 | hba
->pdev
->device
;
511 hba
->pdev
->subsystem_vendor
<< 16 | hba
->pdev
->subsystem_device
;
513 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
514 stex_internal_copy(ccb
->cmd
, p
, &count
, ccb
->sg_count
, ST_TO_CMD
);
516 stex_internal_copy(ccb
->cmd
, p
, &count
, scsi_sg_count(ccb
->cmd
),
518 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
522 stex_send_cmd(struct st_hba
*hba
, struct req_msg
*req
, u16 tag
)
524 req
->tag
= cpu_to_le16(tag
);
525 req
->task_attr
= TASK_ATTRIBUTE_SIMPLE
;
526 req
->task_manage
= 0; /* not supported yet */
528 hba
->ccb
[tag
].req
= req
;
531 writel(hba
->req_head
, hba
->mmio_base
+ IMR0
);
532 writel(MU_INBOUND_DOORBELL_REQHEADCHANGED
, hba
->mmio_base
+ IDBL
);
533 readl(hba
->mmio_base
+ IDBL
); /* flush */
537 stex_slave_alloc(struct scsi_device
*sdev
)
539 /* Cheat: usually extracted from Inquiry data */
540 sdev
->tagged_supported
= 1;
542 scsi_activate_tcq(sdev
, sdev
->host
->can_queue
);
548 stex_slave_config(struct scsi_device
*sdev
)
550 sdev
->use_10_for_rw
= 1;
551 sdev
->use_10_for_ms
= 1;
552 sdev
->timeout
= 60 * HZ
;
553 sdev
->tagged_supported
= 1;
559 stex_slave_destroy(struct scsi_device
*sdev
)
561 scsi_deactivate_tcq(sdev
, 1);
565 stex_queuecommand(struct scsi_cmnd
*cmd
, void (* done
)(struct scsi_cmnd
*))
568 struct Scsi_Host
*host
;
572 host
= cmd
->device
->host
;
573 id
= cmd
->device
->id
;
574 lun
= cmd
->device
->lun
;
575 hba
= (struct st_hba
*) &host
->hostdata
[0];
577 switch (cmd
->cmnd
[0]) {
580 static char ms10_caching_page
[12] =
581 { 0, 0x12, 0, 0, 0, 0, 0, 0, 0x8, 0xa, 0x4, 0 };
583 page
= cmd
->cmnd
[2] & 0x3f;
584 if (page
== 0x8 || page
== 0x3f) {
585 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
586 stex_direct_copy(cmd
, ms10_caching_page
,
587 sizeof(ms10_caching_page
));
589 size_t cp_len
= sizeof(ms10_caching_page
);
590 stex_internal_copy(cmd
, ms10_caching_page
,
591 &cp_len
, scsi_sg_count(cmd
),
593 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
594 cmd
->result
= DID_OK
<< 16 | COMMAND_COMPLETE
<< 8;
597 stex_invalid_field(cmd
, done
);
602 * The shasta firmware does not report actual luns in the
603 * target, so fail the command to force sequential lun scan.
604 * Also, the console device does not support this command.
606 if (hba
->cardtype
== st_shasta
|| id
== host
->max_id
- 1) {
607 stex_invalid_field(cmd
, done
);
611 case TEST_UNIT_READY
:
612 if (id
== host
->max_id
- 1) {
613 cmd
->result
= DID_OK
<< 16 | COMMAND_COMPLETE
<< 8;
619 if (id
!= host
->max_id
- 1)
621 if (lun
== 0 && (cmd
->cmnd
[1] & INQUIRY_EVPD
) == 0) {
622 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
623 stex_direct_copy(cmd
, console_inq_page
,
624 sizeof(console_inq_page
));
626 size_t cp_len
= sizeof(console_inq_page
);
627 stex_internal_copy(cmd
, console_inq_page
,
628 &cp_len
, scsi_sg_count(cmd
),
630 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
631 cmd
->result
= DID_OK
<< 16 | COMMAND_COMPLETE
<< 8;
634 stex_invalid_field(cmd
, done
);
637 if (cmd
->cmnd
[1] == PASSTHRU_GET_DRVVER
) {
638 struct st_drvver ver
;
639 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
641 size_t cp_len
= sizeof(ver
);
642 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
643 ver
.major
= ST_VER_MAJOR
;
644 ver
.minor
= ST_VER_MINOR
;
646 ver
.build
= ST_BUILD_VER
;
647 ver
.signature
[0] = PASSTHRU_SIGNATURE
;
648 ver
.console_id
= host
->max_id
- 1;
649 ver
.host_no
= hba
->host
->host_no
;
650 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
651 cmd
->result
= stex_direct_copy(cmd
, &ver
, sizeof(ver
)) ?
653 stex_internal_copy(cmd
, &ver
, &cp_len
,
654 scsi_sg_count(cmd
), ST_TO_CMD
);
655 cmd
->result
= sizeof(ver
) == cp_len
?
656 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
657 DID_OK
<< 16 | COMMAND_COMPLETE
<< 8 :
658 DID_ERROR
<< 16 | COMMAND_COMPLETE
<< 8;
666 cmd
->scsi_done
= done
;
668 tag
= cmd
->request
->tag
;
670 if (unlikely(tag
>= host
->can_queue
))
671 return SCSI_MLQUEUE_HOST_BUSY
;
673 req
= stex_alloc_req(hba
);
679 memcpy(req
->cdb
, cmd
->cmnd
, STEX_CDB_LENGTH
);
681 hba
->ccb
[tag
].cmd
= cmd
;
682 hba
->ccb
[tag
].sense_bufflen
= SCSI_SENSE_BUFFERSIZE
;
683 hba
->ccb
[tag
].sense_buffer
= cmd
->sense_buffer
;
684 hba
->ccb
[tag
].req_type
= 0;
686 if (cmd
->sc_data_direction
!= DMA_NONE
)
687 stex_map_sg(hba
, req
, &hba
->ccb
[tag
]);
689 stex_send_cmd(hba
, req
, tag
);
693 static void stex_scsi_done(struct st_ccb
*ccb
)
695 struct scsi_cmnd
*cmd
= ccb
->cmd
;
698 if (ccb
->srb_status
== SRB_STATUS_SUCCESS
|| ccb
->srb_status
== 0) {
699 result
= ccb
->scsi_status
;
700 switch (ccb
->scsi_status
) {
702 result
|= DID_OK
<< 16 | COMMAND_COMPLETE
<< 8;
704 case SAM_STAT_CHECK_CONDITION
:
705 result
|= DRIVER_SENSE
<< 24;
708 result
|= DID_BUS_BUSY
<< 16 | COMMAND_COMPLETE
<< 8;
711 result
|= DID_ERROR
<< 16 | COMMAND_COMPLETE
<< 8;
715 else if (ccb
->srb_status
& SRB_SEE_SENSE
)
716 result
= DRIVER_SENSE
<< 24 | SAM_STAT_CHECK_CONDITION
;
717 else switch (ccb
->srb_status
) {
718 case SRB_STATUS_SELECTION_TIMEOUT
:
719 result
= DID_NO_CONNECT
<< 16 | COMMAND_COMPLETE
<< 8;
721 case SRB_STATUS_BUSY
:
722 result
= DID_BUS_BUSY
<< 16 | COMMAND_COMPLETE
<< 8;
724 case SRB_STATUS_INVALID_REQUEST
:
725 case SRB_STATUS_ERROR
:
727 result
= DID_ERROR
<< 16 | COMMAND_COMPLETE
<< 8;
731 cmd
->result
= result
;
735 static void stex_copy_data(struct st_ccb
*ccb
,
736 struct status_msg
*resp
, unsigned int variable
)
738 size_t count
= variable
;
739 if (resp
->scsi_status
!= SAM_STAT_GOOD
) {
740 if (ccb
->sense_buffer
!= NULL
)
741 memcpy(ccb
->sense_buffer
, resp
->variable
,
742 min(variable
, ccb
->sense_bufflen
));
746 if (ccb
->cmd
== NULL
)
748 stex_internal_copy(ccb
->cmd
,
749 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
750 resp
->variable
, &count
, ccb
->sg_count
, ST_TO_CMD
);
752 resp
->variable
, &count
, scsi_sg_count(ccb
->cmd
), ST_TO_CMD
);
753 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
756 static void stex_ys_commands(struct st_hba
*hba
,
757 struct st_ccb
*ccb
, struct status_msg
*resp
)
761 if (ccb
->cmd
->cmnd
[0] == MGT_CMD
&&
762 resp
->scsi_status
!= SAM_STAT_CHECK_CONDITION
) {
763 scsi_set_resid(ccb
->cmd
, scsi_bufflen(ccb
->cmd
) -
764 le32_to_cpu(*(__le32
*)&resp
->variable
[0]));
768 if (resp
->srb_status
!= 0)
771 /* determine inquiry command status by DeviceTypeQualifier */
772 if (ccb
->cmd
->cmnd
[0] == INQUIRY
&&
773 resp
->scsi_status
== SAM_STAT_GOOD
) {
776 count
= STEX_EXTRA_SIZE
;
777 stex_internal_copy(ccb
->cmd
, hba
->copy_buffer
,
778 <<<<<<< HEAD
:drivers
/scsi
/stex
.c
779 &count
, ccb
->sg_count
, ST_FROM_CMD
);
781 &count
, scsi_sg_count(ccb
->cmd
), ST_FROM_CMD
);
782 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/scsi
/stex
.c
783 inq_data
= (ST_INQ
*)hba
->copy_buffer
;
784 if (inq_data
->DeviceTypeQualifier
!= 0)
785 ccb
->srb_status
= SRB_STATUS_SELECTION_TIMEOUT
;
787 ccb
->srb_status
= SRB_STATUS_SUCCESS
;
791 static void stex_mu_intr(struct st_hba
*hba
, u32 doorbell
)
793 void __iomem
*base
= hba
->mmio_base
;
794 struct status_msg
*resp
;
799 if (!(doorbell
& MU_OUTBOUND_DOORBELL_STATUSHEADCHANGED
))
802 /* status payloads */
803 hba
->status_head
= readl(base
+ OMR1
);
804 if (unlikely(hba
->status_head
>= MU_STATUS_COUNT
)) {
805 printk(KERN_WARNING DRV_NAME
"(%s): invalid status head\n",
806 pci_name(hba
->pdev
));
811 * it's not a valid status payload if:
812 * 1. there are no pending requests(e.g. during init stage)
813 * 2. there are some pending requests, but the controller is in
814 * reset status, and its type is not st_yosemite
815 * firmware of st_yosemite in reset status will return pending requests
816 * to driver, so we allow it to pass
818 if (unlikely(hba
->out_req_cnt
<= 0 ||
819 (hba
->mu_status
== MU_STATE_RESETTING
&&
820 hba
->cardtype
!= st_yosemite
))) {
821 hba
->status_tail
= hba
->status_head
;
825 while (hba
->status_tail
!= hba
->status_head
) {
826 resp
= stex_get_status(hba
);
827 tag
= le16_to_cpu(resp
->tag
);
828 if (unlikely(tag
>= hba
->host
->can_queue
)) {
829 printk(KERN_WARNING DRV_NAME
830 "(%s): invalid tag\n", pci_name(hba
->pdev
));
834 ccb
= &hba
->ccb
[tag
];
835 if (hba
->wait_ccb
== ccb
)
836 hba
->wait_ccb
= NULL
;
837 if (unlikely(ccb
->req
== NULL
)) {
838 printk(KERN_WARNING DRV_NAME
839 "(%s): lagging req\n", pci_name(hba
->pdev
));
844 size
= resp
->payload_sz
* sizeof(u32
); /* payload size */
845 if (unlikely(size
< sizeof(*resp
) - STATUS_VAR_LEN
||
846 size
> sizeof(*resp
))) {
847 printk(KERN_WARNING DRV_NAME
"(%s): bad status size\n",
848 pci_name(hba
->pdev
));
850 size
-= sizeof(*resp
) - STATUS_VAR_LEN
; /* copy size */
852 stex_copy_data(ccb
, resp
, size
);
855 ccb
->srb_status
= resp
->srb_status
;
856 ccb
->scsi_status
= resp
->scsi_status
;
858 if (likely(ccb
->cmd
!= NULL
)) {
859 if (hba
->cardtype
== st_yosemite
)
860 stex_ys_commands(hba
, ccb
, resp
);
862 if (unlikely(ccb
->cmd
->cmnd
[0] == PASSTHRU_CMD
&&
863 ccb
->cmd
->cmnd
[1] == PASSTHRU_GET_ADAPTER
))
864 stex_controller_info(hba
, ccb
);
866 scsi_dma_unmap(ccb
->cmd
);
869 } else if (ccb
->req_type
& PASSTHRU_REQ_TYPE
) {
871 if (ccb
->req_type
& PASSTHRU_REQ_NO_WAKEUP
) {
876 if (waitqueue_active(&hba
->waitq
))
877 wake_up(&hba
->waitq
);
882 writel(hba
->status_head
, base
+ IMR1
);
883 readl(base
+ IMR1
); /* flush */
886 static irqreturn_t
stex_intr(int irq
, void *__hba
)
888 struct st_hba
*hba
= __hba
;
889 void __iomem
*base
= hba
->mmio_base
;
894 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
896 data
= readl(base
+ ODBL
);
898 if (data
&& data
!= 0xffffffff) {
899 /* clear the interrupt */
900 writel(data
, base
+ ODBL
);
901 readl(base
+ ODBL
); /* flush */
902 stex_mu_intr(hba
, data
);
906 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
908 return IRQ_RETVAL(handled
);
911 static int stex_handshake(struct st_hba
*hba
)
913 void __iomem
*base
= hba
->mmio_base
;
914 struct handshake_frame
*h
;
915 dma_addr_t status_phys
;
917 unsigned long before
;
919 if (readl(base
+ OMR0
) != MU_HANDSHAKE_SIGNATURE
) {
920 writel(MU_INBOUND_DOORBELL_HANDSHAKE
, base
+ IDBL
);
923 while (readl(base
+ OMR0
) != MU_HANDSHAKE_SIGNATURE
) {
924 if (time_after(jiffies
, before
+ MU_MAX_DELAY
* HZ
)) {
925 printk(KERN_ERR DRV_NAME
926 "(%s): no handshake signature\n",
927 pci_name(hba
->pdev
));
937 data
= readl(base
+ OMR1
);
938 if ((data
& 0xffff0000) == MU_HANDSHAKE_SIGNATURE_HALF
) {
940 if (hba
->host
->can_queue
> data
)
941 hba
->host
->can_queue
= data
;
944 h
= (struct handshake_frame
*)(hba
->dma_mem
+ MU_REQ_BUFFER_SIZE
);
945 h
->rb_phy
= cpu_to_le32(hba
->dma_handle
);
946 h
->rb_phy_hi
= cpu_to_le32((hba
->dma_handle
>> 16) >> 16);
947 h
->req_sz
= cpu_to_le16(sizeof(struct req_msg
));
948 h
->req_cnt
= cpu_to_le16(MU_REQ_COUNT
);
949 h
->status_sz
= cpu_to_le16(sizeof(struct status_msg
));
950 h
->status_cnt
= cpu_to_le16(MU_STATUS_COUNT
);
951 stex_gettime(&h
->hosttime
);
952 h
->partner_type
= HMU_PARTNER_TYPE
;
953 if (hba
->dma_size
> STEX_BUFFER_SIZE
) {
954 h
->extra_offset
= cpu_to_le32(STEX_BUFFER_SIZE
);
955 h
->extra_size
= cpu_to_le32(ST_ADDITIONAL_MEM
);
957 h
->extra_offset
= h
->extra_size
= 0;
959 status_phys
= hba
->dma_handle
+ MU_REQ_BUFFER_SIZE
;
960 writel(status_phys
, base
+ IMR0
);
962 writel((status_phys
>> 16) >> 16, base
+ IMR1
);
965 writel((status_phys
>> 16) >> 16, base
+ OMR0
); /* old fw compatible */
967 writel(MU_INBOUND_DOORBELL_HANDSHAKE
, base
+ IDBL
);
968 readl(base
+ IDBL
); /* flush */
972 while (readl(base
+ OMR0
) != MU_HANDSHAKE_SIGNATURE
) {
973 if (time_after(jiffies
, before
+ MU_MAX_DELAY
* HZ
)) {
974 printk(KERN_ERR DRV_NAME
975 "(%s): no signature after handshake frame\n",
976 pci_name(hba
->pdev
));
983 writel(0, base
+ IMR0
);
985 writel(0, base
+ OMR0
);
987 writel(0, base
+ IMR1
);
989 writel(0, base
+ OMR1
);
990 readl(base
+ OMR1
); /* flush */
991 hba
->mu_status
= MU_STATE_STARTED
;
995 static int stex_abort(struct scsi_cmnd
*cmd
)
997 struct Scsi_Host
*host
= cmd
->device
->host
;
998 struct st_hba
*hba
= (struct st_hba
*)host
->hostdata
;
999 u16 tag
= cmd
->request
->tag
;
1002 int result
= SUCCESS
;
1003 unsigned long flags
;
1005 printk(KERN_INFO DRV_NAME
1006 "(%s): aborting command\n", pci_name(hba
->pdev
));
1007 scsi_print_command(cmd
);
1009 base
= hba
->mmio_base
;
1010 spin_lock_irqsave(host
->host_lock
, flags
);
1011 if (tag
< host
->can_queue
&& hba
->ccb
[tag
].cmd
== cmd
)
1012 hba
->wait_ccb
= &hba
->ccb
[tag
];
1014 for (tag
= 0; tag
< host
->can_queue
; tag
++)
1015 if (hba
->ccb
[tag
].cmd
== cmd
) {
1016 hba
->wait_ccb
= &hba
->ccb
[tag
];
1019 if (tag
>= host
->can_queue
)
1023 data
= readl(base
+ ODBL
);
1024 if (data
== 0 || data
== 0xffffffff)
1027 writel(data
, base
+ ODBL
);
1028 readl(base
+ ODBL
); /* flush */
1030 stex_mu_intr(hba
, data
);
1032 if (hba
->wait_ccb
== NULL
) {
1033 printk(KERN_WARNING DRV_NAME
1034 "(%s): lost interrupt\n", pci_name(hba
->pdev
));
1039 scsi_dma_unmap(cmd
);
1040 hba
->wait_ccb
->req
= NULL
; /* nullify the req's future return */
1041 hba
->wait_ccb
= NULL
;
1044 spin_unlock_irqrestore(host
->host_lock
, flags
);
1048 static void stex_hard_reset(struct st_hba
*hba
)
1050 struct pci_bus
*bus
;
1055 for (i
= 0; i
< 16; i
++)
1056 pci_read_config_dword(hba
->pdev
, i
* 4,
1057 &hba
->pdev
->saved_config_space
[i
]);
1059 /* Reset secondary bus. Our controller(MU/ATU) is the only device on
1060 secondary bus. Consult Intel 80331/3 developer's manual for detail */
1061 bus
= hba
->pdev
->bus
;
1062 pci_read_config_byte(bus
->self
, PCI_BRIDGE_CONTROL
, &pci_bctl
);
1063 pci_bctl
|= PCI_BRIDGE_CTL_BUS_RESET
;
1064 pci_write_config_byte(bus
->self
, PCI_BRIDGE_CONTROL
, pci_bctl
);
1067 * 1 ms may be enough for 8-port controllers. But 16-port controllers
1068 * require more time to finish bus reset. Use 100 ms here for safety
1071 pci_bctl
&= ~PCI_BRIDGE_CTL_BUS_RESET
;
1072 pci_write_config_byte(bus
->self
, PCI_BRIDGE_CONTROL
, pci_bctl
);
1074 for (i
= 0; i
< MU_HARD_RESET_WAIT
; i
++) {
1075 pci_read_config_word(hba
->pdev
, PCI_COMMAND
, &pci_cmd
);
1076 if (pci_cmd
!= 0xffff && (pci_cmd
& PCI_COMMAND_MASTER
))
1082 for (i
= 0; i
< 16; i
++)
1083 pci_write_config_dword(hba
->pdev
, i
* 4,
1084 hba
->pdev
->saved_config_space
[i
]);
1087 static int stex_reset(struct scsi_cmnd
*cmd
)
1090 unsigned long flags
;
1091 unsigned long before
;
1092 hba
= (struct st_hba
*) &cmd
->device
->host
->hostdata
[0];
1094 printk(KERN_INFO DRV_NAME
1095 "(%s): resetting host\n", pci_name(hba
->pdev
));
1096 scsi_print_command(cmd
);
1098 hba
->mu_status
= MU_STATE_RESETTING
;
1100 if (hba
->cardtype
== st_shasta
)
1101 stex_hard_reset(hba
);
1103 if (hba
->cardtype
!= st_yosemite
) {
1104 if (stex_handshake(hba
)) {
1105 printk(KERN_WARNING DRV_NAME
1106 "(%s): resetting: handshake failed\n",
1107 pci_name(hba
->pdev
));
1110 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1113 hba
->status_head
= 0;
1114 hba
->status_tail
= 0;
1115 hba
->out_req_cnt
= 0;
1116 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1121 writel(MU_INBOUND_DOORBELL_RESET
, hba
->mmio_base
+ IDBL
);
1122 readl(hba
->mmio_base
+ IDBL
); /* flush */
1124 while (hba
->out_req_cnt
> 0) {
1125 if (time_after(jiffies
, before
+ ST_INTERNAL_TIMEOUT
* HZ
)) {
1126 printk(KERN_WARNING DRV_NAME
1127 "(%s): reset timeout\n", pci_name(hba
->pdev
));
1133 hba
->mu_status
= MU_STATE_STARTED
;
1137 static int stex_biosparam(struct scsi_device
*sdev
,
1138 struct block_device
*bdev
, sector_t capacity
, int geom
[])
1140 int heads
= 255, sectors
= 63;
1142 if (capacity
< 0x200000) {
1147 sector_div(capacity
, heads
* sectors
);
1156 static struct scsi_host_template driver_template
= {
1157 .module
= THIS_MODULE
,
1159 .proc_name
= DRV_NAME
,
1160 .bios_param
= stex_biosparam
,
1161 .queuecommand
= stex_queuecommand
,
1162 .slave_alloc
= stex_slave_alloc
,
1163 .slave_configure
= stex_slave_config
,
1164 .slave_destroy
= stex_slave_destroy
,
1165 .eh_abort_handler
= stex_abort
,
1166 .eh_host_reset_handler
= stex_reset
,
1167 .can_queue
= ST_CAN_QUEUE
,
1169 .sg_tablesize
= ST_MAX_SG
,
1170 .cmd_per_lun
= ST_CMD_PER_LUN
,
1173 static int stex_set_dma_mask(struct pci_dev
* pdev
)
1176 if (!pci_set_dma_mask(pdev
, DMA_64BIT_MASK
)
1177 && !pci_set_consistent_dma_mask(pdev
, DMA_64BIT_MASK
))
1179 ret
= pci_set_dma_mask(pdev
, DMA_32BIT_MASK
);
1181 ret
= pci_set_consistent_dma_mask(pdev
, DMA_32BIT_MASK
);
1185 static int __devinit
1186 stex_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
1189 struct Scsi_Host
*host
;
1192 err
= pci_enable_device(pdev
);
1196 pci_set_master(pdev
);
1198 host
= scsi_host_alloc(&driver_template
, sizeof(struct st_hba
));
1201 printk(KERN_ERR DRV_NAME
"(%s): scsi_host_alloc failed\n",
1207 hba
= (struct st_hba
*)host
->hostdata
;
1208 memset(hba
, 0, sizeof(struct st_hba
));
1210 err
= pci_request_regions(pdev
, DRV_NAME
);
1212 printk(KERN_ERR DRV_NAME
"(%s): request regions failed\n",
1214 goto out_scsi_host_put
;
1217 hba
->mmio_base
= ioremap_nocache(pci_resource_start(pdev
, 0),
1218 pci_resource_len(pdev
, 0));
1219 if ( !hba
->mmio_base
) {
1220 printk(KERN_ERR DRV_NAME
"(%s): memory map failed\n",
1223 goto out_release_regions
;
1226 err
= stex_set_dma_mask(pdev
);
1228 printk(KERN_ERR DRV_NAME
"(%s): set dma mask failed\n",
1233 hba
->cardtype
= (unsigned int) id
->driver_data
;
1234 if (hba
->cardtype
== st_vsc
&& (pdev
->subsystem_device
& 0xf) == 0x1)
1235 hba
->cardtype
= st_vsc1
;
1236 hba
->dma_size
= (hba
->cardtype
== st_vsc1
) ?
1237 (STEX_BUFFER_SIZE
+ ST_ADDITIONAL_MEM
) : (STEX_BUFFER_SIZE
);
1238 hba
->dma_mem
= dma_alloc_coherent(&pdev
->dev
,
1239 hba
->dma_size
, &hba
->dma_handle
, GFP_KERNEL
);
1240 if (!hba
->dma_mem
) {
1242 printk(KERN_ERR DRV_NAME
"(%s): dma mem alloc failed\n",
1247 hba
->status_buffer
=
1248 (struct status_msg
*)(hba
->dma_mem
+ MU_REQ_BUFFER_SIZE
);
1249 hba
->copy_buffer
= hba
->dma_mem
+ MU_BUFFER_SIZE
;
1250 hba
->mu_status
= MU_STATE_STARTING
;
1252 if (hba
->cardtype
== st_shasta
) {
1254 host
->max_id
= 16 + 1;
1255 } else if (hba
->cardtype
== st_yosemite
) {
1256 host
->max_lun
= 128;
1257 host
->max_id
= 1 + 1;
1259 /* st_vsc and st_vsc1 */
1261 host
->max_id
= 128 + 1;
1263 host
->max_channel
= 0;
1264 host
->unique_id
= host
->host_no
;
1265 host
->max_cmd_len
= STEX_CDB_LENGTH
;
1269 init_waitqueue_head(&hba
->waitq
);
1271 err
= request_irq(pdev
->irq
, stex_intr
, IRQF_SHARED
, DRV_NAME
, hba
);
1273 printk(KERN_ERR DRV_NAME
"(%s): request irq failed\n",
1278 err
= stex_handshake(hba
);
1282 err
= scsi_init_shared_tag_map(host
, host
->can_queue
);
1284 printk(KERN_ERR DRV_NAME
"(%s): init shared queue failed\n",
1289 pci_set_drvdata(pdev
, hba
);
1291 err
= scsi_add_host(host
, &pdev
->dev
);
1293 printk(KERN_ERR DRV_NAME
"(%s): scsi_add_host failed\n",
1298 scsi_scan_host(host
);
1303 free_irq(pdev
->irq
, hba
);
1305 dma_free_coherent(&pdev
->dev
, hba
->dma_size
,
1306 hba
->dma_mem
, hba
->dma_handle
);
1308 iounmap(hba
->mmio_base
);
1309 out_release_regions
:
1310 pci_release_regions(pdev
);
1312 scsi_host_put(host
);
1314 pci_disable_device(pdev
);
1319 static void stex_hba_stop(struct st_hba
*hba
)
1321 struct req_msg
*req
;
1322 unsigned long flags
;
1323 unsigned long before
;
1326 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1327 req
= stex_alloc_req(hba
);
1328 memset(req
->cdb
, 0, STEX_CDB_LENGTH
);
1330 if (hba
->cardtype
== st_yosemite
) {
1331 req
->cdb
[0] = MGT_CMD
;
1332 req
->cdb
[1] = MGT_CMD_SIGNATURE
;
1333 req
->cdb
[2] = CTLR_CONFIG_CMD
;
1334 req
->cdb
[3] = CTLR_SHUTDOWN
;
1336 req
->cdb
[0] = CONTROLLER_CMD
;
1337 req
->cdb
[1] = CTLR_POWER_STATE_CHANGE
;
1338 req
->cdb
[2] = CTLR_POWER_SAVING
;
1341 hba
->ccb
[tag
].cmd
= NULL
;
1342 hba
->ccb
[tag
].sg_count
= 0;
1343 hba
->ccb
[tag
].sense_bufflen
= 0;
1344 hba
->ccb
[tag
].sense_buffer
= NULL
;
1345 hba
->ccb
[tag
].req_type
|= PASSTHRU_REQ_TYPE
;
1347 stex_send_cmd(hba
, req
, tag
);
1348 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1351 while (hba
->ccb
[tag
].req_type
& PASSTHRU_REQ_TYPE
) {
1352 if (time_after(jiffies
, before
+ ST_INTERNAL_TIMEOUT
* HZ
))
1358 static void stex_hba_free(struct st_hba
*hba
)
1360 free_irq(hba
->pdev
->irq
, hba
);
1362 iounmap(hba
->mmio_base
);
1364 pci_release_regions(hba
->pdev
);
1366 dma_free_coherent(&hba
->pdev
->dev
, hba
->dma_size
,
1367 hba
->dma_mem
, hba
->dma_handle
);
1370 static void stex_remove(struct pci_dev
*pdev
)
1372 struct st_hba
*hba
= pci_get_drvdata(pdev
);
1374 scsi_remove_host(hba
->host
);
1376 pci_set_drvdata(pdev
, NULL
);
1382 scsi_host_put(hba
->host
);
1384 pci_disable_device(pdev
);
1387 static void stex_shutdown(struct pci_dev
*pdev
)
1389 struct st_hba
*hba
= pci_get_drvdata(pdev
);
1394 static struct pci_device_id stex_pci_tbl
[] = {
1396 { 0x105a, 0x8350, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
1397 st_shasta
}, /* SuperTrak EX8350/8300/16350/16300 */
1398 { 0x105a, 0xc350, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
1399 st_shasta
}, /* SuperTrak EX12350 */
1400 { 0x105a, 0x4302, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
1401 st_shasta
}, /* SuperTrak EX4350 */
1402 { 0x105a, 0xe350, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
1403 st_shasta
}, /* SuperTrak EX24350 */
1406 { 0x105a, 0x7250, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, st_vsc
},
1409 { 0x105a, 0x8650, PCI_ANY_ID
, 0x4600, 0, 0,
1410 st_yosemite
}, /* SuperTrak EX4650 */
1411 { 0x105a, 0x8650, PCI_ANY_ID
, 0x4610, 0, 0,
1412 st_yosemite
}, /* SuperTrak EX4650o */
1413 { 0x105a, 0x8650, PCI_ANY_ID
, 0x8600, 0, 0,
1414 st_yosemite
}, /* SuperTrak EX8650EL */
1415 { 0x105a, 0x8650, PCI_ANY_ID
, 0x8601, 0, 0,
1416 st_yosemite
}, /* SuperTrak EX8650 */
1417 { 0x105a, 0x8650, PCI_ANY_ID
, 0x8602, 0, 0,
1418 st_yosemite
}, /* SuperTrak EX8654 */
1419 { 0x105a, 0x8650, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0,
1420 st_yosemite
}, /* generic st_yosemite */
1421 { } /* terminate list */
1423 MODULE_DEVICE_TABLE(pci
, stex_pci_tbl
);
1425 static struct pci_driver stex_pci_driver
= {
1427 .id_table
= stex_pci_tbl
,
1428 .probe
= stex_probe
,
1429 .remove
= __devexit_p(stex_remove
),
1430 .shutdown
= stex_shutdown
,
1433 static int __init
stex_init(void)
1435 printk(KERN_INFO DRV_NAME
1436 ": Promise SuperTrak EX Driver version: %s\n",
1439 return pci_register_driver(&stex_pci_driver
);
1442 static void __exit
stex_exit(void)
1444 pci_unregister_driver(&stex_pci_driver
);
1447 module_init(stex_init
);
1448 module_exit(stex_exit
);