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

驱动编程

开发平台:

Unix_Linux

  1. /*
  2.  *    Disk Array driver for HP SA 5xxx and 6xxx Controllers
  3.  *    Copyright 2000, 2005 Hewlett-Packard Development Company, L.P.
  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 iss_storagedev@hp.com
  20.  *
  21.  */
  22. #include <linux/config.h> /* CONFIG_PROC_FS */
  23. #include <linux/module.h>
  24. #include <linux/interrupt.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/bio.h>
  33. #include <linux/blkpg.h>
  34. #include <linux/timer.h>
  35. #include <linux/proc_fs.h>
  36. #include <linux/init.h> 
  37. #include <linux/hdreg.h>
  38. #include <linux/spinlock.h>
  39. #include <linux/compat.h>
  40. #include <asm/uaccess.h>
  41. #include <asm/io.h>
  42. #include <linux/dma-mapping.h>
  43. #include <linux/blkdev.h>
  44. #include <linux/genhd.h>
  45. #include <linux/completion.h>
  46. #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin))
  47. #define DRIVER_NAME "HP CISS Driver (v 2.6.8)"
  48. #define DRIVER_VERSION CCISS_DRIVER_VERSION(2,6,8)
  49. /* Embedded module documentation macros - see modules.h */
  50. MODULE_AUTHOR("Hewlett-Packard Company");
  51. MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 2.6.8");
  52. MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400"
  53. " SA6i P600 P800 P400 P400i E200 E200i");
  54. MODULE_LICENSE("GPL");
  55. #include "cciss_cmd.h"
  56. #include "cciss.h"
  57. #include <linux/cciss_ioctl.h>
  58. /* define the PCI info for the cards we can control */
  59. static const struct pci_device_id cciss_pci_device_id[] = {
  60. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISS,
  61. 0x0E11, 0x4070, 0, 0, 0},
  62. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB,
  63.                         0x0E11, 0x4080, 0, 0, 0},
  64. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB,
  65.                         0x0E11, 0x4082, 0, 0, 0},
  66. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB,
  67.                         0x0E11, 0x4083, 0, 0, 0},
  68. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC,
  69. 0x0E11, 0x409A, 0, 0, 0},
  70. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC,
  71. 0x0E11, 0x409B, 0, 0, 0},
  72. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC,
  73. 0x0E11, 0x409C, 0, 0, 0},
  74. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC,
  75. 0x0E11, 0x409D, 0, 0, 0},
  76. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC,
  77. 0x0E11, 0x4091, 0, 0, 0},
  78. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSA,
  79. 0x103C, 0x3225, 0, 0, 0},
  80. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC,
  81. 0x103c, 0x3223, 0, 0, 0},
  82. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC,
  83. 0x103c, 0x3234, 0, 0, 0},
  84. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC,
  85. 0x103c, 0x3235, 0, 0, 0},
  86. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD,
  87. 0x103c, 0x3211, 0, 0, 0},
  88. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD,
  89. 0x103c, 0x3212, 0, 0, 0},
  90. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD,
  91. 0x103c, 0x3213, 0, 0, 0},
  92. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD,
  93. 0x103c, 0x3214, 0, 0, 0},
  94. { PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD,
  95. 0x103c, 0x3215, 0, 0, 0},
  96. {0,}
  97. };
  98. MODULE_DEVICE_TABLE(pci, cciss_pci_device_id);
  99. #define NR_PRODUCTS (sizeof(products)/sizeof(struct board_type))
  100. /*  board_id = Subsystem Device ID & Vendor ID
  101.  *  product = Marketing Name for the board
  102.  *  access = Address of the struct of function pointers 
  103.  */
  104. static struct board_type products[] = {
  105. { 0x40700E11, "Smart Array 5300", &SA5_access },
  106. { 0x40800E11, "Smart Array 5i", &SA5B_access},
  107. { 0x40820E11, "Smart Array 532", &SA5B_access},
  108. { 0x40830E11, "Smart Array 5312", &SA5B_access},
  109. { 0x409A0E11, "Smart Array 641", &SA5_access},
  110. { 0x409B0E11, "Smart Array 642", &SA5_access},
  111. { 0x409C0E11, "Smart Array 6400", &SA5_access},
  112. { 0x409D0E11, "Smart Array 6400 EM", &SA5_access},
  113. { 0x40910E11, "Smart Array 6i", &SA5_access},
  114. { 0x3225103C, "Smart Array P600", &SA5_access},
  115. { 0x3223103C, "Smart Array P800", &SA5_access},
  116. { 0x3234103C, "Smart Array P400", &SA5_access},
  117. { 0x3235103C, "Smart Array P400i", &SA5_access},
  118. { 0x3211103C, "Smart Array E200i", &SA5_access},
  119. { 0x3212103C, "Smart Array E200", &SA5_access},
  120. { 0x3213103C, "Smart Array E200i", &SA5_access},
  121. { 0x3214103C, "Smart Array E200i", &SA5_access},
  122. { 0x3215103C, "Smart Array E200i", &SA5_access},
  123. };
  124. /* How long to wait (in millesconds) for board to go into simple mode */
  125. #define MAX_CONFIG_WAIT 30000 
  126. #define MAX_IOCTL_CONFIG_WAIT 1000
  127. /*define how many times we will try a command because of bus resets */
  128. #define MAX_CMD_RETRIES 3
  129. #define READ_AHEAD   1024
  130. #define NR_CMDS  384 /* #commands that can be outstanding */
  131. #define MAX_CTLR 32
  132. /* Originally cciss driver only supports 8 major numbers */
  133. #define MAX_CTLR_ORIG  8
  134. static ctlr_info_t *hba[MAX_CTLR];
  135. static void do_cciss_request(request_queue_t *q);
  136. static int cciss_open(struct inode *inode, struct file *filep);
  137. static int cciss_release(struct inode *inode, struct file *filep);
  138. static int cciss_ioctl(struct inode *inode, struct file *filep, 
  139. unsigned int cmd, unsigned long arg);
  140. static int revalidate_allvol(ctlr_info_t *host);
  141. static int cciss_revalidate(struct gendisk *disk);
  142. static int rebuild_lun_table(ctlr_info_t *h, struct gendisk *del_disk);
  143. static int deregister_disk(struct gendisk *disk, drive_info_struct *drv, int clear_all);
  144. static void cciss_read_capacity(int ctlr, int logvol, ReadCapdata_struct *buf,
  145. int withirq, unsigned int *total_size, unsigned int *block_size);
  146. static void cciss_geometry_inquiry(int ctlr, int logvol,
  147. int withirq, unsigned int total_size,
  148. unsigned int block_size, InquiryData_struct *inq_buff,
  149. drive_info_struct *drv);
  150. static void cciss_getgeometry(int cntl_num);
  151. static void start_io( ctlr_info_t *h);
  152. static int sendcmd( __u8 cmd, int ctlr, void *buff, size_t size,
  153. unsigned int use_unit_num, unsigned int log_unit, __u8 page_code,
  154. unsigned char *scsi3addr, int cmd_type);
  155. static int sendcmd_withirq(__u8 cmd, int ctlr, void *buff, size_t size,
  156. unsigned int use_unit_num, unsigned int log_unit, __u8 page_code,
  157. int cmd_type);
  158. static void fail_all_cmds(unsigned long ctlr);
  159. #ifdef CONFIG_PROC_FS
  160. static int cciss_proc_get_info(char *buffer, char **start, off_t offset, 
  161. int length, int *eof, void *data);
  162. static void cciss_procinit(int i);
  163. #else
  164. static void cciss_procinit(int i) {}
  165. #endif /* CONFIG_PROC_FS */
  166. #ifdef CONFIG_COMPAT
  167. static long cciss_compat_ioctl(struct file *f, unsigned cmd, unsigned long arg);
  168. #endif
  169. static struct block_device_operations cciss_fops  = {
  170. .owner = THIS_MODULE,
  171. .open = cciss_open, 
  172. .release        = cciss_release,
  173.         .ioctl = cciss_ioctl,
  174. #ifdef CONFIG_COMPAT
  175. .compat_ioctl   = cciss_compat_ioctl,
  176. #endif
  177. .revalidate_disk= cciss_revalidate,
  178. };
  179. /*
  180.  * Enqueuing and dequeuing functions for cmdlists.
  181.  */
  182. static inline void addQ(CommandList_struct **Qptr, CommandList_struct *c)
  183. {
  184.         if (*Qptr == NULL) {
  185.                 *Qptr = c;
  186.                 c->next = c->prev = c;
  187.         } else {
  188.                 c->prev = (*Qptr)->prev;
  189.                 c->next = (*Qptr);
  190.                 (*Qptr)->prev->next = c;
  191.                 (*Qptr)->prev = c;
  192.         }
  193. }
  194. static inline CommandList_struct *removeQ(CommandList_struct **Qptr, 
  195. CommandList_struct *c)
  196. {
  197.         if (c && c->next != c) {
  198.                 if (*Qptr == c) *Qptr = c->next;
  199.                 c->prev->next = c->next;
  200.                 c->next->prev = c->prev;
  201.         } else {
  202.                 *Qptr = NULL;
  203.         }
  204.         return c;
  205. }
  206. #include "cciss_scsi.c" /* For SCSI tape support */
  207. #ifdef CONFIG_PROC_FS
  208. /*
  209.  * Report information about this controller.
  210.  */
  211. #define ENG_GIG 1000000000
  212. #define ENG_GIG_FACTOR (ENG_GIG/512)
  213. #define RAID_UNKNOWN 6
  214. static const char *raid_label[] = {"0","4","1(1+0)","5","5+1","ADG",
  215.                                    "UNKNOWN"};
  216. static struct proc_dir_entry *proc_cciss;
  217. static int cciss_proc_get_info(char *buffer, char **start, off_t offset, 
  218. int length, int *eof, void *data)
  219. {
  220.         off_t pos = 0;
  221.         off_t len = 0;
  222.         int size, i, ctlr;
  223.         ctlr_info_t *h = (ctlr_info_t*)data;
  224.         drive_info_struct *drv;
  225. unsigned long flags;
  226.         sector_t vol_sz, vol_sz_frac;
  227.         ctlr = h->ctlr;
  228. /* prevent displaying bogus info during configuration
  229.  * or deconfiguration of a logical volume
  230.  */
  231. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  232. if (h->busy_configuring) {
  233. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  234. return -EBUSY;
  235. }
  236. h->busy_configuring = 1;
  237. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  238.         size = sprintf(buffer, "%s: HP %s Controllern"
  239. "Board ID: 0x%08lxn"
  240. "Firmware Version: %c%c%c%cn"
  241. "IRQ: %dn"
  242. "Logical drives: %dn"
  243. "Current Q depth: %dn"
  244. "Current # commands on controller: %dn"
  245. "Max Q depth since init: %dn"
  246. "Max # commands on controller since init: %dn"
  247. "Max SG entries since init: %dnn",
  248.                 h->devname,
  249.                 h->product_name,
  250.                 (unsigned long)h->board_id,
  251. h->firm_ver[0], h->firm_ver[1], h->firm_ver[2], h->firm_ver[3],
  252.                 (unsigned int)h->intr,
  253.                 h->num_luns, 
  254. h->Qdepth, h->commands_outstanding,
  255. h->maxQsinceinit, h->max_outstanding, h->maxSG);
  256.         pos += size; len += size;
  257. cciss_proc_tape_report(ctlr, buffer, &pos, &len);
  258. for(i=0; i<=h->highest_lun; i++) {
  259.                 drv = &h->drv[i];
  260. if (drv->heads == 0)
  261. continue;
  262. vol_sz = drv->nr_blocks;
  263. vol_sz_frac = sector_div(vol_sz, ENG_GIG_FACTOR);
  264. vol_sz_frac *= 100;
  265. sector_div(vol_sz_frac, ENG_GIG_FACTOR);
  266. if (drv->raid_level > 5)
  267. drv->raid_level = RAID_UNKNOWN;
  268. size = sprintf(buffer+len, "cciss/c%dd%d:"
  269. "t%4u.%02uGBtRAID %sn",
  270. ctlr, i, (int)vol_sz, (int)vol_sz_frac,
  271. raid_label[drv->raid_level]);
  272.                 pos += size; len += size;
  273.         }
  274.         *eof = 1;
  275.         *start = buffer+offset;
  276.         len -= offset;
  277.         if (len>length)
  278.                 len = length;
  279. h->busy_configuring = 0;
  280.         return len;
  281. }
  282. static int 
  283. cciss_proc_write(struct file *file, const char __user *buffer, 
  284. unsigned long count, void *data)
  285. {
  286. unsigned char cmd[80];
  287. int len;
  288. #ifdef CONFIG_CISS_SCSI_TAPE
  289. ctlr_info_t *h = (ctlr_info_t *) data;
  290. int rc;
  291. #endif
  292. if (count > sizeof(cmd)-1) return -EINVAL;
  293. if (copy_from_user(cmd, buffer, count)) return -EFAULT;
  294. cmd[count] = '';
  295. len = strlen(cmd); // above 3 lines ensure safety
  296. if (len && cmd[len-1] == 'n')
  297. cmd[--len] = '';
  298. # ifdef CONFIG_CISS_SCSI_TAPE
  299. if (strcmp("engage scsi", cmd)==0) {
  300. rc = cciss_engage_scsi(h->ctlr);
  301. if (rc != 0) return -rc;
  302. return count;
  303. }
  304. /* might be nice to have "disengage" too, but it's not 
  305.    safely possible. (only 1 module use count, lock issues.) */
  306. # endif
  307. return -EINVAL;
  308. }
  309. /*
  310.  * Get us a file in /proc/cciss that says something about each controller.
  311.  * Create /proc/cciss if it doesn't exist yet.
  312.  */
  313. static void __devinit cciss_procinit(int i)
  314. {
  315. struct proc_dir_entry *pde;
  316.         if (proc_cciss == NULL) {
  317.                 proc_cciss = proc_mkdir("cciss", proc_root_driver);
  318.                 if (!proc_cciss) 
  319. return;
  320.         }
  321. pde = create_proc_read_entry(hba[i]->devname, 
  322. S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH, 
  323. proc_cciss, cciss_proc_get_info, hba[i]);
  324. pde->write_proc = cciss_proc_write;
  325. }
  326. #endif /* CONFIG_PROC_FS */
  327. /* 
  328.  * For operations that cannot sleep, a command block is allocated at init, 
  329.  * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
  330.  * which ones are free or in use.  For operations that can wait for kmalloc 
  331.  * to possible sleep, this routine can be called with get_from_pool set to 0. 
  332.  * cmd_free() MUST be called with a got_from_pool set to 0 if cmd_alloc was. 
  333.  */ 
  334. static CommandList_struct * cmd_alloc(ctlr_info_t *h, int get_from_pool)
  335. {
  336. CommandList_struct *c;
  337. int i; 
  338. u64bit temp64;
  339. dma_addr_t cmd_dma_handle, err_dma_handle;
  340. if (!get_from_pool)
  341. {
  342. c = (CommandList_struct *) pci_alloc_consistent(
  343. h->pdev, sizeof(CommandList_struct), &cmd_dma_handle); 
  344.          if(c==NULL)
  345.                   return NULL;
  346. memset(c, 0, sizeof(CommandList_struct));
  347. c->cmdindex = -1;
  348. c->err_info = (ErrorInfo_struct *)pci_alloc_consistent(
  349. h->pdev, sizeof(ErrorInfo_struct), 
  350. &err_dma_handle);
  351. if (c->err_info == NULL)
  352. {
  353. pci_free_consistent(h->pdev, 
  354. sizeof(CommandList_struct), c, cmd_dma_handle);
  355. return NULL;
  356. }
  357. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  358. } else /* get it out of the controllers pool */ 
  359. {
  360.       do {
  361.                  i = find_first_zero_bit(h->cmd_pool_bits, NR_CMDS);
  362.                         if (i == NR_CMDS)
  363.                                 return NULL;
  364.                 } while(test_and_set_bit(i & (BITS_PER_LONG - 1), h->cmd_pool_bits+(i/BITS_PER_LONG)) != 0);
  365. #ifdef CCISS_DEBUG
  366. printk(KERN_DEBUG "cciss: using command buffer %dn", i);
  367. #endif
  368.                 c = h->cmd_pool + i;
  369. memset(c, 0, sizeof(CommandList_struct));
  370. cmd_dma_handle = h->cmd_pool_dhandle 
  371. + i*sizeof(CommandList_struct);
  372. c->err_info = h->errinfo_pool + i;
  373. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  374. err_dma_handle = h->errinfo_pool_dhandle 
  375. + i*sizeof(ErrorInfo_struct);
  376.                 h->nr_allocs++;
  377. c->cmdindex = i;
  378.         }
  379. c->busaddr = (__u32) cmd_dma_handle;
  380. temp64.val = (__u64) err_dma_handle;
  381. c->ErrDesc.Addr.lower = temp64.val32.lower;
  382. c->ErrDesc.Addr.upper = temp64.val32.upper;
  383. c->ErrDesc.Len = sizeof(ErrorInfo_struct);
  384. c->ctlr = h->ctlr;
  385.         return c;
  386. }
  387. /* 
  388.  * Frees a command block that was previously allocated with cmd_alloc(). 
  389.  */
  390. static void cmd_free(ctlr_info_t *h, CommandList_struct *c, int got_from_pool)
  391. {
  392. int i;
  393. u64bit temp64;
  394. if( !got_from_pool)
  395. temp64.val32.lower = c->ErrDesc.Addr.lower;
  396. temp64.val32.upper = c->ErrDesc.Addr.upper;
  397. pci_free_consistent(h->pdev, sizeof(ErrorInfo_struct), 
  398. c->err_info, (dma_addr_t) temp64.val);
  399. pci_free_consistent(h->pdev, sizeof(CommandList_struct), 
  400. c, (dma_addr_t) c->busaddr);
  401. } else 
  402. {
  403. i = c - h->cmd_pool;
  404. clear_bit(i&(BITS_PER_LONG-1), h->cmd_pool_bits+(i/BITS_PER_LONG));
  405.                 h->nr_frees++;
  406.         }
  407. }
  408. static inline ctlr_info_t *get_host(struct gendisk *disk)
  409. {
  410. return disk->queue->queuedata; 
  411. }
  412. static inline drive_info_struct *get_drv(struct gendisk *disk)
  413. {
  414. return disk->private_data;
  415. }
  416. /*
  417.  * Open.  Make sure the device is really there.
  418.  */
  419. static int cciss_open(struct inode *inode, struct file *filep)
  420. {
  421. ctlr_info_t *host = get_host(inode->i_bdev->bd_disk);
  422. drive_info_struct *drv = get_drv(inode->i_bdev->bd_disk);
  423. #ifdef CCISS_DEBUG
  424. printk(KERN_DEBUG "cciss_open %sn", inode->i_bdev->bd_disk->disk_name);
  425. #endif /* CCISS_DEBUG */ 
  426. if (host->busy_initializing || drv->busy_configuring)
  427. return -EBUSY;
  428. /*
  429.  * Root is allowed to open raw volume zero even if it's not configured
  430.  * so array config can still work. Root is also allowed to open any
  431.  * volume that has a LUN ID, so it can issue IOCTL to reread the
  432.  * disk information.  I don't think I really like this
  433.  * but I'm already using way to many device nodes to claim another one
  434.  * for "raw controller".
  435.  */
  436. if (drv->nr_blocks == 0) {
  437. if (iminor(inode) != 0) {  /* not node 0? */
  438. /* if not node 0 make sure it is a partition = 0 */
  439. if (iminor(inode) & 0x0f) {
  440. return -ENXIO;
  441. /* if it is, make sure we have a LUN ID */
  442. } else if (drv->LunID == 0) {
  443. return -ENXIO;
  444. }
  445. }
  446. if (!capable(CAP_SYS_ADMIN))
  447. return -EPERM;
  448. }
  449. drv->usage_count++;
  450. host->usage_count++;
  451. return 0;
  452. }
  453. /*
  454.  * Close.  Sync first.
  455.  */
  456. static int cciss_release(struct inode *inode, struct file *filep)
  457. {
  458. ctlr_info_t *host = get_host(inode->i_bdev->bd_disk);
  459. drive_info_struct *drv = get_drv(inode->i_bdev->bd_disk);
  460. #ifdef CCISS_DEBUG
  461. printk(KERN_DEBUG "cciss_release %sn", inode->i_bdev->bd_disk->disk_name);
  462. #endif /* CCISS_DEBUG */
  463. drv->usage_count--;
  464. host->usage_count--;
  465. return 0;
  466. }
  467. #ifdef CONFIG_COMPAT
  468. static int do_ioctl(struct file *f, unsigned cmd, unsigned long arg)
  469. {
  470. int ret;
  471. lock_kernel();
  472. ret = cciss_ioctl(f->f_dentry->d_inode, f, cmd, arg);
  473. unlock_kernel();
  474. return ret;
  475. }
  476. static int cciss_ioctl32_passthru(struct file *f, unsigned cmd, unsigned long arg);
  477. static int cciss_ioctl32_big_passthru(struct file *f, unsigned cmd, unsigned long arg);
  478. static long cciss_compat_ioctl(struct file *f, unsigned cmd, unsigned long arg)
  479. {
  480. switch (cmd) {
  481. case CCISS_GETPCIINFO:
  482. case CCISS_GETINTINFO:
  483. case CCISS_SETINTINFO:
  484. case CCISS_GETNODENAME:
  485. case CCISS_SETNODENAME:
  486. case CCISS_GETHEARTBEAT:
  487. case CCISS_GETBUSTYPES:
  488. case CCISS_GETFIRMVER:
  489. case CCISS_GETDRIVVER:
  490. case CCISS_REVALIDVOLS:
  491. case CCISS_DEREGDISK:
  492. case CCISS_REGNEWDISK:
  493. case CCISS_REGNEWD:
  494. case CCISS_RESCANDISK:
  495. case CCISS_GETLUNINFO:
  496. return do_ioctl(f, cmd, arg);
  497. case CCISS_PASSTHRU32:
  498. return cciss_ioctl32_passthru(f, cmd, arg);
  499. case CCISS_BIG_PASSTHRU32:
  500. return cciss_ioctl32_big_passthru(f, cmd, arg);
  501. default:
  502. return -ENOIOCTLCMD;
  503. }
  504. }
  505. static int cciss_ioctl32_passthru(struct file *f, unsigned cmd, unsigned long arg)
  506. {
  507. IOCTL32_Command_struct __user *arg32 =
  508. (IOCTL32_Command_struct __user *) arg;
  509. IOCTL_Command_struct arg64;
  510. IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
  511. int err;
  512. u32 cp;
  513. err = 0;
  514. err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, sizeof(arg64.LUN_info));
  515. err |= copy_from_user(&arg64.Request, &arg32->Request, sizeof(arg64.Request));
  516. err |= copy_from_user(&arg64.error_info, &arg32->error_info, sizeof(arg64.error_info));
  517. err |= get_user(arg64.buf_size, &arg32->buf_size);
  518. err |= get_user(cp, &arg32->buf);
  519. arg64.buf = compat_ptr(cp);
  520. err |= copy_to_user(p, &arg64, sizeof(arg64));
  521. if (err)
  522. return -EFAULT;
  523. err = do_ioctl(f, CCISS_PASSTHRU, (unsigned long) p);
  524. if (err)
  525. return err;
  526. err |= copy_in_user(&arg32->error_info, &p->error_info, sizeof(arg32->error_info));
  527. if (err)
  528. return -EFAULT;
  529. return err;
  530. }
  531. static int cciss_ioctl32_big_passthru(struct file *file, unsigned cmd, unsigned long arg)
  532. {
  533. BIG_IOCTL32_Command_struct __user *arg32 =
  534. (BIG_IOCTL32_Command_struct __user *) arg;
  535. BIG_IOCTL_Command_struct arg64;
  536. BIG_IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
  537. int err;
  538. u32 cp;
  539. err = 0;
  540. err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, sizeof(arg64.LUN_info));
  541. err |= copy_from_user(&arg64.Request, &arg32->Request, sizeof(arg64.Request));
  542. err |= copy_from_user(&arg64.error_info, &arg32->error_info, sizeof(arg64.error_info));
  543. err |= get_user(arg64.buf_size, &arg32->buf_size);
  544. err |= get_user(arg64.malloc_size, &arg32->malloc_size);
  545. err |= get_user(cp, &arg32->buf);
  546. arg64.buf = compat_ptr(cp);
  547. err |= copy_to_user(p, &arg64, sizeof(arg64));
  548. if (err)
  549.  return -EFAULT;
  550. err = do_ioctl(file, CCISS_BIG_PASSTHRU, (unsigned long) p);
  551. if (err)
  552. return err;
  553. err |= copy_in_user(&arg32->error_info, &p->error_info, sizeof(arg32->error_info));
  554. if (err)
  555. return -EFAULT;
  556. return err;
  557. }
  558. #endif
  559. /*
  560.  * ioctl 
  561.  */
  562. static int cciss_ioctl(struct inode *inode, struct file *filep, 
  563. unsigned int cmd, unsigned long arg)
  564. {
  565. struct block_device *bdev = inode->i_bdev;
  566. struct gendisk *disk = bdev->bd_disk;
  567. ctlr_info_t *host = get_host(disk);
  568. drive_info_struct *drv = get_drv(disk);
  569. int ctlr = host->ctlr;
  570. void __user *argp = (void __user *)arg;
  571. #ifdef CCISS_DEBUG
  572. printk(KERN_DEBUG "cciss_ioctl: Called with cmd=%x %lxn", cmd, arg);
  573. #endif /* CCISS_DEBUG */ 
  574. switch(cmd) {
  575. case HDIO_GETGEO:
  576. {
  577.                 struct hd_geometry driver_geo;
  578.                 if (drv->cylinders) {
  579.                         driver_geo.heads = drv->heads;
  580.                         driver_geo.sectors = drv->sectors;
  581.                         driver_geo.cylinders = drv->cylinders;
  582.                 } else
  583. return -ENXIO;
  584.                 driver_geo.start= get_start_sect(inode->i_bdev);
  585.                 if (copy_to_user(argp, &driver_geo, sizeof(struct hd_geometry)))
  586.                         return  -EFAULT;
  587.                 return(0);
  588. }
  589. case CCISS_GETPCIINFO:
  590. {
  591. cciss_pci_info_struct pciinfo;
  592. if (!arg) return -EINVAL;
  593. pciinfo.domain = pci_domain_nr(host->pdev->bus);
  594. pciinfo.bus = host->pdev->bus->number;
  595. pciinfo.dev_fn = host->pdev->devfn;
  596. pciinfo.board_id = host->board_id;
  597. if (copy_to_user(argp, &pciinfo,  sizeof( cciss_pci_info_struct )))
  598. return  -EFAULT;
  599. return(0);
  600. }
  601. case CCISS_GETINTINFO:
  602. {
  603. cciss_coalint_struct intinfo;
  604. if (!arg) return -EINVAL;
  605. intinfo.delay = readl(&host->cfgtable->HostWrite.CoalIntDelay);
  606. intinfo.count = readl(&host->cfgtable->HostWrite.CoalIntCount);
  607. if (copy_to_user(argp, &intinfo, sizeof( cciss_coalint_struct )))
  608. return -EFAULT;
  609.                 return(0);
  610.         }
  611. case CCISS_SETINTINFO:
  612.         {
  613.                 cciss_coalint_struct intinfo;
  614. unsigned long flags;
  615. int i;
  616. if (!arg) return -EINVAL;
  617. if (!capable(CAP_SYS_ADMIN)) return -EPERM;
  618. if (copy_from_user(&intinfo, argp, sizeof( cciss_coalint_struct)))
  619. return -EFAULT;
  620. if ( (intinfo.delay == 0 ) && (intinfo.count == 0))
  621. {
  622. // printk("cciss_ioctl: delay and count cannot be 0n");
  623. return( -EINVAL);
  624. }
  625. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  626. /* Update the field, and then ring the doorbell */ 
  627. writel( intinfo.delay, 
  628. &(host->cfgtable->HostWrite.CoalIntDelay));
  629. writel( intinfo.count, 
  630.                         &(host->cfgtable->HostWrite.CoalIntCount));
  631. writel( CFGTBL_ChangeReq, host->vaddr + SA5_DOORBELL);
  632. for(i=0;i<MAX_IOCTL_CONFIG_WAIT;i++) {
  633. if (!(readl(host->vaddr + SA5_DOORBELL) 
  634. & CFGTBL_ChangeReq))
  635. break;
  636. /* delay and try again */
  637. udelay(1000);
  638. }
  639. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  640. if (i >= MAX_IOCTL_CONFIG_WAIT)
  641. return -EAGAIN;
  642.                 return(0);
  643.         }
  644. case CCISS_GETNODENAME:
  645.         {
  646.                 NodeName_type NodeName;
  647. int i; 
  648. if (!arg) return -EINVAL;
  649. for(i=0;i<16;i++)
  650. NodeName[i] = readb(&host->cfgtable->ServerName[i]);
  651.                 if (copy_to_user(argp, NodeName, sizeof( NodeName_type)))
  652.                  return  -EFAULT;
  653.                 return(0);
  654.         }
  655. case CCISS_SETNODENAME:
  656. {
  657. NodeName_type NodeName;
  658. unsigned long flags;
  659. int i;
  660. if (!arg) return -EINVAL;
  661. if (!capable(CAP_SYS_ADMIN)) return -EPERM;
  662. if (copy_from_user(NodeName, argp, sizeof( NodeName_type)))
  663. return -EFAULT;
  664. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  665. /* Update the field, and then ring the doorbell */ 
  666. for(i=0;i<16;i++)
  667. writeb( NodeName[i], &host->cfgtable->ServerName[i]);
  668. writel( CFGTBL_ChangeReq, host->vaddr + SA5_DOORBELL);
  669. for(i=0;i<MAX_IOCTL_CONFIG_WAIT;i++) {
  670. if (!(readl(host->vaddr + SA5_DOORBELL) 
  671. & CFGTBL_ChangeReq))
  672. break;
  673. /* delay and try again */
  674. udelay(1000);
  675. }
  676. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  677. if (i >= MAX_IOCTL_CONFIG_WAIT)
  678. return -EAGAIN;
  679.                 return(0);
  680.         }
  681. case CCISS_GETHEARTBEAT:
  682.         {
  683.                 Heartbeat_type heartbeat;
  684. if (!arg) return -EINVAL;
  685.                 heartbeat = readl(&host->cfgtable->HeartBeat);
  686.                 if (copy_to_user(argp, &heartbeat, sizeof( Heartbeat_type)))
  687.                  return -EFAULT;
  688.                 return(0);
  689.         }
  690. case CCISS_GETBUSTYPES:
  691.         {
  692.                 BusTypes_type BusTypes;
  693. if (!arg) return -EINVAL;
  694.                 BusTypes = readl(&host->cfgtable->BusTypes);
  695.                 if (copy_to_user(argp, &BusTypes, sizeof( BusTypes_type) ))
  696.                  return  -EFAULT;
  697.                 return(0);
  698.         }
  699. case CCISS_GETFIRMVER:
  700.         {
  701. FirmwareVer_type firmware;
  702. if (!arg) return -EINVAL;
  703. memcpy(firmware, host->firm_ver, 4);
  704.                 if (copy_to_user(argp, firmware, sizeof( FirmwareVer_type)))
  705.                  return -EFAULT;
  706.                 return(0);
  707.         }
  708.         case CCISS_GETDRIVVER:
  709.         {
  710. DriverVer_type DriverVer = DRIVER_VERSION;
  711.                 if (!arg) return -EINVAL;
  712.                 if (copy_to_user(argp, &DriverVer, sizeof( DriverVer_type) ))
  713.                  return -EFAULT;
  714.                 return(0);
  715.         }
  716. case CCISS_REVALIDVOLS:
  717. if (bdev != bdev->bd_contains || drv != host->drv)
  718. return -ENXIO;
  719.                 return revalidate_allvol(host);
  720.   case CCISS_GETLUNINFO: {
  721.   LogvolInfo_struct luninfo;
  722.  
  723.   luninfo.LunID = drv->LunID;
  724.   luninfo.num_opens = drv->usage_count;
  725.   luninfo.num_parts = 0;
  726.   if (copy_to_user(argp, &luninfo,
  727.   sizeof(LogvolInfo_struct)))
  728.   return -EFAULT;
  729.   return(0);
  730.   }
  731. case CCISS_DEREGDISK:
  732. return rebuild_lun_table(host, disk);
  733. case CCISS_REGNEWD:
  734. return rebuild_lun_table(host, NULL);
  735. case CCISS_PASSTHRU:
  736. {
  737. IOCTL_Command_struct iocommand;
  738. CommandList_struct *c;
  739. char  *buff = NULL;
  740. u64bit temp64;
  741. unsigned long flags;
  742. DECLARE_COMPLETION(wait);
  743. if (!arg) return -EINVAL;
  744. if (!capable(CAP_SYS_RAWIO)) return -EPERM;
  745. if (copy_from_user(&iocommand, argp, sizeof( IOCTL_Command_struct) ))
  746. return -EFAULT;
  747. if((iocommand.buf_size < 1) && 
  748. (iocommand.Request.Type.Direction != XFER_NONE))
  749. {
  750. return -EINVAL;
  751. #if 0 /* 'buf_size' member is 16-bits, and always smaller than kmalloc limit */
  752. /* Check kmalloc limits */
  753. if(iocommand.buf_size > 128000)
  754. return -EINVAL;
  755. #endif
  756. if(iocommand.buf_size > 0)
  757. {
  758. buff =  kmalloc(iocommand.buf_size, GFP_KERNEL);
  759. if( buff == NULL) 
  760. return -EFAULT;
  761. }
  762. if (iocommand.Request.Type.Direction == XFER_WRITE)
  763. {
  764. /* Copy the data into the buffer we created */ 
  765. if (copy_from_user(buff, iocommand.buf, iocommand.buf_size))
  766. {
  767. kfree(buff);
  768. return -EFAULT;
  769. }
  770. } else {
  771. memset(buff, 0, iocommand.buf_size);
  772. }
  773. if ((c = cmd_alloc(host , 0)) == NULL)
  774. {
  775. kfree(buff);
  776. return -ENOMEM;
  777. }
  778. // Fill in the command type 
  779. c->cmd_type = CMD_IOCTL_PEND;
  780. // Fill in Command Header 
  781. c->Header.ReplyQueue = 0;  // unused in simple mode
  782. if( iocommand.buf_size > 0)  // buffer to fill 
  783. {
  784. c->Header.SGList = 1;
  785. c->Header.SGTotal= 1;
  786. } else // no buffers to fill  
  787. {
  788. c->Header.SGList = 0;
  789.                  c->Header.SGTotal= 0;
  790. }
  791. c->Header.LUN = iocommand.LUN_info;
  792. c->Header.Tag.lower = c->busaddr;  // use the kernel address the cmd block for tag
  793. // Fill in Request block 
  794. c->Request = iocommand.Request; 
  795. // Fill in the scatter gather information
  796. if (iocommand.buf_size > 0 ) 
  797. {
  798. temp64.val = pci_map_single( host->pdev, buff,
  799.                                         iocommand.buf_size, 
  800.                                 PCI_DMA_BIDIRECTIONAL);
  801. c->SG[0].Addr.lower = temp64.val32.lower;
  802. c->SG[0].Addr.upper = temp64.val32.upper;
  803. c->SG[0].Len = iocommand.buf_size;
  804. c->SG[0].Ext = 0;  // we are not chaining
  805. }
  806. c->waiting = &wait;
  807. /* Put the request on the tail of the request queue */
  808. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  809. addQ(&host->reqQ, c);
  810. host->Qdepth++;
  811. start_io(host);
  812. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  813. wait_for_completion(&wait);
  814. /* unlock the buffers from DMA */
  815. temp64.val32.lower = c->SG[0].Addr.lower;
  816.                 temp64.val32.upper = c->SG[0].Addr.upper;
  817.                 pci_unmap_single( host->pdev, (dma_addr_t) temp64.val,
  818.                  iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
  819. /* Copy the error information out */ 
  820. iocommand.error_info = *(c->err_info);
  821. if ( copy_to_user(argp, &iocommand, sizeof( IOCTL_Command_struct) ) )
  822. {
  823. kfree(buff);
  824. cmd_free(host, c, 0);
  825. return( -EFAULT);
  826. if (iocommand.Request.Type.Direction == XFER_READ)
  827.                 {
  828.                         /* Copy the data out of the buffer we created */
  829.                         if (copy_to_user(iocommand.buf, buff, iocommand.buf_size))
  830. {
  831.                          kfree(buff);
  832. cmd_free(host, c, 0);
  833. return -EFAULT;
  834. }
  835.                 }
  836.                 kfree(buff);
  837. cmd_free(host, c, 0);
  838.                 return(0);
  839. case CCISS_BIG_PASSTHRU: {
  840. BIG_IOCTL_Command_struct *ioc;
  841. CommandList_struct *c;
  842. unsigned char **buff = NULL;
  843. int *buff_size = NULL;
  844. u64bit temp64;
  845. unsigned long flags;
  846. BYTE sg_used = 0;
  847. int status = 0;
  848. int i;
  849. DECLARE_COMPLETION(wait);
  850. __u32   left;
  851. __u32 sz;
  852. BYTE    __user *data_ptr;
  853. if (!arg)
  854. return -EINVAL;
  855. if (!capable(CAP_SYS_RAWIO))
  856. return -EPERM;
  857. ioc = (BIG_IOCTL_Command_struct *) 
  858. kmalloc(sizeof(*ioc), GFP_KERNEL);
  859. if (!ioc) {
  860. status = -ENOMEM;
  861. goto cleanup1;
  862. }
  863. if (copy_from_user(ioc, argp, sizeof(*ioc))) {
  864. status = -EFAULT;
  865. goto cleanup1;
  866. }
  867. if ((ioc->buf_size < 1) &&
  868. (ioc->Request.Type.Direction != XFER_NONE)) {
  869. status = -EINVAL;
  870. goto cleanup1;
  871. }
  872. /* Check kmalloc limits  using all SGs */
  873. if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
  874. status = -EINVAL;
  875. goto cleanup1;
  876. }
  877. if (ioc->buf_size > ioc->malloc_size * MAXSGENTRIES) {
  878. status = -EINVAL;
  879. goto cleanup1;
  880. }
  881. buff = (unsigned char **) kmalloc(MAXSGENTRIES * 
  882. sizeof(char *), GFP_KERNEL);
  883. if (!buff) {
  884. status = -ENOMEM;
  885. goto cleanup1;
  886. }
  887. memset(buff, 0, MAXSGENTRIES);
  888. buff_size = (int *) kmalloc(MAXSGENTRIES * sizeof(int), 
  889. GFP_KERNEL);
  890. if (!buff_size) {
  891. status = -ENOMEM;
  892. goto cleanup1;
  893. }
  894. left = ioc->buf_size;
  895. data_ptr = ioc->buf;
  896. while (left) {
  897. sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
  898. buff_size[sg_used] = sz;
  899. buff[sg_used] = kmalloc(sz, GFP_KERNEL);
  900. if (buff[sg_used] == NULL) {
  901. status = -ENOMEM;
  902. goto cleanup1;
  903. }
  904. if (ioc->Request.Type.Direction == XFER_WRITE &&
  905. copy_from_user(buff[sg_used], data_ptr, sz)) {
  906. status = -ENOMEM;
  907. goto cleanup1;
  908. } else {
  909. memset(buff[sg_used], 0, sz);
  910. }
  911. left -= sz;
  912. data_ptr += sz;
  913. sg_used++;
  914. }
  915. if ((c = cmd_alloc(host , 0)) == NULL) {
  916. status = -ENOMEM;
  917. goto cleanup1;
  918. }
  919. c->cmd_type = CMD_IOCTL_PEND;
  920. c->Header.ReplyQueue = 0;
  921. if( ioc->buf_size > 0) {
  922. c->Header.SGList = sg_used;
  923. c->Header.SGTotal= sg_used;
  924. } else { 
  925. c->Header.SGList = 0;
  926. c->Header.SGTotal= 0;
  927. }
  928. c->Header.LUN = ioc->LUN_info;
  929. c->Header.Tag.lower = c->busaddr;
  930. c->Request = ioc->Request;
  931. if (ioc->buf_size > 0 ) {
  932. int i;
  933. for(i=0; i<sg_used; i++) {
  934. temp64.val = pci_map_single( host->pdev, buff[i],
  935. buff_size[i],
  936. PCI_DMA_BIDIRECTIONAL);
  937. c->SG[i].Addr.lower = temp64.val32.lower;
  938. c->SG[i].Addr.upper = temp64.val32.upper;
  939. c->SG[i].Len = buff_size[i];
  940. c->SG[i].Ext = 0;  /* we are not chaining */
  941. }
  942. }
  943. c->waiting = &wait;
  944. /* Put the request on the tail of the request queue */
  945. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  946. addQ(&host->reqQ, c);
  947. host->Qdepth++;
  948. start_io(host);
  949. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  950. wait_for_completion(&wait);
  951. /* unlock the buffers from DMA */
  952. for(i=0; i<sg_used; i++) {
  953. temp64.val32.lower = c->SG[i].Addr.lower;
  954. temp64.val32.upper = c->SG[i].Addr.upper;
  955. pci_unmap_single( host->pdev, (dma_addr_t) temp64.val,
  956. buff_size[i], PCI_DMA_BIDIRECTIONAL);
  957. }
  958. /* Copy the error information out */
  959. ioc->error_info = *(c->err_info);
  960. if (copy_to_user(argp, ioc, sizeof(*ioc))) {
  961. cmd_free(host, c, 0);
  962. status = -EFAULT;
  963. goto cleanup1;
  964. }
  965. if (ioc->Request.Type.Direction == XFER_READ) {
  966. /* Copy the data out of the buffer we created */
  967. BYTE __user *ptr = ioc->buf;
  968.          for(i=0; i< sg_used; i++) {
  969. if (copy_to_user(ptr, buff[i], buff_size[i])) {
  970. cmd_free(host, c, 0);
  971. status = -EFAULT;
  972. goto cleanup1;
  973. }
  974. ptr += buff_size[i];
  975. }
  976. }
  977. cmd_free(host, c, 0);
  978. status = 0;
  979. cleanup1:
  980. if (buff) {
  981. for(i=0; i<sg_used; i++)
  982. if(buff[i] != NULL)
  983. kfree(buff[i]);
  984. kfree(buff);
  985. }
  986. if (buff_size)
  987. kfree(buff_size);
  988. if (ioc)
  989. kfree(ioc);
  990. return(status);
  991. }
  992. default:
  993. return -ENOTTY;
  994. }
  995. }
  996. /*
  997.  * revalidate_allvol is for online array config utilities.  After a
  998.  * utility reconfigures the drives in the array, it can use this function
  999.  * (through an ioctl) to make the driver zap any previous disk structs for
  1000.  * that controller and get new ones.
  1001.  *
  1002.  * Right now I'm using the getgeometry() function to do this, but this
  1003.  * function should probably be finer grained and allow you to revalidate one
  1004.  * particualar logical volume (instead of all of them on a particular
  1005.  * controller).
  1006.  */
  1007. static int revalidate_allvol(ctlr_info_t *host)
  1008. {
  1009. int ctlr = host->ctlr, i;
  1010. unsigned long flags;
  1011.         spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  1012.         if (host->usage_count > 1) {
  1013.                 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  1014.                 printk(KERN_WARNING "cciss: Device busy for volume"
  1015.                         " revalidation (usage=%d)n", host->usage_count);
  1016.                 return -EBUSY;
  1017.         }
  1018.         host->usage_count++;
  1019. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  1020. for(i=0; i< NWD; i++) {
  1021. struct gendisk *disk = host->gendisk[i];
  1022. if (disk->flags & GENHD_FL_UP)
  1023. del_gendisk(disk);
  1024. }
  1025.         /*
  1026.          * Set the partition and block size structures for all volumes
  1027.          * on this controller to zero.  We will reread all of this data
  1028.          */
  1029.         memset(host->drv,        0, sizeof(drive_info_struct)
  1030. * CISS_MAX_LUN);
  1031.         /*
  1032.          * Tell the array controller not to give us any interrupts while
  1033.          * we check the new geometry.  Then turn interrupts back on when
  1034.          * we're done.
  1035.          */
  1036.         host->access.set_intr_mask(host, CCISS_INTR_OFF);
  1037.         cciss_getgeometry(ctlr);
  1038.         host->access.set_intr_mask(host, CCISS_INTR_ON);
  1039. /* Loop through each real device */ 
  1040. for (i = 0; i < NWD; i++) {
  1041. struct gendisk *disk = host->gendisk[i];
  1042. drive_info_struct *drv = &(host->drv[i]);
  1043. /* we must register the controller even if no disks exist */
  1044. /* this is for the online array utilities */
  1045. if (!drv->heads && i)
  1046. continue;
  1047. blk_queue_hardsect_size(drv->queue, drv->block_size);
  1048. set_capacity(disk, drv->nr_blocks);
  1049. add_disk(disk);
  1050. }
  1051.         host->usage_count--;
  1052.         return 0;
  1053. }
  1054. /* This function will check the usage_count of the drive to be updated/added.
  1055.  * If the usage_count is zero then the drive information will be updated and
  1056.  * the disk will be re-registered with the kernel.  If not then it will be
  1057.  * left alone for the next reboot.  The exception to this is disk 0 which
  1058.  * will always be left registered with the kernel since it is also the
  1059.  * controller node.  Any changes to disk 0 will show up on the next
  1060.  * reboot.
  1061. */
  1062. static void cciss_update_drive_info(int ctlr, int drv_index)
  1063.   {
  1064. ctlr_info_t *h = hba[ctlr];
  1065. struct gendisk *disk;
  1066. ReadCapdata_struct *size_buff = NULL;
  1067. InquiryData_struct *inq_buff = NULL;
  1068. unsigned int block_size;
  1069. unsigned int total_size;
  1070. unsigned long flags = 0;
  1071. int ret = 0;
  1072. /* if the disk already exists then deregister it before proceeding*/
  1073. if (h->drv[drv_index].raid_level != -1){
  1074. spin_lock_irqsave(CCISS_LOCK(h->ctlr), flags);
  1075. h->drv[drv_index].busy_configuring = 1;
  1076. spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
  1077. ret = deregister_disk(h->gendisk[drv_index],
  1078. &h->drv[drv_index], 0);
  1079. h->drv[drv_index].busy_configuring = 0;
  1080. }
  1081. /* If the disk is in use return */
  1082. if (ret)
  1083. return;
  1084. /* Get information about the disk and modify the driver sturcture */
  1085. size_buff = kmalloc(sizeof( ReadCapdata_struct), GFP_KERNEL);
  1086.         if (size_buff == NULL)
  1087. goto mem_msg;
  1088. inq_buff = kmalloc(sizeof( InquiryData_struct), GFP_KERNEL);
  1089. if (inq_buff == NULL)
  1090. goto mem_msg;
  1091. cciss_read_capacity(ctlr, drv_index, size_buff, 1,
  1092. &total_size, &block_size);
  1093. cciss_geometry_inquiry(ctlr, drv_index, 1, total_size, block_size,
  1094. inq_buff, &h->drv[drv_index]);
  1095. ++h->num_luns;
  1096. disk = h->gendisk[drv_index];
  1097. set_capacity(disk, h->drv[drv_index].nr_blocks);
  1098. /* if it's the controller it's already added */
  1099. if (drv_index){
  1100. disk->queue = blk_init_queue(do_cciss_request, &h->lock);
  1101. /* Set up queue information */
  1102. disk->queue->backing_dev_info.ra_pages = READ_AHEAD;
  1103. blk_queue_bounce_limit(disk->queue, hba[ctlr]->pdev->dma_mask);
  1104. /* This is a hardware imposed limit. */
  1105. blk_queue_max_hw_segments(disk->queue, MAXSGENTRIES);
  1106. /* This is a limit in the driver and could be eliminated. */
  1107. blk_queue_max_phys_segments(disk->queue, MAXSGENTRIES);
  1108. blk_queue_max_sectors(disk->queue, 512);
  1109. disk->queue->queuedata = hba[ctlr];
  1110. blk_queue_hardsect_size(disk->queue,
  1111. hba[ctlr]->drv[drv_index].block_size);
  1112. h->drv[drv_index].queue = disk->queue;
  1113. add_disk(disk);
  1114. }
  1115. freeret:
  1116. kfree(size_buff);
  1117. kfree(inq_buff);
  1118. return;
  1119. mem_msg:
  1120. printk(KERN_ERR "cciss: out of memoryn");
  1121. goto freeret;
  1122. }
  1123. /* This function will find the first index of the controllers drive array
  1124.  * that has a -1 for the raid_level and will return that index.  This is
  1125.  * where new drives will be added.  If the index to be returned is greater
  1126.  * than the highest_lun index for the controller then highest_lun is set
  1127.  * to this new index.  If there are no available indexes then -1 is returned.
  1128. */
  1129. static int cciss_find_free_drive_index(int ctlr)
  1130. {
  1131. int i;
  1132. for (i=0; i < CISS_MAX_LUN; i++){
  1133. if (hba[ctlr]->drv[i].raid_level == -1){
  1134. if (i > hba[ctlr]->highest_lun)
  1135. hba[ctlr]->highest_lun = i;
  1136. return i;
  1137. }
  1138. }
  1139. return -1;
  1140. }
  1141. /* This function will add and remove logical drives from the Logical
  1142.  * drive array of the controller and maintain persistancy of ordering
  1143.  * so that mount points are preserved until the next reboot.  This allows
  1144.  * for the removal of logical drives in the middle of the drive array
  1145.  * without a re-ordering of those drives.
  1146.  * INPUT
  1147.  * h = The controller to perform the operations on
  1148.  * del_disk = The disk to remove if specified.  If the value given
  1149.  *   is NULL then no disk is removed.
  1150. */
  1151. static int rebuild_lun_table(ctlr_info_t *h, struct gendisk *del_disk)
  1152. {
  1153. int ctlr = h->ctlr;
  1154. int num_luns;
  1155. ReportLunData_struct *ld_buff = NULL;
  1156. drive_info_struct *drv = NULL;
  1157. int return_code;
  1158. int listlength = 0;
  1159. int i;
  1160. int drv_found;
  1161. int drv_index = 0;
  1162. __u32 lunid = 0;
  1163. unsigned long flags;
  1164. /* Set busy_configuring flag for this operation */
  1165. spin_lock_irqsave(CCISS_LOCK(h->ctlr), flags);
  1166. if (h->num_luns >= CISS_MAX_LUN){
  1167. spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
  1168. return -EINVAL;
  1169. }
  1170. if (h->busy_configuring){
  1171. spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
  1172. return -EBUSY;
  1173. }
  1174. h->busy_configuring = 1;
  1175. /* if del_disk is NULL then we are being called to add a new disk
  1176.  * and update the logical drive table.  If it is not NULL then
  1177.  * we will check if the disk is in use or not.
  1178.  */
  1179. if (del_disk != NULL){
  1180. drv = get_drv(del_disk);
  1181. drv->busy_configuring = 1;
  1182. spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
  1183. return_code = deregister_disk(del_disk, drv, 1);
  1184. drv->busy_configuring = 0;
  1185. h->busy_configuring = 0;
  1186. return return_code;
  1187. } else {
  1188. spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
  1189. if (!capable(CAP_SYS_RAWIO))
  1190. return -EPERM;
  1191. ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
  1192. if (ld_buff == NULL)
  1193. goto mem_msg;
  1194. return_code = sendcmd_withirq(CISS_REPORT_LOG, ctlr, ld_buff,
  1195. sizeof(ReportLunData_struct), 0, 0, 0,
  1196. TYPE_CMD);
  1197. if (return_code == IO_OK){
  1198. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[0])) << 24;
  1199. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[1])) << 16;
  1200. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[2])) << 8;
  1201. listlength |= 0xff & (unsigned int)(ld_buff->LUNListLength[3]);
  1202. } else{ /* reading number of logical volumes failed */
  1203. printk(KERN_WARNING "cciss: report logical volume"
  1204. " command failedn");
  1205. listlength = 0;
  1206. goto freeret;
  1207. }
  1208. num_luns = listlength / 8; /* 8 bytes per entry */
  1209. if (num_luns > CISS_MAX_LUN){
  1210. num_luns = CISS_MAX_LUN;
  1211. printk(KERN_WARNING "cciss: more luns configured"
  1212. " on controller than can be handled by"
  1213. " this driver.n");
  1214. }
  1215. /* Compare controller drive array to drivers drive array.
  1216.   * Check for updates in the drive information and any new drives
  1217.   * on the controller.
  1218.   */
  1219. for (i=0; i < num_luns; i++){
  1220. int j;
  1221. drv_found = 0;
  1222.    lunid = (0xff &
  1223. (unsigned int)(ld_buff->LUN[i][3])) << 24;
  1224.          lunid |= (0xff &
  1225. (unsigned int)(ld_buff->LUN[i][2])) << 16;
  1226.          lunid |= (0xff &
  1227. (unsigned int)(ld_buff->LUN[i][1])) << 8;
  1228.          lunid |= 0xff &
  1229. (unsigned int)(ld_buff->LUN[i][0]);
  1230. /* Find if the LUN is already in the drive array
  1231.  * of the controller.  If so then update its info
  1232.  * if not is use.  If it does not exist then find
  1233.  * the first free index and add it.
  1234. */
  1235. for (j=0; j <= h->highest_lun; j++){
  1236. if (h->drv[j].LunID == lunid){
  1237. drv_index = j;
  1238. drv_found = 1;
  1239. }
  1240. }
  1241. /* check if the drive was found already in the array */
  1242. if (!drv_found){
  1243. drv_index = cciss_find_free_drive_index(ctlr);
  1244. if (drv_index == -1)
  1245. goto freeret;
  1246. }
  1247. h->drv[drv_index].LunID = lunid;
  1248. cciss_update_drive_info(ctlr, drv_index);
  1249. } /* end for */
  1250. } /* end else */
  1251. freeret:
  1252. kfree(ld_buff);
  1253. h->busy_configuring = 0;
  1254. /* We return -1 here to tell the ACU that we have registered/updated
  1255.  * all of the drives that we can and to keep it from calling us
  1256.  * additional times.
  1257. */
  1258. return -1;
  1259. mem_msg:
  1260. printk(KERN_ERR "cciss: out of memoryn");
  1261. goto freeret;
  1262. }
  1263. /* This function will deregister the disk and it's queue from the
  1264.  * kernel.  It must be called with the controller lock held and the
  1265.  * drv structures busy_configuring flag set.  It's parameters are:
  1266.  *
  1267.  * disk = This is the disk to be deregistered
  1268.  * drv  = This is the drive_info_struct associated with the disk to be
  1269.  *        deregistered.  It contains information about the disk used
  1270.  *        by the driver.
  1271.  * clear_all = This flag determines whether or not the disk information
  1272.  *             is going to be completely cleared out and the highest_lun
  1273.  *             reset.  Sometimes we want to clear out information about
  1274.  *             the disk in preperation for re-adding it.  In this case
  1275.  *             the highest_lun should be left unchanged and the LunID
  1276.  *             should not be cleared.
  1277. */
  1278. static int deregister_disk(struct gendisk *disk, drive_info_struct *drv,
  1279.    int clear_all)
  1280. {
  1281. ctlr_info_t *h = get_host(disk);
  1282. if (!capable(CAP_SYS_RAWIO))
  1283. return -EPERM;
  1284. /* make sure logical volume is NOT is use */
  1285. if(clear_all || (h->gendisk[0] == disk)) {
  1286. if (drv->usage_count > 1)
  1287.                 return -EBUSY;
  1288. }
  1289.         else
  1290.          if( drv->usage_count > 0 )
  1291.                  return -EBUSY;
  1292. /* invalidate the devices and deregister the disk.  If it is disk
  1293.  * zero do not deregister it but just zero out it's values.  This
  1294.  * allows us to delete disk zero but keep the controller registered.
  1295. */
  1296. if (h->gendisk[0] != disk){
  1297. if (disk->flags & GENHD_FL_UP){
  1298. blk_cleanup_queue(disk->queue);
  1299. del_gendisk(disk);
  1300. drv->queue = NULL;
  1301. }
  1302. }
  1303. --h->num_luns;
  1304. /* zero out the disk size info */
  1305. drv->nr_blocks = 0;
  1306. drv->block_size = 0;
  1307. drv->heads = 0;
  1308. drv->sectors = 0;
  1309. drv->cylinders = 0;
  1310. drv->raid_level = -1; /* This can be used as a flag variable to
  1311.  * indicate that this element of the drive
  1312.  * array is free.
  1313. */
  1314. if (clear_all){
  1315. /* check to see if it was the last disk */
  1316. if (drv == h->drv + h->highest_lun) {
  1317. /* if so, find the new hightest lun */
  1318. int i, newhighest =-1;
  1319. for(i=0; i<h->highest_lun; i++) {
  1320. /* if the disk has size > 0, it is available */
  1321. if (h->drv[i].heads)
  1322. newhighest = i;
  1323. }
  1324. h->highest_lun = newhighest;
  1325. }
  1326. drv->LunID = 0;
  1327. }
  1328. return(0);
  1329. }
  1330. static int fill_cmd(CommandList_struct *c, __u8 cmd, int ctlr, void *buff,
  1331. size_t size,
  1332. unsigned int use_unit_num, /* 0: address the controller,
  1333.       1: address logical volume log_unit,
  1334.       2: periph device address is scsi3addr */
  1335. unsigned int log_unit, __u8 page_code, unsigned char *scsi3addr,
  1336. int cmd_type)
  1337. {
  1338. ctlr_info_t *h= hba[ctlr];
  1339. u64bit buff_dma_handle;
  1340. int status = IO_OK;
  1341. c->cmd_type = CMD_IOCTL_PEND;
  1342. c->Header.ReplyQueue = 0;
  1343. if( buff != NULL) {
  1344. c->Header.SGList = 1;
  1345. c->Header.SGTotal= 1;
  1346. } else {
  1347. c->Header.SGList = 0;
  1348.                 c->Header.SGTotal= 0;
  1349. }
  1350. c->Header.Tag.lower = c->busaddr;
  1351. c->Request.Type.Type = cmd_type;
  1352. if (cmd_type == TYPE_CMD) {
  1353. switch(cmd) {
  1354. case  CISS_INQUIRY:
  1355. /* If the logical unit number is 0 then, this is going
  1356. to controller so It's a physical command
  1357. mode = 0 target = 0.  So we have nothing to write.
  1358. otherwise, if use_unit_num == 1,
  1359. mode = 1(volume set addressing) target = LUNID
  1360. otherwise, if use_unit_num == 2,
  1361. mode = 0(periph dev addr) target = scsi3addr */
  1362. if (use_unit_num == 1) {
  1363. c->Header.LUN.LogDev.VolId=
  1364. h->drv[log_unit].LunID;
  1365.                          c->Header.LUN.LogDev.Mode = 1;
  1366. } else if (use_unit_num == 2) {
  1367. memcpy(c->Header.LUN.LunAddrBytes,scsi3addr,8);
  1368. c->Header.LUN.LogDev.Mode = 0;
  1369. }
  1370. /* are we trying to read a vital product page */
  1371. if(page_code != 0) {
  1372. c->Request.CDB[1] = 0x01;
  1373. c->Request.CDB[2] = page_code;
  1374. }
  1375. c->Request.CDBLen = 6;
  1376. c->Request.Type.Attribute = ATTR_SIMPLE;  
  1377. c->Request.Type.Direction = XFER_READ;
  1378. c->Request.Timeout = 0;
  1379. c->Request.CDB[0] =  CISS_INQUIRY;
  1380. c->Request.CDB[4] = size  & 0xFF;  
  1381. break;
  1382. case CISS_REPORT_LOG:
  1383. case CISS_REPORT_PHYS:
  1384.                         /* Talking to controller so It's a physical command
  1385.    mode = 00 target = 0.  Nothing to write.
  1386.                         */
  1387. c->Request.CDBLen = 12;
  1388. c->Request.Type.Attribute = ATTR_SIMPLE;
  1389. c->Request.Type.Direction = XFER_READ;
  1390. c->Request.Timeout = 0;
  1391. c->Request.CDB[0] = cmd;
  1392. c->Request.CDB[6] = (size >> 24) & 0xFF;  //MSB
  1393. c->Request.CDB[7] = (size >> 16) & 0xFF;
  1394. c->Request.CDB[8] = (size >> 8) & 0xFF;
  1395. c->Request.CDB[9] = size & 0xFF;
  1396. break;
  1397. case CCISS_READ_CAPACITY:
  1398. c->Header.LUN.LogDev.VolId = h->drv[log_unit].LunID;
  1399. c->Header.LUN.LogDev.Mode = 1;
  1400. c->Request.CDBLen = 10;
  1401. c->Request.Type.Attribute = ATTR_SIMPLE;
  1402. c->Request.Type.Direction = XFER_READ;
  1403. c->Request.Timeout = 0;
  1404. c->Request.CDB[0] = cmd;
  1405. break;
  1406. case CCISS_CACHE_FLUSH:
  1407. c->Request.CDBLen = 12;
  1408. c->Request.Type.Attribute = ATTR_SIMPLE;
  1409. c->Request.Type.Direction = XFER_WRITE;
  1410. c->Request.Timeout = 0;
  1411. c->Request.CDB[0] = BMIC_WRITE;
  1412. c->Request.CDB[6] = BMIC_CACHE_FLUSH;
  1413. break;
  1414. default:
  1415. printk(KERN_WARNING
  1416. "cciss%d:  Unknown Command 0x%cn", ctlr, cmd);
  1417. return(IO_ERROR);
  1418. }
  1419. } else if (cmd_type == TYPE_MSG) {
  1420. switch (cmd) {
  1421. case 3: /* No-Op message */
  1422. c->Request.CDBLen = 1;
  1423. c->Request.Type.Attribute = ATTR_SIMPLE;
  1424. c->Request.Type.Direction = XFER_WRITE;
  1425. c->Request.Timeout = 0;
  1426. c->Request.CDB[0] = cmd;
  1427. break;
  1428. default:
  1429. printk(KERN_WARNING
  1430. "cciss%d: unknown message type %dn",
  1431. ctlr, cmd);
  1432. return IO_ERROR;
  1433. }
  1434. } else {
  1435. printk(KERN_WARNING
  1436. "cciss%d: unknown command type %dn", ctlr, cmd_type);
  1437. return IO_ERROR;
  1438. }
  1439. /* Fill in the scatter gather information */
  1440. if (size > 0) {
  1441. buff_dma_handle.val = (__u64) pci_map_single(h->pdev,
  1442. buff, size, PCI_DMA_BIDIRECTIONAL);
  1443. c->SG[0].Addr.lower = buff_dma_handle.val32.lower;
  1444. c->SG[0].Addr.upper = buff_dma_handle.val32.upper;
  1445. c->SG[0].Len = size;
  1446. c->SG[0].Ext = 0;  /* we are not chaining */
  1447. }
  1448. return status;
  1449. }
  1450. static int sendcmd_withirq(__u8 cmd,
  1451. int ctlr,
  1452. void *buff,
  1453. size_t size,
  1454. unsigned int use_unit_num,
  1455. unsigned int log_unit,
  1456. __u8 page_code,
  1457. int cmd_type)
  1458. {
  1459. ctlr_info_t *h = hba[ctlr];
  1460. CommandList_struct *c;
  1461. u64bit buff_dma_handle;
  1462. unsigned long flags;
  1463. int return_status;
  1464. DECLARE_COMPLETION(wait);
  1465. if ((c = cmd_alloc(h , 0)) == NULL)
  1466. return -ENOMEM;
  1467. return_status = fill_cmd(c, cmd, ctlr, buff, size, use_unit_num,
  1468. log_unit, page_code, NULL, cmd_type);
  1469. if (return_status != IO_OK) {
  1470. cmd_free(h, c, 0);
  1471. return return_status;
  1472. }
  1473. resend_cmd2:
  1474. c->waiting = &wait;
  1475. /* Put the request on the tail of the queue and send it */
  1476. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  1477. addQ(&h->reqQ, c);
  1478. h->Qdepth++;
  1479. start_io(h);
  1480. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  1481. wait_for_completion(&wait);
  1482. if(c->err_info->CommandStatus != 0) 
  1483. { /* an error has occurred */ 
  1484. switch(c->err_info->CommandStatus)
  1485. {
  1486. case CMD_TARGET_STATUS:
  1487. printk(KERN_WARNING "cciss: cmd %p has "
  1488. " completed with errorsn", c);
  1489. if( c->err_info->ScsiStatus)
  1490.                  {
  1491.                      printk(KERN_WARNING "cciss: cmd %p "
  1492. "has SCSI Status = %xn",
  1493.                          c,  
  1494. c->err_info->ScsiStatus);
  1495.                  }
  1496. break;
  1497. case CMD_DATA_UNDERRUN:
  1498. case CMD_DATA_OVERRUN:
  1499. /* expected for inquire and report lun commands */
  1500. break;
  1501. case CMD_INVALID:
  1502. printk(KERN_WARNING "cciss: Cmd %p is "
  1503. "reported invalidn", c);
  1504. return_status = IO_ERROR;
  1505. break;
  1506. case CMD_PROTOCOL_ERR:
  1507.                                 printk(KERN_WARNING "cciss: cmd %p has "
  1508. "protocol error n", c);
  1509.                                 return_status = IO_ERROR;
  1510.                         break;
  1511. case CMD_HARDWARE_ERR:
  1512.                                 printk(KERN_WARNING "cciss: cmd %p had " 
  1513.                                         " hardware errorn", c);
  1514.                                 return_status = IO_ERROR;
  1515.                         break;
  1516. case CMD_CONNECTION_LOST:
  1517. printk(KERN_WARNING "cciss: cmd %p had "
  1518. "connection lostn", c);
  1519. return_status = IO_ERROR;
  1520. break;
  1521. case CMD_ABORTED:
  1522. printk(KERN_WARNING "cciss: cmd %p was "
  1523. "abortedn", c);
  1524. return_status = IO_ERROR;
  1525. break;
  1526. case CMD_ABORT_FAILED:
  1527. printk(KERN_WARNING "cciss: cmd %p reports "
  1528. "abort failedn", c);
  1529. return_status = IO_ERROR;
  1530. break;
  1531. case CMD_UNSOLICITED_ABORT:
  1532. printk(KERN_WARNING 
  1533. "cciss%d: unsolicited abort %pn",
  1534. ctlr, c);
  1535. if (c->retry_count < MAX_CMD_RETRIES) {
  1536. printk(KERN_WARNING 
  1537. "cciss%d: retrying %pn", 
  1538. ctlr, c);
  1539. c->retry_count++;
  1540. /* erase the old error information */
  1541. memset(c->err_info, 0,
  1542. sizeof(ErrorInfo_struct));
  1543. return_status = IO_OK;
  1544. INIT_COMPLETION(wait);
  1545. goto resend_cmd2;
  1546. }
  1547. return_status = IO_ERROR;
  1548. break;
  1549. default:
  1550. printk(KERN_WARNING "cciss: cmd %p returned "
  1551. "unknown status %xn", c, 
  1552. c->err_info->CommandStatus); 
  1553. return_status = IO_ERROR;
  1554. }
  1555. }
  1556. /* unlock the buffers from DMA */
  1557. buff_dma_handle.val32.lower = c->SG[0].Addr.lower;
  1558. buff_dma_handle.val32.upper = c->SG[0].Addr.upper;
  1559. pci_unmap_single( h->pdev, (dma_addr_t) buff_dma_handle.val,
  1560. c->SG[0].Len, PCI_DMA_BIDIRECTIONAL);
  1561. cmd_free(h, c, 0);
  1562.         return(return_status);
  1563. }
  1564. static void cciss_geometry_inquiry(int ctlr, int logvol,
  1565. int withirq, unsigned int total_size,
  1566. unsigned int block_size, InquiryData_struct *inq_buff,
  1567. drive_info_struct *drv)
  1568. {
  1569. int return_code;
  1570. memset(inq_buff, 0, sizeof(InquiryData_struct));
  1571. if (withirq)
  1572. return_code = sendcmd_withirq(CISS_INQUIRY, ctlr,
  1573. inq_buff, sizeof(*inq_buff), 1, logvol ,0xC1, TYPE_CMD);
  1574. else
  1575. return_code = sendcmd(CISS_INQUIRY, ctlr, inq_buff,
  1576. sizeof(*inq_buff), 1, logvol ,0xC1, NULL, TYPE_CMD);
  1577. if (return_code == IO_OK) {
  1578. if(inq_buff->data_byte[8] == 0xFF) {
  1579. printk(KERN_WARNING
  1580. "cciss: reading geometry failed, volume "
  1581. "does not support reading geometryn");
  1582. drv->block_size = block_size;
  1583. drv->nr_blocks = total_size;
  1584. drv->heads = 255;
  1585. drv->sectors = 32; // Sectors per track
  1586. drv->cylinders = total_size / 255 / 32;
  1587. } else {
  1588. unsigned int t;
  1589. drv->block_size = block_size;
  1590. drv->nr_blocks = total_size;
  1591. drv->heads = inq_buff->data_byte[6];
  1592. drv->sectors = inq_buff->data_byte[7];
  1593. drv->cylinders = (inq_buff->data_byte[4] & 0xff) << 8;
  1594. drv->cylinders += inq_buff->data_byte[5];
  1595. drv->raid_level = inq_buff->data_byte[8];
  1596. t = drv->heads * drv->sectors;
  1597. if (t > 1) {
  1598. drv->cylinders = total_size/t;
  1599. }
  1600. }
  1601. } else { /* Get geometry failed */
  1602. printk(KERN_WARNING "cciss: reading geometry failedn");
  1603. }
  1604. printk(KERN_INFO "      heads= %d, sectors= %d, cylinders= %dnn",
  1605. drv->heads, drv->sectors, drv->cylinders);
  1606. }
  1607. static void
  1608. cciss_read_capacity(int ctlr, int logvol, ReadCapdata_struct *buf,
  1609. int withirq, unsigned int *total_size, unsigned int *block_size)
  1610. {
  1611. int return_code;
  1612. memset(buf, 0, sizeof(*buf));
  1613. if (withirq)
  1614. return_code = sendcmd_withirq(CCISS_READ_CAPACITY,
  1615. ctlr, buf, sizeof(*buf), 1, logvol, 0, TYPE_CMD);
  1616. else
  1617. return_code = sendcmd(CCISS_READ_CAPACITY,
  1618. ctlr, buf, sizeof(*buf), 1, logvol, 0, NULL, TYPE_CMD);
  1619. if (return_code == IO_OK) {
  1620. *total_size = be32_to_cpu(*((__be32 *) &buf->total_size[0]))+1;
  1621. *block_size = be32_to_cpu(*((__be32 *) &buf->block_size[0]));
  1622. } else { /* read capacity command failed */
  1623. printk(KERN_WARNING "cciss: read capacity failedn");
  1624. *total_size = 0;
  1625. *block_size = BLOCK_SIZE;
  1626. }
  1627. printk(KERN_INFO "      blocks= %u block_size= %dn",
  1628. *total_size, *block_size);
  1629. return;
  1630. }
  1631. static int cciss_revalidate(struct gendisk *disk)
  1632. {
  1633. ctlr_info_t *h = get_host(disk);
  1634. drive_info_struct *drv = get_drv(disk);
  1635. int logvol;
  1636. int FOUND=0;
  1637. unsigned int block_size;
  1638. unsigned int total_size;
  1639. ReadCapdata_struct *size_buff = NULL;
  1640. InquiryData_struct *inq_buff = NULL;
  1641. for(logvol=0; logvol < CISS_MAX_LUN; logvol++)
  1642. {
  1643. if(h->drv[logvol].LunID == drv->LunID) {
  1644. FOUND=1;
  1645. break;
  1646. }
  1647. }
  1648. if (!FOUND) return 1;
  1649. size_buff = kmalloc(sizeof( ReadCapdata_struct), GFP_KERNEL);
  1650.         if (size_buff == NULL)
  1651.         {
  1652.                 printk(KERN_WARNING "cciss: out of memoryn");
  1653.                 return 1;
  1654.         }
  1655. inq_buff = kmalloc(sizeof( InquiryData_struct), GFP_KERNEL);
  1656.         if (inq_buff == NULL)
  1657.         {
  1658.                 printk(KERN_WARNING "cciss: out of memoryn");
  1659. kfree(size_buff);
  1660.                 return 1;
  1661.         }
  1662. cciss_read_capacity(h->ctlr, logvol, size_buff, 1, &total_size, &block_size);
  1663. cciss_geometry_inquiry(h->ctlr, logvol, 1, total_size, block_size, inq_buff, drv);
  1664. blk_queue_hardsect_size(drv->queue, drv->block_size);
  1665. set_capacity(disk, drv->nr_blocks);
  1666. kfree(size_buff);
  1667. kfree(inq_buff);
  1668. return 0;
  1669. }
  1670. /*
  1671.  *   Wait polling for a command to complete.
  1672.  *   The memory mapped FIFO is polled for the completion.
  1673.  *   Used only at init time, interrupts from the HBA are disabled.
  1674.  */
  1675. static unsigned long pollcomplete(int ctlr)
  1676. {
  1677. unsigned long done;
  1678. int i;
  1679. /* Wait (up to 20 seconds) for a command to complete */
  1680. for (i = 20 * HZ; i > 0; i--) {
  1681. done = hba[ctlr]->access.command_completed(hba[ctlr]);
  1682. if (done == FIFO_EMPTY)
  1683. schedule_timeout_uninterruptible(1);
  1684. else
  1685. return (done);
  1686. }
  1687. /* Invalid address to tell caller we ran out of time */
  1688. return 1;
  1689. }
  1690. /*
  1691.  * Send a command to the controller, and wait for it to complete.  
  1692.  * Only used at init time. 
  1693.  */
  1694. static int sendcmd(
  1695. __u8 cmd,
  1696. int ctlr,
  1697. void *buff,
  1698. size_t size,
  1699. unsigned int use_unit_num, /* 0: address the controller,
  1700.       1: address logical volume log_unit, 
  1701.       2: periph device address is scsi3addr */
  1702. unsigned int log_unit,
  1703. __u8 page_code,
  1704. unsigned char *scsi3addr,
  1705. int cmd_type)
  1706. {
  1707. CommandList_struct *c;
  1708. int i;
  1709. unsigned long complete;
  1710. ctlr_info_t *info_p= hba[ctlr];
  1711. u64bit buff_dma_handle;
  1712. int status;
  1713. if ((c = cmd_alloc(info_p, 1)) == NULL) {
  1714. printk(KERN_WARNING "cciss: unable to get memory");
  1715. return(IO_ERROR);
  1716. }
  1717. status = fill_cmd(c, cmd, ctlr, buff, size, use_unit_num,
  1718. log_unit, page_code, scsi3addr, cmd_type);
  1719. if (status != IO_OK) {
  1720. cmd_free(info_p, c, 1);
  1721. return status;
  1722. }
  1723. resend_cmd1:
  1724. /*
  1725.          * Disable interrupt
  1726.          */
  1727. #ifdef CCISS_DEBUG
  1728. printk(KERN_DEBUG "cciss: turning intr offn");
  1729. #endif /* CCISS_DEBUG */ 
  1730.         info_p->access.set_intr_mask(info_p, CCISS_INTR_OFF);
  1731. /* Make sure there is room in the command FIFO */
  1732.         /* Actually it should be completely empty at this time. */
  1733.         for (i = 200000; i > 0; i--) 
  1734. {
  1735. /* if fifo isn't full go */
  1736.                 if (!(info_p->access.fifo_full(info_p))) 
  1737. {
  1738.                         break;
  1739.                 }
  1740.                 udelay(10);
  1741.                 printk(KERN_WARNING "cciss cciss%d: SendCmd FIFO full,"
  1742.                         " waiting!n", ctlr);
  1743.         }
  1744.         /*
  1745.          * Send the cmd
  1746.          */
  1747.         info_p->access.submit_command(info_p, c);
  1748.         complete = pollcomplete(ctlr);
  1749. #ifdef CCISS_DEBUG
  1750. printk(KERN_DEBUG "cciss: command completedn");
  1751. #endif /* CCISS_DEBUG */
  1752. if (complete != 1) {
  1753. if ( (complete & CISS_ERROR_BIT)
  1754.      && (complete & ~CISS_ERROR_BIT) == c->busaddr)
  1755.      {
  1756. /* if data overrun or underun on Report command 
  1757. ignore it 
  1758. */
  1759. if (((c->Request.CDB[0] == CISS_REPORT_LOG) ||
  1760.      (c->Request.CDB[0] == CISS_REPORT_PHYS) ||
  1761.      (c->Request.CDB[0] == CISS_INQUIRY)) &&
  1762. ((c->err_info->CommandStatus == 
  1763. CMD_DATA_OVERRUN) || 
  1764.  (c->err_info->CommandStatus == 
  1765. CMD_DATA_UNDERRUN)
  1766.   ))
  1767. {
  1768. complete = c->busaddr;
  1769. } else {
  1770. if (c->err_info->CommandStatus ==
  1771. CMD_UNSOLICITED_ABORT) {
  1772. printk(KERN_WARNING "cciss%d: "
  1773. "unsolicited abort %pn",
  1774. ctlr, c);
  1775. if (c->retry_count < MAX_CMD_RETRIES) {
  1776. printk(KERN_WARNING
  1777.    "cciss%d: retrying %pn",
  1778.    ctlr, c);
  1779. c->retry_count++;
  1780. /* erase the old error */
  1781. /* information */
  1782. memset(c->err_info, 0,
  1783.    sizeof(ErrorInfo_struct));
  1784. goto resend_cmd1;
  1785. } else {
  1786. printk(KERN_WARNING
  1787.    "cciss%d: retried %p too "
  1788.    "many timesn", ctlr, c);
  1789. status = IO_ERROR;
  1790. goto cleanup1;
  1791. }
  1792. }
  1793. printk(KERN_WARNING "ciss ciss%d: sendcmd"
  1794. " Error %x n", ctlr, 
  1795. c->err_info->CommandStatus); 
  1796. printk(KERN_WARNING "ciss ciss%d: sendcmd"
  1797. " offensive infon"
  1798. "  size %xn   num %x   value %xn", ctlr,
  1799.   c->err_info->MoreErrInfo.Invalid_Cmd.offense_size,
  1800.   c->err_info->MoreErrInfo.Invalid_Cmd.offense_num,
  1801.   c->err_info->MoreErrInfo.Invalid_Cmd.offense_value);
  1802. status = IO_ERROR;
  1803. goto cleanup1;
  1804. }
  1805. }
  1806.                 if (complete != c->busaddr) {
  1807.                         printk( KERN_WARNING "cciss cciss%d: SendCmd "
  1808.                       "Invalid command list address returned! (%lx)n",
  1809.                                 ctlr, complete);
  1810. status = IO_ERROR;
  1811. goto cleanup1;
  1812.                 }
  1813.         } else {
  1814.                 printk( KERN_WARNING
  1815.                         "cciss cciss%d: SendCmd Timeout out, "
  1816.                         "No command list address returned!n",
  1817.                         ctlr);
  1818. status = IO_ERROR;
  1819.         }
  1820. cleanup1:
  1821. /* unlock the data buffer from DMA */
  1822. buff_dma_handle.val32.lower = c->SG[0].Addr.lower;
  1823. buff_dma_handle.val32.upper = c->SG[0].Addr.upper;
  1824. pci_unmap_single(info_p->pdev, (dma_addr_t) buff_dma_handle.val,
  1825. c->SG[0].Len, PCI_DMA_BIDIRECTIONAL);
  1826. cmd_free(info_p, c, 1);
  1827. return (status);
  1828. /*
  1829.  * Map (physical) PCI mem into (virtual) kernel space
  1830.  */
  1831. static void __iomem *remap_pci_mem(ulong base, ulong size)
  1832. {
  1833.         ulong page_base        = ((ulong) base) & PAGE_MASK;
  1834.         ulong page_offs        = ((ulong) base) - page_base;
  1835.         void __iomem *page_remapped = ioremap(page_base, page_offs+size);
  1836.         return page_remapped ? (page_remapped + page_offs) : NULL;
  1837. }
  1838. /* 
  1839.  * Takes jobs of the Q and sends them to the hardware, then puts it on 
  1840.  * the Q to wait for completion. 
  1841.  */ 
  1842. static void start_io( ctlr_info_t *h)
  1843. {
  1844. CommandList_struct *c;
  1845. while(( c = h->reqQ) != NULL )
  1846. {
  1847. /* can't do anything if fifo is full */
  1848. if ((h->access.fifo_full(h))) {
  1849. printk(KERN_WARNING "cciss: fifo fulln");
  1850. break;
  1851. }
  1852. /* Get the frist entry from the Request Q */ 
  1853. removeQ(&(h->reqQ), c);
  1854. h->Qdepth--;
  1855. /* Tell the controller execute command */ 
  1856. h->access.submit_command(h, c);
  1857. /* Put job onto the completed Q */ 
  1858. addQ (&(h->cmpQ), c); 
  1859. }
  1860. }
  1861. static inline void complete_buffers(struct bio *bio, int status)
  1862. {
  1863. while (bio) {
  1864. struct bio *xbh = bio->bi_next; 
  1865. int nr_sectors = bio_sectors(bio);
  1866. bio->bi_next = NULL; 
  1867. blk_finished_io(len);
  1868. bio_endio(bio, nr_sectors << 9, status ? 0 : -EIO);
  1869. bio = xbh;
  1870. }
  1871. /* Assumes that CCISS_LOCK(h->ctlr) is held. */
  1872. /* Zeros out the error record and then resends the command back */
  1873. /* to the controller */
  1874. static inline void resend_cciss_cmd( ctlr_info_t *h, CommandList_struct *c)
  1875. {
  1876. /* erase the old error information */
  1877. memset(c->err_info, 0, sizeof(ErrorInfo_struct));
  1878. /* add it to software queue and then send it to the controller */
  1879. addQ(&(h->reqQ),c);
  1880. h->Qdepth++;
  1881. if(h->Qdepth > h->maxQsinceinit)
  1882. h->maxQsinceinit = h->Qdepth;
  1883. start_io(h);
  1884. }
  1885. /* checks the status of the job and calls complete buffers to mark all 
  1886.  * buffers for the completed job. 
  1887.  */ 
  1888. static inline void complete_command( ctlr_info_t *h, CommandList_struct *cmd,
  1889. int timeout)
  1890. {
  1891. int status = 1;
  1892. int i;
  1893. int retry_cmd = 0;
  1894. u64bit temp64;
  1895. if (timeout)
  1896. status = 0; 
  1897. if(cmd->err_info->CommandStatus != 0) 
  1898. { /* an error has occurred */ 
  1899. switch(cmd->err_info->CommandStatus)
  1900. {
  1901. unsigned char sense_key;
  1902. case CMD_TARGET_STATUS:
  1903. status = 0;
  1904. if( cmd->err_info->ScsiStatus == 0x02)
  1905. {
  1906. printk(KERN_WARNING "cciss: cmd %p "
  1907.                                          "has CHECK CONDITION "
  1908. " byte 2 = 0x%xn", cmd,
  1909. cmd->err_info->SenseInfo[2]
  1910. );
  1911. /* check the sense key */
  1912. sense_key = 0xf & 
  1913. cmd->err_info->SenseInfo[2];
  1914. /* no status or recovered error */
  1915. if((sense_key == 0x0) ||
  1916.     (sense_key == 0x1))
  1917. {
  1918. status = 1;
  1919. }
  1920. } else
  1921. {
  1922. printk(KERN_WARNING "cciss: cmd %p "
  1923.                                                 "has SCSI Status 0x%xn",
  1924. cmd, cmd->err_info->ScsiStatus);
  1925. }
  1926. break;
  1927. case CMD_DATA_UNDERRUN:
  1928. printk(KERN_WARNING "cciss: cmd %p has"
  1929. " completed with data underrun "
  1930. "reportedn", cmd);
  1931. break;
  1932. case CMD_DATA_OVERRUN:
  1933. printk(KERN_WARNING "cciss: cmd %p has"
  1934. " completed with data overrun "
  1935. "reportedn", cmd);
  1936. break;
  1937. case CMD_INVALID:
  1938. printk(KERN_WARNING "cciss: cmd %p is "
  1939. "reported invalidn", cmd);
  1940. status = 0;
  1941. break;
  1942. case CMD_PROTOCOL_ERR:
  1943.                                 printk(KERN_WARNING "cciss: cmd %p has "
  1944. "protocol error n", cmd);
  1945.                                 status = 0;
  1946.                         break;
  1947. case CMD_HARDWARE_ERR:
  1948.                                 printk(KERN_WARNING "cciss: cmd %p had " 
  1949.                                         " hardware errorn", cmd);
  1950.                                 status = 0;
  1951.                         break;
  1952. case CMD_CONNECTION_LOST:
  1953. printk(KERN_WARNING "cciss: cmd %p had "
  1954. "connection lostn", cmd);
  1955. status=0;
  1956. break;
  1957. case CMD_ABORTED:
  1958. printk(KERN_WARNING "cciss: cmd %p was "
  1959. "abortedn", cmd);
  1960. status=0;
  1961. break;
  1962. case CMD_ABORT_FAILED:
  1963. printk(KERN_WARNING "cciss: cmd %p reports "
  1964. "abort failedn", cmd);
  1965. status=0;
  1966. break;
  1967. case CMD_UNSOLICITED_ABORT:
  1968. printk(KERN_WARNING "cciss%d: unsolicited "
  1969. "abort %pn", h->ctlr, cmd);
  1970. if (cmd->retry_count < MAX_CMD_RETRIES) {
  1971. retry_cmd=1;
  1972. printk(KERN_WARNING
  1973. "cciss%d: retrying %pn",
  1974. h->ctlr, cmd);
  1975. cmd->retry_count++;
  1976. } else
  1977. printk(KERN_WARNING
  1978. "cciss%d: %p retried too "
  1979. "many timesn", h->ctlr, cmd);
  1980. status=0;
  1981. break;
  1982. case CMD_TIMEOUT:
  1983. printk(KERN_WARNING "cciss: cmd %p timedoutn",
  1984. cmd);
  1985. status=0;
  1986. break;
  1987. default:
  1988. printk(KERN_WARNING "cciss: cmd %p returned "
  1989. "unknown status %xn", cmd, 
  1990. cmd->err_info->CommandStatus); 
  1991. status=0;
  1992. }
  1993. }
  1994. /* We need to return this command */
  1995. if(retry_cmd) {
  1996. resend_cciss_cmd(h,cmd);
  1997. return;
  1998. }
  1999. /* command did not need to be retried */
  2000. /* unmap the DMA mapping for all the scatter gather elements */
  2001. for(i=0; i<cmd->Header.SGList; i++) {
  2002. temp64.val32.lower = cmd->SG[i].Addr.lower;
  2003. temp64.val32.upper = cmd->SG[i].Addr.upper;
  2004. pci_unmap_page(hba[cmd->ctlr]->pdev,
  2005. temp64.val, cmd->SG[i].Len,
  2006. (cmd->Request.Type.Direction == XFER_READ) ?
  2007. PCI_DMA_FROMDEVICE : PCI_DMA_TODEVICE);
  2008. }
  2009. complete_buffers(cmd->rq->bio, status);
  2010. #ifdef CCISS_DEBUG
  2011. printk("Done with %pn", cmd->rq);
  2012. #endif /* CCISS_DEBUG */ 
  2013. end_that_request_last(cmd->rq);
  2014. cmd_free(h,cmd,1);
  2015. }
  2016. /* 
  2017.  * Get a request and submit it to the controller. 
  2018.  */
  2019. static void do_cciss_request(request_queue_t *q)
  2020. {
  2021. ctlr_info_t *h= q->queuedata; 
  2022. CommandList_struct *c;
  2023. int start_blk, seg;
  2024. struct request *creq;
  2025. u64bit temp64;
  2026. struct scatterlist tmp_sg[MAXSGENTRIES];
  2027. drive_info_struct *drv;
  2028. int i, dir;
  2029. /* We call start_io here in case there is a command waiting on the
  2030.  * queue that has not been sent.
  2031. */
  2032. if (blk_queue_plugged(q))
  2033. goto startio;
  2034. queue:
  2035. creq = elv_next_request(q);
  2036. if (!creq)
  2037. goto startio;
  2038. if (creq->nr_phys_segments > MAXSGENTRIES)
  2039.                 BUG();
  2040. if (( c = cmd_alloc(h, 1)) == NULL)
  2041. goto full;
  2042. blkdev_dequeue_request(creq);
  2043. spin_unlock_irq(q->queue_lock);
  2044. c->cmd_type = CMD_RWREQ;
  2045. c->rq = creq;
  2046. /* fill in the request */ 
  2047. drv = creq->rq_disk->private_data;
  2048. c->Header.ReplyQueue = 0;  // unused in simple mode
  2049. /* got command from pool, so use the command block index instead */
  2050. /* for direct lookups. */
  2051. /* The first 2 bits are reserved for controller error reporting. */
  2052. c->Header.Tag.lower = (c->cmdindex << 3);
  2053. c->Header.Tag.lower |= 0x04; /* flag for direct lookup. */
  2054. c->Header.LUN.LogDev.VolId= drv->LunID;
  2055. c->Header.LUN.LogDev.Mode = 1;
  2056. c->Request.CDBLen = 10; // 12 byte commands not in FW yet;
  2057. c->Request.Type.Type =  TYPE_CMD; // It is a command. 
  2058. c->Request.Type.Attribute = ATTR_SIMPLE; 
  2059. c->Request.Type.Direction = 
  2060. (rq_data_dir(creq) == READ) ? XFER_READ: XFER_WRITE; 
  2061. c->Request.Timeout = 0; // Don't time out
  2062. c->Request.CDB[0] = (rq_data_dir(creq) == READ) ? CCISS_READ : CCISS_WRITE;
  2063. start_blk = creq->sector;
  2064. #ifdef CCISS_DEBUG
  2065. printk(KERN_DEBUG "ciss: sector =%d nr_sectors=%dn",(int) creq->sector,
  2066. (int) creq->nr_sectors);
  2067. #endif /* CCISS_DEBUG */
  2068. seg = blk_rq_map_sg(q, creq, tmp_sg);
  2069. /* get the DMA records for the setup */ 
  2070. if (c->Request.Type.Direction == XFER_READ)
  2071. dir = PCI_DMA_FROMDEVICE;
  2072. else
  2073. dir = PCI_DMA_TODEVICE;
  2074. for (i=0; i<seg; i++)
  2075. {
  2076. c->SG[i].Len = tmp_sg[i].length;
  2077. temp64.val = (__u64) pci_map_page(h->pdev, tmp_sg[i].page,
  2078.     tmp_sg[i].offset, tmp_sg[i].length,
  2079.   dir);
  2080. c->SG[i].Addr.lower = temp64.val32.lower;
  2081.                 c->SG[i].Addr.upper = temp64.val32.upper;
  2082.                 c->SG[i].Ext = 0;  // we are not chaining
  2083. }
  2084. /* track how many SG entries we are using */ 
  2085. if( seg > h->maxSG)
  2086. h->maxSG = seg; 
  2087. #ifdef CCISS_DEBUG
  2088. printk(KERN_DEBUG "cciss: Submitting %d sectors in %d segmentsn", creq->nr_sectors, seg);
  2089. #endif /* CCISS_DEBUG */
  2090. c->Header.SGList = c->Header.SGTotal = seg;
  2091. c->Request.CDB[1]= 0;
  2092. c->Request.CDB[2]= (start_blk >> 24) & 0xff; //MSB
  2093. c->Request.CDB[3]= (start_blk >> 16) & 0xff;
  2094. c->Request.CDB[4]= (start_blk >>  8) & 0xff;
  2095. c->Request.CDB[5]= start_blk & 0xff;
  2096. c->Request.CDB[6]= 0; // (sect >> 24) & 0xff; MSB
  2097. c->Request.CDB[7]= (creq->nr_sectors >>  8) & 0xff; 
  2098. c->Request.CDB[8]= creq->nr_sectors & 0xff; 
  2099. c->Request.CDB[9] = c->Request.CDB[11] = c->Request.CDB[12] = 0;
  2100. spin_lock_irq(q->queue_lock);
  2101. addQ(&(h->reqQ),c);
  2102. h->Qdepth++;
  2103. if(h->Qdepth > h->maxQsinceinit)
  2104. h->maxQsinceinit = h->Qdepth; 
  2105. goto queue;
  2106. full:
  2107. blk_stop_queue(q);
  2108. startio:
  2109. /* We will already have the driver lock here so not need
  2110.  * to lock it.
  2111. */
  2112. start_io(h);
  2113. }
  2114. static irqreturn_t do_cciss_intr(int irq, void *dev_id, struct pt_regs *regs)
  2115. {
  2116. ctlr_info_t *h = dev_id;
  2117. CommandList_struct *c;
  2118. unsigned long flags;
  2119. __u32 a, a1, a2;
  2120. int j;
  2121. int start_queue = h->next_to_run;
  2122. /* Is this interrupt for us? */
  2123. if (( h->access.intr_pending(h) == 0) || (h->interrupts_enabled == 0))
  2124. return IRQ_NONE;
  2125. /*
  2126.  * If there are completed commands in the completion queue,
  2127.  * we had better do something about it.
  2128.  */
  2129. spin_lock_irqsave(CCISS_LOCK(h->ctlr), flags);
  2130. while( h->access.intr_pending(h))
  2131. {
  2132. while((a = h->access.command_completed(h)) != FIFO_EMPTY) 
  2133. {
  2134. a1 = a;
  2135. if ((a & 0x04)) {
  2136. a2 = (a >> 3);
  2137. if (a2 >= NR_CMDS) {
  2138. printk(KERN_WARNING "cciss: controller cciss%d failed, stopping.n", h->ctlr);
  2139. fail_all_cmds(h->ctlr);
  2140. return IRQ_HANDLED;
  2141. }
  2142. c = h->cmd_pool + a2;
  2143. a = c->busaddr;
  2144. } else {
  2145. a &= ~3;
  2146. if ((c = h->cmpQ) == NULL) {
  2147. printk(KERN_WARNING "cciss: Completion of %08x ignoredn", a1);
  2148. continue;
  2149. while(c->busaddr != a) {
  2150. c = c->next;
  2151. if (c == h->cmpQ) 
  2152. break;
  2153. }
  2154. }
  2155. /*
  2156.  * If we've found the command, take it off the
  2157.  * completion Q and free it
  2158.  */
  2159.  if (c->busaddr == a) {
  2160. removeQ(&h->cmpQ, c);
  2161. if (c->cmd_type == CMD_RWREQ) {
  2162. complete_command(h, c, 0);
  2163. } else if (c->cmd_type == CMD_IOCTL_PEND) {
  2164. complete(c->waiting);
  2165. }
  2166. # ifdef CONFIG_CISS_SCSI_TAPE
  2167. else if (c->cmd_type == CMD_SCSI)
  2168. complete_scsi_command(c, 0, a1);
  2169. # endif
  2170. continue;
  2171. }
  2172. }
  2173. }
  2174.   /* check to see if we have maxed out the number of commands that can
  2175.    * be placed on the queue.  If so then exit.  We do this check here
  2176.    * in case the interrupt we serviced was from an ioctl and did not
  2177.    * free any new commands.
  2178.  */
  2179.   if ((find_first_zero_bit(h->cmd_pool_bits, NR_CMDS)) == NR_CMDS)
  2180.   goto cleanup;
  2181.   /* We have room on the queue for more commands.  Now we need to queue
  2182.    * them up.  We will also keep track of the next queue to run so
  2183.    * that every queue gets a chance to be started first.
  2184.   */
  2185. for (j=0; j < h->highest_lun + 1; j++){
  2186. int curr_queue = (start_queue + j) % (h->highest_lun + 1);
  2187.   /* make sure the disk has been added and the drive is real
  2188.    * because this can be called from the middle of init_one.
  2189.   */
  2190. if(!(h->drv[curr_queue].queue) ||
  2191.      !(h->drv[curr_queue].heads))
  2192.   continue;
  2193.   blk_start_queue(h->gendisk[curr_queue]->queue);
  2194.   /* check to see if we have maxed out the number of commands
  2195.    * that can be placed on the queue.
  2196.   */
  2197.   if ((find_first_zero_bit(h->cmd_pool_bits, NR_CMDS)) == NR_CMDS)
  2198.   {
  2199.   if (curr_queue == start_queue){
  2200. h->next_to_run = (start_queue + 1) % (h->highest_lun + 1);
  2201.   goto cleanup;
  2202.   } else {
  2203.   h->next_to_run = curr_queue;
  2204.   goto cleanup;
  2205.   }
  2206.   } else {
  2207. curr_queue = (curr_queue + 1) % (h->highest_lun + 1);
  2208.   }
  2209.   }
  2210. cleanup:
  2211. spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
  2212. return IRQ_HANDLED;
  2213. }
  2214. /* 
  2215.  *  We cannot read the structure directly, for portablity we must use 
  2216.  *   the io functions.
  2217.  *   This is for debug only. 
  2218.  */
  2219. #ifdef CCISS_DEBUG
  2220. static void print_cfg_table( CfgTable_struct *tb)
  2221. {
  2222. int i;
  2223. char temp_name[17];
  2224. printk("Controller Configuration informationn");
  2225. printk("------------------------------------n");
  2226. for(i=0;i<4;i++)
  2227. temp_name[i] = readb(&(tb->Signature[i]));
  2228. temp_name[4]='';
  2229. printk("   Signature = %sn", temp_name); 
  2230. printk("   Spec Number = %dn", readl(&(tb->SpecValence)));
  2231. printk("   Transport methods supported = 0x%xn", 
  2232. readl(&(tb-> TransportSupport)));
  2233. printk("   Transport methods active = 0x%xn", 
  2234. readl(&(tb->TransportActive)));
  2235. printk("   Requested transport Method = 0x%xn", 
  2236. readl(&(tb->HostWrite.TransportRequest)));
  2237. printk("   Coalese Interrupt Delay = 0x%xn", 
  2238. readl(&(tb->HostWrite.CoalIntDelay)));
  2239. printk("   Coalese Interrupt Count = 0x%xn", 
  2240. readl(&(tb->HostWrite.CoalIntCount)));
  2241. printk("   Max outstanding commands = 0x%dn", 
  2242. readl(&(tb->CmdsOutMax)));
  2243. printk("   Bus Types = 0x%xn", readl(&(tb-> BusTypes)));
  2244. for(i=0;i<16;i++)
  2245. temp_name[i] = readb(&(tb->ServerName[i]));
  2246. temp_name[16] = '';
  2247. printk("   Server Name = %sn", temp_name);
  2248. printk("   Heartbeat Counter = 0x%xnnn", 
  2249. readl(&(tb->HeartBeat)));
  2250. }
  2251. #endif /* CCISS_DEBUG */ 
  2252. static void release_io_mem(ctlr_info_t *c)
  2253. {
  2254. /* if IO mem was not protected do nothing */
  2255. if( c->io_mem_addr == 0)
  2256. return;
  2257. release_region(c->io_mem_addr, c->io_mem_length);
  2258. c->io_mem_addr = 0;
  2259. c->io_mem_length = 0;
  2260. }
  2261. static int find_PCI_BAR_index(struct pci_dev *pdev,
  2262. unsigned long pci_bar_addr)
  2263. {
  2264. int i, offset, mem_type, bar_type;
  2265. if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
  2266. return 0;
  2267. offset = 0;
  2268. for (i=0; i<DEVICE_COUNT_RESOURCE; i++) {
  2269. bar_type = pci_resource_flags(pdev, i) &
  2270. PCI_BASE_ADDRESS_SPACE;
  2271. if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
  2272. offset += 4;
  2273. else {
  2274. mem_type = pci_resource_flags(pdev, i) &
  2275. PCI_BASE_ADDRESS_MEM_TYPE_MASK;
  2276. switch (mem_type) {
  2277. case PCI_BASE_ADDRESS_MEM_TYPE_32:
  2278. case PCI_BASE_ADDRESS_MEM_TYPE_1M:
  2279. offset += 4; /* 32 bit */
  2280. break;
  2281. case PCI_BASE_ADDRESS_MEM_TYPE_64:
  2282. offset += 8;
  2283. break;
  2284. default: /* reserved in PCI 2.2 */
  2285. printk(KERN_WARNING "Base address is invalidn");
  2286.         return -1;
  2287. break;
  2288. }
  2289. }
  2290.   if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
  2291. return i+1;
  2292. }
  2293. return -1;
  2294. }
  2295. static int cciss_pci_init(ctlr_info_t *c, struct pci_dev *pdev)
  2296. {
  2297. ushort subsystem_vendor_id, subsystem_device_id, command;
  2298. __u32 board_id, scratchpad = 0;
  2299. __u64 cfg_offset;
  2300. __u32 cfg_base_addr;
  2301. __u64 cfg_base_addr_index;
  2302. int i;
  2303. /* check to see if controller has been disabled */
  2304. /* BEFORE trying to enable it */
  2305. (void) pci_read_config_word(pdev, PCI_COMMAND,&command);
  2306. if(!(command & 0x02))
  2307. {
  2308. printk(KERN_WARNING "cciss: controller appears to be disabledn");
  2309. return(-1);
  2310. }
  2311. if (pci_enable_device(pdev))
  2312. {
  2313. printk(KERN_ERR "cciss: Unable to Enable PCI devicen");
  2314. return( -1);
  2315. }
  2316. subsystem_vendor_id = pdev->subsystem_vendor;
  2317. subsystem_device_id = pdev->subsystem_device;
  2318. board_id = (((__u32) (subsystem_device_id << 16) & 0xffff0000) |
  2319. subsystem_vendor_id);
  2320. /* search for our IO range so we can protect it */
  2321. for(i=0; i<DEVICE_COUNT_RESOURCE; i++)
  2322. {
  2323. /* is this an IO range */ 
  2324. if( pci_resource_flags(pdev, i) & 0x01 ) {
  2325. c->io_mem_addr = pci_resource_start(pdev, i);
  2326. c->io_mem_length = pci_resource_end(pdev, i) -
  2327. pci_resource_start(pdev, i) +1;
  2328. #ifdef CCISS_DEBUG
  2329. printk("IO value found base_addr[%d] %lx %lxn", i,
  2330. c->io_mem_addr, c->io_mem_length);
  2331. #endif /* CCISS_DEBUG */
  2332. /* register the IO range */ 
  2333. if(!request_region( c->io_mem_addr,
  2334.                                         c->io_mem_length, "cciss"))
  2335. {
  2336. printk(KERN_WARNING "cciss I/O memory range already in use addr=%lx length=%ldn",
  2337. c->io_mem_addr, c->io_mem_length);
  2338. c->io_mem_addr= 0;
  2339. c->io_mem_length = 0;
  2340. break;
  2341. }
  2342. }
  2343. #ifdef CCISS_DEBUG
  2344. printk("command = %xn", command);
  2345. printk("irq = %xn", pdev->irq);
  2346. printk("board_id = %xn", board_id);
  2347. #endif /* CCISS_DEBUG */ 
  2348. c->intr = pdev->irq;
  2349. /*
  2350.  * Memory base addr is first addr , the second points to the config
  2351.          *   table
  2352.  */
  2353. c->paddr = pci_resource_start(pdev, 0); /* addressing mode bits already removed */
  2354. #ifdef CCISS_DEBUG
  2355. printk("address 0 = %xn", c->paddr);
  2356. #endif /* CCISS_DEBUG */ 
  2357. c->vaddr = remap_pci_mem(c->paddr, 200);
  2358. /* Wait for the board to become ready.  (PCI hotplug needs this.)
  2359.  * We poll for up to 120 secs, once per 100ms. */
  2360. for (i=0; i < 1200; i++) {
  2361. scratchpad = readl(c->vaddr + SA5_SCRATCHPAD_OFFSET);
  2362. if (scratchpad == CCISS_FIRMWARE_READY)
  2363. break;
  2364. set_current_state(TASK_INTERRUPTIBLE);
  2365. schedule_timeout(HZ / 10); /* wait 100ms */
  2366. }
  2367. if (scratchpad != CCISS_FIRMWARE_READY) {
  2368. printk(KERN_WARNING "cciss: Board not ready.  Timed out.n");
  2369. return -1;
  2370. }
  2371. /* get the address index number */
  2372. cfg_base_addr = readl(c->vaddr + SA5_CTCFG_OFFSET);
  2373. cfg_base_addr &= (__u32) 0x0000ffff;
  2374. #ifdef CCISS_DEBUG
  2375. printk("cfg base address = %xn", cfg_base_addr);
  2376. #endif /* CCISS_DEBUG */
  2377. cfg_base_addr_index =
  2378. find_PCI_BAR_index(pdev, cfg_base_addr);
  2379. #ifdef CCISS_DEBUG
  2380. printk("cfg base address index = %xn", cfg_base_addr_index);
  2381. #endif /* CCISS_DEBUG */
  2382. if (cfg_base_addr_index == -1) {
  2383. printk(KERN_WARNING "cciss: Cannot find cfg_base_addr_indexn");
  2384. release_io_mem(c);
  2385. return -1;
  2386. }
  2387. cfg_offset = readl(c->vaddr + SA5_CTMEM_OFFSET);
  2388. #ifdef CCISS_DEBUG
  2389. printk("cfg offset = %xn", cfg_offset);
  2390. #endif /* CCISS_DEBUG */
  2391. c->cfgtable =  remap_pci_mem(pci_resource_start(pdev,
  2392. cfg_base_addr_index) + cfg_offset,
  2393. sizeof(CfgTable_struct));
  2394. c->board_id = board_id;
  2395. #ifdef CCISS_DEBUG
  2396. print_cfg_table(c->cfgtable); 
  2397. #endif /* CCISS_DEBUG */
  2398. for(i=0; i<NR_PRODUCTS; i++) {
  2399. if (board_id == products[i].board_id) {
  2400. c->product_name = products[i].product_name;
  2401. c->access = *(products[i].access);
  2402. break;
  2403. }
  2404. }
  2405. if (i == NR_PRODUCTS) {
  2406. printk(KERN_WARNING "cciss: Sorry, I don't know how"
  2407. " to access the Smart Array controller %08lxn", 
  2408. (unsigned long)board_id);
  2409. return -1;
  2410. }
  2411. if (  (readb(&c->cfgtable->Signature[0]) != 'C') ||
  2412.       (readb(&c->cfgtable->Signature[1]) != 'I') ||
  2413.       (readb(&c->cfgtable->Signature[2]) != 'S') ||
  2414.       (readb(&c->cfgtable->Signature[3]) != 'S') )
  2415. {
  2416. printk("Does not appear to be a valid CISS config tablen");
  2417. return -1;
  2418. }
  2419. #ifdef CONFIG_X86
  2420. {
  2421. /* Need to enable prefetch in the SCSI core for 6400 in x86 */
  2422. __u32 prefetch;
  2423. prefetch = readl(&(c->cfgtable->SCSI_Prefetch));
  2424. prefetch |= 0x100;
  2425. writel(prefetch, &(c->cfgtable->SCSI_Prefetch));
  2426. }
  2427. #endif
  2428. #ifdef CCISS_DEBUG
  2429. printk("Trying to put board into Simple moden");
  2430. #endif /* CCISS_DEBUG */ 
  2431. c->max_commands = readl(&(c->cfgtable->CmdsOutMax));
  2432. /* Update the field, and then ring the doorbell */ 
  2433. writel( CFGTBL_Trans_Simple, 
  2434. &(c->cfgtable->HostWrite.TransportRequest));
  2435. writel( CFGTBL_ChangeReq, c->vaddr + SA5_DOORBELL);
  2436. /* under certain very rare conditions, this can take awhile.
  2437.  * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
  2438.  * as we enter this code.) */
  2439. for(i=0;i<MAX_CONFIG_WAIT;i++) {
  2440. if (!(readl(c->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
  2441. break;
  2442. /* delay and try again */
  2443. set_current_state(TASK_INTERRUPTIBLE);
  2444. schedule_timeout(10);
  2445. }
  2446. #ifdef CCISS_DEBUG
  2447. printk(KERN_DEBUG "I counter got to %d %xn", i, readl(c->vaddr + SA5_DOORBELL));
  2448. #endif /* CCISS_DEBUG */
  2449. #ifdef CCISS_DEBUG
  2450. print_cfg_table(c->cfgtable);
  2451. #endif /* CCISS_DEBUG */ 
  2452. if (!(readl(&(c->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
  2453. {
  2454. printk(KERN_WARNING "cciss: unable to get board into"
  2455. " simple moden");
  2456. return -1;
  2457. }
  2458. return 0;
  2459. }
  2460. /* 
  2461.  * Gets information about the local volumes attached to the controller. 
  2462.  */ 
  2463. static void cciss_getgeometry(int cntl_num)
  2464. {
  2465. ReportLunData_struct *ld_buff;
  2466. ReadCapdata_struct *size_buff;
  2467. InquiryData_struct *inq_buff;
  2468. int return_code;
  2469. int i;
  2470. int listlength = 0;
  2471. __u32 lunid = 0;
  2472. int block_size;
  2473. int total_size; 
  2474. ld_buff = kmalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
  2475. if (ld_buff == NULL)
  2476. {
  2477. printk(KERN_ERR "cciss: out of memoryn");
  2478. return;
  2479. }
  2480. memset(ld_buff, 0, sizeof(ReportLunData_struct));
  2481. size_buff = kmalloc(sizeof( ReadCapdata_struct), GFP_KERNEL);
  2482.         if (size_buff == NULL)
  2483.         {
  2484.                 printk(KERN_ERR "cciss: out of memoryn");
  2485. kfree(ld_buff);
  2486.                 return;
  2487.         }
  2488. inq_buff = kmalloc(sizeof( InquiryData_struct), GFP_KERNEL);
  2489.         if (inq_buff == NULL)
  2490.         {
  2491.                 printk(KERN_ERR "cciss: out of memoryn");
  2492.                 kfree(ld_buff);
  2493. kfree(size_buff);
  2494.                 return;
  2495.         }
  2496. /* Get the firmware version */ 
  2497. return_code = sendcmd(CISS_INQUIRY, cntl_num, inq_buff, 
  2498. sizeof(InquiryData_struct), 0, 0 ,0, NULL, TYPE_CMD);
  2499. if (return_code == IO_OK)
  2500. {
  2501. hba[cntl_num]->firm_ver[0] = inq_buff->data_byte[32];
  2502. hba[cntl_num]->firm_ver[1] = inq_buff->data_byte[33];
  2503. hba[cntl_num]->firm_ver[2] = inq_buff->data_byte[34];
  2504. hba[cntl_num]->firm_ver[3] = inq_buff->data_byte[35];
  2505. } else /* send command failed */
  2506. {
  2507. printk(KERN_WARNING "cciss: unable to determine firmware"
  2508. " version of controllern");
  2509. }
  2510. /* Get the number of logical volumes */ 
  2511. return_code = sendcmd(CISS_REPORT_LOG, cntl_num, ld_buff, 
  2512. sizeof(ReportLunData_struct), 0, 0, 0, NULL, TYPE_CMD);
  2513. if( return_code == IO_OK)
  2514. {
  2515. #ifdef CCISS_DEBUG
  2516. printk("LUN Datan--------------------------n");
  2517. #endif /* CCISS_DEBUG */ 
  2518. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[0])) << 24;
  2519. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[1])) << 16;
  2520. listlength |= (0xff & (unsigned int)(ld_buff->LUNListLength[2])) << 8;
  2521. listlength |= 0xff & (unsigned int)(ld_buff->LUNListLength[3]);
  2522. } else /* reading number of logical volumes failed */
  2523. {
  2524. printk(KERN_WARNING "cciss: report logical volume"
  2525. " command failedn");
  2526. listlength = 0;
  2527. }
  2528. hba[cntl_num]->num_luns = listlength / 8; // 8 bytes pre entry
  2529. if (hba[cntl_num]->num_luns > CISS_MAX_LUN)
  2530. {
  2531. printk(KERN_ERR "ciss:  only %d number of logical volumes supportedn",
  2532. CISS_MAX_LUN);
  2533. hba[cntl_num]->num_luns = CISS_MAX_LUN;
  2534. }
  2535. #ifdef CCISS_DEBUG
  2536. printk(KERN_DEBUG "Length = %x %x %x %x = %dn", ld_buff->LUNListLength[0],
  2537. ld_buff->LUNListLength[1], ld_buff->LUNListLength[2],
  2538. ld_buff->LUNListLength[3],  hba[cntl_num]->num_luns);
  2539. #endif /* CCISS_DEBUG */
  2540. hba[cntl_num]->highest_lun = hba[cntl_num]->num_luns-1;
  2541. // for(i=0; i<  hba[cntl_num]->num_luns; i++)
  2542. for(i=0; i < CISS_MAX_LUN; i++)
  2543. {
  2544. if (i < hba[cntl_num]->num_luns){
  2545.    lunid = (0xff & (unsigned int)(ld_buff->LUN[i][3]))
  2546.  << 24;
  2547.          lunid |= (0xff & (unsigned int)(ld_buff->LUN[i][2]))
  2548.  << 16;
  2549.          lunid |= (0xff & (unsigned int)(ld_buff->LUN[i][1]))
  2550.  << 8;
  2551.          lunid |= 0xff & (unsigned int)(ld_buff->LUN[i][0]);
  2552. hba[cntl_num]->drv[i].LunID = lunid;
  2553. #ifdef CCISS_DEBUG
  2554.    printk(KERN_DEBUG "LUN[%d]:  %x %x %x %x = %xn", i, 
  2555. ld_buff->LUN[i][0], ld_buff->LUN[i][1],
  2556. ld_buff->LUN[i][2], ld_buff->LUN[i][3],
  2557. hba[cntl_num]->drv[i].LunID);
  2558. #endif /* CCISS_DEBUG */
  2559. cciss_read_capacity(cntl_num, i, size_buff, 0,
  2560. &total_size, &block_size);
  2561. cciss_geometry_inquiry(cntl_num, i, 0, total_size,
  2562. block_size, inq_buff, &hba[cntl_num]->drv[i]);
  2563. } else {
  2564. /* initialize raid_level to indicate a free space */
  2565. hba[cntl_num]->drv[i].raid_level = -1;
  2566. }
  2567. }
  2568. kfree(ld_buff);
  2569. kfree(size_buff);
  2570. kfree(inq_buff);
  2571. }
  2572. /* Function to find the first free pointer into our hba[] array */
  2573. /* Returns -1 if no free entries are left.  */
  2574. static int alloc_cciss_hba(void)
  2575. {
  2576. struct gendisk *disk[NWD];
  2577. int i, n;
  2578. for (n = 0; n < NWD; n++) {
  2579. disk[n] = alloc_disk(1 << NWD_SHIFT);
  2580. if (!disk[n])
  2581. goto out;
  2582. }
  2583. for(i=0; i< MAX_CTLR; i++) {
  2584. if (!hba[i]) {
  2585. ctlr_info_t *p;
  2586. p = kmalloc(sizeof(ctlr_info_t), GFP_KERNEL);
  2587. if (!p)
  2588. goto Enomem;
  2589. memset(p, 0, sizeof(ctlr_info_t));
  2590. for (n = 0; n < NWD; n++)
  2591. p->gendisk[n] = disk[n];
  2592. hba[i] = p;
  2593. return i;
  2594. }
  2595. }
  2596. printk(KERN_WARNING "cciss: This driver supports a maximum"
  2597. " of %d controllers.n", MAX_CTLR);
  2598. goto out;
  2599. Enomem:
  2600. printk(KERN_ERR "cciss: out of memory.n");
  2601. out:
  2602. while (n--)
  2603. put_disk(disk[n]);
  2604. return -1;
  2605. }
  2606. static void free_hba(int i)
  2607. {
  2608. ctlr_info_t *p = hba[i];
  2609. int n;
  2610. hba[i] = NULL;
  2611. for (n = 0; n < NWD; n++)
  2612. put_disk(p->gendisk[n]);
  2613. kfree(p);
  2614. }
  2615. /*
  2616.  *  This is it.  Find all the controllers and register them.  I really hate
  2617.  *  stealing all these major device numbers.
  2618.  *  returns the number of block devices registered.
  2619.  */
  2620. static int __devinit cciss_init_one(struct pci_dev *pdev,
  2621. const struct pci_device_id *ent)
  2622. {
  2623. request_queue_t *q;
  2624. int i;
  2625. int j;
  2626. int rc;
  2627. printk(KERN_DEBUG "cciss: Device 0x%x has been found at"
  2628. " bus %d dev %d func %dn",
  2629. pdev->device, pdev->bus->number, PCI_SLOT(pdev->devfn),
  2630. PCI_FUNC(pdev->devfn));
  2631. i = alloc_cciss_hba();
  2632. if(i < 0)
  2633. return (-1);
  2634. hba[i]->busy_initializing = 1;
  2635. if (cciss_pci_init(hba[i], pdev) != 0)
  2636. goto clean1;
  2637. sprintf(hba[i]->devname, "cciss%d", i);
  2638. hba[i]->ctlr = i;
  2639. hba[i]->pdev = pdev;
  2640. /* configure PCI DMA stuff */
  2641. if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK))
  2642. printk("cciss: using DAC cyclesn");
  2643. else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK))
  2644. printk("cciss: not using DAC cyclesn");
  2645. else {
  2646. printk("cciss: no suitable DMA availablen");
  2647. goto clean1;
  2648. }
  2649. /*
  2650.  * register with the major number, or get a dynamic major number
  2651.  * by passing 0 as argument.  This is done for greater than
  2652.  * 8 controller support.
  2653.  */
  2654. if (i < MAX_CTLR_ORIG)
  2655. hba[i]->major = MAJOR_NR + i;
  2656. rc = register_blkdev(hba[i]->major, hba[i]->devname);
  2657. if(rc == -EBUSY || rc == -EINVAL) {
  2658. printk(KERN_ERR
  2659. "cciss:  Unable to get major number %d for %s "
  2660. "on hba %dn", hba[i]->major, hba[i]->devname, i);
  2661. goto clean1;
  2662. }
  2663. else {
  2664. if (i >= MAX_CTLR_ORIG)
  2665. hba[i]->major = rc;
  2666. }
  2667. /* make sure the board interrupts are off */
  2668. hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_OFF);
  2669. if( request_irq(hba[i]->intr, do_cciss_intr, 
  2670. SA_INTERRUPT | SA_SHIRQ | SA_SAMPLE_RANDOM, 
  2671. hba[i]->devname, hba[i])) {
  2672. printk(KERN_ERR "cciss: Unable to get irq %d for %sn",
  2673. hba[i]->intr, hba[i]->devname);
  2674. goto clean2;
  2675. }
  2676. hba[i]->cmd_pool_bits = kmalloc(((NR_CMDS+BITS_PER_LONG-1)/BITS_PER_LONG)*sizeof(unsigned long), GFP_KERNEL);
  2677. hba[i]->cmd_pool = (CommandList_struct *)pci_alloc_consistent(
  2678. hba[i]->pdev, NR_CMDS * sizeof(CommandList_struct), 
  2679. &(hba[i]->cmd_pool_dhandle));
  2680. hba[i]->errinfo_pool = (ErrorInfo_struct *)pci_alloc_consistent(
  2681. hba[i]->pdev, NR_CMDS * sizeof( ErrorInfo_struct), 
  2682. &(hba[i]->errinfo_pool_dhandle));
  2683. if((hba[i]->cmd_pool_bits == NULL) 
  2684. || (hba[i]->cmd_pool == NULL)
  2685. || (hba[i]->errinfo_pool == NULL)) {
  2686.                 printk( KERN_ERR "cciss: out of memory");
  2687. goto clean4;
  2688. }
  2689. spin_lock_init(&hba[i]->lock);
  2690. /* Initialize the pdev driver private data. 
  2691. have it point to hba[i].  */
  2692. pci_set_drvdata(pdev, hba[i]);
  2693. /* command and error info recs zeroed out before 
  2694. they are used */
  2695.         memset(hba[i]->cmd_pool_bits, 0, ((NR_CMDS+BITS_PER_LONG-1)/BITS_PER_LONG)*sizeof(unsigned long));
  2696. #ifdef CCISS_DEBUG
  2697. printk(KERN_DEBUG "Scanning for drives on controller cciss%dn",i);
  2698. #endif /* CCISS_DEBUG */
  2699. cciss_getgeometry(i);
  2700. cciss_scsi_setup(i);
  2701. /* Turn the interrupts on so we can service requests */
  2702. hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_ON);
  2703. cciss_procinit(i);
  2704. hba[i]->busy_initializing = 0;
  2705. for(j=0; j < NWD; j++) { /* mfm */
  2706. drive_info_struct *drv = &(hba[i]->drv[j]);
  2707. struct gendisk *disk = hba[i]->gendisk[j];
  2708. q = blk_init_queue(do_cciss_request, &hba[i]->lock);
  2709. if (!q) {
  2710. printk(KERN_ERR
  2711.    "cciss:  unable to allocate queue for disk %dn",
  2712.    j);
  2713. break;
  2714. }
  2715. drv->queue = q;
  2716. q->backing_dev_info.ra_pages = READ_AHEAD;
  2717. blk_queue_bounce_limit(q, hba[i]->pdev->dma_mask);
  2718. /* This is a hardware imposed limit. */
  2719. blk_queue_max_hw_segments(q, MAXSGENTRIES);
  2720. /* This is a limit in the driver and could be eliminated. */
  2721. blk_queue_max_phys_segments(q, MAXSGENTRIES);
  2722. blk_queue_max_sectors(q, 512);
  2723. q->queuedata = hba[i];
  2724. sprintf(disk->disk_name, "cciss/c%dd%d", i, j);
  2725. sprintf(disk->devfs_name, "cciss/host%d/target%d", i, j);
  2726. disk->major = hba[i]->major;
  2727. disk->first_minor = j << NWD_SHIFT;
  2728. disk->fops = &cciss_fops;
  2729. disk->queue = q;
  2730. disk->private_data = drv;
  2731. /* we must register the controller even if no disks exist */
  2732. /* this is for the online array utilities */
  2733. if(!drv->heads && j)
  2734. continue;
  2735. blk_queue_hardsect_size(q, drv->block_size);
  2736. set_capacity(disk, drv->nr_blocks);
  2737. add_disk(disk);
  2738. }
  2739. return(1);
  2740. clean4:
  2741. if(hba[i]->cmd_pool_bits)
  2742.                 kfree(hba[i]->cmd_pool_bits);
  2743. if(hba[i]->cmd_pool)
  2744. pci_free_consistent(hba[i]->pdev,
  2745. NR_CMDS * sizeof(CommandList_struct),
  2746. hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
  2747. if(hba[i]->errinfo_pool)
  2748. pci_free_consistent(hba[i]->pdev,
  2749. NR_CMDS * sizeof( ErrorInfo_struct),
  2750. hba[i]->errinfo_pool,
  2751. hba[i]->errinfo_pool_dhandle);
  2752. free_irq(hba[i]->intr, hba[i]);
  2753. clean2:
  2754. unregister_blkdev(hba[i]->major, hba[i]->devname);
  2755. clean1:
  2756. release_io_mem(hba[i]);
  2757. free_hba(i);
  2758. hba[i]->busy_initializing = 0;
  2759. return(-1);
  2760. }
  2761. static void __devexit cciss_remove_one (struct pci_dev *pdev)
  2762. {
  2763. ctlr_info_t *tmp_ptr;
  2764. int i, j;
  2765. char flush_buf[4];
  2766. int return_code; 
  2767. if (pci_get_drvdata(pdev) == NULL)
  2768. {
  2769. printk( KERN_ERR "cciss: Unable to remove device n");
  2770. return;
  2771. }
  2772. tmp_ptr = pci_get_drvdata(pdev);
  2773. i = tmp_ptr->ctlr;
  2774. if (hba[i] == NULL) 
  2775. {
  2776. printk(KERN_ERR "cciss: device appears to "
  2777. "already be removed n");
  2778. return;
  2779. }
  2780. /* Turn board interrupts off  and send the flush cache command */
  2781. /* sendcmd will turn off interrupt, and send the flush...
  2782. * To write all data in the battery backed cache to disks */
  2783. memset(flush_buf, 0, 4);
  2784. return_code = sendcmd(CCISS_CACHE_FLUSH, i, flush_buf, 4, 0, 0, 0, NULL,
  2785. TYPE_CMD);
  2786. if(return_code != IO_OK)
  2787. {
  2788. printk(KERN_WARNING "Error Flushing cache on controller %dn", 
  2789. i);
  2790. }
  2791. free_irq(hba[i]->intr, hba[i]);
  2792. pci_set_drvdata(pdev, NULL);
  2793. iounmap(hba[i]->vaddr);
  2794. cciss_unregister_scsi(i);  /* unhook from SCSI subsystem */
  2795. unregister_blkdev(hba[i]->major, hba[i]->devname);
  2796. remove_proc_entry(hba[i]->devname, proc_cciss);
  2797. /* remove it from the disk list */
  2798. for (j = 0; j < NWD; j++) {
  2799. struct gendisk *disk = hba[i]->gendisk[j];
  2800. if (disk->flags & GENHD_FL_UP) {
  2801. del_gendisk(disk);
  2802. blk_cleanup_queue(disk->queue);
  2803. }
  2804. }
  2805. pci_free_consistent(hba[i]->pdev, NR_CMDS * sizeof(CommandList_struct),
  2806.     hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
  2807. pci_free_consistent(hba[i]->pdev, NR_CMDS * sizeof( ErrorInfo_struct),
  2808. hba[i]->errinfo_pool, hba[i]->errinfo_pool_dhandle);
  2809. kfree(hba[i]->cmd_pool_bits);
  2810.   release_io_mem(hba[i]);
  2811. free_hba(i);
  2812. }
  2813. static struct pci_driver cciss_pci_driver = {
  2814. .name = "cciss",
  2815. .probe = cciss_init_one,
  2816. .remove = __devexit_p(cciss_remove_one),
  2817. .id_table = cciss_pci_device_id, /* id_table */
  2818. };
  2819. /*
  2820.  *  This is it.  Register the PCI driver information for the cards we control
  2821.  *  the OS will call our registered routines when it finds one of our cards. 
  2822.  */
  2823. static int __init cciss_init(void)
  2824. {
  2825. printk(KERN_INFO DRIVER_NAME "n");
  2826. /* Register for our PCI devices */
  2827. return pci_module_init(&cciss_pci_driver);
  2828. }
  2829. static void __exit cciss_cleanup(void)
  2830. {
  2831. int i;
  2832. pci_unregister_driver(&cciss_pci_driver);
  2833. /* double check that all controller entrys have been removed */
  2834. for (i=0; i< MAX_CTLR; i++) 
  2835. {
  2836. if (hba[i] != NULL)
  2837. {
  2838. printk(KERN_WARNING "cciss: had to remove"
  2839. " controller %dn", i);
  2840. cciss_remove_one(hba[i]->pdev);
  2841. }
  2842. }
  2843. remove_proc_entry("cciss", proc_root_driver);
  2844. }
  2845. static void fail_all_cmds(unsigned long ctlr)
  2846. {
  2847. /* If we get here, the board is apparently dead. */
  2848. ctlr_info_t *h = hba[ctlr];
  2849. CommandList_struct *c;
  2850. unsigned long flags;
  2851. printk(KERN_WARNING "cciss%d: controller not responding.n", h->ctlr);
  2852. h->alive = 0; /* the controller apparently died... */
  2853. spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
  2854. pci_disable_device(h->pdev); /* Make sure it is really dead. */
  2855. /* move everything off the request queue onto the completed queue */
  2856. while( (c = h->reqQ) != NULL ) {
  2857. removeQ(&(h->reqQ), c);
  2858. h->Qdepth--;
  2859. addQ (&(h->cmpQ), c);
  2860. }
  2861. /* Now, fail everything on the completed queue with a HW error */
  2862. while( (c = h->cmpQ) != NULL ) {
  2863. removeQ(&h->cmpQ, c);
  2864. c->err_info->CommandStatus = CMD_HARDWARE_ERR;
  2865. if (c->cmd_type == CMD_RWREQ) {
  2866. complete_command(h, c, 0);
  2867. } else if (c->cmd_type == CMD_IOCTL_PEND)
  2868. complete(c->waiting);
  2869. #ifdef CONFIG_CISS_SCSI_TAPE
  2870. else if (c->cmd_type == CMD_SCSI)
  2871. complete_scsi_command(c, 0, 0);
  2872. #endif
  2873. }
  2874. spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
  2875. return;
  2876. }
  2877. module_init(cciss_init);
  2878. module_exit(cciss_cleanup);