2 * sx8.c: Driver for Promise SATA SX8 looks-like-I2O hardware
4 * Copyright 2004-2005 Red Hat, Inc.
6 * Author/maintainer: Jeff Garzik <jgarzik@pobox.com>
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/pci.h>
17 #include <linux/slab.h>
18 #include <linux/spinlock.h>
19 #include <linux/blkdev.h>
20 #include <linux/sched.h>
21 #include <linux/interrupt.h>
22 #include <linux/compiler.h>
23 #include <linux/workqueue.h>
24 #include <linux/bitops.h>
25 #include <linux/delay.h>
26 #include <linux/time.h>
27 #include <linux/hdreg.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/completion.h>
30 #include <linux/scatterlist.h>
32 #include <asm/uaccess.h>
36 #define CARM_VERBOSE_DEBUG
39 #undef CARM_VERBOSE_DEBUG
43 #define DRV_NAME "sx8"
44 #define DRV_VERSION "1.0"
45 #define PFX DRV_NAME ": "
47 MODULE_AUTHOR("Jeff Garzik");
48 MODULE_LICENSE("GPL");
49 MODULE_DESCRIPTION("Promise SATA SX8 block driver");
50 MODULE_VERSION(DRV_VERSION
);
53 * SX8 hardware has a single message queue for all ATA ports.
54 * When this driver was written, the hardware (firmware?) would
55 * corrupt data eventually, if more than one request was outstanding.
56 * As one can imagine, having 8 ports bottlenecking on a single
57 * command hurts performance.
59 * Based on user reports, later versions of the hardware (firmware?)
60 * seem to be able to survive with more than one command queued.
62 * Therefore, we default to the safe option -- 1 command -- but
63 * allow the user to increase this.
65 * SX8 should be able to support up to ~60 queued commands (CARM_MAX_REQ),
66 * but problems seem to occur when you exceed ~30, even on newer hardware.
68 static int max_queue
= 1;
69 module_param(max_queue
, int, 0444);
70 MODULE_PARM_DESC(max_queue
, "Maximum number of queued commands. (min==1, max==30, safe==1)");
73 #define NEXT_RESP(idx) ((idx + 1) % RMSG_Q_LEN)
75 /* 0xf is just arbitrary, non-zero noise; this is sorta like poisoning */
76 #define TAG_ENCODE(tag) (((tag) << 16) | 0xf)
77 #define TAG_DECODE(tag) (((tag) >> 16) & 0x1f)
78 #define TAG_VALID(tag) ((((tag) & 0xf) == 0xf) && (TAG_DECODE(tag) < 32))
80 /* note: prints function name for you */
82 #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
83 #ifdef CARM_VERBOSE_DEBUG
84 #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
86 #define VPRINTK(fmt, args...)
87 #endif /* CARM_VERBOSE_DEBUG */
89 #define DPRINTK(fmt, args...)
90 #define VPRINTK(fmt, args...)
91 #endif /* CARM_DEBUG */
96 #define assert(expr) \
97 if(unlikely(!(expr))) { \
98 printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%d\n", \
99 #expr, __FILE__, __func__, __LINE__); \
103 /* defines only for the constants which don't work well as enums */
107 /* adapter-wide limits */
109 CARM_SHM_SIZE
= (4096 << 7),
110 CARM_MINORS_PER_MAJOR
= 256 / CARM_MAX_PORTS
,
111 CARM_MAX_WAIT_Q
= CARM_MAX_PORTS
+ 1,
113 /* command message queue limits */
114 CARM_MAX_REQ
= 64, /* max command msgs per host */
115 CARM_MSG_LOW_WATER
= (CARM_MAX_REQ
/ 4), /* refill mark */
117 /* S/G limits, host-wide and per-request */
118 CARM_MAX_REQ_SG
= 32, /* max s/g entries per request */
119 CARM_MAX_HOST_SG
= 600, /* max s/g entries per host */
120 CARM_SG_LOW_WATER
= (CARM_MAX_HOST_SG
/ 4), /* re-fill mark */
122 /* hardware registers */
124 CARM_INT_STAT
= 0x10, /* interrupt status */
125 CARM_INT_MASK
= 0x14, /* interrupt mask */
126 CARM_HMUC
= 0x18, /* host message unit control */
127 RBUF_ADDR_LO
= 0x20, /* response msg DMA buf low 32 bits */
128 RBUF_ADDR_HI
= 0x24, /* response msg DMA buf high 32 bits */
130 CARM_RESP_IDX
= 0x2c,
131 CARM_CMS0
= 0x30, /* command message size reg 0 */
136 /* bits in CARM_INT_{STAT,MASK} */
137 INT_RESERVED
= 0xfffffff0,
138 INT_WATCHDOG
= (1 << 3), /* watchdog timer */
139 INT_Q_OVERFLOW
= (1 << 2), /* cmd msg q overflow */
140 INT_Q_AVAILABLE
= (1 << 1), /* cmd msg q has free space */
141 INT_RESPONSE
= (1 << 0), /* response msg available */
142 INT_ACK_MASK
= INT_WATCHDOG
| INT_Q_OVERFLOW
,
143 INT_DEF_MASK
= INT_RESERVED
| INT_Q_OVERFLOW
|
146 /* command messages, and related register bits */
147 CARM_HAVE_RESP
= 0x01,
151 CARM_MSG_GET_CAPACITY
= 4,
158 CARM_WZBC
= (1 << 0),
160 CARM_Q_FULL
= (1 << 3),
164 /* CARM_MSG_IOCTL messages */
165 CARM_IOC_SCAN_CHAN
= 5, /* scan channels for devices */
166 CARM_IOC_GET_TCQ
= 13, /* get tcq/ncq depth */
167 CARM_IOC_SET_TCQ
= 14, /* set tcq/ncq depth */
169 IOC_SCAN_CHAN_NODEV
= 0x1f,
170 IOC_SCAN_CHAN_OFFSET
= 0x40,
172 /* CARM_MSG_ARRAY messages */
175 ARRAY_NO_EXIST
= (1 << 31),
177 /* response messages */
178 RMSG_SZ
= 8, /* sizeof(struct carm_response) */
179 RMSG_Q_LEN
= 48, /* resp. msg list length */
180 RMSG_OK
= 1, /* bit indicating msg was successful */
181 /* length of entire resp. msg buffer */
182 RBUF_LEN
= RMSG_SZ
* RMSG_Q_LEN
,
184 PDC_SHM_SIZE
= (4096 << 7), /* length of entire h/w buffer */
186 /* CARM_MSG_MISC messages */
191 /* MISC_GET_FW_VER feature bits */
192 FW_VER_4PORT
= (1 << 2), /* 1=4 ports, 0=8 ports */
193 FW_VER_NON_RAID
= (1 << 1), /* 1=non-RAID firmware, 0=RAID */
194 FW_VER_ZCR
= (1 << 0), /* zero channel RAID (whatever that is) */
196 /* carm_host flags */
197 FL_NON_RAID
= FW_VER_NON_RAID
,
198 FL_4PORT
= FW_VER_4PORT
,
199 FL_FW_VER_MASK
= (FW_VER_NON_RAID
| FW_VER_4PORT
),
201 FL_DYN_MAJOR
= (1 << 17),
205 CARM_SG_BOUNDARY
= 0xffffUL
, /* s/g segment boundary */
208 enum scatter_gather_types
{
214 HST_INVALID
, /* invalid state; never used */
215 HST_ALLOC_BUF
, /* setting up master SHM area */
216 HST_ERROR
, /* we never leave here */
217 HST_PORT_SCAN
, /* start dev scan */
218 HST_DEV_SCAN_START
, /* start per-device probe */
219 HST_DEV_SCAN
, /* continue per-device probe */
220 HST_DEV_ACTIVATE
, /* activate devices we found */
221 HST_PROBE_FINISHED
, /* probe is complete */
222 HST_PROBE_START
, /* initiate probe */
223 HST_SYNC_TIME
, /* tell firmware what time it is */
224 HST_GET_FW_VER
, /* get firmware version, adapter port cnt */
228 static const char *state_name
[] = {
233 "HST_DEV_SCAN_START",
236 "HST_PROBE_FINISHED",
244 unsigned int port_no
;
245 struct gendisk
*disk
;
246 struct carm_host
*host
;
248 /* attached device characteristics */
256 struct carm_request
{
259 unsigned int msg_type
;
260 unsigned int msg_subtype
;
261 unsigned int msg_bucket
;
263 struct carm_port
*port
;
264 struct scatterlist sg
[CARM_MAX_REQ_SG
];
278 struct pci_dev
*pdev
;
282 struct request_queue
*oob_q
;
285 unsigned int hw_sg_used
;
287 unsigned int resp_idx
;
289 unsigned int wait_q_prod
;
290 unsigned int wait_q_cons
;
291 struct request_queue
*wait_q
[CARM_MAX_WAIT_Q
];
295 struct carm_request req
[CARM_MAX_REQ
];
300 unsigned long dev_active
;
301 unsigned long dev_present
;
302 struct carm_port port
[CARM_MAX_PORTS
];
304 struct work_struct fsm_task
;
306 struct completion probe_comp
;
309 struct carm_response
{
312 } __attribute__((packed
));
317 } __attribute__((packed
));
328 struct carm_msg_sg sg
[32];
329 } __attribute__((packed
));
331 struct carm_msg_allocbuf
{
345 struct carm_msg_sg sg
[8];
346 } __attribute__((packed
));
348 struct carm_msg_ioctl
{
356 } __attribute__((packed
));
358 struct carm_msg_sync_time
{
365 } __attribute__((packed
));
367 struct carm_msg_get_fw_ver
{
374 } __attribute__((packed
));
381 } __attribute__((packed
));
383 struct carm_array_info
{
391 __le16 stripe_blk_sz
;
405 /* device list continues beyond this point? */
406 } __attribute__((packed
));
408 static int carm_init_one (struct pci_dev
*pdev
, const struct pci_device_id
*ent
);
409 static void carm_remove_one (struct pci_dev
*pdev
);
410 static int carm_bdev_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
);
412 static const struct pci_device_id carm_pci_tbl
[] = {
413 { PCI_VENDOR_ID_PROMISE
, 0x8000, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, },
414 { PCI_VENDOR_ID_PROMISE
, 0x8002, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, },
415 { } /* terminate list */
417 MODULE_DEVICE_TABLE(pci
, carm_pci_tbl
);
419 static struct pci_driver carm_driver
= {
421 .id_table
= carm_pci_tbl
,
422 .probe
= carm_init_one
,
423 .remove
= carm_remove_one
,
426 static const struct block_device_operations carm_bd_ops
= {
427 .owner
= THIS_MODULE
,
428 .getgeo
= carm_bdev_getgeo
,
431 static unsigned int carm_host_id
;
432 static unsigned long carm_major_alloc
;
436 static int carm_bdev_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
438 struct carm_port
*port
= bdev
->bd_disk
->private_data
;
440 geo
->heads
= (u8
) port
->dev_geom_head
;
441 geo
->sectors
= (u8
) port
->dev_geom_sect
;
442 geo
->cylinders
= port
->dev_geom_cyl
;
446 static const u32 msg_sizes
[] = { 32, 64, 128, CARM_MSG_SIZE
};
448 static inline int carm_lookup_bucket(u32 msg_size
)
452 for (i
= 0; i
< ARRAY_SIZE(msg_sizes
); i
++)
453 if (msg_size
<= msg_sizes
[i
])
459 static void carm_init_buckets(void __iomem
*mmio
)
463 for (i
= 0; i
< ARRAY_SIZE(msg_sizes
); i
++)
464 writel(msg_sizes
[i
], mmio
+ CARM_CMS0
+ (4 * i
));
467 static inline void *carm_ref_msg(struct carm_host
*host
,
468 unsigned int msg_idx
)
470 return host
->msg_base
+ (msg_idx
* CARM_MSG_SIZE
);
473 static inline dma_addr_t
carm_ref_msg_dma(struct carm_host
*host
,
474 unsigned int msg_idx
)
476 return host
->msg_dma
+ (msg_idx
* CARM_MSG_SIZE
);
479 static int carm_send_msg(struct carm_host
*host
,
480 struct carm_request
*crq
)
482 void __iomem
*mmio
= host
->mmio
;
483 u32 msg
= (u32
) carm_ref_msg_dma(host
, crq
->tag
);
484 u32 cm_bucket
= crq
->msg_bucket
;
490 tmp
= readl(mmio
+ CARM_HMUC
);
491 if (tmp
& CARM_Q_FULL
) {
493 tmp
= readl(mmio
+ CARM_INT_MASK
);
494 tmp
|= INT_Q_AVAILABLE
;
495 writel(tmp
, mmio
+ CARM_INT_MASK
);
496 readl(mmio
+ CARM_INT_MASK
); /* flush */
498 DPRINTK("host msg queue full\n");
501 writel(msg
| (cm_bucket
<< 1), mmio
+ CARM_IHQP
);
502 readl(mmio
+ CARM_IHQP
); /* flush */
508 static struct carm_request
*carm_get_request(struct carm_host
*host
)
512 /* obey global hardware limit on S/G entries */
513 if (host
->hw_sg_used
>= (CARM_MAX_HOST_SG
- CARM_MAX_REQ_SG
))
516 for (i
= 0; i
< max_queue
; i
++)
517 if ((host
->msg_alloc
& (1ULL << i
)) == 0) {
518 struct carm_request
*crq
= &host
->req
[i
];
522 host
->msg_alloc
|= (1ULL << i
);
525 assert(host
->n_msgs
<= CARM_MAX_REQ
);
526 sg_init_table(crq
->sg
, CARM_MAX_REQ_SG
);
530 DPRINTK("no request available, returning NULL\n");
534 static int carm_put_request(struct carm_host
*host
, struct carm_request
*crq
)
536 assert(crq
->tag
< max_queue
);
538 if (unlikely((host
->msg_alloc
& (1ULL << crq
->tag
)) == 0))
539 return -EINVAL
; /* tried to clear a tag that was not active */
541 assert(host
->hw_sg_used
>= crq
->n_elem
);
543 host
->msg_alloc
&= ~(1ULL << crq
->tag
);
544 host
->hw_sg_used
-= crq
->n_elem
;
550 static struct carm_request
*carm_get_special(struct carm_host
*host
)
553 struct carm_request
*crq
= NULL
;
557 while (tries
-- > 0) {
558 spin_lock_irqsave(&host
->lock
, flags
);
559 crq
= carm_get_request(host
);
560 spin_unlock_irqrestore(&host
->lock
, flags
);
570 rq
= blk_get_request(host
->oob_q
, WRITE
/* bogus */, GFP_KERNEL
);
572 spin_lock_irqsave(&host
->lock
, flags
);
573 carm_put_request(host
, crq
);
574 spin_unlock_irqrestore(&host
->lock
, flags
);
582 static int carm_array_info (struct carm_host
*host
, unsigned int array_idx
)
584 struct carm_msg_ioctl
*ioc
;
588 struct carm_request
*crq
;
591 crq
= carm_get_special(host
);
599 ioc
= carm_ref_msg(host
, idx
);
600 msg_dma
= carm_ref_msg_dma(host
, idx
);
601 msg_data
= (u32
) (msg_dma
+ sizeof(struct carm_array_info
));
603 crq
->msg_type
= CARM_MSG_ARRAY
;
604 crq
->msg_subtype
= CARM_ARRAY_INFO
;
605 rc
= carm_lookup_bucket(sizeof(struct carm_msg_ioctl
) +
606 sizeof(struct carm_array_info
));
608 crq
->msg_bucket
= (u32
) rc
;
610 memset(ioc
, 0, sizeof(*ioc
));
611 ioc
->type
= CARM_MSG_ARRAY
;
612 ioc
->subtype
= CARM_ARRAY_INFO
;
613 ioc
->array_id
= (u8
) array_idx
;
614 ioc
->handle
= cpu_to_le32(TAG_ENCODE(idx
));
615 ioc
->data_addr
= cpu_to_le32(msg_data
);
617 spin_lock_irq(&host
->lock
);
618 assert(host
->state
== HST_DEV_SCAN_START
||
619 host
->state
== HST_DEV_SCAN
);
620 spin_unlock_irq(&host
->lock
);
622 DPRINTK("blk_execute_rq_nowait, tag == %u\n", idx
);
623 crq
->rq
->cmd_type
= REQ_TYPE_SPECIAL
;
624 crq
->rq
->special
= crq
;
625 blk_execute_rq_nowait(host
->oob_q
, NULL
, crq
->rq
, true, NULL
);
630 spin_lock_irq(&host
->lock
);
631 host
->state
= HST_ERROR
;
632 spin_unlock_irq(&host
->lock
);
636 typedef unsigned int (*carm_sspc_t
)(struct carm_host
*, unsigned int, void *);
638 static int carm_send_special (struct carm_host
*host
, carm_sspc_t func
)
640 struct carm_request
*crq
;
641 struct carm_msg_ioctl
*ioc
;
643 unsigned int idx
, msg_size
;
646 crq
= carm_get_special(host
);
652 mem
= carm_ref_msg(host
, idx
);
654 msg_size
= func(host
, idx
, mem
);
657 crq
->msg_type
= ioc
->type
;
658 crq
->msg_subtype
= ioc
->subtype
;
659 rc
= carm_lookup_bucket(msg_size
);
661 crq
->msg_bucket
= (u32
) rc
;
663 DPRINTK("blk_execute_rq_nowait, tag == %u\n", idx
);
664 crq
->rq
->cmd_type
= REQ_TYPE_SPECIAL
;
665 crq
->rq
->special
= crq
;
666 blk_execute_rq_nowait(host
->oob_q
, NULL
, crq
->rq
, true, NULL
);
671 static unsigned int carm_fill_sync_time(struct carm_host
*host
,
672 unsigned int idx
, void *mem
)
675 struct carm_msg_sync_time
*st
= mem
;
677 do_gettimeofday(&tv
);
679 memset(st
, 0, sizeof(*st
));
680 st
->type
= CARM_MSG_MISC
;
681 st
->subtype
= MISC_SET_TIME
;
682 st
->handle
= cpu_to_le32(TAG_ENCODE(idx
));
683 st
->timestamp
= cpu_to_le32(tv
.tv_sec
);
685 return sizeof(struct carm_msg_sync_time
);
688 static unsigned int carm_fill_alloc_buf(struct carm_host
*host
,
689 unsigned int idx
, void *mem
)
691 struct carm_msg_allocbuf
*ab
= mem
;
693 memset(ab
, 0, sizeof(*ab
));
694 ab
->type
= CARM_MSG_MISC
;
695 ab
->subtype
= MISC_ALLOC_MEM
;
696 ab
->handle
= cpu_to_le32(TAG_ENCODE(idx
));
698 ab
->sg_type
= SGT_32BIT
;
699 ab
->addr
= cpu_to_le32(host
->shm_dma
+ (PDC_SHM_SIZE
>> 1));
700 ab
->len
= cpu_to_le32(PDC_SHM_SIZE
>> 1);
701 ab
->evt_pool
= cpu_to_le32(host
->shm_dma
+ (16 * 1024));
702 ab
->n_evt
= cpu_to_le32(1024);
703 ab
->rbuf_pool
= cpu_to_le32(host
->shm_dma
);
704 ab
->n_rbuf
= cpu_to_le32(RMSG_Q_LEN
);
705 ab
->msg_pool
= cpu_to_le32(host
->shm_dma
+ RBUF_LEN
);
706 ab
->n_msg
= cpu_to_le32(CARM_Q_LEN
);
707 ab
->sg
[0].start
= cpu_to_le32(host
->shm_dma
+ (PDC_SHM_SIZE
>> 1));
708 ab
->sg
[0].len
= cpu_to_le32(65536);
710 return sizeof(struct carm_msg_allocbuf
);
713 static unsigned int carm_fill_scan_channels(struct carm_host
*host
,
714 unsigned int idx
, void *mem
)
716 struct carm_msg_ioctl
*ioc
= mem
;
717 u32 msg_data
= (u32
) (carm_ref_msg_dma(host
, idx
) +
718 IOC_SCAN_CHAN_OFFSET
);
720 memset(ioc
, 0, sizeof(*ioc
));
721 ioc
->type
= CARM_MSG_IOCTL
;
722 ioc
->subtype
= CARM_IOC_SCAN_CHAN
;
723 ioc
->handle
= cpu_to_le32(TAG_ENCODE(idx
));
724 ioc
->data_addr
= cpu_to_le32(msg_data
);
726 /* fill output data area with "no device" default values */
727 mem
+= IOC_SCAN_CHAN_OFFSET
;
728 memset(mem
, IOC_SCAN_CHAN_NODEV
, CARM_MAX_PORTS
);
730 return IOC_SCAN_CHAN_OFFSET
+ CARM_MAX_PORTS
;
733 static unsigned int carm_fill_get_fw_ver(struct carm_host
*host
,
734 unsigned int idx
, void *mem
)
736 struct carm_msg_get_fw_ver
*ioc
= mem
;
737 u32 msg_data
= (u32
) (carm_ref_msg_dma(host
, idx
) + sizeof(*ioc
));
739 memset(ioc
, 0, sizeof(*ioc
));
740 ioc
->type
= CARM_MSG_MISC
;
741 ioc
->subtype
= MISC_GET_FW_VER
;
742 ioc
->handle
= cpu_to_le32(TAG_ENCODE(idx
));
743 ioc
->data_addr
= cpu_to_le32(msg_data
);
745 return sizeof(struct carm_msg_get_fw_ver
) +
746 sizeof(struct carm_fw_ver
);
749 static inline void carm_end_request_queued(struct carm_host
*host
,
750 struct carm_request
*crq
,
753 struct request
*req
= crq
->rq
;
756 __blk_end_request_all(req
, error
);
758 rc
= carm_put_request(host
, crq
);
762 static inline void carm_push_q (struct carm_host
*host
, struct request_queue
*q
)
764 unsigned int idx
= host
->wait_q_prod
% CARM_MAX_WAIT_Q
;
767 VPRINTK("STOPPED QUEUE %p\n", q
);
769 host
->wait_q
[idx
] = q
;
771 BUG_ON(host
->wait_q_prod
== host
->wait_q_cons
); /* overrun */
774 static inline struct request_queue
*carm_pop_q(struct carm_host
*host
)
778 if (host
->wait_q_prod
== host
->wait_q_cons
)
781 idx
= host
->wait_q_cons
% CARM_MAX_WAIT_Q
;
784 return host
->wait_q
[idx
];
787 static inline void carm_round_robin(struct carm_host
*host
)
789 struct request_queue
*q
= carm_pop_q(host
);
792 VPRINTK("STARTED QUEUE %p\n", q
);
796 static inline void carm_end_rq(struct carm_host
*host
, struct carm_request
*crq
,
799 carm_end_request_queued(host
, crq
, error
);
801 carm_round_robin(host
);
802 else if ((host
->n_msgs
<= CARM_MSG_LOW_WATER
) &&
803 (host
->hw_sg_used
<= CARM_SG_LOW_WATER
)) {
804 carm_round_robin(host
);
808 static void carm_oob_rq_fn(struct request_queue
*q
)
810 struct carm_host
*host
= q
->queuedata
;
811 struct carm_request
*crq
;
816 DPRINTK("get req\n");
817 rq
= blk_fetch_request(q
);
823 assert(crq
->rq
== rq
);
827 DPRINTK("send req\n");
828 rc
= carm_send_msg(host
, crq
);
830 blk_requeue_request(q
, rq
);
831 carm_push_q(host
, q
);
832 return; /* call us again later, eventually */
837 static void carm_rq_fn(struct request_queue
*q
)
839 struct carm_port
*port
= q
->queuedata
;
840 struct carm_host
*host
= port
->host
;
841 struct carm_msg_rw
*msg
;
842 struct carm_request
*crq
;
844 struct scatterlist
*sg
;
845 int writing
= 0, pci_dir
, i
, n_elem
, rc
;
847 unsigned int msg_size
;
850 VPRINTK("get req\n");
851 rq
= blk_peek_request(q
);
855 crq
= carm_get_request(host
);
857 carm_push_q(host
, q
);
858 return; /* call us again later, eventually */
862 blk_start_request(rq
);
864 if (rq_data_dir(rq
) == WRITE
) {
866 pci_dir
= PCI_DMA_TODEVICE
;
868 pci_dir
= PCI_DMA_FROMDEVICE
;
871 /* get scatterlist from block layer */
873 n_elem
= blk_rq_map_sg(q
, rq
, sg
);
875 carm_end_rq(host
, crq
, -EIO
);
876 return; /* request with no s/g entries? */
879 /* map scatterlist to PCI bus addresses */
880 n_elem
= pci_map_sg(host
->pdev
, sg
, n_elem
, pci_dir
);
882 carm_end_rq(host
, crq
, -EIO
);
883 return; /* request with no s/g entries? */
885 crq
->n_elem
= n_elem
;
887 host
->hw_sg_used
+= n_elem
;
890 * build read/write message
893 VPRINTK("build msg\n");
894 msg
= (struct carm_msg_rw
*) carm_ref_msg(host
, crq
->tag
);
897 msg
->type
= CARM_MSG_WRITE
;
898 crq
->msg_type
= CARM_MSG_WRITE
;
900 msg
->type
= CARM_MSG_READ
;
901 crq
->msg_type
= CARM_MSG_READ
;
904 msg
->id
= port
->port_no
;
905 msg
->sg_count
= n_elem
;
906 msg
->sg_type
= SGT_32BIT
;
907 msg
->handle
= cpu_to_le32(TAG_ENCODE(crq
->tag
));
908 msg
->lba
= cpu_to_le32(blk_rq_pos(rq
) & 0xffffffff);
909 tmp
= (blk_rq_pos(rq
) >> 16) >> 16;
910 msg
->lba_high
= cpu_to_le16( (u16
) tmp
);
911 msg
->lba_count
= cpu_to_le16(blk_rq_sectors(rq
));
913 msg_size
= sizeof(struct carm_msg_rw
) - sizeof(msg
->sg
);
914 for (i
= 0; i
< n_elem
; i
++) {
915 struct carm_msg_sg
*carm_sg
= &msg
->sg
[i
];
916 carm_sg
->start
= cpu_to_le32(sg_dma_address(&crq
->sg
[i
]));
917 carm_sg
->len
= cpu_to_le32(sg_dma_len(&crq
->sg
[i
]));
918 msg_size
+= sizeof(struct carm_msg_sg
);
921 rc
= carm_lookup_bucket(msg_size
);
923 crq
->msg_bucket
= (u32
) rc
;
926 * queue read/write message to hardware
929 VPRINTK("send msg, tag == %u\n", crq
->tag
);
930 rc
= carm_send_msg(host
, crq
);
932 carm_put_request(host
, crq
);
933 blk_requeue_request(q
, rq
);
934 carm_push_q(host
, q
);
935 return; /* call us again later, eventually */
938 goto queue_one_request
;
941 static void carm_handle_array_info(struct carm_host
*host
,
942 struct carm_request
*crq
, u8
*mem
,
945 struct carm_port
*port
;
946 u8
*msg_data
= mem
+ sizeof(struct carm_array_info
);
947 struct carm_array_info
*desc
= (struct carm_array_info
*) msg_data
;
954 carm_end_rq(host
, crq
, error
);
958 if (le32_to_cpu(desc
->array_status
) & ARRAY_NO_EXIST
)
961 cur_port
= host
->cur_scan_dev
;
963 /* should never occur */
964 if ((cur_port
< 0) || (cur_port
>= CARM_MAX_PORTS
)) {
965 printk(KERN_ERR PFX
"BUG: cur_scan_dev==%d, array_id==%d\n",
966 cur_port
, (int) desc
->array_id
);
970 port
= &host
->port
[cur_port
];
972 lo
= (u64
) le32_to_cpu(desc
->size
);
973 hi
= (u64
) le16_to_cpu(desc
->size_hi
);
975 port
->capacity
= lo
| (hi
<< 32);
976 port
->dev_geom_head
= le16_to_cpu(desc
->head
);
977 port
->dev_geom_sect
= le16_to_cpu(desc
->sect
);
978 port
->dev_geom_cyl
= le16_to_cpu(desc
->cyl
);
980 host
->dev_active
|= (1 << cur_port
);
982 strncpy(port
->name
, desc
->name
, sizeof(port
->name
));
983 port
->name
[sizeof(port
->name
) - 1] = 0;
984 slen
= strlen(port
->name
);
985 while (slen
&& (port
->name
[slen
- 1] == ' ')) {
986 port
->name
[slen
- 1] = 0;
990 printk(KERN_INFO DRV_NAME
"(%s): port %u device %Lu sectors\n",
991 pci_name(host
->pdev
), port
->port_no
,
992 (unsigned long long) port
->capacity
);
993 printk(KERN_INFO DRV_NAME
"(%s): port %u device \"%s\"\n",
994 pci_name(host
->pdev
), port
->port_no
, port
->name
);
997 assert(host
->state
== HST_DEV_SCAN
);
998 schedule_work(&host
->fsm_task
);
1001 static void carm_handle_scan_chan(struct carm_host
*host
,
1002 struct carm_request
*crq
, u8
*mem
,
1005 u8
*msg_data
= mem
+ IOC_SCAN_CHAN_OFFSET
;
1006 unsigned int i
, dev_count
= 0;
1007 int new_state
= HST_DEV_SCAN_START
;
1011 carm_end_rq(host
, crq
, error
);
1014 new_state
= HST_ERROR
;
1018 /* TODO: scan and support non-disk devices */
1019 for (i
= 0; i
< 8; i
++)
1020 if (msg_data
[i
] == 0) { /* direct-access device (disk) */
1021 host
->dev_present
|= (1 << i
);
1025 printk(KERN_INFO DRV_NAME
"(%s): found %u interesting devices\n",
1026 pci_name(host
->pdev
), dev_count
);
1029 assert(host
->state
== HST_PORT_SCAN
);
1030 host
->state
= new_state
;
1031 schedule_work(&host
->fsm_task
);
1034 static void carm_handle_generic(struct carm_host
*host
,
1035 struct carm_request
*crq
, int error
,
1036 int cur_state
, int next_state
)
1040 carm_end_rq(host
, crq
, error
);
1042 assert(host
->state
== cur_state
);
1044 host
->state
= HST_ERROR
;
1046 host
->state
= next_state
;
1047 schedule_work(&host
->fsm_task
);
1050 static inline void carm_handle_rw(struct carm_host
*host
,
1051 struct carm_request
*crq
, int error
)
1057 if (rq_data_dir(crq
->rq
) == WRITE
)
1058 pci_dir
= PCI_DMA_TODEVICE
;
1060 pci_dir
= PCI_DMA_FROMDEVICE
;
1062 pci_unmap_sg(host
->pdev
, &crq
->sg
[0], crq
->n_elem
, pci_dir
);
1064 carm_end_rq(host
, crq
, error
);
1067 static inline void carm_handle_resp(struct carm_host
*host
,
1068 __le32 ret_handle_le
, u32 status
)
1070 u32 handle
= le32_to_cpu(ret_handle_le
);
1071 unsigned int msg_idx
;
1072 struct carm_request
*crq
;
1073 int error
= (status
== RMSG_OK
) ? 0 : -EIO
;
1076 VPRINTK("ENTER, handle == 0x%x\n", handle
);
1078 if (unlikely(!TAG_VALID(handle
))) {
1079 printk(KERN_ERR DRV_NAME
"(%s): BUG: invalid tag 0x%x\n",
1080 pci_name(host
->pdev
), handle
);
1084 msg_idx
= TAG_DECODE(handle
);
1085 VPRINTK("tag == %u\n", msg_idx
);
1087 crq
= &host
->req
[msg_idx
];
1090 if (likely(crq
->msg_type
== CARM_MSG_READ
||
1091 crq
->msg_type
== CARM_MSG_WRITE
)) {
1092 carm_handle_rw(host
, crq
, error
);
1096 mem
= carm_ref_msg(host
, msg_idx
);
1098 switch (crq
->msg_type
) {
1099 case CARM_MSG_IOCTL
: {
1100 switch (crq
->msg_subtype
) {
1101 case CARM_IOC_SCAN_CHAN
:
1102 carm_handle_scan_chan(host
, crq
, mem
, error
);
1105 /* unknown / invalid response */
1111 case CARM_MSG_MISC
: {
1112 switch (crq
->msg_subtype
) {
1113 case MISC_ALLOC_MEM
:
1114 carm_handle_generic(host
, crq
, error
,
1115 HST_ALLOC_BUF
, HST_SYNC_TIME
);
1118 carm_handle_generic(host
, crq
, error
,
1119 HST_SYNC_TIME
, HST_GET_FW_VER
);
1121 case MISC_GET_FW_VER
: {
1122 struct carm_fw_ver
*ver
= (struct carm_fw_ver
*)
1123 mem
+ sizeof(struct carm_msg_get_fw_ver
);
1125 host
->fw_ver
= le32_to_cpu(ver
->version
);
1126 host
->flags
|= (ver
->features
& FL_FW_VER_MASK
);
1128 carm_handle_generic(host
, crq
, error
,
1129 HST_GET_FW_VER
, HST_PORT_SCAN
);
1133 /* unknown / invalid response */
1139 case CARM_MSG_ARRAY
: {
1140 switch (crq
->msg_subtype
) {
1141 case CARM_ARRAY_INFO
:
1142 carm_handle_array_info(host
, crq
, mem
, error
);
1145 /* unknown / invalid response */
1152 /* unknown / invalid response */
1159 printk(KERN_WARNING DRV_NAME
"(%s): BUG: unhandled message type %d/%d\n",
1160 pci_name(host
->pdev
), crq
->msg_type
, crq
->msg_subtype
);
1161 carm_end_rq(host
, crq
, -EIO
);
1164 static inline void carm_handle_responses(struct carm_host
*host
)
1166 void __iomem
*mmio
= host
->mmio
;
1167 struct carm_response
*resp
= (struct carm_response
*) host
->shm
;
1168 unsigned int work
= 0;
1169 unsigned int idx
= host
->resp_idx
% RMSG_Q_LEN
;
1172 u32 status
= le32_to_cpu(resp
[idx
].status
);
1174 if (status
== 0xffffffff) {
1175 VPRINTK("ending response on index %u\n", idx
);
1176 writel(idx
<< 3, mmio
+ CARM_RESP_IDX
);
1180 /* response to a message we sent */
1181 else if ((status
& (1 << 31)) == 0) {
1182 VPRINTK("handling msg response on index %u\n", idx
);
1183 carm_handle_resp(host
, resp
[idx
].ret_handle
, status
);
1184 resp
[idx
].status
= cpu_to_le32(0xffffffff);
1187 /* asynchronous events the hardware throws our way */
1188 else if ((status
& 0xff000000) == (1 << 31)) {
1189 u8
*evt_type_ptr
= (u8
*) &resp
[idx
];
1190 u8 evt_type
= *evt_type_ptr
;
1191 printk(KERN_WARNING DRV_NAME
"(%s): unhandled event type %d\n",
1192 pci_name(host
->pdev
), (int) evt_type
);
1193 resp
[idx
].status
= cpu_to_le32(0xffffffff);
1196 idx
= NEXT_RESP(idx
);
1200 VPRINTK("EXIT, work==%u\n", work
);
1201 host
->resp_idx
+= work
;
1204 static irqreturn_t
carm_interrupt(int irq
, void *__host
)
1206 struct carm_host
*host
= __host
;
1210 unsigned long flags
;
1213 VPRINTK("no host\n");
1217 spin_lock_irqsave(&host
->lock
, flags
);
1221 /* reading should also clear interrupts */
1222 mask
= readl(mmio
+ CARM_INT_STAT
);
1224 if (mask
== 0 || mask
== 0xffffffff) {
1225 VPRINTK("no work, mask == 0x%x\n", mask
);
1229 if (mask
& INT_ACK_MASK
)
1230 writel(mask
, mmio
+ CARM_INT_STAT
);
1232 if (unlikely(host
->state
== HST_INVALID
)) {
1233 VPRINTK("not initialized yet, mask = 0x%x\n", mask
);
1237 if (mask
& CARM_HAVE_RESP
) {
1239 carm_handle_responses(host
);
1243 spin_unlock_irqrestore(&host
->lock
, flags
);
1245 return IRQ_RETVAL(handled
);
1248 static void carm_fsm_task (struct work_struct
*work
)
1250 struct carm_host
*host
=
1251 container_of(work
, struct carm_host
, fsm_task
);
1252 unsigned long flags
;
1254 int rc
, i
, next_dev
;
1256 int new_state
= HST_INVALID
;
1258 spin_lock_irqsave(&host
->lock
, flags
);
1259 state
= host
->state
;
1260 spin_unlock_irqrestore(&host
->lock
, flags
);
1262 DPRINTK("ENTER, state == %s\n", state_name
[state
]);
1265 case HST_PROBE_START
:
1266 new_state
= HST_ALLOC_BUF
;
1271 rc
= carm_send_special(host
, carm_fill_alloc_buf
);
1273 new_state
= HST_ERROR
;
1279 rc
= carm_send_special(host
, carm_fill_sync_time
);
1281 new_state
= HST_ERROR
;
1286 case HST_GET_FW_VER
:
1287 rc
= carm_send_special(host
, carm_fill_get_fw_ver
);
1289 new_state
= HST_ERROR
;
1295 rc
= carm_send_special(host
, carm_fill_scan_channels
);
1297 new_state
= HST_ERROR
;
1302 case HST_DEV_SCAN_START
:
1303 host
->cur_scan_dev
= -1;
1304 new_state
= HST_DEV_SCAN
;
1310 for (i
= host
->cur_scan_dev
+ 1; i
< CARM_MAX_PORTS
; i
++)
1311 if (host
->dev_present
& (1 << i
)) {
1316 if (next_dev
>= 0) {
1317 host
->cur_scan_dev
= next_dev
;
1318 rc
= carm_array_info(host
, next_dev
);
1320 new_state
= HST_ERROR
;
1324 new_state
= HST_DEV_ACTIVATE
;
1329 case HST_DEV_ACTIVATE
: {
1331 for (i
= 0; i
< CARM_MAX_PORTS
; i
++)
1332 if (host
->dev_active
& (1 << i
)) {
1333 struct carm_port
*port
= &host
->port
[i
];
1334 struct gendisk
*disk
= port
->disk
;
1336 set_capacity(disk
, port
->capacity
);
1341 printk(KERN_INFO DRV_NAME
"(%s): %d ports activated\n",
1342 pci_name(host
->pdev
), activated
);
1344 new_state
= HST_PROBE_FINISHED
;
1349 case HST_PROBE_FINISHED
:
1350 complete(&host
->probe_comp
);
1358 /* should never occur */
1359 printk(KERN_ERR PFX
"BUG: unknown state %d\n", state
);
1364 if (new_state
!= HST_INVALID
) {
1365 spin_lock_irqsave(&host
->lock
, flags
);
1366 host
->state
= new_state
;
1367 spin_unlock_irqrestore(&host
->lock
, flags
);
1370 schedule_work(&host
->fsm_task
);
1373 static int carm_init_wait(void __iomem
*mmio
, u32 bits
, unsigned int test_bit
)
1377 for (i
= 0; i
< 50000; i
++) {
1378 u32 tmp
= readl(mmio
+ CARM_LMUC
);
1382 if ((tmp
& bits
) == bits
)
1385 if ((tmp
& bits
) == 0)
1392 printk(KERN_ERR PFX
"carm_init_wait timeout, bits == 0x%x, test_bit == %s\n",
1393 bits
, test_bit
? "yes" : "no");
1397 static void carm_init_responses(struct carm_host
*host
)
1399 void __iomem
*mmio
= host
->mmio
;
1401 struct carm_response
*resp
= (struct carm_response
*) host
->shm
;
1403 for (i
= 0; i
< RMSG_Q_LEN
; i
++)
1404 resp
[i
].status
= cpu_to_le32(0xffffffff);
1406 writel(0, mmio
+ CARM_RESP_IDX
);
1409 static int carm_init_host(struct carm_host
*host
)
1411 void __iomem
*mmio
= host
->mmio
;
1418 writel(0, mmio
+ CARM_INT_MASK
);
1420 tmp8
= readb(mmio
+ CARM_INITC
);
1423 writeb(tmp8
, mmio
+ CARM_INITC
);
1424 readb(mmio
+ CARM_INITC
); /* flush */
1426 DPRINTK("snooze...\n");
1430 tmp
= readl(mmio
+ CARM_HMUC
);
1431 if (tmp
& CARM_CME
) {
1432 DPRINTK("CME bit present, waiting\n");
1433 rc
= carm_init_wait(mmio
, CARM_CME
, 1);
1435 DPRINTK("EXIT, carm_init_wait 1 failed\n");
1439 if (tmp
& CARM_RME
) {
1440 DPRINTK("RME bit present, waiting\n");
1441 rc
= carm_init_wait(mmio
, CARM_RME
, 1);
1443 DPRINTK("EXIT, carm_init_wait 2 failed\n");
1448 tmp
&= ~(CARM_RME
| CARM_CME
);
1449 writel(tmp
, mmio
+ CARM_HMUC
);
1450 readl(mmio
+ CARM_HMUC
); /* flush */
1452 rc
= carm_init_wait(mmio
, CARM_RME
| CARM_CME
, 0);
1454 DPRINTK("EXIT, carm_init_wait 3 failed\n");
1458 carm_init_buckets(mmio
);
1460 writel(host
->shm_dma
& 0xffffffff, mmio
+ RBUF_ADDR_LO
);
1461 writel((host
->shm_dma
>> 16) >> 16, mmio
+ RBUF_ADDR_HI
);
1462 writel(RBUF_LEN
, mmio
+ RBUF_BYTE_SZ
);
1464 tmp
= readl(mmio
+ CARM_HMUC
);
1465 tmp
|= (CARM_RME
| CARM_CME
| CARM_WZBC
);
1466 writel(tmp
, mmio
+ CARM_HMUC
);
1467 readl(mmio
+ CARM_HMUC
); /* flush */
1469 rc
= carm_init_wait(mmio
, CARM_RME
| CARM_CME
, 1);
1471 DPRINTK("EXIT, carm_init_wait 4 failed\n");
1475 writel(0, mmio
+ CARM_HMPHA
);
1476 writel(INT_DEF_MASK
, mmio
+ CARM_INT_MASK
);
1478 carm_init_responses(host
);
1480 /* start initialization, probing state machine */
1481 spin_lock_irq(&host
->lock
);
1482 assert(host
->state
== HST_INVALID
);
1483 host
->state
= HST_PROBE_START
;
1484 spin_unlock_irq(&host
->lock
);
1485 schedule_work(&host
->fsm_task
);
1491 static int carm_init_disks(struct carm_host
*host
)
1496 for (i
= 0; i
< CARM_MAX_PORTS
; i
++) {
1497 struct gendisk
*disk
;
1498 struct request_queue
*q
;
1499 struct carm_port
*port
;
1501 port
= &host
->port
[i
];
1505 disk
= alloc_disk(CARM_MINORS_PER_MAJOR
);
1512 sprintf(disk
->disk_name
, DRV_NAME
"/%u",
1513 (unsigned int) (host
->id
* CARM_MAX_PORTS
) + i
);
1514 disk
->major
= host
->major
;
1515 disk
->first_minor
= i
* CARM_MINORS_PER_MAJOR
;
1516 disk
->fops
= &carm_bd_ops
;
1517 disk
->private_data
= port
;
1519 q
= blk_init_queue(carm_rq_fn
, &host
->lock
);
1525 blk_queue_max_segments(q
, CARM_MAX_REQ_SG
);
1526 blk_queue_segment_boundary(q
, CARM_SG_BOUNDARY
);
1528 q
->queuedata
= port
;
1534 static void carm_free_disks(struct carm_host
*host
)
1538 for (i
= 0; i
< CARM_MAX_PORTS
; i
++) {
1539 struct gendisk
*disk
= host
->port
[i
].disk
;
1541 struct request_queue
*q
= disk
->queue
;
1543 if (disk
->flags
& GENHD_FL_UP
)
1546 blk_cleanup_queue(q
);
1552 static int carm_init_shm(struct carm_host
*host
)
1554 host
->shm
= pci_alloc_consistent(host
->pdev
, CARM_SHM_SIZE
,
1559 host
->msg_base
= host
->shm
+ RBUF_LEN
;
1560 host
->msg_dma
= host
->shm_dma
+ RBUF_LEN
;
1562 memset(host
->shm
, 0xff, RBUF_LEN
);
1563 memset(host
->msg_base
, 0, PDC_SHM_SIZE
- RBUF_LEN
);
1568 static int carm_init_one (struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1570 struct carm_host
*host
;
1571 unsigned int pci_dac
;
1573 struct request_queue
*q
;
1576 printk_once(KERN_DEBUG DRV_NAME
" version " DRV_VERSION
"\n");
1578 rc
= pci_enable_device(pdev
);
1582 rc
= pci_request_regions(pdev
, DRV_NAME
);
1586 #ifdef IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
1587 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(64));
1589 rc
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(64));
1591 printk(KERN_ERR DRV_NAME
"(%s): consistent DMA mask failure\n",
1593 goto err_out_regions
;
1598 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
1600 printk(KERN_ERR DRV_NAME
"(%s): DMA mask failure\n",
1602 goto err_out_regions
;
1605 #ifdef IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
1609 host
= kzalloc(sizeof(*host
), GFP_KERNEL
);
1611 printk(KERN_ERR DRV_NAME
"(%s): memory alloc failure\n",
1614 goto err_out_regions
;
1618 host
->flags
= pci_dac
? FL_DAC
: 0;
1619 spin_lock_init(&host
->lock
);
1620 INIT_WORK(&host
->fsm_task
, carm_fsm_task
);
1621 init_completion(&host
->probe_comp
);
1623 for (i
= 0; i
< ARRAY_SIZE(host
->req
); i
++)
1624 host
->req
[i
].tag
= i
;
1626 host
->mmio
= ioremap(pci_resource_start(pdev
, 0),
1627 pci_resource_len(pdev
, 0));
1629 printk(KERN_ERR DRV_NAME
"(%s): MMIO alloc failure\n",
1635 rc
= carm_init_shm(host
);
1637 printk(KERN_ERR DRV_NAME
"(%s): DMA SHM alloc failure\n",
1639 goto err_out_iounmap
;
1642 q
= blk_init_queue(carm_oob_rq_fn
, &host
->lock
);
1644 printk(KERN_ERR DRV_NAME
"(%s): OOB queue alloc failure\n",
1647 goto err_out_pci_free
;
1650 q
->queuedata
= host
;
1653 * Figure out which major to use: 160, 161, or dynamic
1655 if (!test_and_set_bit(0, &carm_major_alloc
))
1657 else if (!test_and_set_bit(1, &carm_major_alloc
))
1660 host
->flags
|= FL_DYN_MAJOR
;
1662 host
->id
= carm_host_id
;
1663 sprintf(host
->name
, DRV_NAME
"%d", carm_host_id
);
1665 rc
= register_blkdev(host
->major
, host
->name
);
1667 goto err_out_free_majors
;
1668 if (host
->flags
& FL_DYN_MAJOR
)
1671 rc
= carm_init_disks(host
);
1673 goto err_out_blkdev_disks
;
1675 pci_set_master(pdev
);
1677 rc
= request_irq(pdev
->irq
, carm_interrupt
, IRQF_SHARED
, DRV_NAME
, host
);
1679 printk(KERN_ERR DRV_NAME
"(%s): irq alloc failure\n",
1681 goto err_out_blkdev_disks
;
1684 rc
= carm_init_host(host
);
1686 goto err_out_free_irq
;
1688 DPRINTK("waiting for probe_comp\n");
1689 wait_for_completion(&host
->probe_comp
);
1691 printk(KERN_INFO
"%s: pci %s, ports %d, io %llx, irq %u, major %d\n",
1692 host
->name
, pci_name(pdev
), (int) CARM_MAX_PORTS
,
1693 (unsigned long long)pci_resource_start(pdev
, 0),
1694 pdev
->irq
, host
->major
);
1697 pci_set_drvdata(pdev
, host
);
1701 free_irq(pdev
->irq
, host
);
1702 err_out_blkdev_disks
:
1703 carm_free_disks(host
);
1704 unregister_blkdev(host
->major
, host
->name
);
1705 err_out_free_majors
:
1706 if (host
->major
== 160)
1707 clear_bit(0, &carm_major_alloc
);
1708 else if (host
->major
== 161)
1709 clear_bit(1, &carm_major_alloc
);
1710 blk_cleanup_queue(host
->oob_q
);
1712 pci_free_consistent(pdev
, CARM_SHM_SIZE
, host
->shm
, host
->shm_dma
);
1714 iounmap(host
->mmio
);
1718 pci_release_regions(pdev
);
1720 pci_disable_device(pdev
);
1724 static void carm_remove_one (struct pci_dev
*pdev
)
1726 struct carm_host
*host
= pci_get_drvdata(pdev
);
1729 printk(KERN_ERR PFX
"BUG: no host data for PCI(%s)\n",
1734 free_irq(pdev
->irq
, host
);
1735 carm_free_disks(host
);
1736 unregister_blkdev(host
->major
, host
->name
);
1737 if (host
->major
== 160)
1738 clear_bit(0, &carm_major_alloc
);
1739 else if (host
->major
== 161)
1740 clear_bit(1, &carm_major_alloc
);
1741 blk_cleanup_queue(host
->oob_q
);
1742 pci_free_consistent(pdev
, CARM_SHM_SIZE
, host
->shm
, host
->shm_dma
);
1743 iounmap(host
->mmio
);
1745 pci_release_regions(pdev
);
1746 pci_disable_device(pdev
);
1747 pci_set_drvdata(pdev
, NULL
);
1750 static int __init
carm_init(void)
1752 return pci_register_driver(&carm_driver
);
1755 static void __exit
carm_exit(void)
1757 pci_unregister_driver(&carm_driver
);
1760 module_init(carm_init
);
1761 module_exit(carm_exit
);