cciss.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:60k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *    Disk Array driver for Compaq SMART2 Controllers
  3.  *    Copyright 2000 Compaq Computer Corporation
  4.  *
  5.  *    This program is free software; you can redistribute it and/or modify
  6.  *    it under the terms of the GNU General Public License as published by
  7.  *    the Free Software Foundation; either version 2 of the License, or
  8.  *    (at your option) any later version.
  9.  *
  10.  *    This program is distributed in the hope that it will be useful,
  11.  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  13.  *    NON INFRINGEMENT.  See the GNU General Public License for more details.
  14.  *
  15.  *    You should have received a copy of the GNU General Public License
  16.  *    along with this program; if not, write to the Free Software
  17.  *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *    Questions/Comments/Bugfixes to arrays@compaq.com
  20.  *
  21.  */
  22. #include <linux/config.h> /* CONFIG_PROC_FS */
  23. #include <linux/module.h>
  24. #include <linux/version.h>
  25. #include <linux/types.h>
  26. #include <linux/pci.h>
  27. #include <linux/kernel.h>
  28. #include <linux/slab.h>
  29. #include <linux/delay.h>
  30. #include <linux/major.h>
  31. #include <linux/fs.h>
  32. #include <linux/blkpg.h>
  33. #include <linux/timer.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/init.h> 
  36. #include <linux/hdreg.h>
  37. #include <linux/spinlock.h>
  38. #include <asm/uaccess.h>
  39. #include <asm/io.h>
  40. #include <linux/blk.h>
  41. #include <linux/blkdev.h>
  42. #include <linux/genhd.h>
  43. #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin))
  44. #define DRIVER_NAME "Compaq CISS Driver (v 2.4.5)"
  45. #define DRIVER_VERSION CCISS_DRIVER_VERSION(2,4,5)
  46. /* Embedded module documentation macros - see modules.h */
  47. MODULE_AUTHOR("Charles M. White III - Compaq Computer Corporation");
  48. MODULE_DESCRIPTION("Driver for Compaq Smart Array Controller 5300");
  49. MODULE_LICENSE("GPL");
  50. #include "cciss_cmd.h"
  51. #include "cciss.h"
  52. #include <linux/cciss_ioctl.h>
  53. /* define the PCI info for the cards we can control */
  54. const struct pci_device_id cciss_pci_device_id[] = {
  55. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISS,
  56. 0x0E11, 0x4070, 0, 0, 0},
  57. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB,
  58.                         0x0E11, 0x4080, 0, 0, 0},
  59. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB,
  60.                         0x0E11, 0x4082, 0, 0, 0},
  61. {0,}
  62. };
  63. MODULE_DEVICE_TABLE(pci, cciss_pci_device_id);
  64. #define NR_PRODUCTS (sizeof(products)/sizeof(struct board_type))
  65. /*  board_id = Subsystem Device ID & Vendor ID
  66.  *  product = Marketing Name for the board
  67.  *  access = Address of the struct of function pointers 
  68.  */
  69. static struct board_type products[] = {
  70. { 0x40700E11, "Smart Array 5300", &SA5_access },
  71. { 0x40800E11, "Smart Array 5i", &SA5B_access},
  72. { 0x40820E11, "Smart Array 532", &SA5B_access},
  73. };
  74. /* How long to wait (in millesconds) for board to go into simple mode */
  75. #define MAX_CONFIG_WAIT 1000 
  76. #define READ_AHEAD   128
  77. #define NR_CMDS  128 /* #commands that can be outstanding */
  78. #define MAX_CTLR 8
  79. #define CCISS_DMA_MASK 0xFFFFFFFF /* 32 bit DMA */
  80. static ctlr_info_t *hba[MAX_CTLR];
  81. static struct proc_dir_entry *proc_cciss;
  82. static void do_cciss_request(request_queue_t *q);
  83. static int cciss_open(struct inode *inode, struct file *filep);
  84. static int cciss_release(struct inode *inode, struct file *filep);
  85. static int cciss_ioctl(struct inode *inode, struct file *filep, 
  86. unsigned int cmd, unsigned long arg);
  87. static int revalidate_allvol(kdev_t dev);
  88. static int revalidate_logvol(kdev_t dev, int maxusage);
  89. static int frevalidate_logvol(kdev_t dev);
  90. static void cciss_getgeometry(int cntl_num);
  91. static inline void addQ(CommandList_struct **Qptr, CommandList_struct *c);
  92. static void start_io( ctlr_info_t *h);
  93. #ifdef CONFIG_PROC_FS
  94. static int cciss_proc_get_info(char *buffer, char **start, off_t offset, 
  95. int length, int *eof, void *data);
  96. static void cciss_procinit(int i);
  97. #else
  98. static int cciss_proc_get_info(char *buffer, char **start, off_t offset, 
  99. int length, int *eof, void *data) { return 0;}
  100. static void cciss_procinit(int i) {}
  101. #endif /* CONFIG_PROC_FS */
  102. static struct block_device_operations cciss_fops  = {
  103. owner: THIS_MODULE,
  104. open: cciss_open, 
  105. release:         cciss_release,
  106.         ioctl: cciss_ioctl,
  107. revalidate: frevalidate_logvol,
  108. };
  109. /*
  110.  * Report information about this controller.
  111.  */
  112. #ifdef CONFIG_PROC_FS
  113. static int cciss_proc_get_info(char *buffer, char **start, off_t offset, 
  114. int length, int *eof, void *data)
  115. {
  116.         off_t pos = 0;
  117.         off_t len = 0;
  118.         int size, i, ctlr;
  119.         ctlr_info_t *h = (ctlr_info_t*)data;
  120.         drive_info_struct *drv;
  121.         ctlr = h->ctlr;
  122.         size = sprintf(buffer, "%s:  Compaq %s Controllern"
  123.                 "       Board ID: 0x%08lxn"
  124. "       Firmware Version: %c%c%c%cn"
  125.                 "       Memory Address: 0x%08lxn"
  126.                 "       IRQ: %dn"
  127.                 "       Logical drives: %dn"
  128.                 "       Current Q depth: %dn"
  129. "       Current # commands on controller %dn"
  130.                 "       Max Q depth since init: %dn"
  131. "       Max # commands on controller since init: %dn"
  132. "       Max SG entries since init: %dnn",
  133.                 h->devname,
  134.                 h->product_name,
  135.                 (unsigned long)h->board_id,
  136. h->firm_ver[0], h->firm_ver[1], h->firm_ver[2], h->firm_ver[3],
  137.                 (unsigned long)h->vaddr,
  138.                 (unsigned int)h->intr,
  139.                 h->num_luns, 
  140.                 h->Qdepth, h->commands_outstanding,
  141. h->maxQsinceinit, h->max_outstanding, h->maxSG);
  142.         pos += size; len += size;
  143. for(i=0; i<h->num_luns; i++) {
  144.                 drv = &h->drv[i];
  145.                 size = sprintf(buffer+len, "cciss/c%dd%d: blksz=%d nr_blocks=%dn",
  146.                                 ctlr, i, drv->block_size, drv->nr_blocks);
  147.                 pos += size; len += size;
  148.         }
  149. size = sprintf(buffer+len, "nr_allocs = %dnnr_frees = %dn",
  150.                         h->nr_allocs, h->nr_frees);
  151.         pos += size; len += size;
  152.         *eof = 1;
  153.         *start = buffer+offset;
  154.         len -= offset;
  155.         if (len>length)
  156.                 len = length;
  157.         return len;
  158. }
  159. /*
  160.  * Get us a file in /proc/cciss that says something about each controller.
  161.  * Create /proc/cciss if it doesn't exist yet.
  162.  */
  163. static void __init cciss_procinit(int i)
  164. {
  165.         if (proc_cciss == NULL) {
  166.                 proc_cciss = proc_mkdir("cciss", proc_root_driver);
  167.                 if (!proc_cciss) 
  168. return;
  169.         }
  170.         create_proc_read_entry(hba[i]->devname, 0, proc_cciss,
  171.          cciss_proc_get_info, hba[i]);
  172. }
  173. #endif /* CONFIG_PROC_FS */
  174. /* 
  175.  * For operations that cannot sleep, a command block is allocated at init, 
  176.  * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
  177.  * which ones are free or in use.  For operations that can wait for kmalloc 
  178.  * to possible sleep, this routine can be called with get_from_pool set to 0. 
  179.  * cmd_free() MUST be called with a got_from_pool set to 0 if cmd_alloc was. 
  180.  */ 
  181. static CommandList_struct * cmd_alloc(ctlr_info_t *h, int get_from_pool)
  182. {
  183. CommandList_struct *c;
  184. int i; 
  185. u64bit temp64;
  186. dma_addr_t cmd_dma_handle, err_dma_handle;
  187. if (!get_from_pool)
  188. {
  189. c = (CommandList_struct *) pci_alloc_consistent(
  190. h->pdev, sizeof(CommandList_struct), &cmd_dma_handle); 
  191.          if(c==NULL)
  192.                   return NULL;
  193. memset(c, 0, sizeof(CommandList_struct));
  194. c->err_info = (ErrorInfo_struct *)pci_alloc_consistent(
  195. h->pdev, sizeof(ErrorInfo_struct), 
  196. &err_dma_handle);
  197. if (c->err_info == NULL)
  198. {
  199. pci_free_consistent(h->pdev, 
  200. sizeof(CommandList_struct), c, cmd_dma_handle);
  201. return NULL;
  202. }
  203. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  204. } else /* get it out of the controllers pool */ 
  205. {
  206.       do {
  207.                  i = find_first_zero_bit(h->cmd_pool_bits, NR_CMDS);
  208.                         if (i == NR_CMDS)
  209.                                 return NULL;
  210.                 } while(test_and_set_bit(i%32, h->cmd_pool_bits+(i/32)) != 0);
  211. #ifdef CCISS_DEBUG
  212. printk(KERN_DEBUG "cciss: using command buffer %dn", i);
  213. #endif
  214.                 c = h->cmd_pool + i;
  215. memset(c, 0, sizeof(CommandList_struct));
  216. cmd_dma_handle = h->cmd_pool_dhandle 
  217. + i*sizeof(CommandList_struct);
  218. c->err_info = h->errinfo_pool + i;
  219. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  220. err_dma_handle = h->errinfo_pool_dhandle 
  221. + i*sizeof(ErrorInfo_struct);
  222.                 h->nr_allocs++;
  223.         }
  224. c->busaddr = (__u32) cmd_dma_handle;
  225. temp64.val = (__u64) err_dma_handle;
  226. c->ErrDesc.Addr.lower = temp64.val32.lower;
  227. c->ErrDesc.Addr.upper = temp64.val32.upper;
  228. c->ErrDesc.Len = sizeof(ErrorInfo_struct);
  229. c->ctlr = h->ctlr;
  230.         return c;
  231. }
  232. /* 
  233.  * Frees a command block that was previously allocated with cmd_alloc(). 
  234.  */
  235. static void cmd_free(ctlr_info_t *h, CommandList_struct *c, int got_from_pool)
  236. {
  237. int i;
  238. u64bit temp64;
  239. if( !got_from_pool)
  240. temp64.val32.lower = c->ErrDesc.Addr.lower;
  241. temp64.val32.upper = c->ErrDesc.Addr.upper;
  242. pci_free_consistent(h->pdev, sizeof(ErrorInfo_struct), 
  243. c->err_info, (dma_addr_t) temp64.val);
  244. pci_free_consistent(h->pdev, sizeof(CommandList_struct), 
  245. c, (dma_addr_t) c->busaddr);
  246. } else 
  247. {
  248. i = c - h->cmd_pool;
  249. clear_bit(i%32, h->cmd_pool_bits+(i/32));
  250.                 h->nr_frees++;
  251.         }
  252. }
  253. /*  
  254.  * fills in the disk information. 
  255.  */
  256. static void cciss_geninit( int ctlr)
  257. {
  258. drive_info_struct *drv;
  259. int i,j;
  260. /* Loop through each real device */ 
  261. hba[ctlr]->gendisk.nr_real = 0; 
  262. for(i=0; i< NWD; i++)
  263. {
  264. drv = &(hba[ctlr]->drv[i]);
  265. if( !(drv->nr_blocks))
  266. continue;
  267. hba[ctlr]->hd[i << NWD_SHIFT].nr_sects = 
  268. hba[ctlr]->sizes[i << NWD_SHIFT] = drv->nr_blocks;
  269. /* for each partition */ 
  270. for(j=0; j<MAX_PART; j++)
  271. {
  272. hba[ctlr]->blocksizes[(i<<NWD_SHIFT) + j] = 1024; 
  273. hba[ctlr]->hardsizes[ (i<<NWD_SHIFT) + j] = 
  274. drv->block_size;
  275. }
  276. hba[ctlr]->gendisk.nr_real++;
  277. }
  278. }
  279. /*
  280.  * Open.  Make sure the device is really there.
  281.  */
  282. static int cciss_open(struct inode *inode, struct file *filep)
  283. {
  284. int ctlr = MAJOR(inode->i_rdev) - MAJOR_NR;
  285. int dsk  = MINOR(inode->i_rdev) >> NWD_SHIFT;
  286. #ifdef CCISS_DEBUG
  287. printk(KERN_DEBUG "cciss_open %x (%x:%x)n", inode->i_rdev, ctlr, dsk);
  288. #endif /* CCISS_DEBUG */ 
  289. if (ctlr > MAX_CTLR || hba[ctlr] == NULL)
  290. return -ENXIO;
  291. if (!suser() && hba[ctlr]->sizes[ MINOR(inode->i_rdev)] == 0)
  292. return -ENXIO;
  293. /*
  294.  * Root is allowed to open raw volume zero even if its not configured
  295.  * so array config can still work.  I don't think I really like this,
  296.  * but I'm already using way to many device nodes to claim another one
  297.  * for "raw controller".
  298.  */
  299. if (suser()
  300. && (hba[ctlr]->sizes[MINOR(inode->i_rdev)] == 0) 
  301. && (MINOR(inode->i_rdev)!= 0))
  302. return -ENXIO;
  303. hba[ctlr]->drv[dsk].usage_count++;
  304. hba[ctlr]->usage_count++;
  305. return 0;
  306. }
  307. /*
  308.  * Close.  Sync first.
  309.  */
  310. static int cciss_release(struct inode *inode, struct file *filep)
  311. {
  312. int ctlr = MAJOR(inode->i_rdev) - MAJOR_NR;
  313. int dsk  = MINOR(inode->i_rdev) >> NWD_SHIFT;
  314. #ifdef CCISS_DEBUG
  315. printk(KERN_DEBUG "cciss_release %x (%x:%x)n", inode->i_rdev, ctlr, dsk);
  316. #endif /* CCISS_DEBUG */
  317. /* fsync_dev(inode->i_rdev); */
  318. hba[ctlr]->drv[dsk].usage_count--;
  319. hba[ctlr]->usage_count--;
  320. return 0;
  321. }
  322. /*
  323.  * ioctl 
  324.  */
  325. static int cciss_ioctl(struct inode *inode, struct file *filep, 
  326. unsigned int cmd, unsigned long arg)
  327. {
  328. int ctlr = MAJOR(inode->i_rdev) - MAJOR_NR;
  329. int dsk  = MINOR(inode->i_rdev) >> NWD_SHIFT;
  330. int diskinfo[4];
  331. struct hd_geometry *geo = (struct hd_geometry *)arg;
  332. #ifdef CCISS_DEBUG
  333. printk(KERN_DEBUG "cciss_ioctl: Called with cmd=%x %lxn", cmd, arg);
  334. #endif /* CCISS_DEBUG */ 
  335. switch(cmd) {
  336. case HDIO_GETGEO:
  337. if (hba[ctlr]->drv[dsk].cylinders) {
  338. diskinfo[0] = hba[ctlr]->drv[dsk].heads;
  339. diskinfo[1] = hba[ctlr]->drv[dsk].sectors;
  340. diskinfo[2] = hba[ctlr]->drv[dsk].cylinders;
  341. } else {
  342. diskinfo[0] = 0xff;
  343. diskinfo[1] = 0x3f;
  344. diskinfo[2] = hba[ctlr]->drv[dsk].nr_blocks / (0xff*0x3f); }
  345. put_user(diskinfo[0], &geo->heads);
  346. put_user(diskinfo[1], &geo->sectors);
  347. put_user(diskinfo[2], &geo->cylinders);
  348. put_user(hba[ctlr]->hd[MINOR(inode->i_rdev)].start_sect, &geo->start);
  349. return 0;
  350. case BLKGETSIZE:
  351. put_user(hba[ctlr]->hd[MINOR(inode->i_rdev)].nr_sects, (unsigned long *)arg);
  352. return 0;
  353. case BLKGETSIZE64:
  354. put_user((u64)hba[ctlr]->hd[MINOR(inode->i_rdev)].nr_sects << 9, (u64*)arg);
  355. return 0;
  356. case BLKRRPART:
  357. return revalidate_logvol(inode->i_rdev, 1);
  358. case BLKFLSBUF:
  359. case BLKBSZSET:
  360. case BLKBSZGET:
  361. case BLKROSET:
  362. case BLKROGET:
  363. case BLKRASET:
  364. case BLKRAGET:
  365. case BLKPG:
  366. case BLKELVGET:
  367. case BLKELVSET:
  368. return( blk_ioctl(inode->i_rdev, cmd, arg));
  369. case CCISS_GETPCIINFO:
  370. {
  371. cciss_pci_info_struct pciinfo;
  372. if (!arg) return -EINVAL;
  373. pciinfo.bus = hba[ctlr]->pdev->bus->number;
  374. pciinfo.dev_fn = hba[ctlr]->pdev->devfn;
  375. pciinfo.board_id = hba[ctlr]->board_id;
  376. if (copy_to_user((void *) arg, &pciinfo,  sizeof( cciss_pci_info_struct )))
  377. return  -EFAULT;
  378. return(0);
  379. }
  380. case CCISS_GETINTINFO:
  381. {
  382. cciss_coalint_struct intinfo;
  383. ctlr_info_t *c = hba[ctlr];
  384. if (!arg) return -EINVAL;
  385. intinfo.delay = readl(&c->cfgtable->HostWrite.CoalIntDelay);
  386. intinfo.count = readl(&c->cfgtable->HostWrite.CoalIntCount);
  387. if (copy_to_user((void *) arg, &intinfo, sizeof( cciss_coalint_struct )))
  388. return -EFAULT;
  389.                 return(0);
  390.         }
  391. case CCISS_SETINTINFO:
  392.         {
  393.                 cciss_coalint_struct intinfo;
  394.                 ctlr_info_t *c = hba[ctlr];
  395. unsigned long flags;
  396. int i;
  397. if (!arg) return -EINVAL;
  398. if (!capable(CAP_SYS_ADMIN)) return -EPERM;
  399. if (copy_from_user(&intinfo, (void *) arg, sizeof( cciss_coalint_struct)))
  400. return -EFAULT;
  401. if ( (intinfo.delay == 0 ) && (intinfo.count == 0))
  402. {
  403. // printk("cciss_ioctl: delay and count cannot be 0n");
  404. return( -EINVAL);
  405. }
  406. spin_lock_irqsave(&io_request_lock, flags);
  407. /* Can only safely update if no commands outstanding */ 
  408. if (c->commands_outstanding > 0 )
  409. {
  410. // printk("cciss_ioctl: cannot change coalasing "
  411. // "%d commands outstanding on controllern", 
  412. // c->commands_outstanding);
  413. spin_unlock_irqrestore(&io_request_lock, flags);
  414. return(-EINVAL);
  415. }
  416. /* Update the field, and then ring the doorbell */ 
  417. writel( intinfo.delay, 
  418. &(c->cfgtable->HostWrite.CoalIntDelay));
  419. writel( intinfo.count, 
  420.                         &(c->cfgtable->HostWrite.CoalIntCount));
  421. writel( CFGTBL_ChangeReq, c->vaddr + SA5_DOORBELL);
  422. for(i=0;i<MAX_CONFIG_WAIT;i++)
  423. {
  424. if (!(readl(c->vaddr + SA5_DOORBELL) 
  425. & CFGTBL_ChangeReq))
  426. break;
  427. /* delay and try again */
  428. udelay(1000);
  429. }
  430. spin_unlock_irqrestore(&io_request_lock, flags);
  431. if (i >= MAX_CONFIG_WAIT)
  432. return( -EFAULT);
  433.                 return(0);
  434.         }
  435. case CCISS_GETNODENAME:
  436.         {
  437.                 NodeName_type NodeName;
  438.                 ctlr_info_t *c = hba[ctlr];
  439. int i; 
  440. if (!arg) return -EINVAL;
  441. for(i=0;i<16;i++)
  442. NodeName[i] = readb(&c->cfgtable->ServerName[i]);
  443.                 if (copy_to_user((void *) arg, NodeName, sizeof( NodeName_type)))
  444.                  return  -EFAULT;
  445.                 return(0);
  446.         }
  447. case CCISS_SETNODENAME:
  448. {
  449. NodeName_type NodeName;
  450. ctlr_info_t *c = hba[ctlr];
  451. unsigned long flags;
  452. int i;
  453. if (!arg) return -EINVAL;
  454. if (!capable(CAP_SYS_ADMIN)) return -EPERM;
  455. if (copy_from_user(NodeName, (void *) arg, sizeof( NodeName_type)))
  456. return -EFAULT;
  457. spin_lock_irqsave(&io_request_lock, flags);
  458. /* Update the field, and then ring the doorbell */ 
  459. for(i=0;i<16;i++)
  460. writeb( NodeName[i], &c->cfgtable->ServerName[i]);
  461. writel( CFGTBL_ChangeReq, c->vaddr + SA5_DOORBELL);
  462. for(i=0;i<MAX_CONFIG_WAIT;i++)
  463. {
  464. if (!(readl(c->vaddr + SA5_DOORBELL) 
  465. & CFGTBL_ChangeReq))
  466. break;
  467. /* delay and try again */
  468. udelay(1000);
  469. }
  470. spin_unlock_irqrestore(&io_request_lock, flags);
  471. if (i >= MAX_CONFIG_WAIT)
  472. return( -EFAULT);
  473.                 return(0);
  474.         }
  475. case CCISS_GETHEARTBEAT:
  476.         {
  477.                 Heartbeat_type heartbeat;
  478.                 ctlr_info_t *c = hba[ctlr];
  479. if (!arg) return -EINVAL;
  480.                 heartbeat = readl(&c->cfgtable->HeartBeat);
  481.                 if (copy_to_user((void *) arg, &heartbeat, sizeof( Heartbeat_type)))
  482.                  return -EFAULT;
  483.                 return(0);
  484.         }
  485. case CCISS_GETBUSTYPES:
  486.         {
  487.                 BusTypes_type BusTypes;
  488.                 ctlr_info_t *c = hba[ctlr];
  489. if (!arg) return -EINVAL;
  490.                 BusTypes = readl(&c->cfgtable->BusTypes);
  491.                 if (copy_to_user((void *) arg, &BusTypes, sizeof( BusTypes_type) ))
  492.                  return  -EFAULT;
  493.                 return(0);
  494.         }
  495. case CCISS_GETFIRMVER:
  496.         {
  497. FirmwareVer_type firmware;
  498. if (!arg) return -EINVAL;
  499. memcpy(firmware, hba[ctlr]->firm_ver, 4);
  500.                 if (copy_to_user((void *) arg, firmware, sizeof( FirmwareVer_type)))
  501.                  return -EFAULT;
  502.                 return(0);
  503.         }
  504.         case CCISS_GETDRIVVER:
  505.         {
  506. DriverVer_type DriverVer = DRIVER_VERSION;
  507.                 if (!arg) return -EINVAL;
  508.                 if (copy_to_user((void *) arg, &DriverVer, sizeof( DriverVer_type) ))
  509.                  return -EFAULT;
  510.                 return(0);
  511.         }
  512. case CCISS_REVALIDVOLS:
  513.                 return( revalidate_allvol(inode->i_rdev));
  514. case CCISS_PASSTHRU:
  515. {
  516. IOCTL_Command_struct iocommand;
  517. ctlr_info_t *h = hba[ctlr];
  518. CommandList_struct *c;
  519. char  *buff = NULL;
  520. u64bit temp64;
  521. unsigned long flags;
  522. if (!arg) return -EINVAL;
  523. if (!capable(CAP_SYS_RAWIO)) return -EPERM;
  524. if (copy_from_user(&iocommand, (void *) arg, sizeof( IOCTL_Command_struct) ))
  525. return -EFAULT;
  526. if((iocommand.buf_size < 1) && 
  527. (iocommand.Request.Type.Direction != XFER_NONE))
  528. {
  529. return -EINVAL;
  530. /* Check kmalloc limits */
  531. if(iocommand.buf_size > 128000)
  532. return -EINVAL;
  533. if(iocommand.buf_size > 0)
  534. {
  535. buff =  kmalloc(iocommand.buf_size, GFP_KERNEL);
  536. if( buff == NULL) 
  537. return -EFAULT;
  538. }
  539. if (iocommand.Request.Type.Direction == XFER_WRITE)
  540. {
  541. /* Copy the data into the buffer we created */ 
  542. if (copy_from_user(buff, iocommand.buf, iocommand.buf_size))
  543. {
  544. kfree(buff);
  545. return -EFAULT;
  546. }
  547. }
  548. if ((c = cmd_alloc(h , 0)) == NULL)
  549. {
  550. kfree(buff);
  551. return -ENOMEM;
  552. }
  553. // Fill in the command type 
  554. c->cmd_type = CMD_IOCTL_PEND;
  555. // Fill in Command Header 
  556. c->Header.ReplyQueue = 0;  // unused in simple mode
  557. if( iocommand.buf_size > 0)  // buffer to fill 
  558. {
  559. c->Header.SGList = 1;
  560. c->Header.SGTotal= 1;
  561. } else // no buffers to fill  
  562. {
  563. c->Header.SGList = 0;
  564.                  c->Header.SGTotal= 0;
  565. }
  566. c->Header.LUN = iocommand.LUN_info;
  567. c->Header.Tag.lower = c->busaddr;  // use the kernel address the cmd block for tag
  568. // Fill in Request block 
  569. c->Request = iocommand.Request; 
  570. // Fill in the scatter gather information
  571. if (iocommand.buf_size > 0 ) 
  572. {
  573. temp64.val = pci_map_single( h->pdev, buff,
  574.                                         iocommand.buf_size, 
  575.                                 PCI_DMA_BIDIRECTIONAL);
  576. c->SG[0].Addr.lower = temp64.val32.lower;
  577. c->SG[0].Addr.upper = temp64.val32.upper;
  578. c->SG[0].Len = iocommand.buf_size;
  579. c->SG[0].Ext = 0;  // we are not chaining
  580. }
  581. /* Put the request on the tail of the request queue */
  582. spin_lock_irqsave(&io_request_lock, flags);
  583. addQ(&h->reqQ, c);
  584. h->Qdepth++;
  585. start_io(h);
  586. spin_unlock_irqrestore(&io_request_lock, flags);
  587. /* Wait for completion */
  588. while(c->cmd_type != CMD_IOCTL_DONE)
  589. schedule_timeout(1);
  590. /* unlock the buffers from DMA */
  591. temp64.val32.lower = c->SG[0].Addr.lower;
  592.                 temp64.val32.upper = c->SG[0].Addr.upper;
  593.                 pci_unmap_single( h->pdev, (dma_addr_t) temp64.val,
  594.                  iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
  595. /* Copy the error information out */ 
  596. iocommand.error_info = *(c->err_info);
  597. if ( copy_to_user((void *) arg, &iocommand, sizeof( IOCTL_Command_struct) ) )
  598. {
  599. kfree(buff);
  600. cmd_free(h, c, 0);
  601. return( -EFAULT);
  602. if (iocommand.Request.Type.Direction == XFER_READ)
  603.                 {
  604.                         /* Copy the data out of the buffer we created */
  605.                         if (copy_to_user(iocommand.buf, buff, iocommand.buf_size))
  606. {
  607.                          kfree(buff);
  608. cmd_free(h, c, 0);
  609. return -EFAULT;
  610. }
  611.                 }
  612.                 kfree(buff);
  613. cmd_free(h, c, 0);
  614.                 return(0);
  615. default:
  616. return -EBADRQC;
  617. }
  618. }
  619. /* Borrowed and adapted from sd.c */
  620. static int revalidate_logvol(kdev_t dev, int maxusage)
  621. {
  622.         int ctlr, target;
  623.         struct gendisk *gdev;
  624.         unsigned long flags;
  625.         int max_p;
  626.         int start;
  627.         int i;
  628.         target = MINOR(dev) >> NWD_SHIFT;
  629.         ctlr = MAJOR(dev) - MAJOR_NR;
  630.         gdev = &(hba[ctlr]->gendisk);
  631.         spin_lock_irqsave(&io_request_lock, flags);
  632.         if (hba[ctlr]->drv[target].usage_count > maxusage) {
  633.                 spin_unlock_irqrestore(&io_request_lock, flags);
  634.                 printk(KERN_WARNING "cciss: Device busy for "
  635.                         "revalidation (usage=%d)n",
  636.                         hba[ctlr]->drv[target].usage_count);
  637.                 return -EBUSY;
  638.         }
  639.         hba[ctlr]->drv[target].usage_count++;
  640.         spin_unlock_irqrestore(&io_request_lock, flags);
  641.         max_p = gdev->max_p;
  642.         start = target << gdev->minor_shift;
  643.         for(i=max_p-1; i>=0; i--) {
  644.                 int minor = start+i;
  645.                 invalidate_device(MKDEV(MAJOR_NR + ctlr, minor), 1);
  646.                 gdev->part[minor].start_sect = 0;
  647.                 gdev->part[minor].nr_sects = 0;
  648.                 /* reset the blocksize so we can read the partition table */
  649.                 blksize_size[MAJOR_NR+ctlr][minor] = 1024;
  650.         }
  651. /* setup partitions per disk */
  652. grok_partitions(gdev, target, MAX_PART, 
  653. hba[ctlr]->drv[target].nr_blocks);
  654.         hba[ctlr]->drv[target].usage_count--;
  655.         return 0;
  656. }
  657. static int frevalidate_logvol(kdev_t dev)
  658. {
  659. #ifdef CCISS_DEBUG
  660. printk(KERN_DEBUG "cciss: frevalidate has been calledn");
  661. #endif /* CCISS_DEBUG */ 
  662. return revalidate_logvol(dev, 0);
  663. }
  664. /*
  665.  * revalidate_allvol is for online array config utilities.  After a
  666.  * utility reconfigures the drives in the array, it can use this function
  667.  * (through an ioctl) to make the driver zap any previous disk structs for
  668.  * that controller and get new ones.
  669.  *
  670.  * Right now I'm using the getgeometry() function to do this, but this
  671.  * function should probably be finer grained and allow you to revalidate one
  672.  * particualar logical volume (instead of all of them on a particular
  673.  * controller).
  674.  */
  675. static int revalidate_allvol(kdev_t dev)
  676. {
  677. int ctlr, i;
  678. unsigned long flags;
  679. ctlr = MAJOR(dev) - MAJOR_NR;
  680.         if (MINOR(dev) != 0)
  681.                 return -ENXIO;
  682.         spin_lock_irqsave(&io_request_lock, flags);
  683.         if (hba[ctlr]->usage_count > 1) {
  684.                 spin_unlock_irqrestore(&io_request_lock, flags);
  685.                 printk(KERN_WARNING "cciss: Device busy for volume"
  686.                         " revalidation (usage=%d)n", hba[ctlr]->usage_count);
  687.                 return -EBUSY;
  688.         }
  689.         spin_unlock_irqrestore(&io_request_lock, flags);
  690.         hba[ctlr]->usage_count++;
  691.         /*
  692.          * Set the partition and block size structures for all volumes
  693.          * on this controller to zero.  We will reread all of this data
  694.          */
  695. memset(hba[ctlr]->hd,         0, sizeof(struct hd_struct) * 256);
  696.         memset(hba[ctlr]->sizes,      0, sizeof(int) * 256);
  697.         memset(hba[ctlr]->blocksizes, 0, sizeof(int) * 256);
  698.         memset(hba[ctlr]->hardsizes,  0, sizeof(int) * 256);
  699.         memset(hba[ctlr]->drv,        0, sizeof(drive_info_struct)
  700. * CISS_MAX_LUN);
  701.         hba[ctlr]->gendisk.nr_real = 0;
  702.         /*
  703.          * Tell the array controller not to give us any interrupts while
  704.          * we check the new geometry.  Then turn interrupts back on when
  705.          * we're done.
  706.          */
  707.         hba[ctlr]->access.set_intr_mask(hba[ctlr], CCISS_INTR_OFF);
  708.         cciss_getgeometry(ctlr);
  709.         hba[ctlr]->access.set_intr_mask(hba[ctlr], CCISS_INTR_ON);
  710.         cciss_geninit(ctlr);
  711.         for(i=0; i<NWD; i++)
  712.                 if (hba[ctlr]->sizes[ i<<NWD_SHIFT ])
  713.                         revalidate_logvol(dev+(i<<NWD_SHIFT), 2);
  714.         hba[ctlr]->usage_count--;
  715.         return 0;
  716. }
  717. /*
  718.  *   Wait polling for a command to complete.
  719.  *   The memory mapped FIFO is polled for the completion.
  720.  *   Used only at init time, interrupts disabled.
  721.  */
  722. static unsigned long pollcomplete(int ctlr)
  723. {
  724.         unsigned long done;
  725.         int i;
  726.         /* Wait (up to 2 seconds) for a command to complete */
  727.         for (i = 200000; i > 0; i--) {
  728.                 done = hba[ctlr]->access.command_completed(hba[ctlr]);
  729.                 if (done == FIFO_EMPTY) {
  730.                         udelay(10);     /* a short fixed delay */
  731.                 } else
  732.                         return (done);
  733.         }
  734.         /* Invalid address to tell caller we ran out of time */
  735.         return 1;
  736. }
  737. /*
  738.  * Send a command to the controller, and wait for it to complete.  
  739.  * Only used at init time. 
  740.  */
  741. static int sendcmd(
  742. __u8 cmd,
  743. int ctlr,
  744. void *buff,
  745. size_t size,
  746. unsigned int use_unit_num,
  747. unsigned int log_unit,
  748. __u8 page_code )
  749. {
  750. CommandList_struct *c;
  751. int i;
  752. unsigned long complete;
  753. ctlr_info_t *info_p= hba[ctlr];
  754. u64bit buff_dma_handle;
  755. c = cmd_alloc(info_p, 1);
  756. if (c == NULL)
  757. {
  758. printk(KERN_WARNING "cciss: unable to get memory");
  759. return(IO_ERROR);
  760. }
  761. // Fill in Command Header 
  762. c->Header.ReplyQueue = 0;  // unused in simple mode
  763. if( buff != NULL)  // buffer to fill 
  764. {
  765. c->Header.SGList = 1;
  766. c->Header.SGTotal= 1;
  767. } else // no buffers to fill  
  768. {
  769. c->Header.SGList = 0;
  770.                 c->Header.SGTotal= 0;
  771. }
  772. c->Header.Tag.lower = c->busaddr;  // use the kernel address the cmd block for tag
  773. // Fill in Request block 
  774. switch(cmd)
  775. {
  776. case  CISS_INQUIRY:
  777. /* If the logical unit number is 0 then, this is going
  778. to controller so It's a physical command
  779. mode = 0 target = 0.
  780. So we have nothing to write. 
  781. Otherwise 
  782. mode = 1  target = LUNID
  783. */
  784. if(use_unit_num != 0)
  785. {
  786. c->Header.LUN.LogDev.VolId=
  787.                                  hba[ctlr]->drv[log_unit].LunID;
  788.                          c->Header.LUN.LogDev.Mode = 1;
  789. }
  790. /* are we trying to read a vital product page */
  791. if(page_code != 0)
  792. {
  793. c->Request.CDB[1] = 0x01;
  794. c->Request.CDB[2] = page_code;
  795. }
  796. c->Request.CDBLen = 6;
  797. c->Request.Type.Type =  TYPE_CMD; // It is a command. 
  798. c->Request.Type.Attribute = ATTR_SIMPLE;  
  799. c->Request.Type.Direction = XFER_READ; // Read 
  800. c->Request.Timeout = 0; // Don't time out 
  801. c->Request.CDB[0] =  CISS_INQUIRY;
  802. c->Request.CDB[4] = size  & 0xFF;  
  803. break;
  804. case CISS_REPORT_LOG:
  805.                         /* Talking to controller so It's a physical command
  806.                                 mode = 00 target = 0.
  807.                                 So we have nothing to write.
  808.                         */
  809.                         c->Request.CDBLen = 12;
  810.                         c->Request.Type.Type =  TYPE_CMD; // It is a command.
  811.                         c->Request.Type.Attribute = ATTR_SIMPLE; 
  812.                         c->Request.Type.Direction = XFER_READ; // Read
  813.                         c->Request.Timeout = 0; // Don't time out
  814.                         c->Request.CDB[0] = CISS_REPORT_LOG;
  815.                         c->Request.CDB[6] = (size >> 24) & 0xFF;  //MSB
  816.                         c->Request.CDB[7] = (size >> 16) & 0xFF;
  817.                         c->Request.CDB[8] = (size >> 8) & 0xFF;
  818.                         c->Request.CDB[9] = size & 0xFF;
  819.                 break;
  820. case CCISS_READ_CAPACITY:
  821. c->Header.LUN.LogDev.VolId= 
  822. hba[ctlr]->drv[log_unit].LunID;
  823. c->Header.LUN.LogDev.Mode = 1;
  824. c->Request.CDBLen = 10;
  825.                         c->Request.Type.Type =  TYPE_CMD; // It is a command.
  826.                         c->Request.Type.Attribute = ATTR_SIMPLE; 
  827.                         c->Request.Type.Direction = XFER_READ; // Read
  828.                         c->Request.Timeout = 0; // Don't time out
  829.                         c->Request.CDB[0] = CCISS_READ_CAPACITY;
  830. break;
  831. default:
  832. printk(KERN_WARNING
  833. "cciss:  Unknown Command 0x%c sent attemptedn",
  834.   cmd);
  835. cmd_free(info_p, c, 1);
  836. return(IO_ERROR);
  837. };
  838. // Fill in the scatter gather information
  839. if (size > 0 ) 
  840. {
  841. buff_dma_handle.val = (__u64) pci_map_single( info_p->pdev, 
  842. buff, size, PCI_DMA_BIDIRECTIONAL);
  843. c->SG[0].Addr.lower = buff_dma_handle.val32.lower;
  844. c->SG[0].Addr.upper = buff_dma_handle.val32.upper;
  845. c->SG[0].Len = size;
  846. c->SG[0].Ext = 0;  // we are not chaining
  847. }
  848. /*
  849.          * Disable interrupt
  850.          */
  851. #ifdef CCISS_DEBUG
  852. printk(KERN_DEBUG "cciss: turning intr offn");
  853. #endif /* CCISS_DEBUG */ 
  854.         info_p->access.set_intr_mask(info_p, CCISS_INTR_OFF);
  855. /* Make sure there is room in the command FIFO */
  856.         /* Actually it should be completely empty at this time. */
  857.         for (i = 200000; i > 0; i--) 
  858. {
  859. /* if fifo isn't full go */
  860.                 if (!(info_p->access.fifo_full(info_p))) 
  861. {
  862.                         break;
  863.                 }
  864.                 udelay(10);
  865.                 printk(KERN_WARNING "cciss cciss%d: SendCmd FIFO full,"
  866.                         " waiting!n", ctlr);
  867.         }
  868.         /*
  869.          * Send the cmd
  870.          */
  871.         info_p->access.submit_command(info_p, c);
  872.         complete = pollcomplete(ctlr);
  873. #ifdef CCISS_DEBUG
  874. printk(KERN_DEBUG "cciss: command completedn");
  875. #endif /* CCISS_DEBUG */
  876. /* unlock the data buffer from DMA */
  877. pci_unmap_single(info_p->pdev, (dma_addr_t) buff_dma_handle.val,
  878.                                 size, PCI_DMA_BIDIRECTIONAL);
  879. if (complete != 1) {
  880. if ( (complete & CISS_ERROR_BIT)
  881.      && (complete & ~CISS_ERROR_BIT) == c->busaddr)
  882.      {
  883. /* if data overrun or underun on Report command 
  884. ignore it 
  885. */
  886. if (((c->Request.CDB[0] == CISS_REPORT_LOG) ||
  887.      (c->Request.CDB[0] == CISS_INQUIRY)) &&
  888. ((c->err_info->CommandStatus == 
  889. CMD_DATA_OVERRUN) || 
  890.  (c->err_info->CommandStatus == 
  891. CMD_DATA_UNDERRUN)
  892.   ))
  893. {
  894. complete = c->busaddr;
  895. } else
  896. {
  897. printk(KERN_WARNING "ciss ciss%d: sendcmd"
  898. " Error %x n", ctlr, 
  899. c->err_info->CommandStatus); 
  900. printk(KERN_WARNING "ciss ciss%d: sendcmd"
  901. " offensive infon"
  902. "  size %xn   num %x   value %xn", ctlr,
  903.   c->err_info->MoreErrInfo.Invalid_Cmd.offense_size,
  904.   c->err_info->MoreErrInfo.Invalid_Cmd.offense_num,
  905.   c->err_info->MoreErrInfo.Invalid_Cmd.offense_value);
  906. cmd_free(info_p,c, 1);
  907. return(IO_ERROR);
  908. }
  909. }
  910.                 if (complete != c->busaddr) {
  911.                         printk( KERN_WARNING "cciss cciss%d: SendCmd "
  912.                       "Invalid command list address returned! (%lx)n",
  913.                                 ctlr, complete);
  914.                         cmd_free(info_p, c, 1);
  915.                         return (IO_ERROR);
  916.                 }
  917.         } else {
  918.                 printk( KERN_WARNING
  919.                         "cciss cciss%d: SendCmd Timeout out, "
  920.                         "No command list address returned!n",
  921.                         ctlr);
  922.                 cmd_free(info_p, c, 1);
  923.                 return (IO_ERROR);
  924.         }
  925. cmd_free(info_p, c, 1);
  926.         return (IO_OK);
  927. /*
  928.  * Map (physical) PCI mem into (virtual) kernel space
  929.  */
  930. static ulong remap_pci_mem(ulong base, ulong size)
  931. {
  932.         ulong page_base        = ((ulong) base) & PAGE_MASK;
  933.         ulong page_offs        = ((ulong) base) - page_base;
  934.         ulong page_remapped    = (ulong) ioremap(page_base, page_offs+size);
  935.         return (ulong) (page_remapped ? (page_remapped + page_offs) : 0UL);
  936. }
  937. /*
  938.  * Enqueuing and dequeuing functions for cmdlists.
  939.  */
  940. static inline void addQ(CommandList_struct **Qptr, CommandList_struct *c)
  941. {
  942.         if (*Qptr == NULL) {
  943.                 *Qptr = c;
  944.                 c->next = c->prev = c;
  945.         } else {
  946.                 c->prev = (*Qptr)->prev;
  947.                 c->next = (*Qptr);
  948.                 (*Qptr)->prev->next = c;
  949.                 (*Qptr)->prev = c;
  950.         }
  951. }
  952. static inline CommandList_struct *removeQ(CommandList_struct **Qptr, 
  953. CommandList_struct *c)
  954. {
  955.         if (c && c->next != c) {
  956.                 if (*Qptr == c) *Qptr = c->next;
  957.                 c->prev->next = c->next;
  958.                 c->next->prev = c->prev;
  959.         } else {
  960.                 *Qptr = NULL;
  961.         }
  962.         return c;
  963. }
  964. /* 
  965.  * Takes jobs of the Q and sends them to the hardware, then puts it on 
  966.  * the Q to wait for completion. 
  967.  */ 
  968. static void start_io( ctlr_info_t *h)
  969. {
  970. CommandList_struct *c;
  971. while(( c = h->reqQ) != NULL )
  972. {
  973. /* can't do anything if fifo is full */
  974. if ((h->access.fifo_full(h)))
  975. {
  976. printk(KERN_WARNING "cciss: fifo full n");
  977. return;
  978. }
  979. /* Get the frist entry from the Request Q */ 
  980. removeQ(&(h->reqQ), c);
  981. h->Qdepth--;
  982. /* Tell the controller execute command */ 
  983. h->access.submit_command(h, c);
  984. /* Put job onto the completed Q */ 
  985. addQ (&(h->cmpQ), c); 
  986. }
  987. }
  988. static inline void complete_buffers( struct buffer_head *bh, int status)
  989. {
  990. struct buffer_head *xbh;
  991. while(bh)
  992. {
  993. xbh = bh->b_reqnext; 
  994. bh->b_reqnext = NULL; 
  995. blk_finished_io(bh->b_size >> 9);
  996. bh->b_end_io(bh, status);
  997. bh = xbh;
  998. }
  999. /* checks the status of the job and calls complete buffers to mark all 
  1000.  * buffers for the completed job. 
  1001.  */ 
  1002. static inline void complete_command( CommandList_struct *cmd, int timeout)
  1003. {
  1004. int status = 1;
  1005. int i;
  1006. u64bit temp64;
  1007. if (timeout)
  1008. status = 0; 
  1009. /* unmap the DMA mapping for all the scatter gather elements */
  1010. for(i=0; i<cmd->Header.SGList; i++)
  1011. {
  1012. temp64.val32.lower = cmd->SG[i].Addr.lower;
  1013. temp64.val32.upper = cmd->SG[i].Addr.upper;
  1014. pci_unmap_single(hba[cmd->ctlr]->pdev,
  1015. temp64.val, cmd->SG[i].Len, 
  1016. (cmd->Request.Type.Direction == XFER_READ) ? 
  1017. PCI_DMA_FROMDEVICE : PCI_DMA_TODEVICE);
  1018. }
  1019. if(cmd->err_info->CommandStatus != 0) 
  1020. { /* an error has occurred */ 
  1021. switch(cmd->err_info->CommandStatus)
  1022. {
  1023. case CMD_TARGET_STATUS:
  1024. printk(KERN_WARNING "cciss: cmd %p has "
  1025. " completed with errorsn", cmd);
  1026. if( cmd->err_info->ScsiStatus)
  1027.                  {
  1028.                      printk(KERN_WARNING "cciss: cmd %p "
  1029. "has SCSI Status = %xn",
  1030.                          cmd,  
  1031. cmd->err_info->ScsiStatus);
  1032.                  }
  1033. break;
  1034. case CMD_DATA_UNDERRUN:
  1035. printk(KERN_WARNING "cciss: cmd %p has"
  1036. " completed with data underrun "
  1037. "reportedn", cmd);
  1038. break;
  1039. case CMD_DATA_OVERRUN:
  1040. printk(KERN_WARNING "cciss: cmd %p has"
  1041. " completed with data overrun "
  1042. "reportedn", cmd);
  1043. break;
  1044. case CMD_INVALID:
  1045. printk(KERN_WARNING "cciss: cmd %p is "
  1046. "reported invalidn", cmd);
  1047. status = 0;
  1048. break;
  1049. case CMD_PROTOCOL_ERR:
  1050.                                 printk(KERN_WARNING "cciss: cmd %p has "
  1051. "protocol error n", cmd);
  1052.                                 status = 0;
  1053.                         break;
  1054. case CMD_HARDWARE_ERR:
  1055.                                 printk(KERN_WARNING "cciss: cmd %p had " 
  1056.                                         " hardware errorn", cmd);
  1057.                                 status = 0;
  1058.                         break;
  1059. case CMD_CONNECTION_LOST:
  1060. printk(KERN_WARNING "cciss: cmd %p had "
  1061. "connection lostn", cmd);
  1062. status=0;
  1063. break;
  1064. case CMD_ABORTED:
  1065. printk(KERN_WARNING "cciss: cmd %p was "
  1066. "abortedn", cmd);
  1067. status=0;
  1068. break;
  1069. case CMD_ABORT_FAILED:
  1070. printk(KERN_WARNING "cciss: cmd %p reports "
  1071. "abort failedn", cmd);
  1072. status=0;
  1073. break;
  1074. case CMD_UNSOLICITED_ABORT:
  1075. printk(KERN_WARNING "cciss: cmd %p aborted "
  1076. "do to an unsolicited abortn", cmd);
  1077. status=0;
  1078. break;
  1079. case CMD_TIMEOUT:
  1080. printk(KERN_WARNING "cciss: cmd %p timedoutn",
  1081. cmd);
  1082. status=0;
  1083. break;
  1084. default:
  1085. printk(KERN_WARNING "cciss: cmd %p returned "
  1086. "unknown status %xn", cmd, 
  1087. cmd->err_info->CommandStatus); 
  1088. status=0;
  1089. }
  1090. }
  1091. complete_buffers(cmd->rq->bh, status);
  1092. #ifdef CCISS_DEBUG
  1093. printk("Done with %pn", cmd->rq);
  1094. #endif /* CCISS_DEBUG */ 
  1095. end_that_request_last(cmd->rq);
  1096. }
  1097. static inline int cpq_new_segment(request_queue_t *q, struct request *rq,
  1098.                                   int max_segments)
  1099. {
  1100.         if (rq->nr_segments < MAXSGENTRIES) {
  1101.                 rq->nr_segments++;
  1102.                 return 1;
  1103.         }
  1104.         return 0;
  1105. }
  1106. static int cpq_back_merge_fn(request_queue_t *q, struct request *rq,
  1107.                              struct buffer_head *bh, int max_segments)
  1108. {
  1109.         if (rq->bhtail->b_data + rq->bhtail->b_size == bh->b_data)
  1110.                 return 1;
  1111.         return cpq_new_segment(q, rq, max_segments);
  1112. }
  1113. static int cpq_front_merge_fn(request_queue_t *q, struct request *rq,
  1114.                              struct buffer_head *bh, int max_segments)
  1115. {
  1116.         if (bh->b_data + bh->b_size == rq->bh->b_data)
  1117.                 return 1;
  1118.         return cpq_new_segment(q, rq, max_segments);
  1119. }
  1120. static int cpq_merge_requests_fn(request_queue_t *q, struct request *rq,
  1121.                                  struct request *nxt, int max_segments)
  1122. {
  1123.         int total_segments = rq->nr_segments + nxt->nr_segments;
  1124.         if (rq->bhtail->b_data + rq->bhtail->b_size == nxt->bh->b_data)
  1125.                 total_segments--;
  1126.         if (total_segments > MAXSGENTRIES)
  1127.                 return 0;
  1128.         rq->nr_segments = total_segments;
  1129.         return 1;
  1130. }
  1131. /* 
  1132.  * Get a request and submit it to the controller. 
  1133.  * Currently we do one request at a time.  Ideally we would like to send
  1134.  * everything to the controller on the first call, but there is a danger
  1135.  * of holding the io_request_lock for to long.  
  1136.  */
  1137. static void do_cciss_request(request_queue_t *q)
  1138. {
  1139. ctlr_info_t *h= q->queuedata; 
  1140. CommandList_struct *c;
  1141. int log_unit, start_blk, seg;
  1142. char *lastdataend;
  1143. struct buffer_head *bh;
  1144. struct list_head *queue_head = &q->queue_head;
  1145. struct request *creq;
  1146. u64bit temp64;
  1147. struct my_sg tmp_sg[MAXSGENTRIES];
  1148. int i;
  1149. if (q->plugged)
  1150. goto startio;
  1151. queue_next:
  1152. if (list_empty(queue_head))
  1153. goto startio;
  1154. creq = blkdev_entry_next_request(queue_head); 
  1155. if (creq->nr_segments > MAXSGENTRIES)
  1156.                 BUG();
  1157.         if (h->ctlr != MAJOR(creq->rq_dev)-MAJOR_NR )
  1158.         {
  1159.                 printk(KERN_WARNING "doreq cmd for %d, %x at %pn",
  1160.                                 h->ctlr, creq->rq_dev, creq);
  1161.                 blkdev_dequeue_request(creq);
  1162.                 complete_buffers(creq->bh, 0);
  1163. end_that_request_last(creq);
  1164. goto startio;
  1165.         }
  1166. if (( c = cmd_alloc(h, 1)) == NULL)
  1167. goto startio;
  1168. blkdev_dequeue_request(creq);
  1169. spin_unlock_irq(&io_request_lock);
  1170. c->cmd_type = CMD_RWREQ;      
  1171. bh = creq->bh;
  1172. c->rq = creq;
  1173. /* fill in the request */ 
  1174. log_unit = MINOR(creq->rq_dev) >> NWD_SHIFT; 
  1175. c->Header.ReplyQueue = 0;  // unused in simple mode
  1176. c->Header.Tag.lower = c->busaddr;  // use the physical address the cmd block for tag
  1177. c->Header.LUN.LogDev.VolId= hba[h->ctlr]->drv[log_unit].LunID;
  1178. c->Header.LUN.LogDev.Mode = 1;
  1179. c->Request.CDBLen = 10; // 12 byte commands not in FW yet;
  1180. c->Request.Type.Type =  TYPE_CMD; // It is a command. 
  1181. c->Request.Type.Attribute = ATTR_SIMPLE; 
  1182. c->Request.Type.Direction = 
  1183. (creq->cmd == READ) ? XFER_READ: XFER_WRITE; 
  1184. c->Request.Timeout = 0; // Don't time out
  1185. c->Request.CDB[0] = (creq->cmd == READ) ? CCISS_READ : CCISS_WRITE;
  1186. start_blk = hba[h->ctlr]->hd[MINOR(creq->rq_dev)].start_sect + creq->sector;
  1187. #ifdef CCISS_DEBUG
  1188. if (bh == NULL)
  1189. panic("cciss: bh== NULL?");
  1190. printk(KERN_DEBUG "ciss: sector =%d nr_sectors=%dn",(int) creq->sector,
  1191. (int) creq->nr_sectors);
  1192. #endif /* CCISS_DEBUG */
  1193. seg = 0; 
  1194. lastdataend = NULL;
  1195. while(bh)
  1196. {
  1197. if (bh->b_data == lastdataend)
  1198. {  // tack it on to the last segment 
  1199. tmp_sg[seg-1].len +=bh->b_size;
  1200. lastdataend += bh->b_size;
  1201. } else
  1202. {
  1203. if (seg == MAXSGENTRIES)
  1204. BUG();
  1205. tmp_sg[seg].len = bh->b_size;
  1206. tmp_sg[seg].start_addr = bh->b_data;
  1207. lastdataend = bh->b_data + bh->b_size;
  1208. seg++;
  1209. }
  1210. bh = bh->b_reqnext;
  1211. }
  1212. /* get the DMA records for the setup */ 
  1213. for (i=0; i<seg; i++)
  1214. {
  1215. c->SG[i].Len = tmp_sg[i].len;
  1216. temp64.val = (__u64) pci_map_single( h->pdev,
  1217. tmp_sg[i].start_addr,
  1218. tmp_sg[i].len,
  1219. (c->Request.Type.Direction == XFER_READ) ? 
  1220.                                 PCI_DMA_FROMDEVICE : PCI_DMA_TODEVICE);
  1221. c->SG[i].Addr.lower = temp64.val32.lower;
  1222.                 c->SG[i].Addr.upper = temp64.val32.upper;
  1223.                 c->SG[i].Ext = 0;  // we are not chaining
  1224. }
  1225. /* track how many SG entries we are using */ 
  1226. if( seg > h->maxSG)
  1227. h->maxSG = seg; 
  1228. #ifdef CCISS_DEBUG
  1229. printk(KERN_DEBUG "cciss: Submitting %d sectors in %d segmentsn", creq->nr_sectors, seg);
  1230. #endif /* CCISS_DEBUG */
  1231. c->Header.SGList = c->Header.SGTotal = seg;
  1232. c->Request.CDB[1]= 0;
  1233. c->Request.CDB[2]= (start_blk >> 24) & 0xff; //MSB
  1234. c->Request.CDB[3]= (start_blk >> 16) & 0xff;
  1235. c->Request.CDB[4]= (start_blk >>  8) & 0xff;
  1236. c->Request.CDB[5]= start_blk & 0xff;
  1237. c->Request.CDB[6]= 0; // (sect >> 24) & 0xff; MSB
  1238. c->Request.CDB[7]= (creq->nr_sectors >>  8) & 0xff; 
  1239. c->Request.CDB[8]= creq->nr_sectors & 0xff; 
  1240. c->Request.CDB[9] = c->Request.CDB[11] = c->Request.CDB[12] = 0;
  1241. spin_lock_irq(&io_request_lock);
  1242. addQ(&(h->reqQ),c);
  1243. h->Qdepth++;
  1244. if(h->Qdepth > h->maxQsinceinit)
  1245. h->maxQsinceinit = h->Qdepth; 
  1246. goto queue_next;
  1247. startio:
  1248. start_io(h);
  1249. }
  1250. static void do_cciss_intr(int irq, void *dev_id, struct pt_regs *regs)
  1251. {
  1252. ctlr_info_t *h = dev_id;
  1253. CommandList_struct *c;
  1254. unsigned long flags;
  1255. __u32 a, a1;
  1256. /* Is this interrupt for us? */
  1257. if ( h->access.intr_pending(h) == 0)
  1258. return;
  1259. /*
  1260.  * If there are completed commands in the completion queue,
  1261.  * we had better do something about it.
  1262.  */
  1263. spin_lock_irqsave(&io_request_lock, flags);
  1264. while( h->access.intr_pending(h))
  1265. {
  1266. while((a = h->access.command_completed(h)) != FIFO_EMPTY) 
  1267. {
  1268. a1 = a;
  1269. a &= ~3;
  1270. if ((c = h->cmpQ) == NULL)
  1271. {  
  1272. printk(KERN_WARNING "cciss: Completion of %08lx ignoredn", (unsigned long)a1);
  1273. continue;
  1274. while(c->busaddr != a) {
  1275. c = c->next;
  1276. if (c == h->cmpQ) 
  1277. break;
  1278. }
  1279. /*
  1280.  * If we've found the command, take it off the
  1281.  * completion Q and free it
  1282.  */
  1283.  if (c->busaddr == a) {
  1284. removeQ(&h->cmpQ, c);
  1285. if (c->cmd_type == CMD_RWREQ) {
  1286. complete_command(c, 0);
  1287. cmd_free(h, c, 1);
  1288. } else if (c->cmd_type == CMD_IOCTL_PEND) {
  1289. c->cmd_type = CMD_IOCTL_DONE;
  1290. }
  1291. continue;
  1292. }
  1293. }
  1294. }
  1295. /*
  1296.  * See if we can queue up some more IO
  1297.  */
  1298. do_cciss_request(BLK_DEFAULT_QUEUE(MAJOR_NR + h->ctlr));
  1299. spin_unlock_irqrestore(&io_request_lock, flags);
  1300. }
  1301. /* 
  1302.  *  We cannot read the structure directly, for portablity we must use 
  1303.  *   the io functions.
  1304.  *   This is for debug only. 
  1305.  */
  1306. #ifdef CCISS_DEBUG
  1307. static void print_cfg_table( CfgTable_struct *tb)
  1308. {
  1309. int i;
  1310. char temp_name[17];
  1311. printk("Controller Configuration informationn");
  1312. printk("------------------------------------n");
  1313. for(i=0;i<4;i++)
  1314. temp_name[i] = readb(&(tb->Signature[i]));
  1315. temp_name[4]='';
  1316. printk("   Signature = %sn", temp_name); 
  1317. printk("   Spec Number = %dn", readl(&(tb->SpecValence)));
  1318. printk("   Transport methods supported = 0x%xn", 
  1319. readl(&(tb-> TransportSupport)));
  1320. printk("   Transport methods active = 0x%xn", 
  1321. readl(&(tb->TransportActive)));
  1322. printk("   Requested transport Method = 0x%xn", 
  1323. readl(&(tb->HostWrite.TransportRequest)));
  1324. printk("   Coalese Interrupt Delay = 0x%xn", 
  1325. readl(&(tb->HostWrite.CoalIntDelay)));
  1326. printk("   Coalese Interrupt Count = 0x%xn", 
  1327. readl(&(tb->HostWrite.CoalIntCount)));
  1328. printk("   Max outstanding commands = 0x%dn", 
  1329. readl(&(tb->CmdsOutMax)));
  1330. printk("   Bus Types = 0x%xn", readl(&(tb-> BusTypes)));
  1331. for(i=0;i<16;i++)
  1332. temp_name[i] = readb(&(tb->ServerName[i]));
  1333. temp_name[16] = '';
  1334. printk("   Server Name = %sn", temp_name);
  1335. printk("   Heartbeat Counter = 0x%xnnn", 
  1336. readl(&(tb->HeartBeat)));
  1337. }
  1338. #endif /* CCISS_DEBUG */ 
  1339. static int cciss_pci_init(ctlr_info_t *c, struct pci_dev *pdev)
  1340. {
  1341. ushort vendor_id, device_id, command;
  1342. unchar cache_line_size, latency_timer;
  1343. unchar irq, revision;
  1344. uint addr[6];
  1345. __u32 board_id;
  1346. int cfg_offset;
  1347. int cfg_base_addr;
  1348. int cfg_base_addr_index;
  1349. int i;
  1350. vendor_id = pdev->vendor;
  1351. device_id = pdev->device;
  1352. irq = pdev->irq;
  1353. for(i=0; i<6; i++)
  1354. addr[i] = pdev->resource[i].start;
  1355. if (pci_enable_device(pdev))
  1356. {
  1357. printk(KERN_ERR "cciss: Unable to Enable PCI devicen");
  1358. return( -1);
  1359. }
  1360. if (pci_set_dma_mask(pdev, CCISS_DMA_MASK ) != 0)
  1361. {
  1362. printk(KERN_ERR "cciss:  Unable to set DMA maskn");
  1363. return(-1);
  1364. }
  1365. (void) pci_read_config_word(pdev, PCI_COMMAND,&command);
  1366. (void) pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
  1367. (void) pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE,
  1368. &cache_line_size);
  1369. (void) pci_read_config_byte(pdev, PCI_LATENCY_TIMER,
  1370. &latency_timer);
  1371. (void) pci_read_config_dword(pdev, PCI_SUBSYSTEM_VENDOR_ID, 
  1372. &board_id);
  1373. #ifdef CCISS_DEBUG
  1374. printk("vendor_id = %xn", vendor_id);
  1375. printk("device_id = %xn", device_id);
  1376. printk("command = %xn", command);
  1377. for(i=0; i<6; i++)
  1378. printk("addr[%d] = %xn", i, addr[i]);
  1379. printk("revision = %xn", revision);
  1380. printk("irq = %xn", irq);
  1381. printk("cache_line_size = %xn", cache_line_size);
  1382. printk("latency_timer = %xn", latency_timer);
  1383. printk("board_id = %xn", board_id);
  1384. #endif /* CCISS_DEBUG */ 
  1385. c->intr = irq;
  1386. /*
  1387.  * Memory base addr is first addr , the second points to the config
  1388.          *   table
  1389.  */
  1390. c->paddr = addr[0] & 0xfffffff0; /* remove the addressing mode bits */
  1391. #ifdef CCISS_DEBUG
  1392. printk("address 0 = %xn", c->paddr);
  1393. #endif /* CCISS_DEBUG */ 
  1394. c->vaddr = remap_pci_mem(c->paddr, 200);
  1395. /* get the address index number */
  1396. cfg_base_addr = readl(c->vaddr + SA5_CTCFG_OFFSET);
  1397. /* I am not prepared to deal with a 64 bit address value */
  1398. cfg_base_addr &= 0xffff;
  1399. #ifdef CCISS_DEBUG
  1400. printk("cfg base address = %xn", cfg_base_addr);
  1401. #endif /* CCISS_DEBUG */
  1402. cfg_base_addr_index = (cfg_base_addr  - PCI_BASE_ADDRESS_0)/4;
  1403. #ifdef CCISS_DEBUG
  1404. printk("cfg base address index = %xn", cfg_base_addr_index);
  1405. #endif /* CCISS_DEBUG */
  1406. cfg_offset = readl(c->vaddr + SA5_CTMEM_OFFSET);
  1407. #ifdef CCISS_DEBUG
  1408. printk("cfg offset = %xn", cfg_offset);
  1409. #endif /* CCISS_DEBUG */
  1410. c->cfgtable = (CfgTable_struct *) 
  1411. remap_pci_mem((addr[cfg_base_addr_index] & 0xfffffff0)
  1412. + cfg_offset, sizeof(CfgTable_struct));
  1413. c->board_id = board_id;
  1414. #ifdef CCISS_DEBUG
  1415. print_cfg_table(c->cfgtable); 
  1416. #endif /* CCISS_DEBUG */
  1417. for(i=0; i<NR_PRODUCTS; i++) {
  1418. if (board_id == products[i].board_id) {
  1419. c->product_name = products[i].product_name;
  1420. c->access = *(products[i].access);
  1421. break;
  1422. }
  1423. }
  1424. if (i == NR_PRODUCTS) {
  1425. printk(KERN_WARNING "cciss: Sorry, I don't know how"
  1426. " to access the Smart Array controller %08lxn", 
  1427. (unsigned long)board_id);
  1428. return -1;
  1429. }
  1430. if (  (readb(&c->cfgtable->Signature[0]) != 'C') ||
  1431.       (readb(&c->cfgtable->Signature[1]) != 'I') ||
  1432.       (readb(&c->cfgtable->Signature[2]) != 'S') ||
  1433.       (readb(&c->cfgtable->Signature[3]) != 'S') )
  1434. {
  1435. printk("Does not appear to be a valid CISS config tablen");
  1436. return -1;
  1437. }
  1438. #ifdef CCISS_DEBUG
  1439. printk("Trying to put board into Simple moden");
  1440. #endif /* CCISS_DEBUG */ 
  1441. c->max_commands = readl(&(c->cfgtable->CmdsOutMax));
  1442. /* Update the field, and then ring the doorbell */ 
  1443. writel( CFGTBL_Trans_Simple, 
  1444. &(c->cfgtable->HostWrite.TransportRequest));
  1445. writel( CFGTBL_ChangeReq, c->vaddr + SA5_DOORBELL);
  1446. for(i=0;i<MAX_CONFIG_WAIT;i++)
  1447. {
  1448. if (!(readl(c->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
  1449. break;
  1450. /* delay and try again */
  1451. udelay(1000);
  1452. }
  1453. #ifdef CCISS_DEBUG
  1454. printk(KERN_DEBUG "I counter got to %d %xn", i, readl(c->vaddr + SA5_DOORBELL));
  1455. #endif /* CCISS_DEBUG */
  1456. #ifdef CCISS_DEBUG
  1457. print_cfg_table(c->cfgtable);
  1458. #endif /* CCISS_DEBUG */ 
  1459. if (!(readl(&(c->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
  1460. {
  1461. printk(KERN_WARNING "cciss: unable to get board into"
  1462. " simple moden");
  1463. return -1;
  1464. }
  1465. return 0;
  1466. }
  1467. /* 
  1468.  * Gets information about the local volumes attached to the controller. 
  1469.  */ 
  1470. static void cciss_getgeometry(int cntl_num)
  1471. {
  1472. ReportLunData_struct *ld_buff;
  1473. ReadCapdata_struct *size_buff;
  1474. InquiryData_struct *inq_buff;
  1475. int return_code;
  1476. int i;
  1477. int listlength = 0;
  1478. int lunid = 0;
  1479. int block_size;
  1480. int total_size; 
  1481. ld_buff = kmalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
  1482. if (ld_buff == NULL)
  1483. {
  1484. printk(KERN_ERR "cciss: out of memoryn");
  1485. return;
  1486. }
  1487. memset(ld_buff, 0, sizeof(ReportLunData_struct));
  1488. size_buff = kmalloc(sizeof( ReadCapdata_struct), GFP_KERNEL);
  1489.         if (size_buff == NULL)
  1490.         {
  1491.                 printk(KERN_ERR "cciss: out of memoryn");
  1492. kfree(ld_buff);
  1493.                 return;
  1494.         }
  1495. inq_buff = kmalloc(sizeof( InquiryData_struct), GFP_KERNEL);
  1496.         if (inq_buff == NULL)
  1497.         {
  1498.                 printk(KERN_ERR "cciss: out of memoryn");
  1499.                 kfree(ld_buff);
  1500. kfree(size_buff);
  1501.                 return;
  1502.         }
  1503. /* Get the firmware version */ 
  1504. return_code = sendcmd(CISS_INQUIRY, cntl_num, inq_buff, 
  1505. sizeof(InquiryData_struct), 0, 0 ,0 );
  1506. if (return_code == IO_OK)
  1507. {
  1508. hba[cntl_num]->firm_ver[0] = inq_buff->data_byte[32];
  1509. hba[cntl_num]->firm_ver[1] = inq_buff->data_byte[33];
  1510. hba[cntl_num]->firm_ver[2] = inq_buff->data_byte[34];
  1511. hba[cntl_num]->firm_ver[3] = inq_buff->data_byte[35];
  1512. } else /* send command failed */
  1513. {
  1514. printk(KERN_WARNING "cciss: unable to determine firmware"
  1515. " version of controllern");
  1516. }
  1517. /* Get the number of logical volumes */ 
  1518. return_code = sendcmd(CISS_REPORT_LOG, cntl_num, ld_buff, 
  1519. sizeof(ReportLunData_struct), 0, 0, 0 );
  1520. if( return_code == IO_OK)
  1521. {
  1522. #ifdef CCISS_DEBUG
  1523. printk("LUN Datan--------------------------n");
  1524. #endif /* CCISS_DEBUG */ 
  1525. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[0])) << 24;
  1526. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[1])) << 16;
  1527. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[2])) << 8;
  1528. listlength |= 0xff & (unsigned int)(ld_buff->LUNListLength[3]);
  1529. } else /* reading number of logical volumes failed */
  1530. {
  1531. printk(KERN_WARNING "cciss: report logical volume"
  1532. " command failedn");
  1533. listlength = 0;
  1534. }
  1535. hba[cntl_num]->num_luns = listlength / 8; // 8 bytes pre entry
  1536. if (hba[cntl_num]->num_luns > CISS_MAX_LUN)
  1537. {
  1538. printk(KERN_ERR "ciss:  only %d number of logical volumes supportedn",
  1539. CISS_MAX_LUN);
  1540. hba[cntl_num]->num_luns = CISS_MAX_LUN;
  1541. }
  1542. #ifdef CCISS_DEBUG
  1543. printk(KERN_DEBUG "Length = %x %x %x %x = %dn", ld_buff->LUNListLength[0],
  1544. ld_buff->LUNListLength[1], ld_buff->LUNListLength[2],
  1545. ld_buff->LUNListLength[3],  hba[cntl_num]->num_luns);
  1546. #endif /* CCISS_DEBUG */
  1547. for(i=0; i<  hba[cntl_num]->num_luns ; i++)
  1548. {
  1549.    lunid = (0xff & (unsigned int)(ld_buff->LUN[i][3])) << 24;
  1550.          lunid |= (0xff & (unsigned int)(ld_buff->LUN[i][2])) << 16;
  1551.          lunid |= (0xff & (unsigned int)(ld_buff->LUN[i][1])) << 8;
  1552.          lunid |= 0xff & (unsigned int)(ld_buff->LUN[i][0]);
  1553. hba[cntl_num]->drv[i].LunID = lunid;
  1554. #ifdef CCISS_DEBUG
  1555.    printk(KERN_DEBUG "LUN[%d]:  %x %x %x %x = %xn", i, 
  1556. ld_buff->LUN[i][0], ld_buff->LUN[i][1],ld_buff->LUN[i][2], 
  1557. ld_buff->LUN[i][3], hba[cntl_num]->drv[i].LunID);
  1558. #endif /* CCISS_DEBUG */
  1559.    memset(size_buff, 0, sizeof(ReadCapdata_struct));
  1560.    return_code = sendcmd(CCISS_READ_CAPACITY, cntl_num, size_buff, 
  1561. sizeof( ReadCapdata_struct), 1, i, 0 );
  1562.    if (return_code == IO_OK)
  1563. {
  1564. total_size = (0xff & 
  1565. (unsigned int)(size_buff->total_size[0])) << 24;
  1566. total_size |= (0xff & 
  1567. (unsigned int)(size_buff->total_size[1])) << 16;
  1568. total_size |= (0xff & 
  1569. (unsigned int)(size_buff->total_size[2])) << 8;
  1570. total_size |= (0xff & (unsigned int)
  1571. (size_buff->total_size[3])); 
  1572. total_size++; // command returns highest block address
  1573. block_size = (0xff & 
  1574. (unsigned int)(size_buff->block_size[0])) << 24;
  1575.                  block_size |= (0xff & 
  1576. (unsigned int)(size_buff->block_size[1])) << 16;
  1577.                  block_size |= (0xff & 
  1578. (unsigned int)(size_buff->block_size[2])) << 8;
  1579.                  block_size |= (0xff & 
  1580. (unsigned int)(size_buff->block_size[3]));
  1581. } else /* read capacity command failed */ 
  1582. {
  1583. printk(KERN_WARNING "cciss: read capacity failedn");
  1584. total_size = block_size = 0; 
  1585. }
  1586. printk(KERN_INFO "      blocks= %d block_size= %dn", 
  1587. total_size, block_size);
  1588. /* Execute the command to read the disk geometry */
  1589. memset(inq_buff, 0, sizeof(InquiryData_struct));
  1590. return_code = sendcmd(CISS_INQUIRY, cntl_num, inq_buff,
  1591.                  sizeof(InquiryData_struct), 1, i ,0xC1 );
  1592.    if (return_code == IO_OK)
  1593. {
  1594. if(inq_buff->data_byte[8] == 0xFF)
  1595. {
  1596.    printk(KERN_WARNING "cciss: reading geometry failed, volume does not support reading geometryn");
  1597.                            hba[cntl_num]->drv[i].block_size = block_size;
  1598.                            hba[cntl_num]->drv[i].nr_blocks = total_size;
  1599.                            hba[cntl_num]->drv[i].heads = 255;
  1600.                            hba[cntl_num]->drv[i].sectors = 32; // Sectors per track
  1601.                            hba[cntl_num]->drv[i].cylinders = total_size / 255 / 32;                 } else
  1602. {
  1603.      hba[cntl_num]->drv[i].block_size = block_size;
  1604.                            hba[cntl_num]->drv[i].nr_blocks = total_size;
  1605.                            hba[cntl_num]->drv[i].heads = 
  1606. inq_buff->data_byte[6]; 
  1607.                            hba[cntl_num]->drv[i].sectors = 
  1608. inq_buff->data_byte[7]; 
  1609.    hba[cntl_num]->drv[i].cylinders = 
  1610. (inq_buff->data_byte[4] & 0xff) << 8;
  1611.    hba[cntl_num]->drv[i].cylinders += 
  1612.                                         inq_buff->data_byte[5];
  1613. }
  1614. }
  1615. else /* Get geometry failed */
  1616. {
  1617. printk(KERN_WARNING "cciss: reading geometry failed, continuing with default geometryn"); 
  1618. hba[cntl_num]->drv[i].block_size = block_size;
  1619. hba[cntl_num]->drv[i].nr_blocks = total_size;
  1620. hba[cntl_num]->drv[i].heads = 255;
  1621. hba[cntl_num]->drv[i].sectors = 32; // Sectors per track 
  1622. hba[cntl_num]->drv[i].cylinders = total_size / 255 / 32;
  1623. }
  1624. printk(KERN_INFO "      heads= %d, sectors= %d, cylinders= %dnn",
  1625. hba[cntl_num]->drv[i].heads, 
  1626. hba[cntl_num]->drv[i].sectors,
  1627. hba[cntl_num]->drv[i].cylinders);
  1628. }
  1629. kfree(ld_buff);
  1630. kfree(size_buff);
  1631. }
  1632. /* Function to find the first free pointer into our hba[] array */
  1633. /* Returns -1 if no free entries are left.  */
  1634. static int alloc_cciss_hba(void)
  1635. {
  1636. int i;
  1637. for(i=0; i< MAX_CTLR; i++)
  1638. {
  1639. if (hba[i] == NULL)
  1640. {
  1641. hba[i] = kmalloc(sizeof(ctlr_info_t), GFP_KERNEL);
  1642. if(hba[i]==NULL)
  1643. {
  1644. printk(KERN_ERR "cciss: out of memory.n");
  1645. return (-1);
  1646. }
  1647. return (i);
  1648. }
  1649. }
  1650. printk(KERN_WARNING "cciss: This driver supports a maximum"
  1651. " of 8 controllers.n");
  1652. return(-1);
  1653. }
  1654. static void free_hba(int i)
  1655. {
  1656. kfree(hba[i]);
  1657. hba[i]=NULL;
  1658. }
  1659. /*
  1660.  *  This is it.  Find all the controllers and register them.  I really hate
  1661.  *  stealing all these major device numbers.
  1662.  *  returns the number of block devices registered.
  1663.  */
  1664. static int __init cciss_init_one(struct pci_dev *pdev,
  1665. const struct pci_device_id *ent)
  1666. {
  1667. request_queue_t *q;
  1668. int i;
  1669. int j;
  1670. printk(KERN_DEBUG "cciss: Device 0x%x has been found at"
  1671. " bus %d dev %d func %dn",
  1672. pdev->device, pdev->bus->number, PCI_SLOT(pdev->devfn),
  1673. PCI_FUNC(pdev->devfn));
  1674. i = alloc_cciss_hba();
  1675. if( i < 0 ) 
  1676. return (-1);
  1677. memset(hba[i], 0, sizeof(ctlr_info_t));
  1678. if (cciss_pci_init(hba[i], pdev) != 0)
  1679. {
  1680. free_hba(i);
  1681. return (-1);
  1682. }
  1683. sprintf(hba[i]->devname, "cciss%d", i);
  1684. hba[i]->ctlr = i;
  1685. hba[i]->pdev = pdev;
  1686. if( register_blkdev(MAJOR_NR+i, hba[i]->devname, &cciss_fops))
  1687. {
  1688. printk(KERN_ERR "cciss:  Unable to get major number "
  1689. "%d for %sn", MAJOR_NR+i, hba[i]->devname);
  1690. free_hba(i);
  1691. return(-1);
  1692. }
  1693. /* make sure the board interrupts are off */
  1694. hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_OFF);
  1695. if( request_irq(hba[i]->intr, do_cciss_intr, 
  1696. SA_INTERRUPT|SA_SHIRQ, hba[i]->devname, hba[i]))
  1697. {
  1698. printk(KERN_ERR "ciss: Unable to get irq %d for %sn",
  1699. hba[i]->intr, hba[i]->devname);
  1700. unregister_blkdev( MAJOR_NR+i, hba[i]->devname);
  1701. free_hba(i);
  1702. return(-1);
  1703. }
  1704. hba[i]->cmd_pool_bits = (__u32*)kmalloc(
  1705.          ((NR_CMDS+31)/32)*sizeof(__u32), GFP_KERNEL);
  1706. hba[i]->cmd_pool = (CommandList_struct *)pci_alloc_consistent(
  1707. hba[i]->pdev, NR_CMDS * sizeof(CommandList_struct), 
  1708. &(hba[i]->cmd_pool_dhandle));
  1709. hba[i]->errinfo_pool = (ErrorInfo_struct *)pci_alloc_consistent(
  1710. hba[i]->pdev, NR_CMDS * sizeof( ErrorInfo_struct), 
  1711. &(hba[i]->errinfo_pool_dhandle));
  1712. if((hba[i]->cmd_pool_bits == NULL) 
  1713. || (hba[i]->cmd_pool == NULL)
  1714. || (hba[i]->errinfo_pool == NULL))
  1715.         {
  1716. if(hba[i]->cmd_pool_bits)
  1717.                  kfree(hba[i]->cmd_pool_bits);
  1718.                 if(hba[i]->cmd_pool)
  1719.                  pci_free_consistent(hba[i]->pdev,  
  1720. NR_CMDS * sizeof(CommandList_struct), 
  1721. hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
  1722. if(hba[i]->errinfo_pool)
  1723. pci_free_consistent(hba[i]->pdev,
  1724. NR_CMDS * sizeof( ErrorInfo_struct),
  1725. hba[i]->errinfo_pool, 
  1726. hba[i]->errinfo_pool_dhandle);
  1727.                 free_irq(hba[i]->intr, hba[i]);
  1728.                 unregister_blkdev(MAJOR_NR+i, hba[i]->devname);
  1729. free_hba(i);
  1730.                 printk( KERN_ERR "cciss: out of memory");
  1731. return(-1);
  1732. }
  1733. /* Initialize the pdev driver private data. 
  1734. have it point to hba[i].  */
  1735. pci_set_drvdata(pdev, hba[i]);
  1736. /* command and error info recs zeroed out before 
  1737. they are used */
  1738.         memset(hba[i]->cmd_pool_bits, 0, ((NR_CMDS+31)/32)*sizeof(__u32));
  1739. #ifdef CCISS_DEBUG
  1740. printk(KERN_DEBUG "Scanning for drives on controller cciss%dn",i);
  1741. #endif /* CCISS_DEBUG */
  1742. cciss_getgeometry(i);
  1743. /* Turn the interrupts on so we can service requests */
  1744. hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_ON);
  1745. cciss_procinit(i);
  1746. q = BLK_DEFAULT_QUEUE(MAJOR_NR + i);
  1747.         q->queuedata = hba[i];
  1748.         blk_init_queue(q, do_cciss_request);
  1749.         blk_queue_headactive(q, 0);
  1750. /* fill in the other Kernel structs */
  1751. blksize_size[MAJOR_NR+i] = hba[i]->blocksizes;
  1752.         hardsect_size[MAJOR_NR+i] = hba[i]->hardsizes;
  1753.         read_ahead[MAJOR_NR+i] = READ_AHEAD;
  1754. /* Set the pointers to queue functions */ 
  1755. q->back_merge_fn = cpq_back_merge_fn;
  1756.         q->front_merge_fn = cpq_front_merge_fn;
  1757.         q->merge_requests_fn = cpq_merge_requests_fn;
  1758. /* Fill in the gendisk data */ 
  1759. hba[i]->gendisk.major = MAJOR_NR + i;
  1760. hba[i]->gendisk.major_name = "cciss";
  1761. hba[i]->gendisk.minor_shift = NWD_SHIFT;
  1762. hba[i]->gendisk.max_p = MAX_PART;
  1763. hba[i]->gendisk.part = hba[i]->hd;
  1764. hba[i]->gendisk.sizes = hba[i]->sizes;
  1765. hba[i]->gendisk.nr_real = hba[i]->num_luns;
  1766. /* Get on the disk list */ 
  1767. add_gendisk(&(hba[i]->gendisk));
  1768. cciss_geninit(i);
  1769. for(j=0; j<NWD; j++)
  1770. register_disk(&(hba[i]->gendisk),
  1771. MKDEV(MAJOR_NR+i, j <<4), 
  1772. MAX_PART, &cciss_fops, 
  1773. hba[i]->drv[j].nr_blocks);
  1774. return(1);
  1775. }
  1776. static void __devexit cciss_remove_one (struct pci_dev *pdev)
  1777. {
  1778. ctlr_info_t *tmp_ptr;
  1779. int i;
  1780. if (pci_get_drvdata(pdev) == NULL)
  1781. {
  1782. printk( KERN_ERR "cciss: Unable to remove device n");
  1783. return;
  1784. }
  1785. tmp_ptr = pci_get_drvdata(pdev);
  1786. i = tmp_ptr->ctlr;
  1787. if (hba[i] == NULL) 
  1788. {
  1789. printk(KERN_ERR "cciss: device appears to "
  1790. "already be removed n");
  1791. return;
  1792. }
  1793. /* Turn board interrupts off */
  1794. hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_OFF);
  1795. free_irq(hba[i]->intr, hba[i]);
  1796. pci_set_drvdata(pdev, NULL);
  1797. iounmap((void*)hba[i]->vaddr);
  1798. unregister_blkdev(MAJOR_NR+i, hba[i]->devname);
  1799. remove_proc_entry(hba[i]->devname, proc_cciss);
  1800. /* remove it from the disk list */
  1801. del_gendisk(&(hba[i]->gendisk));
  1802. pci_free_consistent(hba[i]->pdev, NR_CMDS * sizeof(CommandList_struct), 
  1803. hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
  1804. pci_free_consistent(hba[i]->pdev, NR_CMDS * sizeof( ErrorInfo_struct),
  1805. hba[i]->errinfo_pool, hba[i]->errinfo_pool_dhandle);
  1806. kfree(hba[i]->cmd_pool_bits);
  1807. free_hba(i);
  1808. }
  1809. static struct pci_driver cciss_pci_driver = {
  1810.  name:   "cciss",
  1811. probe:  cciss_init_one,
  1812. remove:  __devexit_p(cciss_remove_one),
  1813. id_table:  cciss_pci_device_id, /* id_table */
  1814. };
  1815. /*
  1816. *  This is it.  Register the PCI driver information for the cards we control
  1817. *  the OS will call our registered routines when it finds one of our cards. 
  1818. */
  1819. int __init cciss_init(void)
  1820. {
  1821. printk(KERN_INFO DRIVER_NAME "n");
  1822. /* Register for out PCI devices */
  1823. if (pci_register_driver(&cciss_pci_driver) > 0 )
  1824. return 0;
  1825. else 
  1826. return -ENODEV;
  1827.  }
  1828. EXPORT_NO_SYMBOLS;
  1829. static int __init init_cciss_module(void)
  1830. {
  1831. return ( cciss_init());
  1832. }
  1833. static void __exit cleanup_cciss_module(void)
  1834. {
  1835. int i;
  1836. pci_unregister_driver(&cciss_pci_driver);
  1837. /* double check that all controller entrys have been removed */
  1838. for (i=0; i< MAX_CTLR; i++) 
  1839. {
  1840. if (hba[i] != NULL)
  1841. {
  1842. printk(KERN_WARNING "cciss: had to remove"
  1843. " controller %dn", i);
  1844. cciss_remove_one(hba[i]->pdev);
  1845. }
  1846. }
  1847. remove_proc_entry("cciss", proc_root_driver);
  1848. }
  1849. module_init(init_cciss_module);
  1850. module_exit(cleanup_cciss_module);