sx8.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:40k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /*
  2.  *  sx8.c: Driver for Promise SATA SX8 looks-like-I2O hardware
  3.  *
  4.  *  Copyright 2004 Red Hat, Inc.
  5.  *
  6.  *  Author/maintainer:  Jeff Garzik <jgarzik@pobox.com>
  7.  *
  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
  10.  *  for more details.
  11.  */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/init.h>
  15. #include <linux/pci.h>
  16. #include <linux/slab.h>
  17. #include <linux/spinlock.h>
  18. #include <linux/blkdev.h>
  19. #include <linux/sched.h>
  20. #include <linux/devfs_fs_kernel.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 <asm/io.h>
  30. #include <asm/semaphore.h>
  31. #include <asm/uaccess.h>
  32. MODULE_AUTHOR("Jeff Garzik");
  33. MODULE_LICENSE("GPL");
  34. MODULE_DESCRIPTION("Promise SATA SX8 block driver");
  35. #if 0
  36. #define CARM_DEBUG
  37. #define CARM_VERBOSE_DEBUG
  38. #else
  39. #undef CARM_DEBUG
  40. #undef CARM_VERBOSE_DEBUG
  41. #endif
  42. #undef CARM_NDEBUG
  43. #define DRV_NAME "sx8"
  44. #define DRV_VERSION "0.8"
  45. #define PFX DRV_NAME ": "
  46. #define NEXT_RESP(idx) ((idx + 1) % RMSG_Q_LEN)
  47. /* 0xf is just arbitrary, non-zero noise; this is sorta like poisoning */
  48. #define TAG_ENCODE(tag) (((tag) << 16) | 0xf)
  49. #define TAG_DECODE(tag) (((tag) >> 16) & 0x1f)
  50. #define TAG_VALID(tag) ((((tag) & 0xf) == 0xf) && (TAG_DECODE(tag) < 32))
  51. /* note: prints function name for you */
  52. #ifdef CARM_DEBUG
  53. #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
  54. #ifdef CARM_VERBOSE_DEBUG
  55. #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
  56. #else
  57. #define VPRINTK(fmt, args...)
  58. #endif /* CARM_VERBOSE_DEBUG */
  59. #else
  60. #define DPRINTK(fmt, args...)
  61. #define VPRINTK(fmt, args...)
  62. #endif /* CARM_DEBUG */
  63. #ifdef CARM_NDEBUG
  64. #define assert(expr)
  65. #else
  66. #define assert(expr) 
  67.         if(unlikely(!(expr))) {                                   
  68.         printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%dn", 
  69.         #expr,__FILE__,__FUNCTION__,__LINE__);          
  70.         }
  71. #endif
  72. /* defines only for the constants which don't work well as enums */
  73. struct carm_host;
  74. enum {
  75. /* adapter-wide limits */
  76. CARM_MAX_PORTS = 8,
  77. CARM_SHM_SIZE = (4096 << 7),
  78. CARM_MINORS_PER_MAJOR = 256 / CARM_MAX_PORTS,
  79. CARM_MAX_WAIT_Q = CARM_MAX_PORTS + 1,
  80. /* command message queue limits */
  81. CARM_MAX_REQ = 64,        /* max command msgs per host */
  82. CARM_MAX_Q = 1,    /* one command at a time */
  83. CARM_MSG_LOW_WATER = (CARM_MAX_REQ / 4),      /* refill mark */
  84. /* S/G limits, host-wide and per-request */
  85. CARM_MAX_REQ_SG = 32,      /* max s/g entries per request */
  86. CARM_SG_BOUNDARY = 0xffffUL,     /* s/g segment boundary */
  87. CARM_MAX_HOST_SG = 600, /* max s/g entries per host */
  88. CARM_SG_LOW_WATER = (CARM_MAX_HOST_SG / 4),   /* re-fill mark */
  89. /* hardware registers */
  90. CARM_IHQP = 0x1c,
  91. CARM_INT_STAT = 0x10, /* interrupt status */
  92. CARM_INT_MASK = 0x14, /* interrupt mask */
  93. CARM_HMUC = 0x18, /* host message unit control */
  94. RBUF_ADDR_LO = 0x20, /* response msg DMA buf low 32 bits */
  95. RBUF_ADDR_HI = 0x24, /* response msg DMA buf high 32 bits */
  96. RBUF_BYTE_SZ = 0x28,
  97. CARM_RESP_IDX = 0x2c,
  98. CARM_CMS0 = 0x30, /* command message size reg 0 */
  99. CARM_LMUC = 0x48,
  100. CARM_HMPHA = 0x6c,
  101. CARM_INITC = 0xb5,
  102. /* bits in CARM_INT_{STAT,MASK} */
  103. INT_RESERVED = 0xfffffff0,
  104. INT_WATCHDOG = (1 << 3), /* watchdog timer */
  105. INT_Q_OVERFLOW = (1 << 2), /* cmd msg q overflow */
  106. INT_Q_AVAILABLE = (1 << 1), /* cmd msg q has free space */
  107. INT_RESPONSE = (1 << 0), /* response msg available */
  108. INT_ACK_MASK = INT_WATCHDOG | INT_Q_OVERFLOW,
  109. INT_DEF_MASK = INT_RESERVED | INT_Q_OVERFLOW |
  110.   INT_RESPONSE,
  111. /* command messages, and related register bits */
  112. CARM_HAVE_RESP = 0x01,
  113. CARM_MSG_READ = 1,
  114. CARM_MSG_WRITE = 2,
  115. CARM_MSG_VERIFY = 3,
  116. CARM_MSG_GET_CAPACITY = 4,
  117. CARM_MSG_FLUSH = 5,
  118. CARM_MSG_IOCTL = 6,
  119. CARM_MSG_ARRAY = 8,
  120. CARM_MSG_MISC = 9,
  121. CARM_CME = (1 << 2),
  122. CARM_RME = (1 << 1),
  123. CARM_WZBC = (1 << 0),
  124. CARM_RMI = (1 << 0),
  125. CARM_Q_FULL = (1 << 3),
  126. CARM_MSG_SIZE = 288,
  127. CARM_Q_LEN = 48,
  128. /* CARM_MSG_IOCTL messages */
  129. CARM_IOC_SCAN_CHAN = 5, /* scan channels for devices */
  130. CARM_IOC_GET_TCQ = 13, /* get tcq/ncq depth */
  131. CARM_IOC_SET_TCQ = 14, /* set tcq/ncq depth */
  132. IOC_SCAN_CHAN_NODEV = 0x1f,
  133. IOC_SCAN_CHAN_OFFSET = 0x40,
  134. /* CARM_MSG_ARRAY messages */
  135. CARM_ARRAY_INFO = 0,
  136. ARRAY_NO_EXIST = (1 << 31),
  137. /* response messages */
  138. RMSG_SZ = 8, /* sizeof(struct carm_response) */
  139. RMSG_Q_LEN = 48, /* resp. msg list length */
  140. RMSG_OK = 1, /* bit indicating msg was successful */
  141. /* length of entire resp. msg buffer */
  142. RBUF_LEN = RMSG_SZ * RMSG_Q_LEN,
  143. PDC_SHM_SIZE = (4096 << 7), /* length of entire h/w buffer */
  144. /* CARM_MSG_MISC messages */
  145. MISC_GET_FW_VER = 2,
  146. MISC_ALLOC_MEM = 3,
  147. MISC_SET_TIME = 5,
  148. /* MISC_GET_FW_VER feature bits */
  149. FW_VER_4PORT = (1 << 2), /* 1=4 ports, 0=8 ports */
  150. FW_VER_NON_RAID = (1 << 1), /* 1=non-RAID firmware, 0=RAID */
  151. FW_VER_ZCR = (1 << 0), /* zero channel RAID (whatever that is) */
  152. /* carm_host flags */
  153. FL_NON_RAID = FW_VER_NON_RAID,
  154. FL_4PORT = FW_VER_4PORT,
  155. FL_FW_VER_MASK = (FW_VER_NON_RAID | FW_VER_4PORT),
  156. FL_DAC = (1 << 16),
  157. FL_DYN_MAJOR = (1 << 17),
  158. };
  159. enum scatter_gather_types {
  160. SGT_32BIT = 0,
  161. SGT_64BIT = 1,
  162. };
  163. enum host_states {
  164. HST_INVALID, /* invalid state; never used */
  165. HST_ALLOC_BUF, /* setting up master SHM area */
  166. HST_ERROR, /* we never leave here */
  167. HST_PORT_SCAN, /* start dev scan */
  168. HST_DEV_SCAN_START, /* start per-device probe */
  169. HST_DEV_SCAN, /* continue per-device probe */
  170. HST_DEV_ACTIVATE, /* activate devices we found */
  171. HST_PROBE_FINISHED, /* probe is complete */
  172. HST_PROBE_START, /* initiate probe */
  173. HST_SYNC_TIME, /* tell firmware what time it is */
  174. HST_GET_FW_VER, /* get firmware version, adapter port cnt */
  175. };
  176. #ifdef CARM_DEBUG
  177. static const char *state_name[] = {
  178. "HST_INVALID",
  179. "HST_ALLOC_BUF",
  180. "HST_ERROR",
  181. "HST_PORT_SCAN",
  182. "HST_DEV_SCAN_START",
  183. "HST_DEV_SCAN",
  184. "HST_DEV_ACTIVATE",
  185. "HST_PROBE_FINISHED",
  186. "HST_PROBE_START",
  187. "HST_SYNC_TIME",
  188. "HST_GET_FW_VER",
  189. };
  190. #endif
  191. struct carm_port {
  192. unsigned int port_no;
  193. unsigned int n_queued;
  194. struct gendisk *disk;
  195. struct carm_host *host;
  196. /* attached device characteristics */
  197. u64 capacity;
  198. char name[41];
  199. u16 dev_geom_head;
  200. u16 dev_geom_sect;
  201. u16 dev_geom_cyl;
  202. };
  203. struct carm_request {
  204. unsigned int tag;
  205. int n_elem;
  206. unsigned int msg_type;
  207. unsigned int msg_subtype;
  208. unsigned int msg_bucket;
  209. struct request *rq;
  210. struct carm_port *port;
  211. struct scatterlist sg[CARM_MAX_REQ_SG];
  212. };
  213. struct carm_host {
  214. unsigned long flags;
  215. void __iomem *mmio;
  216. void *shm;
  217. dma_addr_t shm_dma;
  218. int major;
  219. int id;
  220. char name[32];
  221. spinlock_t lock;
  222. struct pci_dev *pdev;
  223. unsigned int state;
  224. u32 fw_ver;
  225. request_queue_t *oob_q;
  226. unsigned int n_oob;
  227. unsigned int hw_sg_used;
  228. unsigned int resp_idx;
  229. unsigned int wait_q_prod;
  230. unsigned int wait_q_cons;
  231. request_queue_t *wait_q[CARM_MAX_WAIT_Q];
  232. unsigned int n_msgs;
  233. u64 msg_alloc;
  234. struct carm_request req[CARM_MAX_REQ];
  235. void *msg_base;
  236. dma_addr_t msg_dma;
  237. int cur_scan_dev;
  238. unsigned long dev_active;
  239. unsigned long dev_present;
  240. struct carm_port port[CARM_MAX_PORTS];
  241. struct work_struct fsm_task;
  242. struct semaphore probe_sem;
  243. };
  244. struct carm_response {
  245. __le32 ret_handle;
  246. __le32 status;
  247. }  __attribute__((packed));
  248. struct carm_msg_sg {
  249. __le32 start;
  250. __le32 len;
  251. }  __attribute__((packed));
  252. struct carm_msg_rw {
  253. u8 type;
  254. u8 id;
  255. u8 sg_count;
  256. u8 sg_type;
  257. __le32 handle;
  258. __le32 lba;
  259. __le16 lba_count;
  260. __le16 lba_high;
  261. struct carm_msg_sg sg[32];
  262. }  __attribute__((packed));
  263. struct carm_msg_allocbuf {
  264. u8 type;
  265. u8 subtype;
  266. u8 n_sg;
  267. u8 sg_type;
  268. __le32 handle;
  269. __le32 addr;
  270. __le32 len;
  271. __le32 evt_pool;
  272. __le32 n_evt;
  273. __le32 rbuf_pool;
  274. __le32 n_rbuf;
  275. __le32 msg_pool;
  276. __le32 n_msg;
  277. struct carm_msg_sg sg[8];
  278. }  __attribute__((packed));
  279. struct carm_msg_ioctl {
  280. u8 type;
  281. u8 subtype;
  282. u8 array_id;
  283. u8 reserved1;
  284. __le32 handle;
  285. __le32 data_addr;
  286. u32 reserved2;
  287. }  __attribute__((packed));
  288. struct carm_msg_sync_time {
  289. u8 type;
  290. u8 subtype;
  291. u16 reserved1;
  292. __le32 handle;
  293. u32 reserved2;
  294. __le32 timestamp;
  295. }  __attribute__((packed));
  296. struct carm_msg_get_fw_ver {
  297. u8 type;
  298. u8 subtype;
  299. u16 reserved1;
  300. __le32 handle;
  301. __le32 data_addr;
  302. u32 reserved2;
  303. }  __attribute__((packed));
  304. struct carm_fw_ver {
  305. __le32 version;
  306. u8 features;
  307. u8 reserved1;
  308. u16 reserved2;
  309. }  __attribute__((packed));
  310. struct carm_array_info {
  311. __le32 size;
  312. __le16 size_hi;
  313. __le16 stripe_size;
  314. __le32 mode;
  315. __le16 stripe_blk_sz;
  316. __le16 reserved1;
  317. __le16 cyl;
  318. __le16 head;
  319. __le16 sect;
  320. u8 array_id;
  321. u8 reserved2;
  322. char name[40];
  323. __le32 array_status;
  324. /* device list continues beyond this point? */
  325. }  __attribute__((packed));
  326. static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
  327. static void carm_remove_one (struct pci_dev *pdev);
  328. static int carm_bdev_ioctl(struct inode *ino, struct file *fil,
  329.    unsigned int cmd, unsigned long arg);
  330. static struct pci_device_id carm_pci_tbl[] = {
  331. { PCI_VENDOR_ID_PROMISE, 0x8000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, },
  332. { PCI_VENDOR_ID_PROMISE, 0x8002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, },
  333. { } /* terminate list */
  334. };
  335. MODULE_DEVICE_TABLE(pci, carm_pci_tbl);
  336. static struct pci_driver carm_driver = {
  337. .name = DRV_NAME,
  338. .id_table = carm_pci_tbl,
  339. .probe = carm_init_one,
  340. .remove = carm_remove_one,
  341. };
  342. static struct block_device_operations carm_bd_ops = {
  343. .owner = THIS_MODULE,
  344. .ioctl = carm_bdev_ioctl,
  345. };
  346. static unsigned int carm_host_id;
  347. static unsigned long carm_major_alloc;
  348. static int carm_bdev_ioctl(struct inode *ino, struct file *fil,
  349.    unsigned int cmd, unsigned long arg)
  350. {
  351. void __user *usermem = (void __user *) arg;
  352. struct carm_port *port = ino->i_bdev->bd_disk->private_data;
  353. struct hd_geometry geom;
  354. switch (cmd) {
  355. case HDIO_GETGEO:
  356. if (!usermem)
  357. return -EINVAL;
  358. geom.heads = (u8) port->dev_geom_head;
  359. geom.sectors = (u8) port->dev_geom_sect;
  360. geom.cylinders = port->dev_geom_cyl;
  361. geom.start = get_start_sect(ino->i_bdev);
  362. if (copy_to_user(usermem, &geom, sizeof(geom)))
  363. return -EFAULT;
  364. return 0;
  365. default:
  366. break;
  367. }
  368. return -EOPNOTSUPP;
  369. }
  370. static const u32 msg_sizes[] = { 32, 64, 128, CARM_MSG_SIZE };
  371. static inline int carm_lookup_bucket(u32 msg_size)
  372. {
  373. int i;
  374. for (i = 0; i < ARRAY_SIZE(msg_sizes); i++)
  375. if (msg_size <= msg_sizes[i])
  376. return i;
  377. return -ENOENT;
  378. }
  379. static void carm_init_buckets(void __iomem *mmio)
  380. {
  381. unsigned int i;
  382. for (i = 0; i < ARRAY_SIZE(msg_sizes); i++)
  383. writel(msg_sizes[i], mmio + CARM_CMS0 + (4 * i));
  384. }
  385. static inline void *carm_ref_msg(struct carm_host *host,
  386.  unsigned int msg_idx)
  387. {
  388. return host->msg_base + (msg_idx * CARM_MSG_SIZE);
  389. }
  390. static inline dma_addr_t carm_ref_msg_dma(struct carm_host *host,
  391.   unsigned int msg_idx)
  392. {
  393. return host->msg_dma + (msg_idx * CARM_MSG_SIZE);
  394. }
  395. static int carm_send_msg(struct carm_host *host,
  396.  struct carm_request *crq)
  397. {
  398. void __iomem *mmio = host->mmio;
  399. u32 msg = (u32) carm_ref_msg_dma(host, crq->tag);
  400. u32 cm_bucket = crq->msg_bucket;
  401. u32 tmp;
  402. int rc = 0;
  403. VPRINTK("ENTERn");
  404. tmp = readl(mmio + CARM_HMUC);
  405. if (tmp & CARM_Q_FULL) {
  406. #if 0
  407. tmp = readl(mmio + CARM_INT_MASK);
  408. tmp |= INT_Q_AVAILABLE;
  409. writel(tmp, mmio + CARM_INT_MASK);
  410. readl(mmio + CARM_INT_MASK); /* flush */
  411. #endif
  412. DPRINTK("host msg queue fulln");
  413. rc = -EBUSY;
  414. } else {
  415. writel(msg | (cm_bucket << 1), mmio + CARM_IHQP);
  416. readl(mmio + CARM_IHQP); /* flush */
  417. }
  418. return rc;
  419. }
  420. static struct carm_request *carm_get_request(struct carm_host *host)
  421. {
  422. unsigned int i;
  423. /* obey global hardware limit on S/G entries */
  424. if (host->hw_sg_used >= (CARM_MAX_HOST_SG - CARM_MAX_REQ_SG))
  425. return NULL;
  426. for (i = 0; i < CARM_MAX_Q; i++)
  427. if ((host->msg_alloc & (1ULL << i)) == 0) {
  428. struct carm_request *crq = &host->req[i];
  429. crq->port = NULL;
  430. crq->n_elem = 0;
  431. host->msg_alloc |= (1ULL << i);
  432. host->n_msgs++;
  433. assert(host->n_msgs <= CARM_MAX_REQ);
  434. return crq;
  435. }
  436. DPRINTK("no request available, returning NULLn");
  437. return NULL;
  438. }
  439. static int carm_put_request(struct carm_host *host, struct carm_request *crq)
  440. {
  441. assert(crq->tag < CARM_MAX_Q);
  442. if (unlikely((host->msg_alloc & (1ULL << crq->tag)) == 0))
  443. return -EINVAL; /* tried to clear a tag that was not active */
  444. assert(host->hw_sg_used >= crq->n_elem);
  445. host->msg_alloc &= ~(1ULL << crq->tag);
  446. host->hw_sg_used -= crq->n_elem;
  447. host->n_msgs--;
  448. return 0;
  449. }
  450. static struct carm_request *carm_get_special(struct carm_host *host)
  451. {
  452. unsigned long flags;
  453. struct carm_request *crq = NULL;
  454. struct request *rq;
  455. int tries = 5000;
  456. while (tries-- > 0) {
  457. spin_lock_irqsave(&host->lock, flags);
  458. crq = carm_get_request(host);
  459. spin_unlock_irqrestore(&host->lock, flags);
  460. if (crq)
  461. break;
  462. msleep(10);
  463. }
  464. if (!crq)
  465. return NULL;
  466. rq = blk_get_request(host->oob_q, WRITE /* bogus */, GFP_KERNEL);
  467. if (!rq) {
  468. spin_lock_irqsave(&host->lock, flags);
  469. carm_put_request(host, crq);
  470. spin_unlock_irqrestore(&host->lock, flags);
  471. return NULL;
  472. }
  473. crq->rq = rq;
  474. return crq;
  475. }
  476. static int carm_array_info (struct carm_host *host, unsigned int array_idx)
  477. {
  478. struct carm_msg_ioctl *ioc;
  479. unsigned int idx;
  480. u32 msg_data;
  481. dma_addr_t msg_dma;
  482. struct carm_request *crq;
  483. int rc;
  484. crq = carm_get_special(host);
  485. if (!crq) {
  486. rc = -ENOMEM;
  487. goto err_out;
  488. }
  489. idx = crq->tag;
  490. ioc = carm_ref_msg(host, idx);
  491. msg_dma = carm_ref_msg_dma(host, idx);
  492. msg_data = (u32) (msg_dma + sizeof(struct carm_array_info));
  493. crq->msg_type = CARM_MSG_ARRAY;
  494. crq->msg_subtype = CARM_ARRAY_INFO;
  495. rc = carm_lookup_bucket(sizeof(struct carm_msg_ioctl) +
  496. sizeof(struct carm_array_info));
  497. BUG_ON(rc < 0);
  498. crq->msg_bucket = (u32) rc;
  499. memset(ioc, 0, sizeof(*ioc));
  500. ioc->type = CARM_MSG_ARRAY;
  501. ioc->subtype = CARM_ARRAY_INFO;
  502. ioc->array_id = (u8) array_idx;
  503. ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
  504. ioc->data_addr = cpu_to_le32(msg_data);
  505. spin_lock_irq(&host->lock);
  506. assert(host->state == HST_DEV_SCAN_START ||
  507.        host->state == HST_DEV_SCAN);
  508. spin_unlock_irq(&host->lock);
  509. DPRINTK("blk_insert_request, tag == %un", idx);
  510. blk_insert_request(host->oob_q, crq->rq, 1, crq);
  511. return 0;
  512. err_out:
  513. spin_lock_irq(&host->lock);
  514. host->state = HST_ERROR;
  515. spin_unlock_irq(&host->lock);
  516. return rc;
  517. }
  518. typedef unsigned int (*carm_sspc_t)(struct carm_host *, unsigned int, void *);
  519. static int carm_send_special (struct carm_host *host, carm_sspc_t func)
  520. {
  521. struct carm_request *crq;
  522. struct carm_msg_ioctl *ioc;
  523. void *mem;
  524. unsigned int idx, msg_size;
  525. int rc;
  526. crq = carm_get_special(host);
  527. if (!crq)
  528. return -ENOMEM;
  529. idx = crq->tag;
  530. mem = carm_ref_msg(host, idx);
  531. msg_size = func(host, idx, mem);
  532. ioc = mem;
  533. crq->msg_type = ioc->type;
  534. crq->msg_subtype = ioc->subtype;
  535. rc = carm_lookup_bucket(msg_size);
  536. BUG_ON(rc < 0);
  537. crq->msg_bucket = (u32) rc;
  538. DPRINTK("blk_insert_request, tag == %un", idx);
  539. blk_insert_request(host->oob_q, crq->rq, 1, crq);
  540. return 0;
  541. }
  542. static unsigned int carm_fill_sync_time(struct carm_host *host,
  543. unsigned int idx, void *mem)
  544. {
  545. struct timeval tv;
  546. struct carm_msg_sync_time *st = mem;
  547. do_gettimeofday(&tv);
  548. memset(st, 0, sizeof(*st));
  549. st->type = CARM_MSG_MISC;
  550. st->subtype = MISC_SET_TIME;
  551. st->handle = cpu_to_le32(TAG_ENCODE(idx));
  552. st->timestamp = cpu_to_le32(tv.tv_sec);
  553. return sizeof(struct carm_msg_sync_time);
  554. }
  555. static unsigned int carm_fill_alloc_buf(struct carm_host *host,
  556. unsigned int idx, void *mem)
  557. {
  558. struct carm_msg_allocbuf *ab = mem;
  559. memset(ab, 0, sizeof(*ab));
  560. ab->type = CARM_MSG_MISC;
  561. ab->subtype = MISC_ALLOC_MEM;
  562. ab->handle = cpu_to_le32(TAG_ENCODE(idx));
  563. ab->n_sg = 1;
  564. ab->sg_type = SGT_32BIT;
  565. ab->addr = cpu_to_le32(host->shm_dma + (PDC_SHM_SIZE >> 1));
  566. ab->len = cpu_to_le32(PDC_SHM_SIZE >> 1);
  567. ab->evt_pool = cpu_to_le32(host->shm_dma + (16 * 1024));
  568. ab->n_evt = cpu_to_le32(1024);
  569. ab->rbuf_pool = cpu_to_le32(host->shm_dma);
  570. ab->n_rbuf = cpu_to_le32(RMSG_Q_LEN);
  571. ab->msg_pool = cpu_to_le32(host->shm_dma + RBUF_LEN);
  572. ab->n_msg = cpu_to_le32(CARM_Q_LEN);
  573. ab->sg[0].start = cpu_to_le32(host->shm_dma + (PDC_SHM_SIZE >> 1));
  574. ab->sg[0].len = cpu_to_le32(65536);
  575. return sizeof(struct carm_msg_allocbuf);
  576. }
  577. static unsigned int carm_fill_scan_channels(struct carm_host *host,
  578.     unsigned int idx, void *mem)
  579. {
  580. struct carm_msg_ioctl *ioc = mem;
  581. u32 msg_data = (u32) (carm_ref_msg_dma(host, idx) +
  582.       IOC_SCAN_CHAN_OFFSET);
  583. memset(ioc, 0, sizeof(*ioc));
  584. ioc->type = CARM_MSG_IOCTL;
  585. ioc->subtype = CARM_IOC_SCAN_CHAN;
  586. ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
  587. ioc->data_addr = cpu_to_le32(msg_data);
  588. /* fill output data area with "no device" default values */
  589. mem += IOC_SCAN_CHAN_OFFSET;
  590. memset(mem, IOC_SCAN_CHAN_NODEV, CARM_MAX_PORTS);
  591. return IOC_SCAN_CHAN_OFFSET + CARM_MAX_PORTS;
  592. }
  593. static unsigned int carm_fill_get_fw_ver(struct carm_host *host,
  594.  unsigned int idx, void *mem)
  595. {
  596. struct carm_msg_get_fw_ver *ioc = mem;
  597. u32 msg_data = (u32) (carm_ref_msg_dma(host, idx) + sizeof(*ioc));
  598. memset(ioc, 0, sizeof(*ioc));
  599. ioc->type = CARM_MSG_MISC;
  600. ioc->subtype = MISC_GET_FW_VER;
  601. ioc->handle = cpu_to_le32(TAG_ENCODE(idx));
  602. ioc->data_addr = cpu_to_le32(msg_data);
  603. return sizeof(struct carm_msg_get_fw_ver) +
  604.        sizeof(struct carm_fw_ver);
  605. }
  606. static inline void carm_end_request_queued(struct carm_host *host,
  607.    struct carm_request *crq,
  608.    int uptodate)
  609. {
  610. struct request *req = crq->rq;
  611. int rc;
  612. rc = end_that_request_first(req, uptodate, req->hard_nr_sectors);
  613. assert(rc == 0);
  614. end_that_request_last(req);
  615. rc = carm_put_request(host, crq);
  616. assert(rc == 0);
  617. }
  618. static inline void carm_push_q (struct carm_host *host, request_queue_t *q)
  619. {
  620. unsigned int idx = host->wait_q_prod % CARM_MAX_WAIT_Q;
  621. blk_stop_queue(q);
  622. VPRINTK("STOPPED QUEUE %pn", q);
  623. host->wait_q[idx] = q;
  624. host->wait_q_prod++;
  625. BUG_ON(host->wait_q_prod == host->wait_q_cons); /* overrun */
  626. }
  627. static inline request_queue_t *carm_pop_q(struct carm_host *host)
  628. {
  629. unsigned int idx;
  630. if (host->wait_q_prod == host->wait_q_cons)
  631. return NULL;
  632. idx = host->wait_q_cons % CARM_MAX_WAIT_Q;
  633. host->wait_q_cons++;
  634. return host->wait_q[idx];
  635. }
  636. static inline void carm_round_robin(struct carm_host *host)
  637. {
  638. request_queue_t *q = carm_pop_q(host);
  639. if (q) {
  640. blk_start_queue(q);
  641. VPRINTK("STARTED QUEUE %pn", q);
  642. }
  643. }
  644. static inline void carm_end_rq(struct carm_host *host, struct carm_request *crq,
  645. int is_ok)
  646. {
  647. carm_end_request_queued(host, crq, is_ok);
  648. if (CARM_MAX_Q == 1)
  649. carm_round_robin(host);
  650. else if ((host->n_msgs <= CARM_MSG_LOW_WATER) &&
  651.  (host->hw_sg_used <= CARM_SG_LOW_WATER)) {
  652. carm_round_robin(host);
  653. }
  654. }
  655. static void carm_oob_rq_fn(request_queue_t *q)
  656. {
  657. struct carm_host *host = q->queuedata;
  658. struct carm_request *crq;
  659. struct request *rq;
  660. int rc;
  661. while (1) {
  662. DPRINTK("get reqn");
  663. rq = elv_next_request(q);
  664. if (!rq)
  665. break;
  666. blkdev_dequeue_request(rq);
  667. crq = rq->special;
  668. assert(crq != NULL);
  669. assert(crq->rq == rq);
  670. crq->n_elem = 0;
  671. DPRINTK("send reqn");
  672. rc = carm_send_msg(host, crq);
  673. if (rc) {
  674. blk_requeue_request(q, rq);
  675. carm_push_q(host, q);
  676. return; /* call us again later, eventually */
  677. }
  678. }
  679. }
  680. static void carm_rq_fn(request_queue_t *q)
  681. {
  682. struct carm_port *port = q->queuedata;
  683. struct carm_host *host = port->host;
  684. struct carm_msg_rw *msg;
  685. struct carm_request *crq;
  686. struct request *rq;
  687. struct scatterlist *sg;
  688. int writing = 0, pci_dir, i, n_elem, rc;
  689. u32 tmp;
  690. unsigned int msg_size;
  691. queue_one_request:
  692. VPRINTK("get reqn");
  693. rq = elv_next_request(q);
  694. if (!rq)
  695. return;
  696. crq = carm_get_request(host);
  697. if (!crq) {
  698. carm_push_q(host, q);
  699. return; /* call us again later, eventually */
  700. }
  701. crq->rq = rq;
  702. blkdev_dequeue_request(rq);
  703. if (rq_data_dir(rq) == WRITE) {
  704. writing = 1;
  705. pci_dir = PCI_DMA_TODEVICE;
  706. } else {
  707. pci_dir = PCI_DMA_FROMDEVICE;
  708. }
  709. /* get scatterlist from block layer */
  710. sg = &crq->sg[0];
  711. n_elem = blk_rq_map_sg(q, rq, sg);
  712. if (n_elem <= 0) {
  713. carm_end_rq(host, crq, 0);
  714. return; /* request with no s/g entries? */
  715. }
  716. /* map scatterlist to PCI bus addresses */
  717. n_elem = pci_map_sg(host->pdev, sg, n_elem, pci_dir);
  718. if (n_elem <= 0) {
  719. carm_end_rq(host, crq, 0);
  720. return; /* request with no s/g entries? */
  721. }
  722. crq->n_elem = n_elem;
  723. crq->port = port;
  724. host->hw_sg_used += n_elem;
  725. /*
  726.  * build read/write message
  727.  */
  728. VPRINTK("build msgn");
  729. msg = (struct carm_msg_rw *) carm_ref_msg(host, crq->tag);
  730. if (writing) {
  731. msg->type = CARM_MSG_WRITE;
  732. crq->msg_type = CARM_MSG_WRITE;
  733. } else {
  734. msg->type = CARM_MSG_READ;
  735. crq->msg_type = CARM_MSG_READ;
  736. }
  737. msg->id = port->port_no;
  738. msg->sg_count = n_elem;
  739. msg->sg_type = SGT_32BIT;
  740. msg->handle = cpu_to_le32(TAG_ENCODE(crq->tag));
  741. msg->lba = cpu_to_le32(rq->sector & 0xffffffff);
  742. tmp = (rq->sector >> 16) >> 16;
  743. msg->lba_high = cpu_to_le16( (u16) tmp );
  744. msg->lba_count = cpu_to_le16(rq->nr_sectors);
  745. msg_size = sizeof(struct carm_msg_rw) - sizeof(msg->sg);
  746. for (i = 0; i < n_elem; i++) {
  747. struct carm_msg_sg *carm_sg = &msg->sg[i];
  748. carm_sg->start = cpu_to_le32(sg_dma_address(&crq->sg[i]));
  749. carm_sg->len = cpu_to_le32(sg_dma_len(&crq->sg[i]));
  750. msg_size += sizeof(struct carm_msg_sg);
  751. }
  752. rc = carm_lookup_bucket(msg_size);
  753. BUG_ON(rc < 0);
  754. crq->msg_bucket = (u32) rc;
  755. /*
  756.  * queue read/write message to hardware
  757.  */
  758. VPRINTK("send msg, tag == %un", crq->tag);
  759. rc = carm_send_msg(host, crq);
  760. if (rc) {
  761. carm_put_request(host, crq);
  762. blk_requeue_request(q, rq);
  763. carm_push_q(host, q);
  764. return; /* call us again later, eventually */
  765. }
  766. goto queue_one_request;
  767. }
  768. static void carm_handle_array_info(struct carm_host *host,
  769.    struct carm_request *crq, u8 *mem,
  770.    int is_ok)
  771. {
  772. struct carm_port *port;
  773. u8 *msg_data = mem + sizeof(struct carm_array_info);
  774. struct carm_array_info *desc = (struct carm_array_info *) msg_data;
  775. u64 lo, hi;
  776. int cur_port;
  777. size_t slen;
  778. DPRINTK("ENTERn");
  779. carm_end_rq(host, crq, is_ok);
  780. if (!is_ok)
  781. goto out;
  782. if (le32_to_cpu(desc->array_status) & ARRAY_NO_EXIST)
  783. goto out;
  784. cur_port = host->cur_scan_dev;
  785. /* should never occur */
  786. if ((cur_port < 0) || (cur_port >= CARM_MAX_PORTS)) {
  787. printk(KERN_ERR PFX "BUG: cur_scan_dev==%d, array_id==%dn",
  788.        cur_port, (int) desc->array_id);
  789. goto out;
  790. }
  791. port = &host->port[cur_port];
  792. lo = (u64) le32_to_cpu(desc->size);
  793. hi = (u64) le16_to_cpu(desc->size_hi);
  794. port->capacity = lo | (hi << 32);
  795. port->dev_geom_head = le16_to_cpu(desc->head);
  796. port->dev_geom_sect = le16_to_cpu(desc->sect);
  797. port->dev_geom_cyl = le16_to_cpu(desc->cyl);
  798. host->dev_active |= (1 << cur_port);
  799. strncpy(port->name, desc->name, sizeof(port->name));
  800. port->name[sizeof(port->name) - 1] = 0;
  801. slen = strlen(port->name);
  802. while (slen && (port->name[slen - 1] == ' ')) {
  803. port->name[slen - 1] = 0;
  804. slen--;
  805. }
  806. printk(KERN_INFO DRV_NAME "(%s): port %u device %Lu sectorsn",
  807.        pci_name(host->pdev), port->port_no,
  808.        (unsigned long long) port->capacity);
  809. printk(KERN_INFO DRV_NAME "(%s): port %u device "%s"n",
  810.        pci_name(host->pdev), port->port_no, port->name);
  811. out:
  812. assert(host->state == HST_DEV_SCAN);
  813. schedule_work(&host->fsm_task);
  814. }
  815. static void carm_handle_scan_chan(struct carm_host *host,
  816.   struct carm_request *crq, u8 *mem,
  817.   int is_ok)
  818. {
  819. u8 *msg_data = mem + IOC_SCAN_CHAN_OFFSET;
  820. unsigned int i, dev_count = 0;
  821. int new_state = HST_DEV_SCAN_START;
  822. DPRINTK("ENTERn");
  823. carm_end_rq(host, crq, is_ok);
  824. if (!is_ok) {
  825. new_state = HST_ERROR;
  826. goto out;
  827. }
  828. /* TODO: scan and support non-disk devices */
  829. for (i = 0; i < 8; i++)
  830. if (msg_data[i] == 0) { /* direct-access device (disk) */
  831. host->dev_present |= (1 << i);
  832. dev_count++;
  833. }
  834. printk(KERN_INFO DRV_NAME "(%s): found %u interesting devicesn",
  835.        pci_name(host->pdev), dev_count);
  836. out:
  837. assert(host->state == HST_PORT_SCAN);
  838. host->state = new_state;
  839. schedule_work(&host->fsm_task);
  840. }
  841. static void carm_handle_generic(struct carm_host *host,
  842. struct carm_request *crq, int is_ok,
  843. int cur_state, int next_state)
  844. {
  845. DPRINTK("ENTERn");
  846. carm_end_rq(host, crq, is_ok);
  847. assert(host->state == cur_state);
  848. if (is_ok)
  849. host->state = next_state;
  850. else
  851. host->state = HST_ERROR;
  852. schedule_work(&host->fsm_task);
  853. }
  854. static inline void carm_handle_rw(struct carm_host *host,
  855.   struct carm_request *crq, int is_ok)
  856. {
  857. int pci_dir;
  858. VPRINTK("ENTERn");
  859. if (rq_data_dir(crq->rq) == WRITE)
  860. pci_dir = PCI_DMA_TODEVICE;
  861. else
  862. pci_dir = PCI_DMA_FROMDEVICE;
  863. pci_unmap_sg(host->pdev, &crq->sg[0], crq->n_elem, pci_dir);
  864. carm_end_rq(host, crq, is_ok);
  865. }
  866. static inline void carm_handle_resp(struct carm_host *host,
  867.     __le32 ret_handle_le, u32 status)
  868. {
  869. u32 handle = le32_to_cpu(ret_handle_le);
  870. unsigned int msg_idx;
  871. struct carm_request *crq;
  872. int is_ok = (status == RMSG_OK);
  873. u8 *mem;
  874. VPRINTK("ENTER, handle == 0x%xn", handle);
  875. if (unlikely(!TAG_VALID(handle))) {
  876. printk(KERN_ERR DRV_NAME "(%s): BUG: invalid tag 0x%xn",
  877.        pci_name(host->pdev), handle);
  878. return;
  879. }
  880. msg_idx = TAG_DECODE(handle);
  881. VPRINTK("tag == %un", msg_idx);
  882. crq = &host->req[msg_idx];
  883. /* fast path */
  884. if (likely(crq->msg_type == CARM_MSG_READ ||
  885.    crq->msg_type == CARM_MSG_WRITE)) {
  886. carm_handle_rw(host, crq, is_ok);
  887. return;
  888. }
  889. mem = carm_ref_msg(host, msg_idx);
  890. switch (crq->msg_type) {
  891. case CARM_MSG_IOCTL: {
  892. switch (crq->msg_subtype) {
  893. case CARM_IOC_SCAN_CHAN:
  894. carm_handle_scan_chan(host, crq, mem, is_ok);
  895. break;
  896. default:
  897. /* unknown / invalid response */
  898. goto err_out;
  899. }
  900. break;
  901. }
  902. case CARM_MSG_MISC: {
  903. switch (crq->msg_subtype) {
  904. case MISC_ALLOC_MEM:
  905. carm_handle_generic(host, crq, is_ok,
  906.     HST_ALLOC_BUF, HST_SYNC_TIME);
  907. break;
  908. case MISC_SET_TIME:
  909. carm_handle_generic(host, crq, is_ok,
  910.     HST_SYNC_TIME, HST_GET_FW_VER);
  911. break;
  912. case MISC_GET_FW_VER: {
  913. struct carm_fw_ver *ver = (struct carm_fw_ver *)
  914. mem + sizeof(struct carm_msg_get_fw_ver);
  915. if (is_ok) {
  916. host->fw_ver = le32_to_cpu(ver->version);
  917. host->flags |= (ver->features & FL_FW_VER_MASK);
  918. }
  919. carm_handle_generic(host, crq, is_ok,
  920.     HST_GET_FW_VER, HST_PORT_SCAN);
  921. break;
  922. }
  923. default:
  924. /* unknown / invalid response */
  925. goto err_out;
  926. }
  927. break;
  928. }
  929. case CARM_MSG_ARRAY: {
  930. switch (crq->msg_subtype) {
  931. case CARM_ARRAY_INFO:
  932. carm_handle_array_info(host, crq, mem, is_ok);
  933. break;
  934. default:
  935. /* unknown / invalid response */
  936. goto err_out;
  937. }
  938. break;
  939. }
  940. default:
  941. /* unknown / invalid response */
  942. goto err_out;
  943. }
  944. return;
  945. err_out:
  946. printk(KERN_WARNING DRV_NAME "(%s): BUG: unhandled message type %d/%dn",
  947.        pci_name(host->pdev), crq->msg_type, crq->msg_subtype);
  948. carm_end_rq(host, crq, 0);
  949. }
  950. static inline void carm_handle_responses(struct carm_host *host)
  951. {
  952. void __iomem *mmio = host->mmio;
  953. struct carm_response *resp = (struct carm_response *) host->shm;
  954. unsigned int work = 0;
  955. unsigned int idx = host->resp_idx % RMSG_Q_LEN;
  956. while (1) {
  957. u32 status = le32_to_cpu(resp[idx].status);
  958. if (status == 0xffffffff) {
  959. VPRINTK("ending response on index %un", idx);
  960. writel(idx << 3, mmio + CARM_RESP_IDX);
  961. break;
  962. }
  963. /* response to a message we sent */
  964. else if ((status & (1 << 31)) == 0) {
  965. VPRINTK("handling msg response on index %un", idx);
  966. carm_handle_resp(host, resp[idx].ret_handle, status);
  967. resp[idx].status = cpu_to_le32(0xffffffff);
  968. }
  969. /* asynchronous events the hardware throws our way */
  970. else if ((status & 0xff000000) == (1 << 31)) {
  971. u8 *evt_type_ptr = (u8 *) &resp[idx];
  972. u8 evt_type = *evt_type_ptr;
  973. printk(KERN_WARNING DRV_NAME "(%s): unhandled event type %dn",
  974.        pci_name(host->pdev), (int) evt_type);
  975. resp[idx].status = cpu_to_le32(0xffffffff);
  976. }
  977. idx = NEXT_RESP(idx);
  978. work++;
  979. }
  980. VPRINTK("EXIT, work==%un", work);
  981. host->resp_idx += work;
  982. }
  983. static irqreturn_t carm_interrupt(int irq, void *__host, struct pt_regs *regs)
  984. {
  985. struct carm_host *host = __host;
  986. void __iomem *mmio;
  987. u32 mask;
  988. int handled = 0;
  989. unsigned long flags;
  990. if (!host) {
  991. VPRINTK("no hostn");
  992. return IRQ_NONE;
  993. }
  994. spin_lock_irqsave(&host->lock, flags);
  995. mmio = host->mmio;
  996. /* reading should also clear interrupts */
  997. mask = readl(mmio + CARM_INT_STAT);
  998. if (mask == 0 || mask == 0xffffffff) {
  999. VPRINTK("no work, mask == 0x%xn", mask);
  1000. goto out;
  1001. }
  1002. if (mask & INT_ACK_MASK)
  1003. writel(mask, mmio + CARM_INT_STAT);
  1004. if (unlikely(host->state == HST_INVALID)) {
  1005. VPRINTK("not initialized yet, mask = 0x%xn", mask);
  1006. goto out;
  1007. }
  1008. if (mask & CARM_HAVE_RESP) {
  1009. handled = 1;
  1010. carm_handle_responses(host);
  1011. }
  1012. out:
  1013. spin_unlock_irqrestore(&host->lock, flags);
  1014. VPRINTK("EXITn");
  1015. return IRQ_RETVAL(handled);
  1016. }
  1017. static void carm_fsm_task (void *_data)
  1018. {
  1019. struct carm_host *host = _data;
  1020. unsigned long flags;
  1021. unsigned int state;
  1022. int rc, i, next_dev;
  1023. int reschedule = 0;
  1024. int new_state = HST_INVALID;
  1025. spin_lock_irqsave(&host->lock, flags);
  1026. state = host->state;
  1027. spin_unlock_irqrestore(&host->lock, flags);
  1028. DPRINTK("ENTER, state == %sn", state_name[state]);
  1029. switch (state) {
  1030. case HST_PROBE_START:
  1031. new_state = HST_ALLOC_BUF;
  1032. reschedule = 1;
  1033. break;
  1034. case HST_ALLOC_BUF:
  1035. rc = carm_send_special(host, carm_fill_alloc_buf);
  1036. if (rc) {
  1037. new_state = HST_ERROR;
  1038. reschedule = 1;
  1039. }
  1040. break;
  1041. case HST_SYNC_TIME:
  1042. rc = carm_send_special(host, carm_fill_sync_time);
  1043. if (rc) {
  1044. new_state = HST_ERROR;
  1045. reschedule = 1;
  1046. }
  1047. break;
  1048. case HST_GET_FW_VER:
  1049. rc = carm_send_special(host, carm_fill_get_fw_ver);
  1050. if (rc) {
  1051. new_state = HST_ERROR;
  1052. reschedule = 1;
  1053. }
  1054. break;
  1055. case HST_PORT_SCAN:
  1056. rc = carm_send_special(host, carm_fill_scan_channels);
  1057. if (rc) {
  1058. new_state = HST_ERROR;
  1059. reschedule = 1;
  1060. }
  1061. break;
  1062. case HST_DEV_SCAN_START:
  1063. host->cur_scan_dev = -1;
  1064. new_state = HST_DEV_SCAN;
  1065. reschedule = 1;
  1066. break;
  1067. case HST_DEV_SCAN:
  1068. next_dev = -1;
  1069. for (i = host->cur_scan_dev + 1; i < CARM_MAX_PORTS; i++)
  1070. if (host->dev_present & (1 << i)) {
  1071. next_dev = i;
  1072. break;
  1073. }
  1074. if (next_dev >= 0) {
  1075. host->cur_scan_dev = next_dev;
  1076. rc = carm_array_info(host, next_dev);
  1077. if (rc) {
  1078. new_state = HST_ERROR;
  1079. reschedule = 1;
  1080. }
  1081. } else {
  1082. new_state = HST_DEV_ACTIVATE;
  1083. reschedule = 1;
  1084. }
  1085. break;
  1086. case HST_DEV_ACTIVATE: {
  1087. int activated = 0;
  1088. for (i = 0; i < CARM_MAX_PORTS; i++)
  1089. if (host->dev_active & (1 << i)) {
  1090. struct carm_port *port = &host->port[i];
  1091. struct gendisk *disk = port->disk;
  1092. set_capacity(disk, port->capacity);
  1093. add_disk(disk);
  1094. activated++;
  1095. }
  1096. printk(KERN_INFO DRV_NAME "(%s): %d ports activatedn",
  1097.        pci_name(host->pdev), activated);
  1098. new_state = HST_PROBE_FINISHED;
  1099. reschedule = 1;
  1100. break;
  1101. }
  1102. case HST_PROBE_FINISHED:
  1103. up(&host->probe_sem);
  1104. break;
  1105. case HST_ERROR:
  1106. /* FIXME: TODO */
  1107. break;
  1108. default:
  1109. /* should never occur */
  1110. printk(KERN_ERR PFX "BUG: unknown state %dn", state);
  1111. assert(0);
  1112. break;
  1113. }
  1114. if (new_state != HST_INVALID) {
  1115. spin_lock_irqsave(&host->lock, flags);
  1116. host->state = new_state;
  1117. spin_unlock_irqrestore(&host->lock, flags);
  1118. }
  1119. if (reschedule)
  1120. schedule_work(&host->fsm_task);
  1121. }
  1122. static int carm_init_wait(void __iomem *mmio, u32 bits, unsigned int test_bit)
  1123. {
  1124. unsigned int i;
  1125. for (i = 0; i < 50000; i++) {
  1126. u32 tmp = readl(mmio + CARM_LMUC);
  1127. udelay(100);
  1128. if (test_bit) {
  1129. if ((tmp & bits) == bits)
  1130. return 0;
  1131. } else {
  1132. if ((tmp & bits) == 0)
  1133. return 0;
  1134. }
  1135. cond_resched();
  1136. }
  1137. printk(KERN_ERR PFX "carm_init_wait timeout, bits == 0x%x, test_bit == %sn",
  1138.        bits, test_bit ? "yes" : "no");
  1139. return -EBUSY;
  1140. }
  1141. static void carm_init_responses(struct carm_host *host)
  1142. {
  1143. void __iomem *mmio = host->mmio;
  1144. unsigned int i;
  1145. struct carm_response *resp = (struct carm_response *) host->shm;
  1146. for (i = 0; i < RMSG_Q_LEN; i++)
  1147. resp[i].status = cpu_to_le32(0xffffffff);
  1148. writel(0, mmio + CARM_RESP_IDX);
  1149. }
  1150. static int carm_init_host(struct carm_host *host)
  1151. {
  1152. void __iomem *mmio = host->mmio;
  1153. u32 tmp;
  1154. u8 tmp8;
  1155. int rc;
  1156. DPRINTK("ENTERn");
  1157. writel(0, mmio + CARM_INT_MASK);
  1158. tmp8 = readb(mmio + CARM_INITC);
  1159. if (tmp8 & 0x01) {
  1160. tmp8 &= ~0x01;
  1161. writeb(tmp8, mmio + CARM_INITC);
  1162. readb(mmio + CARM_INITC); /* flush */
  1163. DPRINTK("snooze...n");
  1164. msleep(5000);
  1165. }
  1166. tmp = readl(mmio + CARM_HMUC);
  1167. if (tmp & CARM_CME) {
  1168. DPRINTK("CME bit present, waitingn");
  1169. rc = carm_init_wait(mmio, CARM_CME, 1);
  1170. if (rc) {
  1171. DPRINTK("EXIT, carm_init_wait 1 failedn");
  1172. return rc;
  1173. }
  1174. }
  1175. if (tmp & CARM_RME) {
  1176. DPRINTK("RME bit present, waitingn");
  1177. rc = carm_init_wait(mmio, CARM_RME, 1);
  1178. if (rc) {
  1179. DPRINTK("EXIT, carm_init_wait 2 failedn");
  1180. return rc;
  1181. }
  1182. }
  1183. tmp &= ~(CARM_RME | CARM_CME);
  1184. writel(tmp, mmio + CARM_HMUC);
  1185. readl(mmio + CARM_HMUC); /* flush */
  1186. rc = carm_init_wait(mmio, CARM_RME | CARM_CME, 0);
  1187. if (rc) {
  1188. DPRINTK("EXIT, carm_init_wait 3 failedn");
  1189. return rc;
  1190. }
  1191. carm_init_buckets(mmio);
  1192. writel(host->shm_dma & 0xffffffff, mmio + RBUF_ADDR_LO);
  1193. writel((host->shm_dma >> 16) >> 16, mmio + RBUF_ADDR_HI);
  1194. writel(RBUF_LEN, mmio + RBUF_BYTE_SZ);
  1195. tmp = readl(mmio + CARM_HMUC);
  1196. tmp |= (CARM_RME | CARM_CME | CARM_WZBC);
  1197. writel(tmp, mmio + CARM_HMUC);
  1198. readl(mmio + CARM_HMUC); /* flush */
  1199. rc = carm_init_wait(mmio, CARM_RME | CARM_CME, 1);
  1200. if (rc) {
  1201. DPRINTK("EXIT, carm_init_wait 4 failedn");
  1202. return rc;
  1203. }
  1204. writel(0, mmio + CARM_HMPHA);
  1205. writel(INT_DEF_MASK, mmio + CARM_INT_MASK);
  1206. carm_init_responses(host);
  1207. /* start initialization, probing state machine */
  1208. spin_lock_irq(&host->lock);
  1209. assert(host->state == HST_INVALID);
  1210. host->state = HST_PROBE_START;
  1211. spin_unlock_irq(&host->lock);
  1212. schedule_work(&host->fsm_task);
  1213. DPRINTK("EXITn");
  1214. return 0;
  1215. }
  1216. static int carm_init_disks(struct carm_host *host)
  1217. {
  1218. unsigned int i;
  1219. int rc = 0;
  1220. for (i = 0; i < CARM_MAX_PORTS; i++) {
  1221. struct gendisk *disk;
  1222. request_queue_t *q;
  1223. struct carm_port *port;
  1224. port = &host->port[i];
  1225. port->host = host;
  1226. port->port_no = i;
  1227. disk = alloc_disk(CARM_MINORS_PER_MAJOR);
  1228. if (!disk) {
  1229. rc = -ENOMEM;
  1230. break;
  1231. }
  1232. port->disk = disk;
  1233. sprintf(disk->disk_name, DRV_NAME "/%u",
  1234. (unsigned int) (host->id * CARM_MAX_PORTS) + i);
  1235. sprintf(disk->devfs_name, DRV_NAME "/%u_%u", host->id, i);
  1236. disk->major = host->major;
  1237. disk->first_minor = i * CARM_MINORS_PER_MAJOR;
  1238. disk->fops = &carm_bd_ops;
  1239. disk->private_data = port;
  1240. q = blk_init_queue(carm_rq_fn, &host->lock);
  1241. if (!q) {
  1242. rc = -ENOMEM;
  1243. break;
  1244. }
  1245. disk->queue = q;
  1246. blk_queue_max_hw_segments(q, CARM_MAX_REQ_SG);
  1247. blk_queue_max_phys_segments(q, CARM_MAX_REQ_SG);
  1248. blk_queue_segment_boundary(q, CARM_SG_BOUNDARY);
  1249. q->queuedata = port;
  1250. }
  1251. return rc;
  1252. }
  1253. static void carm_free_disks(struct carm_host *host)
  1254. {
  1255. unsigned int i;
  1256. for (i = 0; i < CARM_MAX_PORTS; i++) {
  1257. struct gendisk *disk = host->port[i].disk;
  1258. if (disk) {
  1259. request_queue_t *q = disk->queue;
  1260. if (disk->flags & GENHD_FL_UP)
  1261. del_gendisk(disk);
  1262. if (q)
  1263. blk_cleanup_queue(q);
  1264. put_disk(disk);
  1265. }
  1266. }
  1267. }
  1268. static int carm_init_shm(struct carm_host *host)
  1269. {
  1270. host->shm = pci_alloc_consistent(host->pdev, CARM_SHM_SIZE,
  1271.  &host->shm_dma);
  1272. if (!host->shm)
  1273. return -ENOMEM;
  1274. host->msg_base = host->shm + RBUF_LEN;
  1275. host->msg_dma = host->shm_dma + RBUF_LEN;
  1276. memset(host->shm, 0xff, RBUF_LEN);
  1277. memset(host->msg_base, 0, PDC_SHM_SIZE - RBUF_LEN);
  1278. return 0;
  1279. }
  1280. static int carm_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  1281. {
  1282. static unsigned int printed_version;
  1283. struct carm_host *host;
  1284. unsigned int pci_dac;
  1285. int rc;
  1286. request_queue_t *q;
  1287. unsigned int i;
  1288. if (!printed_version++)
  1289. printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "n");
  1290. rc = pci_enable_device(pdev);
  1291. if (rc)
  1292. return rc;
  1293. rc = pci_request_regions(pdev, DRV_NAME);
  1294. if (rc)
  1295. goto err_out;
  1296. #ifdef IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
  1297. rc = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
  1298. if (!rc) {
  1299. rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
  1300. if (rc) {
  1301. printk(KERN_ERR DRV_NAME "(%s): consistent DMA mask failuren",
  1302. pci_name(pdev));
  1303. goto err_out_regions;
  1304. }
  1305. pci_dac = 1;
  1306. } else {
  1307. #endif
  1308. rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
  1309. if (rc) {
  1310. printk(KERN_ERR DRV_NAME "(%s): DMA mask failuren",
  1311. pci_name(pdev));
  1312. goto err_out_regions;
  1313. }
  1314. pci_dac = 0;
  1315. #ifdef IF_64BIT_DMA_IS_POSSIBLE /* grrrr... */
  1316. }
  1317. #endif
  1318. host = kmalloc(sizeof(*host), GFP_KERNEL);
  1319. if (!host) {
  1320. printk(KERN_ERR DRV_NAME "(%s): memory alloc failuren",
  1321.        pci_name(pdev));
  1322. rc = -ENOMEM;
  1323. goto err_out_regions;
  1324. }
  1325. memset(host, 0, sizeof(*host));
  1326. host->pdev = pdev;
  1327. host->flags = pci_dac ? FL_DAC : 0;
  1328. spin_lock_init(&host->lock);
  1329. INIT_WORK(&host->fsm_task, carm_fsm_task, host);
  1330. init_MUTEX_LOCKED(&host->probe_sem);
  1331. for (i = 0; i < ARRAY_SIZE(host->req); i++)
  1332. host->req[i].tag = i;
  1333. host->mmio = ioremap(pci_resource_start(pdev, 0),
  1334.      pci_resource_len(pdev, 0));
  1335. if (!host->mmio) {
  1336. printk(KERN_ERR DRV_NAME "(%s): MMIO alloc failuren",
  1337.        pci_name(pdev));
  1338. rc = -ENOMEM;
  1339. goto err_out_kfree;
  1340. }
  1341. rc = carm_init_shm(host);
  1342. if (rc) {
  1343. printk(KERN_ERR DRV_NAME "(%s): DMA SHM alloc failuren",
  1344.        pci_name(pdev));
  1345. goto err_out_iounmap;
  1346. }
  1347. q = blk_init_queue(carm_oob_rq_fn, &host->lock);
  1348. if (!q) {
  1349. printk(KERN_ERR DRV_NAME "(%s): OOB queue alloc failuren",
  1350.        pci_name(pdev));
  1351. rc = -ENOMEM;
  1352. goto err_out_pci_free;
  1353. }
  1354. host->oob_q = q;
  1355. q->queuedata = host;
  1356. /*
  1357.  * Figure out which major to use: 160, 161, or dynamic
  1358.  */
  1359. if (!test_and_set_bit(0, &carm_major_alloc))
  1360. host->major = 160;
  1361. else if (!test_and_set_bit(1, &carm_major_alloc))
  1362. host->major = 161;
  1363. else
  1364. host->flags |= FL_DYN_MAJOR;
  1365. host->id = carm_host_id;
  1366. sprintf(host->name, DRV_NAME "%d", carm_host_id);
  1367. rc = register_blkdev(host->major, host->name);
  1368. if (rc < 0)
  1369. goto err_out_free_majors;
  1370. if (host->flags & FL_DYN_MAJOR)
  1371. host->major = rc;
  1372. devfs_mk_dir(DRV_NAME);
  1373. rc = carm_init_disks(host);
  1374. if (rc)
  1375. goto err_out_blkdev_disks;
  1376. pci_set_master(pdev);
  1377. rc = request_irq(pdev->irq, carm_interrupt, SA_SHIRQ, DRV_NAME, host);
  1378. if (rc) {
  1379. printk(KERN_ERR DRV_NAME "(%s): irq alloc failuren",
  1380.        pci_name(pdev));
  1381. goto err_out_blkdev_disks;
  1382. }
  1383. rc = carm_init_host(host);
  1384. if (rc)
  1385. goto err_out_free_irq;
  1386. DPRINTK("waiting for probe_semn");
  1387. down(&host->probe_sem);
  1388. printk(KERN_INFO "%s: pci %s, ports %d, io %lx, irq %u, major %dn",
  1389.        host->name, pci_name(pdev), (int) CARM_MAX_PORTS,
  1390.        pci_resource_start(pdev, 0), pdev->irq, host->major);
  1391. carm_host_id++;
  1392. pci_set_drvdata(pdev, host);
  1393. return 0;
  1394. err_out_free_irq:
  1395. free_irq(pdev->irq, host);
  1396. err_out_blkdev_disks:
  1397. carm_free_disks(host);
  1398. unregister_blkdev(host->major, host->name);
  1399. err_out_free_majors:
  1400. if (host->major == 160)
  1401. clear_bit(0, &carm_major_alloc);
  1402. else if (host->major == 161)
  1403. clear_bit(1, &carm_major_alloc);
  1404. blk_cleanup_queue(host->oob_q);
  1405. err_out_pci_free:
  1406. pci_free_consistent(pdev, CARM_SHM_SIZE, host->shm, host->shm_dma);
  1407. err_out_iounmap:
  1408. iounmap(host->mmio);
  1409. err_out_kfree:
  1410. kfree(host);
  1411. err_out_regions:
  1412. pci_release_regions(pdev);
  1413. err_out:
  1414. pci_disable_device(pdev);
  1415. return rc;
  1416. }
  1417. static void carm_remove_one (struct pci_dev *pdev)
  1418. {
  1419. struct carm_host *host = pci_get_drvdata(pdev);
  1420. if (!host) {
  1421. printk(KERN_ERR PFX "BUG: no host data for PCI(%s)n",
  1422.        pci_name(pdev));
  1423. return;
  1424. }
  1425. free_irq(pdev->irq, host);
  1426. carm_free_disks(host);
  1427. devfs_remove(DRV_NAME);
  1428. unregister_blkdev(host->major, host->name);
  1429. if (host->major == 160)
  1430. clear_bit(0, &carm_major_alloc);
  1431. else if (host->major == 161)
  1432. clear_bit(1, &carm_major_alloc);
  1433. blk_cleanup_queue(host->oob_q);
  1434. pci_free_consistent(pdev, CARM_SHM_SIZE, host->shm, host->shm_dma);
  1435. iounmap(host->mmio);
  1436. kfree(host);
  1437. pci_release_regions(pdev);
  1438. pci_disable_device(pdev);
  1439. pci_set_drvdata(pdev, NULL);
  1440. }
  1441. static int __init carm_init(void)
  1442. {
  1443. return pci_module_init(&carm_driver);
  1444. }
  1445. static void __exit carm_exit(void)
  1446. {
  1447. pci_unregister_driver(&carm_driver);
  1448. }
  1449. module_init(carm_init);
  1450. module_exit(carm_exit);