blob: 28937b661564237b44092843050964a0f2f58ea9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Disk Array driver for Compaq SMART2 Controllers
3 * Copyright 1998 Compaq Computer Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
20 *
21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/types.h>
24#include <linux/pci.h>
25#include <linux/bio.h>
26#include <linux/interrupt.h>
27#include <linux/kernel.h>
28#include <linux/slab.h>
29#include <linux/delay.h>
30#include <linux/major.h>
31#include <linux/fs.h>
32#include <linux/blkpg.h>
33#include <linux/timer.h>
34#include <linux/proc_fs.h>
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -070035#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/init.h>
37#include <linux/hdreg.h>
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +020038#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/spinlock.h>
40#include <linux/blkdev.h>
41#include <linux/genhd.h>
Ralf Baechle11763602007-10-23 20:42:11 +020042#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
44#include <asm/io.h>
45
46
47#define SMART2_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin))
48
49#define DRIVER_NAME "Compaq SMART2 Driver (v 2.6.0)"
50#define DRIVER_VERSION SMART2_DRIVER_VERSION(2,6,0)
51
52/* Embedded module documentation macros - see modules.h */
53/* Original author Chris Frantz - Compaq Computer Corporation */
54MODULE_AUTHOR("Compaq Computer Corporation");
55MODULE_DESCRIPTION("Driver for Compaq Smart2 Array Controllers version 2.6.0");
56MODULE_LICENSE("GPL");
57
58#include "cpqarray.h"
59#include "ida_cmd.h"
60#include "smart1,2.h"
61#include "ida_ioctl.h"
62
63#define READ_AHEAD 128
64#define NR_CMDS 128 /* This could probably go as high as ~400 */
65
66#define MAX_CTLR 8
67#define CTLR_SHIFT 8
68
69#define CPQARRAY_DMA_MASK 0xFFFFFFFF /* 32 bit DMA */
70
71static int nr_ctlr;
72static ctlr_info_t *hba[MAX_CTLR];
73
74static int eisa[8];
75
Tobias Klauser945f3902006-01-08 01:05:11 -080076#define NR_PRODUCTS ARRAY_SIZE(products)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* board_id = Subsystem Device ID & Vendor ID
79 * product = Marketing Name for the board
Tobias Klauser945f3902006-01-08 01:05:11 -080080 * access = Address of the struct of function pointers
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82static struct board_type products[] = {
83 { 0x0040110E, "IDA", &smart1_access },
84 { 0x0140110E, "IDA-2", &smart1_access },
85 { 0x1040110E, "IAES", &smart1_access },
86 { 0x2040110E, "SMART", &smart1_access },
87 { 0x3040110E, "SMART-2/E", &smart2e_access },
88 { 0x40300E11, "SMART-2/P", &smart2_access },
89 { 0x40310E11, "SMART-2SL", &smart2_access },
90 { 0x40320E11, "Smart Array 3200", &smart2_access },
91 { 0x40330E11, "Smart Array 3100ES", &smart2_access },
92 { 0x40340E11, "Smart Array 221", &smart2_access },
93 { 0x40400E11, "Integrated Array", &smart4_access },
94 { 0x40480E11, "Compaq Raid LC2", &smart4_access },
95 { 0x40500E11, "Smart Array 4200", &smart4_access },
96 { 0x40510E11, "Smart Array 4250ES", &smart4_access },
97 { 0x40580E11, "Smart Array 431", &smart4_access },
98};
99
100/* define the PCI info for the PCI cards this driver can control */
101static const struct pci_device_id cpqarray_pci_device_id[] =
102{
103 { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_COMPAQ_42XX,
104 0x0E11, 0x4058, 0, 0, 0}, /* SA431 */
105 { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_COMPAQ_42XX,
106 0x0E11, 0x4051, 0, 0, 0}, /* SA4250ES */
107 { PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_COMPAQ_42XX,
108 0x0E11, 0x4050, 0, 0, 0}, /* SA4200 */
109 { PCI_VENDOR_ID_NCR, PCI_DEVICE_ID_NCR_53C1510,
110 0x0E11, 0x4048, 0, 0, 0}, /* LC2 */
111 { PCI_VENDOR_ID_NCR, PCI_DEVICE_ID_NCR_53C1510,
112 0x0E11, 0x4040, 0, 0, 0}, /* Integrated Array */
113 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_SMART2P,
114 0x0E11, 0x4034, 0, 0, 0}, /* SA 221 */
115 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_SMART2P,
116 0x0E11, 0x4033, 0, 0, 0}, /* SA 3100ES*/
117 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_SMART2P,
118 0x0E11, 0x4032, 0, 0, 0}, /* SA 3200*/
119 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_SMART2P,
120 0x0E11, 0x4031, 0, 0, 0}, /* SA 2SL*/
121 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_SMART2P,
122 0x0E11, 0x4030, 0, 0, 0}, /* SA 2P */
123 { 0 }
124};
125
126MODULE_DEVICE_TABLE(pci, cpqarray_pci_device_id);
127
128static struct gendisk *ida_gendisk[MAX_CTLR][NWD];
129
130/* Debug... */
131#define DBG(s) do { s } while(0)
132/* Debug (general info)... */
133#define DBGINFO(s) do { } while(0)
134/* Debug Paranoid... */
135#define DBGP(s) do { } while(0)
136/* Debug Extra Paranoid... */
137#define DBGPX(s) do { } while(0)
138
139static int cpqarray_pci_init(ctlr_info_t *c, struct pci_dev *pdev);
140static void __iomem *remap_pci_mem(ulong base, ulong size);
141static int cpqarray_eisa_detect(void);
142static int pollcomplete(int ctlr);
143static void getgeometry(int ctlr);
144static void start_fwbk(int ctlr);
145
146static cmdlist_t * cmd_alloc(ctlr_info_t *h, int get_from_pool);
147static void cmd_free(ctlr_info_t *h, cmdlist_t *c, int got_from_pool);
148
149static void free_hba(int i);
150static int alloc_cpqarray_hba(void);
151
152static int sendcmd(
153 __u8 cmd,
154 int ctlr,
155 void *buff,
156 size_t size,
157 unsigned int blk,
158 unsigned int blkcnt,
159 unsigned int log_unit );
160
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200161static int ida_unlocked_open(struct block_device *bdev, fmode_t mode);
Al Viro47844fa2008-03-02 09:27:11 -0500162static int ida_release(struct gendisk *disk, fmode_t mode);
163static int ida_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long arg);
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800164static int ida_getgeo(struct block_device *bdev, struct hd_geometry *geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static int ida_ctlr_ioctl(ctlr_info_t *h, int dsk, ida_ioctl_t *io);
166
Jens Axboe165125e2007-07-24 09:28:11 +0200167static void do_ida_request(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static void start_io(ctlr_info_t *h);
169
170static inline void addQ(cmdlist_t **Qptr, cmdlist_t *c);
171static inline cmdlist_t *removeQ(cmdlist_t **Qptr, cmdlist_t *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static inline void complete_command(cmdlist_t *cmd, int timeout);
173
David Howells7d12e782006-10-05 14:55:46 +0100174static irqreturn_t do_ida_intr(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static void ida_timer(unsigned long tdata);
176static int ida_revalidate(struct gendisk *disk);
177static int revalidate_allvol(ctlr_info_t *host);
178static int cpqarray_register_ctlr(int ctlr, struct pci_dev *pdev);
179
180#ifdef CONFIG_PROC_FS
181static void ida_procinit(int i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#else
183static void ida_procinit(int i) {}
184#endif
185
186static inline drv_info_t *get_drv(struct gendisk *disk)
187{
188 return disk->private_data;
189}
190
191static inline ctlr_info_t *get_host(struct gendisk *disk)
192{
193 return disk->queue->queuedata;
194}
195
196
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700197static const struct block_device_operations ida_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 .owner = THIS_MODULE,
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200199 .open = ida_unlocked_open,
Al Viro47844fa2008-03-02 09:27:11 -0500200 .release = ida_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200201 .ioctl = ida_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800202 .getgeo = ida_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .revalidate_disk= ida_revalidate,
204};
205
206
207#ifdef CONFIG_PROC_FS
208
209static struct proc_dir_entry *proc_array;
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700210static const struct file_operations ida_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/*
213 * Get us a file in /proc/array that says something about each controller.
214 * Create /proc/array if it doesn't exist yet.
215 */
216static void __init ida_procinit(int i)
217{
218 if (proc_array == NULL) {
Alexey Dobriyan928b4d82008-04-29 01:01:44 -0700219 proc_array = proc_mkdir("driver/cpqarray", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (!proc_array) return;
221 }
222
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700223 proc_create_data(hba[i]->devname, 0, proc_array, &ida_proc_fops, hba[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/*
227 * Report information about this controller.
228 */
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700229static int ida_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700231 int i, ctlr;
232 ctlr_info_t *h = (ctlr_info_t*)m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 drv_info_t *drv;
234#ifdef CPQ_PROC_PRINT_QUEUES
235 cmdlist_t *c;
236 unsigned long flags;
237#endif
238
239 ctlr = h->ctlr;
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700240 seq_printf(m, "%s: Compaq %s Controller\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 " Board ID: 0x%08lx\n"
242 " Firmware Revision: %c%c%c%c\n"
243 " Controller Sig: 0x%08lx\n"
244 " Memory Address: 0x%08lx\n"
245 " I/O Port: 0x%04x\n"
246 " IRQ: %d\n"
247 " Logical drives: %d\n"
248 " Physical drives: %d\n\n"
249 " Current Q depth: %d\n"
250 " Max Q depth since init: %d\n\n",
251 h->devname,
252 h->product_name,
253 (unsigned long)h->board_id,
254 h->firm_rev[0], h->firm_rev[1], h->firm_rev[2], h->firm_rev[3],
255 (unsigned long)h->ctlr_sig, (unsigned long)h->vaddr,
256 (unsigned int) h->io_mem_addr, (unsigned int)h->intr,
257 h->log_drives, h->phys_drives,
258 h->Qdepth, h->maxQsinceinit);
259
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700260 seq_puts(m, "Logical Drive Info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 for(i=0; i<h->log_drives; i++) {
263 drv = &h->drv[i];
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700264 seq_printf(m, "ida/c%dd%d: blksz=%d nr_blks=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 ctlr, i, drv->blk_size, drv->nr_blks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
268#ifdef CPQ_PROC_PRINT_QUEUES
269 spin_lock_irqsave(IDA_LOCK(h->ctlr), flags);
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700270 seq_puts(m, "\nCurrent Queues:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 c = h->reqQ;
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700273 seq_printf(m, "reqQ = %p", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (c) c=c->next;
275 while(c && c != h->reqQ) {
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700276 seq_printf(m, "->%p", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 c=c->next;
278 }
279
280 c = h->cmpQ;
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700281 seq_printf(m, "\ncmpQ = %p", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (c) c=c->next;
283 while(c && c != h->cmpQ) {
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700284 seq_printf(m, "->%p", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 c=c->next;
286 }
287
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700288 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 spin_unlock_irqrestore(IDA_LOCK(h->ctlr), flags);
290#endif
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700291 seq_printf(m, "nr_allocs = %d\nnr_frees = %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 h->nr_allocs, h->nr_frees);
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
Alexey Dobriyanff2c3de2009-09-18 12:58:47 -0700295
296static int ida_proc_open(struct inode *inode, struct file *file)
297{
298 return single_open(file, ida_proc_show, PDE(inode)->data);
299}
300
301static const struct file_operations ida_proc_fops = {
302 .owner = THIS_MODULE,
303 .open = ida_proc_open,
304 .read = seq_read,
305 .llseek = seq_lseek,
306 .release = single_release,
307};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif /* CONFIG_PROC_FS */
309
310module_param_array(eisa, int, NULL, 0);
311
312static void release_io_mem(ctlr_info_t *c)
313{
314 /* if IO mem was not protected do nothing */
315 if( c->io_mem_addr == 0)
316 return;
317 release_region(c->io_mem_addr, c->io_mem_length);
318 c->io_mem_addr = 0;
319 c->io_mem_length = 0;
320}
321
322static void __devexit cpqarray_remove_one(int i)
323{
324 int j;
325 char buff[4];
326
327 /* sendcmd will turn off interrupt, and send the flush...
328 * To write all data in the battery backed cache to disks
329 * no data returned, but don't want to send NULL to sendcmd */
330 if( sendcmd(FLUSH_CACHE, i, buff, 4, 0, 0, 0))
331 {
332 printk(KERN_WARNING "Unable to flush cache on controller %d\n",
333 i);
334 }
335 free_irq(hba[i]->intr, hba[i]);
336 iounmap(hba[i]->vaddr);
337 unregister_blkdev(COMPAQ_SMART2_MAJOR+i, hba[i]->devname);
338 del_timer(&hba[i]->timer);
339 remove_proc_entry(hba[i]->devname, proc_array);
340 pci_free_consistent(hba[i]->pci_dev,
341 NR_CMDS * sizeof(cmdlist_t), (hba[i]->cmd_pool),
342 hba[i]->cmd_pool_dhandle);
343 kfree(hba[i]->cmd_pool_bits);
344 for(j = 0; j < NWD; j++) {
345 if (ida_gendisk[i][j]->flags & GENHD_FL_UP)
346 del_gendisk(ida_gendisk[i][j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 put_disk(ida_gendisk[i][j]);
348 }
349 blk_cleanup_queue(hba[i]->queue);
350 release_io_mem(hba[i]);
351 free_hba(i);
352}
353
354static void __devexit cpqarray_remove_one_pci (struct pci_dev *pdev)
355{
356 int i;
357 ctlr_info_t *tmp_ptr;
358
359 if (pci_get_drvdata(pdev) == NULL) {
360 printk( KERN_ERR "cpqarray: Unable to remove device \n");
361 return;
362 }
363
364 tmp_ptr = pci_get_drvdata(pdev);
365 i = tmp_ptr->ctlr;
366 if (hba[i] == NULL) {
367 printk(KERN_ERR "cpqarray: controller %d appears to have"
368 "already been removed \n", i);
369 return;
370 }
371 pci_set_drvdata(pdev, NULL);
372
373 cpqarray_remove_one(i);
374}
375
376/* removing an instance that was not removed automatically..
377 * must be an eisa card.
378 */
379static void __devexit cpqarray_remove_one_eisa (int i)
380{
381 if (hba[i] == NULL) {
382 printk(KERN_ERR "cpqarray: controller %d appears to have"
383 "already been removed \n", i);
384 return;
385 }
386 cpqarray_remove_one(i);
387}
388
389/* pdev is NULL for eisa */
Jens Axboe552618d2010-06-14 15:21:33 +0200390static int __devinit cpqarray_register_ctlr( int i, struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Jens Axboe165125e2007-07-24 09:28:11 +0200392 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 int j;
394
395 /*
396 * register block devices
397 * Find disks and fill in structs
398 * Get an interrupt, set the Q depth and get into /proc
399 */
400
401 /* If this successful it should insure that we are the only */
402 /* instance of the driver */
403 if (register_blkdev(COMPAQ_SMART2_MAJOR+i, hba[i]->devname)) {
404 goto Enomem4;
405 }
406 hba[i]->access.set_intr_mask(hba[i], 0);
407 if (request_irq(hba[i]->intr, do_ida_intr,
Thomas Gleixner69ab3912006-07-01 19:29:32 -0700408 IRQF_DISABLED|IRQF_SHARED, hba[i]->devname, hba[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 {
410 printk(KERN_ERR "cpqarray: Unable to get irq %d for %s\n",
411 hba[i]->intr, hba[i]->devname);
412 goto Enomem3;
413 }
414
415 for (j=0; j<NWD; j++) {
416 ida_gendisk[i][j] = alloc_disk(1 << NWD_SHIFT);
417 if (!ida_gendisk[i][j])
418 goto Enomem2;
419 }
420
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +0200421 hba[i]->cmd_pool = pci_alloc_consistent(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 hba[i]->pci_dev, NR_CMDS * sizeof(cmdlist_t),
423 &(hba[i]->cmd_pool_dhandle));
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +0200424 hba[i]->cmd_pool_bits = kcalloc(
Julia Lawall061837b2008-09-22 14:57:16 -0700425 DIV_ROUND_UP(NR_CMDS, BITS_PER_LONG), sizeof(unsigned long),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 GFP_KERNEL);
427
428 if (!hba[i]->cmd_pool_bits || !hba[i]->cmd_pool)
429 goto Enomem1;
430
431 memset(hba[i]->cmd_pool, 0, NR_CMDS * sizeof(cmdlist_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 printk(KERN_INFO "cpqarray: Finding drives on %s",
433 hba[i]->devname);
434
435 spin_lock_init(&hba[i]->lock);
436 q = blk_init_queue(do_ida_request, &hba[i]->lock);
437 if (!q)
438 goto Enomem1;
439
440 hba[i]->queue = q;
441 q->queuedata = hba[i];
442
443 getgeometry(i);
444 start_fwbk(i);
445
446 ida_procinit(i);
447
448 if (pdev)
449 blk_queue_bounce_limit(q, hba[i]->pci_dev->dma_mask);
450
451 /* This is a hardware imposed limit. */
Martin K. Petersen8a783622010-02-26 00:20:39 -0500452 blk_queue_max_segments(q, SG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 init_timer(&hba[i]->timer);
455 hba[i]->timer.expires = jiffies + IDA_TIMER;
456 hba[i]->timer.data = (unsigned long)hba[i];
457 hba[i]->timer.function = ida_timer;
458 add_timer(&hba[i]->timer);
459
460 /* Enable IRQ now that spinlock and rate limit timer are set up */
461 hba[i]->access.set_intr_mask(hba[i], FIFO_NOT_EMPTY);
462
463 for(j=0; j<NWD; j++) {
464 struct gendisk *disk = ida_gendisk[i][j];
465 drv_info_t *drv = &hba[i]->drv[j];
466 sprintf(disk->disk_name, "ida/c%dd%d", i, j);
467 disk->major = COMPAQ_SMART2_MAJOR + i;
468 disk->first_minor = j<<NWD_SHIFT;
469 disk->fops = &ida_fops;
470 if (j && !drv->nr_blks)
471 continue;
Martin K. Petersene1defc42009-05-22 17:17:49 -0400472 blk_queue_logical_block_size(hba[i]->queue, drv->blk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 set_capacity(disk, drv->nr_blks);
474 disk->queue = hba[i]->queue;
475 disk->private_data = drv;
476 add_disk(disk);
477 }
478
479 /* done ! */
480 return(i);
481
482Enomem1:
483 nr_ctlr = i;
484 kfree(hba[i]->cmd_pool_bits);
485 if (hba[i]->cmd_pool)
486 pci_free_consistent(hba[i]->pci_dev, NR_CMDS*sizeof(cmdlist_t),
487 hba[i]->cmd_pool, hba[i]->cmd_pool_dhandle);
488Enomem2:
489 while (j--) {
490 put_disk(ida_gendisk[i][j]);
491 ida_gendisk[i][j] = NULL;
492 }
493 free_irq(hba[i]->intr, hba[i]);
494Enomem3:
495 unregister_blkdev(COMPAQ_SMART2_MAJOR+i, hba[i]->devname);
496Enomem4:
497 if (pdev)
498 pci_set_drvdata(pdev, NULL);
499 release_io_mem(hba[i]);
500 free_hba(i);
501
502 printk( KERN_ERR "cpqarray: out of memory");
503
504 return -1;
505}
506
Jens Axboed4a38952010-06-14 12:55:09 +0200507static int __devinit cpqarray_init_one( struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 const struct pci_device_id *ent)
509{
510 int i;
511
512 printk(KERN_DEBUG "cpqarray: Device 0x%x has been found at"
513 " bus %d dev %d func %d\n",
514 pdev->device, pdev->bus->number, PCI_SLOT(pdev->devfn),
515 PCI_FUNC(pdev->devfn));
516 i = alloc_cpqarray_hba();
517 if( i < 0 )
518 return (-1);
519 memset(hba[i], 0, sizeof(ctlr_info_t));
520 sprintf(hba[i]->devname, "ida%d", i);
521 hba[i]->ctlr = i;
522 /* Initialize the pdev driver private data */
523 pci_set_drvdata(pdev, hba[i]);
524
525 if (cpqarray_pci_init(hba[i], pdev) != 0) {
526 pci_set_drvdata(pdev, NULL);
527 release_io_mem(hba[i]);
528 free_hba(i);
529 return -1;
530 }
531
532 return (cpqarray_register_ctlr(i, pdev));
533}
534
535static struct pci_driver cpqarray_pci_driver = {
536 .name = "cpqarray",
537 .probe = cpqarray_init_one,
538 .remove = __devexit_p(cpqarray_remove_one_pci),
539 .id_table = cpqarray_pci_device_id,
540};
541
542/*
543 * This is it. Find all the controllers and register them.
544 * returns the number of block devices registered.
545 */
546static int __init cpqarray_init(void)
547{
548 int num_cntlrs_reg = 0;
549 int i;
550 int rc = 0;
551
552 /* detect controllers */
553 printk(DRIVER_NAME "\n");
554
555 rc = pci_register_driver(&cpqarray_pci_driver);
556 if (rc)
557 return rc;
558 cpqarray_eisa_detect();
559
560 for (i=0; i < MAX_CTLR; i++) {
561 if (hba[i] != NULL)
562 num_cntlrs_reg++;
563 }
564
Andrey Borzenkov2197d182008-11-06 12:53:15 -0800565 if (num_cntlrs_reg)
566 return 0;
567 else {
568 pci_unregister_driver(&cpqarray_pci_driver);
569 return -ENODEV;
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/* Function to find the first free pointer into our hba[] array */
574/* Returns -1 if no free entries are left. */
575static int alloc_cpqarray_hba(void)
576{
577 int i;
578
579 for(i=0; i< MAX_CTLR; i++) {
580 if (hba[i] == NULL) {
581 hba[i] = kmalloc(sizeof(ctlr_info_t), GFP_KERNEL);
582 if(hba[i]==NULL) {
583 printk(KERN_ERR "cpqarray: out of memory.\n");
584 return (-1);
585 }
586 return (i);
587 }
588 }
589 printk(KERN_WARNING "cpqarray: This driver supports a maximum"
590 " of 8 controllers.\n");
591 return(-1);
592}
593
594static void free_hba(int i)
595{
596 kfree(hba[i]);
597 hba[i]=NULL;
598}
599
600/*
601 * Find the IO address of the controller, its IRQ and so forth. Fill
602 * in some basic stuff into the ctlr_info_t structure.
603 */
604static int cpqarray_pci_init(ctlr_info_t *c, struct pci_dev *pdev)
605{
606 ushort vendor_id, device_id, command;
607 unchar cache_line_size, latency_timer;
608 unchar irq, revision;
609 unsigned long addr[6];
610 __u32 board_id;
611
612 int i;
613
614 c->pci_dev = pdev;
Dave Jones0061d382009-03-16 10:06:05 +0100615 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (pci_enable_device(pdev)) {
617 printk(KERN_ERR "cpqarray: Unable to Enable PCI device\n");
618 return -1;
619 }
620 vendor_id = pdev->vendor;
621 device_id = pdev->device;
622 irq = pdev->irq;
623
624 for(i=0; i<6; i++)
625 addr[i] = pci_resource_start(pdev, i);
626
627 if (pci_set_dma_mask(pdev, CPQARRAY_DMA_MASK) != 0)
628 {
629 printk(KERN_ERR "cpqarray: Unable to set DMA mask\n");
630 return -1;
631 }
632
633 pci_read_config_word(pdev, PCI_COMMAND, &command);
634 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
635 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache_line_size);
636 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency_timer);
637
638 pci_read_config_dword(pdev, 0x2c, &board_id);
639
640 /* check to see if controller has been disabled */
641 if(!(command & 0x02)) {
642 printk(KERN_WARNING
643 "cpqarray: controller appears to be disabled\n");
644 return(-1);
645 }
646
647DBGINFO(
648 printk("vendor_id = %x\n", vendor_id);
649 printk("device_id = %x\n", device_id);
650 printk("command = %x\n", command);
651 for(i=0; i<6; i++)
652 printk("addr[%d] = %lx\n", i, addr[i]);
653 printk("revision = %x\n", revision);
654 printk("irq = %x\n", irq);
655 printk("cache_line_size = %x\n", cache_line_size);
656 printk("latency_timer = %x\n", latency_timer);
657 printk("board_id = %x\n", board_id);
658);
659
660 c->intr = irq;
661
662 for(i=0; i<6; i++) {
663 if (pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE_IO)
664 { /* IO space */
665 c->io_mem_addr = addr[i];
666 c->io_mem_length = pci_resource_end(pdev, i)
667 - pci_resource_start(pdev, i) + 1;
668 if(!request_region( c->io_mem_addr, c->io_mem_length,
669 "cpqarray"))
670 {
671 printk( KERN_WARNING "cpqarray I/O memory range already in use addr %lx length = %ld\n", c->io_mem_addr, c->io_mem_length);
672 c->io_mem_addr = 0;
673 c->io_mem_length = 0;
674 }
675 break;
676 }
677 }
678
679 c->paddr = 0;
680 for(i=0; i<6; i++)
681 if (!(pci_resource_flags(pdev, i) &
682 PCI_BASE_ADDRESS_SPACE_IO)) {
683 c->paddr = pci_resource_start (pdev, i);
684 break;
685 }
686 if (!c->paddr)
687 return -1;
688 c->vaddr = remap_pci_mem(c->paddr, 128);
689 if (!c->vaddr)
690 return -1;
691 c->board_id = board_id;
692
693 for(i=0; i<NR_PRODUCTS; i++) {
694 if (board_id == products[i].board_id) {
695 c->product_name = products[i].product_name;
696 c->access = *(products[i].access);
697 break;
698 }
699 }
700 if (i == NR_PRODUCTS) {
701 printk(KERN_WARNING "cpqarray: Sorry, I don't know how"
702 " to access the SMART Array controller %08lx\n",
703 (unsigned long)board_id);
704 return -1;
705 }
706
707 return 0;
708}
709
710/*
711 * Map (physical) PCI mem into (virtual) kernel space
712 */
713static void __iomem *remap_pci_mem(ulong base, ulong size)
714{
715 ulong page_base = ((ulong) base) & PAGE_MASK;
716 ulong page_offs = ((ulong) base) - page_base;
717 void __iomem *page_remapped = ioremap(page_base, page_offs+size);
718
719 return (page_remapped ? (page_remapped + page_offs) : NULL);
720}
721
722#ifndef MODULE
723/*
724 * Config string is a comma separated set of i/o addresses of EISA cards.
725 */
726static int cpqarray_setup(char *str)
727{
728 int i, ints[9];
729
730 (void)get_options(str, ARRAY_SIZE(ints), ints);
731
732 for(i=0; i<ints[0] && i<8; i++)
733 eisa[i] = ints[i+1];
734 return 1;
735}
736
737__setup("smart2=", cpqarray_setup);
738
739#endif
740
741/*
742 * Find an EISA controller's signature. Set up an hba if we find it.
743 */
Jens Axboe552618d2010-06-14 15:21:33 +0200744static int __devinit cpqarray_eisa_detect(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 int i=0, j;
747 __u32 board_id;
748 int intr;
749 int ctlr;
750 int num_ctlr = 0;
751
752 while(i<8 && eisa[i]) {
753 ctlr = alloc_cpqarray_hba();
754 if(ctlr == -1)
755 break;
756 board_id = inl(eisa[i]+0xC80);
757 for(j=0; j < NR_PRODUCTS; j++)
758 if (board_id == products[j].board_id)
759 break;
760
761 if (j == NR_PRODUCTS) {
762 printk(KERN_WARNING "cpqarray: Sorry, I don't know how"
763 " to access the SMART Array controller %08lx\n", (unsigned long)board_id);
764 continue;
765 }
766
767 memset(hba[ctlr], 0, sizeof(ctlr_info_t));
768 hba[ctlr]->io_mem_addr = eisa[i];
769 hba[ctlr]->io_mem_length = 0x7FF;
770 if(!request_region(hba[ctlr]->io_mem_addr,
771 hba[ctlr]->io_mem_length,
772 "cpqarray"))
773 {
774 printk(KERN_WARNING "cpqarray: I/O range already in "
775 "use addr = %lx length = %ld\n",
776 hba[ctlr]->io_mem_addr,
777 hba[ctlr]->io_mem_length);
778 free_hba(ctlr);
779 continue;
780 }
781
782 /*
783 * Read the config register to find our interrupt
784 */
785 intr = inb(eisa[i]+0xCC0) >> 4;
786 if (intr & 1) intr = 11;
787 else if (intr & 2) intr = 10;
788 else if (intr & 4) intr = 14;
789 else if (intr & 8) intr = 15;
790
791 hba[ctlr]->intr = intr;
792 sprintf(hba[ctlr]->devname, "ida%d", nr_ctlr);
793 hba[ctlr]->product_name = products[j].product_name;
794 hba[ctlr]->access = *(products[j].access);
795 hba[ctlr]->ctlr = ctlr;
796 hba[ctlr]->board_id = board_id;
797 hba[ctlr]->pci_dev = NULL; /* not PCI */
798
799DBGINFO(
800 printk("i = %d, j = %d\n", i, j);
801 printk("irq = %x\n", intr);
802 printk("product name = %s\n", products[j].product_name);
803 printk("board_id = %x\n", board_id);
804);
805
806 num_ctlr++;
807 i++;
808
809 if (cpqarray_register_ctlr(ctlr, NULL) == -1)
810 printk(KERN_WARNING
811 "cpqarray: Can't register EISA controller %d\n",
812 ctlr);
813
814 }
815
816 return num_ctlr;
817}
818
819/*
820 * Open. Make sure the device is really there.
821 */
Al Viro47844fa2008-03-02 09:27:11 -0500822static int ida_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Al Viro47844fa2008-03-02 09:27:11 -0500824 drv_info_t *drv = get_drv(bdev->bd_disk);
825 ctlr_info_t *host = get_host(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Al Viro47844fa2008-03-02 09:27:11 -0500827 DBGINFO(printk("ida_open %s\n", bdev->bd_disk->disk_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /*
829 * Root is allowed to open raw volume zero even if it's not configured
830 * so array config can still work. I don't think I really like this,
831 * but I'm already using way to many device nodes to claim another one
832 * for "raw controller".
833 */
834 if (!drv->nr_blks) {
835 if (!capable(CAP_SYS_RAWIO))
836 return -ENXIO;
837 if (!capable(CAP_SYS_ADMIN) && drv != host->drv)
838 return -ENXIO;
839 }
840 host->usage_count++;
841 return 0;
842}
843
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200844static int ida_unlocked_open(struct block_device *bdev, fmode_t mode)
845{
846 int ret;
847
848 lock_kernel();
849 ret = ida_open(bdev, mode);
850 unlock_kernel();
851
852 return ret;
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*
856 * Close. Sync first.
857 */
Al Viro47844fa2008-03-02 09:27:11 -0500858static int ida_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200860 ctlr_info_t *host;
861
862 lock_kernel();
863 host = get_host(disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 host->usage_count--;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200865 unlock_kernel();
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return 0;
868}
869
870/*
871 * Enqueuing and dequeuing functions for cmdlists.
872 */
873static inline void addQ(cmdlist_t **Qptr, cmdlist_t *c)
874{
875 if (*Qptr == NULL) {
876 *Qptr = c;
877 c->next = c->prev = c;
878 } else {
879 c->prev = (*Qptr)->prev;
880 c->next = (*Qptr);
881 (*Qptr)->prev->next = c;
882 (*Qptr)->prev = c;
883 }
884}
885
886static inline cmdlist_t *removeQ(cmdlist_t **Qptr, cmdlist_t *c)
887{
888 if (c && c->next != c) {
889 if (*Qptr == c) *Qptr = c->next;
890 c->prev->next = c->next;
891 c->next->prev = c->prev;
892 } else {
893 *Qptr = NULL;
894 }
895 return c;
896}
897
898/*
899 * Get a request and submit it to the controller.
900 * This routine needs to grab all the requests it possibly can from the
901 * req Q and submit them. Interrupts are off (and need to be off) when you
902 * are in here (either via the dummy do_ida_request functions or by being
903 * called from the interrupt handler
904 */
Jens Axboe165125e2007-07-24 09:28:11 +0200905static void do_ida_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 ctlr_info_t *h = q->queuedata;
908 cmdlist_t *c;
909 struct request *creq;
910 struct scatterlist tmp_sg[SG_MAX];
911 int i, dir, seg;
912
913 if (blk_queue_plugged(q))
914 goto startio;
915
916queue_next:
Tejun Heo9934c8c2009-05-08 11:54:16 +0900917 creq = blk_peek_request(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (!creq)
919 goto startio;
920
Eric Sesterhenn089fe1b2006-03-24 18:50:27 +0100921 BUG_ON(creq->nr_phys_segments > SG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if ((c = cmd_alloc(h,1)) == NULL)
924 goto startio;
925
Tejun Heo9934c8c2009-05-08 11:54:16 +0900926 blk_start_request(creq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 c->ctlr = h->ctlr;
929 c->hdr.unit = (drv_info_t *)(creq->rq_disk->private_data) - h->drv;
930 c->hdr.size = sizeof(rblk_t) >> 2;
931 c->size += sizeof(rblk_t);
932
Tejun Heo83096eb2009-05-07 22:24:39 +0900933 c->req.hdr.blk = blk_rq_pos(creq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 c->rq = creq;
935DBGPX(
Tejun Heo83096eb2009-05-07 22:24:39 +0900936 printk("sector=%d, nr_sectors=%u\n",
937 blk_rq_pos(creq), blk_rq_sectors(creq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938);
Jens Axboe45711f12007-10-22 21:19:53 +0200939 sg_init_table(tmp_sg, SG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 seg = blk_rq_map_sg(q, creq, tmp_sg);
941
942 /* Now do all the DMA Mappings */
943 if (rq_data_dir(creq) == READ)
944 dir = PCI_DMA_FROMDEVICE;
945 else
946 dir = PCI_DMA_TODEVICE;
947 for( i=0; i < seg; i++)
948 {
949 c->req.sg[i].size = tmp_sg[i].length;
950 c->req.sg[i].addr = (__u32) pci_map_page(h->pci_dev,
Jens Axboe45711f12007-10-22 21:19:53 +0200951 sg_page(&tmp_sg[i]),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 tmp_sg[i].offset,
953 tmp_sg[i].length, dir);
954 }
Tejun Heo83096eb2009-05-07 22:24:39 +0900955DBGPX( printk("Submitting %u sectors in %d segments\n", blk_rq_sectors(creq), seg); );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 c->req.hdr.sg_cnt = seg;
Tejun Heo83096eb2009-05-07 22:24:39 +0900957 c->req.hdr.blk_cnt = blk_rq_sectors(creq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 c->req.hdr.cmd = (rq_data_dir(creq) == READ) ? IDA_READ : IDA_WRITE;
959 c->type = CMD_RWREQ;
960
961 /* Put the request on the tail of the request queue */
962 addQ(&h->reqQ, c);
963 h->Qdepth++;
964 if (h->Qdepth > h->maxQsinceinit)
965 h->maxQsinceinit = h->Qdepth;
966
967 goto queue_next;
968
969startio:
970 start_io(h);
971}
972
973/*
974 * start_io submits everything on a controller's request queue
975 * and moves it to the completion queue.
976 *
977 * Interrupts had better be off if you're in here
978 */
979static void start_io(ctlr_info_t *h)
980{
981 cmdlist_t *c;
982
983 while((c = h->reqQ) != NULL) {
984 /* Can't do anything if we're busy */
985 if (h->access.fifo_full(h) == 0)
986 return;
987
988 /* Get the first entry from the request Q */
989 removeQ(&h->reqQ, c);
990 h->Qdepth--;
991
992 /* Tell the controller to do our bidding */
993 h->access.submit_command(h, c);
994
995 /* Get onto the completion Q */
996 addQ(&h->cmpQ, c);
997 }
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * Mark all buffers that cmd was responsible for
1002 */
1003static inline void complete_command(cmdlist_t *cmd, int timeout)
1004{
Jens Axboe1f794b62006-11-14 12:36:45 +01001005 struct request *rq = cmd->rq;
Kiyoshi Uedaea6f06f2007-12-11 17:50:21 -05001006 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 int i, ddir;
1008
1009 if (cmd->req.hdr.rcode & RCODE_NONFATAL &&
1010 (hba[cmd->ctlr]->misc_tflags & MISC_NONFATAL_WARN) == 0) {
1011 printk(KERN_NOTICE "Non Fatal error on ida/c%dd%d\n",
1012 cmd->ctlr, cmd->hdr.unit);
1013 hba[cmd->ctlr]->misc_tflags |= MISC_NONFATAL_WARN;
1014 }
1015 if (cmd->req.hdr.rcode & RCODE_FATAL) {
1016 printk(KERN_WARNING "Fatal error on ida/c%dd%d\n",
1017 cmd->ctlr, cmd->hdr.unit);
Kiyoshi Uedaea6f06f2007-12-11 17:50:21 -05001018 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020 if (cmd->req.hdr.rcode & RCODE_INVREQ) {
1021 printk(KERN_WARNING "Invalid request on ida/c%dd%d = (cmd=%x sect=%d cnt=%d sg=%d ret=%x)\n",
1022 cmd->ctlr, cmd->hdr.unit, cmd->req.hdr.cmd,
1023 cmd->req.hdr.blk, cmd->req.hdr.blk_cnt,
1024 cmd->req.hdr.sg_cnt, cmd->req.hdr.rcode);
Kiyoshi Uedaea6f06f2007-12-11 17:50:21 -05001025 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Kiyoshi Uedaea6f06f2007-12-11 17:50:21 -05001027 if (timeout)
1028 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /* unmap the DMA mapping for all the scatter gather elements */
1030 if (cmd->req.hdr.cmd == IDA_READ)
1031 ddir = PCI_DMA_FROMDEVICE;
1032 else
1033 ddir = PCI_DMA_TODEVICE;
1034 for(i=0; i<cmd->req.hdr.sg_cnt; i++)
1035 pci_unmap_page(hba[cmd->ctlr]->pci_dev, cmd->req.sg[i].addr,
1036 cmd->req.sg[i].size, ddir);
1037
Jens Axboe1f794b62006-11-14 12:36:45 +01001038 DBGPX(printk("Done with %p\n", rq););
Tejun Heo40cbbb72009-04-23 11:05:19 +09001039 __blk_end_request_all(rq, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042/*
1043 * The controller will interrupt us upon completion of commands.
1044 * Find the command on the completion queue, remove it, tell the OS and
1045 * try to queue up more IO
1046 */
David Howells7d12e782006-10-05 14:55:46 +01001047static irqreturn_t do_ida_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 ctlr_info_t *h = dev_id;
1050 cmdlist_t *c;
1051 unsigned long istat;
1052 unsigned long flags;
1053 __u32 a,a1;
1054
1055 istat = h->access.intr_pending(h);
1056 /* Is this interrupt for us? */
1057 if (istat == 0)
1058 return IRQ_NONE;
1059
1060 /*
1061 * If there are completed commands in the completion queue,
1062 * we had better do something about it.
1063 */
1064 spin_lock_irqsave(IDA_LOCK(h->ctlr), flags);
1065 if (istat & FIFO_NOT_EMPTY) {
1066 while((a = h->access.command_completed(h))) {
1067 a1 = a; a &= ~3;
1068 if ((c = h->cmpQ) == NULL)
1069 {
1070 printk(KERN_WARNING "cpqarray: Completion of %08lx ignored\n", (unsigned long)a1);
1071 continue;
1072 }
1073 while(c->busaddr != a) {
1074 c = c->next;
1075 if (c == h->cmpQ)
1076 break;
1077 }
1078 /*
1079 * If we've found the command, take it off the
1080 * completion Q and free it
1081 */
1082 if (c->busaddr == a) {
1083 removeQ(&h->cmpQ, c);
1084 /* Check for invalid command.
1085 * Controller returns command error,
1086 * But rcode = 0.
1087 */
1088
1089 if((a1 & 0x03) && (c->req.hdr.rcode == 0))
1090 {
1091 c->req.hdr.rcode = RCODE_INVREQ;
1092 }
1093 if (c->type == CMD_RWREQ) {
1094 complete_command(c, 0);
1095 cmd_free(h, c, 1);
1096 } else if (c->type == CMD_IOCTL_PEND) {
1097 c->type = CMD_IOCTL_DONE;
1098 }
1099 continue;
1100 }
1101 }
1102 }
1103
1104 /*
1105 * See if we can queue up some more IO
1106 */
1107 do_ida_request(h->queue);
1108 spin_unlock_irqrestore(IDA_LOCK(h->ctlr), flags);
1109 return IRQ_HANDLED;
1110}
1111
1112/*
1113 * This timer was for timing out requests that haven't happened after
1114 * IDA_TIMEOUT. That wasn't such a good idea. This timer is used to
1115 * reset a flags structure so we don't flood the user with
1116 * "Non-Fatal error" messages.
1117 */
1118static void ida_timer(unsigned long tdata)
1119{
1120 ctlr_info_t *h = (ctlr_info_t*)tdata;
1121
1122 h->timer.expires = jiffies + IDA_TIMER;
1123 add_timer(&h->timer);
1124 h->misc_tflags = 0;
1125}
1126
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08001127static int ida_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1128{
1129 drv_info_t *drv = get_drv(bdev->bd_disk);
1130
1131 if (drv->cylinders) {
1132 geo->heads = drv->heads;
1133 geo->sectors = drv->sectors;
1134 geo->cylinders = drv->cylinders;
1135 } else {
1136 geo->heads = 0xff;
1137 geo->sectors = 0x3f;
1138 geo->cylinders = drv->nr_blks / (0xff*0x3f);
1139 }
1140
1141 return 0;
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/*
1145 * ida_ioctl does some miscellaneous stuff like reporting drive geometry,
1146 * setting readahead and submitting commands from userspace to the controller.
1147 */
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001148static int ida_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Al Viro47844fa2008-03-02 09:27:11 -05001150 drv_info_t *drv = get_drv(bdev->bd_disk);
1151 ctlr_info_t *host = get_host(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 ida_ioctl_t __user *io = (ida_ioctl_t __user *)arg;
1154 ida_ioctl_t *my_io;
1155
1156 switch(cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 case IDAGETDRVINFO:
1158 if (copy_to_user(&io->c.drv, drv, sizeof(drv_info_t)))
1159 return -EFAULT;
1160 return 0;
1161 case IDAPASSTHRU:
1162 if (!capable(CAP_SYS_RAWIO))
1163 return -EPERM;
1164 my_io = kmalloc(sizeof(ida_ioctl_t), GFP_KERNEL);
1165 if (!my_io)
1166 return -ENOMEM;
1167 error = -EFAULT;
1168 if (copy_from_user(my_io, io, sizeof(*my_io)))
1169 goto out_passthru;
1170 error = ida_ctlr_ioctl(host, drv - host->drv, my_io);
1171 if (error)
1172 goto out_passthru;
1173 error = -EFAULT;
1174 if (copy_to_user(io, my_io, sizeof(*my_io)))
1175 goto out_passthru;
1176 error = 0;
1177out_passthru:
1178 kfree(my_io);
1179 return error;
1180 case IDAGETCTLRSIG:
1181 if (!arg) return -EINVAL;
1182 put_user(host->ctlr_sig, (int __user *)arg);
1183 return 0;
1184 case IDAREVALIDATEVOLS:
Al Viro47844fa2008-03-02 09:27:11 -05001185 if (MINOR(bdev->bd_dev) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return -ENXIO;
1187 return revalidate_allvol(host);
1188 case IDADRIVERVERSION:
1189 if (!arg) return -EINVAL;
1190 put_user(DRIVER_VERSION, (unsigned long __user *)arg);
1191 return 0;
1192 case IDAGETPCIINFO:
1193 {
1194
1195 ida_pci_info_struct pciinfo;
1196
1197 if (!arg) return -EINVAL;
1198 pciinfo.bus = host->pci_dev->bus->number;
1199 pciinfo.dev_fn = host->pci_dev->devfn;
1200 pciinfo.board_id = host->board_id;
1201 if(copy_to_user((void __user *) arg, &pciinfo,
1202 sizeof( ida_pci_info_struct)))
1203 return -EFAULT;
1204 return(0);
1205 }
1206
1207 default:
1208 return -EINVAL;
1209 }
1210
1211}
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001212
1213static int ida_ioctl(struct block_device *bdev, fmode_t mode,
1214 unsigned int cmd, unsigned long param)
1215{
1216 int ret;
1217
1218 lock_kernel();
1219 ret = ida_locked_ioctl(bdev, mode, cmd, param);
1220 unlock_kernel();
1221
1222 return ret;
1223}
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225/*
1226 * ida_ctlr_ioctl is for passing commands to the controller from userspace.
1227 * The command block (io) has already been copied to kernel space for us,
1228 * however, any elements in the sglist need to be copied to kernel space
1229 * or copied back to userspace.
1230 *
1231 * Only root may perform a controller passthru command, however I'm not doing
1232 * any serious sanity checking on the arguments. Doing an IDA_WRITE_MEDIA and
1233 * putting a 64M buffer in the sglist is probably a *bad* idea.
1234 */
1235static int ida_ctlr_ioctl(ctlr_info_t *h, int dsk, ida_ioctl_t *io)
1236{
1237 int ctlr = h->ctlr;
1238 cmdlist_t *c;
1239 void *p = NULL;
1240 unsigned long flags;
1241 int error;
1242
1243 if ((c = cmd_alloc(h, 0)) == NULL)
1244 return -ENOMEM;
1245 c->ctlr = ctlr;
1246 c->hdr.unit = (io->unit & UNITVALID) ? (io->unit & ~UNITVALID) : dsk;
1247 c->hdr.size = sizeof(rblk_t) >> 2;
1248 c->size += sizeof(rblk_t);
1249
1250 c->req.hdr.cmd = io->cmd;
1251 c->req.hdr.blk = io->blk;
1252 c->req.hdr.blk_cnt = io->blk_cnt;
1253 c->type = CMD_IOCTL_PEND;
1254
1255 /* Pre submit processing */
1256 switch(io->cmd) {
1257 case PASSTHRU_A:
1258 p = kmalloc(io->sg[0].size, GFP_KERNEL);
1259 if (!p)
1260 {
1261 error = -ENOMEM;
1262 cmd_free(h, c, 0);
1263 return(error);
1264 }
1265 if (copy_from_user(p, io->sg[0].addr, io->sg[0].size)) {
1266 kfree(p);
1267 cmd_free(h, c, 0);
1268 return -EFAULT;
1269 }
1270 c->req.hdr.blk = pci_map_single(h->pci_dev, &(io->c),
1271 sizeof(ida_ioctl_t),
1272 PCI_DMA_BIDIRECTIONAL);
1273 c->req.sg[0].size = io->sg[0].size;
1274 c->req.sg[0].addr = pci_map_single(h->pci_dev, p,
1275 c->req.sg[0].size, PCI_DMA_BIDIRECTIONAL);
1276 c->req.hdr.sg_cnt = 1;
1277 break;
1278 case IDA_READ:
1279 case READ_FLASH_ROM:
1280 case SENSE_CONTROLLER_PERFORMANCE:
1281 p = kmalloc(io->sg[0].size, GFP_KERNEL);
1282 if (!p)
1283 {
1284 error = -ENOMEM;
1285 cmd_free(h, c, 0);
1286 return(error);
1287 }
1288
1289 c->req.sg[0].size = io->sg[0].size;
1290 c->req.sg[0].addr = pci_map_single(h->pci_dev, p,
1291 c->req.sg[0].size, PCI_DMA_BIDIRECTIONAL);
1292 c->req.hdr.sg_cnt = 1;
1293 break;
1294 case IDA_WRITE:
1295 case IDA_WRITE_MEDIA:
1296 case DIAG_PASS_THRU:
1297 case COLLECT_BUFFER:
1298 case WRITE_FLASH_ROM:
1299 p = kmalloc(io->sg[0].size, GFP_KERNEL);
1300 if (!p)
1301 {
1302 error = -ENOMEM;
1303 cmd_free(h, c, 0);
1304 return(error);
1305 }
1306 if (copy_from_user(p, io->sg[0].addr, io->sg[0].size)) {
1307 kfree(p);
1308 cmd_free(h, c, 0);
1309 return -EFAULT;
1310 }
1311 c->req.sg[0].size = io->sg[0].size;
1312 c->req.sg[0].addr = pci_map_single(h->pci_dev, p,
1313 c->req.sg[0].size, PCI_DMA_BIDIRECTIONAL);
1314 c->req.hdr.sg_cnt = 1;
1315 break;
1316 default:
1317 c->req.sg[0].size = sizeof(io->c);
1318 c->req.sg[0].addr = pci_map_single(h->pci_dev,&io->c,
1319 c->req.sg[0].size, PCI_DMA_BIDIRECTIONAL);
1320 c->req.hdr.sg_cnt = 1;
1321 }
1322
1323 /* Put the request on the tail of the request queue */
1324 spin_lock_irqsave(IDA_LOCK(ctlr), flags);
1325 addQ(&h->reqQ, c);
1326 h->Qdepth++;
1327 start_io(h);
1328 spin_unlock_irqrestore(IDA_LOCK(ctlr), flags);
1329
1330 /* Wait for completion */
1331 while(c->type != CMD_IOCTL_DONE)
1332 schedule();
1333
1334 /* Unmap the DMA */
1335 pci_unmap_single(h->pci_dev, c->req.sg[0].addr, c->req.sg[0].size,
1336 PCI_DMA_BIDIRECTIONAL);
1337 /* Post submit processing */
1338 switch(io->cmd) {
1339 case PASSTHRU_A:
1340 pci_unmap_single(h->pci_dev, c->req.hdr.blk,
1341 sizeof(ida_ioctl_t),
1342 PCI_DMA_BIDIRECTIONAL);
1343 case IDA_READ:
1344 case DIAG_PASS_THRU:
1345 case SENSE_CONTROLLER_PERFORMANCE:
1346 case READ_FLASH_ROM:
1347 if (copy_to_user(io->sg[0].addr, p, io->sg[0].size)) {
1348 kfree(p);
1349 return -EFAULT;
1350 }
1351 /* fall through and free p */
1352 case IDA_WRITE:
1353 case IDA_WRITE_MEDIA:
1354 case COLLECT_BUFFER:
1355 case WRITE_FLASH_ROM:
1356 kfree(p);
1357 break;
1358 default:;
1359 /* Nothing to do */
1360 }
1361
1362 io->rcode = c->req.hdr.rcode;
1363 cmd_free(h, c, 0);
1364 return(0);
1365}
1366
1367/*
1368 * Commands are pre-allocated in a large block. Here we use a simple bitmap
1369 * scheme to suballocte them to the driver. Operations that are not time
1370 * critical (and can wait for kmalloc and possibly sleep) can pass in NULL
1371 * as the first argument to get a new command.
1372 */
1373static cmdlist_t * cmd_alloc(ctlr_info_t *h, int get_from_pool)
1374{
1375 cmdlist_t * c;
1376 int i;
1377 dma_addr_t cmd_dhandle;
1378
1379 if (!get_from_pool) {
1380 c = (cmdlist_t*)pci_alloc_consistent(h->pci_dev,
1381 sizeof(cmdlist_t), &cmd_dhandle);
1382 if(c==NULL)
1383 return NULL;
1384 } else {
1385 do {
1386 i = find_first_zero_bit(h->cmd_pool_bits, NR_CMDS);
1387 if (i == NR_CMDS)
1388 return NULL;
1389 } while(test_and_set_bit(i&(BITS_PER_LONG-1), h->cmd_pool_bits+(i/BITS_PER_LONG)) != 0);
1390 c = h->cmd_pool + i;
1391 cmd_dhandle = h->cmd_pool_dhandle + i*sizeof(cmdlist_t);
1392 h->nr_allocs++;
1393 }
1394
1395 memset(c, 0, sizeof(cmdlist_t));
1396 c->busaddr = cmd_dhandle;
1397 return c;
1398}
1399
1400static void cmd_free(ctlr_info_t *h, cmdlist_t *c, int got_from_pool)
1401{
1402 int i;
1403
1404 if (!got_from_pool) {
1405 pci_free_consistent(h->pci_dev, sizeof(cmdlist_t), c,
1406 c->busaddr);
1407 } else {
1408 i = c - h->cmd_pool;
1409 clear_bit(i&(BITS_PER_LONG-1), h->cmd_pool_bits+(i/BITS_PER_LONG));
1410 h->nr_frees++;
1411 }
1412}
1413
1414/***********************************************************************
1415 name: sendcmd
1416 Send a command to an IDA using the memory mapped FIFO interface
1417 and wait for it to complete.
1418 This routine should only be called at init time.
1419***********************************************************************/
1420static int sendcmd(
1421 __u8 cmd,
1422 int ctlr,
1423 void *buff,
1424 size_t size,
1425 unsigned int blk,
1426 unsigned int blkcnt,
1427 unsigned int log_unit )
1428{
1429 cmdlist_t *c;
1430 int complete;
1431 unsigned long temp;
1432 unsigned long i;
1433 ctlr_info_t *info_p = hba[ctlr];
1434
1435 c = cmd_alloc(info_p, 1);
1436 if(!c)
1437 return IO_ERROR;
1438 c->ctlr = ctlr;
1439 c->hdr.unit = log_unit;
1440 c->hdr.prio = 0;
1441 c->hdr.size = sizeof(rblk_t) >> 2;
1442 c->size += sizeof(rblk_t);
1443
1444 /* The request information. */
1445 c->req.hdr.next = 0;
1446 c->req.hdr.rcode = 0;
1447 c->req.bp = 0;
1448 c->req.hdr.sg_cnt = 1;
1449 c->req.hdr.reserved = 0;
1450
1451 if (size == 0)
1452 c->req.sg[0].size = 512;
1453 else
1454 c->req.sg[0].size = size;
1455
1456 c->req.hdr.blk = blk;
1457 c->req.hdr.blk_cnt = blkcnt;
1458 c->req.hdr.cmd = (unsigned char) cmd;
1459 c->req.sg[0].addr = (__u32) pci_map_single(info_p->pci_dev,
1460 buff, c->req.sg[0].size, PCI_DMA_BIDIRECTIONAL);
1461 /*
1462 * Disable interrupt
1463 */
1464 info_p->access.set_intr_mask(info_p, 0);
1465 /* Make sure there is room in the command FIFO */
1466 /* Actually it should be completely empty at this time. */
1467 for (i = 200000; i > 0; i--) {
1468 temp = info_p->access.fifo_full(info_p);
1469 if (temp != 0) {
1470 break;
1471 }
1472 udelay(10);
1473DBG(
1474 printk(KERN_WARNING "cpqarray ida%d: idaSendPciCmd FIFO full,"
1475 " waiting!\n", ctlr);
1476);
1477 }
1478 /*
1479 * Send the cmd
1480 */
1481 info_p->access.submit_command(info_p, c);
1482 complete = pollcomplete(ctlr);
1483
1484 pci_unmap_single(info_p->pci_dev, (dma_addr_t) c->req.sg[0].addr,
1485 c->req.sg[0].size, PCI_DMA_BIDIRECTIONAL);
1486 if (complete != 1) {
1487 if (complete != c->busaddr) {
1488 printk( KERN_WARNING
1489 "cpqarray ida%d: idaSendPciCmd "
1490 "Invalid command list address returned! (%08lx)\n",
1491 ctlr, (unsigned long)complete);
1492 cmd_free(info_p, c, 1);
1493 return (IO_ERROR);
1494 }
1495 } else {
1496 printk( KERN_WARNING
1497 "cpqarray ida%d: idaSendPciCmd Timeout out, "
1498 "No command list address returned!\n",
1499 ctlr);
1500 cmd_free(info_p, c, 1);
1501 return (IO_ERROR);
1502 }
1503
1504 if (c->req.hdr.rcode & 0x00FE) {
1505 if (!(c->req.hdr.rcode & BIG_PROBLEM)) {
1506 printk( KERN_WARNING
1507 "cpqarray ida%d: idaSendPciCmd, error: "
1508 "Controller failed at init time "
1509 "cmd: 0x%x, return code = 0x%x\n",
1510 ctlr, c->req.hdr.cmd, c->req.hdr.rcode);
1511
1512 cmd_free(info_p, c, 1);
1513 return (IO_ERROR);
1514 }
1515 }
1516 cmd_free(info_p, c, 1);
1517 return (IO_OK);
1518}
1519
1520/*
1521 * revalidate_allvol is for online array config utilities. After a
1522 * utility reconfigures the drives in the array, it can use this function
1523 * (through an ioctl) to make the driver zap any previous disk structs for
1524 * that controller and get new ones.
1525 *
1526 * Right now I'm using the getgeometry() function to do this, but this
1527 * function should probably be finer grained and allow you to revalidate one
1528 * particualar logical volume (instead of all of them on a particular
1529 * controller).
1530 */
1531static int revalidate_allvol(ctlr_info_t *host)
1532{
1533 int ctlr = host->ctlr;
1534 int i;
1535 unsigned long flags;
1536
1537 spin_lock_irqsave(IDA_LOCK(ctlr), flags);
1538 if (host->usage_count > 1) {
1539 spin_unlock_irqrestore(IDA_LOCK(ctlr), flags);
1540 printk(KERN_WARNING "cpqarray: Device busy for volume"
1541 " revalidation (usage=%d)\n", host->usage_count);
1542 return -EBUSY;
1543 }
1544 host->usage_count++;
1545 spin_unlock_irqrestore(IDA_LOCK(ctlr), flags);
1546
1547 /*
1548 * Set the partition and block size structures for all volumes
1549 * on this controller to zero. We will reread all of this data
1550 */
1551 set_capacity(ida_gendisk[ctlr][0], 0);
1552 for (i = 1; i < NWD; i++) {
1553 struct gendisk *disk = ida_gendisk[ctlr][i];
1554 if (disk->flags & GENHD_FL_UP)
1555 del_gendisk(disk);
1556 }
1557 memset(host->drv, 0, sizeof(drv_info_t)*NWD);
1558
1559 /*
1560 * Tell the array controller not to give us any interrupts while
1561 * we check the new geometry. Then turn interrupts back on when
1562 * we're done.
1563 */
1564 host->access.set_intr_mask(host, 0);
1565 getgeometry(ctlr);
1566 host->access.set_intr_mask(host, FIFO_NOT_EMPTY);
1567
1568 for(i=0; i<NWD; i++) {
1569 struct gendisk *disk = ida_gendisk[ctlr][i];
1570 drv_info_t *drv = &host->drv[i];
1571 if (i && !drv->nr_blks)
1572 continue;
Martin K. Petersene1defc42009-05-22 17:17:49 -04001573 blk_queue_logical_block_size(host->queue, drv->blk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 set_capacity(disk, drv->nr_blks);
1575 disk->queue = host->queue;
1576 disk->private_data = drv;
1577 if (i)
1578 add_disk(disk);
1579 }
1580
1581 host->usage_count--;
1582 return 0;
1583}
1584
1585static int ida_revalidate(struct gendisk *disk)
1586{
1587 drv_info_t *drv = disk->private_data;
1588 set_capacity(disk, drv->nr_blks);
1589 return 0;
1590}
1591
1592/********************************************************************
1593 name: pollcomplete
1594 Wait polling for a command to complete.
1595 The memory mapped FIFO is polled for the completion.
1596 Used only at init time, interrupts disabled.
1597 ********************************************************************/
1598static int pollcomplete(int ctlr)
1599{
1600 int done;
1601 int i;
1602
1603 /* Wait (up to 2 seconds) for a command to complete */
1604
1605 for (i = 200000; i > 0; i--) {
1606 done = hba[ctlr]->access.command_completed(hba[ctlr]);
1607 if (done == 0) {
1608 udelay(10); /* a short fixed delay */
1609 } else
1610 return (done);
1611 }
1612 /* Invalid address to tell caller we ran out of time */
1613 return 1;
1614}
1615/*****************************************************************
1616 start_fwbk
1617 Starts controller firmwares background processing.
1618 Currently only the Integrated Raid controller needs this done.
1619 If the PCI mem address registers are written to after this,
1620 data corruption may occur
1621*****************************************************************/
1622static void start_fwbk(int ctlr)
1623{
1624 id_ctlr_t *id_ctlr_buf;
1625 int ret_code;
1626
1627 if( (hba[ctlr]->board_id != 0x40400E11)
1628 && (hba[ctlr]->board_id != 0x40480E11) )
1629
1630 /* Not a Integrated Raid, so there is nothing for us to do */
1631 return;
1632 printk(KERN_DEBUG "cpqarray: Starting firmware's background"
1633 " processing\n");
1634 /* Command does not return anything, but idasend command needs a
1635 buffer */
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001636 id_ctlr_buf = kmalloc(sizeof(id_ctlr_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if(id_ctlr_buf==NULL)
1638 {
1639 printk(KERN_WARNING "cpqarray: Out of memory. "
1640 "Unable to start background processing.\n");
1641 return;
1642 }
1643 ret_code = sendcmd(RESUME_BACKGROUND_ACTIVITY, ctlr,
1644 id_ctlr_buf, 0, 0, 0, 0);
1645 if(ret_code != IO_OK)
1646 printk(KERN_WARNING "cpqarray: Unable to start"
1647 " background processing\n");
1648
1649 kfree(id_ctlr_buf);
1650}
1651/*****************************************************************
1652 getgeometry
1653 Get ida logical volume geometry from the controller
1654 This is a large bit of code which once existed in two flavors,
1655 It is used only at init time.
1656*****************************************************************/
1657static void getgeometry(int ctlr)
1658{
1659 id_log_drv_t *id_ldrive;
1660 id_ctlr_t *id_ctlr_buf;
1661 sense_log_drv_stat_t *id_lstatus_buf;
1662 config_t *sense_config_buf;
1663 unsigned int log_unit, log_index;
1664 int ret_code, size;
1665 drv_info_t *drv;
1666 ctlr_info_t *info_p = hba[ctlr];
1667 int i;
1668
1669 info_p->log_drv_map = 0;
1670
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001671 id_ldrive = kzalloc(sizeof(id_log_drv_t), GFP_KERNEL);
1672 if (!id_ldrive) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 printk( KERN_ERR "cpqarray: out of memory.\n");
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001674 goto err_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001677 id_ctlr_buf = kzalloc(sizeof(id_ctlr_t), GFP_KERNEL);
1678 if (!id_ctlr_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 printk( KERN_ERR "cpqarray: out of memory.\n");
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001680 goto err_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001683 id_lstatus_buf = kzalloc(sizeof(sense_log_drv_stat_t), GFP_KERNEL);
1684 if (!id_lstatus_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 printk( KERN_ERR "cpqarray: out of memory.\n");
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001686 goto err_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001689 sense_config_buf = kzalloc(sizeof(config_t), GFP_KERNEL);
1690 if (!sense_config_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 printk( KERN_ERR "cpqarray: out of memory.\n");
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001692 goto err_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 info_p->phys_drives = 0;
1696 info_p->log_drv_map = 0;
1697 info_p->drv_assign_map = 0;
1698 info_p->drv_spare_map = 0;
1699 info_p->mp_failed_drv_map = 0; /* only initialized here */
1700 /* Get controllers info for this logical drive */
1701 ret_code = sendcmd(ID_CTLR, ctlr, id_ctlr_buf, 0, 0, 0, 0);
1702 if (ret_code == IO_ERROR) {
1703 /*
1704 * If can't get controller info, set the logical drive map to 0,
1705 * so the idastubopen will fail on all logical drives
1706 * on the controller.
1707 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 printk(KERN_ERR "cpqarray: error sending ID controller\n");
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001709 goto err_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711
1712 info_p->log_drives = id_ctlr_buf->nr_drvs;
1713 for(i=0;i<4;i++)
1714 info_p->firm_rev[i] = id_ctlr_buf->firm_rev[i];
1715 info_p->ctlr_sig = id_ctlr_buf->cfg_sig;
1716
1717 printk(" (%s)\n", info_p->product_name);
1718 /*
1719 * Initialize logical drive map to zero
1720 */
1721 log_index = 0;
1722 /*
1723 * Get drive geometry for all logical drives
1724 */
1725 if (id_ctlr_buf->nr_drvs > 16)
1726 printk(KERN_WARNING "cpqarray ida%d: This driver supports "
1727 "16 logical drives per controller.\n. "
1728 " Additional drives will not be "
1729 "detected\n", ctlr);
1730
1731 for (log_unit = 0;
1732 (log_index < id_ctlr_buf->nr_drvs)
1733 && (log_unit < NWD);
1734 log_unit++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 size = sizeof(sense_log_drv_stat_t);
1736
1737 /*
1738 Send "Identify logical drive status" cmd
1739 */
1740 ret_code = sendcmd(SENSE_LOG_DRV_STAT,
1741 ctlr, id_lstatus_buf, size, 0, 0, log_unit);
1742 if (ret_code == IO_ERROR) {
1743 /*
1744 If can't get logical drive status, set
1745 the logical drive map to 0, so the
1746 idastubopen will fail for all logical drives
1747 on the controller.
1748 */
1749 info_p->log_drv_map = 0;
1750 printk( KERN_WARNING
1751 "cpqarray ida%d: idaGetGeometry - Controller"
1752 " failed to report status of logical drive %d\n"
1753 "Access to this controller has been disabled\n",
1754 ctlr, log_unit);
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001755 goto err_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757 /*
1758 Make sure the logical drive is configured
1759 */
1760 if (id_lstatus_buf->status != LOG_NOT_CONF) {
1761 ret_code = sendcmd(ID_LOG_DRV, ctlr, id_ldrive,
1762 sizeof(id_log_drv_t), 0, 0, log_unit);
1763 /*
1764 If error, the bit for this
1765 logical drive won't be set and
1766 idastubopen will return error.
1767 */
1768 if (ret_code != IO_ERROR) {
1769 drv = &info_p->drv[log_unit];
1770 drv->blk_size = id_ldrive->blk_size;
1771 drv->nr_blks = id_ldrive->nr_blks;
1772 drv->cylinders = id_ldrive->drv.cyl;
1773 drv->heads = id_ldrive->drv.heads;
1774 drv->sectors = id_ldrive->drv.sect_per_track;
1775 info_p->log_drv_map |= (1 << log_unit);
1776
1777 printk(KERN_INFO "cpqarray ida/c%dd%d: blksz=%d nr_blks=%d\n",
1778 ctlr, log_unit, drv->blk_size, drv->nr_blks);
1779 ret_code = sendcmd(SENSE_CONFIG,
1780 ctlr, sense_config_buf,
1781 sizeof(config_t), 0, 0, log_unit);
1782 if (ret_code == IO_ERROR) {
1783 info_p->log_drv_map = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 printk(KERN_ERR "cpqarray: error sending sense config\n");
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001785 goto err_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 info_p->phys_drives =
1789 sense_config_buf->ctlr_phys_drv;
1790 info_p->drv_assign_map
1791 |= sense_config_buf->drv_asgn_map;
1792 info_p->drv_assign_map
1793 |= sense_config_buf->spare_asgn_map;
1794 info_p->drv_spare_map
1795 |= sense_config_buf->spare_asgn_map;
1796 } /* end of if no error on id_ldrive */
1797 log_index = log_index + 1;
1798 } /* end of if logical drive configured */
1799 } /* end of for log_unit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Mariusz Kozlowski2e4934a2007-08-11 22:34:30 +02001801 /* Free all the buffers and return */
1802err_4:
1803 kfree(sense_config_buf);
1804err_3:
1805 kfree(id_lstatus_buf);
1806err_2:
1807 kfree(id_ctlr_buf);
1808err_1:
1809 kfree(id_ldrive);
1810err_0:
1811 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
1814static void __exit cpqarray_exit(void)
1815{
1816 int i;
1817
1818 pci_unregister_driver(&cpqarray_pci_driver);
1819
1820 /* Double check that all controller entries have been removed */
1821 for(i=0; i<MAX_CTLR; i++) {
1822 if (hba[i] != NULL) {
1823 printk(KERN_WARNING "cpqarray: Removing EISA "
1824 "controller %d\n", i);
1825 cpqarray_remove_one_eisa(i);
1826 }
1827 }
1828
Alexey Dobriyan928b4d82008-04-29 01:01:44 -07001829 remove_proc_entry("driver/cpqarray", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
1832module_init(cpqarray_init)
1833module_exit(cpqarray_exit)