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>
29 #include <linux/dma-mapping.h>
31 #include <asm/semaphore.h>
32 #include <asm/uaccess.h>
34 MODULE_AUTHOR("Jeff Garzik");
35 MODULE_LICENSE("GPL");
36 MODULE_DESCRIPTION("Promise SATA SX8 block driver");
40 #define CARM_VERBOSE_DEBUG
43 #undef CARM_VERBOSE_DEBUG
47 #define DRV_NAME "sx8"
48 #define DRV_VERSION "0.8"
49 #define PFX DRV_NAME ": "
51 #define NEXT_RESP(idx) ((idx + 1) % RMSG_Q_LEN)
53 /* 0xf is just arbitrary, non-zero noise; this is sorta like poisoning */
54 #define TAG_ENCODE(tag) (((tag) << 16) | 0xf)
55 #define TAG_DECODE(tag) (((tag) >> 16) & 0x1f)
56 #define TAG_VALID(tag) ((((tag) & 0xf) == 0xf) && (TAG_DECODE(tag) < 32))
58 /* note: prints function name for you */
60 #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
61 #ifdef CARM_VERBOSE_DEBUG
62 #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
64 #define VPRINTK(fmt, args...)
65 #endif /* CARM_VERBOSE_DEBUG */
67 #define DPRINTK(fmt, args...)
68 #define VPRINTK(fmt, args...)
69 #endif /* CARM_DEBUG */
74 #define assert(expr) \
75 if(unlikely(!(expr))) { \
76 printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%d\n", \
77 #expr,__FILE__,__FUNCTION__,__LINE__); \
81 /* defines only for the constants which don't work well as enums */
85 /* adapter-wide limits */
87 CARM_SHM_SIZE = (4096 << 7),
88 CARM_MINORS_PER_MAJOR = 256 / CARM_MAX_PORTS,
89 CARM_MAX_WAIT_Q = CARM_MAX_PORTS + 1,
91 /* command message queue limits */
92 CARM_MAX_REQ = 64, /* max command msgs per host */
93 CARM_MAX_Q = 1, /* one command at a time */
94 CARM_MSG_LOW_WATER = (CARM_MAX_REQ / 4), /* refill mark */
96 /* S/G limits, host-wide and per-request */
97 CARM_MAX_REQ_SG = 32, /* max s/g entries per request */
98 CARM_SG_BOUNDARY = 0xffffUL, /* s/g segment boundary */
99 CARM_MAX_HOST_SG = 600, /* max s/g entries per host */
100 CARM_SG_LOW_WATER = (CARM_MAX_HOST_SG / 4), /* re-fill mark */
102 /* hardware registers */
104 CARM_INT_STAT = 0x10, /* interrupt status */
105 CARM_INT_MASK = 0x14, /* interrupt mask */
106 CARM_HMUC = 0x18, /* host message unit control */
107 RBUF_ADDR_LO = 0x20, /* response msg DMA buf low 32 bits */
108 RBUF_ADDR_HI = 0x24, /* response msg DMA buf high 32 bits */
110 CARM_RESP_IDX = 0x2c,
111 CARM_CMS0 = 0x30, /* command message size reg 0 */
116 /* bits in CARM_INT_{STAT,MASK} */
117 INT_RESERVED = 0xfffffff0,
118 INT_WATCHDOG = (1 << 3), /* watchdog timer */
119 INT_Q_OVERFLOW = (1 << 2), /* cmd msg q overflow */
120 INT_Q_AVAILABLE = (1 << 1), /* cmd msg q has free space */
121 INT_RESPONSE = (1 << 0), /* response msg available */
122 INT_ACK_MASK = INT_WATCHDOG | INT_Q_OVERFLOW,
123 INT_DEF_MASK = INT_RESERVED | INT_Q_OVERFLOW |
126 /* command messages, and related register bits */
127 CARM_HAVE_RESP = 0x01,
131 CARM_MSG_GET_CAPACITY = 4,
138 CARM_WZBC = (1 << 0),
140 CARM_Q_FULL = (1 << 3),
144 /* CARM_MSG_IOCTL messages */
145 CARM_IOC_SCAN_CHAN = 5, /* scan channels for devices */
146 CARM_IOC_GET_TCQ = 13, /* get tcq/ncq depth */
147 CARM_IOC_SET_TCQ = 14, /* set tcq/ncq depth */
149 IOC_SCAN_CHAN_NODEV = 0x1f,
150 IOC_SCAN_CHAN_OFFSET = 0x40,
152 /* CARM_MSG_ARRAY messages */
155 ARRAY_NO_EXIST = (1 << 31),
157 /* response messages */
158 RMSG_SZ = 8, /* sizeof(struct carm_response) */
159 RMSG_Q_LEN = 48, /* resp. msg list length */
160 RMSG_OK = 1, /* bit indicating msg was successful */
161 /* length of entire resp. msg buffer */
162 RBUF_LEN = RMSG_SZ * RMSG_Q_LEN,
164 PDC_SHM_SIZE = (4096 << 7), /* length of entire h/w buffer */
166 /* CARM_MSG_MISC messages */
171 /* MISC_GET_FW_VER feature bits */
172 FW_VER_4PORT = (1 << 2), /* 1=4 ports, 0=8 ports */
173 FW_VER_NON_RAID = (1 << 1), /* 1=non-RAID firmware, 0=RAID */
174 FW_VER_ZCR = (1 << 0), /* zero channel RAID (whatever that is) */
176 /* carm_host flags */
177 FL_NON_RAID = FW_VER_NON_RAID,
178 FL_4PORT = FW_VER_4PORT,
179 FL_FW_VER_MASK = (FW_VER_NON_RAID | FW_VER_4PORT),
181 FL_DYN_MAJOR = (1 << 17),
184 enum scatter_gather_types {
190 HST_INVALID, /* invalid state; never used */
191 HST_ALLOC_BUF, /* setting up master SHM area */
192 HST_ERROR, /* we never leave here */
193 HST_PORT_SCAN, /* start dev scan */
194 HST_DEV_SCAN_START, /* start per-device probe */
195 HST_DEV_SCAN, /* continue per-device probe */
196 HST_DEV_ACTIVATE, /* activate devices we found */
197 HST_PROBE_FINISHED, /* probe is complete */
198 HST_PROBE_START, /* initiate probe */
199 HST_SYNC_TIME, /* tell firmware what time it is */
200 HST_GET_FW_VER, /* get firmware version, adapter port cnt */
204 static const char *state_name[] = {
209 "HST_DEV_SCAN_START",
212 "HST_PROBE_FINISHED",
220 unsigned int port_no;
221 unsigned int n_queued;
222 struct gendisk *disk;
223 struct carm_host *host;
225 /* attached device characteristics */
233 struct carm_request {
236 unsigned int msg_type;
237 unsigned int msg_subtype;
238 unsigned int msg_bucket;
240 struct carm_port *port;
241 struct scatterlist sg[CARM_MAX_REQ_SG];
255 struct pci_dev *pdev;
259 request_queue_t *oob_q;
262 unsigned int hw_sg_used;
264 unsigned int resp_idx;
266 unsigned int wait_q_prod;
267 unsigned int wait_q_cons;
268 request_queue_t *wait_q[CARM_MAX_WAIT_Q];
272 struct carm_request req[CARM_MAX_REQ];
277 unsigned long dev_active;
278 unsigned long dev_present;
279 struct carm_port port[CARM_MAX_PORTS];
281 struct work_struct fsm_task;
283 struct semaphore probe_sem;
286 struct carm_response {
289 } __attribute__((packed));
294 } __attribute__((packed));
305 struct carm_msg_sg sg[32];
306 } __attribute__((packed));
308 struct carm_msg_allocbuf {
322 struct carm_msg_sg sg[8];
323 } __attribute__((packed));
325 struct carm_msg_ioctl {
333 } __attribute__((packed));
335 struct carm_msg_sync_time {
342 } __attribute__((packed));
344 struct carm_msg_get_fw_ver {
351 } __attribute__((packed));
358 } __attribute__((packed));
360 struct carm_array_info {
368 __le16 stripe_blk_sz;
382 /* device list continues beyond this point? */
383 } __attribute__((packed));
385 static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
386 static void carm_remove_one (struct pci_dev *pdev);
387 static int carm_bdev_ioctl(struct inode *ino, struct file *fil,
388 unsigned int cmd, unsigned long arg);
390 static struct pci_device_id carm_pci_tbl[] = {
391 { PCI_VENDOR_ID_PROMISE, 0x8000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, },
392 { PCI_VENDOR_ID_PROMISE, 0x8002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, },
393 { } /* terminate list */
395 MODULE_DEVICE_TABLE(pci, carm_pci_tbl);
397 static struct pci_driver carm_driver = {
399 .id_table = carm_pci_tbl,
400 .probe = carm_init_one,
401 .remove = carm_remove_one,
404 static struct block_device_operations carm_bd_ops = {
405 .owner = THIS_MODULE,
406 .ioctl = carm_bdev_ioctl,
409 static unsigned int carm_host_id;
410 static unsigned long carm_major_alloc;
414 static int carm_bdev_ioctl(struct inode *ino, struct file *fil,
415 unsigned int cmd, unsigned long arg)
417 void __user *usermem = (void __user *) arg;
418 struct carm_port *port = ino->i_bdev->bd_disk->private_data;
419 struct hd_geometry geom;
426 geom.heads = (u8) port->dev_geom_head;
427 geom.sectors = (u8) port->dev_geom_sect;
428 geom.cylinders = port->dev_geom_cyl;
429 geom.start = get_start_sect(ino->i_bdev);
431 if (copy_to_user(usermem, &geom, sizeof(geom)))
442 static const u32 msg_sizes[] = { 32, 64, 128, CARM_MSG_SIZE };
444 static inline int carm_lookup_bucket(u32 msg_size)
448 for (i = 0; i < ARRAY_SIZE(msg_sizes); i++)
449 if (msg_size <= msg_sizes[i])
455 static void carm_init_buckets(void __iomem *mmio)
459 for (i = 0; i < ARRAY_SIZE(msg_sizes); i++)
460 writel(msg_sizes[i], mmio + CARM_CMS0 + (4 * i));
463 static inline void *carm_ref_msg(struct carm_host *host,
464 unsigned int msg_idx)
466 return host->msg_base + (msg_idx * CARM_MSG_SIZE);
469 static inline dma_addr_t carm_ref_msg_dma(struct carm_host *host,
470 unsigned int msg_idx)
472 return host->msg_dma + (msg_idx * CARM_MSG_SIZE);
475 static int carm_send_msg(struct carm_host *host,
476 struct carm_request *crq)
478 void __iomem *mmio = host->mmio;
479 u32 msg = (u32) carm_ref_msg_dma(host, crq->tag);
480 u32 cm_bucket = crq->msg_bucket;
486 tmp = readl(mmio + CARM_HMUC);
487 if (tmp & CARM_Q_FULL) {
489 tmp = readl(mmio + CARM_INT_MASK);
490 tmp |= INT_Q_AVAILABLE;
491 writel(tmp, mmio + CARM_INT_MASK);
492 readl(mmio + CARM_INT_MASK); /* flush */
494 DPRINTK("host msg queue full\n");
497 writel(msg | (cm_bucket << 1), mmio + CARM_IHQP);
498 readl(mmio + CARM_IHQP); /* flush */
504 static struct carm_request *carm_get_request(struct carm_host *host)
508 /* obey global hardware limit on S/G entries */
509 if (host->hw_sg_used >= (CARM_MAX_HOST_SG - CARM_MAX_REQ_SG))
512 for (i = 0; i < CARM_MAX_Q; i++)
513 if ((host->msg_alloc & (1ULL << i)) == 0) {
514 struct carm_request *crq = &host->req[i];
518 host->msg_alloc |= (1ULL << i);
521 assert(host->n_msgs <= CARM_MAX_REQ);
525 DPRINTK("no request available, returning NULL\n");
529 static int carm_put_request(struct carm_host *host, struct carm_request *crq)
531 assert(crq->tag < CARM_MAX_Q);
533 if (unlikely((host->msg_alloc & (1ULL << crq->tag)) == 0))
534 return -EINVAL; /* tried to clear a tag that was not active */
536 assert(host->hw_sg_used >= crq->n_elem);
538 host->msg_alloc &= ~(1ULL << crq->tag);
539 host->hw_sg_used -= crq->n_elem;
545 static struct carm_request *carm_get_special(struct carm_host *host)
548 struct carm_request *crq = NULL;
552 while (tries-- > 0) {
553 spin_lock_irqsave(&host->lock, flags);
554 crq = carm_get_request(host);
555 spin_unlock_irqrestore(&host->lock, flags);
565 rq = blk_get_request(host->oob_q, WRITE /* bogus */, GFP_KERNEL);
567 spin_lock_irqsave(&host->lock, flags);
568 carm_put_request(host, crq);
569 spin_unlock_irqrestore(&host->lock, flags);
577 static int carm_array_info (struct carm_host *host, unsigned int array_idx)
579 struct carm_msg_ioctl *ioc;
583 struct carm_request *crq;
586 crq = carm_get_special(host);
594 ioc = carm_ref_msg(host, idx);
595 msg_dma = carm_ref_msg_dma(host, idx);
596 msg_data = (u32) (msg_dma + sizeof(struct carm_array_info));
598 crq->msg_type = CARM_MSG_ARRAY;
599 crq->msg_subtype = CARM_ARRAY_INFO;
600 rc = carm_lookup_bucket(sizeof(struct carm_msg_ioctl) +
601 sizeof(struct carm_array_info));
603 crq->msg_bucket = (u32) rc;
605 memset(ioc, 0, sizeof(*ioc));
606 ioc->type = CARM_MSG_ARRAY;
607 ioc->subtype = CARM_ARRAY_INFO;
608 ioc->array_id = (u8) array_idx;
609 ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
610 ioc->data_addr = cpu_to_le32(msg_data);
612 spin_lock_irq(&host->lock);
613 assert(host->state == HST_DEV_SCAN_START ||
614 host->state == HST_DEV_SCAN);
615 spin_unlock_irq(&host->lock);
617 DPRINTK("blk_insert_request, tag == %u\n", idx);
618 blk_insert_request(host->oob_q, crq->rq, 1, crq);
623 spin_lock_irq(&host->lock);
624 host->state = HST_ERROR;
625 spin_unlock_irq(&host->lock);
629 typedef unsigned int (*carm_sspc_t)(struct carm_host *, unsigned int, void *);
631 static int carm_send_special (struct carm_host *host, carm_sspc_t func)
633 struct carm_request *crq;
634 struct carm_msg_ioctl *ioc;
636 unsigned int idx, msg_size;
639 crq = carm_get_special(host);
645 mem = carm_ref_msg(host, idx);
647 msg_size = func(host, idx, mem);
650 crq->msg_type = ioc->type;
651 crq->msg_subtype = ioc->subtype;
652 rc = carm_lookup_bucket(msg_size);
654 crq->msg_bucket = (u32) rc;
656 DPRINTK("blk_insert_request, tag == %u\n", idx);
657 blk_insert_request(host->oob_q, crq->rq, 1, crq);
662 static unsigned int carm_fill_sync_time(struct carm_host *host,
663 unsigned int idx, void *mem)
666 struct carm_msg_sync_time *st = mem;
668 do_gettimeofday(&tv);
670 memset(st, 0, sizeof(*st));
671 st->type = CARM_MSG_MISC;
672 st->subtype = MISC_SET_TIME;
673 st->handle = cpu_to_le32(TAG_ENCODE(idx));
674 st->timestamp = cpu_to_le32(tv.tv_sec);
676 return sizeof(struct carm_msg_sync_time);
679 static unsigned int carm_fill_alloc_buf(struct carm_host *host,
680 unsigned int idx, void *mem)
682 struct carm_msg_allocbuf *ab = mem;
684 memset(ab, 0, sizeof(*ab));
685 ab->type = CARM_MSG_MISC;
686 ab->subtype = MISC_ALLOC_MEM;
687 ab->handle = cpu_to_le32(TAG_ENCODE(idx));
689 ab->sg_type = SGT_32BIT;
690 ab->addr = cpu_to_le32(host->shm_dma + (PDC_SHM_SIZE >> 1));
691 ab->len = cpu_to_le32(PDC_SHM_SIZE >> 1);
692 ab->evt_pool = cpu_to_le32(host->shm_dma + (16 * 1024));
693 ab->n_evt = cpu_to_le32(1024);
694 ab->rbuf_pool = cpu_to_le32(host->shm_dma);
695 ab->n_rbuf = cpu_to_le32(RMSG_Q_LEN);
696 ab->msg_pool = cpu_to_le32(host->shm_dma + RBUF_LEN);
697 ab->n_msg = cpu_to_le32(CARM_Q_LEN);
698 ab->sg[0].start = cpu_to_le32(host->shm_dma + (PDC_SHM_SIZE >> 1));
699 ab->sg[0].len = cpu_to_le32(65536);
701 return sizeof(struct carm_msg_allocbuf);
704 static unsigned int carm_fill_scan_channels(struct carm_host *host,
705 unsigned int idx, void *mem)
707 struct carm_msg_ioctl *ioc = mem;
708 u32 msg_data = (u32) (carm_ref_msg_dma(host, idx) +
709 IOC_SCAN_CHAN_OFFSET);
711 memset(ioc, 0, sizeof(*ioc));
712 ioc->type = CARM_MSG_IOCTL;
713 ioc->subtype = CARM_IOC_SCAN_CHAN;
714 ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
715 ioc->data_addr = cpu_to_le32(msg_data);
717 /* fill output data area with "no device" default values */
718 mem += IOC_SCAN_CHAN_OFFSET;
719 memset(mem, IOC_SCAN_CHAN_NODEV, CARM_MAX_PORTS);
721 return IOC_SCAN_CHAN_OFFSET + CARM_MAX_PORTS;
724 static unsigned int carm_fill_get_fw_ver(struct carm_host *host,
725 unsigned int idx, void *mem)
727 struct carm_msg_get_fw_ver *ioc = mem;
728 u32 msg_data = (u32) (carm_ref_msg_dma(host, idx) + sizeof(*ioc));
730 memset(ioc, 0, sizeof(*ioc));
731 ioc->type = CARM_MSG_MISC;
732 ioc->subtype = MISC_GET_FW_VER;
733 ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
734 ioc->data_addr = cpu_to_le32(msg_data);
736 return sizeof(struct carm_msg_get_fw_ver) +
737 sizeof(struct carm_fw_ver);
740 static inline void carm_end_request_queued(struct carm_host *host,
741 struct carm_request *crq,
744 struct request *req = crq->rq;
747 rc = end_that_request_first(req, uptodate, req->hard_nr_sectors);
750 end_that_request_last(req);
752 rc = carm_put_request(host, crq);
756 static inline void carm_push_q (struct carm_host *host, request_queue_t *q)
758 unsigned int idx = host->wait_q_prod % CARM_MAX_WAIT_Q;
761 VPRINTK("STOPPED QUEUE %p\n", q);
763 host->wait_q[idx] = q;
765 BUG_ON(host->wait_q_prod == host->wait_q_cons); /* overrun */
768 static inline request_queue_t *carm_pop_q(struct carm_host *host)
772 if (host->wait_q_prod == host->wait_q_cons)
775 idx = host->wait_q_cons % CARM_MAX_WAIT_Q;
778 return host->wait_q[idx];
781 static inline void carm_round_robin(struct carm_host *host)
783 request_queue_t *q = carm_pop_q(host);
786 VPRINTK("STARTED QUEUE %p\n", q);
790 static inline void carm_end_rq(struct carm_host *host, struct carm_request *crq,
793 carm_end_request_queued(host, crq, is_ok);
795 carm_round_robin(host);
796 else if ((host->n_msgs <= CARM_MSG_LOW_WATER) &&
797 (host->hw_sg_used <= CARM_SG_LOW_WATER)) {
798 carm_round_robin(host);
802 static void carm_oob_rq_fn(request_queue_t *q)
804 struct carm_host *host = q->queuedata;
805 struct carm_request *crq;
810 DPRINTK("get req\n");
811 rq = elv_next_request(q);
815 blkdev_dequeue_request(rq);
819 assert(crq->rq == rq);
823 DPRINTK("send req\n");
824 rc = carm_send_msg(host, crq);
826 blk_requeue_request(q, rq);
827 carm_push_q(host, q);
828 return; /* call us again later, eventually */
833 static void carm_rq_fn(request_queue_t *q)
835 struct carm_port *port = q->queuedata;
836 struct carm_host *host = port->host;
837 struct carm_msg_rw *msg;
838 struct carm_request *crq;
840 struct scatterlist *sg;
841 int writing = 0, pci_dir, i, n_elem, rc;
843 unsigned int msg_size;
846 VPRINTK("get req\n");
847 rq = elv_next_request(q);
851 crq = carm_get_request(host);
853 carm_push_q(host, q);
854 return; /* call us again later, eventually */
858 blkdev_dequeue_request(rq);
860 if (rq_data_dir(rq) == WRITE) {
862 pci_dir = PCI_DMA_TODEVICE;
864 pci_dir = PCI_DMA_FROMDEVICE;
867 /* get scatterlist from block layer */
869 n_elem = blk_rq_map_sg(q, rq, sg);
871 carm_end_rq(host, crq, 0);
872 return; /* request with no s/g entries? */
875 /* map scatterlist to PCI bus addresses */
876 n_elem = pci_map_sg(host->pdev, sg, n_elem, pci_dir);
878 carm_end_rq(host, crq, 0);
879 return; /* request with no s/g entries? */
881 crq->n_elem = n_elem;
883 host->hw_sg_used += n_elem;
886 * build read/write message
889 VPRINTK("build msg\n");
890 msg = (struct carm_msg_rw *) carm_ref_msg(host, crq->tag);
893 msg->type = CARM_MSG_WRITE;
894 crq->msg_type = CARM_MSG_WRITE;
896 msg->type = CARM_MSG_READ;
897 crq->msg_type = CARM_MSG_READ;
900 msg->id = port->port_no;
901 msg->sg_count = n_elem;
902 msg->sg_type = SGT_32BIT;
903 msg->handle = cpu_to_le32(TAG_ENCODE(crq->tag));
904 msg->lba = cpu_to_le32(rq->sector & 0xffffffff);
905 tmp = (rq->sector >> 16) >> 16;
906 msg->lba_high = cpu_to_le16( (u16) tmp );
907 msg->lba_count = cpu_to_le16(rq->nr_sectors);
909 msg_size = sizeof(struct carm_msg_rw) - sizeof(msg->sg);
910 for (i = 0; i < n_elem; i++) {
911 struct carm_msg_sg *carm_sg = &msg->sg[i];
912 carm_sg->start = cpu_to_le32(sg_dma_address(&crq->sg[i]));
913 carm_sg->len = cpu_to_le32(sg_dma_len(&crq->sg[i]));
914 msg_size += sizeof(struct carm_msg_sg);
917 rc = carm_lookup_bucket(msg_size);
919 crq->msg_bucket = (u32) rc;
922 * queue read/write message to hardware
925 VPRINTK("send msg, tag == %u\n", crq->tag);
926 rc = carm_send_msg(host, crq);
928 carm_put_request(host, crq);
929 blk_requeue_request(q, rq);
930 carm_push_q(host, q);
931 return; /* call us again later, eventually */
934 goto queue_one_request;
937 static void carm_handle_array_info(struct carm_host *host,
938 struct carm_request *crq, u8 *mem,
941 struct carm_port *port;
942 u8 *msg_data = mem + sizeof(struct carm_array_info);
943 struct carm_array_info *desc = (struct carm_array_info *) msg_data;
950 carm_end_rq(host, crq, is_ok);
954 if (le32_to_cpu(desc->array_status) & ARRAY_NO_EXIST)
957 cur_port = host->cur_scan_dev;
959 /* should never occur */
960 if ((cur_port < 0) || (cur_port >= CARM_MAX_PORTS)) {
961 printk(KERN_ERR PFX "BUG: cur_scan_dev==%d, array_id==%d\n",
962 cur_port, (int) desc->array_id);
966 port = &host->port[cur_port];
968 lo = (u64) le32_to_cpu(desc->size);
969 hi = (u64) le16_to_cpu(desc->size_hi);
971 port->capacity = lo | (hi << 32);
972 port->dev_geom_head = le16_to_cpu(desc->head);
973 port->dev_geom_sect = le16_to_cpu(desc->sect);
974 port->dev_geom_cyl = le16_to_cpu(desc->cyl);
976 host->dev_active |= (1 << cur_port);
978 strncpy(port->name, desc->name, sizeof(port->name));
979 port->name[sizeof(port->name) - 1] = 0;
980 slen = strlen(port->name);
981 while (slen && (port->name[slen - 1] == ' ')) {
982 port->name[slen - 1] = 0;
986 printk(KERN_INFO DRV_NAME "(%s): port %u device %Lu sectors\n",
987 pci_name(host->pdev), port->port_no,
988 (unsigned long long) port->capacity);
989 printk(KERN_INFO DRV_NAME "(%s): port %u device \"%s\"\n",
990 pci_name(host->pdev), port->port_no, port->name);
993 assert(host->state == HST_DEV_SCAN);
994 schedule_work(&host->fsm_task);
997 static void carm_handle_scan_chan(struct carm_host *host,
998 struct carm_request *crq, u8 *mem,
1001 u8 *msg_data = mem + IOC_SCAN_CHAN_OFFSET;
1002 unsigned int i, dev_count = 0;
1003 int new_state = HST_DEV_SCAN_START;
1007 carm_end_rq(host, crq, is_ok);
1010 new_state = HST_ERROR;
1014 /* TODO: scan and support non-disk devices */
1015 for (i = 0; i < 8; i++)
1016 if (msg_data[i] == 0) { /* direct-access device (disk) */
1017 host->dev_present |= (1 << i);
1021 printk(KERN_INFO DRV_NAME "(%s): found %u interesting devices\n",
1022 pci_name(host->pdev), dev_count);
1025 assert(host->state == HST_PORT_SCAN);
1026 host->state = new_state;
1027 schedule_work(&host->fsm_task);
1030 static void carm_handle_generic(struct carm_host *host,
1031 struct carm_request *crq, int is_ok,
1032 int cur_state, int next_state)
1036 carm_end_rq(host, crq, is_ok);
1038 assert(host->state == cur_state);
1040 host->state = next_state;
1042 host->state = HST_ERROR;
1043 schedule_work(&host->fsm_task);
1046 static inline void carm_handle_rw(struct carm_host *host,
1047 struct carm_request *crq, int is_ok)
1053 if (rq_data_dir(crq->rq) == WRITE)
1054 pci_dir = PCI_DMA_TODEVICE;
1056 pci_dir = PCI_DMA_FROMDEVICE;
1058 pci_unmap_sg(host->pdev, &crq->sg[0], crq->n_elem, pci_dir);
1060 carm_end_rq(host, crq, is_ok);
1063 static inline void carm_handle_resp(struct carm_host *host,
1064 __le32 ret_handle_le, u32 status)
1066 u32 handle = le32_to_cpu(ret_handle_le);
1067 unsigned int msg_idx;
1068 struct carm_request *crq;
1069 int is_ok = (status == RMSG_OK);
1072 VPRINTK("ENTER, handle == 0x%x\n", handle);
1074 if (unlikely(!TAG_VALID(handle))) {
1075 printk(KERN_ERR DRV_NAME "(%s): BUG: invalid tag 0x%x\n",
1076 pci_name(host->pdev), handle);
1080 msg_idx = TAG_DECODE(handle);
1081 VPRINTK("tag == %u\n", msg_idx);
1083 crq = &host->req[msg_idx];
1086 if (likely(crq->msg_type == CARM_MSG_READ ||
1087 crq->msg_type == CARM_MSG_WRITE)) {
1088 carm_handle_rw(host, crq, is_ok);
1092 mem = carm_ref_msg(host, msg_idx);
1094 switch (crq->msg_type) {
1095 case CARM_MSG_IOCTL: {
1096 switch (crq->msg_subtype) {
1097 case CARM_IOC_SCAN_CHAN:
1098 carm_handle_scan_chan(host, crq, mem, is_ok);
1101 /* unknown / invalid response */
1107 case CARM_MSG_MISC: {
1108 switch (crq->msg_subtype) {
1109 case MISC_ALLOC_MEM:
1110 carm_handle_generic(host, crq, is_ok,
1111 HST_ALLOC_BUF, HST_SYNC_TIME);
1114 carm_handle_generic(host, crq, is_ok,
1115 HST_SYNC_TIME, HST_GET_FW_VER);
1117 case MISC_GET_FW_VER: {
1118 struct carm_fw_ver *ver = (struct carm_fw_ver *)
1119 mem + sizeof(struct carm_msg_get_fw_ver);
1121 host->fw_ver = le32_to_cpu(ver->version);
1122 host->flags |= (ver->features & FL_FW_VER_MASK);
1124 carm_handle_generic(host, crq, is_ok,
1125 HST_GET_FW_VER, HST_PORT_SCAN);
1129 /* unknown / invalid response */
1135 case CARM_MSG_ARRAY: {
1136 switch (crq->msg_subtype) {
1137 case CARM_ARRAY_INFO:
1138 carm_handle_array_info(host, crq, mem, is_ok);
1141 /* unknown / invalid response */
1148 /* unknown / invalid response */
1155 printk(KERN_WARNING DRV_NAME "(%s): BUG: unhandled message type %d/%d\n",
1156 pci_name(host->pdev), crq->msg_type, crq->msg_subtype);
1157 carm_end_rq(host, crq, 0);
1160 static inline void carm_handle_responses(struct carm_host *host)
1162 void __iomem *mmio = host->mmio;
1163 struct carm_response *resp = (struct carm_response *) host->shm;
1164 unsigned int work = 0;
1165 unsigned int idx = host->resp_idx % RMSG_Q_LEN;
1168 u32 status = le32_to_cpu(resp[idx].status);
1170 if (status == 0xffffffff) {
1171 VPRINTK("ending response on index %u\n", idx);
1172 writel(idx << 3, mmio + CARM_RESP_IDX);
1176 /* response to a message we sent */
1177 else if ((status & (1 << 31)) == 0) {
1178 VPRINTK("handling msg response on index %u\n", idx);
1179 carm_handle_resp(host, resp[idx].ret_handle, status);
1180 resp[idx].status = cpu_to_le32(0xffffffff);
1183 /* asynchronous events the hardware throws our way */
1184 else if ((status & 0xff000000) == (1 << 31)) {
1185 u8 *evt_type_ptr = (u8 *) &resp[idx];
1186 u8 evt_type = *evt_type_ptr;
1187 printk(KERN_WARNING DRV_NAME "(%s): unhandled event type %d\n",
1188 pci_name(host->pdev), (int) evt_type);
1189 resp[idx].status = cpu_to_le32(0xffffffff);
1192 idx = NEXT_RESP(idx);
1196 VPRINTK("EXIT, work==%u\n", work);
1197 host->resp_idx += work;
1200 static irqreturn_t carm_interrupt(int irq, void *__host, struct pt_regs *regs)
1202 struct carm_host *host = __host;
1206 unsigned long flags;
1209 VPRINTK("no host\n");
1213 spin_lock_irqsave(&host->lock, flags);
1217 /* reading should also clear interrupts */
1218 mask = readl(mmio + CARM_INT_STAT);
1220 if (mask == 0 || mask == 0xffffffff) {
1221 VPRINTK("no work, mask == 0x%x\n", mask);
1225 if (mask & INT_ACK_MASK)
1226 writel(mask, mmio + CARM_INT_STAT);
1228 if (unlikely(host->state == HST_INVALID)) {
1229 VPRINTK("not initialized yet, mask = 0x%x\n", mask);
1233 if (mask & CARM_HAVE_RESP) {
1235 carm_handle_responses(host);
1239 spin_unlock_irqrestore(&host->lock, flags);
1241 return IRQ_RETVAL(handled);
1244 static void carm_fsm_task (void *_data)
1246 struct carm_host *host = _data;
1247 unsigned long flags;
1249 int rc, i, next_dev;
1251 int new_state = HST_INVALID;
1253 spin_lock_irqsave(&host->lock, flags);
1254 state = host->state;
1255 spin_unlock_irqrestore(&host->lock, flags);
1257 DPRINTK("ENTER, state == %s\n", state_name[state]);
1260 case HST_PROBE_START:
1261 new_state = HST_ALLOC_BUF;
1266 rc = carm_send_special(host, carm_fill_alloc_buf);
1268 new_state = HST_ERROR;
1274 rc = carm_send_special(host, carm_fill_sync_time);
1276 new_state = HST_ERROR;
1281 case HST_GET_FW_VER:
1282 rc = carm_send_special(host, carm_fill_get_fw_ver);
1284 new_state = HST_ERROR;
1290 rc = carm_send_special(host, carm_fill_scan_channels);
1292 new_state = HST_ERROR;
1297 case HST_DEV_SCAN_START:
1298 host->cur_scan_dev = -1;
1299 new_state = HST_DEV_SCAN;
1305 for (i = host->cur_scan_dev + 1; i < CARM_MAX_PORTS; i++)
1306 if (host->dev_present & (1 << i)) {
1311 if (next_dev >= 0) {
1312 host->cur_scan_dev = next_dev;
1313 rc = carm_array_info(host, next_dev);
1315 new_state = HST_ERROR;
1319 new_state = HST_DEV_ACTIVATE;
1324 case HST_DEV_ACTIVATE: {
1326 for (i = 0; i < CARM_MAX_PORTS; i++)
1327 if (host->dev_active & (1 << i)) {
1328 struct carm_port *port = &host->port[i];
1329 struct gendisk *disk = port->disk;
1331 set_capacity(disk, port->capacity);
1336 printk(KERN_INFO DRV_NAME "(%s): %d ports activated\n",
1337 pci_name(host->pdev), activated);
1339 new_state = HST_PROBE_FINISHED;
1344 case HST_PROBE_FINISHED:
1345 up(&host->probe_sem);
1353 /* should never occur */
1354 printk(KERN_ERR PFX "BUG: unknown state %d\n", state);
1359 if (new_state != HST_INVALID) {
1360 spin_lock_irqsave(&host->lock, flags);
1361 host->state = new_state;
1362 spin_unlock_irqrestore(&host->lock, flags);
1365 schedule_work(&host->fsm_task);
1368 static int carm_init_wait(void __iomem *mmio, u32 bits, unsigned int test_bit)
1372 for (i = 0; i < 50000; i++) {
1373 u32 tmp = readl(mmio + CARM_LMUC);
1377 if ((tmp & bits) == bits)
1380 if ((tmp & bits) == 0)
1387 printk(KERN_ERR PFX "carm_init_wait timeout, bits == 0x%x, test_bit == %s\n",
1388 bits, test_bit ? "yes" : "no");
1392 static void carm_init_responses(struct carm_host *host)
1394 void __iomem *mmio = host->mmio;
1396 struct carm_response *resp = (struct carm_response *) host->shm;
1398 for (i = 0; i < RMSG_Q_LEN; i++)
1399 resp[i].status = cpu_to_le32(0xffffffff);
1401 writel(0, mmio + CARM_RESP_IDX);
1404 static int carm_init_host(struct carm_host *host)
1406 void __iomem *mmio = host->mmio;
1413 writel(0, mmio + CARM_INT_MASK);
1415 tmp8 = readb(mmio + CARM_INITC);
1418 writeb(tmp8, mmio + CARM_INITC);
1419 readb(mmio + CARM_INITC); /* flush */
1421 DPRINTK("snooze...\n");
1425 tmp = readl(mmio + CARM_HMUC);
1426 if (tmp & CARM_CME) {
1427 DPRINTK("CME bit present, waiting\n");
1428 rc = carm_init_wait(mmio, CARM_CME, 1);
1430 DPRINTK("EXIT, carm_init_wait 1 failed\n");
1434 if (tmp & CARM_RME) {
1435 DPRINTK("RME bit present, waiting\n");
1436 rc = carm_init_wait(mmio, CARM_RME, 1);
1438 DPRINTK("EXIT, carm_init_wait 2 failed\n");
1443 tmp &= ~(CARM_RME | CARM_CME);
1444 writel(tmp, mmio + CARM_HMUC);
1445 readl(mmio + CARM_HMUC); /* flush */
1447 rc = carm_init_wait(mmio, CARM_RME | CARM_CME, 0);
1449 DPRINTK("EXIT, carm_init_wait 3 failed\n");
1453 carm_init_buckets(mmio);
1455 writel(host->shm_dma & 0xffffffff, mmio + RBUF_ADDR_LO);
1456 writel((host->shm_dma >> 16) >> 16, mmio + RBUF_ADDR_HI);
1457 writel(RBUF_LEN, mmio + RBUF_BYTE_SZ);
1459 tmp = readl(mmio + CARM_HMUC);
1460 tmp |= (CARM_RME | CARM_CME | CARM_WZBC);
1461 writel(tmp, mmio + CARM_HMUC);
1462 readl(mmio + CARM_HMUC); /* flush */
1464 rc = carm_init_wait(mmio, CARM_RME | CARM_CME, 1);
1466 DPRINTK("EXIT, carm_init_wait 4 failed\n");
1470 writel(0, mmio + CARM_HMPHA);
1471 writel(INT_DEF_MASK, mmio + CARM_INT_MASK);
1473 carm_init_responses(host);
1475 /* start initialization, probing state machine */
1476 spin_lock_irq(&host->lock);
1477 assert(host->state == HST_INVALID);
1478 host->state = HST_PROBE_START;
1479 spin_unlock_irq(&host->lock);
1480 schedule_work(&host->fsm_task);
1486 static int carm_init_disks(struct carm_host *host)
1491 for (i = 0; i < CARM_MAX_PORTS; i++) {
1492 struct gendisk *disk;
1494 struct carm_port *port;
1496 port = &host->port[i];
1500 disk = alloc_disk(CARM_MINORS_PER_MAJOR);
1507 sprintf(disk->disk_name, DRV_NAME "/%u",
1508 (unsigned int) (host->id * CARM_MAX_PORTS) + i);
1509 sprintf(disk->devfs_name, DRV_NAME "/%u_%u", host->id, i);
1510 disk->major = host->major;
1511 disk->first_minor = i * CARM_MINORS_PER_MAJOR;
1512 disk->fops = &carm_bd_ops;
1513 disk->private_data = port;
1515 q = blk_init_queue(carm_rq_fn, &host->lock);
1521 blk_queue_max_hw_segments(q, CARM_MAX_REQ_SG);
1522 blk_queue_max_phys_segments(q, CARM_MAX_REQ_SG);
1523 blk_queue_segment_boundary(q, CARM_SG_BOUNDARY);
1525 q->queuedata = port;
1531 static void carm_free_disks(struct carm_host *host)
1535 for (i = 0; i < CARM_MAX_PORTS; i++) {
1536 struct gendisk *disk = host->port[i].disk;
1538 request_queue_t *q = disk->queue;
1540 if (disk->flags & GENHD_FL_UP)
1543 blk_cleanup_queue(q);
1549 static int carm_init_shm(struct carm_host *host)
1551 host->shm = pci_alloc_consistent(host->pdev, CARM_SHM_SIZE,
1556 host->msg_base = host->shm + RBUF_LEN;
1557 host->msg_dma = host->shm_dma + RBUF_LEN;
1559 memset(host->shm, 0xff, RBUF_LEN);
1560 memset(host->msg_base, 0, PDC_SHM_SIZE - RBUF_LEN);
1565 static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1567 static unsigned int printed_version;
1568 struct carm_host *host;
1569 unsigned int pci_dac;
1574 if (!printed_version++)
1575 printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
1577 rc = pci_enable_device(pdev);
1581 rc = pci_request_regions(pdev, DRV_NAME);
1585 #if IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
1586 rc = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
1588 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
1590 printk(KERN_ERR DRV_NAME "(%s): consistent DMA mask failure\n",
1592 goto err_out_regions;
1597 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1599 printk(KERN_ERR DRV_NAME "(%s): DMA mask failure\n",
1601 goto err_out_regions;
1604 #if IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
1608 host = kmalloc(sizeof(*host), GFP_KERNEL);
1610 printk(KERN_ERR DRV_NAME "(%s): memory alloc failure\n",
1613 goto err_out_regions;
1616 memset(host, 0, sizeof(*host));
1618 host->flags = pci_dac ? FL_DAC : 0;
1619 spin_lock_init(&host->lock);
1620 INIT_WORK(&host->fsm_task, carm_fsm_task, host);
1621 init_MUTEX_LOCKED(&host->probe_sem);
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 devfs_mk_dir(DRV_NAME);
1673 rc = carm_init_disks(host);
1675 goto err_out_blkdev_disks;
1677 pci_set_master(pdev);
1679 rc = request_irq(pdev->irq, carm_interrupt, SA_SHIRQ, DRV_NAME, host);
1681 printk(KERN_ERR DRV_NAME "(%s): irq alloc failure\n",
1683 goto err_out_blkdev_disks;
1686 rc = carm_init_host(host);
1688 goto err_out_free_irq;
1690 DPRINTK("waiting for probe_sem\n");
1691 down(&host->probe_sem);
1693 printk(KERN_INFO "%s: pci %s, ports %d, io %lx, irq %u, major %d\n",
1694 host->name, pci_name(pdev), (int) CARM_MAX_PORTS,
1695 pci_resource_start(pdev, 0), pdev->irq, host->major);
1698 pci_set_drvdata(pdev, host);
1702 free_irq(pdev->irq, host);
1703 err_out_blkdev_disks:
1704 carm_free_disks(host);
1705 unregister_blkdev(host->major, host->name);
1706 err_out_free_majors:
1707 if (host->major == 160)
1708 clear_bit(0, &carm_major_alloc);
1709 else if (host->major == 161)
1710 clear_bit(1, &carm_major_alloc);
1711 blk_cleanup_queue(host->oob_q);
1713 pci_free_consistent(pdev, CARM_SHM_SIZE, host->shm, host->shm_dma);
1715 iounmap(host->mmio);
1719 pci_release_regions(pdev);
1721 pci_disable_device(pdev);
1725 static void carm_remove_one (struct pci_dev *pdev)
1727 struct carm_host *host = pci_get_drvdata(pdev);
1730 printk(KERN_ERR PFX "BUG: no host data for PCI(%s)\n",
1735 free_irq(pdev->irq, host);
1736 carm_free_disks(host);
1737 devfs_remove(DRV_NAME);
1738 unregister_blkdev(host->major, host->name);
1739 if (host->major == 160)
1740 clear_bit(0, &carm_major_alloc);
1741 else if (host->major == 161)
1742 clear_bit(1, &carm_major_alloc);
1743 blk_cleanup_queue(host->oob_q);
1744 pci_free_consistent(pdev, CARM_SHM_SIZE, host->shm, host->shm_dma);
1745 iounmap(host->mmio);
1747 pci_release_regions(pdev);
1748 pci_disable_device(pdev);
1749 pci_set_drvdata(pdev, NULL);
1752 static int __init carm_init(void)
1754 return pci_module_init(&carm_driver);
1757 static void __exit carm_exit(void)
1759 pci_unregister_driver(&carm_driver);
1762 module_init(carm_init);
1763 module_exit(carm_exit);