blob: 4899ab27f781920d31a20bfe88f0724eae92cd41 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Disk Array driver for HP SA 5xxx and 6xxx Controllers
Mike Millerfb86a352006-01-08 01:03:50 -08003 * Copyright 2000, 2006 Hewlett-Packard Development Company, L.P.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
Bjorn Helgaas7c832832006-06-25 05:49:06 -070036#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/hdreg.h>
38#include <linux/spinlock.h>
39#include <linux/compat.h>
Jens Axboe2056a782006-03-23 20:00:26 +010040#include <linux/blktrace_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/uaccess.h>
42#include <asm/io.h>
43
mike.miller@hp.comeb0df992005-06-10 14:51:04 -050044#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/blkdev.h>
46#include <linux/genhd.h>
47#include <linux/completion.h>
48
49#define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin))
Mike Miller9d827c92006-12-06 20:34:58 -080050#define DRIVER_NAME "HP CISS Driver (v 3.6.14)"
51#define DRIVER_VERSION CCISS_DRIVER_VERSION(3,6,14)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* Embedded module documentation macros - see modules.h */
54MODULE_AUTHOR("Hewlett-Packard Company");
Mike Miller9d827c92006-12-06 20:34:58 -080055MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 3.6.14");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400"
Mike Miller1883c5a2006-09-12 20:36:07 -070057 " SA6i P600 P800 P400 P400i E200 E200i E500");
Mike Miller9d827c92006-12-06 20:34:58 -080058MODULE_VERSION("3.6.14");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_LICENSE("GPL");
60
61#include "cciss_cmd.h"
62#include "cciss.h"
63#include <linux/cciss_ioctl.h>
64
65/* define the PCI info for the cards we can control */
66static const struct pci_device_id cciss_pci_device_id[] = {
Bjorn Helgaasf82ccdb2006-06-25 05:49:07 -070067 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISS, 0x0E11, 0x4070},
68 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB, 0x0E11, 0x4080},
69 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB, 0x0E11, 0x4082},
70 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSB, 0x0E11, 0x4083},
71 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x4091},
72 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409A},
73 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409B},
74 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409C},
75 {PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_CISSC, 0x0E11, 0x409D},
76 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSA, 0x103C, 0x3225},
77 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3223},
78 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3234},
79 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3235},
80 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3211},
81 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3212},
82 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3213},
83 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3214},
84 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3215},
Mike Millerde923912006-12-06 20:35:03 -080085 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3237},
Mike Miller4ff9a9a2006-12-06 20:35:00 -080086 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
87 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 {0,}
89};
Bjorn Helgaas7c832832006-06-25 05:49:06 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091MODULE_DEVICE_TABLE(pci, cciss_pci_device_id);
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* board_id = Subsystem Device ID & Vendor ID
94 * product = Marketing Name for the board
Bjorn Helgaas7c832832006-06-25 05:49:06 -070095 * access = Address of the struct of function pointers
Mike Millerf8806322006-12-06 20:35:01 -080096 * nr_cmds = Number of commands supported by controller
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
98static struct board_type products[] = {
Mike Millerf8806322006-12-06 20:35:01 -080099 {0x40700E11, "Smart Array 5300", &SA5_access, 512},
100 {0x40800E11, "Smart Array 5i", &SA5B_access, 512},
101 {0x40820E11, "Smart Array 532", &SA5B_access, 512},
102 {0x40830E11, "Smart Array 5312", &SA5B_access, 512},
103 {0x409A0E11, "Smart Array 641", &SA5_access, 512},
104 {0x409B0E11, "Smart Array 642", &SA5_access, 512},
105 {0x409C0E11, "Smart Array 6400", &SA5_access, 512},
106 {0x409D0E11, "Smart Array 6400 EM", &SA5_access, 512},
107 {0x40910E11, "Smart Array 6i", &SA5_access, 512},
108 {0x3225103C, "Smart Array P600", &SA5_access, 512},
109 {0x3223103C, "Smart Array P800", &SA5_access, 512},
110 {0x3234103C, "Smart Array P400", &SA5_access, 512},
111 {0x3235103C, "Smart Array P400i", &SA5_access, 512},
112 {0x3211103C, "Smart Array E200i", &SA5_access, 120},
113 {0x3212103C, "Smart Array E200", &SA5_access, 120},
114 {0x3213103C, "Smart Array E200i", &SA5_access, 120},
115 {0x3214103C, "Smart Array E200i", &SA5_access, 120},
116 {0x3215103C, "Smart Array E200i", &SA5_access, 120},
Mike Millerde923912006-12-06 20:35:03 -0800117 {0x3237103C, "Smart Array E500", &SA5_access, 512},
Mike Millerf8806322006-12-06 20:35:01 -0800118 {0xFFFF103C, "Unknown Smart Array", &SA5_access, 120},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -0700121/* How long to wait (in milliseconds) for board to go into simple mode */
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700122#define MAX_CONFIG_WAIT 30000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define MAX_IOCTL_CONFIG_WAIT 1000
124
125/*define how many times we will try a command because of bus resets */
126#define MAX_CMD_RETRIES 3
127
128#define READ_AHEAD 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#define MAX_CTLR 32
130
131/* Originally cciss driver only supports 8 major numbers */
132#define MAX_CTLR_ORIG 8
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static ctlr_info_t *hba[MAX_CTLR];
135
136static void do_cciss_request(request_queue_t *q);
David Howells7d12e782006-10-05 14:55:46 +0100137static irqreturn_t do_cciss_intr(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static int cciss_open(struct inode *inode, struct file *filep);
139static int cciss_release(struct inode *inode, struct file *filep);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700140static int cciss_ioctl(struct inode *inode, struct file *filep,
141 unsigned int cmd, unsigned long arg);
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800142static int cciss_getgeo(struct block_device *bdev, struct hd_geometry *geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144static int revalidate_allvol(ctlr_info_t *host);
145static int cciss_revalidate(struct gendisk *disk);
Mike Millerddd47442005-09-13 01:25:22 -0700146static int rebuild_lun_table(ctlr_info_t *h, struct gendisk *del_disk);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700147static int deregister_disk(struct gendisk *disk, drive_info_struct *drv,
148 int clear_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -0700150static void cciss_read_capacity(int ctlr, int logvol, int withirq,
151 sector_t *total_size, unsigned int *block_size);
152static void cciss_read_capacity_16(int ctlr, int logvol, int withirq,
153 sector_t *total_size, unsigned int *block_size);
154static void cciss_geometry_inquiry(int ctlr, int logvol,
155 int withirq, sector_t total_size,
156 unsigned int block_size, InquiryData_struct *inq_buff,
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700157 drive_info_struct *drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static void cciss_getgeometry(int cntl_num);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700159static void __devinit cciss_interrupt_mode(ctlr_info_t *, struct pci_dev *,
160 __u32);
161static void start_io(ctlr_info_t *h);
162static int sendcmd(__u8 cmd, int ctlr, void *buff, size_t size,
163 unsigned int use_unit_num, unsigned int log_unit,
164 __u8 page_code, unsigned char *scsi3addr, int cmd_type);
165static int sendcmd_withirq(__u8 cmd, int ctlr, void *buff, size_t size,
166 unsigned int use_unit_num, unsigned int log_unit,
167 __u8 page_code, int cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Mike Miller33079b22005-09-13 01:25:22 -0700169static void fail_all_cmds(unsigned long ctlr);
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#ifdef CONFIG_PROC_FS
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700172static int cciss_proc_get_info(char *buffer, char **start, off_t offset,
173 int length, int *eof, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static void cciss_procinit(int i);
175#else
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700176static void cciss_procinit(int i)
177{
178}
179#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181#ifdef CONFIG_COMPAT
182static long cciss_compat_ioctl(struct file *f, unsigned cmd, unsigned long arg);
183#endif
184
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700185static struct block_device_operations cciss_fops = {
186 .owner = THIS_MODULE,
187 .open = cciss_open,
188 .release = cciss_release,
189 .ioctl = cciss_ioctl,
190 .getgeo = cciss_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#ifdef CONFIG_COMPAT
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700192 .compat_ioctl = cciss_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#endif
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700194 .revalidate_disk = cciss_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
197/*
198 * Enqueuing and dequeuing functions for cmdlists.
199 */
200static inline void addQ(CommandList_struct **Qptr, CommandList_struct *c)
201{
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700202 if (*Qptr == NULL) {
203 *Qptr = c;
204 c->next = c->prev = c;
205 } else {
206 c->prev = (*Qptr)->prev;
207 c->next = (*Qptr);
208 (*Qptr)->prev->next = c;
209 (*Qptr)->prev = c;
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700213static inline CommandList_struct *removeQ(CommandList_struct **Qptr,
214 CommandList_struct *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700216 if (c && c->next != c) {
217 if (*Qptr == c)
218 *Qptr = c->next;
219 c->prev->next = c->next;
220 c->next->prev = c->prev;
221 } else {
222 *Qptr = NULL;
223 }
224 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227#include "cciss_scsi.c" /* For SCSI tape support */
228
229#ifdef CONFIG_PROC_FS
230
231/*
232 * Report information about this controller.
233 */
234#define ENG_GIG 1000000000
235#define ENG_GIG_FACTOR (ENG_GIG/512)
236#define RAID_UNKNOWN 6
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700237static const char *raid_label[] = { "0", "4", "1(1+0)", "5", "5+1", "ADG",
238 "UNKNOWN"
239};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241static struct proc_dir_entry *proc_cciss;
242
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700243static int cciss_proc_get_info(char *buffer, char **start, off_t offset,
244 int length, int *eof, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700246 off_t pos = 0;
247 off_t len = 0;
248 int size, i, ctlr;
249 ctlr_info_t *h = (ctlr_info_t *) data;
250 drive_info_struct *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 unsigned long flags;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700252 sector_t vol_sz, vol_sz_frac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700254 ctlr = h->ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /* prevent displaying bogus info during configuration
257 * or deconfiguration of a logical volume
258 */
259 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
260 if (h->busy_configuring) {
261 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700262 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264 h->busy_configuring = 1;
265 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
266
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700267 size = sprintf(buffer, "%s: HP %s Controller\n"
268 "Board ID: 0x%08lx\n"
269 "Firmware Version: %c%c%c%c\n"
270 "IRQ: %d\n"
271 "Logical drives: %d\n"
272 "Current Q depth: %d\n"
273 "Current # commands on controller: %d\n"
274 "Max Q depth since init: %d\n"
275 "Max # commands on controller since init: %d\n"
276 "Max SG entries since init: %d\n\n",
277 h->devname,
278 h->product_name,
279 (unsigned long)h->board_id,
280 h->firm_ver[0], h->firm_ver[1], h->firm_ver[2],
281 h->firm_ver[3], (unsigned int)h->intr[SIMPLE_MODE_INT],
282 h->num_luns, h->Qdepth, h->commands_outstanding,
283 h->maxQsinceinit, h->max_outstanding, h->maxSG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700285 pos += size;
286 len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 cciss_proc_tape_report(ctlr, buffer, &pos, &len);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700288 for (i = 0; i <= h->highest_lun; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700290 drv = &h->drv[i];
Mike Millerddd47442005-09-13 01:25:22 -0700291 if (drv->heads == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 continue;
293
294 vol_sz = drv->nr_blocks;
295 vol_sz_frac = sector_div(vol_sz, ENG_GIG_FACTOR);
296 vol_sz_frac *= 100;
297 sector_div(vol_sz_frac, ENG_GIG_FACTOR);
298
299 if (drv->raid_level > 5)
300 drv->raid_level = RAID_UNKNOWN;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700301 size = sprintf(buffer + len, "cciss/c%dd%d:"
302 "\t%4u.%02uGB\tRAID %s\n",
303 ctlr, i, (int)vol_sz, (int)vol_sz_frac,
304 raid_label[drv->raid_level]);
305 pos += size;
306 len += size;
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700309 *eof = 1;
310 *start = buffer + offset;
311 len -= offset;
312 if (len > length)
313 len = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 h->busy_configuring = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700315 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700318static int
319cciss_proc_write(struct file *file, const char __user *buffer,
320 unsigned long count, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 unsigned char cmd[80];
323 int len;
324#ifdef CONFIG_CISS_SCSI_TAPE
325 ctlr_info_t *h = (ctlr_info_t *) data;
326 int rc;
327#endif
328
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700329 if (count > sizeof(cmd) - 1)
330 return -EINVAL;
331 if (copy_from_user(cmd, buffer, count))
332 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 cmd[count] = '\0';
334 len = strlen(cmd); // above 3 lines ensure safety
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700335 if (len && cmd[len - 1] == '\n')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 cmd[--len] = '\0';
337# ifdef CONFIG_CISS_SCSI_TAPE
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700338 if (strcmp("engage scsi", cmd) == 0) {
339 rc = cciss_engage_scsi(h->ctlr);
340 if (rc != 0)
341 return -rc;
342 return count;
343 }
344 /* might be nice to have "disengage" too, but it's not
345 safely possible. (only 1 module use count, lock issues.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346# endif
347 return -EINVAL;
348}
349
350/*
351 * Get us a file in /proc/cciss that says something about each controller.
352 * Create /proc/cciss if it doesn't exist yet.
353 */
354static void __devinit cciss_procinit(int i)
355{
356 struct proc_dir_entry *pde;
357
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700358 if (proc_cciss == NULL) {
359 proc_cciss = proc_mkdir("cciss", proc_root_driver);
360 if (!proc_cciss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700364 pde = create_proc_read_entry(hba[i]->devname,
365 S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH,
366 proc_cciss, cciss_proc_get_info, hba[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 pde->write_proc = cciss_proc_write;
368}
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700369#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700371/*
372 * For operations that cannot sleep, a command block is allocated at init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700374 * which ones are free or in use. For operations that can wait for kmalloc
375 * to possible sleep, this routine can be called with get_from_pool set to 0.
376 * cmd_free() MUST be called with a got_from_pool set to 0 if cmd_alloc was.
377 */
378static CommandList_struct *cmd_alloc(ctlr_info_t *h, int get_from_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 CommandList_struct *c;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700381 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 u64bit temp64;
383 dma_addr_t cmd_dma_handle, err_dma_handle;
384
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700385 if (!get_from_pool) {
386 c = (CommandList_struct *) pci_alloc_consistent(h->pdev,
387 sizeof(CommandList_struct), &cmd_dma_handle);
388 if (c == NULL)
389 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 memset(c, 0, sizeof(CommandList_struct));
391
Mike Miller33079b22005-09-13 01:25:22 -0700392 c->cmdindex = -1;
393
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700394 c->err_info = (ErrorInfo_struct *)
395 pci_alloc_consistent(h->pdev, sizeof(ErrorInfo_struct),
396 &err_dma_handle);
397
398 if (c->err_info == NULL) {
399 pci_free_consistent(h->pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 sizeof(CommandList_struct), c, cmd_dma_handle);
401 return NULL;
402 }
403 memset(c->err_info, 0, sizeof(ErrorInfo_struct));
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700404 } else { /* get it out of the controllers pool */
405
406 do {
Mike Millerf8806322006-12-06 20:35:01 -0800407 i = find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds);
408 if (i == h->nr_cmds)
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700409 return NULL;
410 } while (test_and_set_bit
411 (i & (BITS_PER_LONG - 1),
412 h->cmd_pool_bits + (i / BITS_PER_LONG)) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#ifdef CCISS_DEBUG
414 printk(KERN_DEBUG "cciss: using command buffer %d\n", i);
415#endif
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700416 c = h->cmd_pool + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 memset(c, 0, sizeof(CommandList_struct));
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700418 cmd_dma_handle = h->cmd_pool_dhandle
419 + i * sizeof(CommandList_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 c->err_info = h->errinfo_pool + i;
421 memset(c->err_info, 0, sizeof(ErrorInfo_struct));
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700422 err_dma_handle = h->errinfo_pool_dhandle
423 + i * sizeof(ErrorInfo_struct);
424 h->nr_allocs++;
Mike Miller33079b22005-09-13 01:25:22 -0700425
426 c->cmdindex = i;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 c->busaddr = (__u32) cmd_dma_handle;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700430 temp64.val = (__u64) err_dma_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 c->ErrDesc.Addr.lower = temp64.val32.lower;
432 c->ErrDesc.Addr.upper = temp64.val32.upper;
433 c->ErrDesc.Len = sizeof(ErrorInfo_struct);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 c->ctlr = h->ctlr;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700436 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700439/*
440 * Frees a command block that was previously allocated with cmd_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 */
442static void cmd_free(ctlr_info_t *h, CommandList_struct *c, int got_from_pool)
443{
444 int i;
445 u64bit temp64;
446
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700447 if (!got_from_pool) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 temp64.val32.lower = c->ErrDesc.Addr.lower;
449 temp64.val32.upper = c->ErrDesc.Addr.upper;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700450 pci_free_consistent(h->pdev, sizeof(ErrorInfo_struct),
451 c->err_info, (dma_addr_t) temp64.val);
452 pci_free_consistent(h->pdev, sizeof(CommandList_struct),
453 c, (dma_addr_t) c->busaddr);
454 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 i = c - h->cmd_pool;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700456 clear_bit(i & (BITS_PER_LONG - 1),
457 h->cmd_pool_bits + (i / BITS_PER_LONG));
458 h->nr_frees++;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462static inline ctlr_info_t *get_host(struct gendisk *disk)
463{
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700464 return disk->queue->queuedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467static inline drive_info_struct *get_drv(struct gendisk *disk)
468{
469 return disk->private_data;
470}
471
472/*
473 * Open. Make sure the device is really there.
474 */
475static int cciss_open(struct inode *inode, struct file *filep)
476{
477 ctlr_info_t *host = get_host(inode->i_bdev->bd_disk);
478 drive_info_struct *drv = get_drv(inode->i_bdev->bd_disk);
479
480#ifdef CCISS_DEBUG
481 printk(KERN_DEBUG "cciss_open %s\n", inode->i_bdev->bd_disk->disk_name);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700482#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Mike Millerddd47442005-09-13 01:25:22 -0700484 if (host->busy_initializing || drv->busy_configuring)
485 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /*
487 * Root is allowed to open raw volume zero even if it's not configured
488 * so array config can still work. Root is also allowed to open any
489 * volume that has a LUN ID, so it can issue IOCTL to reread the
490 * disk information. I don't think I really like this
491 * but I'm already using way to many device nodes to claim another one
492 * for "raw controller".
493 */
494 if (drv->nr_blocks == 0) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700495 if (iminor(inode) != 0) { /* not node 0? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* if not node 0 make sure it is a partition = 0 */
497 if (iminor(inode) & 0x0f) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700498 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* if it is, make sure we have a LUN ID */
500 } else if (drv->LunID == 0) {
501 return -ENXIO;
502 }
503 }
504 if (!capable(CAP_SYS_ADMIN))
505 return -EPERM;
506 }
507 drv->usage_count++;
508 host->usage_count++;
509 return 0;
510}
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/*
513 * Close. Sync first.
514 */
515static int cciss_release(struct inode *inode, struct file *filep)
516{
517 ctlr_info_t *host = get_host(inode->i_bdev->bd_disk);
518 drive_info_struct *drv = get_drv(inode->i_bdev->bd_disk);
519
520#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700521 printk(KERN_DEBUG "cciss_release %s\n",
522 inode->i_bdev->bd_disk->disk_name);
523#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 drv->usage_count--;
526 host->usage_count--;
527 return 0;
528}
529
530#ifdef CONFIG_COMPAT
531
532static int do_ioctl(struct file *f, unsigned cmd, unsigned long arg)
533{
534 int ret;
535 lock_kernel();
536 ret = cciss_ioctl(f->f_dentry->d_inode, f, cmd, arg);
537 unlock_kernel();
538 return ret;
539}
540
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700541static int cciss_ioctl32_passthru(struct file *f, unsigned cmd,
542 unsigned long arg);
543static int cciss_ioctl32_big_passthru(struct file *f, unsigned cmd,
544 unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546static long cciss_compat_ioctl(struct file *f, unsigned cmd, unsigned long arg)
547{
548 switch (cmd) {
549 case CCISS_GETPCIINFO:
550 case CCISS_GETINTINFO:
551 case CCISS_SETINTINFO:
552 case CCISS_GETNODENAME:
553 case CCISS_SETNODENAME:
554 case CCISS_GETHEARTBEAT:
555 case CCISS_GETBUSTYPES:
556 case CCISS_GETFIRMVER:
557 case CCISS_GETDRIVVER:
558 case CCISS_REVALIDVOLS:
559 case CCISS_DEREGDISK:
560 case CCISS_REGNEWDISK:
561 case CCISS_REGNEWD:
562 case CCISS_RESCANDISK:
563 case CCISS_GETLUNINFO:
564 return do_ioctl(f, cmd, arg);
565
566 case CCISS_PASSTHRU32:
567 return cciss_ioctl32_passthru(f, cmd, arg);
568 case CCISS_BIG_PASSTHRU32:
569 return cciss_ioctl32_big_passthru(f, cmd, arg);
570
571 default:
572 return -ENOIOCTLCMD;
573 }
574}
575
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700576static int cciss_ioctl32_passthru(struct file *f, unsigned cmd,
577 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 IOCTL32_Command_struct __user *arg32 =
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700580 (IOCTL32_Command_struct __user *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 IOCTL_Command_struct arg64;
582 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
583 int err;
584 u32 cp;
585
586 err = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700587 err |=
588 copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
589 sizeof(arg64.LUN_info));
590 err |=
591 copy_from_user(&arg64.Request, &arg32->Request,
592 sizeof(arg64.Request));
593 err |=
594 copy_from_user(&arg64.error_info, &arg32->error_info,
595 sizeof(arg64.error_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 err |= get_user(arg64.buf_size, &arg32->buf_size);
597 err |= get_user(cp, &arg32->buf);
598 arg64.buf = compat_ptr(cp);
599 err |= copy_to_user(p, &arg64, sizeof(arg64));
600
601 if (err)
602 return -EFAULT;
603
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700604 err = do_ioctl(f, CCISS_PASSTHRU, (unsigned long)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (err)
606 return err;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700607 err |=
608 copy_in_user(&arg32->error_info, &p->error_info,
609 sizeof(arg32->error_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (err)
611 return -EFAULT;
612 return err;
613}
614
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700615static int cciss_ioctl32_big_passthru(struct file *file, unsigned cmd,
616 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 BIG_IOCTL32_Command_struct __user *arg32 =
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700619 (BIG_IOCTL32_Command_struct __user *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 BIG_IOCTL_Command_struct arg64;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700621 BIG_IOCTL_Command_struct __user *p =
622 compat_alloc_user_space(sizeof(arg64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int err;
624 u32 cp;
625
626 err = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700627 err |=
628 copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
629 sizeof(arg64.LUN_info));
630 err |=
631 copy_from_user(&arg64.Request, &arg32->Request,
632 sizeof(arg64.Request));
633 err |=
634 copy_from_user(&arg64.error_info, &arg32->error_info,
635 sizeof(arg64.error_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 err |= get_user(arg64.buf_size, &arg32->buf_size);
637 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
638 err |= get_user(cp, &arg32->buf);
639 arg64.buf = compat_ptr(cp);
640 err |= copy_to_user(p, &arg64, sizeof(arg64));
641
642 if (err)
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700643 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700645 err = do_ioctl(file, CCISS_BIG_PASSTHRU, (unsigned long)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (err)
647 return err;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700648 err |=
649 copy_in_user(&arg32->error_info, &p->error_info,
650 sizeof(arg32->error_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (err)
652 return -EFAULT;
653 return err;
654}
655#endif
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800656
657static int cciss_getgeo(struct block_device *bdev, struct hd_geometry *geo)
658{
659 drive_info_struct *drv = get_drv(bdev->bd_disk);
660
661 if (!drv->cylinders)
662 return -ENXIO;
663
664 geo->heads = drv->heads;
665 geo->sectors = drv->sectors;
666 geo->cylinders = drv->cylinders;
667 return 0;
668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/*
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700671 * ioctl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 */
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700673static int cciss_ioctl(struct inode *inode, struct file *filep,
674 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 struct block_device *bdev = inode->i_bdev;
677 struct gendisk *disk = bdev->bd_disk;
678 ctlr_info_t *host = get_host(disk);
679 drive_info_struct *drv = get_drv(disk);
680 int ctlr = host->ctlr;
681 void __user *argp = (void __user *)arg;
682
683#ifdef CCISS_DEBUG
684 printk(KERN_DEBUG "cciss_ioctl: Called with cmd=%x %lx\n", cmd, arg);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700685#endif /* CCISS_DEBUG */
686
687 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 case CCISS_GETPCIINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 {
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700690 cciss_pci_info_struct pciinfo;
691
692 if (!arg)
693 return -EINVAL;
694 pciinfo.domain = pci_domain_nr(host->pdev->bus);
695 pciinfo.bus = host->pdev->bus->number;
696 pciinfo.dev_fn = host->pdev->devfn;
697 pciinfo.board_id = host->board_id;
698 if (copy_to_user
699 (argp, &pciinfo, sizeof(cciss_pci_info_struct)))
700 return -EFAULT;
701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700703 case CCISS_GETINTINFO:
704 {
705 cciss_coalint_struct intinfo;
706 if (!arg)
707 return -EINVAL;
708 intinfo.delay =
709 readl(&host->cfgtable->HostWrite.CoalIntDelay);
710 intinfo.count =
711 readl(&host->cfgtable->HostWrite.CoalIntCount);
712 if (copy_to_user
713 (argp, &intinfo, sizeof(cciss_coalint_struct)))
714 return -EFAULT;
715 return 0;
716 }
717 case CCISS_SETINTINFO:
718 {
719 cciss_coalint_struct intinfo;
720 unsigned long flags;
721 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700723 if (!arg)
724 return -EINVAL;
725 if (!capable(CAP_SYS_ADMIN))
726 return -EPERM;
727 if (copy_from_user
728 (&intinfo, argp, sizeof(cciss_coalint_struct)))
729 return -EFAULT;
730 if ((intinfo.delay == 0) && (intinfo.count == 0))
731 {
732// printk("cciss_ioctl: delay and count cannot be 0\n");
733 return -EINVAL;
734 }
735 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
736 /* Update the field, and then ring the doorbell */
737 writel(intinfo.delay,
738 &(host->cfgtable->HostWrite.CoalIntDelay));
739 writel(intinfo.count,
740 &(host->cfgtable->HostWrite.CoalIntCount));
741 writel(CFGTBL_ChangeReq, host->vaddr + SA5_DOORBELL);
742
743 for (i = 0; i < MAX_IOCTL_CONFIG_WAIT; i++) {
744 if (!(readl(host->vaddr + SA5_DOORBELL)
745 & CFGTBL_ChangeReq))
746 break;
747 /* delay and try again */
748 udelay(1000);
749 }
750 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
751 if (i >= MAX_IOCTL_CONFIG_WAIT)
752 return -EAGAIN;
753 return 0;
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 case CCISS_GETNODENAME:
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700756 {
757 NodeName_type NodeName;
758 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700760 if (!arg)
761 return -EINVAL;
762 for (i = 0; i < 16; i++)
763 NodeName[i] =
764 readb(&host->cfgtable->ServerName[i]);
765 if (copy_to_user(argp, NodeName, sizeof(NodeName_type)))
766 return -EFAULT;
767 return 0;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 case CCISS_SETNODENAME:
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700770 {
771 NodeName_type NodeName;
772 unsigned long flags;
773 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700775 if (!arg)
776 return -EINVAL;
777 if (!capable(CAP_SYS_ADMIN))
778 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700780 if (copy_from_user
781 (NodeName, argp, sizeof(NodeName_type)))
782 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700784 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700786 /* Update the field, and then ring the doorbell */
787 for (i = 0; i < 16; i++)
788 writeb(NodeName[i],
789 &host->cfgtable->ServerName[i]);
790
791 writel(CFGTBL_ChangeReq, host->vaddr + SA5_DOORBELL);
792
793 for (i = 0; i < MAX_IOCTL_CONFIG_WAIT; i++) {
794 if (!(readl(host->vaddr + SA5_DOORBELL)
795 & CFGTBL_ChangeReq))
796 break;
797 /* delay and try again */
798 udelay(1000);
799 }
800 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
801 if (i >= MAX_IOCTL_CONFIG_WAIT)
802 return -EAGAIN;
803 return 0;
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 case CCISS_GETHEARTBEAT:
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700807 {
808 Heartbeat_type heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700810 if (!arg)
811 return -EINVAL;
812 heartbeat = readl(&host->cfgtable->HeartBeat);
813 if (copy_to_user
814 (argp, &heartbeat, sizeof(Heartbeat_type)))
815 return -EFAULT;
816 return 0;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 case CCISS_GETBUSTYPES:
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700819 {
820 BusTypes_type BusTypes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700822 if (!arg)
823 return -EINVAL;
824 BusTypes = readl(&host->cfgtable->BusTypes);
825 if (copy_to_user
826 (argp, &BusTypes, sizeof(BusTypes_type)))
827 return -EFAULT;
828 return 0;
829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 case CCISS_GETFIRMVER:
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700831 {
832 FirmwareVer_type firmware;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700834 if (!arg)
835 return -EINVAL;
836 memcpy(firmware, host->firm_ver, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700838 if (copy_to_user
839 (argp, firmware, sizeof(FirmwareVer_type)))
840 return -EFAULT;
841 return 0;
842 }
843 case CCISS_GETDRIVVER:
844 {
845 DriverVer_type DriverVer = DRIVER_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700847 if (!arg)
848 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700850 if (copy_to_user
851 (argp, &DriverVer, sizeof(DriverVer_type)))
852 return -EFAULT;
853 return 0;
854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 case CCISS_REVALIDVOLS:
857 if (bdev != bdev->bd_contains || drv != host->drv)
858 return -ENXIO;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700859 return revalidate_allvol(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700861 case CCISS_GETLUNINFO:{
862 LogvolInfo_struct luninfo;
863
864 luninfo.LunID = drv->LunID;
865 luninfo.num_opens = drv->usage_count;
866 luninfo.num_parts = 0;
867 if (copy_to_user(argp, &luninfo,
868 sizeof(LogvolInfo_struct)))
869 return -EFAULT;
870 return 0;
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 case CCISS_DEREGDISK:
Mike Millerddd47442005-09-13 01:25:22 -0700873 return rebuild_lun_table(host, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 case CCISS_REGNEWD:
Mike Millerddd47442005-09-13 01:25:22 -0700876 return rebuild_lun_table(host, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 case CCISS_PASSTHRU:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 {
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700880 IOCTL_Command_struct iocommand;
881 CommandList_struct *c;
882 char *buff = NULL;
883 u64bit temp64;
884 unsigned long flags;
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700885 DECLARE_COMPLETION_ONSTACK(wait);
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700886
887 if (!arg)
888 return -EINVAL;
889
890 if (!capable(CAP_SYS_RAWIO))
891 return -EPERM;
892
893 if (copy_from_user
894 (&iocommand, argp, sizeof(IOCTL_Command_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return -EFAULT;
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700896 if ((iocommand.buf_size < 1) &&
897 (iocommand.Request.Type.Direction != XFER_NONE)) {
898 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700900#if 0 /* 'buf_size' member is 16-bits, and always smaller than kmalloc limit */
901 /* Check kmalloc limits */
902 if (iocommand.buf_size > 128000)
903 return -EINVAL;
904#endif
905 if (iocommand.buf_size > 0) {
906 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
907 if (buff == NULL)
908 return -EFAULT;
909 }
910 if (iocommand.Request.Type.Direction == XFER_WRITE) {
911 /* Copy the data into the buffer we created */
912 if (copy_from_user
913 (buff, iocommand.buf, iocommand.buf_size)) {
914 kfree(buff);
915 return -EFAULT;
916 }
917 } else {
918 memset(buff, 0, iocommand.buf_size);
919 }
920 if ((c = cmd_alloc(host, 0)) == NULL) {
921 kfree(buff);
922 return -ENOMEM;
923 }
924 // Fill in the command type
925 c->cmd_type = CMD_IOCTL_PEND;
926 // Fill in Command Header
927 c->Header.ReplyQueue = 0; // unused in simple mode
928 if (iocommand.buf_size > 0) // buffer to fill
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 {
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700930 c->Header.SGList = 1;
931 c->Header.SGTotal = 1;
932 } else // no buffers to fill
933 {
934 c->Header.SGList = 0;
935 c->Header.SGTotal = 0;
936 }
937 c->Header.LUN = iocommand.LUN_info;
938 c->Header.Tag.lower = c->busaddr; // use the kernel address the cmd block for tag
939
940 // Fill in Request block
941 c->Request = iocommand.Request;
942
943 // Fill in the scatter gather information
944 if (iocommand.buf_size > 0) {
945 temp64.val = pci_map_single(host->pdev, buff,
946 iocommand.buf_size,
947 PCI_DMA_BIDIRECTIONAL);
948 c->SG[0].Addr.lower = temp64.val32.lower;
949 c->SG[0].Addr.upper = temp64.val32.upper;
950 c->SG[0].Len = iocommand.buf_size;
951 c->SG[0].Ext = 0; // we are not chaining
952 }
953 c->waiting = &wait;
954
955 /* Put the request on the tail of the request queue */
956 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
957 addQ(&host->reqQ, c);
958 host->Qdepth++;
959 start_io(host);
960 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
961
962 wait_for_completion(&wait);
963
964 /* unlock the buffers from DMA */
965 temp64.val32.lower = c->SG[0].Addr.lower;
966 temp64.val32.upper = c->SG[0].Addr.upper;
967 pci_unmap_single(host->pdev, (dma_addr_t) temp64.val,
968 iocommand.buf_size,
969 PCI_DMA_BIDIRECTIONAL);
970
971 /* Copy the error information out */
972 iocommand.error_info = *(c->err_info);
973 if (copy_to_user
974 (argp, &iocommand, sizeof(IOCTL_Command_struct))) {
975 kfree(buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 cmd_free(host, c, 0);
977 return -EFAULT;
978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700980 if (iocommand.Request.Type.Direction == XFER_READ) {
981 /* Copy the data out of the buffer we created */
982 if (copy_to_user
983 (iocommand.buf, buff, iocommand.buf_size)) {
984 kfree(buff);
985 cmd_free(host, c, 0);
986 return -EFAULT;
987 }
988 }
989 kfree(buff);
990 cmd_free(host, c, 0);
991 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -0700993 case CCISS_BIG_PASSTHRU:{
994 BIG_IOCTL_Command_struct *ioc;
995 CommandList_struct *c;
996 unsigned char **buff = NULL;
997 int *buff_size = NULL;
998 u64bit temp64;
999 unsigned long flags;
1000 BYTE sg_used = 0;
1001 int status = 0;
1002 int i;
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07001003 DECLARE_COMPLETION_ONSTACK(wait);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001004 __u32 left;
1005 __u32 sz;
1006 BYTE __user *data_ptr;
1007
1008 if (!arg)
1009 return -EINVAL;
1010 if (!capable(CAP_SYS_RAWIO))
1011 return -EPERM;
1012 ioc = (BIG_IOCTL_Command_struct *)
1013 kmalloc(sizeof(*ioc), GFP_KERNEL);
1014 if (!ioc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 status = -ENOMEM;
1016 goto cleanup1;
1017 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001018 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
1019 status = -EFAULT;
1020 goto cleanup1;
1021 }
1022 if ((ioc->buf_size < 1) &&
1023 (ioc->Request.Type.Direction != XFER_NONE)) {
1024 status = -EINVAL;
1025 goto cleanup1;
1026 }
1027 /* Check kmalloc limits using all SGs */
1028 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
1029 status = -EINVAL;
1030 goto cleanup1;
1031 }
1032 if (ioc->buf_size > ioc->malloc_size * MAXSGENTRIES) {
1033 status = -EINVAL;
1034 goto cleanup1;
1035 }
1036 buff =
1037 kzalloc(MAXSGENTRIES * sizeof(char *), GFP_KERNEL);
1038 if (!buff) {
1039 status = -ENOMEM;
1040 goto cleanup1;
1041 }
1042 buff_size = (int *)kmalloc(MAXSGENTRIES * sizeof(int),
1043 GFP_KERNEL);
1044 if (!buff_size) {
1045 status = -ENOMEM;
1046 goto cleanup1;
1047 }
1048 left = ioc->buf_size;
1049 data_ptr = ioc->buf;
1050 while (left) {
1051 sz = (left >
1052 ioc->malloc_size) ? ioc->
1053 malloc_size : left;
1054 buff_size[sg_used] = sz;
1055 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
1056 if (buff[sg_used] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 status = -ENOMEM;
Jens Axboe15534d32005-11-18 22:02:44 +01001058 goto cleanup1;
1059 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001060 if (ioc->Request.Type.Direction == XFER_WRITE) {
1061 if (copy_from_user
1062 (buff[sg_used], data_ptr, sz)) {
1063 status = -ENOMEM;
1064 goto cleanup1;
1065 }
1066 } else {
1067 memset(buff[sg_used], 0, sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001069 left -= sz;
1070 data_ptr += sz;
1071 sg_used++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001073 if ((c = cmd_alloc(host, 0)) == NULL) {
1074 status = -ENOMEM;
1075 goto cleanup1;
1076 }
1077 c->cmd_type = CMD_IOCTL_PEND;
1078 c->Header.ReplyQueue = 0;
1079
1080 if (ioc->buf_size > 0) {
1081 c->Header.SGList = sg_used;
1082 c->Header.SGTotal = sg_used;
1083 } else {
1084 c->Header.SGList = 0;
1085 c->Header.SGTotal = 0;
1086 }
1087 c->Header.LUN = ioc->LUN_info;
1088 c->Header.Tag.lower = c->busaddr;
1089
1090 c->Request = ioc->Request;
1091 if (ioc->buf_size > 0) {
1092 int i;
1093 for (i = 0; i < sg_used; i++) {
1094 temp64.val =
1095 pci_map_single(host->pdev, buff[i],
1096 buff_size[i],
1097 PCI_DMA_BIDIRECTIONAL);
1098 c->SG[i].Addr.lower =
1099 temp64.val32.lower;
1100 c->SG[i].Addr.upper =
1101 temp64.val32.upper;
1102 c->SG[i].Len = buff_size[i];
1103 c->SG[i].Ext = 0; /* we are not chaining */
1104 }
1105 }
1106 c->waiting = &wait;
1107 /* Put the request on the tail of the request queue */
1108 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
1109 addQ(&host->reqQ, c);
1110 host->Qdepth++;
1111 start_io(host);
1112 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
1113 wait_for_completion(&wait);
1114 /* unlock the buffers from DMA */
1115 for (i = 0; i < sg_used; i++) {
1116 temp64.val32.lower = c->SG[i].Addr.lower;
1117 temp64.val32.upper = c->SG[i].Addr.upper;
1118 pci_unmap_single(host->pdev,
1119 (dma_addr_t) temp64.val, buff_size[i],
1120 PCI_DMA_BIDIRECTIONAL);
1121 }
1122 /* Copy the error information out */
1123 ioc->error_info = *(c->err_info);
1124 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
1125 cmd_free(host, c, 0);
1126 status = -EFAULT;
1127 goto cleanup1;
1128 }
1129 if (ioc->Request.Type.Direction == XFER_READ) {
1130 /* Copy the data out of the buffer we created */
1131 BYTE __user *ptr = ioc->buf;
1132 for (i = 0; i < sg_used; i++) {
1133 if (copy_to_user
1134 (ptr, buff[i], buff_size[i])) {
1135 cmd_free(host, c, 0);
1136 status = -EFAULT;
1137 goto cleanup1;
1138 }
1139 ptr += buff_size[i];
1140 }
1141 }
1142 cmd_free(host, c, 0);
1143 status = 0;
1144 cleanup1:
1145 if (buff) {
1146 for (i = 0; i < sg_used; i++)
1147 kfree(buff[i]);
1148 kfree(buff);
1149 }
1150 kfree(buff_size);
1151 kfree(ioc);
1152 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 default:
1155 return -ENOTTY;
1156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159/*
1160 * revalidate_allvol is for online array config utilities. After a
1161 * utility reconfigures the drives in the array, it can use this function
1162 * (through an ioctl) to make the driver zap any previous disk structs for
1163 * that controller and get new ones.
1164 *
1165 * Right now I'm using the getgeometry() function to do this, but this
1166 * function should probably be finer grained and allow you to revalidate one
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07001167 * particular logical volume (instead of all of them on a particular
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 * controller).
1169 */
1170static int revalidate_allvol(ctlr_info_t *host)
1171{
1172 int ctlr = host->ctlr, i;
1173 unsigned long flags;
1174
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001175 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
1176 if (host->usage_count > 1) {
1177 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
1178 printk(KERN_WARNING "cciss: Device busy for volume"
1179 " revalidation (usage=%d)\n", host->usage_count);
1180 return -EBUSY;
1181 }
1182 host->usage_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
1184
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001185 for (i = 0; i < NWD; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 struct gendisk *disk = host->gendisk[i];
mikem6f5a0f72005-11-18 22:05:36 +01001187 if (disk) {
1188 request_queue_t *q = disk->queue;
1189
1190 if (disk->flags & GENHD_FL_UP)
1191 del_gendisk(disk);
1192 if (q)
1193 blk_cleanup_queue(q);
mikem6f5a0f72005-11-18 22:05:36 +01001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001197 /*
1198 * Set the partition and block size structures for all volumes
1199 * on this controller to zero. We will reread all of this data
1200 */
1201 memset(host->drv, 0, sizeof(drive_info_struct)
1202 * CISS_MAX_LUN);
1203 /*
1204 * Tell the array controller not to give us any interrupts while
1205 * we check the new geometry. Then turn interrupts back on when
1206 * we're done.
1207 */
1208 host->access.set_intr_mask(host, CCISS_INTR_OFF);
1209 cciss_getgeometry(ctlr);
1210 host->access.set_intr_mask(host, CCISS_INTR_ON);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001212 /* Loop through each real device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 for (i = 0; i < NWD; i++) {
1214 struct gendisk *disk = host->gendisk[i];
1215 drive_info_struct *drv = &(host->drv[i]);
1216 /* we must register the controller even if no disks exist */
1217 /* this is for the online array utilities */
1218 if (!drv->heads && i)
1219 continue;
Mike Millerad2b9312005-07-28 01:07:31 -07001220 blk_queue_hardsect_size(drv->queue, drv->block_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 set_capacity(disk, drv->nr_blocks);
1222 add_disk(disk);
1223 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001224 host->usage_count--;
1225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Mike Millerca1e0482006-04-10 15:38:07 -07001228static inline void complete_buffers(struct bio *bio, int status)
1229{
1230 while (bio) {
1231 struct bio *xbh = bio->bi_next;
1232 int nr_sectors = bio_sectors(bio);
1233
1234 bio->bi_next = NULL;
Mike Millerca1e0482006-04-10 15:38:07 -07001235 bio_endio(bio, nr_sectors << 9, status ? 0 : -EIO);
1236 bio = xbh;
1237 }
Mike Millerca1e0482006-04-10 15:38:07 -07001238}
1239
Jens Axboe7b30f092006-07-25 15:02:48 +02001240static void cciss_check_queues(ctlr_info_t *h)
1241{
1242 int start_queue = h->next_to_run;
1243 int i;
1244
1245 /* check to see if we have maxed out the number of commands that can
1246 * be placed on the queue. If so then exit. We do this check here
1247 * in case the interrupt we serviced was from an ioctl and did not
1248 * free any new commands.
1249 */
Mike Millerf8806322006-12-06 20:35:01 -08001250 if ((find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds)) == h->nr_cmds)
Jens Axboe7b30f092006-07-25 15:02:48 +02001251 return;
1252
1253 /* We have room on the queue for more commands. Now we need to queue
1254 * them up. We will also keep track of the next queue to run so
1255 * that every queue gets a chance to be started first.
1256 */
1257 for (i = 0; i < h->highest_lun + 1; i++) {
1258 int curr_queue = (start_queue + i) % (h->highest_lun + 1);
1259 /* make sure the disk has been added and the drive is real
1260 * because this can be called from the middle of init_one.
1261 */
1262 if (!(h->drv[curr_queue].queue) || !(h->drv[curr_queue].heads))
1263 continue;
1264 blk_start_queue(h->gendisk[curr_queue]->queue);
1265
1266 /* check to see if we have maxed out the number of commands
1267 * that can be placed on the queue.
1268 */
Mike Millerf8806322006-12-06 20:35:01 -08001269 if ((find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds)) == h->nr_cmds) {
Jens Axboe7b30f092006-07-25 15:02:48 +02001270 if (curr_queue == start_queue) {
1271 h->next_to_run =
1272 (start_queue + 1) % (h->highest_lun + 1);
1273 break;
1274 } else {
1275 h->next_to_run = curr_queue;
1276 break;
1277 }
1278 } else {
1279 curr_queue = (curr_queue + 1) % (h->highest_lun + 1);
1280 }
1281 }
1282}
1283
Mike Millerca1e0482006-04-10 15:38:07 -07001284static void cciss_softirq_done(struct request *rq)
1285{
1286 CommandList_struct *cmd = rq->completion_data;
1287 ctlr_info_t *h = hba[cmd->ctlr];
1288 unsigned long flags;
1289 u64bit temp64;
1290 int i, ddir;
1291
1292 if (cmd->Request.Type.Direction == XFER_READ)
1293 ddir = PCI_DMA_FROMDEVICE;
1294 else
1295 ddir = PCI_DMA_TODEVICE;
1296
1297 /* command did not need to be retried */
1298 /* unmap the DMA mapping for all the scatter gather elements */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001299 for (i = 0; i < cmd->Header.SGList; i++) {
Mike Millerca1e0482006-04-10 15:38:07 -07001300 temp64.val32.lower = cmd->SG[i].Addr.lower;
1301 temp64.val32.upper = cmd->SG[i].Addr.upper;
1302 pci_unmap_page(h->pdev, temp64.val, cmd->SG[i].Len, ddir);
1303 }
1304
1305 complete_buffers(rq->bio, rq->errors);
1306
Jens Axboeb369c2c2006-11-14 12:36:03 +01001307 if (blk_fs_request(rq)) {
1308 const int rw = rq_data_dir(rq);
1309
1310 disk_stat_add(rq->rq_disk, sectors[rw], rq->nr_sectors);
1311 }
1312
Mike Millerca1e0482006-04-10 15:38:07 -07001313#ifdef CCISS_DEBUG
1314 printk("Done with %p\n", rq);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001315#endif /* CCISS_DEBUG */
Mike Millerca1e0482006-04-10 15:38:07 -07001316
Matt Mackall8bd0b972006-06-25 05:47:11 -07001317 add_disk_randomness(rq->rq_disk);
Mike Millerca1e0482006-04-10 15:38:07 -07001318 spin_lock_irqsave(&h->lock, flags);
1319 end_that_request_last(rq, rq->errors);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001320 cmd_free(h, cmd, 1);
Jens Axboe7b30f092006-07-25 15:02:48 +02001321 cciss_check_queues(h);
Mike Millerca1e0482006-04-10 15:38:07 -07001322 spin_unlock_irqrestore(&h->lock, flags);
1323}
1324
Mike Millerddd47442005-09-13 01:25:22 -07001325/* This function will check the usage_count of the drive to be updated/added.
1326 * If the usage_count is zero then the drive information will be updated and
1327 * the disk will be re-registered with the kernel. If not then it will be
1328 * left alone for the next reboot. The exception to this is disk 0 which
1329 * will always be left registered with the kernel since it is also the
1330 * controller node. Any changes to disk 0 will show up on the next
1331 * reboot.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001332 */
Mike Millerddd47442005-09-13 01:25:22 -07001333static void cciss_update_drive_info(int ctlr, int drv_index)
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001334{
Mike Millerddd47442005-09-13 01:25:22 -07001335 ctlr_info_t *h = hba[ctlr];
1336 struct gendisk *disk;
Mike Millerddd47442005-09-13 01:25:22 -07001337 InquiryData_struct *inq_buff = NULL;
1338 unsigned int block_size;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001339 sector_t total_size;
Mike Millerddd47442005-09-13 01:25:22 -07001340 unsigned long flags = 0;
1341 int ret = 0;
1342
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001343 /* if the disk already exists then deregister it before proceeding */
1344 if (h->drv[drv_index].raid_level != -1) {
Mike Millerddd47442005-09-13 01:25:22 -07001345 spin_lock_irqsave(CCISS_LOCK(h->ctlr), flags);
1346 h->drv[drv_index].busy_configuring = 1;
1347 spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
1348 ret = deregister_disk(h->gendisk[drv_index],
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001349 &h->drv[drv_index], 0);
Mike Millerddd47442005-09-13 01:25:22 -07001350 h->drv[drv_index].busy_configuring = 0;
1351 }
1352
1353 /* If the disk is in use return */
1354 if (ret)
1355 return;
1356
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07001357 /* Get information about the disk and modify the driver structure */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001358 inq_buff = kmalloc(sizeof(InquiryData_struct), GFP_KERNEL);
Mike Millerddd47442005-09-13 01:25:22 -07001359 if (inq_buff == NULL)
1360 goto mem_msg;
1361
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001362 cciss_read_capacity(ctlr, drv_index, 1,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001363 &total_size, &block_size);
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001364
1365 /* total size = last LBA + 1 */
1366 /* FFFFFFFF + 1 = 0, cannot have a logical volume of size 0 */
1367 /* so we assume this volume this must be >2TB in size */
1368 if (total_size == (__u32) 0) {
1369 cciss_read_capacity_16(ctlr, drv_index, 1,
1370 &total_size, &block_size);
1371 h->cciss_read = CCISS_READ_16;
1372 h->cciss_write = CCISS_WRITE_16;
1373 } else {
1374 h->cciss_read = CCISS_READ_10;
1375 h->cciss_write = CCISS_WRITE_10;
1376 }
Mike Millerddd47442005-09-13 01:25:22 -07001377 cciss_geometry_inquiry(ctlr, drv_index, 1, total_size, block_size,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001378 inq_buff, &h->drv[drv_index]);
Mike Millerddd47442005-09-13 01:25:22 -07001379
1380 ++h->num_luns;
1381 disk = h->gendisk[drv_index];
1382 set_capacity(disk, h->drv[drv_index].nr_blocks);
1383
Mike Millerddd47442005-09-13 01:25:22 -07001384 /* if it's the controller it's already added */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001385 if (drv_index) {
Mike Millerddd47442005-09-13 01:25:22 -07001386 disk->queue = blk_init_queue(do_cciss_request, &h->lock);
1387
1388 /* Set up queue information */
1389 disk->queue->backing_dev_info.ra_pages = READ_AHEAD;
1390 blk_queue_bounce_limit(disk->queue, hba[ctlr]->pdev->dma_mask);
1391
1392 /* This is a hardware imposed limit. */
1393 blk_queue_max_hw_segments(disk->queue, MAXSGENTRIES);
1394
1395 /* This is a limit in the driver and could be eliminated. */
1396 blk_queue_max_phys_segments(disk->queue, MAXSGENTRIES);
1397
1398 blk_queue_max_sectors(disk->queue, 512);
1399
Mike Millerca1e0482006-04-10 15:38:07 -07001400 blk_queue_softirq_done(disk->queue, cciss_softirq_done);
1401
Mike Millerddd47442005-09-13 01:25:22 -07001402 disk->queue->queuedata = hba[ctlr];
1403
1404 blk_queue_hardsect_size(disk->queue,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001405 hba[ctlr]->drv[drv_index].block_size);
Mike Millerddd47442005-09-13 01:25:22 -07001406
1407 h->drv[drv_index].queue = disk->queue;
1408 add_disk(disk);
1409 }
1410
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001411 freeret:
Mike Millerddd47442005-09-13 01:25:22 -07001412 kfree(inq_buff);
1413 return;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001414 mem_msg:
Mike Millerddd47442005-09-13 01:25:22 -07001415 printk(KERN_ERR "cciss: out of memory\n");
1416 goto freeret;
1417}
1418
1419/* This function will find the first index of the controllers drive array
1420 * that has a -1 for the raid_level and will return that index. This is
1421 * where new drives will be added. If the index to be returned is greater
1422 * than the highest_lun index for the controller then highest_lun is set
1423 * to this new index. If there are no available indexes then -1 is returned.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001424 */
Mike Millerddd47442005-09-13 01:25:22 -07001425static int cciss_find_free_drive_index(int ctlr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Mike Millerddd47442005-09-13 01:25:22 -07001427 int i;
1428
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001429 for (i = 0; i < CISS_MAX_LUN; i++) {
1430 if (hba[ctlr]->drv[i].raid_level == -1) {
Mike Millerddd47442005-09-13 01:25:22 -07001431 if (i > hba[ctlr]->highest_lun)
1432 hba[ctlr]->highest_lun = i;
1433 return i;
1434 }
1435 }
1436 return -1;
1437}
1438
1439/* This function will add and remove logical drives from the Logical
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07001440 * drive array of the controller and maintain persistency of ordering
Mike Millerddd47442005-09-13 01:25:22 -07001441 * so that mount points are preserved until the next reboot. This allows
1442 * for the removal of logical drives in the middle of the drive array
1443 * without a re-ordering of those drives.
1444 * INPUT
1445 * h = The controller to perform the operations on
1446 * del_disk = The disk to remove if specified. If the value given
1447 * is NULL then no disk is removed.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001448 */
Mike Millerddd47442005-09-13 01:25:22 -07001449static int rebuild_lun_table(ctlr_info_t *h, struct gendisk *del_disk)
1450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int ctlr = h->ctlr;
Mike Millerddd47442005-09-13 01:25:22 -07001452 int num_luns;
1453 ReportLunData_struct *ld_buff = NULL;
1454 drive_info_struct *drv = NULL;
1455 int return_code;
1456 int listlength = 0;
1457 int i;
1458 int drv_found;
1459 int drv_index = 0;
1460 __u32 lunid = 0;
1461 unsigned long flags;
1462
1463 /* Set busy_configuring flag for this operation */
1464 spin_lock_irqsave(CCISS_LOCK(h->ctlr), flags);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001465 if (h->num_luns >= CISS_MAX_LUN) {
Mike Millerddd47442005-09-13 01:25:22 -07001466 spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
1467 return -EINVAL;
1468 }
1469
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001470 if (h->busy_configuring) {
Mike Millerddd47442005-09-13 01:25:22 -07001471 spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
1472 return -EBUSY;
1473 }
1474 h->busy_configuring = 1;
1475
1476 /* if del_disk is NULL then we are being called to add a new disk
1477 * and update the logical drive table. If it is not NULL then
1478 * we will check if the disk is in use or not.
1479 */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001480 if (del_disk != NULL) {
Mike Millerddd47442005-09-13 01:25:22 -07001481 drv = get_drv(del_disk);
1482 drv->busy_configuring = 1;
1483 spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
1484 return_code = deregister_disk(del_disk, drv, 1);
1485 drv->busy_configuring = 0;
1486 h->busy_configuring = 0;
1487 return return_code;
1488 } else {
1489 spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
1490 if (!capable(CAP_SYS_RAWIO))
1491 return -EPERM;
1492
1493 ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
1494 if (ld_buff == NULL)
1495 goto mem_msg;
1496
1497 return_code = sendcmd_withirq(CISS_REPORT_LOG, ctlr, ld_buff,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001498 sizeof(ReportLunData_struct), 0,
1499 0, 0, TYPE_CMD);
Mike Millerddd47442005-09-13 01:25:22 -07001500
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001501 if (return_code == IO_OK) {
1502 listlength |=
1503 (0xff & (unsigned int)(ld_buff->LUNListLength[0]))
1504 << 24;
1505 listlength |=
1506 (0xff & (unsigned int)(ld_buff->LUNListLength[1]))
1507 << 16;
1508 listlength |=
1509 (0xff & (unsigned int)(ld_buff->LUNListLength[2]))
1510 << 8;
1511 listlength |=
1512 0xff & (unsigned int)(ld_buff->LUNListLength[3]);
1513 } else { /* reading number of logical volumes failed */
Mike Millerddd47442005-09-13 01:25:22 -07001514 printk(KERN_WARNING "cciss: report logical volume"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001515 " command failed\n");
Mike Millerddd47442005-09-13 01:25:22 -07001516 listlength = 0;
1517 goto freeret;
1518 }
1519
1520 num_luns = listlength / 8; /* 8 bytes per entry */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001521 if (num_luns > CISS_MAX_LUN) {
Mike Millerddd47442005-09-13 01:25:22 -07001522 num_luns = CISS_MAX_LUN;
1523 printk(KERN_WARNING "cciss: more luns configured"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001524 " on controller than can be handled by"
1525 " this driver.\n");
Mike Millerddd47442005-09-13 01:25:22 -07001526 }
1527
1528 /* Compare controller drive array to drivers drive array.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001529 * Check for updates in the drive information and any new drives
1530 * on the controller.
1531 */
1532 for (i = 0; i < num_luns; i++) {
Mike Millerddd47442005-09-13 01:25:22 -07001533 int j;
1534
1535 drv_found = 0;
1536
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001537 lunid = (0xff &
1538 (unsigned int)(ld_buff->LUN[i][3])) << 24;
1539 lunid |= (0xff &
1540 (unsigned int)(ld_buff->LUN[i][2])) << 16;
1541 lunid |= (0xff &
1542 (unsigned int)(ld_buff->LUN[i][1])) << 8;
1543 lunid |= 0xff & (unsigned int)(ld_buff->LUN[i][0]);
Mike Millerddd47442005-09-13 01:25:22 -07001544
1545 /* Find if the LUN is already in the drive array
1546 * of the controller. If so then update its info
1547 * if not is use. If it does not exist then find
1548 * the first free index and add it.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001549 */
1550 for (j = 0; j <= h->highest_lun; j++) {
1551 if (h->drv[j].LunID == lunid) {
Mike Millerddd47442005-09-13 01:25:22 -07001552 drv_index = j;
1553 drv_found = 1;
1554 }
1555 }
1556
1557 /* check if the drive was found already in the array */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001558 if (!drv_found) {
Mike Millerddd47442005-09-13 01:25:22 -07001559 drv_index = cciss_find_free_drive_index(ctlr);
1560 if (drv_index == -1)
1561 goto freeret;
1562
1563 }
1564 h->drv[drv_index].LunID = lunid;
1565 cciss_update_drive_info(ctlr, drv_index);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001566 } /* end for */
1567 } /* end else */
Mike Millerddd47442005-09-13 01:25:22 -07001568
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001569 freeret:
Mike Millerddd47442005-09-13 01:25:22 -07001570 kfree(ld_buff);
1571 h->busy_configuring = 0;
1572 /* We return -1 here to tell the ACU that we have registered/updated
1573 * all of the drives that we can and to keep it from calling us
1574 * additional times.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001575 */
Mike Millerddd47442005-09-13 01:25:22 -07001576 return -1;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001577 mem_msg:
Mike Millerddd47442005-09-13 01:25:22 -07001578 printk(KERN_ERR "cciss: out of memory\n");
1579 goto freeret;
1580}
1581
1582/* This function will deregister the disk and it's queue from the
1583 * kernel. It must be called with the controller lock held and the
1584 * drv structures busy_configuring flag set. It's parameters are:
1585 *
1586 * disk = This is the disk to be deregistered
1587 * drv = This is the drive_info_struct associated with the disk to be
1588 * deregistered. It contains information about the disk used
1589 * by the driver.
1590 * clear_all = This flag determines whether or not the disk information
1591 * is going to be completely cleared out and the highest_lun
1592 * reset. Sometimes we want to clear out information about
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07001593 * the disk in preparation for re-adding it. In this case
Mike Millerddd47442005-09-13 01:25:22 -07001594 * the highest_lun should be left unchanged and the LunID
1595 * should not be cleared.
1596*/
1597static int deregister_disk(struct gendisk *disk, drive_info_struct *drv,
1598 int clear_all)
1599{
1600 ctlr_info_t *h = get_host(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 if (!capable(CAP_SYS_RAWIO))
1603 return -EPERM;
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 /* make sure logical volume is NOT is use */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001606 if (clear_all || (h->gendisk[0] == disk)) {
1607 if (drv->usage_count > 1)
1608 return -EBUSY;
1609 } else if (drv->usage_count > 0)
1610 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Mike Millerddd47442005-09-13 01:25:22 -07001612 /* invalidate the devices and deregister the disk. If it is disk
1613 * zero do not deregister it but just zero out it's values. This
1614 * allows us to delete disk zero but keep the controller registered.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001615 */
1616 if (h->gendisk[0] != disk) {
mikem6f5a0f72005-11-18 22:05:36 +01001617 if (disk) {
1618 request_queue_t *q = disk->queue;
1619 if (disk->flags & GENHD_FL_UP)
1620 del_gendisk(disk);
Mike Miller2f6331f2005-12-12 22:17:14 -08001621 if (q) {
mikem6f5a0f72005-11-18 22:05:36 +01001622 blk_cleanup_queue(q);
Mike Miller2f6331f2005-12-12 22:17:14 -08001623 drv->queue = NULL;
1624 }
Mike Millerddd47442005-09-13 01:25:22 -07001625 }
1626 }
1627
1628 --h->num_luns;
1629 /* zero out the disk size info */
1630 drv->nr_blocks = 0;
1631 drv->block_size = 0;
1632 drv->heads = 0;
1633 drv->sectors = 0;
1634 drv->cylinders = 0;
1635 drv->raid_level = -1; /* This can be used as a flag variable to
1636 * indicate that this element of the drive
1637 * array is free.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001638 */
Mike Millerddd47442005-09-13 01:25:22 -07001639
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001640 if (clear_all) {
1641 /* check to see if it was the last disk */
1642 if (drv == h->drv + h->highest_lun) {
1643 /* if so, find the new hightest lun */
1644 int i, newhighest = -1;
1645 for (i = 0; i < h->highest_lun; i++) {
1646 /* if the disk has size > 0, it is available */
Mike Millerddd47442005-09-13 01:25:22 -07001647 if (h->drv[i].heads)
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001648 newhighest = i;
1649 }
1650 h->highest_lun = newhighest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
Mike Millerddd47442005-09-13 01:25:22 -07001652
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001653 drv->LunID = 0;
Mike Millerddd47442005-09-13 01:25:22 -07001654 }
Bjorn Helgaase2019b52006-06-25 05:49:05 -07001655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
Mike Millerddd47442005-09-13 01:25:22 -07001657
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001658static int fill_cmd(CommandList_struct *c, __u8 cmd, int ctlr, void *buff, size_t size, unsigned int use_unit_num, /* 0: address the controller,
1659 1: address logical volume log_unit,
1660 2: periph device address is scsi3addr */
1661 unsigned int log_unit, __u8 page_code,
1662 unsigned char *scsi3addr, int cmd_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001664 ctlr_info_t *h = hba[ctlr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 u64bit buff_dma_handle;
1666 int status = IO_OK;
1667
1668 c->cmd_type = CMD_IOCTL_PEND;
1669 c->Header.ReplyQueue = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001670 if (buff != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 c->Header.SGList = 1;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001672 c->Header.SGTotal = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 } else {
1674 c->Header.SGList = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001675 c->Header.SGTotal = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
1677 c->Header.Tag.lower = c->busaddr;
1678
1679 c->Request.Type.Type = cmd_type;
1680 if (cmd_type == TYPE_CMD) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001681 switch (cmd) {
1682 case CISS_INQUIRY:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 /* If the logical unit number is 0 then, this is going
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001684 to controller so It's a physical command
1685 mode = 0 target = 0. So we have nothing to write.
1686 otherwise, if use_unit_num == 1,
1687 mode = 1(volume set addressing) target = LUNID
1688 otherwise, if use_unit_num == 2,
1689 mode = 0(periph dev addr) target = scsi3addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (use_unit_num == 1) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001691 c->Header.LUN.LogDev.VolId =
1692 h->drv[log_unit].LunID;
1693 c->Header.LUN.LogDev.Mode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 } else if (use_unit_num == 2) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001695 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr,
1696 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 c->Header.LUN.LogDev.Mode = 0;
1698 }
1699 /* are we trying to read a vital product page */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001700 if (page_code != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 c->Request.CDB[1] = 0x01;
1702 c->Request.CDB[2] = page_code;
1703 }
1704 c->Request.CDBLen = 6;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001705 c->Request.Type.Attribute = ATTR_SIMPLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 c->Request.Type.Direction = XFER_READ;
1707 c->Request.Timeout = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001708 c->Request.CDB[0] = CISS_INQUIRY;
1709 c->Request.CDB[4] = size & 0xFF;
1710 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 case CISS_REPORT_LOG:
1712 case CISS_REPORT_PHYS:
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001713 /* Talking to controller so It's a physical command
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 mode = 00 target = 0. Nothing to write.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001715 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 c->Request.CDBLen = 12;
1717 c->Request.Type.Attribute = ATTR_SIMPLE;
1718 c->Request.Type.Direction = XFER_READ;
1719 c->Request.Timeout = 0;
1720 c->Request.CDB[0] = cmd;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001721 c->Request.CDB[6] = (size >> 24) & 0xFF; //MSB
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 c->Request.CDB[7] = (size >> 16) & 0xFF;
1723 c->Request.CDB[8] = (size >> 8) & 0xFF;
1724 c->Request.CDB[9] = size & 0xFF;
1725 break;
1726
1727 case CCISS_READ_CAPACITY:
1728 c->Header.LUN.LogDev.VolId = h->drv[log_unit].LunID;
1729 c->Header.LUN.LogDev.Mode = 1;
1730 c->Request.CDBLen = 10;
1731 c->Request.Type.Attribute = ATTR_SIMPLE;
1732 c->Request.Type.Direction = XFER_READ;
1733 c->Request.Timeout = 0;
1734 c->Request.CDB[0] = cmd;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001735 break;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001736 case CCISS_READ_CAPACITY_16:
1737 c->Header.LUN.LogDev.VolId = h->drv[log_unit].LunID;
1738 c->Header.LUN.LogDev.Mode = 1;
1739 c->Request.CDBLen = 16;
1740 c->Request.Type.Attribute = ATTR_SIMPLE;
1741 c->Request.Type.Direction = XFER_READ;
1742 c->Request.Timeout = 0;
1743 c->Request.CDB[0] = cmd;
1744 c->Request.CDB[1] = 0x10;
1745 c->Request.CDB[10] = (size >> 24) & 0xFF;
1746 c->Request.CDB[11] = (size >> 16) & 0xFF;
1747 c->Request.CDB[12] = (size >> 8) & 0xFF;
1748 c->Request.CDB[13] = size & 0xFF;
1749 c->Request.Timeout = 0;
1750 c->Request.CDB[0] = cmd;
1751 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 case CCISS_CACHE_FLUSH:
1753 c->Request.CDBLen = 12;
1754 c->Request.Type.Attribute = ATTR_SIMPLE;
1755 c->Request.Type.Direction = XFER_WRITE;
1756 c->Request.Timeout = 0;
1757 c->Request.CDB[0] = BMIC_WRITE;
1758 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001759 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 default:
1761 printk(KERN_WARNING
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001762 "cciss%d: Unknown Command 0x%c\n", ctlr, cmd);
Bjorn Helgaase2019b52006-06-25 05:49:05 -07001763 return IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765 } else if (cmd_type == TYPE_MSG) {
1766 switch (cmd) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001767 case 0: /* ABORT message */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06001768 c->Request.CDBLen = 12;
1769 c->Request.Type.Attribute = ATTR_SIMPLE;
1770 c->Request.Type.Direction = XFER_WRITE;
1771 c->Request.Timeout = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001772 c->Request.CDB[0] = cmd; /* abort */
1773 c->Request.CDB[1] = 0; /* abort a command */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06001774 /* buff contains the tag of the command to abort */
1775 memcpy(&c->Request.CDB[4], buff, 8);
1776 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001777 case 1: /* RESET message */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06001778 c->Request.CDBLen = 12;
1779 c->Request.Type.Attribute = ATTR_SIMPLE;
1780 c->Request.Type.Direction = XFER_WRITE;
1781 c->Request.Timeout = 0;
1782 memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001783 c->Request.CDB[0] = cmd; /* reset */
1784 c->Request.CDB[1] = 0x04; /* reset a LUN */
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001785 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 case 3: /* No-Op message */
1787 c->Request.CDBLen = 1;
1788 c->Request.Type.Attribute = ATTR_SIMPLE;
1789 c->Request.Type.Direction = XFER_WRITE;
1790 c->Request.Timeout = 0;
1791 c->Request.CDB[0] = cmd;
1792 break;
1793 default:
1794 printk(KERN_WARNING
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001795 "cciss%d: unknown message type %d\n", ctlr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return IO_ERROR;
1797 }
1798 } else {
1799 printk(KERN_WARNING
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001800 "cciss%d: unknown command type %d\n", ctlr, cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return IO_ERROR;
1802 }
1803 /* Fill in the scatter gather information */
1804 if (size > 0) {
1805 buff_dma_handle.val = (__u64) pci_map_single(h->pdev,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001806 buff, size,
1807 PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 c->SG[0].Addr.lower = buff_dma_handle.val32.lower;
1809 c->SG[0].Addr.upper = buff_dma_handle.val32.upper;
1810 c->SG[0].Len = size;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001811 c->SG[0].Ext = 0; /* we are not chaining */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
1813 return status;
1814}
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001815
1816static int sendcmd_withirq(__u8 cmd,
1817 int ctlr,
1818 void *buff,
1819 size_t size,
1820 unsigned int use_unit_num,
1821 unsigned int log_unit, __u8 page_code, int cmd_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
1823 ctlr_info_t *h = hba[ctlr];
1824 CommandList_struct *c;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001825 u64bit buff_dma_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 unsigned long flags;
1827 int return_status;
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07001828 DECLARE_COMPLETION_ONSTACK(wait);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001829
1830 if ((c = cmd_alloc(h, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return -ENOMEM;
1832 return_status = fill_cmd(c, cmd, ctlr, buff, size, use_unit_num,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001833 log_unit, page_code, NULL, cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (return_status != IO_OK) {
1835 cmd_free(h, c, 0);
1836 return return_status;
1837 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001838 resend_cmd2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 c->waiting = &wait;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 /* Put the request on the tail of the queue and send it */
1842 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
1843 addQ(&h->reqQ, c);
1844 h->Qdepth++;
1845 start_io(h);
1846 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 wait_for_completion(&wait);
1849
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001850 if (c->err_info->CommandStatus != 0) { /* an error has occurred */
1851 switch (c->err_info->CommandStatus) {
1852 case CMD_TARGET_STATUS:
1853 printk(KERN_WARNING "cciss: cmd %p has "
1854 " completed with errors\n", c);
1855 if (c->err_info->ScsiStatus) {
1856 printk(KERN_WARNING "cciss: cmd %p "
1857 "has SCSI Status = %x\n",
1858 c, c->err_info->ScsiStatus);
1859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001862 case CMD_DATA_UNDERRUN:
1863 case CMD_DATA_OVERRUN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 /* expected for inquire and report lun commands */
1865 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001866 case CMD_INVALID:
1867 printk(KERN_WARNING "cciss: Cmd %p is "
1868 "reported invalid\n", c);
1869 return_status = IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001871 case CMD_PROTOCOL_ERR:
1872 printk(KERN_WARNING "cciss: cmd %p has "
1873 "protocol error \n", c);
1874 return_status = IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001876 case CMD_HARDWARE_ERR:
1877 printk(KERN_WARNING "cciss: cmd %p had "
1878 " hardware error\n", c);
1879 return_status = IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001881 case CMD_CONNECTION_LOST:
1882 printk(KERN_WARNING "cciss: cmd %p had "
1883 "connection lost\n", c);
1884 return_status = IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001886 case CMD_ABORTED:
1887 printk(KERN_WARNING "cciss: cmd %p was "
1888 "aborted\n", c);
1889 return_status = IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001891 case CMD_ABORT_FAILED:
1892 printk(KERN_WARNING "cciss: cmd %p reports "
1893 "abort failed\n", c);
1894 return_status = IO_ERROR;
1895 break;
1896 case CMD_UNSOLICITED_ABORT:
1897 printk(KERN_WARNING
1898 "cciss%d: unsolicited abort %p\n", ctlr, c);
1899 if (c->retry_count < MAX_CMD_RETRIES) {
1900 printk(KERN_WARNING
1901 "cciss%d: retrying %p\n", ctlr, c);
1902 c->retry_count++;
1903 /* erase the old error information */
1904 memset(c->err_info, 0,
1905 sizeof(ErrorInfo_struct));
1906 return_status = IO_OK;
1907 INIT_COMPLETION(wait);
1908 goto resend_cmd2;
1909 }
1910 return_status = IO_ERROR;
1911 break;
1912 default:
1913 printk(KERN_WARNING "cciss: cmd %p returned "
1914 "unknown status %x\n", c,
1915 c->err_info->CommandStatus);
1916 return_status = IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 /* unlock the buffers from DMA */
Mike Millerbb2a37b2005-09-13 01:25:24 -07001920 buff_dma_handle.val32.lower = c->SG[0].Addr.lower;
1921 buff_dma_handle.val32.upper = c->SG[0].Addr.upper;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001922 pci_unmap_single(h->pdev, (dma_addr_t) buff_dma_handle.val,
1923 c->SG[0].Len, PCI_DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 cmd_free(h, c, 0);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001925 return return_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928static void cciss_geometry_inquiry(int ctlr, int logvol,
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001929 int withirq, sector_t total_size,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001930 unsigned int block_size,
1931 InquiryData_struct *inq_buff,
1932 drive_info_struct *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 int return_code;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001935 unsigned long t;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 memset(inq_buff, 0, sizeof(InquiryData_struct));
1938 if (withirq)
1939 return_code = sendcmd_withirq(CISS_INQUIRY, ctlr,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001940 inq_buff, sizeof(*inq_buff), 1,
1941 logvol, 0xC1, TYPE_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 else
1943 return_code = sendcmd(CISS_INQUIRY, ctlr, inq_buff,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001944 sizeof(*inq_buff), 1, logvol, 0xC1, NULL,
1945 TYPE_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (return_code == IO_OK) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001947 if (inq_buff->data_byte[8] == 0xFF) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 printk(KERN_WARNING
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001949 "cciss: reading geometry failed, volume "
1950 "does not support reading geometry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 drv->heads = 255;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001952 drv->sectors = 32; // Sectors per track
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 drv->heads = inq_buff->data_byte[6];
1955 drv->sectors = inq_buff->data_byte[7];
1956 drv->cylinders = (inq_buff->data_byte[4] & 0xff) << 8;
1957 drv->cylinders += inq_buff->data_byte[5];
1958 drv->raid_level = inq_buff->data_byte[8];
Matthew Wilcox3f7705e2006-10-21 10:24:19 -07001959 }
1960 drv->block_size = block_size;
1961 drv->nr_blocks = total_size;
1962 t = drv->heads * drv->sectors;
1963 if (t > 1) {
1964 unsigned rem = sector_div(total_size, t);
1965 if (rem)
1966 total_size++;
1967 drv->cylinders = total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001969 } else { /* Get geometry failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 printk(KERN_WARNING "cciss: reading geometry failed\n");
1971 }
Metathronius Galabantcc088d12006-09-30 23:27:47 -07001972 printk(KERN_INFO " heads=%d, sectors=%d, cylinders=%d\n\n",
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001973 drv->heads, drv->sectors, drv->cylinders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976static void
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001977cciss_read_capacity(int ctlr, int logvol, int withirq, sector_t *total_size,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001978 unsigned int *block_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001980 ReadCapdata_struct *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 int return_code;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001982 buf = kmalloc(sizeof(ReadCapdata_struct), GFP_KERNEL);
1983 if (buf == NULL) {
1984 printk(KERN_WARNING "cciss: out of memory\n");
1985 return;
1986 }
1987 memset(buf, 0, sizeof(ReadCapdata_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 if (withirq)
1989 return_code = sendcmd_withirq(CCISS_READ_CAPACITY,
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001990 ctlr, buf, sizeof(ReadCapdata_struct),
1991 1, logvol, 0, TYPE_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 else
1993 return_code = sendcmd(CCISS_READ_CAPACITY,
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001994 ctlr, buf, sizeof(ReadCapdata_struct),
1995 1, logvol, 0, NULL, TYPE_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (return_code == IO_OK) {
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07001997 *total_size = be32_to_cpu(*(__u32 *) buf->total_size)+1;
1998 *block_size = be32_to_cpu(*(__u32 *) buf->block_size);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07001999 } else { /* read capacity command failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 printk(KERN_WARNING "cciss: read capacity failed\n");
2001 *total_size = 0;
2002 *block_size = BLOCK_SIZE;
2003 }
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002004 if (*total_size != (__u32) 0)
Randy Dunlap7b92aad2006-10-28 10:38:40 -07002005 printk(KERN_INFO " blocks= %llu block_size= %d\n",
2006 (unsigned long long)*total_size, *block_size);
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002007 kfree(buf);
2008 return;
2009}
2010
2011static void
2012cciss_read_capacity_16(int ctlr, int logvol, int withirq, sector_t *total_size, unsigned int *block_size)
2013{
2014 ReadCapdata_struct_16 *buf;
2015 int return_code;
2016 buf = kmalloc(sizeof(ReadCapdata_struct_16), GFP_KERNEL);
2017 if (buf == NULL) {
2018 printk(KERN_WARNING "cciss: out of memory\n");
2019 return;
2020 }
2021 memset(buf, 0, sizeof(ReadCapdata_struct_16));
2022 if (withirq) {
2023 return_code = sendcmd_withirq(CCISS_READ_CAPACITY_16,
2024 ctlr, buf, sizeof(ReadCapdata_struct_16),
2025 1, logvol, 0, TYPE_CMD);
2026 }
2027 else {
2028 return_code = sendcmd(CCISS_READ_CAPACITY_16,
2029 ctlr, buf, sizeof(ReadCapdata_struct_16),
2030 1, logvol, 0, NULL, TYPE_CMD);
2031 }
2032 if (return_code == IO_OK) {
2033 *total_size = be64_to_cpu(*(__u64 *) buf->total_size)+1;
2034 *block_size = be32_to_cpu(*(__u32 *) buf->block_size);
2035 } else { /* read capacity command failed */
2036 printk(KERN_WARNING "cciss: read capacity failed\n");
2037 *total_size = 0;
2038 *block_size = BLOCK_SIZE;
2039 }
Randy Dunlap7b92aad2006-10-28 10:38:40 -07002040 printk(KERN_INFO " blocks= %llu block_size= %d\n",
2041 (unsigned long long)*total_size, *block_size);
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002042 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return;
2044}
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046static int cciss_revalidate(struct gendisk *disk)
2047{
2048 ctlr_info_t *h = get_host(disk);
2049 drive_info_struct *drv = get_drv(disk);
2050 int logvol;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002051 int FOUND = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 unsigned int block_size;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002053 sector_t total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 InquiryData_struct *inq_buff = NULL;
2055
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002056 for (logvol = 0; logvol < CISS_MAX_LUN; logvol++) {
2057 if (h->drv[logvol].LunID == drv->LunID) {
2058 FOUND = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 break;
2060 }
2061 }
2062
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002063 if (!FOUND)
2064 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002066 inq_buff = kmalloc(sizeof(InquiryData_struct), GFP_KERNEL);
2067 if (inq_buff == NULL) {
2068 printk(KERN_WARNING "cciss: out of memory\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002069 return 1;
2070 }
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002071 if (h->cciss_read == CCISS_READ_10) {
2072 cciss_read_capacity(h->ctlr, logvol, 1,
2073 &total_size, &block_size);
2074 } else {
2075 cciss_read_capacity_16(h->ctlr, logvol, 1,
2076 &total_size, &block_size);
2077 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002078 cciss_geometry_inquiry(h->ctlr, logvol, 1, total_size, block_size,
2079 inq_buff, drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Mike Millerad2b9312005-07-28 01:07:31 -07002081 blk_queue_hardsect_size(drv->queue, drv->block_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 set_capacity(disk, drv->nr_blocks);
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 kfree(inq_buff);
2085 return 0;
2086}
2087
2088/*
2089 * Wait polling for a command to complete.
2090 * The memory mapped FIFO is polled for the completion.
2091 * Used only at init time, interrupts from the HBA are disabled.
2092 */
2093static unsigned long pollcomplete(int ctlr)
2094{
2095 unsigned long done;
2096 int i;
2097
2098 /* Wait (up to 20 seconds) for a command to complete */
2099
2100 for (i = 20 * HZ; i > 0; i--) {
2101 done = hba[ctlr]->access.command_completed(hba[ctlr]);
Nishanth Aravamudan86e84862005-09-10 00:27:28 -07002102 if (done == FIFO_EMPTY)
2103 schedule_timeout_uninterruptible(1);
2104 else
Bjorn Helgaase2019b52006-06-25 05:49:05 -07002105 return done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107 /* Invalid address to tell caller we ran out of time */
2108 return 1;
2109}
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002110
2111static int add_sendcmd_reject(__u8 cmd, int ctlr, unsigned long complete)
2112{
2113 /* We get in here if sendcmd() is polling for completions
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002114 and gets some command back that it wasn't expecting --
2115 something other than that which it just sent down.
2116 Ordinarily, that shouldn't happen, but it can happen when
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002117 the scsi tape stuff gets into error handling mode, and
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002118 starts using sendcmd() to try to abort commands and
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002119 reset tape drives. In that case, sendcmd may pick up
2120 completions of commands that were sent to logical drives
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002121 through the block i/o system, or cciss ioctls completing, etc.
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002122 In that case, we need to save those completions for later
2123 processing by the interrupt handler.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002124 */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002125
2126#ifdef CONFIG_CISS_SCSI_TAPE
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002127 struct sendcmd_reject_list *srl = &hba[ctlr]->scsi_rejects;
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002128
2129 /* If it's not the scsi tape stuff doing error handling, (abort */
2130 /* or reset) then we don't expect anything weird. */
2131 if (cmd != CCISS_RESET_MSG && cmd != CCISS_ABORT_MSG) {
2132#endif
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002133 printk(KERN_WARNING "cciss cciss%d: SendCmd "
2134 "Invalid command list address returned! (%lx)\n",
2135 ctlr, complete);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002136 /* not much we can do. */
2137#ifdef CONFIG_CISS_SCSI_TAPE
2138 return 1;
2139 }
2140
2141 /* We've sent down an abort or reset, but something else
2142 has completed */
Mike Millerf8806322006-12-06 20:35:01 -08002143 if (srl->ncompletions >= (hba[ctlr]->nr_cmds + 2)) {
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002144 /* Uh oh. No room to save it for later... */
2145 printk(KERN_WARNING "cciss%d: Sendcmd: Invalid command addr, "
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002146 "reject list overflow, command lost!\n", ctlr);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002147 return 1;
2148 }
2149 /* Save it for later */
2150 srl->complete[srl->ncompletions] = complete;
2151 srl->ncompletions++;
2152#endif
2153 return 0;
2154}
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156/*
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002157 * Send a command to the controller, and wait for it to complete.
2158 * Only used at init time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002160static int sendcmd(__u8 cmd, int ctlr, void *buff, size_t size, unsigned int use_unit_num, /* 0: address the controller,
2161 1: address logical volume log_unit,
2162 2: periph device address is scsi3addr */
2163 unsigned int log_unit,
2164 __u8 page_code, unsigned char *scsi3addr, int cmd_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
2166 CommandList_struct *c;
2167 int i;
2168 unsigned long complete;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002169 ctlr_info_t *info_p = hba[ctlr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 u64bit buff_dma_handle;
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002171 int status, done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 if ((c = cmd_alloc(info_p, 1)) == NULL) {
2174 printk(KERN_WARNING "cciss: unable to get memory");
Bjorn Helgaase2019b52006-06-25 05:49:05 -07002175 return IO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
2177 status = fill_cmd(c, cmd, ctlr, buff, size, use_unit_num,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002178 log_unit, page_code, scsi3addr, cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (status != IO_OK) {
2180 cmd_free(info_p, c, 1);
2181 return status;
2182 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002183 resend_cmd1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 /*
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002185 * Disable interrupt
2186 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187#ifdef CCISS_DEBUG
2188 printk(KERN_DEBUG "cciss: turning intr off\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002189#endif /* CCISS_DEBUG */
2190 info_p->access.set_intr_mask(info_p, CCISS_INTR_OFF);
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 /* Make sure there is room in the command FIFO */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002193 /* Actually it should be completely empty at this time */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002194 /* unless we are in here doing error handling for the scsi */
2195 /* tape side of the driver. */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002196 for (i = 200000; i > 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 /* if fifo isn't full go */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002198 if (!(info_p->access.fifo_full(info_p))) {
2199
2200 break;
2201 }
2202 udelay(10);
2203 printk(KERN_WARNING "cciss cciss%d: SendCmd FIFO full,"
2204 " waiting!\n", ctlr);
2205 }
2206 /*
2207 * Send the cmd
2208 */
2209 info_p->access.submit_command(info_p, c);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002210 done = 0;
2211 do {
2212 complete = pollcomplete(ctlr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214#ifdef CCISS_DEBUG
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002215 printk(KERN_DEBUG "cciss: command completed\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002216#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002218 if (complete == 1) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002219 printk(KERN_WARNING
2220 "cciss cciss%d: SendCmd Timeout out, "
2221 "No command list address returned!\n", ctlr);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002222 status = IO_ERROR;
2223 done = 1;
2224 break;
2225 }
2226
2227 /* This will need to change for direct lookup completions */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002228 if ((complete & CISS_ERROR_BIT)
2229 && (complete & ~CISS_ERROR_BIT) == c->busaddr) {
2230 /* if data overrun or underun on Report command
2231 ignore it
2232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (((c->Request.CDB[0] == CISS_REPORT_LOG) ||
2234 (c->Request.CDB[0] == CISS_REPORT_PHYS) ||
2235 (c->Request.CDB[0] == CISS_INQUIRY)) &&
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002236 ((c->err_info->CommandStatus ==
2237 CMD_DATA_OVERRUN) ||
2238 (c->err_info->CommandStatus == CMD_DATA_UNDERRUN)
2239 )) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 complete = c->busaddr;
2241 } else {
2242 if (c->err_info->CommandStatus ==
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002243 CMD_UNSOLICITED_ABORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 printk(KERN_WARNING "cciss%d: "
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002245 "unsolicited abort %p\n",
2246 ctlr, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (c->retry_count < MAX_CMD_RETRIES) {
2248 printk(KERN_WARNING
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002249 "cciss%d: retrying %p\n",
2250 ctlr, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 c->retry_count++;
2252 /* erase the old error */
2253 /* information */
2254 memset(c->err_info, 0,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002255 sizeof
2256 (ErrorInfo_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 goto resend_cmd1;
2258 } else {
2259 printk(KERN_WARNING
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002260 "cciss%d: retried %p too "
2261 "many times\n", ctlr, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 status = IO_ERROR;
2263 goto cleanup1;
2264 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002265 } else if (c->err_info->CommandStatus ==
2266 CMD_UNABORTABLE) {
2267 printk(KERN_WARNING
2268 "cciss%d: command could not be aborted.\n",
2269 ctlr);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002270 status = IO_ERROR;
2271 goto cleanup1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273 printk(KERN_WARNING "ciss ciss%d: sendcmd"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002274 " Error %x \n", ctlr,
2275 c->err_info->CommandStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 printk(KERN_WARNING "ciss ciss%d: sendcmd"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002277 " offensive info\n"
2278 " size %x\n num %x value %x\n",
2279 ctlr,
2280 c->err_info->MoreErrInfo.Invalid_Cmd.
2281 offense_size,
2282 c->err_info->MoreErrInfo.Invalid_Cmd.
2283 offense_num,
2284 c->err_info->MoreErrInfo.Invalid_Cmd.
2285 offense_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 status = IO_ERROR;
2287 goto cleanup1;
2288 }
2289 }
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002290 /* This will need changing for direct lookup completions */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002291 if (complete != c->busaddr) {
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002292 if (add_sendcmd_reject(cmd, ctlr, complete) != 0) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002293 BUG(); /* we are pretty much hosed if we get here. */
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002294 }
2295 continue;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002296 } else
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002297 done = 1;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002298 } while (!done);
2299
2300 cleanup1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 /* unlock the data buffer from DMA */
Mike Millerbb2a37b2005-09-13 01:25:24 -07002302 buff_dma_handle.val32.lower = c->SG[0].Addr.lower;
2303 buff_dma_handle.val32.upper = c->SG[0].Addr.upper;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 pci_unmap_single(info_p->pdev, (dma_addr_t) buff_dma_handle.val,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002305 c->SG[0].Len, PCI_DMA_BIDIRECTIONAL);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002306#ifdef CONFIG_CISS_SCSI_TAPE
2307 /* if we saved some commands for later, process them now. */
2308 if (info_p->scsi_rejects.ncompletions > 0)
David Howells7d12e782006-10-05 14:55:46 +01002309 do_cciss_intr(0, info_p);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002310#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 cmd_free(info_p, c, 1);
Bjorn Helgaase2019b52006-06-25 05:49:05 -07002312 return status;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002313}
2314
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315/*
2316 * Map (physical) PCI mem into (virtual) kernel space
2317 */
2318static void __iomem *remap_pci_mem(ulong base, ulong size)
2319{
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002320 ulong page_base = ((ulong) base) & PAGE_MASK;
2321 ulong page_offs = ((ulong) base) - page_base;
2322 void __iomem *page_remapped = ioremap(page_base, page_offs + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002324 return page_remapped ? (page_remapped + page_offs) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
2326
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002327/*
2328 * Takes jobs of the Q and sends them to the hardware, then puts it on
2329 * the Q to wait for completion.
2330 */
2331static void start_io(ctlr_info_t *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332{
2333 CommandList_struct *c;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002334
2335 while ((c = h->reqQ) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 /* can't do anything if fifo is full */
2337 if ((h->access.fifo_full(h))) {
2338 printk(KERN_WARNING "cciss: fifo full\n");
2339 break;
2340 }
2341
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002342 /* Get the first entry from the Request Q */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 removeQ(&(h->reqQ), c);
2344 h->Qdepth--;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002345
2346 /* Tell the controller execute command */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 h->access.submit_command(h, c);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002348
2349 /* Put job onto the completed Q */
2350 addQ(&(h->cmpQ), c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 }
2352}
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354/* Assumes that CCISS_LOCK(h->ctlr) is held. */
2355/* Zeros out the error record and then resends the command back */
2356/* to the controller */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002357static inline void resend_cciss_cmd(ctlr_info_t *h, CommandList_struct *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
2359 /* erase the old error information */
2360 memset(c->err_info, 0, sizeof(ErrorInfo_struct));
2361
2362 /* add it to software queue and then send it to the controller */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002363 addQ(&(h->reqQ), c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 h->Qdepth++;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002365 if (h->Qdepth > h->maxQsinceinit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 h->maxQsinceinit = h->Qdepth;
2367
2368 start_io(h);
2369}
Jens Axboea9925a02006-01-09 16:04:06 +01002370
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002371/* checks the status of the job and calls complete buffers to mark all
Jens Axboea9925a02006-01-09 16:04:06 +01002372 * buffers for the completed job. Note that this function does not need
2373 * to hold the hba/queue lock.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002374 */
2375static inline void complete_command(ctlr_info_t *h, CommandList_struct *cmd,
2376 int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
2378 int status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 int retry_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002381 if (timeout)
2382 status = 0;
2383
2384 if (cmd->err_info->CommandStatus != 0) { /* an error has occurred */
2385 switch (cmd->err_info->CommandStatus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 unsigned char sense_key;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002387 case CMD_TARGET_STATUS:
2388 status = 0;
2389
2390 if (cmd->err_info->ScsiStatus == 0x02) {
2391 printk(KERN_WARNING "cciss: cmd %p "
2392 "has CHECK CONDITION "
2393 " byte 2 = 0x%x\n", cmd,
2394 cmd->err_info->SenseInfo[2]
2395 );
2396 /* check the sense key */
2397 sense_key = 0xf & cmd->err_info->SenseInfo[2];
2398 /* no status or recovered error */
2399 if ((sense_key == 0x0) || (sense_key == 0x1)) {
2400 status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002402 } else {
2403 printk(KERN_WARNING "cciss: cmd %p "
2404 "has SCSI Status 0x%x\n",
2405 cmd, cmd->err_info->ScsiStatus);
2406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002408 case CMD_DATA_UNDERRUN:
2409 printk(KERN_WARNING "cciss: cmd %p has"
2410 " completed with data underrun "
2411 "reported\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002413 case CMD_DATA_OVERRUN:
2414 printk(KERN_WARNING "cciss: cmd %p has"
2415 " completed with data overrun "
2416 "reported\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002418 case CMD_INVALID:
2419 printk(KERN_WARNING "cciss: cmd %p is "
2420 "reported invalid\n", cmd);
2421 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002423 case CMD_PROTOCOL_ERR:
2424 printk(KERN_WARNING "cciss: cmd %p has "
2425 "protocol error \n", cmd);
2426 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002428 case CMD_HARDWARE_ERR:
2429 printk(KERN_WARNING "cciss: cmd %p had "
2430 " hardware error\n", cmd);
2431 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002433 case CMD_CONNECTION_LOST:
2434 printk(KERN_WARNING "cciss: cmd %p had "
2435 "connection lost\n", cmd);
2436 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002438 case CMD_ABORTED:
2439 printk(KERN_WARNING "cciss: cmd %p was "
2440 "aborted\n", cmd);
2441 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002443 case CMD_ABORT_FAILED:
2444 printk(KERN_WARNING "cciss: cmd %p reports "
2445 "abort failed\n", cmd);
2446 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 break;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002448 case CMD_UNSOLICITED_ABORT:
2449 printk(KERN_WARNING "cciss%d: unsolicited "
2450 "abort %p\n", h->ctlr, cmd);
2451 if (cmd->retry_count < MAX_CMD_RETRIES) {
2452 retry_cmd = 1;
2453 printk(KERN_WARNING
2454 "cciss%d: retrying %p\n", h->ctlr, cmd);
2455 cmd->retry_count++;
2456 } else
2457 printk(KERN_WARNING
2458 "cciss%d: %p retried too "
2459 "many times\n", h->ctlr, cmd);
2460 status = 0;
2461 break;
2462 case CMD_TIMEOUT:
2463 printk(KERN_WARNING "cciss: cmd %p timedout\n", cmd);
2464 status = 0;
2465 break;
2466 default:
2467 printk(KERN_WARNING "cciss: cmd %p returned "
2468 "unknown status %x\n", cmd,
2469 cmd->err_info->CommandStatus);
2470 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 }
2472 }
2473 /* We need to return this command */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002474 if (retry_cmd) {
2475 resend_cciss_cmd(h, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Jens Axboea9925a02006-01-09 16:04:06 +01002479 cmd->rq->completion_data = cmd;
2480 cmd->rq->errors = status;
Jens Axboe2056a782006-03-23 20:00:26 +01002481 blk_add_trace_rq(cmd->rq->q, cmd->rq, BLK_TA_COMPLETE);
Jens Axboea9925a02006-01-09 16:04:06 +01002482 blk_complete_request(cmd->rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002485/*
2486 * Get a request and submit it to the controller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 */
2488static void do_cciss_request(request_queue_t *q)
2489{
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002490 ctlr_info_t *h = q->queuedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 CommandList_struct *c;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002492 sector_t start_blk;
2493 int seg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 struct request *creq;
2495 u64bit temp64;
2496 struct scatterlist tmp_sg[MAXSGENTRIES];
2497 drive_info_struct *drv;
2498 int i, dir;
2499
2500 /* We call start_io here in case there is a command waiting on the
2501 * queue that has not been sent.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002502 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (blk_queue_plugged(q))
2504 goto startio;
2505
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002506 queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 creq = elv_next_request(q);
2508 if (!creq)
2509 goto startio;
2510
Eric Sesterhenn089fe1b2006-03-24 18:50:27 +01002511 BUG_ON(creq->nr_phys_segments > MAXSGENTRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002513 if ((c = cmd_alloc(h, 1)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 goto full;
2515
2516 blkdev_dequeue_request(creq);
2517
2518 spin_unlock_irq(q->queue_lock);
2519
2520 c->cmd_type = CMD_RWREQ;
2521 c->rq = creq;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002522
2523 /* fill in the request */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 drv = creq->rq_disk->private_data;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002525 c->Header.ReplyQueue = 0; // unused in simple mode
Mike Miller33079b22005-09-13 01:25:22 -07002526 /* got command from pool, so use the command block index instead */
2527 /* for direct lookups. */
2528 /* The first 2 bits are reserved for controller error reporting. */
2529 c->Header.Tag.lower = (c->cmdindex << 3);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002530 c->Header.Tag.lower |= 0x04; /* flag for direct lookup. */
2531 c->Header.LUN.LogDev.VolId = drv->LunID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 c->Header.LUN.LogDev.Mode = 1;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002533 c->Request.CDBLen = 10; // 12 byte commands not in FW yet;
2534 c->Request.Type.Type = TYPE_CMD; // It is a command.
2535 c->Request.Type.Attribute = ATTR_SIMPLE;
2536 c->Request.Type.Direction =
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002537 (rq_data_dir(creq) == READ) ? h->cciss_read : h->cciss_write;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002538 c->Request.Timeout = 0; // Don't time out
2539 c->Request.CDB[0] =
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002540 (rq_data_dir(creq) == READ) ? h->cciss_read : h->cciss_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 start_blk = creq->sector;
2542#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002543 printk(KERN_DEBUG "ciss: sector =%d nr_sectors=%d\n", (int)creq->sector,
2544 (int)creq->nr_sectors);
2545#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 seg = blk_rq_map_sg(q, creq, tmp_sg);
2548
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002549 /* get the DMA records for the setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (c->Request.Type.Direction == XFER_READ)
2551 dir = PCI_DMA_FROMDEVICE;
2552 else
2553 dir = PCI_DMA_TODEVICE;
2554
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002555 for (i = 0; i < seg; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 c->SG[i].Len = tmp_sg[i].length;
2557 temp64.val = (__u64) pci_map_page(h->pdev, tmp_sg[i].page,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002558 tmp_sg[i].offset,
2559 tmp_sg[i].length, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 c->SG[i].Addr.lower = temp64.val32.lower;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002561 c->SG[i].Addr.upper = temp64.val32.upper;
2562 c->SG[i].Ext = 0; // we are not chaining
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002564 /* track how many SG entries we are using */
2565 if (seg > h->maxSG)
2566 h->maxSG = seg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002569 printk(KERN_DEBUG "cciss: Submitting %d sectors in %d segments\n",
2570 creq->nr_sectors, seg);
2571#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 c->Header.SGList = c->Header.SGTotal = seg;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002574 if(h->cciss_read == CCISS_READ_10) {
2575 c->Request.CDB[1] = 0;
2576 c->Request.CDB[2] = (start_blk >> 24) & 0xff; //MSB
2577 c->Request.CDB[3] = (start_blk >> 16) & 0xff;
2578 c->Request.CDB[4] = (start_blk >> 8) & 0xff;
2579 c->Request.CDB[5] = start_blk & 0xff;
2580 c->Request.CDB[6] = 0; // (sect >> 24) & 0xff; MSB
2581 c->Request.CDB[7] = (creq->nr_sectors >> 8) & 0xff;
2582 c->Request.CDB[8] = creq->nr_sectors & 0xff;
2583 c->Request.CDB[9] = c->Request.CDB[11] = c->Request.CDB[12] = 0;
2584 } else {
2585 c->Request.CDBLen = 16;
2586 c->Request.CDB[1]= 0;
2587 c->Request.CDB[2]= (start_blk >> 56) & 0xff; //MSB
2588 c->Request.CDB[3]= (start_blk >> 48) & 0xff;
2589 c->Request.CDB[4]= (start_blk >> 40) & 0xff;
2590 c->Request.CDB[5]= (start_blk >> 32) & 0xff;
2591 c->Request.CDB[6]= (start_blk >> 24) & 0xff;
2592 c->Request.CDB[7]= (start_blk >> 16) & 0xff;
2593 c->Request.CDB[8]= (start_blk >> 8) & 0xff;
2594 c->Request.CDB[9]= start_blk & 0xff;
2595 c->Request.CDB[10]= (creq->nr_sectors >> 24) & 0xff;
2596 c->Request.CDB[11]= (creq->nr_sectors >> 16) & 0xff;
2597 c->Request.CDB[12]= (creq->nr_sectors >> 8) & 0xff;
2598 c->Request.CDB[13]= creq->nr_sectors & 0xff;
2599 c->Request.CDB[14] = c->Request.CDB[15] = 0;
2600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 spin_lock_irq(q->queue_lock);
2603
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002604 addQ(&(h->reqQ), c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 h->Qdepth++;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002606 if (h->Qdepth > h->maxQsinceinit)
2607 h->maxQsinceinit = h->Qdepth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609 goto queue;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002610full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 blk_stop_queue(q);
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07002612startio:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 /* We will already have the driver lock here so not need
2614 * to lock it.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002615 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 start_io(h);
2617}
2618
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002619static inline unsigned long get_next_completion(ctlr_info_t *h)
2620{
2621#ifdef CONFIG_CISS_SCSI_TAPE
2622 /* Any rejects from sendcmd() lying around? Process them first */
2623 if (h->scsi_rejects.ncompletions == 0)
2624 return h->access.command_completed(h);
2625 else {
2626 struct sendcmd_reject_list *srl;
2627 int n;
2628 srl = &h->scsi_rejects;
2629 n = --srl->ncompletions;
2630 /* printk("cciss%d: processing saved reject\n", h->ctlr); */
2631 printk("p");
2632 return srl->complete[n];
2633 }
2634#else
2635 return h->access.command_completed(h);
2636#endif
2637}
2638
2639static inline int interrupt_pending(ctlr_info_t *h)
2640{
2641#ifdef CONFIG_CISS_SCSI_TAPE
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002642 return (h->access.intr_pending(h)
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002643 || (h->scsi_rejects.ncompletions > 0));
2644#else
2645 return h->access.intr_pending(h);
2646#endif
2647}
2648
2649static inline long interrupt_not_for_us(ctlr_info_t *h)
2650{
2651#ifdef CONFIG_CISS_SCSI_TAPE
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002652 return (((h->access.intr_pending(h) == 0) ||
2653 (h->interrupts_enabled == 0))
2654 && (h->scsi_rejects.ncompletions == 0));
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002655#else
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002656 return (((h->access.intr_pending(h) == 0) ||
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002657 (h->interrupts_enabled == 0)));
2658#endif
2659}
2660
David Howells7d12e782006-10-05 14:55:46 +01002661static irqreturn_t do_cciss_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
2663 ctlr_info_t *h = dev_id;
2664 CommandList_struct *c;
2665 unsigned long flags;
Mike Miller33079b22005-09-13 01:25:22 -07002666 __u32 a, a1, a2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002668 if (interrupt_not_for_us(h))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 /*
2671 * If there are completed commands in the completion queue,
2672 * we had better do something about it.
2673 */
2674 spin_lock_irqsave(CCISS_LOCK(h->ctlr), flags);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06002675 while (interrupt_pending(h)) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002676 while ((a = get_next_completion(h)) != FIFO_EMPTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 a1 = a;
Mike Miller33079b22005-09-13 01:25:22 -07002678 if ((a & 0x04)) {
2679 a2 = (a >> 3);
Mike Millerf8806322006-12-06 20:35:01 -08002680 if (a2 >= h->nr_cmds) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002681 printk(KERN_WARNING
2682 "cciss: controller cciss%d failed, stopping.\n",
2683 h->ctlr);
Mike Miller33079b22005-09-13 01:25:22 -07002684 fail_all_cmds(h->ctlr);
2685 return IRQ_HANDLED;
2686 }
2687
2688 c = h->cmd_pool + a2;
2689 a = c->busaddr;
2690
2691 } else {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002692 a &= ~3;
Mike Miller33079b22005-09-13 01:25:22 -07002693 if ((c = h->cmpQ) == NULL) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002694 printk(KERN_WARNING
2695 "cciss: Completion of %08x ignored\n",
2696 a1);
2697 continue;
2698 }
2699 while (c->busaddr != a) {
2700 c = c->next;
2701 if (c == h->cmpQ)
2702 break;
2703 }
Mike Miller33079b22005-09-13 01:25:22 -07002704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 /*
2706 * If we've found the command, take it off the
2707 * completion Q and free it
2708 */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002709 if (c->busaddr == a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 removeQ(&h->cmpQ, c);
2711 if (c->cmd_type == CMD_RWREQ) {
2712 complete_command(h, c, 0);
2713 } else if (c->cmd_type == CMD_IOCTL_PEND) {
2714 complete(c->waiting);
2715 }
2716# ifdef CONFIG_CISS_SCSI_TAPE
2717 else if (c->cmd_type == CMD_SCSI)
2718 complete_scsi_command(c, 0, a1);
2719# endif
2720 continue;
2721 }
2722 }
2723 }
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags);
2726 return IRQ_HANDLED;
2727}
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002728
2729/*
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07002730 * We cannot read the structure directly, for portability we must use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 * the io functions.
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002732 * This is for debug only.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 */
2734#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002735static void print_cfg_table(CfgTable_struct *tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
2737 int i;
2738 char temp_name[17];
2739
2740 printk("Controller Configuration information\n");
2741 printk("------------------------------------\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002742 for (i = 0; i < 4; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 temp_name[i] = readb(&(tb->Signature[i]));
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002744 temp_name[4] = '\0';
2745 printk(" Signature = %s\n", temp_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 printk(" Spec Number = %d\n", readl(&(tb->SpecValence)));
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002747 printk(" Transport methods supported = 0x%x\n",
2748 readl(&(tb->TransportSupport)));
2749 printk(" Transport methods active = 0x%x\n",
2750 readl(&(tb->TransportActive)));
2751 printk(" Requested transport Method = 0x%x\n",
2752 readl(&(tb->HostWrite.TransportRequest)));
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07002753 printk(" Coalesce Interrupt Delay = 0x%x\n",
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002754 readl(&(tb->HostWrite.CoalIntDelay)));
Bjorn Helgaasd14c4ab2006-06-25 05:49:04 -07002755 printk(" Coalesce Interrupt Count = 0x%x\n",
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002756 readl(&(tb->HostWrite.CoalIntCount)));
2757 printk(" Max outstanding commands = 0x%d\n",
2758 readl(&(tb->CmdsOutMax)));
2759 printk(" Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
2760 for (i = 0; i < 16; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 temp_name[i] = readb(&(tb->ServerName[i]));
2762 temp_name[16] = '\0';
2763 printk(" Server Name = %s\n", temp_name);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002764 printk(" Heartbeat Counter = 0x%x\n\n\n", readl(&(tb->HeartBeat)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765}
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002766#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002768static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769{
2770 int i, offset, mem_type, bar_type;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002771 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 return 0;
2773 offset = 0;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002774 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
2775 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
2777 offset += 4;
2778 else {
2779 mem_type = pci_resource_flags(pdev, i) &
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002780 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 switch (mem_type) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002782 case PCI_BASE_ADDRESS_MEM_TYPE_32:
2783 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
2784 offset += 4; /* 32 bit */
2785 break;
2786 case PCI_BASE_ADDRESS_MEM_TYPE_64:
2787 offset += 8;
2788 break;
2789 default: /* reserved in PCI 2.2 */
2790 printk(KERN_WARNING
2791 "Base address is invalid\n");
2792 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 break;
2794 }
2795 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002796 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
2797 return i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799 return -1;
2800}
2801
Mike Millerfb86a352006-01-08 01:03:50 -08002802/* If MSI/MSI-X is supported by the kernel we will try to enable it on
2803 * controllers that are capable. If not, we use IO-APIC mode.
2804 */
2805
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002806static void __devinit cciss_interrupt_mode(ctlr_info_t *c,
2807 struct pci_dev *pdev, __u32 board_id)
Mike Millerfb86a352006-01-08 01:03:50 -08002808{
2809#ifdef CONFIG_PCI_MSI
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002810 int err;
2811 struct msix_entry cciss_msix_entries[4] = { {0, 0}, {0, 1},
2812 {0, 2}, {0, 3}
2813 };
Mike Millerfb86a352006-01-08 01:03:50 -08002814
2815 /* Some boards advertise MSI but don't really support it */
2816 if ((board_id == 0x40700E11) ||
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002817 (board_id == 0x40800E11) ||
2818 (board_id == 0x40820E11) || (board_id == 0x40830E11))
Mike Millerfb86a352006-01-08 01:03:50 -08002819 goto default_int_mode;
2820
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002821 if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) {
2822 err = pci_enable_msix(pdev, cciss_msix_entries, 4);
2823 if (!err) {
2824 c->intr[0] = cciss_msix_entries[0].vector;
2825 c->intr[1] = cciss_msix_entries[1].vector;
2826 c->intr[2] = cciss_msix_entries[2].vector;
2827 c->intr[3] = cciss_msix_entries[3].vector;
2828 c->msix_vector = 1;
2829 return;
2830 }
2831 if (err > 0) {
2832 printk(KERN_WARNING "cciss: only %d MSI-X vectors "
2833 "available\n", err);
2834 } else {
2835 printk(KERN_WARNING "cciss: MSI-X init failed %d\n",
2836 err);
2837 }
2838 }
2839 if (pci_find_capability(pdev, PCI_CAP_ID_MSI)) {
2840 if (!pci_enable_msi(pdev)) {
2841 c->intr[SIMPLE_MODE_INT] = pdev->irq;
2842 c->msi_vector = 1;
2843 return;
2844 } else {
2845 printk(KERN_WARNING "cciss: MSI init failed\n");
2846 c->intr[SIMPLE_MODE_INT] = pdev->irq;
2847 return;
2848 }
2849 }
2850 default_int_mode:
2851#endif /* CONFIG_PCI_MSI */
Mike Millerfb86a352006-01-08 01:03:50 -08002852 /* if we get here we're going to use the default interrupt mode */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002853 c->intr[SIMPLE_MODE_INT] = pdev->irq;
Mike Millerfb86a352006-01-08 01:03:50 -08002854 return;
2855}
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857static int cciss_pci_init(ctlr_info_t *c, struct pci_dev *pdev)
2858{
2859 ushort subsystem_vendor_id, subsystem_device_id, command;
2860 __u32 board_id, scratchpad = 0;
2861 __u64 cfg_offset;
2862 __u32 cfg_base_addr;
2863 __u64 cfg_base_addr_index;
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002864 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 /* check to see if controller has been disabled */
2867 /* BEFORE trying to enable it */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002868 (void)pci_read_config_word(pdev, PCI_COMMAND, &command);
2869 if (!(command & 0x02)) {
2870 printk(KERN_WARNING
2871 "cciss: controller appears to be disabled\n");
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002872 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 }
2874
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002875 err = pci_enable_device(pdev);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002876 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 printk(KERN_ERR "cciss: Unable to Enable PCI device\n");
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002878 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Bjorn Helgaas4e570302006-06-25 05:49:02 -07002881 err = pci_request_regions(pdev, "cciss");
2882 if (err) {
2883 printk(KERN_ERR "cciss: Cannot obtain PCI resources, "
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002884 "aborting\n");
Bjorn Helgaas4e570302006-06-25 05:49:02 -07002885 goto err_out_disable_pdev;
2886 }
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 subsystem_vendor_id = pdev->subsystem_vendor;
2889 subsystem_device_id = pdev->subsystem_device;
2890 board_id = (((__u32) (subsystem_device_id << 16) & 0xffff0000) |
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002891 subsystem_vendor_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893#ifdef CCISS_DEBUG
2894 printk("command = %x\n", command);
2895 printk("irq = %x\n", pdev->irq);
2896 printk("board_id = %x\n", board_id);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002897#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Mike Millerfb86a352006-01-08 01:03:50 -08002899/* If the kernel supports MSI/MSI-X we will try to enable that functionality,
2900 * else we use the IO-APIC interrupt assigned to us by system ROM.
2901 */
2902 cciss_interrupt_mode(c, pdev, board_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 /*
2905 * Memory base addr is first addr , the second points to the config
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002906 * table
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 */
2908
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002909 c->paddr = pci_resource_start(pdev, 0); /* addressing mode bits already removed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910#ifdef CCISS_DEBUG
2911 printk("address 0 = %x\n", c->paddr);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002912#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 c->vaddr = remap_pci_mem(c->paddr, 200);
2914
2915 /* Wait for the board to become ready. (PCI hotplug needs this.)
2916 * We poll for up to 120 secs, once per 100ms. */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002917 for (i = 0; i < 1200; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 scratchpad = readl(c->vaddr + SA5_SCRATCHPAD_OFFSET);
2919 if (scratchpad == CCISS_FIRMWARE_READY)
2920 break;
2921 set_current_state(TASK_INTERRUPTIBLE);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002922 schedule_timeout(HZ / 10); /* wait 100ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 }
2924 if (scratchpad != CCISS_FIRMWARE_READY) {
2925 printk(KERN_WARNING "cciss: Board not ready. Timed out.\n");
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002926 err = -ENODEV;
Bjorn Helgaas4e570302006-06-25 05:49:02 -07002927 goto err_out_free_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929
2930 /* get the address index number */
2931 cfg_base_addr = readl(c->vaddr + SA5_CTCFG_OFFSET);
2932 cfg_base_addr &= (__u32) 0x0000ffff;
2933#ifdef CCISS_DEBUG
2934 printk("cfg base address = %x\n", cfg_base_addr);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002935#endif /* CCISS_DEBUG */
2936 cfg_base_addr_index = find_PCI_BAR_index(pdev, cfg_base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937#ifdef CCISS_DEBUG
2938 printk("cfg base address index = %x\n", cfg_base_addr_index);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002939#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 if (cfg_base_addr_index == -1) {
2941 printk(KERN_WARNING "cciss: Cannot find cfg_base_addr_index\n");
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002942 err = -ENODEV;
Bjorn Helgaas4e570302006-06-25 05:49:02 -07002943 goto err_out_free_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 }
2945
2946 cfg_offset = readl(c->vaddr + SA5_CTMEM_OFFSET);
2947#ifdef CCISS_DEBUG
2948 printk("cfg offset = %x\n", cfg_offset);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002949#endif /* CCISS_DEBUG */
2950 c->cfgtable = remap_pci_mem(pci_resource_start(pdev,
2951 cfg_base_addr_index) +
2952 cfg_offset, sizeof(CfgTable_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 c->board_id = board_id;
2954
2955#ifdef CCISS_DEBUG
Tobias Klauser945f3902006-01-08 01:05:11 -08002956 print_cfg_table(c->cfgtable);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002957#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002959 for (i = 0; i < ARRAY_SIZE(products); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 if (board_id == products[i].board_id) {
2961 c->product_name = products[i].product_name;
2962 c->access = *(products[i].access);
Mike Millerf8806322006-12-06 20:35:01 -08002963 c->nr_cmds = products[i].nr_cmds;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 break;
2965 }
2966 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002967 if ((readb(&c->cfgtable->Signature[0]) != 'C') ||
2968 (readb(&c->cfgtable->Signature[1]) != 'I') ||
2969 (readb(&c->cfgtable->Signature[2]) != 'S') ||
2970 (readb(&c->cfgtable->Signature[3]) != 'S')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 printk("Does not appear to be a valid CISS config table\n");
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07002972 err = -ENODEV;
Bjorn Helgaas4e570302006-06-25 05:49:02 -07002973 goto err_out_free_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 }
Mike Miller4ff9a9a2006-12-06 20:35:00 -08002975 /* We didn't find the controller in our list. We know the
2976 * signature is valid. If it's an HP device let's try to
2977 * bind to the device and fire it up. Otherwise we bail.
2978 */
2979 if (i == ARRAY_SIZE(products)) {
2980 if (subsystem_vendor_id == PCI_VENDOR_ID_HP) {
2981 c->product_name = products[i-1].product_name;
2982 c->access = *(products[i-1].access);
Mike Millerf8806322006-12-06 20:35:01 -08002983 c->nr_cmds = products[i-1].nr_cmds;
Mike Miller4ff9a9a2006-12-06 20:35:00 -08002984 printk(KERN_WARNING "cciss: This is an unknown "
2985 "Smart Array controller.\n"
2986 "cciss: Please update to the latest driver "
2987 "available from www.hp.com.\n");
2988 } else {
2989 printk(KERN_WARNING "cciss: Sorry, I don't know how"
2990 " to access the Smart Array controller %08lx\n"
2991 , (unsigned long)board_id);
2992 err = -ENODEV;
2993 goto err_out_free_res;
2994 }
2995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996#ifdef CONFIG_X86
Bjorn Helgaas7c832832006-06-25 05:49:06 -07002997 {
2998 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
2999 __u32 prefetch;
3000 prefetch = readl(&(c->cfgtable->SCSI_Prefetch));
3001 prefetch |= 0x100;
3002 writel(prefetch, &(c->cfgtable->SCSI_Prefetch));
3003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004#endif
3005
3006#ifdef CCISS_DEBUG
3007 printk("Trying to put board into Simple mode\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003008#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 c->max_commands = readl(&(c->cfgtable->CmdsOutMax));
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003010 /* Update the field, and then ring the doorbell */
3011 writel(CFGTBL_Trans_Simple, &(c->cfgtable->HostWrite.TransportRequest));
3012 writel(CFGTBL_ChangeReq, c->vaddr + SA5_DOORBELL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014 /* under certain very rare conditions, this can take awhile.
3015 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
3016 * as we enter this code.) */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003017 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 if (!(readl(c->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
3019 break;
3020 /* delay and try again */
3021 set_current_state(TASK_INTERRUPTIBLE);
3022 schedule_timeout(10);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003026 printk(KERN_DEBUG "I counter got to %d %x\n", i,
3027 readl(c->vaddr + SA5_DOORBELL));
3028#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003030 print_cfg_table(c->cfgtable);
3031#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003033 if (!(readl(&(c->cfgtable->TransportActive)) & CFGTBL_Trans_Simple)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 printk(KERN_WARNING "cciss: unable to get board into"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003035 " simple mode\n");
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07003036 err = -ENODEV;
Bjorn Helgaas4e570302006-06-25 05:49:02 -07003037 goto err_out_free_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
3039 return 0;
3040
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003041 err_out_free_res:
Bjorn Helgaas4e570302006-06-25 05:49:02 -07003042 pci_release_regions(pdev);
3043
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003044 err_out_disable_pdev:
Bjorn Helgaasc33ac892006-06-25 05:49:01 -07003045 pci_disable_device(pdev);
3046 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047}
3048
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003049/*
3050 * Gets information about the local volumes attached to the controller.
3051 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052static void cciss_getgeometry(int cntl_num)
3053{
3054 ReportLunData_struct *ld_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 InquiryData_struct *inq_buff;
3056 int return_code;
3057 int i;
3058 int listlength = 0;
3059 __u32 lunid = 0;
3060 int block_size;
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07003061 sector_t total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Eric Sesterhenn06ff37f2006-03-08 11:21:52 +01003063 ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003064 if (ld_buff == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 printk(KERN_ERR "cciss: out of memory\n");
3066 return;
3067 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003068 inq_buff = kmalloc(sizeof(InquiryData_struct), GFP_KERNEL);
3069 if (inq_buff == NULL) {
3070 printk(KERN_ERR "cciss: out of memory\n");
3071 kfree(ld_buff);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003072 return;
3073 }
3074 /* Get the firmware version */
3075 return_code = sendcmd(CISS_INQUIRY, cntl_num, inq_buff,
3076 sizeof(InquiryData_struct), 0, 0, 0, NULL,
3077 TYPE_CMD);
3078 if (return_code == IO_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 hba[cntl_num]->firm_ver[0] = inq_buff->data_byte[32];
3080 hba[cntl_num]->firm_ver[1] = inq_buff->data_byte[33];
3081 hba[cntl_num]->firm_ver[2] = inq_buff->data_byte[34];
3082 hba[cntl_num]->firm_ver[3] = inq_buff->data_byte[35];
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003083 } else { /* send command failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003085 printk(KERN_WARNING "cciss: unable to determine firmware"
3086 " version of controller\n");
3087 }
3088 /* Get the number of logical volumes */
3089 return_code = sendcmd(CISS_REPORT_LOG, cntl_num, ld_buff,
3090 sizeof(ReportLunData_struct), 0, 0, 0, NULL,
3091 TYPE_CMD);
3092
3093 if (return_code == IO_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094#ifdef CCISS_DEBUG
3095 printk("LUN Data\n--------------------------\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003096#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003098 listlength |=
3099 (0xff & (unsigned int)(ld_buff->LUNListLength[0])) << 24;
3100 listlength |=
3101 (0xff & (unsigned int)(ld_buff->LUNListLength[1])) << 16;
3102 listlength |=
3103 (0xff & (unsigned int)(ld_buff->LUNListLength[2])) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 listlength |= 0xff & (unsigned int)(ld_buff->LUNListLength[3]);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003105 } else { /* reading number of logical volumes failed */
3106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 printk(KERN_WARNING "cciss: report logical volume"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003108 " command failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 listlength = 0;
3110 }
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003111 hba[cntl_num]->num_luns = listlength / 8; // 8 bytes pre entry
3112 if (hba[cntl_num]->num_luns > CISS_MAX_LUN) {
3113 printk(KERN_ERR
3114 "ciss: only %d number of logical volumes supported\n",
3115 CISS_MAX_LUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 hba[cntl_num]->num_luns = CISS_MAX_LUN;
3117 }
3118#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003119 printk(KERN_DEBUG "Length = %x %x %x %x = %d\n",
3120 ld_buff->LUNListLength[0], ld_buff->LUNListLength[1],
3121 ld_buff->LUNListLength[2], ld_buff->LUNListLength[3],
3122 hba[cntl_num]->num_luns);
3123#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003125 hba[cntl_num]->highest_lun = hba[cntl_num]->num_luns - 1;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003126 for (i = 0; i < CISS_MAX_LUN; i++) {
3127 if (i < hba[cntl_num]->num_luns) {
3128 lunid = (0xff & (unsigned int)(ld_buff->LUN[i][3]))
3129 << 24;
3130 lunid |= (0xff & (unsigned int)(ld_buff->LUN[i][2]))
3131 << 16;
3132 lunid |= (0xff & (unsigned int)(ld_buff->LUN[i][1]))
3133 << 8;
3134 lunid |= 0xff & (unsigned int)(ld_buff->LUN[i][0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003136 hba[cntl_num]->drv[i].LunID = lunid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
3138#ifdef CCISS_DEBUG
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003139 printk(KERN_DEBUG "LUN[%d]: %x %x %x %x = %x\n", i,
3140 ld_buff->LUN[i][0], ld_buff->LUN[i][1],
3141 ld_buff->LUN[i][2], ld_buff->LUN[i][3],
3142 hba[cntl_num]->drv[i].LunID);
3143#endif /* CCISS_DEBUG */
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07003144
3145 /* testing to see if 16-byte CDBs are already being used */
3146 if(hba[cntl_num]->cciss_read == CCISS_READ_16) {
3147 cciss_read_capacity_16(cntl_num, i, 0,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003148 &total_size, &block_size);
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -07003149 goto geo_inq;
3150 }
3151 cciss_read_capacity(cntl_num, i, 0, &total_size, &block_size);
3152
3153 /* total_size = last LBA + 1 */
3154 if(total_size == (__u32) 0) {
3155 cciss_read_capacity_16(cntl_num, i, 0,
3156 &total_size, &block_size);
3157 hba[cntl_num]->cciss_read = CCISS_READ_16;
3158 hba[cntl_num]->cciss_write = CCISS_WRITE_16;
3159 } else {
3160 hba[cntl_num]->cciss_read = CCISS_READ_10;
3161 hba[cntl_num]->cciss_write = CCISS_WRITE_10;
3162 }
3163geo_inq:
Mike Millerddd47442005-09-13 01:25:22 -07003164 cciss_geometry_inquiry(cntl_num, i, 0, total_size,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003165 block_size, inq_buff,
3166 &hba[cntl_num]->drv[i]);
Mike Millerddd47442005-09-13 01:25:22 -07003167 } else {
3168 /* initialize raid_level to indicate a free space */
3169 hba[cntl_num]->drv[i].raid_level = -1;
3170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 }
3172 kfree(ld_buff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 kfree(inq_buff);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
3176/* Function to find the first free pointer into our hba[] array */
3177/* Returns -1 if no free entries are left. */
3178static int alloc_cciss_hba(void)
3179{
3180 struct gendisk *disk[NWD];
3181 int i, n;
3182 for (n = 0; n < NWD; n++) {
3183 disk[n] = alloc_disk(1 << NWD_SHIFT);
3184 if (!disk[n])
3185 goto out;
3186 }
3187
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003188 for (i = 0; i < MAX_CTLR; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 if (!hba[i]) {
3190 ctlr_info_t *p;
Eric Sesterhenn06ff37f2006-03-08 11:21:52 +01003191 p = kzalloc(sizeof(ctlr_info_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (!p)
3193 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 for (n = 0; n < NWD; n++)
3195 p->gendisk[n] = disk[n];
3196 hba[i] = p;
3197 return i;
3198 }
3199 }
3200 printk(KERN_WARNING "cciss: This driver supports a maximum"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003201 " of %d controllers.\n", MAX_CTLR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 goto out;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003203 Enomem:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 printk(KERN_ERR "cciss: out of memory.\n");
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003205 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 while (n--)
3207 put_disk(disk[n]);
3208 return -1;
3209}
3210
3211static void free_hba(int i)
3212{
3213 ctlr_info_t *p = hba[i];
3214 int n;
3215
3216 hba[i] = NULL;
3217 for (n = 0; n < NWD; n++)
3218 put_disk(p->gendisk[n]);
3219 kfree(p);
3220}
3221
3222/*
3223 * This is it. Find all the controllers and register them. I really hate
3224 * stealing all these major device numbers.
3225 * returns the number of block devices registered.
3226 */
3227static int __devinit cciss_init_one(struct pci_dev *pdev,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003228 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229{
3230 request_queue_t *q;
3231 int i;
3232 int j;
3233 int rc;
Bjorn Helgaas40aabb52006-06-25 05:49:03 -07003234 int dac;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 i = alloc_cciss_hba();
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003237 if (i < 0)
Bjorn Helgaase2019b52006-06-25 05:49:05 -07003238 return -1;
Mike Miller1f8ef382005-09-13 01:25:21 -07003239
3240 hba[i]->busy_initializing = 1;
3241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 if (cciss_pci_init(hba[i], pdev) != 0)
3243 goto clean1;
3244
3245 sprintf(hba[i]->devname, "cciss%d", i);
3246 hba[i]->ctlr = i;
3247 hba[i]->pdev = pdev;
3248
3249 /* configure PCI DMA stuff */
mike.miller@hp.comeb0df992005-06-10 14:51:04 -05003250 if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK))
Bjorn Helgaas40aabb52006-06-25 05:49:03 -07003251 dac = 1;
mike.miller@hp.comeb0df992005-06-10 14:51:04 -05003252 else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK))
Bjorn Helgaas40aabb52006-06-25 05:49:03 -07003253 dac = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 else {
Bjorn Helgaas40aabb52006-06-25 05:49:03 -07003255 printk(KERN_ERR "cciss: no suitable DMA available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 goto clean1;
3257 }
3258
3259 /*
3260 * register with the major number, or get a dynamic major number
3261 * by passing 0 as argument. This is done for greater than
3262 * 8 controller support.
3263 */
3264 if (i < MAX_CTLR_ORIG)
Christoph Hellwig564de742006-01-08 01:05:17 -08003265 hba[i]->major = COMPAQ_CISS_MAJOR + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 rc = register_blkdev(hba[i]->major, hba[i]->devname);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003267 if (rc == -EBUSY || rc == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 printk(KERN_ERR
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003269 "cciss: Unable to get major number %d for %s "
3270 "on hba %d\n", hba[i]->major, hba[i]->devname, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 goto clean1;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003272 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 if (i >= MAX_CTLR_ORIG)
3274 hba[i]->major = rc;
3275 }
3276
3277 /* make sure the board interrupts are off */
3278 hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_OFF);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003279 if (request_irq(hba[i]->intr[SIMPLE_MODE_INT], do_cciss_intr,
Thomas Gleixner69ab3912006-07-01 19:29:32 -07003280 IRQF_DISABLED | IRQF_SHARED, hba[i]->devname, hba[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 printk(KERN_ERR "cciss: Unable to get irq %d for %s\n",
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003282 hba[i]->intr[SIMPLE_MODE_INT], hba[i]->devname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 goto clean2;
3284 }
Bjorn Helgaas40aabb52006-06-25 05:49:03 -07003285
3286 printk(KERN_INFO "%s: <0x%x> at PCI %s IRQ %d%s using DAC\n",
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003287 hba[i]->devname, pdev->device, pci_name(pdev),
3288 hba[i]->intr[SIMPLE_MODE_INT], dac ? "" : " not");
Bjorn Helgaas40aabb52006-06-25 05:49:03 -07003289
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003290 hba[i]->cmd_pool_bits =
Mike Millerf8806322006-12-06 20:35:01 -08003291 kmalloc(((hba[i]->nr_cmds + BITS_PER_LONG -
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003292 1) / BITS_PER_LONG) * sizeof(unsigned long), GFP_KERNEL);
3293 hba[i]->cmd_pool = (CommandList_struct *)
3294 pci_alloc_consistent(hba[i]->pdev,
Mike Millerf8806322006-12-06 20:35:01 -08003295 hba[i]->nr_cmds * sizeof(CommandList_struct),
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003296 &(hba[i]->cmd_pool_dhandle));
3297 hba[i]->errinfo_pool = (ErrorInfo_struct *)
3298 pci_alloc_consistent(hba[i]->pdev,
Mike Millerf8806322006-12-06 20:35:01 -08003299 hba[i]->nr_cmds * sizeof(ErrorInfo_struct),
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003300 &(hba[i]->errinfo_pool_dhandle));
3301 if ((hba[i]->cmd_pool_bits == NULL)
3302 || (hba[i]->cmd_pool == NULL)
3303 || (hba[i]->errinfo_pool == NULL)) {
3304 printk(KERN_ERR "cciss: out of memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 goto clean4;
3306 }
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06003307#ifdef CONFIG_CISS_SCSI_TAPE
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003308 hba[i]->scsi_rejects.complete =
3309 kmalloc(sizeof(hba[i]->scsi_rejects.complete[0]) *
Mike Millerf8806322006-12-06 20:35:01 -08003310 (hba[i]->nr_cmds + 5), GFP_KERNEL);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06003311 if (hba[i]->scsi_rejects.complete == NULL) {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003312 printk(KERN_ERR "cciss: out of memory");
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06003313 goto clean4;
3314 }
3315#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 spin_lock_init(&hba[i]->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003318 /* Initialize the pdev driver private data.
3319 have it point to hba[i]. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 pci_set_drvdata(pdev, hba[i]);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003321 /* command and error info recs zeroed out before
3322 they are used */
3323 memset(hba[i]->cmd_pool_bits, 0,
Mike Millerf8806322006-12-06 20:35:01 -08003324 ((hba[i]->nr_cmds + BITS_PER_LONG -
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003325 1) / BITS_PER_LONG) * sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003327#ifdef CCISS_DEBUG
3328 printk(KERN_DEBUG "Scanning for drives on controller cciss%d\n", i);
3329#endif /* CCISS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 cciss_getgeometry(i);
3332
3333 cciss_scsi_setup(i);
3334
3335 /* Turn the interrupts on so we can service requests */
3336 hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_ON);
3337
3338 cciss_procinit(i);
Mike Millerd6dbf422005-09-21 09:55:32 -07003339 hba[i]->busy_initializing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003341 for (j = 0; j < NWD; j++) { /* mfm */
Mike Millerad2b9312005-07-28 01:07:31 -07003342 drive_info_struct *drv = &(hba[i]->drv[j]);
3343 struct gendisk *disk = hba[i]->gendisk[j];
3344
3345 q = blk_init_queue(do_cciss_request, &hba[i]->lock);
3346 if (!q) {
3347 printk(KERN_ERR
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003348 "cciss: unable to allocate queue for disk %d\n",
3349 j);
Mike Millerad2b9312005-07-28 01:07:31 -07003350 break;
3351 }
3352 drv->queue = q;
3353
3354 q->backing_dev_info.ra_pages = READ_AHEAD;
Jens Axboea9925a02006-01-09 16:04:06 +01003355 blk_queue_bounce_limit(q, hba[i]->pdev->dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Jens Axboea9925a02006-01-09 16:04:06 +01003357 /* This is a hardware imposed limit. */
3358 blk_queue_max_hw_segments(q, MAXSGENTRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
Jens Axboea9925a02006-01-09 16:04:06 +01003360 /* This is a limit in the driver and could be eliminated. */
3361 blk_queue_max_phys_segments(q, MAXSGENTRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
Jens Axboea9925a02006-01-09 16:04:06 +01003363 blk_queue_max_sectors(q, 512);
3364
3365 blk_queue_softirq_done(q, cciss_softirq_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Mike Millerad2b9312005-07-28 01:07:31 -07003367 q->queuedata = hba[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 sprintf(disk->disk_name, "cciss/c%dd%d", i, j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 disk->major = hba[i]->major;
3370 disk->first_minor = j << NWD_SHIFT;
3371 disk->fops = &cciss_fops;
Mike Millerad2b9312005-07-28 01:07:31 -07003372 disk->queue = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 disk->private_data = drv;
Greg Kroah-Hartman27c0ff82006-04-27 15:46:39 -07003374 disk->driverfs_dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 /* we must register the controller even if no disks exist */
3376 /* this is for the online array utilities */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003377 if (!drv->heads && j)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 continue;
Mike Millerad2b9312005-07-28 01:07:31 -07003379 blk_queue_hardsect_size(q, drv->block_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 set_capacity(disk, drv->nr_blocks);
3381 add_disk(disk);
3382 }
Mike Millerad2b9312005-07-28 01:07:31 -07003383
Bjorn Helgaase2019b52006-06-25 05:49:05 -07003384 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003386 clean4:
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06003387#ifdef CONFIG_CISS_SCSI_TAPE
Andrew Morton1acc0b02006-01-04 18:30:03 -08003388 kfree(hba[i]->scsi_rejects.complete);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06003389#endif
Jesper Juhl6044ec82005-11-07 01:01:32 -08003390 kfree(hba[i]->cmd_pool_bits);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003391 if (hba[i]->cmd_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 pci_free_consistent(hba[i]->pdev,
Mike Millerf8806322006-12-06 20:35:01 -08003393 hba[i]->nr_cmds * sizeof(CommandList_struct),
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003394 hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
3395 if (hba[i]->errinfo_pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 pci_free_consistent(hba[i]->pdev,
Mike Millerf8806322006-12-06 20:35:01 -08003397 hba[i]->nr_cmds * sizeof(ErrorInfo_struct),
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003398 hba[i]->errinfo_pool,
3399 hba[i]->errinfo_pool_dhandle);
Mike Millerfb86a352006-01-08 01:03:50 -08003400 free_irq(hba[i]->intr[SIMPLE_MODE_INT], hba[i]);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003401 clean2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 unregister_blkdev(hba[i]->major, hba[i]->devname);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003403 clean1:
Mike Miller1f8ef382005-09-13 01:25:21 -07003404 hba[i]->busy_initializing = 0;
Patrick McHardy61808c2b2006-03-23 02:59:24 -08003405 free_hba(i);
Bjorn Helgaase2019b52006-06-25 05:49:05 -07003406 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407}
3408
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003409static void __devexit cciss_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410{
3411 ctlr_info_t *tmp_ptr;
3412 int i, j;
3413 char flush_buf[4];
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003414 int return_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003416 if (pci_get_drvdata(pdev) == NULL) {
3417 printk(KERN_ERR "cciss: Unable to remove device \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 return;
3419 }
3420 tmp_ptr = pci_get_drvdata(pdev);
3421 i = tmp_ptr->ctlr;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003422 if (hba[i] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 printk(KERN_ERR "cciss: device appears to "
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003424 "already be removed \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 return;
3426 }
3427 /* Turn board interrupts off and send the flush cache command */
3428 /* sendcmd will turn off interrupt, and send the flush...
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003429 * To write all data in the battery backed cache to disks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 memset(flush_buf, 0, 4);
3431 return_code = sendcmd(CCISS_CACHE_FLUSH, i, flush_buf, 4, 0, 0, 0, NULL,
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003432 TYPE_CMD);
3433 if (return_code != IO_OK) {
3434 printk(KERN_WARNING "Error Flushing cache on controller %d\n",
3435 i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 }
Mike Millerfb86a352006-01-08 01:03:50 -08003437 free_irq(hba[i]->intr[2], hba[i]);
3438
3439#ifdef CONFIG_PCI_MSI
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003440 if (hba[i]->msix_vector)
3441 pci_disable_msix(hba[i]->pdev);
3442 else if (hba[i]->msi_vector)
3443 pci_disable_msi(hba[i]->pdev);
3444#endif /* CONFIG_PCI_MSI */
Mike Millerfb86a352006-01-08 01:03:50 -08003445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 iounmap(hba[i]->vaddr);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003447 cciss_unregister_scsi(i); /* unhook from SCSI subsystem */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 unregister_blkdev(hba[i]->major, hba[i]->devname);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003449 remove_proc_entry(hba[i]->devname, proc_cciss);
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 /* remove it from the disk list */
3452 for (j = 0; j < NWD; j++) {
3453 struct gendisk *disk = hba[i]->gendisk[j];
mikem6f5a0f72005-11-18 22:05:36 +01003454 if (disk) {
3455 request_queue_t *q = disk->queue;
3456
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003457 if (disk->flags & GENHD_FL_UP)
mikem6f5a0f72005-11-18 22:05:36 +01003458 del_gendisk(disk);
3459 if (q)
3460 blk_cleanup_queue(q);
Mike Miller6a445d32005-09-13 01:25:23 -07003461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 }
3463
Mike Millerf8806322006-12-06 20:35:01 -08003464 pci_free_consistent(hba[i]->pdev, hba[i]->nr_cmds * sizeof(CommandList_struct),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
Mike Millerf8806322006-12-06 20:35:01 -08003466 pci_free_consistent(hba[i]->pdev, hba[i]->nr_cmds * sizeof(ErrorInfo_struct),
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003467 hba[i]->errinfo_pool, hba[i]->errinfo_pool_dhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 kfree(hba[i]->cmd_pool_bits);
mike.miller@hp.com3da8b712005-11-04 12:30:37 -06003469#ifdef CONFIG_CISS_SCSI_TAPE
3470 kfree(hba[i]->scsi_rejects.complete);
3471#endif
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003472 pci_release_regions(pdev);
Bjorn Helgaas4e570302006-06-25 05:49:02 -07003473 pci_disable_device(pdev);
3474 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 free_hba(i);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003476}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
3478static struct pci_driver cciss_pci_driver = {
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003479 .name = "cciss",
3480 .probe = cciss_init_one,
3481 .remove = __devexit_p(cciss_remove_one),
3482 .id_table = cciss_pci_device_id, /* id_table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483};
3484
3485/*
3486 * This is it. Register the PCI driver information for the cards we control
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003487 * the OS will call our registered routines when it finds one of our cards.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 */
3489static int __init cciss_init(void)
3490{
3491 printk(KERN_INFO DRIVER_NAME "\n");
3492
3493 /* Register for our PCI devices */
Richard Knutsson9bfab8c2005-11-30 00:59:34 +01003494 return pci_register_driver(&cciss_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495}
3496
3497static void __exit cciss_cleanup(void)
3498{
3499 int i;
3500
3501 pci_unregister_driver(&cciss_pci_driver);
3502 /* double check that all controller entrys have been removed */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003503 for (i = 0; i < MAX_CTLR; i++) {
3504 if (hba[i] != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 printk(KERN_WARNING "cciss: had to remove"
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003506 " controller %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 cciss_remove_one(hba[i]->pdev);
3508 }
3509 }
3510 remove_proc_entry("cciss", proc_root_driver);
3511}
3512
Mike Miller33079b22005-09-13 01:25:22 -07003513static void fail_all_cmds(unsigned long ctlr)
3514{
3515 /* If we get here, the board is apparently dead. */
3516 ctlr_info_t *h = hba[ctlr];
3517 CommandList_struct *c;
3518 unsigned long flags;
3519
3520 printk(KERN_WARNING "cciss%d: controller not responding.\n", h->ctlr);
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003521 h->alive = 0; /* the controller apparently died... */
Mike Miller33079b22005-09-13 01:25:22 -07003522
3523 spin_lock_irqsave(CCISS_LOCK(ctlr), flags);
3524
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003525 pci_disable_device(h->pdev); /* Make sure it is really dead. */
Mike Miller33079b22005-09-13 01:25:22 -07003526
3527 /* move everything off the request queue onto the completed queue */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003528 while ((c = h->reqQ) != NULL) {
Mike Miller33079b22005-09-13 01:25:22 -07003529 removeQ(&(h->reqQ), c);
3530 h->Qdepth--;
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003531 addQ(&(h->cmpQ), c);
Mike Miller33079b22005-09-13 01:25:22 -07003532 }
3533
3534 /* Now, fail everything on the completed queue with a HW error */
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003535 while ((c = h->cmpQ) != NULL) {
Mike Miller33079b22005-09-13 01:25:22 -07003536 removeQ(&h->cmpQ, c);
3537 c->err_info->CommandStatus = CMD_HARDWARE_ERR;
3538 if (c->cmd_type == CMD_RWREQ) {
3539 complete_command(h, c, 0);
3540 } else if (c->cmd_type == CMD_IOCTL_PEND)
3541 complete(c->waiting);
3542#ifdef CONFIG_CISS_SCSI_TAPE
Bjorn Helgaas7c832832006-06-25 05:49:06 -07003543 else if (c->cmd_type == CMD_SCSI)
3544 complete_scsi_command(c, 0, 0);
Mike Miller33079b22005-09-13 01:25:22 -07003545#endif
3546 }
3547 spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags);
3548 return;
3549}
3550
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551module_init(cciss_init);
3552module_exit(cciss_cleanup);