1 // SPDX-License-Identifier: GPL-2.0-only
3 * HighPoint RR3xxx/4xxx controller driver for Linux
4 * Copyright (C) 2006-2015 HighPoint Technologies, Inc. All Rights Reserved.
6 * Please report bugs/comments/suggestions to linux@highpoint-tech.com
8 * For more information, visit http://www.highpoint-tech.com
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <linux/string.h>
13 #include <linux/kernel.h>
14 #include <linux/pci.h>
15 #include <linux/interrupt.h>
16 #include <linux/errno.h>
17 #include <linux/delay.h>
18 #include <linux/timer.h>
19 #include <linux/spinlock.h>
20 #include <linux/gfp.h>
21 #include <linux/uaccess.h>
23 #include <asm/div64.h>
24 #include <scsi/scsi_cmnd.h>
25 #include <scsi/scsi_device.h>
26 #include <scsi/scsi.h>
27 #include <scsi/scsi_tcq.h>
28 #include <scsi/scsi_host.h>
32 MODULE_AUTHOR("HighPoint Technologies, Inc.");
33 MODULE_DESCRIPTION("HighPoint RocketRAID 3xxx/4xxx Controller Driver");
35 static char driver_name
[] = "hptiop";
36 static const char driver_name_long
[] = "RocketRAID 3xxx/4xxx Controller driver";
37 static const char driver_ver
[] = "v1.10.0";
39 static int iop_send_sync_msg(struct hptiop_hba
*hba
, u32 msg
, u32 millisec
);
40 static void hptiop_finish_scsi_req(struct hptiop_hba
*hba
, u32 tag
,
41 struct hpt_iop_request_scsi_command
*req
);
42 static void hptiop_host_request_callback_itl(struct hptiop_hba
*hba
, u32 tag
);
43 static void hptiop_iop_request_callback_itl(struct hptiop_hba
*hba
, u32 tag
);
44 static void hptiop_message_callback(struct hptiop_hba
*hba
, u32 msg
);
46 static int iop_wait_ready_itl(struct hptiop_hba
*hba
, u32 millisec
)
51 for (i
= 0; i
< millisec
; i
++) {
52 req
= readl(&hba
->u
.itl
.iop
->inbound_queue
);
53 if (req
!= IOPMU_QUEUE_EMPTY
)
58 if (req
!= IOPMU_QUEUE_EMPTY
) {
59 writel(req
, &hba
->u
.itl
.iop
->outbound_queue
);
60 readl(&hba
->u
.itl
.iop
->outbound_intstatus
);
67 static int iop_wait_ready_mv(struct hptiop_hba
*hba
, u32 millisec
)
69 return iop_send_sync_msg(hba
, IOPMU_INBOUND_MSG0_NOP
, millisec
);
72 static int iop_wait_ready_mvfrey(struct hptiop_hba
*hba
, u32 millisec
)
74 return iop_send_sync_msg(hba
, IOPMU_INBOUND_MSG0_NOP
, millisec
);
77 static void hptiop_request_callback_itl(struct hptiop_hba
*hba
, u32 tag
)
79 if (tag
& IOPMU_QUEUE_ADDR_HOST_BIT
)
80 hptiop_host_request_callback_itl(hba
,
81 tag
& ~IOPMU_QUEUE_ADDR_HOST_BIT
);
83 hptiop_iop_request_callback_itl(hba
, tag
);
86 static void hptiop_drain_outbound_queue_itl(struct hptiop_hba
*hba
)
90 while ((req
= readl(&hba
->u
.itl
.iop
->outbound_queue
)) !=
93 if (req
& IOPMU_QUEUE_MASK_HOST_BITS
)
94 hptiop_request_callback_itl(hba
, req
);
96 struct hpt_iop_request_header __iomem
* p
;
98 p
= (struct hpt_iop_request_header __iomem
*)
99 ((char __iomem
*)hba
->u
.itl
.iop
+ req
);
101 if (readl(&p
->flags
) & IOP_REQUEST_FLAG_SYNC_REQUEST
) {
102 if (readl(&p
->context
))
103 hptiop_request_callback_itl(hba
, req
);
105 writel(1, &p
->context
);
108 hptiop_request_callback_itl(hba
, req
);
113 static int iop_intr_itl(struct hptiop_hba
*hba
)
115 struct hpt_iopmu_itl __iomem
*iop
= hba
->u
.itl
.iop
;
116 void __iomem
*plx
= hba
->u
.itl
.plx
;
120 if (plx
&& readl(plx
+ 0x11C5C) & 0xf)
121 writel(1, plx
+ 0x11C60);
123 status
= readl(&iop
->outbound_intstatus
);
125 if (status
& IOPMU_OUTBOUND_INT_MSG0
) {
126 u32 msg
= readl(&iop
->outbound_msgaddr0
);
128 dprintk("received outbound msg %x\n", msg
);
129 writel(IOPMU_OUTBOUND_INT_MSG0
, &iop
->outbound_intstatus
);
130 hptiop_message_callback(hba
, msg
);
134 if (status
& IOPMU_OUTBOUND_INT_POSTQUEUE
) {
135 hptiop_drain_outbound_queue_itl(hba
);
142 static u64
mv_outbound_read(struct hpt_iopmu_mv __iomem
*mu
)
144 u32 outbound_tail
= readl(&mu
->outbound_tail
);
145 u32 outbound_head
= readl(&mu
->outbound_head
);
147 if (outbound_tail
!= outbound_head
) {
150 memcpy_fromio(&p
, &mu
->outbound_q
[mu
->outbound_tail
], 8);
153 if (outbound_tail
== MVIOP_QUEUE_LEN
)
155 writel(outbound_tail
, &mu
->outbound_tail
);
161 static void mv_inbound_write(u64 p
, struct hptiop_hba
*hba
)
163 u32 inbound_head
= readl(&hba
->u
.mv
.mu
->inbound_head
);
164 u32 head
= inbound_head
+ 1;
166 if (head
== MVIOP_QUEUE_LEN
)
169 memcpy_toio(&hba
->u
.mv
.mu
->inbound_q
[inbound_head
], &p
, 8);
170 writel(head
, &hba
->u
.mv
.mu
->inbound_head
);
171 writel(MVIOP_MU_INBOUND_INT_POSTQUEUE
,
172 &hba
->u
.mv
.regs
->inbound_doorbell
);
175 static void hptiop_request_callback_mv(struct hptiop_hba
*hba
, u64 tag
)
177 u32 req_type
= (tag
>> 5) & 0x7;
178 struct hpt_iop_request_scsi_command
*req
;
180 dprintk("hptiop_request_callback_mv: tag=%llx\n", tag
);
182 BUG_ON((tag
& MVIOP_MU_QUEUE_REQUEST_RETURN_CONTEXT
) == 0);
185 case IOP_REQUEST_TYPE_GET_CONFIG
:
186 case IOP_REQUEST_TYPE_SET_CONFIG
:
190 case IOP_REQUEST_TYPE_SCSI_COMMAND
:
191 req
= hba
->reqs
[tag
>> 8].req_virt
;
192 if (likely(tag
& MVIOP_MU_QUEUE_REQUEST_RESULT_BIT
))
193 req
->header
.result
= cpu_to_le32(IOP_RESULT_SUCCESS
);
195 hptiop_finish_scsi_req(hba
, tag
>>8, req
);
203 static int iop_intr_mv(struct hptiop_hba
*hba
)
208 status
= readl(&hba
->u
.mv
.regs
->outbound_doorbell
);
209 writel(~status
, &hba
->u
.mv
.regs
->outbound_doorbell
);
211 if (status
& MVIOP_MU_OUTBOUND_INT_MSG
) {
213 msg
= readl(&hba
->u
.mv
.mu
->outbound_msg
);
214 dprintk("received outbound msg %x\n", msg
);
215 hptiop_message_callback(hba
, msg
);
219 if (status
& MVIOP_MU_OUTBOUND_INT_POSTQUEUE
) {
222 while ((tag
= mv_outbound_read(hba
->u
.mv
.mu
)))
223 hptiop_request_callback_mv(hba
, tag
);
230 static void hptiop_request_callback_mvfrey(struct hptiop_hba
*hba
, u32 _tag
)
232 u32 req_type
= _tag
& 0xf;
233 struct hpt_iop_request_scsi_command
*req
;
236 case IOP_REQUEST_TYPE_GET_CONFIG
:
237 case IOP_REQUEST_TYPE_SET_CONFIG
:
241 case IOP_REQUEST_TYPE_SCSI_COMMAND
:
242 req
= hba
->reqs
[(_tag
>> 4) & 0xff].req_virt
;
243 if (likely(_tag
& IOPMU_QUEUE_REQUEST_RESULT_BIT
))
244 req
->header
.result
= IOP_RESULT_SUCCESS
;
245 hptiop_finish_scsi_req(hba
, (_tag
>> 4) & 0xff, req
);
253 static int iop_intr_mvfrey(struct hptiop_hba
*hba
)
255 u32 _tag
, status
, cptr
, cur_rptr
;
258 if (hba
->initialized
)
259 writel(0, &(hba
->u
.mvfrey
.mu
->pcie_f0_int_enable
));
261 status
= readl(&(hba
->u
.mvfrey
.mu
->f0_doorbell
));
263 writel(status
, &(hba
->u
.mvfrey
.mu
->f0_doorbell
));
264 if (status
& CPU_TO_F0_DRBL_MSG_BIT
) {
265 u32 msg
= readl(&(hba
->u
.mvfrey
.mu
->cpu_to_f0_msg_a
));
266 dprintk("received outbound msg %x\n", msg
);
267 hptiop_message_callback(hba
, msg
);
272 status
= readl(&(hba
->u
.mvfrey
.mu
->isr_cause
));
274 writel(status
, &(hba
->u
.mvfrey
.mu
->isr_cause
));
276 cptr
= *hba
->u
.mvfrey
.outlist_cptr
& 0xff;
277 cur_rptr
= hba
->u
.mvfrey
.outlist_rptr
;
278 while (cur_rptr
!= cptr
) {
280 if (cur_rptr
== hba
->u
.mvfrey
.list_count
)
283 _tag
= hba
->u
.mvfrey
.outlist
[cur_rptr
].val
;
284 BUG_ON(!(_tag
& IOPMU_QUEUE_MASK_HOST_BITS
));
285 hptiop_request_callback_mvfrey(hba
, _tag
);
288 hba
->u
.mvfrey
.outlist_rptr
= cur_rptr
;
289 } while (cptr
!= (*hba
->u
.mvfrey
.outlist_cptr
& 0xff));
292 if (hba
->initialized
)
293 writel(0x1010, &(hba
->u
.mvfrey
.mu
->pcie_f0_int_enable
));
298 static int iop_send_sync_request_itl(struct hptiop_hba
*hba
,
299 void __iomem
*_req
, u32 millisec
)
301 struct hpt_iop_request_header __iomem
*req
= _req
;
304 writel(readl(&req
->flags
) | IOP_REQUEST_FLAG_SYNC_REQUEST
, &req
->flags
);
305 writel(0, &req
->context
);
306 writel((unsigned long)req
- (unsigned long)hba
->u
.itl
.iop
,
307 &hba
->u
.itl
.iop
->inbound_queue
);
308 readl(&hba
->u
.itl
.iop
->outbound_intstatus
);
310 for (i
= 0; i
< millisec
; i
++) {
312 if (readl(&req
->context
))
320 static int iop_send_sync_request_mv(struct hptiop_hba
*hba
,
321 u32 size_bits
, u32 millisec
)
323 struct hpt_iop_request_header
*reqhdr
= hba
->u
.mv
.internal_req
;
327 reqhdr
->flags
|= cpu_to_le32(IOP_REQUEST_FLAG_SYNC_REQUEST
);
328 mv_inbound_write(hba
->u
.mv
.internal_req_phy
|
329 MVIOP_MU_QUEUE_ADDR_HOST_BIT
| size_bits
, hba
);
331 for (i
= 0; i
< millisec
; i
++) {
340 static int iop_send_sync_request_mvfrey(struct hptiop_hba
*hba
,
341 u32 size_bits
, u32 millisec
)
343 struct hpt_iop_request_header
*reqhdr
=
344 hba
->u
.mvfrey
.internal_req
.req_virt
;
348 reqhdr
->flags
|= cpu_to_le32(IOP_REQUEST_FLAG_SYNC_REQUEST
);
349 hba
->ops
->post_req(hba
, &(hba
->u
.mvfrey
.internal_req
));
351 for (i
= 0; i
< millisec
; i
++) {
352 iop_intr_mvfrey(hba
);
357 return hba
->msg_done
? 0 : -1;
360 static void hptiop_post_msg_itl(struct hptiop_hba
*hba
, u32 msg
)
362 writel(msg
, &hba
->u
.itl
.iop
->inbound_msgaddr0
);
363 readl(&hba
->u
.itl
.iop
->outbound_intstatus
);
366 static void hptiop_post_msg_mv(struct hptiop_hba
*hba
, u32 msg
)
368 writel(msg
, &hba
->u
.mv
.mu
->inbound_msg
);
369 writel(MVIOP_MU_INBOUND_INT_MSG
, &hba
->u
.mv
.regs
->inbound_doorbell
);
370 readl(&hba
->u
.mv
.regs
->inbound_doorbell
);
373 static void hptiop_post_msg_mvfrey(struct hptiop_hba
*hba
, u32 msg
)
375 writel(msg
, &(hba
->u
.mvfrey
.mu
->f0_to_cpu_msg_a
));
376 readl(&(hba
->u
.mvfrey
.mu
->f0_to_cpu_msg_a
));
379 static int iop_send_sync_msg(struct hptiop_hba
*hba
, u32 msg
, u32 millisec
)
384 hba
->ops
->disable_intr(hba
);
385 hba
->ops
->post_msg(hba
, msg
);
387 for (i
= 0; i
< millisec
; i
++) {
388 spin_lock_irq(hba
->host
->host_lock
);
389 hba
->ops
->iop_intr(hba
);
390 spin_unlock_irq(hba
->host
->host_lock
);
396 hba
->ops
->enable_intr(hba
);
397 return hba
->msg_done
? 0 : -1;
400 static int iop_get_config_itl(struct hptiop_hba
*hba
,
401 struct hpt_iop_request_get_config
*config
)
404 struct hpt_iop_request_get_config __iomem
*req
;
406 req32
= readl(&hba
->u
.itl
.iop
->inbound_queue
);
407 if (req32
== IOPMU_QUEUE_EMPTY
)
410 req
= (struct hpt_iop_request_get_config __iomem
*)
411 ((unsigned long)hba
->u
.itl
.iop
+ req32
);
413 writel(0, &req
->header
.flags
);
414 writel(IOP_REQUEST_TYPE_GET_CONFIG
, &req
->header
.type
);
415 writel(sizeof(struct hpt_iop_request_get_config
), &req
->header
.size
);
416 writel(IOP_RESULT_PENDING
, &req
->header
.result
);
418 if (iop_send_sync_request_itl(hba
, req
, 20000)) {
419 dprintk("Get config send cmd failed\n");
423 memcpy_fromio(config
, req
, sizeof(*config
));
424 writel(req32
, &hba
->u
.itl
.iop
->outbound_queue
);
428 static int iop_get_config_mv(struct hptiop_hba
*hba
,
429 struct hpt_iop_request_get_config
*config
)
431 struct hpt_iop_request_get_config
*req
= hba
->u
.mv
.internal_req
;
433 req
->header
.flags
= cpu_to_le32(IOP_REQUEST_FLAG_OUTPUT_CONTEXT
);
434 req
->header
.type
= cpu_to_le32(IOP_REQUEST_TYPE_GET_CONFIG
);
436 cpu_to_le32(sizeof(struct hpt_iop_request_get_config
));
437 req
->header
.result
= cpu_to_le32(IOP_RESULT_PENDING
);
438 req
->header
.context
= cpu_to_le32(IOP_REQUEST_TYPE_GET_CONFIG
<<5);
439 req
->header
.context_hi32
= 0;
441 if (iop_send_sync_request_mv(hba
, 0, 20000)) {
442 dprintk("Get config send cmd failed\n");
446 memcpy(config
, req
, sizeof(struct hpt_iop_request_get_config
));
450 static int iop_get_config_mvfrey(struct hptiop_hba
*hba
,
451 struct hpt_iop_request_get_config
*config
)
453 struct hpt_iop_request_get_config
*info
= hba
->u
.mvfrey
.config
;
455 if (info
->header
.size
!= sizeof(struct hpt_iop_request_get_config
) ||
456 info
->header
.type
!= IOP_REQUEST_TYPE_GET_CONFIG
)
459 config
->interface_version
= info
->interface_version
;
460 config
->firmware_version
= info
->firmware_version
;
461 config
->max_requests
= info
->max_requests
;
462 config
->request_size
= info
->request_size
;
463 config
->max_sg_count
= info
->max_sg_count
;
464 config
->data_transfer_length
= info
->data_transfer_length
;
465 config
->alignment_mask
= info
->alignment_mask
;
466 config
->max_devices
= info
->max_devices
;
467 config
->sdram_size
= info
->sdram_size
;
472 static int iop_set_config_itl(struct hptiop_hba
*hba
,
473 struct hpt_iop_request_set_config
*config
)
476 struct hpt_iop_request_set_config __iomem
*req
;
478 req32
= readl(&hba
->u
.itl
.iop
->inbound_queue
);
479 if (req32
== IOPMU_QUEUE_EMPTY
)
482 req
= (struct hpt_iop_request_set_config __iomem
*)
483 ((unsigned long)hba
->u
.itl
.iop
+ req32
);
485 memcpy_toio((u8 __iomem
*)req
+ sizeof(struct hpt_iop_request_header
),
486 (u8
*)config
+ sizeof(struct hpt_iop_request_header
),
487 sizeof(struct hpt_iop_request_set_config
) -
488 sizeof(struct hpt_iop_request_header
));
490 writel(0, &req
->header
.flags
);
491 writel(IOP_REQUEST_TYPE_SET_CONFIG
, &req
->header
.type
);
492 writel(sizeof(struct hpt_iop_request_set_config
), &req
->header
.size
);
493 writel(IOP_RESULT_PENDING
, &req
->header
.result
);
495 if (iop_send_sync_request_itl(hba
, req
, 20000)) {
496 dprintk("Set config send cmd failed\n");
500 writel(req32
, &hba
->u
.itl
.iop
->outbound_queue
);
504 static int iop_set_config_mv(struct hptiop_hba
*hba
,
505 struct hpt_iop_request_set_config
*config
)
507 struct hpt_iop_request_set_config
*req
= hba
->u
.mv
.internal_req
;
509 memcpy(req
, config
, sizeof(struct hpt_iop_request_set_config
));
510 req
->header
.flags
= cpu_to_le32(IOP_REQUEST_FLAG_OUTPUT_CONTEXT
);
511 req
->header
.type
= cpu_to_le32(IOP_REQUEST_TYPE_SET_CONFIG
);
513 cpu_to_le32(sizeof(struct hpt_iop_request_set_config
));
514 req
->header
.result
= cpu_to_le32(IOP_RESULT_PENDING
);
515 req
->header
.context
= cpu_to_le32(IOP_REQUEST_TYPE_SET_CONFIG
<<5);
516 req
->header
.context_hi32
= 0;
518 if (iop_send_sync_request_mv(hba
, 0, 20000)) {
519 dprintk("Set config send cmd failed\n");
526 static int iop_set_config_mvfrey(struct hptiop_hba
*hba
,
527 struct hpt_iop_request_set_config
*config
)
529 struct hpt_iop_request_set_config
*req
=
530 hba
->u
.mvfrey
.internal_req
.req_virt
;
532 memcpy(req
, config
, sizeof(struct hpt_iop_request_set_config
));
533 req
->header
.flags
= cpu_to_le32(IOP_REQUEST_FLAG_OUTPUT_CONTEXT
);
534 req
->header
.type
= cpu_to_le32(IOP_REQUEST_TYPE_SET_CONFIG
);
536 cpu_to_le32(sizeof(struct hpt_iop_request_set_config
));
537 req
->header
.result
= cpu_to_le32(IOP_RESULT_PENDING
);
538 req
->header
.context
= cpu_to_le32(IOP_REQUEST_TYPE_SET_CONFIG
<<5);
539 req
->header
.context_hi32
= 0;
541 if (iop_send_sync_request_mvfrey(hba
, 0, 20000)) {
542 dprintk("Set config send cmd failed\n");
549 static void hptiop_enable_intr_itl(struct hptiop_hba
*hba
)
551 writel(~(IOPMU_OUTBOUND_INT_POSTQUEUE
| IOPMU_OUTBOUND_INT_MSG0
),
552 &hba
->u
.itl
.iop
->outbound_intmask
);
555 static void hptiop_enable_intr_mv(struct hptiop_hba
*hba
)
557 writel(MVIOP_MU_OUTBOUND_INT_POSTQUEUE
| MVIOP_MU_OUTBOUND_INT_MSG
,
558 &hba
->u
.mv
.regs
->outbound_intmask
);
561 static void hptiop_enable_intr_mvfrey(struct hptiop_hba
*hba
)
563 writel(CPU_TO_F0_DRBL_MSG_BIT
, &(hba
->u
.mvfrey
.mu
->f0_doorbell_enable
));
564 writel(0x1, &(hba
->u
.mvfrey
.mu
->isr_enable
));
565 writel(0x1010, &(hba
->u
.mvfrey
.mu
->pcie_f0_int_enable
));
568 static int hptiop_initialize_iop(struct hptiop_hba
*hba
)
570 /* enable interrupts */
571 hba
->ops
->enable_intr(hba
);
573 hba
->initialized
= 1;
575 /* start background tasks */
576 if (iop_send_sync_msg(hba
,
577 IOPMU_INBOUND_MSG0_START_BACKGROUND_TASK
, 5000)) {
578 printk(KERN_ERR
"scsi%d: fail to start background task\n",
585 static void __iomem
*hptiop_map_pci_bar(struct hptiop_hba
*hba
, int index
)
587 u32 mem_base_phy
, length
;
588 void __iomem
*mem_base_virt
;
590 struct pci_dev
*pcidev
= hba
->pcidev
;
593 if (!(pci_resource_flags(pcidev
, index
) & IORESOURCE_MEM
)) {
594 printk(KERN_ERR
"scsi%d: pci resource invalid\n",
599 mem_base_phy
= pci_resource_start(pcidev
, index
);
600 length
= pci_resource_len(pcidev
, index
);
601 mem_base_virt
= ioremap(mem_base_phy
, length
);
603 if (!mem_base_virt
) {
604 printk(KERN_ERR
"scsi%d: Fail to ioremap memory space\n",
608 return mem_base_virt
;
611 static int hptiop_map_pci_bar_itl(struct hptiop_hba
*hba
)
613 struct pci_dev
*pcidev
= hba
->pcidev
;
614 hba
->u
.itl
.iop
= hptiop_map_pci_bar(hba
, 0);
615 if (hba
->u
.itl
.iop
== NULL
)
617 if ((pcidev
->device
& 0xff00) == 0x4400) {
618 hba
->u
.itl
.plx
= hba
->u
.itl
.iop
;
619 hba
->u
.itl
.iop
= hptiop_map_pci_bar(hba
, 2);
620 if (hba
->u
.itl
.iop
== NULL
) {
621 iounmap(hba
->u
.itl
.plx
);
628 static void hptiop_unmap_pci_bar_itl(struct hptiop_hba
*hba
)
631 iounmap(hba
->u
.itl
.plx
);
632 iounmap(hba
->u
.itl
.iop
);
635 static int hptiop_map_pci_bar_mv(struct hptiop_hba
*hba
)
637 hba
->u
.mv
.regs
= hptiop_map_pci_bar(hba
, 0);
638 if (hba
->u
.mv
.regs
== NULL
)
641 hba
->u
.mv
.mu
= hptiop_map_pci_bar(hba
, 2);
642 if (hba
->u
.mv
.mu
== NULL
) {
643 iounmap(hba
->u
.mv
.regs
);
650 static int hptiop_map_pci_bar_mvfrey(struct hptiop_hba
*hba
)
652 hba
->u
.mvfrey
.config
= hptiop_map_pci_bar(hba
, 0);
653 if (hba
->u
.mvfrey
.config
== NULL
)
656 hba
->u
.mvfrey
.mu
= hptiop_map_pci_bar(hba
, 2);
657 if (hba
->u
.mvfrey
.mu
== NULL
) {
658 iounmap(hba
->u
.mvfrey
.config
);
665 static void hptiop_unmap_pci_bar_mv(struct hptiop_hba
*hba
)
667 iounmap(hba
->u
.mv
.regs
);
668 iounmap(hba
->u
.mv
.mu
);
671 static void hptiop_unmap_pci_bar_mvfrey(struct hptiop_hba
*hba
)
673 iounmap(hba
->u
.mvfrey
.config
);
674 iounmap(hba
->u
.mvfrey
.mu
);
677 static void hptiop_message_callback(struct hptiop_hba
*hba
, u32 msg
)
679 dprintk("iop message 0x%x\n", msg
);
681 if (msg
== IOPMU_INBOUND_MSG0_NOP
||
682 msg
== IOPMU_INBOUND_MSG0_RESET_COMM
)
685 if (!hba
->initialized
)
688 if (msg
== IOPMU_INBOUND_MSG0_RESET
) {
689 atomic_set(&hba
->resetting
, 0);
690 wake_up(&hba
->reset_wq
);
692 else if (msg
<= IOPMU_INBOUND_MSG0_MAX
)
696 static struct hptiop_request
*get_req(struct hptiop_hba
*hba
)
698 struct hptiop_request
*ret
;
700 dprintk("get_req : req=%p\n", hba
->req_list
);
704 hba
->req_list
= ret
->next
;
709 static void free_req(struct hptiop_hba
*hba
, struct hptiop_request
*req
)
711 dprintk("free_req(%d, %p)\n", req
->index
, req
);
712 req
->next
= hba
->req_list
;
716 static void hptiop_finish_scsi_req(struct hptiop_hba
*hba
, u32 tag
,
717 struct hpt_iop_request_scsi_command
*req
)
719 struct scsi_cmnd
*scp
;
721 dprintk("hptiop_finish_scsi_req: req=%p, type=%d, "
722 "result=%d, context=0x%x tag=%d\n",
723 req
, req
->header
.type
, req
->header
.result
,
724 req
->header
.context
, tag
);
726 BUG_ON(!req
->header
.result
);
727 BUG_ON(req
->header
.type
!= cpu_to_le32(IOP_REQUEST_TYPE_SCSI_COMMAND
));
729 scp
= hba
->reqs
[tag
].scp
;
731 if (HPT_SCP(scp
)->mapped
)
734 switch (le32_to_cpu(req
->header
.result
)) {
735 case IOP_RESULT_SUCCESS
:
737 scsi_bufflen(scp
) - le32_to_cpu(req
->dataxfer_length
));
738 scp
->result
= (DID_OK
<<16);
740 case IOP_RESULT_BAD_TARGET
:
741 scp
->result
= (DID_BAD_TARGET
<<16);
743 case IOP_RESULT_BUSY
:
744 scp
->result
= (DID_BUS_BUSY
<<16);
746 case IOP_RESULT_RESET
:
747 scp
->result
= (DID_RESET
<<16);
749 case IOP_RESULT_FAIL
:
750 scp
->result
= (DID_ERROR
<<16);
752 case IOP_RESULT_INVALID_REQUEST
:
753 scp
->result
= (DID_ABORT
<<16);
755 case IOP_RESULT_CHECK_CONDITION
:
757 scsi_bufflen(scp
) - le32_to_cpu(req
->dataxfer_length
));
758 scp
->result
= SAM_STAT_CHECK_CONDITION
;
759 memcpy(scp
->sense_buffer
, &req
->sg_list
, SCSI_SENSE_BUFFERSIZE
);
764 scp
->result
= DRIVER_INVALID
<< 24 | DID_ABORT
<< 16;
769 scsi_bufflen(scp
) - le32_to_cpu(req
->dataxfer_length
));
772 dprintk("scsi_done(%p)\n", scp
);
774 free_req(hba
, &hba
->reqs
[tag
]);
777 static void hptiop_host_request_callback_itl(struct hptiop_hba
*hba
, u32 _tag
)
779 struct hpt_iop_request_scsi_command
*req
;
782 if (hba
->iopintf_v2
) {
783 tag
= _tag
& ~IOPMU_QUEUE_REQUEST_RESULT_BIT
;
784 req
= hba
->reqs
[tag
].req_virt
;
785 if (likely(_tag
& IOPMU_QUEUE_REQUEST_RESULT_BIT
))
786 req
->header
.result
= cpu_to_le32(IOP_RESULT_SUCCESS
);
789 req
= hba
->reqs
[tag
].req_virt
;
792 hptiop_finish_scsi_req(hba
, tag
, req
);
795 static void hptiop_iop_request_callback_itl(struct hptiop_hba
*hba
, u32 tag
)
797 struct hpt_iop_request_header __iomem
*req
;
798 struct hpt_iop_request_ioctl_command __iomem
*p
;
799 struct hpt_ioctl_k
*arg
;
801 req
= (struct hpt_iop_request_header __iomem
*)
802 ((unsigned long)hba
->u
.itl
.iop
+ tag
);
803 dprintk("hptiop_iop_request_callback_itl: req=%p, type=%d, "
804 "result=%d, context=0x%x tag=%d\n",
805 req
, readl(&req
->type
), readl(&req
->result
),
806 readl(&req
->context
), tag
);
808 BUG_ON(!readl(&req
->result
));
809 BUG_ON(readl(&req
->type
) != IOP_REQUEST_TYPE_IOCTL_COMMAND
);
811 p
= (struct hpt_iop_request_ioctl_command __iomem
*)req
;
812 arg
= (struct hpt_ioctl_k
*)(unsigned long)
813 (readl(&req
->context
) |
814 ((u64
)readl(&req
->context_hi32
)<<32));
816 if (readl(&req
->result
) == IOP_RESULT_SUCCESS
) {
817 arg
->result
= HPT_IOCTL_RESULT_OK
;
819 if (arg
->outbuf_size
)
820 memcpy_fromio(arg
->outbuf
,
821 &p
->buf
[(readl(&p
->inbuf_size
) + 3)& ~3],
824 if (arg
->bytes_returned
)
825 *arg
->bytes_returned
= arg
->outbuf_size
;
828 arg
->result
= HPT_IOCTL_RESULT_FAILED
;
831 writel(tag
, &hba
->u
.itl
.iop
->outbound_queue
);
834 static irqreturn_t
hptiop_intr(int irq
, void *dev_id
)
836 struct hptiop_hba
*hba
= dev_id
;
840 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
841 handled
= hba
->ops
->iop_intr(hba
);
842 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
847 static int hptiop_buildsgl(struct scsi_cmnd
*scp
, struct hpt_iopsg
*psg
)
849 struct Scsi_Host
*host
= scp
->device
->host
;
850 struct hptiop_hba
*hba
= (struct hptiop_hba
*)host
->hostdata
;
851 struct scatterlist
*sg
;
854 nseg
= scsi_dma_map(scp
);
859 HPT_SCP(scp
)->sgcnt
= nseg
;
860 HPT_SCP(scp
)->mapped
= 1;
862 BUG_ON(HPT_SCP(scp
)->sgcnt
> hba
->max_sg_descriptors
);
864 scsi_for_each_sg(scp
, sg
, HPT_SCP(scp
)->sgcnt
, idx
) {
865 psg
[idx
].pci_address
= cpu_to_le64(sg_dma_address(sg
)) |
866 hba
->ops
->host_phy_flag
;
867 psg
[idx
].size
= cpu_to_le32(sg_dma_len(sg
));
868 psg
[idx
].eot
= (idx
== HPT_SCP(scp
)->sgcnt
- 1) ?
871 return HPT_SCP(scp
)->sgcnt
;
874 static void hptiop_post_req_itl(struct hptiop_hba
*hba
,
875 struct hptiop_request
*_req
)
877 struct hpt_iop_request_header
*reqhdr
= _req
->req_virt
;
879 reqhdr
->context
= cpu_to_le32(IOPMU_QUEUE_ADDR_HOST_BIT
|
881 reqhdr
->context_hi32
= 0;
883 if (hba
->iopintf_v2
) {
886 size
= le32_to_cpu(reqhdr
->size
);
888 size_bits
= IOPMU_QUEUE_REQUEST_SIZE_BIT
;
890 size_bits
= IOPMU_QUEUE_ADDR_HOST_BIT
;
892 size_bits
= IOPMU_QUEUE_REQUEST_SIZE_BIT
|
893 IOPMU_QUEUE_ADDR_HOST_BIT
;
894 writel(_req
->req_shifted_phy
| size_bits
,
895 &hba
->u
.itl
.iop
->inbound_queue
);
897 writel(_req
->req_shifted_phy
| IOPMU_QUEUE_ADDR_HOST_BIT
,
898 &hba
->u
.itl
.iop
->inbound_queue
);
901 static void hptiop_post_req_mv(struct hptiop_hba
*hba
,
902 struct hptiop_request
*_req
)
904 struct hpt_iop_request_header
*reqhdr
= _req
->req_virt
;
907 reqhdr
->context
= cpu_to_le32(_req
->index
<<8 |
908 IOP_REQUEST_TYPE_SCSI_COMMAND
<<5);
909 reqhdr
->context_hi32
= 0;
910 size
= le32_to_cpu(reqhdr
->size
);
914 else if (size
<= 256*2)
916 else if (size
<= 256*3)
921 mv_inbound_write((_req
->req_shifted_phy
<< 5) |
922 MVIOP_MU_QUEUE_ADDR_HOST_BIT
| size_bit
, hba
);
925 static void hptiop_post_req_mvfrey(struct hptiop_hba
*hba
,
926 struct hptiop_request
*_req
)
928 struct hpt_iop_request_header
*reqhdr
= _req
->req_virt
;
931 reqhdr
->flags
|= cpu_to_le32(IOP_REQUEST_FLAG_OUTPUT_CONTEXT
|
932 IOP_REQUEST_FLAG_ADDR_BITS
|
933 ((_req
->req_shifted_phy
>> 11) & 0xffff0000));
934 reqhdr
->context
= cpu_to_le32(IOPMU_QUEUE_ADDR_HOST_BIT
|
935 (_req
->index
<< 4) | reqhdr
->type
);
936 reqhdr
->context_hi32
= cpu_to_le32((_req
->req_shifted_phy
<< 5) &
939 hba
->u
.mvfrey
.inlist_wptr
++;
940 index
= hba
->u
.mvfrey
.inlist_wptr
& 0x3fff;
942 if (index
== hba
->u
.mvfrey
.list_count
) {
944 hba
->u
.mvfrey
.inlist_wptr
&= ~0x3fff;
945 hba
->u
.mvfrey
.inlist_wptr
^= CL_POINTER_TOGGLE
;
948 hba
->u
.mvfrey
.inlist
[index
].addr
=
949 (dma_addr_t
)_req
->req_shifted_phy
<< 5;
950 hba
->u
.mvfrey
.inlist
[index
].intrfc_len
= (reqhdr
->size
+ 3) / 4;
951 writel(hba
->u
.mvfrey
.inlist_wptr
,
952 &(hba
->u
.mvfrey
.mu
->inbound_write_ptr
));
953 readl(&(hba
->u
.mvfrey
.mu
->inbound_write_ptr
));
956 static int hptiop_reset_comm_itl(struct hptiop_hba
*hba
)
961 static int hptiop_reset_comm_mv(struct hptiop_hba
*hba
)
966 static int hptiop_reset_comm_mvfrey(struct hptiop_hba
*hba
)
968 u32 list_count
= hba
->u
.mvfrey
.list_count
;
970 if (iop_send_sync_msg(hba
, IOPMU_INBOUND_MSG0_RESET_COMM
, 3000))
973 /* wait 100ms for MCU ready */
976 writel(cpu_to_le32(hba
->u
.mvfrey
.inlist_phy
& 0xffffffff),
977 &(hba
->u
.mvfrey
.mu
->inbound_base
));
978 writel(cpu_to_le32((hba
->u
.mvfrey
.inlist_phy
>> 16) >> 16),
979 &(hba
->u
.mvfrey
.mu
->inbound_base_high
));
981 writel(cpu_to_le32(hba
->u
.mvfrey
.outlist_phy
& 0xffffffff),
982 &(hba
->u
.mvfrey
.mu
->outbound_base
));
983 writel(cpu_to_le32((hba
->u
.mvfrey
.outlist_phy
>> 16) >> 16),
984 &(hba
->u
.mvfrey
.mu
->outbound_base_high
));
986 writel(cpu_to_le32(hba
->u
.mvfrey
.outlist_cptr_phy
& 0xffffffff),
987 &(hba
->u
.mvfrey
.mu
->outbound_shadow_base
));
988 writel(cpu_to_le32((hba
->u
.mvfrey
.outlist_cptr_phy
>> 16) >> 16),
989 &(hba
->u
.mvfrey
.mu
->outbound_shadow_base_high
));
991 hba
->u
.mvfrey
.inlist_wptr
= (list_count
- 1) | CL_POINTER_TOGGLE
;
992 *hba
->u
.mvfrey
.outlist_cptr
= (list_count
- 1) | CL_POINTER_TOGGLE
;
993 hba
->u
.mvfrey
.outlist_rptr
= list_count
- 1;
997 static int hptiop_queuecommand_lck(struct scsi_cmnd
*scp
,
998 void (*done
)(struct scsi_cmnd
*))
1000 struct Scsi_Host
*host
= scp
->device
->host
;
1001 struct hptiop_hba
*hba
= (struct hptiop_hba
*)host
->hostdata
;
1002 struct hpt_iop_request_scsi_command
*req
;
1004 struct hptiop_request
*_req
;
1007 scp
->scsi_done
= done
;
1009 _req
= get_req(hba
);
1011 dprintk("hptiop_queuecmd : no free req\n");
1012 return SCSI_MLQUEUE_HOST_BUSY
;
1017 dprintk("hptiop_queuecmd(scp=%p) %d/%d/%d/%llu cdb=(%08x-%08x-%08x-%08x) "
1018 "req_index=%d, req=%p\n",
1020 host
->host_no
, scp
->device
->channel
,
1021 scp
->device
->id
, scp
->device
->lun
,
1022 cpu_to_be32(((u32
*)scp
->cmnd
)[0]),
1023 cpu_to_be32(((u32
*)scp
->cmnd
)[1]),
1024 cpu_to_be32(((u32
*)scp
->cmnd
)[2]),
1025 cpu_to_be32(((u32
*)scp
->cmnd
)[3]),
1026 _req
->index
, _req
->req_virt
);
1030 if (scp
->device
->channel
||
1031 (scp
->device
->id
> hba
->max_devices
) ||
1032 ((scp
->device
->id
== (hba
->max_devices
-1)) && scp
->device
->lun
)) {
1033 scp
->result
= DID_BAD_TARGET
<< 16;
1034 free_req(hba
, _req
);
1038 req
= _req
->req_virt
;
1040 /* build S/G table */
1041 sg_count
= hptiop_buildsgl(scp
, req
->sg_list
);
1043 HPT_SCP(scp
)->mapped
= 0;
1045 req
->header
.flags
= cpu_to_le32(IOP_REQUEST_FLAG_OUTPUT_CONTEXT
);
1046 req
->header
.type
= cpu_to_le32(IOP_REQUEST_TYPE_SCSI_COMMAND
);
1047 req
->header
.result
= cpu_to_le32(IOP_RESULT_PENDING
);
1048 req
->dataxfer_length
= cpu_to_le32(scsi_bufflen(scp
));
1049 req
->channel
= scp
->device
->channel
;
1050 req
->target
= scp
->device
->id
;
1051 req
->lun
= scp
->device
->lun
;
1052 req
->header
.size
= cpu_to_le32(
1053 sizeof(struct hpt_iop_request_scsi_command
)
1054 - sizeof(struct hpt_iopsg
)
1055 + sg_count
* sizeof(struct hpt_iopsg
));
1057 memcpy(req
->cdb
, scp
->cmnd
, sizeof(req
->cdb
));
1058 hba
->ops
->post_req(hba
, _req
);
1062 dprintk("scsi_done(scp=%p)\n", scp
);
1063 scp
->scsi_done(scp
);
1067 static DEF_SCSI_QCMD(hptiop_queuecommand
)
1069 static const char *hptiop_info(struct Scsi_Host
*host
)
1071 return driver_name_long
;
1074 static int hptiop_reset_hba(struct hptiop_hba
*hba
)
1076 if (atomic_xchg(&hba
->resetting
, 1) == 0) {
1077 atomic_inc(&hba
->reset_count
);
1078 hba
->ops
->post_msg(hba
, IOPMU_INBOUND_MSG0_RESET
);
1081 wait_event_timeout(hba
->reset_wq
,
1082 atomic_read(&hba
->resetting
) == 0, 60 * HZ
);
1084 if (atomic_read(&hba
->resetting
)) {
1085 /* IOP is in unknown state, abort reset */
1086 printk(KERN_ERR
"scsi%d: reset failed\n", hba
->host
->host_no
);
1090 if (iop_send_sync_msg(hba
,
1091 IOPMU_INBOUND_MSG0_START_BACKGROUND_TASK
, 5000)) {
1092 dprintk("scsi%d: fail to start background task\n",
1093 hba
->host
->host_no
);
1099 static int hptiop_reset(struct scsi_cmnd
*scp
)
1101 struct hptiop_hba
* hba
= (struct hptiop_hba
*)scp
->device
->host
->hostdata
;
1103 printk(KERN_WARNING
"hptiop_reset(%d/%d/%d)\n",
1104 scp
->device
->host
->host_no
, -1, -1);
1106 return hptiop_reset_hba(hba
)? FAILED
: SUCCESS
;
1109 static int hptiop_adjust_disk_queue_depth(struct scsi_device
*sdev
,
1112 struct hptiop_hba
*hba
= (struct hptiop_hba
*)sdev
->host
->hostdata
;
1114 if (queue_depth
> hba
->max_requests
)
1115 queue_depth
= hba
->max_requests
;
1116 return scsi_change_queue_depth(sdev
, queue_depth
);
1119 static ssize_t
hptiop_show_version(struct device
*dev
,
1120 struct device_attribute
*attr
, char *buf
)
1122 return snprintf(buf
, PAGE_SIZE
, "%s\n", driver_ver
);
1125 static ssize_t
hptiop_show_fw_version(struct device
*dev
,
1126 struct device_attribute
*attr
, char *buf
)
1128 struct Scsi_Host
*host
= class_to_shost(dev
);
1129 struct hptiop_hba
*hba
= (struct hptiop_hba
*)host
->hostdata
;
1131 return snprintf(buf
, PAGE_SIZE
, "%d.%d.%d.%d\n",
1132 hba
->firmware_version
>> 24,
1133 (hba
->firmware_version
>> 16) & 0xff,
1134 (hba
->firmware_version
>> 8) & 0xff,
1135 hba
->firmware_version
& 0xff);
1138 static struct device_attribute hptiop_attr_version
= {
1140 .name
= "driver-version",
1143 .show
= hptiop_show_version
,
1146 static struct device_attribute hptiop_attr_fw_version
= {
1148 .name
= "firmware-version",
1151 .show
= hptiop_show_fw_version
,
1154 static struct device_attribute
*hptiop_attrs
[] = {
1155 &hptiop_attr_version
,
1156 &hptiop_attr_fw_version
,
1160 static int hptiop_slave_config(struct scsi_device
*sdev
)
1162 if (sdev
->type
== TYPE_TAPE
)
1163 blk_queue_max_hw_sectors(sdev
->request_queue
, 8192);
1168 static struct scsi_host_template driver_template
= {
1169 .module
= THIS_MODULE
,
1170 .name
= driver_name
,
1171 .queuecommand
= hptiop_queuecommand
,
1172 .eh_host_reset_handler
= hptiop_reset
,
1173 .info
= hptiop_info
,
1175 .proc_name
= driver_name
,
1176 .shost_attrs
= hptiop_attrs
,
1177 .slave_configure
= hptiop_slave_config
,
1179 .change_queue_depth
= hptiop_adjust_disk_queue_depth
,
1182 static int hptiop_internal_memalloc_itl(struct hptiop_hba
*hba
)
1187 static int hptiop_internal_memalloc_mv(struct hptiop_hba
*hba
)
1189 hba
->u
.mv
.internal_req
= dma_alloc_coherent(&hba
->pcidev
->dev
,
1190 0x800, &hba
->u
.mv
.internal_req_phy
, GFP_KERNEL
);
1191 if (hba
->u
.mv
.internal_req
)
1197 static int hptiop_internal_memalloc_mvfrey(struct hptiop_hba
*hba
)
1199 u32 list_count
= readl(&hba
->u
.mvfrey
.mu
->inbound_conf_ctl
);
1203 BUG_ON(hba
->max_request_size
== 0);
1205 if (list_count
== 0) {
1212 hba
->u
.mvfrey
.list_count
= list_count
;
1213 hba
->u
.mvfrey
.internal_mem_size
= 0x800 +
1214 list_count
* sizeof(struct mvfrey_inlist_entry
) +
1215 list_count
* sizeof(struct mvfrey_outlist_entry
) +
1218 p
= dma_alloc_coherent(&hba
->pcidev
->dev
,
1219 hba
->u
.mvfrey
.internal_mem_size
, &phy
, GFP_KERNEL
);
1223 hba
->u
.mvfrey
.internal_req
.req_virt
= p
;
1224 hba
->u
.mvfrey
.internal_req
.req_shifted_phy
= phy
>> 5;
1225 hba
->u
.mvfrey
.internal_req
.scp
= NULL
;
1226 hba
->u
.mvfrey
.internal_req
.next
= NULL
;
1231 hba
->u
.mvfrey
.inlist
= (struct mvfrey_inlist_entry
*)p
;
1232 hba
->u
.mvfrey
.inlist_phy
= phy
;
1234 p
+= list_count
* sizeof(struct mvfrey_inlist_entry
);
1235 phy
+= list_count
* sizeof(struct mvfrey_inlist_entry
);
1237 hba
->u
.mvfrey
.outlist
= (struct mvfrey_outlist_entry
*)p
;
1238 hba
->u
.mvfrey
.outlist_phy
= phy
;
1240 p
+= list_count
* sizeof(struct mvfrey_outlist_entry
);
1241 phy
+= list_count
* sizeof(struct mvfrey_outlist_entry
);
1243 hba
->u
.mvfrey
.outlist_cptr
= (__le32
*)p
;
1244 hba
->u
.mvfrey
.outlist_cptr_phy
= phy
;
1249 static int hptiop_internal_memfree_itl(struct hptiop_hba
*hba
)
1254 static int hptiop_internal_memfree_mv(struct hptiop_hba
*hba
)
1256 if (hba
->u
.mv
.internal_req
) {
1257 dma_free_coherent(&hba
->pcidev
->dev
, 0x800,
1258 hba
->u
.mv
.internal_req
, hba
->u
.mv
.internal_req_phy
);
1264 static int hptiop_internal_memfree_mvfrey(struct hptiop_hba
*hba
)
1266 if (hba
->u
.mvfrey
.internal_req
.req_virt
) {
1267 dma_free_coherent(&hba
->pcidev
->dev
,
1268 hba
->u
.mvfrey
.internal_mem_size
,
1269 hba
->u
.mvfrey
.internal_req
.req_virt
,
1271 hba
->u
.mvfrey
.internal_req
.req_shifted_phy
<< 5);
1277 static int hptiop_probe(struct pci_dev
*pcidev
, const struct pci_device_id
*id
)
1279 struct Scsi_Host
*host
= NULL
;
1280 struct hptiop_hba
*hba
;
1281 struct hptiop_adapter_ops
*iop_ops
;
1282 struct hpt_iop_request_get_config iop_config
;
1283 struct hpt_iop_request_set_config set_config
;
1284 dma_addr_t start_phy
;
1286 u32 offset
, i
, req_size
;
1289 dprintk("hptiop_probe(%p)\n", pcidev
);
1291 if (pci_enable_device(pcidev
)) {
1292 printk(KERN_ERR
"hptiop: fail to enable pci device\n");
1296 printk(KERN_INFO
"adapter at PCI %d:%d:%d, IRQ %d\n",
1297 pcidev
->bus
->number
, pcidev
->devfn
>> 3, pcidev
->devfn
& 7,
1300 pci_set_master(pcidev
);
1302 /* Enable 64bit DMA if possible */
1303 iop_ops
= (struct hptiop_adapter_ops
*)id
->driver_data
;
1304 rc
= dma_set_mask(&pcidev
->dev
,
1305 DMA_BIT_MASK(iop_ops
->hw_dma_bit_mask
));
1307 rc
= dma_set_mask(&pcidev
->dev
, DMA_BIT_MASK(32));
1310 printk(KERN_ERR
"hptiop: fail to set dma_mask\n");
1311 goto disable_pci_device
;
1314 if (pci_request_regions(pcidev
, driver_name
)) {
1315 printk(KERN_ERR
"hptiop: pci_request_regions failed\n");
1316 goto disable_pci_device
;
1319 host
= scsi_host_alloc(&driver_template
, sizeof(struct hptiop_hba
));
1321 printk(KERN_ERR
"hptiop: fail to alloc scsi host\n");
1322 goto free_pci_regions
;
1325 hba
= (struct hptiop_hba
*)host
->hostdata
;
1326 memset(hba
, 0, sizeof(struct hptiop_hba
));
1329 hba
->pcidev
= pcidev
;
1331 hba
->initialized
= 0;
1332 hba
->iopintf_v2
= 0;
1334 atomic_set(&hba
->resetting
, 0);
1335 atomic_set(&hba
->reset_count
, 0);
1337 init_waitqueue_head(&hba
->reset_wq
);
1338 init_waitqueue_head(&hba
->ioctl_wq
);
1340 host
->max_lun
= 128;
1341 host
->max_channel
= 0;
1343 host
->n_io_port
= 0;
1344 host
->irq
= pcidev
->irq
;
1346 if (hba
->ops
->map_pci_bar(hba
))
1347 goto free_scsi_host
;
1349 if (hba
->ops
->iop_wait_ready(hba
, 20000)) {
1350 printk(KERN_ERR
"scsi%d: firmware not ready\n",
1351 hba
->host
->host_no
);
1355 if (hba
->ops
->family
== MV_BASED_IOP
) {
1356 if (hba
->ops
->internal_memalloc(hba
)) {
1357 printk(KERN_ERR
"scsi%d: internal_memalloc failed\n",
1358 hba
->host
->host_no
);
1363 if (hba
->ops
->get_config(hba
, &iop_config
)) {
1364 printk(KERN_ERR
"scsi%d: get config failed\n",
1365 hba
->host
->host_no
);
1369 hba
->max_requests
= min(le32_to_cpu(iop_config
.max_requests
),
1370 HPTIOP_MAX_REQUESTS
);
1371 hba
->max_devices
= le32_to_cpu(iop_config
.max_devices
);
1372 hba
->max_request_size
= le32_to_cpu(iop_config
.request_size
);
1373 hba
->max_sg_descriptors
= le32_to_cpu(iop_config
.max_sg_count
);
1374 hba
->firmware_version
= le32_to_cpu(iop_config
.firmware_version
);
1375 hba
->interface_version
= le32_to_cpu(iop_config
.interface_version
);
1376 hba
->sdram_size
= le32_to_cpu(iop_config
.sdram_size
);
1378 if (hba
->ops
->family
== MVFREY_BASED_IOP
) {
1379 if (hba
->ops
->internal_memalloc(hba
)) {
1380 printk(KERN_ERR
"scsi%d: internal_memalloc failed\n",
1381 hba
->host
->host_no
);
1384 if (hba
->ops
->reset_comm(hba
)) {
1385 printk(KERN_ERR
"scsi%d: reset comm failed\n",
1386 hba
->host
->host_no
);
1391 if (hba
->firmware_version
> 0x01020000 ||
1392 hba
->interface_version
> 0x01020000)
1393 hba
->iopintf_v2
= 1;
1395 host
->max_sectors
= le32_to_cpu(iop_config
.data_transfer_length
) >> 9;
1396 host
->max_id
= le32_to_cpu(iop_config
.max_devices
);
1397 host
->sg_tablesize
= le32_to_cpu(iop_config
.max_sg_count
);
1398 host
->can_queue
= le32_to_cpu(iop_config
.max_requests
);
1399 host
->cmd_per_lun
= le32_to_cpu(iop_config
.max_requests
);
1400 host
->max_cmd_len
= 16;
1402 req_size
= sizeof(struct hpt_iop_request_scsi_command
)
1403 + sizeof(struct hpt_iopsg
) * (hba
->max_sg_descriptors
- 1);
1404 if ((req_size
& 0x1f) != 0)
1405 req_size
= (req_size
+ 0x1f) & ~0x1f;
1407 memset(&set_config
, 0, sizeof(struct hpt_iop_request_set_config
));
1408 set_config
.iop_id
= cpu_to_le32(host
->host_no
);
1409 set_config
.vbus_id
= cpu_to_le16(host
->host_no
);
1410 set_config
.max_host_request_size
= cpu_to_le16(req_size
);
1412 if (hba
->ops
->set_config(hba
, &set_config
)) {
1413 printk(KERN_ERR
"scsi%d: set config failed\n",
1414 hba
->host
->host_no
);
1418 pci_set_drvdata(pcidev
, host
);
1420 if (request_irq(pcidev
->irq
, hptiop_intr
, IRQF_SHARED
,
1421 driver_name
, hba
)) {
1422 printk(KERN_ERR
"scsi%d: request irq %d failed\n",
1423 hba
->host
->host_no
, pcidev
->irq
);
1427 /* Allocate request mem */
1429 dprintk("req_size=%d, max_requests=%d\n", req_size
, hba
->max_requests
);
1431 hba
->req_size
= req_size
;
1432 hba
->req_list
= NULL
;
1434 for (i
= 0; i
< hba
->max_requests
; i
++) {
1435 start_virt
= dma_alloc_coherent(&pcidev
->dev
,
1436 hba
->req_size
+ 0x20,
1437 &start_phy
, GFP_KERNEL
);
1440 printk(KERN_ERR
"scsi%d: fail to alloc request mem\n",
1441 hba
->host
->host_no
);
1442 goto free_request_mem
;
1445 hba
->dma_coherent
[i
] = start_virt
;
1446 hba
->dma_coherent_handle
[i
] = start_phy
;
1448 if ((start_phy
& 0x1f) != 0) {
1449 offset
= ((start_phy
+ 0x1f) & ~0x1f) - start_phy
;
1450 start_phy
+= offset
;
1451 start_virt
+= offset
;
1454 hba
->reqs
[i
].next
= NULL
;
1455 hba
->reqs
[i
].req_virt
= start_virt
;
1456 hba
->reqs
[i
].req_shifted_phy
= start_phy
>> 5;
1457 hba
->reqs
[i
].index
= i
;
1458 free_req(hba
, &hba
->reqs
[i
]);
1461 /* Enable Interrupt and start background task */
1462 if (hptiop_initialize_iop(hba
))
1463 goto free_request_mem
;
1465 if (scsi_add_host(host
, &pcidev
->dev
)) {
1466 printk(KERN_ERR
"scsi%d: scsi_add_host failed\n",
1467 hba
->host
->host_no
);
1468 goto free_request_mem
;
1471 scsi_scan_host(host
);
1473 dprintk("scsi%d: hptiop_probe successfully\n", hba
->host
->host_no
);
1477 for (i
= 0; i
< hba
->max_requests
; i
++) {
1478 if (hba
->dma_coherent
[i
] && hba
->dma_coherent_handle
[i
])
1479 dma_free_coherent(&hba
->pcidev
->dev
,
1480 hba
->req_size
+ 0x20,
1481 hba
->dma_coherent
[i
],
1482 hba
->dma_coherent_handle
[i
]);
1487 free_irq(hba
->pcidev
->irq
, hba
);
1490 hba
->ops
->internal_memfree(hba
);
1492 hba
->ops
->unmap_pci_bar(hba
);
1495 scsi_host_put(host
);
1498 pci_release_regions(pcidev
);
1501 pci_disable_device(pcidev
);
1503 dprintk("scsi%d: hptiop_probe fail\n", host
? host
->host_no
: 0);
1507 static void hptiop_shutdown(struct pci_dev
*pcidev
)
1509 struct Scsi_Host
*host
= pci_get_drvdata(pcidev
);
1510 struct hptiop_hba
*hba
= (struct hptiop_hba
*)host
->hostdata
;
1512 dprintk("hptiop_shutdown(%p)\n", hba
);
1515 if (iop_send_sync_msg(hba
, IOPMU_INBOUND_MSG0_SHUTDOWN
, 60000))
1516 printk(KERN_ERR
"scsi%d: shutdown the iop timeout\n",
1517 hba
->host
->host_no
);
1519 /* disable all outbound interrupts */
1520 hba
->ops
->disable_intr(hba
);
1523 static void hptiop_disable_intr_itl(struct hptiop_hba
*hba
)
1527 int_mask
= readl(&hba
->u
.itl
.iop
->outbound_intmask
);
1529 IOPMU_OUTBOUND_INT_MSG0
| IOPMU_OUTBOUND_INT_POSTQUEUE
,
1530 &hba
->u
.itl
.iop
->outbound_intmask
);
1531 readl(&hba
->u
.itl
.iop
->outbound_intmask
);
1534 static void hptiop_disable_intr_mv(struct hptiop_hba
*hba
)
1536 writel(0, &hba
->u
.mv
.regs
->outbound_intmask
);
1537 readl(&hba
->u
.mv
.regs
->outbound_intmask
);
1540 static void hptiop_disable_intr_mvfrey(struct hptiop_hba
*hba
)
1542 writel(0, &(hba
->u
.mvfrey
.mu
->f0_doorbell_enable
));
1543 readl(&(hba
->u
.mvfrey
.mu
->f0_doorbell_enable
));
1544 writel(0, &(hba
->u
.mvfrey
.mu
->isr_enable
));
1545 readl(&(hba
->u
.mvfrey
.mu
->isr_enable
));
1546 writel(0, &(hba
->u
.mvfrey
.mu
->pcie_f0_int_enable
));
1547 readl(&(hba
->u
.mvfrey
.mu
->pcie_f0_int_enable
));
1550 static void hptiop_remove(struct pci_dev
*pcidev
)
1552 struct Scsi_Host
*host
= pci_get_drvdata(pcidev
);
1553 struct hptiop_hba
*hba
= (struct hptiop_hba
*)host
->hostdata
;
1556 dprintk("scsi%d: hptiop_remove\n", hba
->host
->host_no
);
1558 scsi_remove_host(host
);
1560 hptiop_shutdown(pcidev
);
1562 free_irq(hba
->pcidev
->irq
, hba
);
1564 for (i
= 0; i
< hba
->max_requests
; i
++) {
1565 if (hba
->dma_coherent
[i
] && hba
->dma_coherent_handle
[i
])
1566 dma_free_coherent(&hba
->pcidev
->dev
,
1567 hba
->req_size
+ 0x20,
1568 hba
->dma_coherent
[i
],
1569 hba
->dma_coherent_handle
[i
]);
1574 hba
->ops
->internal_memfree(hba
);
1576 hba
->ops
->unmap_pci_bar(hba
);
1578 pci_release_regions(hba
->pcidev
);
1579 pci_set_drvdata(hba
->pcidev
, NULL
);
1580 pci_disable_device(hba
->pcidev
);
1582 scsi_host_put(host
);
1585 static struct hptiop_adapter_ops hptiop_itl_ops
= {
1586 .family
= INTEL_BASED_IOP
,
1587 .iop_wait_ready
= iop_wait_ready_itl
,
1588 .internal_memalloc
= hptiop_internal_memalloc_itl
,
1589 .internal_memfree
= hptiop_internal_memfree_itl
,
1590 .map_pci_bar
= hptiop_map_pci_bar_itl
,
1591 .unmap_pci_bar
= hptiop_unmap_pci_bar_itl
,
1592 .enable_intr
= hptiop_enable_intr_itl
,
1593 .disable_intr
= hptiop_disable_intr_itl
,
1594 .get_config
= iop_get_config_itl
,
1595 .set_config
= iop_set_config_itl
,
1596 .iop_intr
= iop_intr_itl
,
1597 .post_msg
= hptiop_post_msg_itl
,
1598 .post_req
= hptiop_post_req_itl
,
1599 .hw_dma_bit_mask
= 64,
1600 .reset_comm
= hptiop_reset_comm_itl
,
1601 .host_phy_flag
= cpu_to_le64(0),
1604 static struct hptiop_adapter_ops hptiop_mv_ops
= {
1605 .family
= MV_BASED_IOP
,
1606 .iop_wait_ready
= iop_wait_ready_mv
,
1607 .internal_memalloc
= hptiop_internal_memalloc_mv
,
1608 .internal_memfree
= hptiop_internal_memfree_mv
,
1609 .map_pci_bar
= hptiop_map_pci_bar_mv
,
1610 .unmap_pci_bar
= hptiop_unmap_pci_bar_mv
,
1611 .enable_intr
= hptiop_enable_intr_mv
,
1612 .disable_intr
= hptiop_disable_intr_mv
,
1613 .get_config
= iop_get_config_mv
,
1614 .set_config
= iop_set_config_mv
,
1615 .iop_intr
= iop_intr_mv
,
1616 .post_msg
= hptiop_post_msg_mv
,
1617 .post_req
= hptiop_post_req_mv
,
1618 .hw_dma_bit_mask
= 33,
1619 .reset_comm
= hptiop_reset_comm_mv
,
1620 .host_phy_flag
= cpu_to_le64(0),
1623 static struct hptiop_adapter_ops hptiop_mvfrey_ops
= {
1624 .family
= MVFREY_BASED_IOP
,
1625 .iop_wait_ready
= iop_wait_ready_mvfrey
,
1626 .internal_memalloc
= hptiop_internal_memalloc_mvfrey
,
1627 .internal_memfree
= hptiop_internal_memfree_mvfrey
,
1628 .map_pci_bar
= hptiop_map_pci_bar_mvfrey
,
1629 .unmap_pci_bar
= hptiop_unmap_pci_bar_mvfrey
,
1630 .enable_intr
= hptiop_enable_intr_mvfrey
,
1631 .disable_intr
= hptiop_disable_intr_mvfrey
,
1632 .get_config
= iop_get_config_mvfrey
,
1633 .set_config
= iop_set_config_mvfrey
,
1634 .iop_intr
= iop_intr_mvfrey
,
1635 .post_msg
= hptiop_post_msg_mvfrey
,
1636 .post_req
= hptiop_post_req_mvfrey
,
1637 .hw_dma_bit_mask
= 64,
1638 .reset_comm
= hptiop_reset_comm_mvfrey
,
1639 .host_phy_flag
= cpu_to_le64(1),
1642 static struct pci_device_id hptiop_id_table
[] = {
1643 { PCI_VDEVICE(TTI
, 0x3220), (kernel_ulong_t
)&hptiop_itl_ops
},
1644 { PCI_VDEVICE(TTI
, 0x3320), (kernel_ulong_t
)&hptiop_itl_ops
},
1645 { PCI_VDEVICE(TTI
, 0x3410), (kernel_ulong_t
)&hptiop_itl_ops
},
1646 { PCI_VDEVICE(TTI
, 0x3510), (kernel_ulong_t
)&hptiop_itl_ops
},
1647 { PCI_VDEVICE(TTI
, 0x3511), (kernel_ulong_t
)&hptiop_itl_ops
},
1648 { PCI_VDEVICE(TTI
, 0x3520), (kernel_ulong_t
)&hptiop_itl_ops
},
1649 { PCI_VDEVICE(TTI
, 0x3521), (kernel_ulong_t
)&hptiop_itl_ops
},
1650 { PCI_VDEVICE(TTI
, 0x3522), (kernel_ulong_t
)&hptiop_itl_ops
},
1651 { PCI_VDEVICE(TTI
, 0x3530), (kernel_ulong_t
)&hptiop_itl_ops
},
1652 { PCI_VDEVICE(TTI
, 0x3540), (kernel_ulong_t
)&hptiop_itl_ops
},
1653 { PCI_VDEVICE(TTI
, 0x3560), (kernel_ulong_t
)&hptiop_itl_ops
},
1654 { PCI_VDEVICE(TTI
, 0x4210), (kernel_ulong_t
)&hptiop_itl_ops
},
1655 { PCI_VDEVICE(TTI
, 0x4211), (kernel_ulong_t
)&hptiop_itl_ops
},
1656 { PCI_VDEVICE(TTI
, 0x4310), (kernel_ulong_t
)&hptiop_itl_ops
},
1657 { PCI_VDEVICE(TTI
, 0x4311), (kernel_ulong_t
)&hptiop_itl_ops
},
1658 { PCI_VDEVICE(TTI
, 0x4320), (kernel_ulong_t
)&hptiop_itl_ops
},
1659 { PCI_VDEVICE(TTI
, 0x4321), (kernel_ulong_t
)&hptiop_itl_ops
},
1660 { PCI_VDEVICE(TTI
, 0x4322), (kernel_ulong_t
)&hptiop_itl_ops
},
1661 { PCI_VDEVICE(TTI
, 0x4400), (kernel_ulong_t
)&hptiop_itl_ops
},
1662 { PCI_VDEVICE(TTI
, 0x3120), (kernel_ulong_t
)&hptiop_mv_ops
},
1663 { PCI_VDEVICE(TTI
, 0x3122), (kernel_ulong_t
)&hptiop_mv_ops
},
1664 { PCI_VDEVICE(TTI
, 0x3020), (kernel_ulong_t
)&hptiop_mv_ops
},
1665 { PCI_VDEVICE(TTI
, 0x4520), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1666 { PCI_VDEVICE(TTI
, 0x4522), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1667 { PCI_VDEVICE(TTI
, 0x3610), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1668 { PCI_VDEVICE(TTI
, 0x3611), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1669 { PCI_VDEVICE(TTI
, 0x3620), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1670 { PCI_VDEVICE(TTI
, 0x3622), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1671 { PCI_VDEVICE(TTI
, 0x3640), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1672 { PCI_VDEVICE(TTI
, 0x3660), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1673 { PCI_VDEVICE(TTI
, 0x3680), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1674 { PCI_VDEVICE(TTI
, 0x3690), (kernel_ulong_t
)&hptiop_mvfrey_ops
},
1678 MODULE_DEVICE_TABLE(pci
, hptiop_id_table
);
1680 static struct pci_driver hptiop_pci_driver
= {
1681 .name
= driver_name
,
1682 .id_table
= hptiop_id_table
,
1683 .probe
= hptiop_probe
,
1684 .remove
= hptiop_remove
,
1685 .shutdown
= hptiop_shutdown
,
1688 static int __init
hptiop_module_init(void)
1690 printk(KERN_INFO
"%s %s\n", driver_name_long
, driver_ver
);
1691 return pci_register_driver(&hptiop_pci_driver
);
1694 static void __exit
hptiop_module_exit(void)
1696 pci_unregister_driver(&hptiop_pci_driver
);
1700 module_init(hptiop_module_init
);
1701 module_exit(hptiop_module_exit
);
1703 MODULE_LICENSE("GPL");