2 * sx8.c: Driver for Promise SATA SX8 looks-like-I2O hardware
4 * Copyright 2004 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/devfs_fs_kernel.h>
22 #include <linux/interrupt.h>
23 #include <linux/compiler.h>
24 #include <linux/workqueue.h>
25 #include <linux/bitops.h>
26 #include <linux/delay.h>
27 #include <linux/time.h>
28 #include <linux/hdreg.h>
30 #include <asm/semaphore.h>
31 #include <asm/uaccess.h>
33 MODULE_AUTHOR("Jeff Garzik");
34 MODULE_LICENSE("GPL");
35 MODULE_DESCRIPTION("Promise SATA SX8 block driver");
39 #define CARM_VERBOSE_DEBUG
42 #undef CARM_VERBOSE_DEBUG
46 #define DRV_NAME "sx8"
47 #define DRV_VERSION "0.8"
48 #define PFX DRV_NAME ": "
50 #define NEXT_RESP(idx) ((idx + 1) % RMSG_Q_LEN)
52 /* 0xf is just arbitrary, non-zero noise; this is sorta like poisoning */
53 #define TAG_ENCODE(tag) (((tag) << 16) | 0xf)
54 #define TAG_DECODE(tag) (((tag) >> 16) & 0x1f)
55 #define TAG_VALID(tag) ((((tag) & 0xf) == 0xf) && (TAG_DECODE(tag) < 32))
57 /* note: prints function name for you */
59 #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
60 #ifdef CARM_VERBOSE_DEBUG
61 #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
63 #define VPRINTK(fmt, args...)
64 #endif /* CARM_VERBOSE_DEBUG */
66 #define DPRINTK(fmt, args...)
67 #define VPRINTK(fmt, args...)
68 #endif /* CARM_DEBUG */
73 #define assert(expr) \
74 if(unlikely(!(expr))) { \
75 printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%d\n", \
76 #expr,__FILE__,__FUNCTION__,__LINE__); \
80 /* defines only for the constants which don't work well as enums */
84 /* adapter-wide limits */
86 CARM_SHM_SIZE = (4096 << 7),
87 CARM_MINORS_PER_MAJOR = 256 / CARM_MAX_PORTS,
88 CARM_MAX_WAIT_Q = CARM_MAX_PORTS + 1,
90 /* command message queue limits */
91 CARM_MAX_REQ = 64, /* max command msgs per host */
92 CARM_MAX_Q = 1, /* one command at a time */
93 CARM_MSG_LOW_WATER = (CARM_MAX_REQ / 4), /* refill mark */
95 /* S/G limits, host-wide and per-request */
96 CARM_MAX_REQ_SG = 32, /* max s/g entries per request */
97 CARM_SG_BOUNDARY = 0xffffUL, /* s/g segment boundary */
98 CARM_MAX_HOST_SG = 600, /* max s/g entries per host */
99 CARM_SG_LOW_WATER = (CARM_MAX_HOST_SG / 4), /* re-fill mark */
101 /* hardware registers */
103 CARM_INT_STAT = 0x10, /* interrupt status */
104 CARM_INT_MASK = 0x14, /* interrupt mask */
105 CARM_HMUC = 0x18, /* host message unit control */
106 RBUF_ADDR_LO = 0x20, /* response msg DMA buf low 32 bits */
107 RBUF_ADDR_HI = 0x24, /* response msg DMA buf high 32 bits */
109 CARM_RESP_IDX = 0x2c,
110 CARM_CMS0 = 0x30, /* command message size reg 0 */
115 /* bits in CARM_INT_{STAT,MASK} */
116 INT_RESERVED = 0xfffffff0,
117 INT_WATCHDOG = (1 << 3), /* watchdog timer */
118 INT_Q_OVERFLOW = (1 << 2), /* cmd msg q overflow */
119 INT_Q_AVAILABLE = (1 << 1), /* cmd msg q has free space */
120 INT_RESPONSE = (1 << 0), /* response msg available */
121 INT_ACK_MASK = INT_WATCHDOG | INT_Q_OVERFLOW,
122 INT_DEF_MASK = INT_RESERVED | INT_Q_OVERFLOW |
125 /* command messages, and related register bits */
126 CARM_HAVE_RESP = 0x01,
130 CARM_MSG_GET_CAPACITY = 4,
137 CARM_WZBC = (1 << 0),
139 CARM_Q_FULL = (1 << 3),
143 /* CARM_MSG_IOCTL messages */
144 CARM_IOC_SCAN_CHAN = 5, /* scan channels for devices */
145 CARM_IOC_GET_TCQ = 13, /* get tcq/ncq depth */
146 CARM_IOC_SET_TCQ = 14, /* set tcq/ncq depth */
148 IOC_SCAN_CHAN_NODEV = 0x1f,
149 IOC_SCAN_CHAN_OFFSET = 0x40,
151 /* CARM_MSG_ARRAY messages */
154 ARRAY_NO_EXIST = (1 << 31),
156 /* response messages */
157 RMSG_SZ = 8, /* sizeof(struct carm_response) */
158 RMSG_Q_LEN = 48, /* resp. msg list length */
159 RMSG_OK = 1, /* bit indicating msg was successful */
160 /* length of entire resp. msg buffer */
161 RBUF_LEN = RMSG_SZ * RMSG_Q_LEN,
163 PDC_SHM_SIZE = (4096 << 7), /* length of entire h/w buffer */
165 /* CARM_MSG_MISC messages */
170 /* MISC_GET_FW_VER feature bits */
171 FW_VER_4PORT = (1 << 2), /* 1=4 ports, 0=8 ports */
172 FW_VER_NON_RAID = (1 << 1), /* 1=non-RAID firmware, 0=RAID */
173 FW_VER_ZCR = (1 << 0), /* zero channel RAID (whatever that is) */
175 /* carm_host flags */
176 FL_NON_RAID = FW_VER_NON_RAID,
177 FL_4PORT = FW_VER_4PORT,
178 FL_FW_VER_MASK = (FW_VER_NON_RAID | FW_VER_4PORT),
180 FL_DYN_MAJOR = (1 << 17),
183 enum scatter_gather_types {
189 HST_INVALID, /* invalid state; never used */
190 HST_ALLOC_BUF, /* setting up master SHM area */
191 HST_ERROR, /* we never leave here */
192 HST_PORT_SCAN, /* start dev scan */
193 HST_DEV_SCAN_START, /* start per-device probe */
194 HST_DEV_SCAN, /* continue per-device probe */
195 HST_DEV_ACTIVATE, /* activate devices we found */
196 HST_PROBE_FINISHED, /* probe is complete */
197 HST_PROBE_START, /* initiate probe */
198 HST_SYNC_TIME, /* tell firmware what time it is */
199 HST_GET_FW_VER, /* get firmware version, adapter port cnt */
203 static const char *state_name[] = {
208 "HST_DEV_SCAN_START",
211 "HST_PROBE_FINISHED",
219 unsigned int port_no;
220 unsigned int n_queued;
221 struct gendisk *disk;
222 struct carm_host *host;
224 /* attached device characteristics */
232 struct carm_request {
235 unsigned int msg_type;
236 unsigned int msg_subtype;
237 unsigned int msg_bucket;
239 struct carm_port *port;
240 struct scatterlist sg[CARM_MAX_REQ_SG];
254 struct pci_dev *pdev;
258 request_queue_t *oob_q;
261 unsigned int hw_sg_used;
263 unsigned int resp_idx;
265 unsigned int wait_q_prod;
266 unsigned int wait_q_cons;
267 request_queue_t *wait_q[CARM_MAX_WAIT_Q];
271 struct carm_request req[CARM_MAX_REQ];
276 unsigned long dev_active;
277 unsigned long dev_present;
278 struct carm_port port[CARM_MAX_PORTS];
280 struct work_struct fsm_task;
282 struct semaphore probe_sem;
285 struct carm_response {
288 } __attribute__((packed));
293 } __attribute__((packed));
304 struct carm_msg_sg sg[32];
305 } __attribute__((packed));
307 struct carm_msg_allocbuf {
321 struct carm_msg_sg sg[8];
322 } __attribute__((packed));
324 struct carm_msg_ioctl {
332 } __attribute__((packed));
334 struct carm_msg_sync_time {
341 } __attribute__((packed));
343 struct carm_msg_get_fw_ver {
350 } __attribute__((packed));
357 } __attribute__((packed));
359 struct carm_array_info {
367 __le16 stripe_blk_sz;
381 /* device list continues beyond this point? */
382 } __attribute__((packed));
384 static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
385 static void carm_remove_one (struct pci_dev *pdev);
386 static int carm_bdev_ioctl(struct inode *ino, struct file *fil,
387 unsigned int cmd, unsigned long arg);
389 static struct pci_device_id carm_pci_tbl[] = {
390 { PCI_VENDOR_ID_PROMISE, 0x8000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, },
391 { PCI_VENDOR_ID_PROMISE, 0x8002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, },
392 { } /* terminate list */
394 MODULE_DEVICE_TABLE(pci, carm_pci_tbl);
396 static struct pci_driver carm_driver = {
398 .id_table = carm_pci_tbl,
399 .probe = carm_init_one,
400 .remove = carm_remove_one,
403 static struct block_device_operations carm_bd_ops = {
404 .owner = THIS_MODULE,
405 .ioctl = carm_bdev_ioctl,
408 static unsigned int carm_host_id;
409 static unsigned long carm_major_alloc;
413 static int carm_bdev_ioctl(struct inode *ino, struct file *fil,
414 unsigned int cmd, unsigned long arg)
416 void __user *usermem = (void __user *) arg;
417 struct carm_port *port = ino->i_bdev->bd_disk->private_data;
418 struct hd_geometry geom;
425 geom.heads = (u8) port->dev_geom_head;
426 geom.sectors = (u8) port->dev_geom_sect;
427 geom.cylinders = port->dev_geom_cyl;
428 geom.start = get_start_sect(ino->i_bdev);
430 if (copy_to_user(usermem, &geom, sizeof(geom)))
441 static const u32 msg_sizes[] = { 32, 64, 128, CARM_MSG_SIZE };
443 static inline int carm_lookup_bucket(u32 msg_size)
447 for (i = 0; i < ARRAY_SIZE(msg_sizes); i++)
448 if (msg_size <= msg_sizes[i])
454 static void carm_init_buckets(void __iomem *mmio)
458 for (i = 0; i < ARRAY_SIZE(msg_sizes); i++)
459 writel(msg_sizes[i], mmio + CARM_CMS0 + (4 * i));
462 static inline void *carm_ref_msg(struct carm_host *host,
463 unsigned int msg_idx)
465 return host->msg_base + (msg_idx * CARM_MSG_SIZE);
468 static inline dma_addr_t carm_ref_msg_dma(struct carm_host *host,
469 unsigned int msg_idx)
471 return host->msg_dma + (msg_idx * CARM_MSG_SIZE);
474 static int carm_send_msg(struct carm_host *host,
475 struct carm_request *crq)
477 void __iomem *mmio = host->mmio;
478 u32 msg = (u32) carm_ref_msg_dma(host, crq->tag);
479 u32 cm_bucket = crq->msg_bucket;
485 tmp = readl(mmio + CARM_HMUC);
486 if (tmp & CARM_Q_FULL) {
488 tmp = readl(mmio + CARM_INT_MASK);
489 tmp |= INT_Q_AVAILABLE;
490 writel(tmp, mmio + CARM_INT_MASK);
491 readl(mmio + CARM_INT_MASK); /* flush */
493 DPRINTK("host msg queue full\n");
496 writel(msg | (cm_bucket << 1), mmio + CARM_IHQP);
497 readl(mmio + CARM_IHQP); /* flush */
503 static struct carm_request *carm_get_request(struct carm_host *host)
507 /* obey global hardware limit on S/G entries */
508 if (host->hw_sg_used >= (CARM_MAX_HOST_SG - CARM_MAX_REQ_SG))
511 for (i = 0; i < CARM_MAX_Q; i++)
512 if ((host->msg_alloc & (1ULL << i)) == 0) {
513 struct carm_request *crq = &host->req[i];
517 host->msg_alloc |= (1ULL << i);
520 assert(host->n_msgs <= CARM_MAX_REQ);
524 DPRINTK("no request available, returning NULL\n");
528 static int carm_put_request(struct carm_host *host, struct carm_request *crq)
530 assert(crq->tag < CARM_MAX_Q);
532 if (unlikely((host->msg_alloc & (1ULL << crq->tag)) == 0))
533 return -EINVAL; /* tried to clear a tag that was not active */
535 assert(host->hw_sg_used >= crq->n_elem);
537 host->msg_alloc &= ~(1ULL << crq->tag);
538 host->hw_sg_used -= crq->n_elem;
544 static struct carm_request *carm_get_special(struct carm_host *host)
547 struct carm_request *crq = NULL;
551 while (tries-- > 0) {
552 spin_lock_irqsave(&host->lock, flags);
553 crq = carm_get_request(host);
554 spin_unlock_irqrestore(&host->lock, flags);
564 rq = blk_get_request(host->oob_q, WRITE /* bogus */, GFP_KERNEL);
566 spin_lock_irqsave(&host->lock, flags);
567 carm_put_request(host, crq);
568 spin_unlock_irqrestore(&host->lock, flags);
576 static int carm_array_info (struct carm_host *host, unsigned int array_idx)
578 struct carm_msg_ioctl *ioc;
582 struct carm_request *crq;
585 crq = carm_get_special(host);
593 ioc = carm_ref_msg(host, idx);
594 msg_dma = carm_ref_msg_dma(host, idx);
595 msg_data = (u32) (msg_dma + sizeof(struct carm_array_info));
597 crq->msg_type = CARM_MSG_ARRAY;
598 crq->msg_subtype = CARM_ARRAY_INFO;
599 rc = carm_lookup_bucket(sizeof(struct carm_msg_ioctl) +
600 sizeof(struct carm_array_info));
602 crq->msg_bucket = (u32) rc;
604 memset(ioc, 0, sizeof(*ioc));
605 ioc->type = CARM_MSG_ARRAY;
606 ioc->subtype = CARM_ARRAY_INFO;
607 ioc->array_id = (u8) array_idx;
608 ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
609 ioc->data_addr = cpu_to_le32(msg_data);
611 spin_lock_irq(&host->lock);
612 assert(host->state == HST_DEV_SCAN_START ||
613 host->state == HST_DEV_SCAN);
614 spin_unlock_irq(&host->lock);
616 DPRINTK("blk_insert_request, tag == %u\n", idx);
617 blk_insert_request(host->oob_q, crq->rq, 1, crq);
622 spin_lock_irq(&host->lock);
623 host->state = HST_ERROR;
624 spin_unlock_irq(&host->lock);
628 typedef unsigned int (*carm_sspc_t)(struct carm_host *, unsigned int, void *);
630 static int carm_send_special (struct carm_host *host, carm_sspc_t func)
632 struct carm_request *crq;
633 struct carm_msg_ioctl *ioc;
635 unsigned int idx, msg_size;
638 crq = carm_get_special(host);
644 mem = carm_ref_msg(host, idx);
646 msg_size = func(host, idx, mem);
649 crq->msg_type = ioc->type;
650 crq->msg_subtype = ioc->subtype;
651 rc = carm_lookup_bucket(msg_size);
653 crq->msg_bucket = (u32) rc;
655 DPRINTK("blk_insert_request, tag == %u\n", idx);
656 blk_insert_request(host->oob_q, crq->rq, 1, crq);
661 static unsigned int carm_fill_sync_time(struct carm_host *host,
662 unsigned int idx, void *mem)
665 struct carm_msg_sync_time *st = mem;
667 do_gettimeofday(&tv);
669 memset(st, 0, sizeof(*st));
670 st->type = CARM_MSG_MISC;
671 st->subtype = MISC_SET_TIME;
672 st->handle = cpu_to_le32(TAG_ENCODE(idx));
673 st->timestamp = cpu_to_le32(tv.tv_sec);
675 return sizeof(struct carm_msg_sync_time);
678 static unsigned int carm_fill_alloc_buf(struct carm_host *host,
679 unsigned int idx, void *mem)
681 struct carm_msg_allocbuf *ab = mem;
683 memset(ab, 0, sizeof(*ab));
684 ab->type = CARM_MSG_MISC;
685 ab->subtype = MISC_ALLOC_MEM;
686 ab->handle = cpu_to_le32(TAG_ENCODE(idx));
688 ab->sg_type = SGT_32BIT;
689 ab->addr = cpu_to_le32(host->shm_dma + (PDC_SHM_SIZE >> 1));
690 ab->len = cpu_to_le32(PDC_SHM_SIZE >> 1);
691 ab->evt_pool = cpu_to_le32(host->shm_dma + (16 * 1024));
692 ab->n_evt = cpu_to_le32(1024);
693 ab->rbuf_pool = cpu_to_le32(host->shm_dma);
694 ab->n_rbuf = cpu_to_le32(RMSG_Q_LEN);
695 ab->msg_pool = cpu_to_le32(host->shm_dma + RBUF_LEN);
696 ab->n_msg = cpu_to_le32(CARM_Q_LEN);
697 ab->sg[0].start = cpu_to_le32(host->shm_dma + (PDC_SHM_SIZE >> 1));
698 ab->sg[0].len = cpu_to_le32(65536);
700 return sizeof(struct carm_msg_allocbuf);
703 static unsigned int carm_fill_scan_channels(struct carm_host *host,
704 unsigned int idx, void *mem)
706 struct carm_msg_ioctl *ioc = mem;
707 u32 msg_data = (u32) (carm_ref_msg_dma(host, idx) +
708 IOC_SCAN_CHAN_OFFSET);
710 memset(ioc, 0, sizeof(*ioc));
711 ioc->type = CARM_MSG_IOCTL;
712 ioc->subtype = CARM_IOC_SCAN_CHAN;
713 ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
714 ioc->data_addr = cpu_to_le32(msg_data);
716 /* fill output data area with "no device" default values */
717 mem += IOC_SCAN_CHAN_OFFSET;
718 memset(mem, IOC_SCAN_CHAN_NODEV, CARM_MAX_PORTS);
720 return IOC_SCAN_CHAN_OFFSET + CARM_MAX_PORTS;
723 static unsigned int carm_fill_get_fw_ver(struct carm_host *host,
724 unsigned int idx, void *mem)
726 struct carm_msg_get_fw_ver *ioc = mem;
727 u32 msg_data = (u32) (carm_ref_msg_dma(host, idx) + sizeof(*ioc));
729 memset(ioc, 0, sizeof(*ioc));
730 ioc->type = CARM_MSG_MISC;
731 ioc->subtype = MISC_GET_FW_VER;
732 ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
733 ioc->data_addr = cpu_to_le32(msg_data);
735 return sizeof(struct carm_msg_get_fw_ver) +
736 sizeof(struct carm_fw_ver);
739 static inline void carm_end_request_queued(struct carm_host *host,
740 struct carm_request *crq,
743 struct request *req = crq->rq;
746 rc = end_that_request_first(req, uptodate, req->hard_nr_sectors);
749 end_that_request_last(req);
751 rc = carm_put_request(host, crq);
755 static inline void carm_push_q (struct carm_host *host, request_queue_t *q)
757 unsigned int idx = host->wait_q_prod % CARM_MAX_WAIT_Q;
760 VPRINTK("STOPPED QUEUE %p\n", q);
762 host->wait_q[idx] = q;
764 BUG_ON(host->wait_q_prod == host->wait_q_cons); /* overrun */
767 static inline request_queue_t *carm_pop_q(struct carm_host *host)
771 if (host->wait_q_prod == host->wait_q_cons)
774 idx = host->wait_q_cons % CARM_MAX_WAIT_Q;
777 return host->wait_q[idx];
780 static inline void carm_round_robin(struct carm_host *host)
782 request_queue_t *q = carm_pop_q(host);
785 VPRINTK("STARTED QUEUE %p\n", q);
789 static inline void carm_end_rq(struct carm_host *host, struct carm_request *crq,
792 carm_end_request_queued(host, crq, is_ok);
794 carm_round_robin(host);
795 else if ((host->n_msgs <= CARM_MSG_LOW_WATER) &&
796 (host->hw_sg_used <= CARM_SG_LOW_WATER)) {
797 carm_round_robin(host);
801 static void carm_oob_rq_fn(request_queue_t *q)
803 struct carm_host *host = q->queuedata;
804 struct carm_request *crq;
809 DPRINTK("get req\n");
810 rq = elv_next_request(q);
814 blkdev_dequeue_request(rq);
818 assert(crq->rq == rq);
822 DPRINTK("send req\n");
823 rc = carm_send_msg(host, crq);
825 blk_requeue_request(q, rq);
826 carm_push_q(host, q);
827 return; /* call us again later, eventually */
832 static void carm_rq_fn(request_queue_t *q)
834 struct carm_port *port = q->queuedata;
835 struct carm_host *host = port->host;
836 struct carm_msg_rw *msg;
837 struct carm_request *crq;
839 struct scatterlist *sg;
840 int writing = 0, pci_dir, i, n_elem, rc;
842 unsigned int msg_size;
845 VPRINTK("get req\n");
846 rq = elv_next_request(q);
850 crq = carm_get_request(host);
852 carm_push_q(host, q);
853 return; /* call us again later, eventually */
857 blkdev_dequeue_request(rq);
859 if (rq_data_dir(rq) == WRITE) {
861 pci_dir = PCI_DMA_TODEVICE;
863 pci_dir = PCI_DMA_FROMDEVICE;
866 /* get scatterlist from block layer */
868 n_elem = blk_rq_map_sg(q, rq, sg);
870 carm_end_rq(host, crq, 0);
871 return; /* request with no s/g entries? */
874 /* map scatterlist to PCI bus addresses */
875 n_elem = pci_map_sg(host->pdev, sg, n_elem, pci_dir);
877 carm_end_rq(host, crq, 0);
878 return; /* request with no s/g entries? */
880 crq->n_elem = n_elem;
882 host->hw_sg_used += n_elem;
885 * build read/write message
888 VPRINTK("build msg\n");
889 msg = (struct carm_msg_rw *) carm_ref_msg(host, crq->tag);
892 msg->type = CARM_MSG_WRITE;
893 crq->msg_type = CARM_MSG_WRITE;
895 msg->type = CARM_MSG_READ;
896 crq->msg_type = CARM_MSG_READ;
899 msg->id = port->port_no;
900 msg->sg_count = n_elem;
901 msg->sg_type = SGT_32BIT;
902 msg->handle = cpu_to_le32(TAG_ENCODE(crq->tag));
903 msg->lba = cpu_to_le32(rq->sector & 0xffffffff);
904 tmp = (rq->sector >> 16) >> 16;
905 msg->lba_high = cpu_to_le16( (u16) tmp );
906 msg->lba_count = cpu_to_le16(rq->nr_sectors);
908 msg_size = sizeof(struct carm_msg_rw) - sizeof(msg->sg);
909 for (i = 0; i < n_elem; i++) {
910 struct carm_msg_sg *carm_sg = &msg->sg[i];
911 carm_sg->start = cpu_to_le32(sg_dma_address(&crq->sg[i]));
912 carm_sg->len = cpu_to_le32(sg_dma_len(&crq->sg[i]));
913 msg_size += sizeof(struct carm_msg_sg);
916 rc = carm_lookup_bucket(msg_size);
918 crq->msg_bucket = (u32) rc;
921 * queue read/write message to hardware
924 VPRINTK("send msg, tag == %u\n", crq->tag);
925 rc = carm_send_msg(host, crq);
927 carm_put_request(host, crq);
928 blk_requeue_request(q, rq);
929 carm_push_q(host, q);
930 return; /* call us again later, eventually */
933 goto queue_one_request;
936 static void carm_handle_array_info(struct carm_host *host,
937 struct carm_request *crq, u8 *mem,
940 struct carm_port *port;
941 u8 *msg_data = mem + sizeof(struct carm_array_info);
942 struct carm_array_info *desc = (struct carm_array_info *) msg_data;
949 carm_end_rq(host, crq, is_ok);
953 if (le32_to_cpu(desc->array_status) & ARRAY_NO_EXIST)
956 cur_port = host->cur_scan_dev;
958 /* should never occur */
959 if ((cur_port < 0) || (cur_port >= CARM_MAX_PORTS)) {
960 printk(KERN_ERR PFX "BUG: cur_scan_dev==%d, array_id==%d\n",
961 cur_port, (int) desc->array_id);
965 port = &host->port[cur_port];
967 lo = (u64) le32_to_cpu(desc->size);
968 hi = (u64) le16_to_cpu(desc->size_hi);
970 port->capacity = lo | (hi << 32);
971 port->dev_geom_head = le16_to_cpu(desc->head);
972 port->dev_geom_sect = le16_to_cpu(desc->sect);
973 port->dev_geom_cyl = le16_to_cpu(desc->cyl);
975 host->dev_active |= (1 << cur_port);
977 strncpy(port->name, desc->name, sizeof(port->name));
978 port->name[sizeof(port->name) - 1] = 0;
979 slen = strlen(port->name);
980 while (slen && (port->name[slen - 1] == ' ')) {
981 port->name[slen - 1] = 0;
985 printk(KERN_INFO DRV_NAME "(%s): port %u device %Lu sectors\n",
986 pci_name(host->pdev), port->port_no,
987 (unsigned long long) port->capacity);
988 printk(KERN_INFO DRV_NAME "(%s): port %u device \"%s\"\n",
989 pci_name(host->pdev), port->port_no, port->name);
992 assert(host->state == HST_DEV_SCAN);
993 schedule_work(&host->fsm_task);
996 static void carm_handle_scan_chan(struct carm_host *host,
997 struct carm_request *crq, u8 *mem,
1000 u8 *msg_data = mem + IOC_SCAN_CHAN_OFFSET;
1001 unsigned int i, dev_count = 0;
1002 int new_state = HST_DEV_SCAN_START;
1006 carm_end_rq(host, crq, is_ok);
1009 new_state = HST_ERROR;
1013 /* TODO: scan and support non-disk devices */
1014 for (i = 0; i < 8; i++)
1015 if (msg_data[i] == 0) { /* direct-access device (disk) */
1016 host->dev_present |= (1 << i);
1020 printk(KERN_INFO DRV_NAME "(%s): found %u interesting devices\n",
1021 pci_name(host->pdev), dev_count);
1024 assert(host->state == HST_PORT_SCAN);
1025 host->state = new_state;
1026 schedule_work(&host->fsm_task);
1029 static void carm_handle_generic(struct carm_host *host,
1030 struct carm_request *crq, int is_ok,
1031 int cur_state, int next_state)
1035 carm_end_rq(host, crq, is_ok);
1037 assert(host->state == cur_state);
1039 host->state = next_state;
1041 host->state = HST_ERROR;
1042 schedule_work(&host->fsm_task);
1045 static inline void carm_handle_rw(struct carm_host *host,
1046 struct carm_request *crq, int is_ok)
1052 if (rq_data_dir(crq->rq) == WRITE)
1053 pci_dir = PCI_DMA_TODEVICE;
1055 pci_dir = PCI_DMA_FROMDEVICE;
1057 pci_unmap_sg(host->pdev, &crq->sg[0], crq->n_elem, pci_dir);
1059 carm_end_rq(host, crq, is_ok);
1062 static inline void carm_handle_resp(struct carm_host *host,
1063 __le32 ret_handle_le, u32 status)
1065 u32 handle = le32_to_cpu(ret_handle_le);
1066 unsigned int msg_idx;
1067 struct carm_request *crq;
1068 int is_ok = (status == RMSG_OK);
1071 VPRINTK("ENTER, handle == 0x%x\n", handle);
1073 if (unlikely(!TAG_VALID(handle))) {
1074 printk(KERN_ERR DRV_NAME "(%s): BUG: invalid tag 0x%x\n",
1075 pci_name(host->pdev), handle);
1079 msg_idx = TAG_DECODE(handle);
1080 VPRINTK("tag == %u\n", msg_idx);
1082 crq = &host->req[msg_idx];
1085 if (likely(crq->msg_type == CARM_MSG_READ ||
1086 crq->msg_type == CARM_MSG_WRITE)) {
1087 carm_handle_rw(host, crq, is_ok);
1091 mem = carm_ref_msg(host, msg_idx);
1093 switch (crq->msg_type) {
1094 case CARM_MSG_IOCTL: {
1095 switch (crq->msg_subtype) {
1096 case CARM_IOC_SCAN_CHAN:
1097 carm_handle_scan_chan(host, crq, mem, is_ok);
1100 /* unknown / invalid response */
1106 case CARM_MSG_MISC: {
1107 switch (crq->msg_subtype) {
1108 case MISC_ALLOC_MEM:
1109 carm_handle_generic(host, crq, is_ok,
1110 HST_ALLOC_BUF, HST_SYNC_TIME);
1113 carm_handle_generic(host, crq, is_ok,
1114 HST_SYNC_TIME, HST_GET_FW_VER);
1116 case MISC_GET_FW_VER: {
1117 struct carm_fw_ver *ver = (struct carm_fw_ver *)
1118 mem + sizeof(struct carm_msg_get_fw_ver);
1120 host->fw_ver = le32_to_cpu(ver->version);
1121 host->flags |= (ver->features & FL_FW_VER_MASK);
1123 carm_handle_generic(host, crq, is_ok,
1124 HST_GET_FW_VER, HST_PORT_SCAN);
1128 /* unknown / invalid response */
1134 case CARM_MSG_ARRAY: {
1135 switch (crq->msg_subtype) {
1136 case CARM_ARRAY_INFO:
1137 carm_handle_array_info(host, crq, mem, is_ok);
1140 /* unknown / invalid response */
1147 /* unknown / invalid response */
1154 printk(KERN_WARNING DRV_NAME "(%s): BUG: unhandled message type %d/%d\n",
1155 pci_name(host->pdev), crq->msg_type, crq->msg_subtype);
1156 carm_end_rq(host, crq, 0);
1159 static inline void carm_handle_responses(struct carm_host *host)
1161 void __iomem *mmio = host->mmio;
1162 struct carm_response *resp = (struct carm_response *) host->shm;
1163 unsigned int work = 0;
1164 unsigned int idx = host->resp_idx % RMSG_Q_LEN;
1167 u32 status = le32_to_cpu(resp[idx].status);
1169 if (status == 0xffffffff) {
1170 VPRINTK("ending response on index %u\n", idx);
1171 writel(idx << 3, mmio + CARM_RESP_IDX);
1175 /* response to a message we sent */
1176 else if ((status & (1 << 31)) == 0) {
1177 VPRINTK("handling msg response on index %u\n", idx);
1178 carm_handle_resp(host, resp[idx].ret_handle, status);
1179 resp[idx].status = cpu_to_le32(0xffffffff);
1182 /* asynchronous events the hardware throws our way */
1183 else if ((status & 0xff000000) == (1 << 31)) {
1184 u8 *evt_type_ptr = (u8 *) &resp[idx];
1185 u8 evt_type = *evt_type_ptr;
1186 printk(KERN_WARNING DRV_NAME "(%s): unhandled event type %d\n",
1187 pci_name(host->pdev), (int) evt_type);
1188 resp[idx].status = cpu_to_le32(0xffffffff);
1191 idx = NEXT_RESP(idx);
1195 VPRINTK("EXIT, work==%u\n", work);
1196 host->resp_idx += work;
1199 static irqreturn_t carm_interrupt(int irq, void *__host, struct pt_regs *regs)
1201 struct carm_host *host = __host;
1205 unsigned long flags;
1208 VPRINTK("no host\n");
1212 spin_lock_irqsave(&host->lock, flags);
1216 /* reading should also clear interrupts */
1217 mask = readl(mmio + CARM_INT_STAT);
1219 if (mask == 0 || mask == 0xffffffff) {
1220 VPRINTK("no work, mask == 0x%x\n", mask);
1224 if (mask & INT_ACK_MASK)
1225 writel(mask, mmio + CARM_INT_STAT);
1227 if (unlikely(host->state == HST_INVALID)) {
1228 VPRINTK("not initialized yet, mask = 0x%x\n", mask);
1232 if (mask & CARM_HAVE_RESP) {
1234 carm_handle_responses(host);
1238 spin_unlock_irqrestore(&host->lock, flags);
1240 return IRQ_RETVAL(handled);
1243 static void carm_fsm_task (void *_data)
1245 struct carm_host *host = _data;
1246 unsigned long flags;
1248 int rc, i, next_dev;
1250 int new_state = HST_INVALID;
1252 spin_lock_irqsave(&host->lock, flags);
1253 state = host->state;
1254 spin_unlock_irqrestore(&host->lock, flags);
1256 DPRINTK("ENTER, state == %s\n", state_name[state]);
1259 case HST_PROBE_START:
1260 new_state = HST_ALLOC_BUF;
1265 rc = carm_send_special(host, carm_fill_alloc_buf);
1267 new_state = HST_ERROR;
1273 rc = carm_send_special(host, carm_fill_sync_time);
1275 new_state = HST_ERROR;
1280 case HST_GET_FW_VER:
1281 rc = carm_send_special(host, carm_fill_get_fw_ver);
1283 new_state = HST_ERROR;
1289 rc = carm_send_special(host, carm_fill_scan_channels);
1291 new_state = HST_ERROR;
1296 case HST_DEV_SCAN_START:
1297 host->cur_scan_dev = -1;
1298 new_state = HST_DEV_SCAN;
1304 for (i = host->cur_scan_dev + 1; i < CARM_MAX_PORTS; i++)
1305 if (host->dev_present & (1 << i)) {
1310 if (next_dev >= 0) {
1311 host->cur_scan_dev = next_dev;
1312 rc = carm_array_info(host, next_dev);
1314 new_state = HST_ERROR;
1318 new_state = HST_DEV_ACTIVATE;
1323 case HST_DEV_ACTIVATE: {
1325 for (i = 0; i < CARM_MAX_PORTS; i++)
1326 if (host->dev_active & (1 << i)) {
1327 struct carm_port *port = &host->port[i];
1328 struct gendisk *disk = port->disk;
1330 set_capacity(disk, port->capacity);
1335 printk(KERN_INFO DRV_NAME "(%s): %d ports activated\n",
1336 pci_name(host->pdev), activated);
1338 new_state = HST_PROBE_FINISHED;
1343 case HST_PROBE_FINISHED:
1344 up(&host->probe_sem);
1352 /* should never occur */
1353 printk(KERN_ERR PFX "BUG: unknown state %d\n", state);
1358 if (new_state != HST_INVALID) {
1359 spin_lock_irqsave(&host->lock, flags);
1360 host->state = new_state;
1361 spin_unlock_irqrestore(&host->lock, flags);
1364 schedule_work(&host->fsm_task);
1367 static int carm_init_wait(void __iomem *mmio, u32 bits, unsigned int test_bit)
1371 for (i = 0; i < 50000; i++) {
1372 u32 tmp = readl(mmio + CARM_LMUC);
1376 if ((tmp & bits) == bits)
1379 if ((tmp & bits) == 0)
1386 printk(KERN_ERR PFX "carm_init_wait timeout, bits == 0x%x, test_bit == %s\n",
1387 bits, test_bit ? "yes" : "no");
1391 static void carm_init_responses(struct carm_host *host)
1393 void __iomem *mmio = host->mmio;
1395 struct carm_response *resp = (struct carm_response *) host->shm;
1397 for (i = 0; i < RMSG_Q_LEN; i++)
1398 resp[i].status = cpu_to_le32(0xffffffff);
1400 writel(0, mmio + CARM_RESP_IDX);
1403 static int carm_init_host(struct carm_host *host)
1405 void __iomem *mmio = host->mmio;
1412 writel(0, mmio + CARM_INT_MASK);
1414 tmp8 = readb(mmio + CARM_INITC);
1417 writeb(tmp8, mmio + CARM_INITC);
1418 readb(mmio + CARM_INITC); /* flush */
1420 DPRINTK("snooze...\n");
1424 tmp = readl(mmio + CARM_HMUC);
1425 if (tmp & CARM_CME) {
1426 DPRINTK("CME bit present, waiting\n");
1427 rc = carm_init_wait(mmio, CARM_CME, 1);
1429 DPRINTK("EXIT, carm_init_wait 1 failed\n");
1433 if (tmp & CARM_RME) {
1434 DPRINTK("RME bit present, waiting\n");
1435 rc = carm_init_wait(mmio, CARM_RME, 1);
1437 DPRINTK("EXIT, carm_init_wait 2 failed\n");
1442 tmp &= ~(CARM_RME | CARM_CME);
1443 writel(tmp, mmio + CARM_HMUC);
1444 readl(mmio + CARM_HMUC); /* flush */
1446 rc = carm_init_wait(mmio, CARM_RME | CARM_CME, 0);
1448 DPRINTK("EXIT, carm_init_wait 3 failed\n");
1452 carm_init_buckets(mmio);
1454 writel(host->shm_dma & 0xffffffff, mmio + RBUF_ADDR_LO);
1455 writel((host->shm_dma >> 16) >> 16, mmio + RBUF_ADDR_HI);
1456 writel(RBUF_LEN, mmio + RBUF_BYTE_SZ);
1458 tmp = readl(mmio + CARM_HMUC);
1459 tmp |= (CARM_RME | CARM_CME | CARM_WZBC);
1460 writel(tmp, mmio + CARM_HMUC);
1461 readl(mmio + CARM_HMUC); /* flush */
1463 rc = carm_init_wait(mmio, CARM_RME | CARM_CME, 1);
1465 DPRINTK("EXIT, carm_init_wait 4 failed\n");
1469 writel(0, mmio + CARM_HMPHA);
1470 writel(INT_DEF_MASK, mmio + CARM_INT_MASK);
1472 carm_init_responses(host);
1474 /* start initialization, probing state machine */
1475 spin_lock_irq(&host->lock);
1476 assert(host->state == HST_INVALID);
1477 host->state = HST_PROBE_START;
1478 spin_unlock_irq(&host->lock);
1479 schedule_work(&host->fsm_task);
1485 static int carm_init_disks(struct carm_host *host)
1490 for (i = 0; i < CARM_MAX_PORTS; i++) {
1491 struct gendisk *disk;
1493 struct carm_port *port;
1495 port = &host->port[i];
1499 disk = alloc_disk(CARM_MINORS_PER_MAJOR);
1506 sprintf(disk->disk_name, DRV_NAME "/%u",
1507 (unsigned int) (host->id * CARM_MAX_PORTS) + i);
1508 sprintf(disk->devfs_name, DRV_NAME "/%u_%u", host->id, i);
1509 disk->major = host->major;
1510 disk->first_minor = i * CARM_MINORS_PER_MAJOR;
1511 disk->fops = &carm_bd_ops;
1512 disk->private_data = port;
1514 q = blk_init_queue(carm_rq_fn, &host->lock);
1520 blk_queue_max_hw_segments(q, CARM_MAX_REQ_SG);
1521 blk_queue_max_phys_segments(q, CARM_MAX_REQ_SG);
1522 blk_queue_segment_boundary(q, CARM_SG_BOUNDARY);
1524 q->queuedata = port;
1530 static void carm_free_disks(struct carm_host *host)
1534 for (i = 0; i < CARM_MAX_PORTS; i++) {
1535 struct gendisk *disk = host->port[i].disk;
1537 request_queue_t *q = disk->queue;
1539 if (disk->flags & GENHD_FL_UP)
1542 blk_cleanup_queue(q);
1548 static int carm_init_shm(struct carm_host *host)
1550 host->shm = pci_alloc_consistent(host->pdev, CARM_SHM_SIZE,
1555 host->msg_base = host->shm + RBUF_LEN;
1556 host->msg_dma = host->shm_dma + RBUF_LEN;
1558 memset(host->shm, 0xff, RBUF_LEN);
1559 memset(host->msg_base, 0, PDC_SHM_SIZE - RBUF_LEN);
1564 static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1566 static unsigned int printed_version;
1567 struct carm_host *host;
1568 unsigned int pci_dac;
1573 if (!printed_version++)
1574 printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
1576 rc = pci_enable_device(pdev);
1580 rc = pci_request_regions(pdev, DRV_NAME);
1584 #if IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
1585 rc = pci_set_dma_mask(pdev, 0xffffffffffffffffULL);
1587 rc = pci_set_consistent_dma_mask(pdev, 0xffffffffffffffffULL);
1589 printk(KERN_ERR DRV_NAME "(%s): consistent DMA mask failure\n",
1591 goto err_out_regions;
1596 rc = pci_set_dma_mask(pdev, 0xffffffffULL);
1598 printk(KERN_ERR DRV_NAME "(%s): DMA mask failure\n",
1600 goto err_out_regions;
1603 #if IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
1607 host = kmalloc(sizeof(*host), GFP_KERNEL);
1609 printk(KERN_ERR DRV_NAME "(%s): memory alloc failure\n",
1612 goto err_out_regions;
1615 memset(host, 0, sizeof(*host));
1617 host->flags = pci_dac ? FL_DAC : 0;
1618 spin_lock_init(&host->lock);
1619 INIT_WORK(&host->fsm_task, carm_fsm_task, host);
1620 init_MUTEX_LOCKED(&host->probe_sem);
1622 for (i = 0; i < ARRAY_SIZE(host->req); i++)
1623 host->req[i].tag = i;
1625 host->mmio = ioremap(pci_resource_start(pdev, 0),
1626 pci_resource_len(pdev, 0));
1628 printk(KERN_ERR DRV_NAME "(%s): MMIO alloc failure\n",
1634 rc = carm_init_shm(host);
1636 printk(KERN_ERR DRV_NAME "(%s): DMA SHM alloc failure\n",
1638 goto err_out_iounmap;
1641 q = blk_init_queue(carm_oob_rq_fn, &host->lock);
1643 printk(KERN_ERR DRV_NAME "(%s): OOB queue alloc failure\n",
1646 goto err_out_pci_free;
1649 q->queuedata = host;
1652 * Figure out which major to use: 160, 161, or dynamic
1654 if (!test_and_set_bit(0, &carm_major_alloc))
1656 else if (!test_and_set_bit(1, &carm_major_alloc))
1659 host->flags |= FL_DYN_MAJOR;
1661 host->id = carm_host_id;
1662 sprintf(host->name, DRV_NAME "%d", carm_host_id);
1664 rc = register_blkdev(host->major, host->name);
1666 goto err_out_free_majors;
1667 if (host->flags & FL_DYN_MAJOR)
1670 devfs_mk_dir(DRV_NAME);
1672 rc = carm_init_disks(host);
1674 goto err_out_blkdev_disks;
1676 pci_set_master(pdev);
1678 rc = request_irq(pdev->irq, carm_interrupt, SA_SHIRQ, DRV_NAME, host);
1680 printk(KERN_ERR DRV_NAME "(%s): irq alloc failure\n",
1682 goto err_out_blkdev_disks;
1685 rc = carm_init_host(host);
1687 goto err_out_free_irq;
1689 DPRINTK("waiting for probe_sem\n");
1690 down(&host->probe_sem);
1692 printk(KERN_INFO "%s: pci %s, ports %d, io %lx, irq %u, major %d\n",
1693 host->name, pci_name(pdev), (int) CARM_MAX_PORTS,
1694 pci_resource_start(pdev, 0), 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 devfs_remove(DRV_NAME);
1737 unregister_blkdev(host->major, host->name);
1738 if (host->major == 160)
1739 clear_bit(0, &carm_major_alloc);
1740 else if (host->major == 161)
1741 clear_bit(1, &carm_major_alloc);
1742 blk_cleanup_queue(host->oob_q);
1743 pci_free_consistent(pdev, CARM_SHM_SIZE, host->shm, host->shm_dma);
1744 iounmap(host->mmio);
1746 pci_release_regions(pdev);
1747 pci_disable_device(pdev);
1748 pci_set_drvdata(pdev, NULL);
1751 static int __init carm_init(void)
1753 return pci_module_init(&carm_driver);
1756 static void __exit carm_exit(void)
1758 pci_unregister_driver(&carm_driver);
1761 module_init(carm_init);
1762 module_exit(carm_exit);