blob: 42295c49682fcc09a6f89cccf9137bc9863cf2aa [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
3 * Copyright 2000, 2009 Hewlett-Packard Development Company, L.P.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/interrupt.h>
24#include <linux/types.h>
25#include <linux/pci.h>
26#include <linux/kernel.h>
27#include <linux/slab.h>
28#include <linux/delay.h>
29#include <linux/fs.h>
30#include <linux/timer.h>
31#include <linux/seq_file.h>
32#include <linux/init.h>
33#include <linux/spinlock.h>
34#include <linux/smp_lock.h>
35#include <linux/compat.h>
36#include <linux/blktrace_api.h>
37#include <linux/uaccess.h>
38#include <linux/io.h>
39#include <linux/dma-mapping.h>
40#include <linux/completion.h>
41#include <linux/moduleparam.h>
42#include <scsi/scsi.h>
43#include <scsi/scsi_cmnd.h>
44#include <scsi/scsi_device.h>
45#include <scsi/scsi_host.h>
46#include <linux/cciss_ioctl.h>
47#include <linux/string.h>
48#include <linux/bitmap.h>
49#include <asm/atomic.h>
50#include <linux/kthread.h>
51#include "hpsa_cmd.h"
52#include "hpsa.h"
53
54/* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
55#define HPSA_DRIVER_VERSION "1.0.0"
56#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
57
58/* How long to wait (in milliseconds) for board to go into simple mode */
59#define MAX_CONFIG_WAIT 30000
60#define MAX_IOCTL_CONFIG_WAIT 1000
61
62/*define how many times we will try a command because of bus resets */
63#define MAX_CMD_RETRIES 3
64
65/* Embedded module documentation macros - see modules.h */
66MODULE_AUTHOR("Hewlett-Packard Company");
67MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
68 HPSA_DRIVER_VERSION);
69MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
70MODULE_VERSION(HPSA_DRIVER_VERSION);
71MODULE_LICENSE("GPL");
72
73static int hpsa_allow_any;
74module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
75MODULE_PARM_DESC(hpsa_allow_any,
76 "Allow hpsa driver to access unknown HP Smart Array hardware");
77
78/* define the PCI info for the cards we can control */
79static const struct pci_device_id hpsa_pci_device_id[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -080080 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241},
81 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243},
82 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245},
83 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247},
84 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249},
85 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324a},
86 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324b},
Mike Millerf8b01eb2010-02-04 08:42:45 -060087 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233},
88#define PCI_DEVICE_ID_HP_CISSF 0x333f
89 {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x333F},
Stephen M. Cameronedd16362009-12-08 14:09:11 -080090 {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
91 PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
92 {0,}
93};
94
95MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
96
97/* board_id = Subsystem Device ID & Vendor ID
98 * product = Marketing Name for the board
99 * access = Address of the struct of function pointers
100 */
101static struct board_type products[] = {
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800102 {0x3241103C, "Smart Array P212", &SA5_access},
103 {0x3243103C, "Smart Array P410", &SA5_access},
104 {0x3245103C, "Smart Array P410i", &SA5_access},
105 {0x3247103C, "Smart Array P411", &SA5_access},
106 {0x3249103C, "Smart Array P812", &SA5_access},
107 {0x324a103C, "Smart Array P712m", &SA5_access},
108 {0x324b103C, "Smart Array P711m", &SA5_access},
Mike Millerf8b01eb2010-02-04 08:42:45 -0600109 {0x3233103C, "StorageWorks P1210m", &SA5_access},
110 {0x333F103C, "StorageWorks P1210m", &SA5_access},
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800111 {0xFFFF103C, "Unknown Smart Array", &SA5_access},
112};
113
114static int number_of_controllers;
115
116static irqreturn_t do_hpsa_intr(int irq, void *dev_id);
117static int hpsa_ioctl(struct scsi_device *dev, int cmd, void *arg);
118static void start_io(struct ctlr_info *h);
119
120#ifdef CONFIG_COMPAT
121static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void *arg);
122#endif
123
124static void cmd_free(struct ctlr_info *h, struct CommandList *c);
125static void cmd_special_free(struct ctlr_info *h, struct CommandList *c);
126static struct CommandList *cmd_alloc(struct ctlr_info *h);
127static struct CommandList *cmd_special_alloc(struct ctlr_info *h);
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600128static void fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
129 void *buff, size_t size, u8 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800130 int cmd_type);
131
132static int hpsa_scsi_queue_command(struct scsi_cmnd *cmd,
133 void (*done)(struct scsi_cmnd *));
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600134static void hpsa_scan_start(struct Scsi_Host *);
135static int hpsa_scan_finished(struct Scsi_Host *sh,
136 unsigned long elapsed_time);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800137
138static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
139static int hpsa_slave_alloc(struct scsi_device *sdev);
140static void hpsa_slave_destroy(struct scsi_device *sdev);
141
142static ssize_t raid_level_show(struct device *dev,
143 struct device_attribute *attr, char *buf);
144static ssize_t lunid_show(struct device *dev,
145 struct device_attribute *attr, char *buf);
146static ssize_t unique_id_show(struct device *dev,
147 struct device_attribute *attr, char *buf);
148static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
149static ssize_t host_store_rescan(struct device *dev,
150 struct device_attribute *attr, const char *buf, size_t count);
151static int check_for_unit_attention(struct ctlr_info *h,
152 struct CommandList *c);
153static void check_ioctl_unit_attention(struct ctlr_info *h,
154 struct CommandList *c);
Don Brace303932f2010-02-04 08:42:40 -0600155/* performant mode helper functions */
156static void calc_bucket_map(int *bucket, int num_buckets,
157 int nsgs, int *bucket_map);
158static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
159static inline u32 next_command(struct ctlr_info *h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800160
161static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
162static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
163static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
164static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
165
166static struct device_attribute *hpsa_sdev_attrs[] = {
167 &dev_attr_raid_level,
168 &dev_attr_lunid,
169 &dev_attr_unique_id,
170 NULL,
171};
172
173static struct device_attribute *hpsa_shost_attrs[] = {
174 &dev_attr_rescan,
175 NULL,
176};
177
178static struct scsi_host_template hpsa_driver_template = {
179 .module = THIS_MODULE,
180 .name = "hpsa",
181 .proc_name = "hpsa",
182 .queuecommand = hpsa_scsi_queue_command,
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600183 .scan_start = hpsa_scan_start,
184 .scan_finished = hpsa_scan_finished,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800185 .this_id = -1,
186 .sg_tablesize = MAXSGENTRIES,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800187 .use_clustering = ENABLE_CLUSTERING,
188 .eh_device_reset_handler = hpsa_eh_device_reset_handler,
189 .ioctl = hpsa_ioctl,
190 .slave_alloc = hpsa_slave_alloc,
191 .slave_destroy = hpsa_slave_destroy,
192#ifdef CONFIG_COMPAT
193 .compat_ioctl = hpsa_compat_ioctl,
194#endif
195 .sdev_attrs = hpsa_sdev_attrs,
196 .shost_attrs = hpsa_shost_attrs,
197};
198
199static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
200{
201 unsigned long *priv = shost_priv(sdev->host);
202 return (struct ctlr_info *) *priv;
203}
204
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600205static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
206{
207 unsigned long *priv = shost_priv(sh);
208 return (struct ctlr_info *) *priv;
209}
210
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800211static struct task_struct *hpsa_scan_thread;
212static DEFINE_MUTEX(hpsa_scan_mutex);
213static LIST_HEAD(hpsa_scan_q);
214static int hpsa_scan_func(void *data);
215
216/**
217 * add_to_scan_list() - add controller to rescan queue
218 * @h: Pointer to the controller.
219 *
220 * Adds the controller to the rescan queue if not already on the queue.
221 *
222 * returns 1 if added to the queue, 0 if skipped (could be on the
223 * queue already, or the controller could be initializing or shutting
224 * down).
225 **/
226static int add_to_scan_list(struct ctlr_info *h)
227{
228 struct ctlr_info *test_h;
229 int found = 0;
230 int ret = 0;
231
232 if (h->busy_initializing)
233 return 0;
234
235 /*
236 * If we don't get the lock, it means the driver is unloading
237 * and there's no point in scheduling a new scan.
238 */
239 if (!mutex_trylock(&h->busy_shutting_down))
240 return 0;
241
242 mutex_lock(&hpsa_scan_mutex);
243 list_for_each_entry(test_h, &hpsa_scan_q, scan_list) {
244 if (test_h == h) {
245 found = 1;
246 break;
247 }
248 }
249 if (!found && !h->busy_scanning) {
250 INIT_COMPLETION(h->scan_wait);
251 list_add_tail(&h->scan_list, &hpsa_scan_q);
252 ret = 1;
253 }
254 mutex_unlock(&hpsa_scan_mutex);
255 mutex_unlock(&h->busy_shutting_down);
256
257 return ret;
258}
259
260/**
261 * remove_from_scan_list() - remove controller from rescan queue
262 * @h: Pointer to the controller.
263 *
264 * Removes the controller from the rescan queue if present. Blocks if
265 * the controller is currently conducting a rescan. The controller
266 * can be in one of three states:
267 * 1. Doesn't need a scan
268 * 2. On the scan list, but not scanning yet (we remove it)
269 * 3. Busy scanning (and not on the list). In this case we want to wait for
270 * the scan to complete to make sure the scanning thread for this
271 * controller is completely idle.
272 **/
273static void remove_from_scan_list(struct ctlr_info *h)
274{
275 struct ctlr_info *test_h, *tmp_h;
276
277 mutex_lock(&hpsa_scan_mutex);
278 list_for_each_entry_safe(test_h, tmp_h, &hpsa_scan_q, scan_list) {
279 if (test_h == h) { /* state 2. */
280 list_del(&h->scan_list);
281 complete_all(&h->scan_wait);
282 mutex_unlock(&hpsa_scan_mutex);
283 return;
284 }
285 }
286 if (h->busy_scanning) { /* state 3. */
287 mutex_unlock(&hpsa_scan_mutex);
288 wait_for_completion(&h->scan_wait);
289 } else { /* state 1, nothing to do. */
290 mutex_unlock(&hpsa_scan_mutex);
291 }
292}
293
294/* hpsa_scan_func() - kernel thread used to rescan controllers
295 * @data: Ignored.
296 *
297 * A kernel thread used scan for drive topology changes on
298 * controllers. The thread processes only one controller at a time
299 * using a queue. Controllers are added to the queue using
300 * add_to_scan_list() and removed from the queue either after done
301 * processing or using remove_from_scan_list().
302 *
303 * returns 0.
304 **/
305static int hpsa_scan_func(__attribute__((unused)) void *data)
306{
307 struct ctlr_info *h;
308 int host_no;
309
310 while (1) {
311 set_current_state(TASK_INTERRUPTIBLE);
312 schedule();
313 if (kthread_should_stop())
314 break;
315
316 while (1) {
317 mutex_lock(&hpsa_scan_mutex);
318 if (list_empty(&hpsa_scan_q)) {
319 mutex_unlock(&hpsa_scan_mutex);
320 break;
321 }
322 h = list_entry(hpsa_scan_q.next, struct ctlr_info,
323 scan_list);
324 list_del(&h->scan_list);
325 h->busy_scanning = 1;
326 mutex_unlock(&hpsa_scan_mutex);
327 host_no = h->scsi_host ? h->scsi_host->host_no : -1;
Stephen M. Camerona08a8472010-02-04 08:43:16 -0600328 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800329 complete_all(&h->scan_wait);
330 mutex_lock(&hpsa_scan_mutex);
331 h->busy_scanning = 0;
332 mutex_unlock(&hpsa_scan_mutex);
333 }
334 }
335 return 0;
336}
337
338static int check_for_unit_attention(struct ctlr_info *h,
339 struct CommandList *c)
340{
341 if (c->err_info->SenseInfo[2] != UNIT_ATTENTION)
342 return 0;
343
344 switch (c->err_info->SenseInfo[12]) {
345 case STATE_CHANGED:
346 dev_warn(&h->pdev->dev, "hpsa%d: a state change "
347 "detected, command retried\n", h->ctlr);
348 break;
349 case LUN_FAILED:
350 dev_warn(&h->pdev->dev, "hpsa%d: LUN failure "
351 "detected, action required\n", h->ctlr);
352 break;
353 case REPORT_LUNS_CHANGED:
354 dev_warn(&h->pdev->dev, "hpsa%d: report LUN data "
355 "changed\n", h->ctlr);
356 /*
357 * Here, we could call add_to_scan_list and wake up the scan thread,
358 * except that it's quite likely that we will get more than one
359 * REPORT_LUNS_CHANGED condition in quick succession, which means
360 * that those which occur after the first one will likely happen
361 * *during* the hpsa_scan_thread's rescan. And the rescan code is not
362 * robust enough to restart in the middle, undoing what it has already
363 * done, and it's not clear that it's even possible to do this, since
364 * part of what it does is notify the SCSI mid layer, which starts
365 * doing it's own i/o to read partition tables and so on, and the
366 * driver doesn't have visibility to know what might need undoing.
367 * In any event, if possible, it is horribly complicated to get right
368 * so we just don't do it for now.
369 *
370 * Note: this REPORT_LUNS_CHANGED condition only occurs on the MSA2012.
371 */
372 break;
373 case POWER_OR_RESET:
374 dev_warn(&h->pdev->dev, "hpsa%d: a power on "
375 "or device reset detected\n", h->ctlr);
376 break;
377 case UNIT_ATTENTION_CLEARED:
378 dev_warn(&h->pdev->dev, "hpsa%d: unit attention "
379 "cleared by another initiator\n", h->ctlr);
380 break;
381 default:
382 dev_warn(&h->pdev->dev, "hpsa%d: unknown "
383 "unit attention detected\n", h->ctlr);
384 break;
385 }
386 return 1;
387}
388
389static ssize_t host_store_rescan(struct device *dev,
390 struct device_attribute *attr,
391 const char *buf, size_t count)
392{
393 struct ctlr_info *h;
394 struct Scsi_Host *shost = class_to_shost(dev);
Stephen M. Camerona23513e2010-02-04 08:43:11 -0600395 h = shost_to_hba(shost);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800396 if (add_to_scan_list(h)) {
397 wake_up_process(hpsa_scan_thread);
398 wait_for_completion_interruptible(&h->scan_wait);
399 }
400 return count;
401}
402
403/* Enqueuing and dequeuing functions for cmdlists. */
404static inline void addQ(struct hlist_head *list, struct CommandList *c)
405{
406 hlist_add_head(&c->list, list);
407}
408
Don Brace303932f2010-02-04 08:42:40 -0600409static inline u32 next_command(struct ctlr_info *h)
410{
411 u32 a;
412
413 if (unlikely(h->transMethod != CFGTBL_Trans_Performant))
414 return h->access.command_completed(h);
415
416 if ((*(h->reply_pool_head) & 1) == (h->reply_pool_wraparound)) {
417 a = *(h->reply_pool_head); /* Next cmd in ring buffer */
418 (h->reply_pool_head)++;
419 h->commands_outstanding--;
420 } else {
421 a = FIFO_EMPTY;
422 }
423 /* Check for wraparound */
424 if (h->reply_pool_head == (h->reply_pool + h->max_commands)) {
425 h->reply_pool_head = h->reply_pool;
426 h->reply_pool_wraparound ^= 1;
427 }
428 return a;
429}
430
431/* set_performant_mode: Modify the tag for cciss performant
432 * set bit 0 for pull model, bits 3-1 for block fetch
433 * register number
434 */
435static void set_performant_mode(struct ctlr_info *h, struct CommandList *c)
436{
437 if (likely(h->transMethod == CFGTBL_Trans_Performant))
438 c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
439}
440
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800441static void enqueue_cmd_and_start_io(struct ctlr_info *h,
442 struct CommandList *c)
443{
444 unsigned long flags;
Don Brace303932f2010-02-04 08:42:40 -0600445
446 set_performant_mode(h, c);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800447 spin_lock_irqsave(&h->lock, flags);
448 addQ(&h->reqQ, c);
449 h->Qdepth++;
450 start_io(h);
451 spin_unlock_irqrestore(&h->lock, flags);
452}
453
454static inline void removeQ(struct CommandList *c)
455{
456 if (WARN_ON(hlist_unhashed(&c->list)))
457 return;
458 hlist_del_init(&c->list);
459}
460
461static inline int is_hba_lunid(unsigned char scsi3addr[])
462{
463 return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
464}
465
466static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
467{
468 return (scsi3addr[3] & 0xC0) == 0x40;
469}
470
Stephen M. Cameron339b2b12010-02-04 08:42:50 -0600471static inline int is_scsi_rev_5(struct ctlr_info *h)
472{
473 if (!h->hba_inquiry_data)
474 return 0;
475 if ((h->hba_inquiry_data[2] & 0x07) == 5)
476 return 1;
477 return 0;
478}
479
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800480static const char *raid_label[] = { "0", "4", "1(1+0)", "5", "5+1", "ADG",
481 "UNKNOWN"
482};
483#define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
484
485static ssize_t raid_level_show(struct device *dev,
486 struct device_attribute *attr, char *buf)
487{
488 ssize_t l = 0;
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600489 unsigned char rlevel;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800490 struct ctlr_info *h;
491 struct scsi_device *sdev;
492 struct hpsa_scsi_dev_t *hdev;
493 unsigned long flags;
494
495 sdev = to_scsi_device(dev);
496 h = sdev_to_hba(sdev);
497 spin_lock_irqsave(&h->lock, flags);
498 hdev = sdev->hostdata;
499 if (!hdev) {
500 spin_unlock_irqrestore(&h->lock, flags);
501 return -ENODEV;
502 }
503
504 /* Is this even a logical drive? */
505 if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
506 spin_unlock_irqrestore(&h->lock, flags);
507 l = snprintf(buf, PAGE_SIZE, "N/A\n");
508 return l;
509 }
510
511 rlevel = hdev->raid_level;
512 spin_unlock_irqrestore(&h->lock, flags);
Stephen M. Cameron82a72c02010-02-04 08:41:38 -0600513 if (rlevel > RAID_UNKNOWN)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800514 rlevel = RAID_UNKNOWN;
515 l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
516 return l;
517}
518
519static ssize_t lunid_show(struct device *dev,
520 struct device_attribute *attr, char *buf)
521{
522 struct ctlr_info *h;
523 struct scsi_device *sdev;
524 struct hpsa_scsi_dev_t *hdev;
525 unsigned long flags;
526 unsigned char lunid[8];
527
528 sdev = to_scsi_device(dev);
529 h = sdev_to_hba(sdev);
530 spin_lock_irqsave(&h->lock, flags);
531 hdev = sdev->hostdata;
532 if (!hdev) {
533 spin_unlock_irqrestore(&h->lock, flags);
534 return -ENODEV;
535 }
536 memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
537 spin_unlock_irqrestore(&h->lock, flags);
538 return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
539 lunid[0], lunid[1], lunid[2], lunid[3],
540 lunid[4], lunid[5], lunid[6], lunid[7]);
541}
542
543static ssize_t unique_id_show(struct device *dev,
544 struct device_attribute *attr, char *buf)
545{
546 struct ctlr_info *h;
547 struct scsi_device *sdev;
548 struct hpsa_scsi_dev_t *hdev;
549 unsigned long flags;
550 unsigned char sn[16];
551
552 sdev = to_scsi_device(dev);
553 h = sdev_to_hba(sdev);
554 spin_lock_irqsave(&h->lock, flags);
555 hdev = sdev->hostdata;
556 if (!hdev) {
557 spin_unlock_irqrestore(&h->lock, flags);
558 return -ENODEV;
559 }
560 memcpy(sn, hdev->device_id, sizeof(sn));
561 spin_unlock_irqrestore(&h->lock, flags);
562 return snprintf(buf, 16 * 2 + 2,
563 "%02X%02X%02X%02X%02X%02X%02X%02X"
564 "%02X%02X%02X%02X%02X%02X%02X%02X\n",
565 sn[0], sn[1], sn[2], sn[3],
566 sn[4], sn[5], sn[6], sn[7],
567 sn[8], sn[9], sn[10], sn[11],
568 sn[12], sn[13], sn[14], sn[15]);
569}
570
571static int hpsa_find_target_lun(struct ctlr_info *h,
572 unsigned char scsi3addr[], int bus, int *target, int *lun)
573{
574 /* finds an unused bus, target, lun for a new physical device
575 * assumes h->devlock is held
576 */
577 int i, found = 0;
578 DECLARE_BITMAP(lun_taken, HPSA_MAX_SCSI_DEVS_PER_HBA);
579
580 memset(&lun_taken[0], 0, HPSA_MAX_SCSI_DEVS_PER_HBA >> 3);
581
582 for (i = 0; i < h->ndevices; i++) {
583 if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
584 set_bit(h->dev[i]->target, lun_taken);
585 }
586
587 for (i = 0; i < HPSA_MAX_SCSI_DEVS_PER_HBA; i++) {
588 if (!test_bit(i, lun_taken)) {
589 /* *bus = 1; */
590 *target = i;
591 *lun = 0;
592 found = 1;
593 break;
594 }
595 }
596 return !found;
597}
598
599/* Add an entry into h->dev[] array. */
600static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
601 struct hpsa_scsi_dev_t *device,
602 struct hpsa_scsi_dev_t *added[], int *nadded)
603{
604 /* assumes h->devlock is held */
605 int n = h->ndevices;
606 int i;
607 unsigned char addr1[8], addr2[8];
608 struct hpsa_scsi_dev_t *sd;
609
610 if (n >= HPSA_MAX_SCSI_DEVS_PER_HBA) {
611 dev_err(&h->pdev->dev, "too many devices, some will be "
612 "inaccessible.\n");
613 return -1;
614 }
615
616 /* physical devices do not have lun or target assigned until now. */
617 if (device->lun != -1)
618 /* Logical device, lun is already assigned. */
619 goto lun_assigned;
620
621 /* If this device a non-zero lun of a multi-lun device
622 * byte 4 of the 8-byte LUN addr will contain the logical
623 * unit no, zero otherise.
624 */
625 if (device->scsi3addr[4] == 0) {
626 /* This is not a non-zero lun of a multi-lun device */
627 if (hpsa_find_target_lun(h, device->scsi3addr,
628 device->bus, &device->target, &device->lun) != 0)
629 return -1;
630 goto lun_assigned;
631 }
632
633 /* This is a non-zero lun of a multi-lun device.
634 * Search through our list and find the device which
635 * has the same 8 byte LUN address, excepting byte 4.
636 * Assign the same bus and target for this new LUN.
637 * Use the logical unit number from the firmware.
638 */
639 memcpy(addr1, device->scsi3addr, 8);
640 addr1[4] = 0;
641 for (i = 0; i < n; i++) {
642 sd = h->dev[i];
643 memcpy(addr2, sd->scsi3addr, 8);
644 addr2[4] = 0;
645 /* differ only in byte 4? */
646 if (memcmp(addr1, addr2, 8) == 0) {
647 device->bus = sd->bus;
648 device->target = sd->target;
649 device->lun = device->scsi3addr[4];
650 break;
651 }
652 }
653 if (device->lun == -1) {
654 dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
655 " suspect firmware bug or unsupported hardware "
656 "configuration.\n");
657 return -1;
658 }
659
660lun_assigned:
661
662 h->dev[n] = device;
663 h->ndevices++;
664 added[*nadded] = device;
665 (*nadded)++;
666
667 /* initially, (before registering with scsi layer) we don't
668 * know our hostno and we don't want to print anything first
669 * time anyway (the scsi layer's inquiries will show that info)
670 */
671 /* if (hostno != -1) */
672 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d added.\n",
673 scsi_device_type(device->devtype), hostno,
674 device->bus, device->target, device->lun);
675 return 0;
676}
677
678/* Remove an entry from h->dev[] array. */
679static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
680 struct hpsa_scsi_dev_t *removed[], int *nremoved)
681{
682 /* assumes h->devlock is held */
683 int i;
684 struct hpsa_scsi_dev_t *sd;
685
Stephen M. Cameronb2ed4f72010-02-04 08:41:44 -0600686 BUG_ON(entry < 0 || entry >= HPSA_MAX_SCSI_DEVS_PER_HBA);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800687
688 sd = h->dev[entry];
689 removed[*nremoved] = h->dev[entry];
690 (*nremoved)++;
691
692 for (i = entry; i < h->ndevices-1; i++)
693 h->dev[i] = h->dev[i+1];
694 h->ndevices--;
695 dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d removed.\n",
696 scsi_device_type(sd->devtype), hostno, sd->bus, sd->target,
697 sd->lun);
698}
699
700#define SCSI3ADDR_EQ(a, b) ( \
701 (a)[7] == (b)[7] && \
702 (a)[6] == (b)[6] && \
703 (a)[5] == (b)[5] && \
704 (a)[4] == (b)[4] && \
705 (a)[3] == (b)[3] && \
706 (a)[2] == (b)[2] && \
707 (a)[1] == (b)[1] && \
708 (a)[0] == (b)[0])
709
710static void fixup_botched_add(struct ctlr_info *h,
711 struct hpsa_scsi_dev_t *added)
712{
713 /* called when scsi_add_device fails in order to re-adjust
714 * h->dev[] to match the mid layer's view.
715 */
716 unsigned long flags;
717 int i, j;
718
719 spin_lock_irqsave(&h->lock, flags);
720 for (i = 0; i < h->ndevices; i++) {
721 if (h->dev[i] == added) {
722 for (j = i; j < h->ndevices-1; j++)
723 h->dev[j] = h->dev[j+1];
724 h->ndevices--;
725 break;
726 }
727 }
728 spin_unlock_irqrestore(&h->lock, flags);
729 kfree(added);
730}
731
732static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
733 struct hpsa_scsi_dev_t *dev2)
734{
735 if ((is_logical_dev_addr_mode(dev1->scsi3addr) ||
736 (dev1->lun != -1 && dev2->lun != -1)) &&
737 dev1->devtype != 0x0C)
738 return (memcmp(dev1, dev2, sizeof(*dev1)) == 0);
739
740 /* we compare everything except lun and target as these
741 * are not yet assigned. Compare parts likely
742 * to differ first
743 */
744 if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
745 sizeof(dev1->scsi3addr)) != 0)
746 return 0;
747 if (memcmp(dev1->device_id, dev2->device_id,
748 sizeof(dev1->device_id)) != 0)
749 return 0;
750 if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
751 return 0;
752 if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
753 return 0;
754 if (memcmp(dev1->revision, dev2->revision, sizeof(dev1->revision)) != 0)
755 return 0;
756 if (dev1->devtype != dev2->devtype)
757 return 0;
758 if (dev1->raid_level != dev2->raid_level)
759 return 0;
760 if (dev1->bus != dev2->bus)
761 return 0;
762 return 1;
763}
764
765/* Find needle in haystack. If exact match found, return DEVICE_SAME,
766 * and return needle location in *index. If scsi3addr matches, but not
767 * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
768 * location in *index. If needle not found, return DEVICE_NOT_FOUND.
769 */
770static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
771 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
772 int *index)
773{
774 int i;
775#define DEVICE_NOT_FOUND 0
776#define DEVICE_CHANGED 1
777#define DEVICE_SAME 2
778 for (i = 0; i < haystack_size; i++) {
779 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
780 *index = i;
781 if (device_is_the_same(needle, haystack[i]))
782 return DEVICE_SAME;
783 else
784 return DEVICE_CHANGED;
785 }
786 }
787 *index = -1;
788 return DEVICE_NOT_FOUND;
789}
790
Stephen M. Cameron4967bd32010-02-04 08:41:49 -0600791static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800792 struct hpsa_scsi_dev_t *sd[], int nsds)
793{
794 /* sd contains scsi3 addresses and devtypes, and inquiry
795 * data. This function takes what's in sd to be the current
796 * reality and updates h->dev[] to reflect that reality.
797 */
798 int i, entry, device_change, changes = 0;
799 struct hpsa_scsi_dev_t *csd;
800 unsigned long flags;
801 struct hpsa_scsi_dev_t **added, **removed;
802 int nadded, nremoved;
803 struct Scsi_Host *sh = NULL;
804
805 added = kzalloc(sizeof(*added) * HPSA_MAX_SCSI_DEVS_PER_HBA,
806 GFP_KERNEL);
807 removed = kzalloc(sizeof(*removed) * HPSA_MAX_SCSI_DEVS_PER_HBA,
808 GFP_KERNEL);
809
810 if (!added || !removed) {
811 dev_warn(&h->pdev->dev, "out of memory in "
812 "adjust_hpsa_scsi_table\n");
813 goto free_and_out;
814 }
815
816 spin_lock_irqsave(&h->devlock, flags);
817
818 /* find any devices in h->dev[] that are not in
819 * sd[] and remove them from h->dev[], and for any
820 * devices which have changed, remove the old device
821 * info and add the new device info.
822 */
823 i = 0;
824 nremoved = 0;
825 nadded = 0;
826 while (i < h->ndevices) {
827 csd = h->dev[i];
828 device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
829 if (device_change == DEVICE_NOT_FOUND) {
830 changes++;
831 hpsa_scsi_remove_entry(h, hostno, i,
832 removed, &nremoved);
833 continue; /* remove ^^^, hence i not incremented */
834 } else if (device_change == DEVICE_CHANGED) {
835 changes++;
836 hpsa_scsi_remove_entry(h, hostno, i,
837 removed, &nremoved);
838 (void) hpsa_scsi_add_entry(h, hostno, sd[entry],
839 added, &nadded);
840 /* add can't fail, we just removed one. */
Stephen M. Cameronc7f172d2010-02-04 08:43:31 -0600841
842 /* Set it to NULL to prevent it from being freed
843 * at the bottom of hpsa_update_scsi_devices()
844 */
845 sd[entry] = NULL;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800846 }
847 i++;
848 }
849
850 /* Now, make sure every device listed in sd[] is also
851 * listed in h->dev[], adding them if they aren't found
852 */
853
854 for (i = 0; i < nsds; i++) {
855 if (!sd[i]) /* if already added above. */
856 continue;
857 device_change = hpsa_scsi_find_entry(sd[i], h->dev,
858 h->ndevices, &entry);
859 if (device_change == DEVICE_NOT_FOUND) {
860 changes++;
861 if (hpsa_scsi_add_entry(h, hostno, sd[i],
862 added, &nadded) != 0)
863 break;
864 sd[i] = NULL; /* prevent from being freed later. */
865 } else if (device_change == DEVICE_CHANGED) {
866 /* should never happen... */
867 changes++;
868 dev_warn(&h->pdev->dev,
869 "device unexpectedly changed.\n");
870 /* but if it does happen, we just ignore that device */
871 }
872 }
873 spin_unlock_irqrestore(&h->devlock, flags);
874
875 /* Don't notify scsi mid layer of any changes the first time through
876 * (or if there are no changes) scsi_scan_host will do it later the
877 * first time through.
878 */
879 if (hostno == -1 || !changes)
880 goto free_and_out;
881
882 sh = h->scsi_host;
883 /* Notify scsi mid layer of any removed devices */
884 for (i = 0; i < nremoved; i++) {
885 struct scsi_device *sdev =
886 scsi_device_lookup(sh, removed[i]->bus,
887 removed[i]->target, removed[i]->lun);
888 if (sdev != NULL) {
889 scsi_remove_device(sdev);
890 scsi_device_put(sdev);
891 } else {
892 /* We don't expect to get here.
893 * future cmds to this device will get selection
894 * timeout as if the device was gone.
895 */
896 dev_warn(&h->pdev->dev, "didn't find c%db%dt%dl%d "
897 " for removal.", hostno, removed[i]->bus,
898 removed[i]->target, removed[i]->lun);
899 }
900 kfree(removed[i]);
901 removed[i] = NULL;
902 }
903
904 /* Notify scsi mid layer of any added devices */
905 for (i = 0; i < nadded; i++) {
906 if (scsi_add_device(sh, added[i]->bus,
907 added[i]->target, added[i]->lun) == 0)
908 continue;
909 dev_warn(&h->pdev->dev, "scsi_add_device c%db%dt%dl%d failed, "
910 "device not added.\n", hostno, added[i]->bus,
911 added[i]->target, added[i]->lun);
912 /* now we have to remove it from h->dev,
913 * since it didn't get added to scsi mid layer
914 */
915 fixup_botched_add(h, added[i]);
916 }
917
918free_and_out:
919 kfree(added);
920 kfree(removed);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800921}
922
923/*
924 * Lookup bus/target/lun and retrun corresponding struct hpsa_scsi_dev_t *
925 * Assume's h->devlock is held.
926 */
927static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
928 int bus, int target, int lun)
929{
930 int i;
931 struct hpsa_scsi_dev_t *sd;
932
933 for (i = 0; i < h->ndevices; i++) {
934 sd = h->dev[i];
935 if (sd->bus == bus && sd->target == target && sd->lun == lun)
936 return sd;
937 }
938 return NULL;
939}
940
941/* link sdev->hostdata to our per-device structure. */
942static int hpsa_slave_alloc(struct scsi_device *sdev)
943{
944 struct hpsa_scsi_dev_t *sd;
945 unsigned long flags;
946 struct ctlr_info *h;
947
948 h = sdev_to_hba(sdev);
949 spin_lock_irqsave(&h->devlock, flags);
950 sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
951 sdev_id(sdev), sdev->lun);
952 if (sd != NULL)
953 sdev->hostdata = sd;
954 spin_unlock_irqrestore(&h->devlock, flags);
955 return 0;
956}
957
958static void hpsa_slave_destroy(struct scsi_device *sdev)
959{
Stephen M. Cameronbcc44252010-02-04 08:41:54 -0600960 /* nothing to do. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800961}
962
963static void hpsa_scsi_setup(struct ctlr_info *h)
964{
965 h->ndevices = 0;
966 h->scsi_host = NULL;
967 spin_lock_init(&h->devlock);
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800968}
969
970static void complete_scsi_command(struct CommandList *cp,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600971 int timeout, u32 tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800972{
973 struct scsi_cmnd *cmd;
974 struct ctlr_info *h;
975 struct ErrorInfo *ei;
976
977 unsigned char sense_key;
978 unsigned char asc; /* additional sense code */
979 unsigned char ascq; /* additional sense code qualifier */
980
981 ei = cp->err_info;
982 cmd = (struct scsi_cmnd *) cp->scsi_cmd;
983 h = cp->h;
984
985 scsi_dma_unmap(cmd); /* undo the DMA mappings */
986
987 cmd->result = (DID_OK << 16); /* host byte */
988 cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */
989 cmd->result |= (ei->ScsiStatus << 1);
990
991 /* copy the sense data whether we need to or not. */
992 memcpy(cmd->sense_buffer, ei->SenseInfo,
993 ei->SenseLen > SCSI_SENSE_BUFFERSIZE ?
994 SCSI_SENSE_BUFFERSIZE :
995 ei->SenseLen);
996 scsi_set_resid(cmd, ei->ResidualCnt);
997
998 if (ei->CommandStatus == 0) {
999 cmd->scsi_done(cmd);
1000 cmd_free(h, cp);
1001 return;
1002 }
1003
1004 /* an error has occurred */
1005 switch (ei->CommandStatus) {
1006
1007 case CMD_TARGET_STATUS:
1008 if (ei->ScsiStatus) {
1009 /* Get sense key */
1010 sense_key = 0xf & ei->SenseInfo[2];
1011 /* Get additional sense code */
1012 asc = ei->SenseInfo[12];
1013 /* Get addition sense code qualifier */
1014 ascq = ei->SenseInfo[13];
1015 }
1016
1017 if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
1018 if (check_for_unit_attention(h, cp)) {
1019 cmd->result = DID_SOFT_ERROR << 16;
1020 break;
1021 }
1022 if (sense_key == ILLEGAL_REQUEST) {
1023 /*
1024 * SCSI REPORT_LUNS is commonly unsupported on
1025 * Smart Array. Suppress noisy complaint.
1026 */
1027 if (cp->Request.CDB[0] == REPORT_LUNS)
1028 break;
1029
1030 /* If ASC/ASCQ indicate Logical Unit
1031 * Not Supported condition,
1032 */
1033 if ((asc == 0x25) && (ascq == 0x0)) {
1034 dev_warn(&h->pdev->dev, "cp %p "
1035 "has check condition\n", cp);
1036 break;
1037 }
1038 }
1039
1040 if (sense_key == NOT_READY) {
1041 /* If Sense is Not Ready, Logical Unit
1042 * Not ready, Manual Intervention
1043 * required
1044 */
1045 if ((asc == 0x04) && (ascq == 0x03)) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001046 dev_warn(&h->pdev->dev, "cp %p "
1047 "has check condition: unit "
1048 "not ready, manual "
1049 "intervention required\n", cp);
1050 break;
1051 }
1052 }
Matt Gates1d3b3602010-02-04 08:43:00 -06001053 if (sense_key == ABORTED_COMMAND) {
1054 /* Aborted command is retryable */
1055 dev_warn(&h->pdev->dev, "cp %p "
1056 "has check condition: aborted command: "
1057 "ASC: 0x%x, ASCQ: 0x%x\n",
1058 cp, asc, ascq);
1059 cmd->result = DID_SOFT_ERROR << 16;
1060 break;
1061 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001062 /* Must be some other type of check condition */
1063 dev_warn(&h->pdev->dev, "cp %p has check condition: "
1064 "unknown type: "
1065 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
1066 "Returning result: 0x%x, "
1067 "cmd=[%02x %02x %02x %02x %02x "
Mike Miller807be732010-02-04 08:43:26 -06001068 "%02x %02x %02x %02x %02x %02x "
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001069 "%02x %02x %02x %02x %02x]\n",
1070 cp, sense_key, asc, ascq,
1071 cmd->result,
1072 cmd->cmnd[0], cmd->cmnd[1],
1073 cmd->cmnd[2], cmd->cmnd[3],
1074 cmd->cmnd[4], cmd->cmnd[5],
1075 cmd->cmnd[6], cmd->cmnd[7],
Mike Miller807be732010-02-04 08:43:26 -06001076 cmd->cmnd[8], cmd->cmnd[9],
1077 cmd->cmnd[10], cmd->cmnd[11],
1078 cmd->cmnd[12], cmd->cmnd[13],
1079 cmd->cmnd[14], cmd->cmnd[15]);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001080 break;
1081 }
1082
1083
1084 /* Problem was not a check condition
1085 * Pass it up to the upper layers...
1086 */
1087 if (ei->ScsiStatus) {
1088 dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
1089 "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
1090 "Returning result: 0x%x\n",
1091 cp, ei->ScsiStatus,
1092 sense_key, asc, ascq,
1093 cmd->result);
1094 } else { /* scsi status is zero??? How??? */
1095 dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
1096 "Returning no connection.\n", cp),
1097
1098 /* Ordinarily, this case should never happen,
1099 * but there is a bug in some released firmware
1100 * revisions that allows it to happen if, for
1101 * example, a 4100 backplane loses power and
1102 * the tape drive is in it. We assume that
1103 * it's a fatal error of some kind because we
1104 * can't show that it wasn't. We will make it
1105 * look like selection timeout since that is
1106 * the most common reason for this to occur,
1107 * and it's severe enough.
1108 */
1109
1110 cmd->result = DID_NO_CONNECT << 16;
1111 }
1112 break;
1113
1114 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
1115 break;
1116 case CMD_DATA_OVERRUN:
1117 dev_warn(&h->pdev->dev, "cp %p has"
1118 " completed with data overrun "
1119 "reported\n", cp);
1120 break;
1121 case CMD_INVALID: {
1122 /* print_bytes(cp, sizeof(*cp), 1, 0);
1123 print_cmd(cp); */
1124 /* We get CMD_INVALID if you address a non-existent device
1125 * instead of a selection timeout (no response). You will
1126 * see this if you yank out a drive, then try to access it.
1127 * This is kind of a shame because it means that any other
1128 * CMD_INVALID (e.g. driver bug) will get interpreted as a
1129 * missing target. */
1130 cmd->result = DID_NO_CONNECT << 16;
1131 }
1132 break;
1133 case CMD_PROTOCOL_ERR:
1134 dev_warn(&h->pdev->dev, "cp %p has "
1135 "protocol error \n", cp);
1136 break;
1137 case CMD_HARDWARE_ERR:
1138 cmd->result = DID_ERROR << 16;
1139 dev_warn(&h->pdev->dev, "cp %p had hardware error\n", cp);
1140 break;
1141 case CMD_CONNECTION_LOST:
1142 cmd->result = DID_ERROR << 16;
1143 dev_warn(&h->pdev->dev, "cp %p had connection lost\n", cp);
1144 break;
1145 case CMD_ABORTED:
1146 cmd->result = DID_ABORT << 16;
1147 dev_warn(&h->pdev->dev, "cp %p was aborted with status 0x%x\n",
1148 cp, ei->ScsiStatus);
1149 break;
1150 case CMD_ABORT_FAILED:
1151 cmd->result = DID_ERROR << 16;
1152 dev_warn(&h->pdev->dev, "cp %p reports abort failed\n", cp);
1153 break;
1154 case CMD_UNSOLICITED_ABORT:
Matt Gates5f0325a2010-02-04 08:42:55 -06001155 cmd->result = DID_RESET << 16;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001156 dev_warn(&h->pdev->dev, "cp %p aborted do to an unsolicited "
1157 "abort\n", cp);
1158 break;
1159 case CMD_TIMEOUT:
1160 cmd->result = DID_TIME_OUT << 16;
1161 dev_warn(&h->pdev->dev, "cp %p timedout\n", cp);
1162 break;
1163 default:
1164 cmd->result = DID_ERROR << 16;
1165 dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
1166 cp, ei->CommandStatus);
1167 }
1168 cmd->scsi_done(cmd);
1169 cmd_free(h, cp);
1170}
1171
1172static int hpsa_scsi_detect(struct ctlr_info *h)
1173{
1174 struct Scsi_Host *sh;
1175 int error;
1176
1177 sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
1178 if (sh == NULL)
1179 goto fail;
1180
1181 sh->io_port = 0;
1182 sh->n_io_port = 0;
1183 sh->this_id = -1;
1184 sh->max_channel = 3;
1185 sh->max_cmd_len = MAX_COMMAND_SIZE;
1186 sh->max_lun = HPSA_MAX_LUN;
1187 sh->max_id = HPSA_MAX_LUN;
Don Brace303932f2010-02-04 08:42:40 -06001188 sh->can_queue = h->nr_cmds;
1189 sh->cmd_per_lun = h->nr_cmds;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001190 h->scsi_host = sh;
1191 sh->hostdata[0] = (unsigned long) h;
Don Brace303932f2010-02-04 08:42:40 -06001192 sh->irq = h->intr[PERF_MODE_INT];
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001193 sh->unique_id = sh->irq;
1194 error = scsi_add_host(sh, &h->pdev->dev);
1195 if (error)
1196 goto fail_host_put;
1197 scsi_scan_host(sh);
1198 return 0;
1199
1200 fail_host_put:
1201 dev_err(&h->pdev->dev, "hpsa_scsi_detect: scsi_add_host"
1202 " failed for controller %d\n", h->ctlr);
1203 scsi_host_put(sh);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06001204 return error;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001205 fail:
1206 dev_err(&h->pdev->dev, "hpsa_scsi_detect: scsi_host_alloc"
1207 " failed for controller %d\n", h->ctlr);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06001208 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001209}
1210
1211static void hpsa_pci_unmap(struct pci_dev *pdev,
1212 struct CommandList *c, int sg_used, int data_direction)
1213{
1214 int i;
1215 union u64bit addr64;
1216
1217 for (i = 0; i < sg_used; i++) {
1218 addr64.val32.lower = c->SG[i].Addr.lower;
1219 addr64.val32.upper = c->SG[i].Addr.upper;
1220 pci_unmap_single(pdev, (dma_addr_t) addr64.val, c->SG[i].Len,
1221 data_direction);
1222 }
1223}
1224
1225static void hpsa_map_one(struct pci_dev *pdev,
1226 struct CommandList *cp,
1227 unsigned char *buf,
1228 size_t buflen,
1229 int data_direction)
1230{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001231 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001232
1233 if (buflen == 0 || data_direction == PCI_DMA_NONE) {
1234 cp->Header.SGList = 0;
1235 cp->Header.SGTotal = 0;
1236 return;
1237 }
1238
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001239 addr64 = (u64) pci_map_single(pdev, buf, buflen, data_direction);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001240 cp->SG[0].Addr.lower =
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001241 (u32) (addr64 & (u64) 0x00000000FFFFFFFF);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001242 cp->SG[0].Addr.upper =
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001243 (u32) ((addr64 >> 32) & (u64) 0x00000000FFFFFFFF);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001244 cp->SG[0].Len = buflen;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001245 cp->Header.SGList = (u8) 1; /* no. SGs contig in this cmd */
1246 cp->Header.SGTotal = (u16) 1; /* total sgs in this cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001247}
1248
1249static inline void hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
1250 struct CommandList *c)
1251{
1252 DECLARE_COMPLETION_ONSTACK(wait);
1253
1254 c->waiting = &wait;
1255 enqueue_cmd_and_start_io(h, c);
1256 wait_for_completion(&wait);
1257}
1258
1259static void hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
1260 struct CommandList *c, int data_direction)
1261{
1262 int retry_count = 0;
1263
1264 do {
1265 memset(c->err_info, 0, sizeof(c->err_info));
1266 hpsa_scsi_do_simple_cmd_core(h, c);
1267 retry_count++;
1268 } while (check_for_unit_attention(h, c) && retry_count <= 3);
1269 hpsa_pci_unmap(h->pdev, c, 1, data_direction);
1270}
1271
1272static void hpsa_scsi_interpret_error(struct CommandList *cp)
1273{
1274 struct ErrorInfo *ei;
1275 struct device *d = &cp->h->pdev->dev;
1276
1277 ei = cp->err_info;
1278 switch (ei->CommandStatus) {
1279 case CMD_TARGET_STATUS:
1280 dev_warn(d, "cmd %p has completed with errors\n", cp);
1281 dev_warn(d, "cmd %p has SCSI Status = %x\n", cp,
1282 ei->ScsiStatus);
1283 if (ei->ScsiStatus == 0)
1284 dev_warn(d, "SCSI status is abnormally zero. "
1285 "(probably indicates selection timeout "
1286 "reported incorrectly due to a known "
1287 "firmware bug, circa July, 2001.)\n");
1288 break;
1289 case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
1290 dev_info(d, "UNDERRUN\n");
1291 break;
1292 case CMD_DATA_OVERRUN:
1293 dev_warn(d, "cp %p has completed with data overrun\n", cp);
1294 break;
1295 case CMD_INVALID: {
1296 /* controller unfortunately reports SCSI passthru's
1297 * to non-existent targets as invalid commands.
1298 */
1299 dev_warn(d, "cp %p is reported invalid (probably means "
1300 "target device no longer present)\n", cp);
1301 /* print_bytes((unsigned char *) cp, sizeof(*cp), 1, 0);
1302 print_cmd(cp); */
1303 }
1304 break;
1305 case CMD_PROTOCOL_ERR:
1306 dev_warn(d, "cp %p has protocol error \n", cp);
1307 break;
1308 case CMD_HARDWARE_ERR:
1309 /* cmd->result = DID_ERROR << 16; */
1310 dev_warn(d, "cp %p had hardware error\n", cp);
1311 break;
1312 case CMD_CONNECTION_LOST:
1313 dev_warn(d, "cp %p had connection lost\n", cp);
1314 break;
1315 case CMD_ABORTED:
1316 dev_warn(d, "cp %p was aborted\n", cp);
1317 break;
1318 case CMD_ABORT_FAILED:
1319 dev_warn(d, "cp %p reports abort failed\n", cp);
1320 break;
1321 case CMD_UNSOLICITED_ABORT:
1322 dev_warn(d, "cp %p aborted due to an unsolicited abort\n", cp);
1323 break;
1324 case CMD_TIMEOUT:
1325 dev_warn(d, "cp %p timed out\n", cp);
1326 break;
1327 default:
1328 dev_warn(d, "cp %p returned unknown status %x\n", cp,
1329 ei->CommandStatus);
1330 }
1331}
1332
1333static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
1334 unsigned char page, unsigned char *buf,
1335 unsigned char bufsize)
1336{
1337 int rc = IO_OK;
1338 struct CommandList *c;
1339 struct ErrorInfo *ei;
1340
1341 c = cmd_special_alloc(h);
1342
1343 if (c == NULL) { /* trouble... */
1344 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06001345 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001346 }
1347
1348 fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize, page, scsi3addr, TYPE_CMD);
1349 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
1350 ei = c->err_info;
1351 if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
1352 hpsa_scsi_interpret_error(c);
1353 rc = -1;
1354 }
1355 cmd_special_free(h, c);
1356 return rc;
1357}
1358
1359static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr)
1360{
1361 int rc = IO_OK;
1362 struct CommandList *c;
1363 struct ErrorInfo *ei;
1364
1365 c = cmd_special_alloc(h);
1366
1367 if (c == NULL) { /* trouble... */
1368 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
1369 return -1;
1370 }
1371
1372 fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0, scsi3addr, TYPE_MSG);
1373 hpsa_scsi_do_simple_cmd_core(h, c);
1374 /* no unmap needed here because no data xfer. */
1375
1376 ei = c->err_info;
1377 if (ei->CommandStatus != 0) {
1378 hpsa_scsi_interpret_error(c);
1379 rc = -1;
1380 }
1381 cmd_special_free(h, c);
1382 return rc;
1383}
1384
1385static void hpsa_get_raid_level(struct ctlr_info *h,
1386 unsigned char *scsi3addr, unsigned char *raid_level)
1387{
1388 int rc;
1389 unsigned char *buf;
1390
1391 *raid_level = RAID_UNKNOWN;
1392 buf = kzalloc(64, GFP_KERNEL);
1393 if (!buf)
1394 return;
1395 rc = hpsa_scsi_do_inquiry(h, scsi3addr, 0xC1, buf, 64);
1396 if (rc == 0)
1397 *raid_level = buf[8];
1398 if (*raid_level > RAID_UNKNOWN)
1399 *raid_level = RAID_UNKNOWN;
1400 kfree(buf);
1401 return;
1402}
1403
1404/* Get the device id from inquiry page 0x83 */
1405static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
1406 unsigned char *device_id, int buflen)
1407{
1408 int rc;
1409 unsigned char *buf;
1410
1411 if (buflen > 16)
1412 buflen = 16;
1413 buf = kzalloc(64, GFP_KERNEL);
1414 if (!buf)
1415 return -1;
1416 rc = hpsa_scsi_do_inquiry(h, scsi3addr, 0x83, buf, 64);
1417 if (rc == 0)
1418 memcpy(device_id, &buf[8], buflen);
1419 kfree(buf);
1420 return rc != 0;
1421}
1422
1423static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
1424 struct ReportLUNdata *buf, int bufsize,
1425 int extended_response)
1426{
1427 int rc = IO_OK;
1428 struct CommandList *c;
1429 unsigned char scsi3addr[8];
1430 struct ErrorInfo *ei;
1431
1432 c = cmd_special_alloc(h);
1433 if (c == NULL) { /* trouble... */
1434 dev_err(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
1435 return -1;
1436 }
Stephen M. Camerone89c0ae2010-02-04 08:42:04 -06001437 /* address the controller */
1438 memset(scsi3addr, 0, sizeof(scsi3addr));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001439 fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
1440 buf, bufsize, 0, scsi3addr, TYPE_CMD);
1441 if (extended_response)
1442 c->Request.CDB[1] = extended_response;
1443 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE);
1444 ei = c->err_info;
1445 if (ei->CommandStatus != 0 &&
1446 ei->CommandStatus != CMD_DATA_UNDERRUN) {
1447 hpsa_scsi_interpret_error(c);
1448 rc = -1;
1449 }
1450 cmd_special_free(h, c);
1451 return rc;
1452}
1453
1454static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
1455 struct ReportLUNdata *buf,
1456 int bufsize, int extended_response)
1457{
1458 return hpsa_scsi_do_report_luns(h, 0, buf, bufsize, extended_response);
1459}
1460
1461static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
1462 struct ReportLUNdata *buf, int bufsize)
1463{
1464 return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
1465}
1466
1467static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
1468 int bus, int target, int lun)
1469{
1470 device->bus = bus;
1471 device->target = target;
1472 device->lun = lun;
1473}
1474
1475static int hpsa_update_device_info(struct ctlr_info *h,
1476 unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device)
1477{
1478#define OBDR_TAPE_INQ_SIZE 49
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06001479 unsigned char *inq_buff;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001480
Stephen M. Cameronea6d3bc2010-02-04 08:42:09 -06001481 inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001482 if (!inq_buff)
1483 goto bail_out;
1484
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001485 /* Do an inquiry to the device to see what it is. */
1486 if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
1487 (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
1488 /* Inquiry failed (msg printed already) */
1489 dev_err(&h->pdev->dev,
1490 "hpsa_update_device_info: inquiry failed\n");
1491 goto bail_out;
1492 }
1493
1494 /* As a side effect, record the firmware version number
1495 * if we happen to be talking to the RAID controller.
1496 */
1497 if (is_hba_lunid(scsi3addr))
1498 memcpy(h->firm_ver, &inq_buff[32], 4);
1499
1500 this_device->devtype = (inq_buff[0] & 0x1f);
1501 memcpy(this_device->scsi3addr, scsi3addr, 8);
1502 memcpy(this_device->vendor, &inq_buff[8],
1503 sizeof(this_device->vendor));
1504 memcpy(this_device->model, &inq_buff[16],
1505 sizeof(this_device->model));
1506 memcpy(this_device->revision, &inq_buff[32],
1507 sizeof(this_device->revision));
1508 memset(this_device->device_id, 0,
1509 sizeof(this_device->device_id));
1510 hpsa_get_device_id(h, scsi3addr, this_device->device_id,
1511 sizeof(this_device->device_id));
1512
1513 if (this_device->devtype == TYPE_DISK &&
1514 is_logical_dev_addr_mode(scsi3addr))
1515 hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
1516 else
1517 this_device->raid_level = RAID_UNKNOWN;
1518
1519 kfree(inq_buff);
1520 return 0;
1521
1522bail_out:
1523 kfree(inq_buff);
1524 return 1;
1525}
1526
1527static unsigned char *msa2xxx_model[] = {
1528 "MSA2012",
1529 "MSA2024",
1530 "MSA2312",
1531 "MSA2324",
1532 NULL,
1533};
1534
1535static int is_msa2xxx(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
1536{
1537 int i;
1538
1539 for (i = 0; msa2xxx_model[i]; i++)
1540 if (strncmp(device->model, msa2xxx_model[i],
1541 strlen(msa2xxx_model[i])) == 0)
1542 return 1;
1543 return 0;
1544}
1545
1546/* Helper function to assign bus, target, lun mapping of devices.
1547 * Puts non-msa2xxx logical volumes on bus 0, msa2xxx logical
1548 * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
1549 * Logical drive target and lun are assigned at this time, but
1550 * physical device lun and target assignment are deferred (assigned
1551 * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
1552 */
1553static void figure_bus_target_lun(struct ctlr_info *h,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001554 u8 *lunaddrbytes, int *bus, int *target, int *lun,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001555 struct hpsa_scsi_dev_t *device)
1556{
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001557 u32 lunid;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001558
1559 if (is_logical_dev_addr_mode(lunaddrbytes)) {
1560 /* logical device */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001561 if (unlikely(is_scsi_rev_5(h))) {
1562 /* p1210m, logical drives lun assignments
1563 * match SCSI REPORT LUNS data.
1564 */
1565 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001566 *bus = 0;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001567 *target = 0;
1568 *lun = (lunid & 0x3fff) + 1;
1569 } else {
1570 /* not p1210m... */
1571 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
1572 if (is_msa2xxx(h, device)) {
1573 /* msa2xxx way, put logicals on bus 1
1574 * and match target/lun numbers box
1575 * reports.
1576 */
1577 *bus = 1;
1578 *target = (lunid >> 16) & 0x3fff;
1579 *lun = lunid & 0x00ff;
1580 } else {
1581 /* Traditional smart array way. */
1582 *bus = 0;
1583 *lun = 0;
1584 *target = lunid & 0x3fff;
1585 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001586 }
1587 } else {
1588 /* physical device */
1589 if (is_hba_lunid(lunaddrbytes))
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001590 if (unlikely(is_scsi_rev_5(h))) {
1591 *bus = 0; /* put p1210m ctlr at 0,0,0 */
1592 *target = 0;
1593 *lun = 0;
1594 return;
1595 } else
1596 *bus = 3; /* traditional smartarray */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001597 else
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001598 *bus = 2; /* physical disk */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001599 *target = -1;
1600 *lun = -1; /* we will fill these in later. */
1601 }
1602}
1603
1604/*
1605 * If there is no lun 0 on a target, linux won't find any devices.
1606 * For the MSA2xxx boxes, we have to manually detect the enclosure
1607 * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
1608 * it for some reason. *tmpdevice is the target we're adding,
1609 * this_device is a pointer into the current element of currentsd[]
1610 * that we're building up in update_scsi_devices(), below.
1611 * lunzerobits is a bitmap that tracks which targets already have a
1612 * lun 0 assigned.
1613 * Returns 1 if an enclosure was added, 0 if not.
1614 */
1615static int add_msa2xxx_enclosure_device(struct ctlr_info *h,
1616 struct hpsa_scsi_dev_t *tmpdevice,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001617 struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001618 int bus, int target, int lun, unsigned long lunzerobits[],
1619 int *nmsa2xxx_enclosures)
1620{
1621 unsigned char scsi3addr[8];
1622
1623 if (test_bit(target, lunzerobits))
1624 return 0; /* There is already a lun 0 on this target. */
1625
1626 if (!is_logical_dev_addr_mode(lunaddrbytes))
1627 return 0; /* It's the logical targets that may lack lun 0. */
1628
1629 if (!is_msa2xxx(h, tmpdevice))
1630 return 0; /* It's only the MSA2xxx that have this problem. */
1631
1632 if (lun == 0) /* if lun is 0, then obviously we have a lun 0. */
1633 return 0;
1634
1635 if (is_hba_lunid(scsi3addr))
1636 return 0; /* Don't add the RAID controller here. */
1637
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001638 if (is_scsi_rev_5(h))
1639 return 0; /* p1210m doesn't need to do this. */
1640
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001641#define MAX_MSA2XXX_ENCLOSURES 32
1642 if (*nmsa2xxx_enclosures >= MAX_MSA2XXX_ENCLOSURES) {
1643 dev_warn(&h->pdev->dev, "Maximum number of MSA2XXX "
1644 "enclosures exceeded. Check your hardware "
1645 "configuration.");
1646 return 0;
1647 }
1648
1649 memset(scsi3addr, 0, 8);
1650 scsi3addr[3] = target;
1651 if (hpsa_update_device_info(h, scsi3addr, this_device))
1652 return 0;
1653 (*nmsa2xxx_enclosures)++;
1654 hpsa_set_bus_target_lun(this_device, bus, target, 0);
1655 set_bit(target, lunzerobits);
1656 return 1;
1657}
1658
1659/*
1660 * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev,
1661 * logdev. The number of luns in physdev and logdev are returned in
1662 * *nphysicals and *nlogicals, respectively.
1663 * Returns 0 on success, -1 otherwise.
1664 */
1665static int hpsa_gather_lun_info(struct ctlr_info *h,
1666 int reportlunsize,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001667 struct ReportLUNdata *physdev, u32 *nphysicals,
1668 struct ReportLUNdata *logdev, u32 *nlogicals)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001669{
1670 if (hpsa_scsi_do_report_phys_luns(h, physdev, reportlunsize, 0)) {
1671 dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
1672 return -1;
1673 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06001674 *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001675 if (*nphysicals > HPSA_MAX_PHYS_LUN) {
1676 dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded."
1677 " %d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
1678 *nphysicals - HPSA_MAX_PHYS_LUN);
1679 *nphysicals = HPSA_MAX_PHYS_LUN;
1680 }
1681 if (hpsa_scsi_do_report_log_luns(h, logdev, reportlunsize)) {
1682 dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
1683 return -1;
1684 }
Stephen M. Cameron6df1e952010-02-04 08:42:19 -06001685 *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001686 /* Reject Logicals in excess of our max capability. */
1687 if (*nlogicals > HPSA_MAX_LUN) {
1688 dev_warn(&h->pdev->dev,
1689 "maximum logical LUNs (%d) exceeded. "
1690 "%d LUNs ignored.\n", HPSA_MAX_LUN,
1691 *nlogicals - HPSA_MAX_LUN);
1692 *nlogicals = HPSA_MAX_LUN;
1693 }
1694 if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
1695 dev_warn(&h->pdev->dev,
1696 "maximum logical + physical LUNs (%d) exceeded. "
1697 "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
1698 *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
1699 *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
1700 }
1701 return 0;
1702}
1703
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001704u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position, int i,
1705 int nphysicals, int nlogicals, struct ReportLUNdata *physdev_list,
1706 struct ReportLUNdata *logdev_list)
1707{
1708 /* Helper function, figure out where the LUN ID info is coming from
1709 * given index i, lists of physical and logical devices, where in
1710 * the list the raid controller is supposed to appear (first or last)
1711 */
1712
1713 int logicals_start = nphysicals + (raid_ctlr_position == 0);
1714 int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
1715
1716 if (i == raid_ctlr_position)
1717 return RAID_CTLR_LUNID;
1718
1719 if (i < logicals_start)
1720 return &physdev_list->LUN[i - (raid_ctlr_position == 0)][0];
1721
1722 if (i < last_device)
1723 return &logdev_list->LUN[i - nphysicals -
1724 (raid_ctlr_position == 0)][0];
1725 BUG();
1726 return NULL;
1727}
1728
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001729static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
1730{
1731 /* the idea here is we could get notified
1732 * that some devices have changed, so we do a report
1733 * physical luns and report logical luns cmd, and adjust
1734 * our list of devices accordingly.
1735 *
1736 * The scsi3addr's of devices won't change so long as the
1737 * adapter is not reset. That means we can rescan and
1738 * tell which devices we already know about, vs. new
1739 * devices, vs. disappearing devices.
1740 */
1741 struct ReportLUNdata *physdev_list = NULL;
1742 struct ReportLUNdata *logdev_list = NULL;
1743 unsigned char *inq_buff = NULL;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001744 u32 nphysicals = 0;
1745 u32 nlogicals = 0;
1746 u32 ndev_allocated = 0;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001747 struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
1748 int ncurrent = 0;
1749 int reportlunsize = sizeof(*physdev_list) + HPSA_MAX_PHYS_LUN * 8;
1750 int i, nmsa2xxx_enclosures, ndevs_to_allocate;
1751 int bus, target, lun;
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001752 int raid_ctlr_position;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001753 DECLARE_BITMAP(lunzerobits, HPSA_MAX_TARGETS_PER_CTLR);
1754
1755 currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_SCSI_DEVS_PER_HBA,
1756 GFP_KERNEL);
1757 physdev_list = kzalloc(reportlunsize, GFP_KERNEL);
1758 logdev_list = kzalloc(reportlunsize, GFP_KERNEL);
1759 inq_buff = kmalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
1760 tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
1761
1762 if (!currentsd || !physdev_list || !logdev_list ||
1763 !inq_buff || !tmpdevice) {
1764 dev_err(&h->pdev->dev, "out of memory\n");
1765 goto out;
1766 }
1767 memset(lunzerobits, 0, sizeof(lunzerobits));
1768
1769 if (hpsa_gather_lun_info(h, reportlunsize, physdev_list, &nphysicals,
1770 logdev_list, &nlogicals))
1771 goto out;
1772
1773 /* We might see up to 32 MSA2xxx enclosures, actually 8 of them
1774 * but each of them 4 times through different paths. The plus 1
1775 * is for the RAID controller.
1776 */
1777 ndevs_to_allocate = nphysicals + nlogicals + MAX_MSA2XXX_ENCLOSURES + 1;
1778
1779 /* Allocate the per device structures */
1780 for (i = 0; i < ndevs_to_allocate; i++) {
1781 currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
1782 if (!currentsd[i]) {
1783 dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
1784 __FILE__, __LINE__);
1785 goto out;
1786 }
1787 ndev_allocated++;
1788 }
1789
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001790 if (unlikely(is_scsi_rev_5(h)))
1791 raid_ctlr_position = 0;
1792 else
1793 raid_ctlr_position = nphysicals + nlogicals;
1794
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001795 /* adjust our table of devices */
1796 nmsa2xxx_enclosures = 0;
1797 for (i = 0; i < nphysicals + nlogicals + 1; i++) {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001798 u8 *lunaddrbytes;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001799
1800 /* Figure out where the LUN ID info is coming from */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001801 lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
1802 i, nphysicals, nlogicals, physdev_list, logdev_list);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001803 /* skip masked physical devices. */
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06001804 if (lunaddrbytes[3] & 0xC0 &&
1805 i < nphysicals + (raid_ctlr_position == 0))
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001806 continue;
1807
1808 /* Get device type, vendor, model, device id */
1809 if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice))
1810 continue; /* skip it if we can't talk to it. */
1811 figure_bus_target_lun(h, lunaddrbytes, &bus, &target, &lun,
1812 tmpdevice);
1813 this_device = currentsd[ncurrent];
1814
1815 /*
1816 * For the msa2xxx boxes, we have to insert a LUN 0 which
1817 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
1818 * is nonetheless an enclosure device there. We have to
1819 * present that otherwise linux won't find anything if
1820 * there is no lun 0.
1821 */
1822 if (add_msa2xxx_enclosure_device(h, tmpdevice, this_device,
1823 lunaddrbytes, bus, target, lun, lunzerobits,
1824 &nmsa2xxx_enclosures)) {
1825 ncurrent++;
1826 this_device = currentsd[ncurrent];
1827 }
1828
1829 *this_device = *tmpdevice;
1830 hpsa_set_bus_target_lun(this_device, bus, target, lun);
1831
1832 switch (this_device->devtype) {
1833 case TYPE_ROM: {
1834 /* We don't *really* support actual CD-ROM devices,
1835 * just "One Button Disaster Recovery" tape drive
1836 * which temporarily pretends to be a CD-ROM drive.
1837 * So we check that the device is really an OBDR tape
1838 * device by checking for "$DR-10" in bytes 43-48 of
1839 * the inquiry data.
1840 */
1841 char obdr_sig[7];
1842#define OBDR_TAPE_SIG "$DR-10"
1843 strncpy(obdr_sig, &inq_buff[43], 6);
1844 obdr_sig[6] = '\0';
1845 if (strncmp(obdr_sig, OBDR_TAPE_SIG, 6) != 0)
1846 /* Not OBDR device, ignore it. */
1847 break;
1848 }
1849 ncurrent++;
1850 break;
1851 case TYPE_DISK:
1852 if (i < nphysicals)
1853 break;
1854 ncurrent++;
1855 break;
1856 case TYPE_TAPE:
1857 case TYPE_MEDIUM_CHANGER:
1858 ncurrent++;
1859 break;
1860 case TYPE_RAID:
1861 /* Only present the Smartarray HBA as a RAID controller.
1862 * If it's a RAID controller other than the HBA itself
1863 * (an external RAID controller, MSA500 or similar)
1864 * don't present it.
1865 */
1866 if (!is_hba_lunid(lunaddrbytes))
1867 break;
1868 ncurrent++;
1869 break;
1870 default:
1871 break;
1872 }
1873 if (ncurrent >= HPSA_MAX_SCSI_DEVS_PER_HBA)
1874 break;
1875 }
1876 adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
1877out:
1878 kfree(tmpdevice);
1879 for (i = 0; i < ndev_allocated; i++)
1880 kfree(currentsd[i]);
1881 kfree(currentsd);
1882 kfree(inq_buff);
1883 kfree(physdev_list);
1884 kfree(logdev_list);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001885}
1886
1887/* hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
1888 * dma mapping and fills in the scatter gather entries of the
1889 * hpsa command, cp.
1890 */
1891static int hpsa_scatter_gather(struct pci_dev *pdev,
1892 struct CommandList *cp,
1893 struct scsi_cmnd *cmd)
1894{
1895 unsigned int len;
1896 struct scatterlist *sg;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001897 u64 addr64;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001898 int use_sg, i;
1899
1900 BUG_ON(scsi_sg_count(cmd) > MAXSGENTRIES);
1901
1902 use_sg = scsi_dma_map(cmd);
1903 if (use_sg < 0)
1904 return use_sg;
1905
1906 if (!use_sg)
1907 goto sglist_finished;
1908
1909 scsi_for_each_sg(cmd, sg, use_sg, i) {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001910 addr64 = (u64) sg_dma_address(sg);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001911 len = sg_dma_len(sg);
1912 cp->SG[i].Addr.lower =
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001913 (u32) (addr64 & (u64) 0x00000000FFFFFFFF);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001914 cp->SG[i].Addr.upper =
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001915 (u32) ((addr64 >> 32) & (u64) 0x00000000FFFFFFFF);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001916 cp->SG[i].Len = len;
1917 cp->SG[i].Ext = 0; /* we are not chaining */
1918 }
1919
1920sglist_finished:
1921
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06001922 cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */
1923 cp->Header.SGTotal = (u16) use_sg; /* total sgs in this cmd list */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001924 return 0;
1925}
1926
1927
1928static int hpsa_scsi_queue_command(struct scsi_cmnd *cmd,
1929 void (*done)(struct scsi_cmnd *))
1930{
1931 struct ctlr_info *h;
1932 struct hpsa_scsi_dev_t *dev;
1933 unsigned char scsi3addr[8];
1934 struct CommandList *c;
1935 unsigned long flags;
1936
1937 /* Get the ptr to our adapter structure out of cmd->host. */
1938 h = sdev_to_hba(cmd->device);
1939 dev = cmd->device->hostdata;
1940 if (!dev) {
1941 cmd->result = DID_NO_CONNECT << 16;
1942 done(cmd);
1943 return 0;
1944 }
1945 memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
1946
1947 /* Need a lock as this is being allocated from the pool */
1948 spin_lock_irqsave(&h->lock, flags);
1949 c = cmd_alloc(h);
1950 spin_unlock_irqrestore(&h->lock, flags);
1951 if (c == NULL) { /* trouble... */
1952 dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n");
1953 return SCSI_MLQUEUE_HOST_BUSY;
1954 }
1955
1956 /* Fill in the command list header */
1957
1958 cmd->scsi_done = done; /* save this for use by completion code */
1959
1960 /* save c in case we have to abort it */
1961 cmd->host_scribble = (unsigned char *) c;
1962
1963 c->cmd_type = CMD_SCSI;
1964 c->scsi_cmd = cmd;
1965 c->Header.ReplyQueue = 0; /* unused in simple mode */
1966 memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
Don Brace303932f2010-02-04 08:42:40 -06001967 c->Header.Tag.lower = (c->cmdindex << DIRECT_LOOKUP_SHIFT);
1968 c->Header.Tag.lower |= DIRECT_LOOKUP_BIT;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001969
1970 /* Fill in the request block... */
1971
1972 c->Request.Timeout = 0;
1973 memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
1974 BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
1975 c->Request.CDBLen = cmd->cmd_len;
1976 memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
1977 c->Request.Type.Type = TYPE_CMD;
1978 c->Request.Type.Attribute = ATTR_SIMPLE;
1979 switch (cmd->sc_data_direction) {
1980 case DMA_TO_DEVICE:
1981 c->Request.Type.Direction = XFER_WRITE;
1982 break;
1983 case DMA_FROM_DEVICE:
1984 c->Request.Type.Direction = XFER_READ;
1985 break;
1986 case DMA_NONE:
1987 c->Request.Type.Direction = XFER_NONE;
1988 break;
1989 case DMA_BIDIRECTIONAL:
1990 /* This can happen if a buggy application does a scsi passthru
1991 * and sets both inlen and outlen to non-zero. ( see
1992 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
1993 */
1994
1995 c->Request.Type.Direction = XFER_RSVD;
1996 /* This is technically wrong, and hpsa controllers should
1997 * reject it with CMD_INVALID, which is the most correct
1998 * response, but non-fibre backends appear to let it
1999 * slide by, and give the same results as if this field
2000 * were set correctly. Either way is acceptable for
2001 * our purposes here.
2002 */
2003
2004 break;
2005
2006 default:
2007 dev_err(&h->pdev->dev, "unknown data direction: %d\n",
2008 cmd->sc_data_direction);
2009 BUG();
2010 break;
2011 }
2012
2013 if (hpsa_scatter_gather(h->pdev, c, cmd) < 0) { /* Fill SG list */
2014 cmd_free(h, c);
2015 return SCSI_MLQUEUE_HOST_BUSY;
2016 }
2017 enqueue_cmd_and_start_io(h, c);
2018 /* the cmd'll come back via intr handler in complete_scsi_command() */
2019 return 0;
2020}
2021
Stephen M. Camerona08a8472010-02-04 08:43:16 -06002022static void hpsa_scan_start(struct Scsi_Host *sh)
2023{
2024 struct ctlr_info *h = shost_to_hba(sh);
2025 unsigned long flags;
2026
2027 /* wait until any scan already in progress is finished. */
2028 while (1) {
2029 spin_lock_irqsave(&h->scan_lock, flags);
2030 if (h->scan_finished)
2031 break;
2032 spin_unlock_irqrestore(&h->scan_lock, flags);
2033 wait_event(h->scan_wait_queue, h->scan_finished);
2034 /* Note: We don't need to worry about a race between this
2035 * thread and driver unload because the midlayer will
2036 * have incremented the reference count, so unload won't
2037 * happen if we're in here.
2038 */
2039 }
2040 h->scan_finished = 0; /* mark scan as in progress */
2041 spin_unlock_irqrestore(&h->scan_lock, flags);
2042
2043 hpsa_update_scsi_devices(h, h->scsi_host->host_no);
2044
2045 spin_lock_irqsave(&h->scan_lock, flags);
2046 h->scan_finished = 1; /* mark scan as finished. */
2047 wake_up_all(&h->scan_wait_queue);
2048 spin_unlock_irqrestore(&h->scan_lock, flags);
2049}
2050
2051static int hpsa_scan_finished(struct Scsi_Host *sh,
2052 unsigned long elapsed_time)
2053{
2054 struct ctlr_info *h = shost_to_hba(sh);
2055 unsigned long flags;
2056 int finished;
2057
2058 spin_lock_irqsave(&h->scan_lock, flags);
2059 finished = h->scan_finished;
2060 spin_unlock_irqrestore(&h->scan_lock, flags);
2061 return finished;
2062}
2063
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002064static void hpsa_unregister_scsi(struct ctlr_info *h)
2065{
2066 /* we are being forcibly unloaded, and may not refuse. */
2067 scsi_remove_host(h->scsi_host);
2068 scsi_host_put(h->scsi_host);
2069 h->scsi_host = NULL;
2070}
2071
2072static int hpsa_register_scsi(struct ctlr_info *h)
2073{
2074 int rc;
2075
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002076 rc = hpsa_scsi_detect(h);
2077 if (rc != 0)
2078 dev_err(&h->pdev->dev, "hpsa_register_scsi: failed"
2079 " hpsa_scsi_detect(), rc is %d\n", rc);
2080 return rc;
2081}
2082
2083static int wait_for_device_to_become_ready(struct ctlr_info *h,
2084 unsigned char lunaddr[])
2085{
2086 int rc = 0;
2087 int count = 0;
2088 int waittime = 1; /* seconds */
2089 struct CommandList *c;
2090
2091 c = cmd_special_alloc(h);
2092 if (!c) {
2093 dev_warn(&h->pdev->dev, "out of memory in "
2094 "wait_for_device_to_become_ready.\n");
2095 return IO_ERROR;
2096 }
2097
2098 /* Send test unit ready until device ready, or give up. */
2099 while (count < HPSA_TUR_RETRY_LIMIT) {
2100
2101 /* Wait for a bit. do this first, because if we send
2102 * the TUR right away, the reset will just abort it.
2103 */
2104 msleep(1000 * waittime);
2105 count++;
2106
2107 /* Increase wait time with each try, up to a point. */
2108 if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
2109 waittime = waittime * 2;
2110
2111 /* Send the Test Unit Ready */
2112 fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, lunaddr, TYPE_CMD);
2113 hpsa_scsi_do_simple_cmd_core(h, c);
2114 /* no unmap needed here because no data xfer. */
2115
2116 if (c->err_info->CommandStatus == CMD_SUCCESS)
2117 break;
2118
2119 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
2120 c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
2121 (c->err_info->SenseInfo[2] == NO_SENSE ||
2122 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
2123 break;
2124
2125 dev_warn(&h->pdev->dev, "waiting %d secs "
2126 "for device to become ready.\n", waittime);
2127 rc = 1; /* device not ready. */
2128 }
2129
2130 if (rc)
2131 dev_warn(&h->pdev->dev, "giving up on device.\n");
2132 else
2133 dev_warn(&h->pdev->dev, "device is ready.\n");
2134
2135 cmd_special_free(h, c);
2136 return rc;
2137}
2138
2139/* Need at least one of these error handlers to keep ../scsi/hosts.c from
2140 * complaining. Doing a host- or bus-reset can't do anything good here.
2141 */
2142static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
2143{
2144 int rc;
2145 struct ctlr_info *h;
2146 struct hpsa_scsi_dev_t *dev;
2147
2148 /* find the controller to which the command to be aborted was sent */
2149 h = sdev_to_hba(scsicmd->device);
2150 if (h == NULL) /* paranoia */
2151 return FAILED;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002152 dev = scsicmd->device->hostdata;
2153 if (!dev) {
2154 dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: "
2155 "device lookup failed.\n");
2156 return FAILED;
2157 }
Stephen M. Camerond416b0c2010-02-04 08:43:21 -06002158 dev_warn(&h->pdev->dev, "resetting device %d:%d:%d:%d\n",
2159 h->scsi_host->host_no, dev->bus, dev->target, dev->lun);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002160 /* send a reset to the SCSI LUN which the command was sent to */
2161 rc = hpsa_send_reset(h, dev->scsi3addr);
2162 if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0)
2163 return SUCCESS;
2164
2165 dev_warn(&h->pdev->dev, "resetting device failed.\n");
2166 return FAILED;
2167}
2168
2169/*
2170 * For operations that cannot sleep, a command block is allocated at init,
2171 * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
2172 * which ones are free or in use. Lock must be held when calling this.
2173 * cmd_free() is the complement.
2174 */
2175static struct CommandList *cmd_alloc(struct ctlr_info *h)
2176{
2177 struct CommandList *c;
2178 int i;
2179 union u64bit temp64;
2180 dma_addr_t cmd_dma_handle, err_dma_handle;
2181
2182 do {
2183 i = find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds);
2184 if (i == h->nr_cmds)
2185 return NULL;
2186 } while (test_and_set_bit
2187 (i & (BITS_PER_LONG - 1),
2188 h->cmd_pool_bits + (i / BITS_PER_LONG)) != 0);
2189 c = h->cmd_pool + i;
2190 memset(c, 0, sizeof(*c));
2191 cmd_dma_handle = h->cmd_pool_dhandle
2192 + i * sizeof(*c);
2193 c->err_info = h->errinfo_pool + i;
2194 memset(c->err_info, 0, sizeof(*c->err_info));
2195 err_dma_handle = h->errinfo_pool_dhandle
2196 + i * sizeof(*c->err_info);
2197 h->nr_allocs++;
2198
2199 c->cmdindex = i;
2200
2201 INIT_HLIST_NODE(&c->list);
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002202 c->busaddr = (u32) cmd_dma_handle;
2203 temp64.val = (u64) err_dma_handle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002204 c->ErrDesc.Addr.lower = temp64.val32.lower;
2205 c->ErrDesc.Addr.upper = temp64.val32.upper;
2206 c->ErrDesc.Len = sizeof(*c->err_info);
2207
2208 c->h = h;
2209 return c;
2210}
2211
2212/* For operations that can wait for kmalloc to possibly sleep,
2213 * this routine can be called. Lock need not be held to call
2214 * cmd_special_alloc. cmd_special_free() is the complement.
2215 */
2216static struct CommandList *cmd_special_alloc(struct ctlr_info *h)
2217{
2218 struct CommandList *c;
2219 union u64bit temp64;
2220 dma_addr_t cmd_dma_handle, err_dma_handle;
2221
2222 c = pci_alloc_consistent(h->pdev, sizeof(*c), &cmd_dma_handle);
2223 if (c == NULL)
2224 return NULL;
2225 memset(c, 0, sizeof(*c));
2226
2227 c->cmdindex = -1;
2228
2229 c->err_info = pci_alloc_consistent(h->pdev, sizeof(*c->err_info),
2230 &err_dma_handle);
2231
2232 if (c->err_info == NULL) {
2233 pci_free_consistent(h->pdev,
2234 sizeof(*c), c, cmd_dma_handle);
2235 return NULL;
2236 }
2237 memset(c->err_info, 0, sizeof(*c->err_info));
2238
2239 INIT_HLIST_NODE(&c->list);
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002240 c->busaddr = (u32) cmd_dma_handle;
2241 temp64.val = (u64) err_dma_handle;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002242 c->ErrDesc.Addr.lower = temp64.val32.lower;
2243 c->ErrDesc.Addr.upper = temp64.val32.upper;
2244 c->ErrDesc.Len = sizeof(*c->err_info);
2245
2246 c->h = h;
2247 return c;
2248}
2249
2250static void cmd_free(struct ctlr_info *h, struct CommandList *c)
2251{
2252 int i;
2253
2254 i = c - h->cmd_pool;
2255 clear_bit(i & (BITS_PER_LONG - 1),
2256 h->cmd_pool_bits + (i / BITS_PER_LONG));
2257 h->nr_frees++;
2258}
2259
2260static void cmd_special_free(struct ctlr_info *h, struct CommandList *c)
2261{
2262 union u64bit temp64;
2263
2264 temp64.val32.lower = c->ErrDesc.Addr.lower;
2265 temp64.val32.upper = c->ErrDesc.Addr.upper;
2266 pci_free_consistent(h->pdev, sizeof(*c->err_info),
2267 c->err_info, (dma_addr_t) temp64.val);
2268 pci_free_consistent(h->pdev, sizeof(*c),
2269 c, (dma_addr_t) c->busaddr);
2270}
2271
2272#ifdef CONFIG_COMPAT
2273
2274static int do_ioctl(struct scsi_device *dev, int cmd, void *arg)
2275{
2276 int ret;
2277
2278 lock_kernel();
2279 ret = hpsa_ioctl(dev, cmd, arg);
2280 unlock_kernel();
2281 return ret;
2282}
2283
2284static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd, void *arg);
2285static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
2286 int cmd, void *arg);
2287
2288static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void *arg)
2289{
2290 switch (cmd) {
2291 case CCISS_GETPCIINFO:
2292 case CCISS_GETINTINFO:
2293 case CCISS_SETINTINFO:
2294 case CCISS_GETNODENAME:
2295 case CCISS_SETNODENAME:
2296 case CCISS_GETHEARTBEAT:
2297 case CCISS_GETBUSTYPES:
2298 case CCISS_GETFIRMVER:
2299 case CCISS_GETDRIVVER:
2300 case CCISS_REVALIDVOLS:
2301 case CCISS_DEREGDISK:
2302 case CCISS_REGNEWDISK:
2303 case CCISS_REGNEWD:
2304 case CCISS_RESCANDISK:
2305 case CCISS_GETLUNINFO:
2306 return do_ioctl(dev, cmd, arg);
2307
2308 case CCISS_PASSTHRU32:
2309 return hpsa_ioctl32_passthru(dev, cmd, arg);
2310 case CCISS_BIG_PASSTHRU32:
2311 return hpsa_ioctl32_big_passthru(dev, cmd, arg);
2312
2313 default:
2314 return -ENOIOCTLCMD;
2315 }
2316}
2317
2318static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd, void *arg)
2319{
2320 IOCTL32_Command_struct __user *arg32 =
2321 (IOCTL32_Command_struct __user *) arg;
2322 IOCTL_Command_struct arg64;
2323 IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
2324 int err;
2325 u32 cp;
2326
2327 err = 0;
2328 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
2329 sizeof(arg64.LUN_info));
2330 err |= copy_from_user(&arg64.Request, &arg32->Request,
2331 sizeof(arg64.Request));
2332 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
2333 sizeof(arg64.error_info));
2334 err |= get_user(arg64.buf_size, &arg32->buf_size);
2335 err |= get_user(cp, &arg32->buf);
2336 arg64.buf = compat_ptr(cp);
2337 err |= copy_to_user(p, &arg64, sizeof(arg64));
2338
2339 if (err)
2340 return -EFAULT;
2341
2342 err = do_ioctl(dev, CCISS_PASSTHRU, (void *)p);
2343 if (err)
2344 return err;
2345 err |= copy_in_user(&arg32->error_info, &p->error_info,
2346 sizeof(arg32->error_info));
2347 if (err)
2348 return -EFAULT;
2349 return err;
2350}
2351
2352static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
2353 int cmd, void *arg)
2354{
2355 BIG_IOCTL32_Command_struct __user *arg32 =
2356 (BIG_IOCTL32_Command_struct __user *) arg;
2357 BIG_IOCTL_Command_struct arg64;
2358 BIG_IOCTL_Command_struct __user *p =
2359 compat_alloc_user_space(sizeof(arg64));
2360 int err;
2361 u32 cp;
2362
2363 err = 0;
2364 err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
2365 sizeof(arg64.LUN_info));
2366 err |= copy_from_user(&arg64.Request, &arg32->Request,
2367 sizeof(arg64.Request));
2368 err |= copy_from_user(&arg64.error_info, &arg32->error_info,
2369 sizeof(arg64.error_info));
2370 err |= get_user(arg64.buf_size, &arg32->buf_size);
2371 err |= get_user(arg64.malloc_size, &arg32->malloc_size);
2372 err |= get_user(cp, &arg32->buf);
2373 arg64.buf = compat_ptr(cp);
2374 err |= copy_to_user(p, &arg64, sizeof(arg64));
2375
2376 if (err)
2377 return -EFAULT;
2378
2379 err = do_ioctl(dev, CCISS_BIG_PASSTHRU, (void *)p);
2380 if (err)
2381 return err;
2382 err |= copy_in_user(&arg32->error_info, &p->error_info,
2383 sizeof(arg32->error_info));
2384 if (err)
2385 return -EFAULT;
2386 return err;
2387}
2388#endif
2389
2390static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
2391{
2392 struct hpsa_pci_info pciinfo;
2393
2394 if (!argp)
2395 return -EINVAL;
2396 pciinfo.domain = pci_domain_nr(h->pdev->bus);
2397 pciinfo.bus = h->pdev->bus->number;
2398 pciinfo.dev_fn = h->pdev->devfn;
2399 pciinfo.board_id = h->board_id;
2400 if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
2401 return -EFAULT;
2402 return 0;
2403}
2404
2405static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
2406{
2407 DriverVer_type DriverVer;
2408 unsigned char vmaj, vmin, vsubmin;
2409 int rc;
2410
2411 rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
2412 &vmaj, &vmin, &vsubmin);
2413 if (rc != 3) {
2414 dev_info(&h->pdev->dev, "driver version string '%s' "
2415 "unrecognized.", HPSA_DRIVER_VERSION);
2416 vmaj = 0;
2417 vmin = 0;
2418 vsubmin = 0;
2419 }
2420 DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
2421 if (!argp)
2422 return -EINVAL;
2423 if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
2424 return -EFAULT;
2425 return 0;
2426}
2427
2428static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
2429{
2430 IOCTL_Command_struct iocommand;
2431 struct CommandList *c;
2432 char *buff = NULL;
2433 union u64bit temp64;
2434
2435 if (!argp)
2436 return -EINVAL;
2437 if (!capable(CAP_SYS_RAWIO))
2438 return -EPERM;
2439 if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
2440 return -EFAULT;
2441 if ((iocommand.buf_size < 1) &&
2442 (iocommand.Request.Type.Direction != XFER_NONE)) {
2443 return -EINVAL;
2444 }
2445 if (iocommand.buf_size > 0) {
2446 buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
2447 if (buff == NULL)
2448 return -EFAULT;
2449 }
2450 if (iocommand.Request.Type.Direction == XFER_WRITE) {
2451 /* Copy the data into the buffer we created */
2452 if (copy_from_user(buff, iocommand.buf, iocommand.buf_size)) {
2453 kfree(buff);
2454 return -EFAULT;
2455 }
2456 } else
2457 memset(buff, 0, iocommand.buf_size);
2458 c = cmd_special_alloc(h);
2459 if (c == NULL) {
2460 kfree(buff);
2461 return -ENOMEM;
2462 }
2463 /* Fill in the command type */
2464 c->cmd_type = CMD_IOCTL_PEND;
2465 /* Fill in Command Header */
2466 c->Header.ReplyQueue = 0; /* unused in simple mode */
2467 if (iocommand.buf_size > 0) { /* buffer to fill */
2468 c->Header.SGList = 1;
2469 c->Header.SGTotal = 1;
2470 } else { /* no buffers to fill */
2471 c->Header.SGList = 0;
2472 c->Header.SGTotal = 0;
2473 }
2474 memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
2475 /* use the kernel address the cmd block for tag */
2476 c->Header.Tag.lower = c->busaddr;
2477
2478 /* Fill in Request block */
2479 memcpy(&c->Request, &iocommand.Request,
2480 sizeof(c->Request));
2481
2482 /* Fill in the scatter gather information */
2483 if (iocommand.buf_size > 0) {
2484 temp64.val = pci_map_single(h->pdev, buff,
2485 iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
2486 c->SG[0].Addr.lower = temp64.val32.lower;
2487 c->SG[0].Addr.upper = temp64.val32.upper;
2488 c->SG[0].Len = iocommand.buf_size;
2489 c->SG[0].Ext = 0; /* we are not chaining*/
2490 }
2491 hpsa_scsi_do_simple_cmd_core(h, c);
2492 hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
2493 check_ioctl_unit_attention(h, c);
2494
2495 /* Copy the error information out */
2496 memcpy(&iocommand.error_info, c->err_info,
2497 sizeof(iocommand.error_info));
2498 if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
2499 kfree(buff);
2500 cmd_special_free(h, c);
2501 return -EFAULT;
2502 }
2503
2504 if (iocommand.Request.Type.Direction == XFER_READ) {
2505 /* Copy the data out of the buffer we created */
2506 if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
2507 kfree(buff);
2508 cmd_special_free(h, c);
2509 return -EFAULT;
2510 }
2511 }
2512 kfree(buff);
2513 cmd_special_free(h, c);
2514 return 0;
2515}
2516
2517static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
2518{
2519 BIG_IOCTL_Command_struct *ioc;
2520 struct CommandList *c;
2521 unsigned char **buff = NULL;
2522 int *buff_size = NULL;
2523 union u64bit temp64;
2524 BYTE sg_used = 0;
2525 int status = 0;
2526 int i;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002527 u32 left;
2528 u32 sz;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002529 BYTE __user *data_ptr;
2530
2531 if (!argp)
2532 return -EINVAL;
2533 if (!capable(CAP_SYS_RAWIO))
2534 return -EPERM;
2535 ioc = (BIG_IOCTL_Command_struct *)
2536 kmalloc(sizeof(*ioc), GFP_KERNEL);
2537 if (!ioc) {
2538 status = -ENOMEM;
2539 goto cleanup1;
2540 }
2541 if (copy_from_user(ioc, argp, sizeof(*ioc))) {
2542 status = -EFAULT;
2543 goto cleanup1;
2544 }
2545 if ((ioc->buf_size < 1) &&
2546 (ioc->Request.Type.Direction != XFER_NONE)) {
2547 status = -EINVAL;
2548 goto cleanup1;
2549 }
2550 /* Check kmalloc limits using all SGs */
2551 if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
2552 status = -EINVAL;
2553 goto cleanup1;
2554 }
2555 if (ioc->buf_size > ioc->malloc_size * MAXSGENTRIES) {
2556 status = -EINVAL;
2557 goto cleanup1;
2558 }
2559 buff = kzalloc(MAXSGENTRIES * sizeof(char *), GFP_KERNEL);
2560 if (!buff) {
2561 status = -ENOMEM;
2562 goto cleanup1;
2563 }
2564 buff_size = kmalloc(MAXSGENTRIES * sizeof(int), GFP_KERNEL);
2565 if (!buff_size) {
2566 status = -ENOMEM;
2567 goto cleanup1;
2568 }
2569 left = ioc->buf_size;
2570 data_ptr = ioc->buf;
2571 while (left) {
2572 sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
2573 buff_size[sg_used] = sz;
2574 buff[sg_used] = kmalloc(sz, GFP_KERNEL);
2575 if (buff[sg_used] == NULL) {
2576 status = -ENOMEM;
2577 goto cleanup1;
2578 }
2579 if (ioc->Request.Type.Direction == XFER_WRITE) {
2580 if (copy_from_user(buff[sg_used], data_ptr, sz)) {
2581 status = -ENOMEM;
2582 goto cleanup1;
2583 }
2584 } else
2585 memset(buff[sg_used], 0, sz);
2586 left -= sz;
2587 data_ptr += sz;
2588 sg_used++;
2589 }
2590 c = cmd_special_alloc(h);
2591 if (c == NULL) {
2592 status = -ENOMEM;
2593 goto cleanup1;
2594 }
2595 c->cmd_type = CMD_IOCTL_PEND;
2596 c->Header.ReplyQueue = 0;
2597
2598 if (ioc->buf_size > 0) {
2599 c->Header.SGList = sg_used;
2600 c->Header.SGTotal = sg_used;
2601 } else {
2602 c->Header.SGList = 0;
2603 c->Header.SGTotal = 0;
2604 }
2605 memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
2606 c->Header.Tag.lower = c->busaddr;
2607 memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
2608 if (ioc->buf_size > 0) {
2609 int i;
2610 for (i = 0; i < sg_used; i++) {
2611 temp64.val = pci_map_single(h->pdev, buff[i],
2612 buff_size[i], PCI_DMA_BIDIRECTIONAL);
2613 c->SG[i].Addr.lower = temp64.val32.lower;
2614 c->SG[i].Addr.upper = temp64.val32.upper;
2615 c->SG[i].Len = buff_size[i];
2616 /* we are not chaining */
2617 c->SG[i].Ext = 0;
2618 }
2619 }
2620 hpsa_scsi_do_simple_cmd_core(h, c);
2621 hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
2622 check_ioctl_unit_attention(h, c);
2623 /* Copy the error information out */
2624 memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
2625 if (copy_to_user(argp, ioc, sizeof(*ioc))) {
2626 cmd_special_free(h, c);
2627 status = -EFAULT;
2628 goto cleanup1;
2629 }
2630 if (ioc->Request.Type.Direction == XFER_READ) {
2631 /* Copy the data out of the buffer we created */
2632 BYTE __user *ptr = ioc->buf;
2633 for (i = 0; i < sg_used; i++) {
2634 if (copy_to_user(ptr, buff[i], buff_size[i])) {
2635 cmd_special_free(h, c);
2636 status = -EFAULT;
2637 goto cleanup1;
2638 }
2639 ptr += buff_size[i];
2640 }
2641 }
2642 cmd_special_free(h, c);
2643 status = 0;
2644cleanup1:
2645 if (buff) {
2646 for (i = 0; i < sg_used; i++)
2647 kfree(buff[i]);
2648 kfree(buff);
2649 }
2650 kfree(buff_size);
2651 kfree(ioc);
2652 return status;
2653}
2654
2655static void check_ioctl_unit_attention(struct ctlr_info *h,
2656 struct CommandList *c)
2657{
2658 if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
2659 c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
2660 (void) check_for_unit_attention(h, c);
2661}
2662/*
2663 * ioctl
2664 */
2665static int hpsa_ioctl(struct scsi_device *dev, int cmd, void *arg)
2666{
2667 struct ctlr_info *h;
2668 void __user *argp = (void __user *)arg;
2669
2670 h = sdev_to_hba(dev);
2671
2672 switch (cmd) {
2673 case CCISS_DEREGDISK:
2674 case CCISS_REGNEWDISK:
2675 case CCISS_REGNEWD:
Stephen M. Camerona08a8472010-02-04 08:43:16 -06002676 hpsa_scan_start(h->scsi_host);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002677 return 0;
2678 case CCISS_GETPCIINFO:
2679 return hpsa_getpciinfo_ioctl(h, argp);
2680 case CCISS_GETDRIVVER:
2681 return hpsa_getdrivver_ioctl(h, argp);
2682 case CCISS_PASSTHRU:
2683 return hpsa_passthru_ioctl(h, argp);
2684 case CCISS_BIG_PASSTHRU:
2685 return hpsa_big_passthru_ioctl(h, argp);
2686 default:
2687 return -ENOTTY;
2688 }
2689}
2690
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002691static void fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
2692 void *buff, size_t size, u8 page_code, unsigned char *scsi3addr,
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002693 int cmd_type)
2694{
2695 int pci_dir = XFER_NONE;
2696
2697 c->cmd_type = CMD_IOCTL_PEND;
2698 c->Header.ReplyQueue = 0;
2699 if (buff != NULL && size > 0) {
2700 c->Header.SGList = 1;
2701 c->Header.SGTotal = 1;
2702 } else {
2703 c->Header.SGList = 0;
2704 c->Header.SGTotal = 0;
2705 }
2706 c->Header.Tag.lower = c->busaddr;
2707 memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
2708
2709 c->Request.Type.Type = cmd_type;
2710 if (cmd_type == TYPE_CMD) {
2711 switch (cmd) {
2712 case HPSA_INQUIRY:
2713 /* are we trying to read a vital product page */
2714 if (page_code != 0) {
2715 c->Request.CDB[1] = 0x01;
2716 c->Request.CDB[2] = page_code;
2717 }
2718 c->Request.CDBLen = 6;
2719 c->Request.Type.Attribute = ATTR_SIMPLE;
2720 c->Request.Type.Direction = XFER_READ;
2721 c->Request.Timeout = 0;
2722 c->Request.CDB[0] = HPSA_INQUIRY;
2723 c->Request.CDB[4] = size & 0xFF;
2724 break;
2725 case HPSA_REPORT_LOG:
2726 case HPSA_REPORT_PHYS:
2727 /* Talking to controller so It's a physical command
2728 mode = 00 target = 0. Nothing to write.
2729 */
2730 c->Request.CDBLen = 12;
2731 c->Request.Type.Attribute = ATTR_SIMPLE;
2732 c->Request.Type.Direction = XFER_READ;
2733 c->Request.Timeout = 0;
2734 c->Request.CDB[0] = cmd;
2735 c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
2736 c->Request.CDB[7] = (size >> 16) & 0xFF;
2737 c->Request.CDB[8] = (size >> 8) & 0xFF;
2738 c->Request.CDB[9] = size & 0xFF;
2739 break;
2740
2741 case HPSA_READ_CAPACITY:
2742 c->Request.CDBLen = 10;
2743 c->Request.Type.Attribute = ATTR_SIMPLE;
2744 c->Request.Type.Direction = XFER_READ;
2745 c->Request.Timeout = 0;
2746 c->Request.CDB[0] = cmd;
2747 break;
2748 case HPSA_CACHE_FLUSH:
2749 c->Request.CDBLen = 12;
2750 c->Request.Type.Attribute = ATTR_SIMPLE;
2751 c->Request.Type.Direction = XFER_WRITE;
2752 c->Request.Timeout = 0;
2753 c->Request.CDB[0] = BMIC_WRITE;
2754 c->Request.CDB[6] = BMIC_CACHE_FLUSH;
2755 break;
2756 case TEST_UNIT_READY:
2757 c->Request.CDBLen = 6;
2758 c->Request.Type.Attribute = ATTR_SIMPLE;
2759 c->Request.Type.Direction = XFER_NONE;
2760 c->Request.Timeout = 0;
2761 break;
2762 default:
2763 dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
2764 BUG();
2765 return;
2766 }
2767 } else if (cmd_type == TYPE_MSG) {
2768 switch (cmd) {
2769
2770 case HPSA_DEVICE_RESET_MSG:
2771 c->Request.CDBLen = 16;
2772 c->Request.Type.Type = 1; /* It is a MSG not a CMD */
2773 c->Request.Type.Attribute = ATTR_SIMPLE;
2774 c->Request.Type.Direction = XFER_NONE;
2775 c->Request.Timeout = 0; /* Don't time out */
2776 c->Request.CDB[0] = 0x01; /* RESET_MSG is 0x01 */
2777 c->Request.CDB[1] = 0x03; /* Reset target above */
2778 /* If bytes 4-7 are zero, it means reset the */
2779 /* LunID device */
2780 c->Request.CDB[4] = 0x00;
2781 c->Request.CDB[5] = 0x00;
2782 c->Request.CDB[6] = 0x00;
2783 c->Request.CDB[7] = 0x00;
2784 break;
2785
2786 default:
2787 dev_warn(&h->pdev->dev, "unknown message type %d\n",
2788 cmd);
2789 BUG();
2790 }
2791 } else {
2792 dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
2793 BUG();
2794 }
2795
2796 switch (c->Request.Type.Direction) {
2797 case XFER_READ:
2798 pci_dir = PCI_DMA_FROMDEVICE;
2799 break;
2800 case XFER_WRITE:
2801 pci_dir = PCI_DMA_TODEVICE;
2802 break;
2803 case XFER_NONE:
2804 pci_dir = PCI_DMA_NONE;
2805 break;
2806 default:
2807 pci_dir = PCI_DMA_BIDIRECTIONAL;
2808 }
2809
2810 hpsa_map_one(h->pdev, c, buff, size, pci_dir);
2811
2812 return;
2813}
2814
2815/*
2816 * Map (physical) PCI mem into (virtual) kernel space
2817 */
2818static void __iomem *remap_pci_mem(ulong base, ulong size)
2819{
2820 ulong page_base = ((ulong) base) & PAGE_MASK;
2821 ulong page_offs = ((ulong) base) - page_base;
2822 void __iomem *page_remapped = ioremap(page_base, page_offs + size);
2823
2824 return page_remapped ? (page_remapped + page_offs) : NULL;
2825}
2826
2827/* Takes cmds off the submission queue and sends them to the hardware,
2828 * then puts them on the queue of cmds waiting for completion.
2829 */
2830static void start_io(struct ctlr_info *h)
2831{
2832 struct CommandList *c;
2833
2834 while (!hlist_empty(&h->reqQ)) {
2835 c = hlist_entry(h->reqQ.first, struct CommandList, list);
2836 /* can't do anything if fifo is full */
2837 if ((h->access.fifo_full(h))) {
2838 dev_warn(&h->pdev->dev, "fifo full\n");
2839 break;
2840 }
2841
2842 /* Get the first entry from the Request Q */
2843 removeQ(c);
2844 h->Qdepth--;
2845
2846 /* Tell the controller execute command */
2847 h->access.submit_command(h, c);
2848
2849 /* Put job onto the completed Q */
2850 addQ(&h->cmpQ, c);
2851 }
2852}
2853
2854static inline unsigned long get_next_completion(struct ctlr_info *h)
2855{
2856 return h->access.command_completed(h);
2857}
2858
Stephen M. Cameron900c5442010-02-04 08:42:35 -06002859static inline bool interrupt_pending(struct ctlr_info *h)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002860{
2861 return h->access.intr_pending(h);
2862}
2863
2864static inline long interrupt_not_for_us(struct ctlr_info *h)
2865{
Don Brace303932f2010-02-04 08:42:40 -06002866 return !(h->msi_vector || h->msix_vector) &&
2867 ((h->access.intr_pending(h) == 0) ||
2868 (h->interrupts_enabled == 0));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002869}
2870
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002871static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
2872 u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002873{
2874 if (unlikely(tag_index >= h->nr_cmds)) {
2875 dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
2876 return 1;
2877 }
2878 return 0;
2879}
2880
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06002881static inline void finish_cmd(struct CommandList *c, u32 raw_tag)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002882{
2883 removeQ(c);
2884 if (likely(c->cmd_type == CMD_SCSI))
2885 complete_scsi_command(c, 0, raw_tag);
2886 else if (c->cmd_type == CMD_IOCTL_PEND)
2887 complete(c->waiting);
2888}
2889
Stephen M. Camerona104c992010-02-04 08:42:24 -06002890static inline u32 hpsa_tag_contains_index(u32 tag)
2891{
Don Brace303932f2010-02-04 08:42:40 -06002892#define DIRECT_LOOKUP_BIT 0x10
Stephen M. Camerona104c992010-02-04 08:42:24 -06002893 return tag & DIRECT_LOOKUP_BIT;
2894}
2895
2896static inline u32 hpsa_tag_to_index(u32 tag)
2897{
Don Brace303932f2010-02-04 08:42:40 -06002898#define DIRECT_LOOKUP_SHIFT 5
Stephen M. Camerona104c992010-02-04 08:42:24 -06002899 return tag >> DIRECT_LOOKUP_SHIFT;
2900}
2901
2902static inline u32 hpsa_tag_discard_error_bits(u32 tag)
2903{
2904#define HPSA_ERROR_BITS 0x03
2905 return tag & ~HPSA_ERROR_BITS;
2906}
2907
Don Brace303932f2010-02-04 08:42:40 -06002908/* process completion of an indexed ("direct lookup") command */
2909static inline u32 process_indexed_cmd(struct ctlr_info *h,
2910 u32 raw_tag)
2911{
2912 u32 tag_index;
2913 struct CommandList *c;
2914
2915 tag_index = hpsa_tag_to_index(raw_tag);
2916 if (bad_tag(h, tag_index, raw_tag))
2917 return next_command(h);
2918 c = h->cmd_pool + tag_index;
2919 finish_cmd(c, raw_tag);
2920 return next_command(h);
2921}
2922
2923/* process completion of a non-indexed command */
2924static inline u32 process_nonindexed_cmd(struct ctlr_info *h,
2925 u32 raw_tag)
2926{
2927 u32 tag;
2928 struct CommandList *c = NULL;
2929 struct hlist_node *tmp;
2930
2931 tag = hpsa_tag_discard_error_bits(raw_tag);
2932 hlist_for_each_entry(c, tmp, &h->cmpQ, list) {
2933 if ((c->busaddr & 0xFFFFFFE0) == (tag & 0xFFFFFFE0)) {
2934 finish_cmd(c, raw_tag);
2935 return next_command(h);
2936 }
2937 }
2938 bad_tag(h, h->nr_cmds + 1, raw_tag);
2939 return next_command(h);
2940}
2941
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002942static irqreturn_t do_hpsa_intr(int irq, void *dev_id)
2943{
2944 struct ctlr_info *h = dev_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002945 unsigned long flags;
Don Brace303932f2010-02-04 08:42:40 -06002946 u32 raw_tag;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002947
2948 if (interrupt_not_for_us(h))
2949 return IRQ_NONE;
2950 spin_lock_irqsave(&h->lock, flags);
Don Brace303932f2010-02-04 08:42:40 -06002951 raw_tag = get_next_completion(h);
2952 while (raw_tag != FIFO_EMPTY) {
2953 if (hpsa_tag_contains_index(raw_tag))
2954 raw_tag = process_indexed_cmd(h, raw_tag);
2955 else
2956 raw_tag = process_nonindexed_cmd(h, raw_tag);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002957 }
2958 spin_unlock_irqrestore(&h->lock, flags);
2959 return IRQ_HANDLED;
2960}
2961
Don Brace303932f2010-02-04 08:42:40 -06002962/* Send a message CDB to the firmwart. */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08002963static __devinit int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
2964 unsigned char type)
2965{
2966 struct Command {
2967 struct CommandListHeader CommandHeader;
2968 struct RequestBlock Request;
2969 struct ErrDescriptor ErrorDescriptor;
2970 };
2971 struct Command *cmd;
2972 static const size_t cmd_sz = sizeof(*cmd) +
2973 sizeof(cmd->ErrorDescriptor);
2974 dma_addr_t paddr64;
2975 uint32_t paddr32, tag;
2976 void __iomem *vaddr;
2977 int i, err;
2978
2979 vaddr = pci_ioremap_bar(pdev, 0);
2980 if (vaddr == NULL)
2981 return -ENOMEM;
2982
2983 /* The Inbound Post Queue only accepts 32-bit physical addresses for the
2984 * CCISS commands, so they must be allocated from the lower 4GiB of
2985 * memory.
2986 */
2987 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
2988 if (err) {
2989 iounmap(vaddr);
2990 return -ENOMEM;
2991 }
2992
2993 cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
2994 if (cmd == NULL) {
2995 iounmap(vaddr);
2996 return -ENOMEM;
2997 }
2998
2999 /* This must fit, because of the 32-bit consistent DMA mask. Also,
3000 * although there's no guarantee, we assume that the address is at
3001 * least 4-byte aligned (most likely, it's page-aligned).
3002 */
3003 paddr32 = paddr64;
3004
3005 cmd->CommandHeader.ReplyQueue = 0;
3006 cmd->CommandHeader.SGList = 0;
3007 cmd->CommandHeader.SGTotal = 0;
3008 cmd->CommandHeader.Tag.lower = paddr32;
3009 cmd->CommandHeader.Tag.upper = 0;
3010 memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
3011
3012 cmd->Request.CDBLen = 16;
3013 cmd->Request.Type.Type = TYPE_MSG;
3014 cmd->Request.Type.Attribute = ATTR_HEADOFQUEUE;
3015 cmd->Request.Type.Direction = XFER_NONE;
3016 cmd->Request.Timeout = 0; /* Don't time out */
3017 cmd->Request.CDB[0] = opcode;
3018 cmd->Request.CDB[1] = type;
3019 memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
3020 cmd->ErrorDescriptor.Addr.lower = paddr32 + sizeof(*cmd);
3021 cmd->ErrorDescriptor.Addr.upper = 0;
3022 cmd->ErrorDescriptor.Len = sizeof(struct ErrorInfo);
3023
3024 writel(paddr32, vaddr + SA5_REQUEST_PORT_OFFSET);
3025
3026 for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
3027 tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
Stephen M. Camerona104c992010-02-04 08:42:24 -06003028 if (hpsa_tag_discard_error_bits(tag) == paddr32)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003029 break;
3030 msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
3031 }
3032
3033 iounmap(vaddr);
3034
3035 /* we leak the DMA buffer here ... no choice since the controller could
3036 * still complete the command.
3037 */
3038 if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
3039 dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
3040 opcode, type);
3041 return -ETIMEDOUT;
3042 }
3043
3044 pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
3045
3046 if (tag & HPSA_ERROR_BIT) {
3047 dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
3048 opcode, type);
3049 return -EIO;
3050 }
3051
3052 dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
3053 opcode, type);
3054 return 0;
3055}
3056
3057#define hpsa_soft_reset_controller(p) hpsa_message(p, 1, 0)
3058#define hpsa_noop(p) hpsa_message(p, 3, 0)
3059
3060static __devinit int hpsa_reset_msi(struct pci_dev *pdev)
3061{
3062/* the #defines are stolen from drivers/pci/msi.h. */
3063#define msi_control_reg(base) (base + PCI_MSI_FLAGS)
3064#define PCI_MSIX_FLAGS_ENABLE (1 << 15)
3065
3066 int pos;
3067 u16 control = 0;
3068
3069 pos = pci_find_capability(pdev, PCI_CAP_ID_MSI);
3070 if (pos) {
3071 pci_read_config_word(pdev, msi_control_reg(pos), &control);
3072 if (control & PCI_MSI_FLAGS_ENABLE) {
3073 dev_info(&pdev->dev, "resetting MSI\n");
3074 pci_write_config_word(pdev, msi_control_reg(pos),
3075 control & ~PCI_MSI_FLAGS_ENABLE);
3076 }
3077 }
3078
3079 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
3080 if (pos) {
3081 pci_read_config_word(pdev, msi_control_reg(pos), &control);
3082 if (control & PCI_MSIX_FLAGS_ENABLE) {
3083 dev_info(&pdev->dev, "resetting MSI-X\n");
3084 pci_write_config_word(pdev, msi_control_reg(pos),
3085 control & ~PCI_MSIX_FLAGS_ENABLE);
3086 }
3087 }
3088
3089 return 0;
3090}
3091
3092/* This does a hard reset of the controller using PCI power management
3093 * states.
3094 */
3095static __devinit int hpsa_hard_reset_controller(struct pci_dev *pdev)
3096{
3097 u16 pmcsr, saved_config_space[32];
3098 int i, pos;
3099
3100 dev_info(&pdev->dev, "using PCI PM to reset controller\n");
3101
3102 /* This is very nearly the same thing as
3103 *
3104 * pci_save_state(pci_dev);
3105 * pci_set_power_state(pci_dev, PCI_D3hot);
3106 * pci_set_power_state(pci_dev, PCI_D0);
3107 * pci_restore_state(pci_dev);
3108 *
3109 * but we can't use these nice canned kernel routines on
3110 * kexec, because they also check the MSI/MSI-X state in PCI
3111 * configuration space and do the wrong thing when it is
3112 * set/cleared. Also, the pci_save/restore_state functions
3113 * violate the ordering requirements for restoring the
3114 * configuration space from the CCISS document (see the
3115 * comment below). So we roll our own ....
3116 */
3117
3118 for (i = 0; i < 32; i++)
3119 pci_read_config_word(pdev, 2*i, &saved_config_space[i]);
3120
3121 pos = pci_find_capability(pdev, PCI_CAP_ID_PM);
3122 if (pos == 0) {
3123 dev_err(&pdev->dev,
3124 "hpsa_reset_controller: PCI PM not supported\n");
3125 return -ENODEV;
3126 }
3127
3128 /* Quoting from the Open CISS Specification: "The Power
3129 * Management Control/Status Register (CSR) controls the power
3130 * state of the device. The normal operating state is D0,
3131 * CSR=00h. The software off state is D3, CSR=03h. To reset
3132 * the controller, place the interface device in D3 then to
3133 * D0, this causes a secondary PCI reset which will reset the
3134 * controller."
3135 */
3136
3137 /* enter the D3hot power management state */
3138 pci_read_config_word(pdev, pos + PCI_PM_CTRL, &pmcsr);
3139 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
3140 pmcsr |= PCI_D3hot;
3141 pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr);
3142
3143 msleep(500);
3144
3145 /* enter the D0 power management state */
3146 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
3147 pmcsr |= PCI_D0;
3148 pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr);
3149
3150 msleep(500);
3151
3152 /* Restore the PCI configuration space. The Open CISS
3153 * Specification says, "Restore the PCI Configuration
3154 * Registers, offsets 00h through 60h. It is important to
3155 * restore the command register, 16-bits at offset 04h,
3156 * last. Do not restore the configuration status register,
3157 * 16-bits at offset 06h." Note that the offset is 2*i.
3158 */
3159 for (i = 0; i < 32; i++) {
3160 if (i == 2 || i == 3)
3161 continue;
3162 pci_write_config_word(pdev, 2*i, saved_config_space[i]);
3163 }
3164 wmb();
3165 pci_write_config_word(pdev, 4, saved_config_space[2]);
3166
3167 return 0;
3168}
3169
3170/*
3171 * We cannot read the structure directly, for portability we must use
3172 * the io functions.
3173 * This is for debug only.
3174 */
3175#ifdef HPSA_DEBUG
3176static void print_cfg_table(struct device *dev, struct CfgTable *tb)
3177{
3178 int i;
3179 char temp_name[17];
3180
3181 dev_info(dev, "Controller Configuration information\n");
3182 dev_info(dev, "------------------------------------\n");
3183 for (i = 0; i < 4; i++)
3184 temp_name[i] = readb(&(tb->Signature[i]));
3185 temp_name[4] = '\0';
3186 dev_info(dev, " Signature = %s\n", temp_name);
3187 dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence)));
3188 dev_info(dev, " Transport methods supported = 0x%x\n",
3189 readl(&(tb->TransportSupport)));
3190 dev_info(dev, " Transport methods active = 0x%x\n",
3191 readl(&(tb->TransportActive)));
3192 dev_info(dev, " Requested transport Method = 0x%x\n",
3193 readl(&(tb->HostWrite.TransportRequest)));
3194 dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n",
3195 readl(&(tb->HostWrite.CoalIntDelay)));
3196 dev_info(dev, " Coalesce Interrupt Count = 0x%x\n",
3197 readl(&(tb->HostWrite.CoalIntCount)));
3198 dev_info(dev, " Max outstanding commands = 0x%d\n",
3199 readl(&(tb->CmdsOutMax)));
3200 dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
3201 for (i = 0; i < 16; i++)
3202 temp_name[i] = readb(&(tb->ServerName[i]));
3203 temp_name[16] = '\0';
3204 dev_info(dev, " Server Name = %s\n", temp_name);
3205 dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n",
3206 readl(&(tb->HeartBeat)));
3207}
3208#endif /* HPSA_DEBUG */
3209
3210static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
3211{
3212 int i, offset, mem_type, bar_type;
3213
3214 if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */
3215 return 0;
3216 offset = 0;
3217 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
3218 bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
3219 if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
3220 offset += 4;
3221 else {
3222 mem_type = pci_resource_flags(pdev, i) &
3223 PCI_BASE_ADDRESS_MEM_TYPE_MASK;
3224 switch (mem_type) {
3225 case PCI_BASE_ADDRESS_MEM_TYPE_32:
3226 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
3227 offset += 4; /* 32 bit */
3228 break;
3229 case PCI_BASE_ADDRESS_MEM_TYPE_64:
3230 offset += 8;
3231 break;
3232 default: /* reserved in PCI 2.2 */
3233 dev_warn(&pdev->dev,
3234 "base address is invalid\n");
3235 return -1;
3236 break;
3237 }
3238 }
3239 if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
3240 return i + 1;
3241 }
3242 return -1;
3243}
3244
3245/* If MSI/MSI-X is supported by the kernel we will try to enable it on
3246 * controllers that are capable. If not, we use IO-APIC mode.
3247 */
3248
3249static void __devinit hpsa_interrupt_mode(struct ctlr_info *h,
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003250 struct pci_dev *pdev, u32 board_id)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003251{
3252#ifdef CONFIG_PCI_MSI
3253 int err;
3254 struct msix_entry hpsa_msix_entries[4] = { {0, 0}, {0, 1},
3255 {0, 2}, {0, 3}
3256 };
3257
3258 /* Some boards advertise MSI but don't really support it */
3259 if ((board_id == 0x40700E11) ||
3260 (board_id == 0x40800E11) ||
3261 (board_id == 0x40820E11) || (board_id == 0x40830E11))
3262 goto default_int_mode;
3263 if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) {
3264 dev_info(&pdev->dev, "MSIX\n");
3265 err = pci_enable_msix(pdev, hpsa_msix_entries, 4);
3266 if (!err) {
3267 h->intr[0] = hpsa_msix_entries[0].vector;
3268 h->intr[1] = hpsa_msix_entries[1].vector;
3269 h->intr[2] = hpsa_msix_entries[2].vector;
3270 h->intr[3] = hpsa_msix_entries[3].vector;
3271 h->msix_vector = 1;
3272 return;
3273 }
3274 if (err > 0) {
3275 dev_warn(&pdev->dev, "only %d MSI-X vectors "
3276 "available\n", err);
3277 goto default_int_mode;
3278 } else {
3279 dev_warn(&pdev->dev, "MSI-X init failed %d\n",
3280 err);
3281 goto default_int_mode;
3282 }
3283 }
3284 if (pci_find_capability(pdev, PCI_CAP_ID_MSI)) {
3285 dev_info(&pdev->dev, "MSI\n");
3286 if (!pci_enable_msi(pdev))
3287 h->msi_vector = 1;
3288 else
3289 dev_warn(&pdev->dev, "MSI init failed\n");
3290 }
3291default_int_mode:
3292#endif /* CONFIG_PCI_MSI */
3293 /* if we get here we're going to use the default interrupt mode */
Don Brace303932f2010-02-04 08:42:40 -06003294 h->intr[PERF_MODE_INT] = pdev->irq;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003295}
3296
3297static int hpsa_pci_init(struct ctlr_info *h, struct pci_dev *pdev)
3298{
3299 ushort subsystem_vendor_id, subsystem_device_id, command;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003300 u32 board_id, scratchpad = 0;
3301 u64 cfg_offset;
3302 u32 cfg_base_addr;
3303 u64 cfg_base_addr_index;
Don Brace303932f2010-02-04 08:42:40 -06003304 u32 trans_offset;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003305 int i, prod_index, err;
3306
3307 subsystem_vendor_id = pdev->subsystem_vendor;
3308 subsystem_device_id = pdev->subsystem_device;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003309 board_id = (((u32) (subsystem_device_id << 16) & 0xffff0000) |
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003310 subsystem_vendor_id);
3311
3312 for (i = 0; i < ARRAY_SIZE(products); i++)
3313 if (board_id == products[i].board_id)
3314 break;
3315
3316 prod_index = i;
3317
3318 if (prod_index == ARRAY_SIZE(products)) {
3319 prod_index--;
3320 if (subsystem_vendor_id != PCI_VENDOR_ID_HP ||
3321 !hpsa_allow_any) {
3322 dev_warn(&pdev->dev, "unrecognized board ID:"
3323 " 0x%08lx, ignoring.\n",
3324 (unsigned long) board_id);
3325 return -ENODEV;
3326 }
3327 }
3328 /* check to see if controller has been disabled
3329 * BEFORE trying to enable it
3330 */
3331 (void)pci_read_config_word(pdev, PCI_COMMAND, &command);
3332 if (!(command & 0x02)) {
3333 dev_warn(&pdev->dev, "controller appears to be disabled\n");
3334 return -ENODEV;
3335 }
3336
3337 err = pci_enable_device(pdev);
3338 if (err) {
3339 dev_warn(&pdev->dev, "unable to enable PCI device\n");
3340 return err;
3341 }
3342
3343 err = pci_request_regions(pdev, "hpsa");
3344 if (err) {
3345 dev_err(&pdev->dev, "cannot obtain PCI resources, aborting\n");
3346 return err;
3347 }
3348
3349 /* If the kernel supports MSI/MSI-X we will try to enable that,
3350 * else we use the IO-APIC interrupt assigned to us by system ROM.
3351 */
3352 hpsa_interrupt_mode(h, pdev, board_id);
3353
3354 /* find the memory BAR */
3355 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
3356 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM)
3357 break;
3358 }
3359 if (i == DEVICE_COUNT_RESOURCE) {
3360 dev_warn(&pdev->dev, "no memory BAR found\n");
3361 err = -ENODEV;
3362 goto err_out_free_res;
3363 }
3364
3365 h->paddr = pci_resource_start(pdev, i); /* addressing mode bits
3366 * already removed
3367 */
3368
3369 h->vaddr = remap_pci_mem(h->paddr, 0x250);
3370
3371 /* Wait for the board to become ready. */
3372 for (i = 0; i < HPSA_BOARD_READY_ITERATIONS; i++) {
3373 scratchpad = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
3374 if (scratchpad == HPSA_FIRMWARE_READY)
3375 break;
3376 msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
3377 }
3378 if (scratchpad != HPSA_FIRMWARE_READY) {
3379 dev_warn(&pdev->dev, "board not ready, timed out.\n");
3380 err = -ENODEV;
3381 goto err_out_free_res;
3382 }
3383
3384 /* get the address index number */
3385 cfg_base_addr = readl(h->vaddr + SA5_CTCFG_OFFSET);
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003386 cfg_base_addr &= (u32) 0x0000ffff;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003387 cfg_base_addr_index = find_PCI_BAR_index(pdev, cfg_base_addr);
3388 if (cfg_base_addr_index == -1) {
3389 dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
3390 err = -ENODEV;
3391 goto err_out_free_res;
3392 }
3393
3394 cfg_offset = readl(h->vaddr + SA5_CTMEM_OFFSET);
3395 h->cfgtable = remap_pci_mem(pci_resource_start(pdev,
3396 cfg_base_addr_index) + cfg_offset,
3397 sizeof(h->cfgtable));
Don Brace303932f2010-02-04 08:42:40 -06003398 /* Find performant mode table. */
3399 trans_offset = readl(&(h->cfgtable->TransMethodOffset));
3400 h->transtable = remap_pci_mem(pci_resource_start(pdev,
3401 cfg_base_addr_index)+cfg_offset+trans_offset,
3402 sizeof(*h->transtable));
3403
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003404 h->board_id = board_id;
Don Brace303932f2010-02-04 08:42:40 -06003405 h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands));
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003406 h->product_name = products[prod_index].product_name;
3407 h->access = *(products[prod_index].access);
3408 /* Allow room for some ioctls */
3409 h->nr_cmds = h->max_commands - 4;
3410
3411 if ((readb(&h->cfgtable->Signature[0]) != 'C') ||
3412 (readb(&h->cfgtable->Signature[1]) != 'I') ||
3413 (readb(&h->cfgtable->Signature[2]) != 'S') ||
3414 (readb(&h->cfgtable->Signature[3]) != 'S')) {
3415 dev_warn(&pdev->dev, "not a valid CISS config table\n");
3416 err = -ENODEV;
3417 goto err_out_free_res;
3418 }
3419#ifdef CONFIG_X86
3420 {
3421 /* Need to enable prefetch in the SCSI core for 6400 in x86 */
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003422 u32 prefetch;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003423 prefetch = readl(&(h->cfgtable->SCSI_Prefetch));
3424 prefetch |= 0x100;
3425 writel(prefetch, &(h->cfgtable->SCSI_Prefetch));
3426 }
3427#endif
3428
3429 /* Disabling DMA prefetch for the P600
3430 * An ASIC bug may result in a prefetch beyond
3431 * physical memory.
3432 */
3433 if (board_id == 0x3225103C) {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -06003434 u32 dma_prefetch;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003435 dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
3436 dma_prefetch |= 0x8000;
3437 writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
3438 }
3439
3440 h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
3441 /* Update the field, and then ring the doorbell */
3442 writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
3443 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
3444
3445 /* under certain very rare conditions, this can take awhile.
3446 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
3447 * as we enter this code.)
3448 */
3449 for (i = 0; i < MAX_CONFIG_WAIT; i++) {
3450 if (!(readl(h->vaddr + SA5_DOORBELL) & CFGTBL_ChangeReq))
3451 break;
3452 /* delay and try again */
3453 msleep(10);
3454 }
3455
3456#ifdef HPSA_DEBUG
3457 print_cfg_table(&pdev->dev, h->cfgtable);
3458#endif /* HPSA_DEBUG */
3459
3460 if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple)) {
3461 dev_warn(&pdev->dev, "unable to get board into simple mode\n");
3462 err = -ENODEV;
3463 goto err_out_free_res;
3464 }
3465 return 0;
3466
3467err_out_free_res:
3468 /*
3469 * Deliberately omit pci_disable_device(): it does something nasty to
3470 * Smart Array controllers that pci_enable_device does not undo
3471 */
3472 pci_release_regions(pdev);
3473 return err;
3474}
3475
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003476static void __devinit hpsa_hba_inquiry(struct ctlr_info *h)
3477{
3478 int rc;
3479
3480#define HBA_INQUIRY_BYTE_COUNT 64
3481 h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
3482 if (!h->hba_inquiry_data)
3483 return;
3484 rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
3485 h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
3486 if (rc != 0) {
3487 kfree(h->hba_inquiry_data);
3488 h->hba_inquiry_data = NULL;
3489 }
3490}
3491
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003492static int __devinit hpsa_init_one(struct pci_dev *pdev,
3493 const struct pci_device_id *ent)
3494{
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003495 int i, rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003496 int dac;
3497 struct ctlr_info *h;
3498
3499 if (number_of_controllers == 0)
3500 printk(KERN_INFO DRIVER_NAME "\n");
3501 if (reset_devices) {
3502 /* Reset the controller with a PCI power-cycle */
3503 if (hpsa_hard_reset_controller(pdev) || hpsa_reset_msi(pdev))
3504 return -ENODEV;
3505
3506 /* Some devices (notably the HP Smart Array 5i Controller)
3507 need a little pause here */
3508 msleep(HPSA_POST_RESET_PAUSE_MSECS);
3509
3510 /* Now try to get the controller to respond to a no-op */
3511 for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
3512 if (hpsa_noop(pdev) == 0)
3513 break;
3514 else
3515 dev_warn(&pdev->dev, "no-op failed%s\n",
3516 (i < 11 ? "; re-trying" : ""));
3517 }
3518 }
3519
Don Brace303932f2010-02-04 08:42:40 -06003520 /* Command structures must be aligned on a 32-byte boundary because
3521 * the 5 lower bits of the address are used by the hardware. and by
3522 * the driver. See comments in hpsa.h for more info.
3523 */
3524#define COMMANDLIST_ALIGNMENT 32
3525 BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003526 h = kzalloc(sizeof(*h), GFP_KERNEL);
3527 if (!h)
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003528 return -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003529
3530 h->busy_initializing = 1;
3531 INIT_HLIST_HEAD(&h->cmpQ);
3532 INIT_HLIST_HEAD(&h->reqQ);
3533 mutex_init(&h->busy_shutting_down);
3534 init_completion(&h->scan_wait);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003535 rc = hpsa_pci_init(h, pdev);
3536 if (rc != 0)
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003537 goto clean1;
3538
3539 sprintf(h->devname, "hpsa%d", number_of_controllers);
3540 h->ctlr = number_of_controllers;
3541 number_of_controllers++;
3542 h->pdev = pdev;
3543
3544 /* configure PCI DMA stuff */
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003545 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
3546 if (rc == 0) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003547 dac = 1;
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003548 } else {
3549 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3550 if (rc == 0) {
3551 dac = 0;
3552 } else {
3553 dev_err(&pdev->dev, "no suitable DMA available\n");
3554 goto clean1;
3555 }
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003556 }
3557
3558 /* make sure the board interrupts are off */
3559 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Don Brace303932f2010-02-04 08:42:40 -06003560 rc = request_irq(h->intr[PERF_MODE_INT], do_hpsa_intr,
3561 IRQF_DISABLED, h->devname, h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003562 if (rc) {
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003563 dev_err(&pdev->dev, "unable to get irq %d for %s\n",
Don Brace303932f2010-02-04 08:42:40 -06003564 h->intr[PERF_MODE_INT], h->devname);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003565 goto clean2;
3566 }
3567
Don Brace303932f2010-02-04 08:42:40 -06003568 dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n",
3569 h->devname, pdev->device,
3570 h->intr[PERF_MODE_INT], dac ? "" : " not");
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003571
3572 h->cmd_pool_bits =
3573 kmalloc(((h->nr_cmds + BITS_PER_LONG -
3574 1) / BITS_PER_LONG) * sizeof(unsigned long), GFP_KERNEL);
3575 h->cmd_pool = pci_alloc_consistent(h->pdev,
3576 h->nr_cmds * sizeof(*h->cmd_pool),
3577 &(h->cmd_pool_dhandle));
3578 h->errinfo_pool = pci_alloc_consistent(h->pdev,
3579 h->nr_cmds * sizeof(*h->errinfo_pool),
3580 &(h->errinfo_pool_dhandle));
3581 if ((h->cmd_pool_bits == NULL)
3582 || (h->cmd_pool == NULL)
3583 || (h->errinfo_pool == NULL)) {
3584 dev_err(&pdev->dev, "out of memory");
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003585 rc = -ENOMEM;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003586 goto clean4;
3587 }
3588 spin_lock_init(&h->lock);
Stephen M. Camerona08a8472010-02-04 08:43:16 -06003589 spin_lock_init(&h->scan_lock);
3590 init_waitqueue_head(&h->scan_wait_queue);
3591 h->scan_finished = 1; /* no scan currently in progress */
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003592
3593 pci_set_drvdata(pdev, h);
3594 memset(h->cmd_pool_bits, 0,
3595 ((h->nr_cmds + BITS_PER_LONG -
3596 1) / BITS_PER_LONG) * sizeof(unsigned long));
3597
3598 hpsa_scsi_setup(h);
3599
3600 /* Turn the interrupts on so we can service requests */
3601 h->access.set_intr_mask(h, HPSA_INTR_ON);
3602
Don Brace303932f2010-02-04 08:42:40 -06003603 hpsa_put_ctlr_into_performant_mode(h);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003604 hpsa_hba_inquiry(h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003605 hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
3606 h->busy_initializing = 0;
3607 return 1;
3608
3609clean4:
3610 kfree(h->cmd_pool_bits);
3611 if (h->cmd_pool)
3612 pci_free_consistent(h->pdev,
3613 h->nr_cmds * sizeof(struct CommandList),
3614 h->cmd_pool, h->cmd_pool_dhandle);
3615 if (h->errinfo_pool)
3616 pci_free_consistent(h->pdev,
3617 h->nr_cmds * sizeof(struct ErrorInfo),
3618 h->errinfo_pool,
3619 h->errinfo_pool_dhandle);
Don Brace303932f2010-02-04 08:42:40 -06003620 free_irq(h->intr[PERF_MODE_INT], h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003621clean2:
3622clean1:
3623 h->busy_initializing = 0;
3624 kfree(h);
Stephen M. Cameronecd9aad2010-02-04 08:41:59 -06003625 return rc;
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003626}
3627
3628static void hpsa_flush_cache(struct ctlr_info *h)
3629{
3630 char *flush_buf;
3631 struct CommandList *c;
3632
3633 flush_buf = kzalloc(4, GFP_KERNEL);
3634 if (!flush_buf)
3635 return;
3636
3637 c = cmd_special_alloc(h);
3638 if (!c) {
3639 dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n");
3640 goto out_of_memory;
3641 }
3642 fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
3643 RAID_CTLR_LUNID, TYPE_CMD);
3644 hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_TODEVICE);
3645 if (c->err_info->CommandStatus != 0)
3646 dev_warn(&h->pdev->dev,
3647 "error flushing cache on controller\n");
3648 cmd_special_free(h, c);
3649out_of_memory:
3650 kfree(flush_buf);
3651}
3652
3653static void hpsa_shutdown(struct pci_dev *pdev)
3654{
3655 struct ctlr_info *h;
3656
3657 h = pci_get_drvdata(pdev);
3658 /* Turn board interrupts off and send the flush cache command
3659 * sendcmd will turn off interrupt, and send the flush...
3660 * To write all data in the battery backed cache to disks
3661 */
3662 hpsa_flush_cache(h);
3663 h->access.set_intr_mask(h, HPSA_INTR_OFF);
Don Brace303932f2010-02-04 08:42:40 -06003664 free_irq(h->intr[PERF_MODE_INT], h);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003665#ifdef CONFIG_PCI_MSI
3666 if (h->msix_vector)
3667 pci_disable_msix(h->pdev);
3668 else if (h->msi_vector)
3669 pci_disable_msi(h->pdev);
3670#endif /* CONFIG_PCI_MSI */
3671}
3672
3673static void __devexit hpsa_remove_one(struct pci_dev *pdev)
3674{
3675 struct ctlr_info *h;
3676
3677 if (pci_get_drvdata(pdev) == NULL) {
3678 dev_err(&pdev->dev, "unable to remove device \n");
3679 return;
3680 }
3681 h = pci_get_drvdata(pdev);
3682 mutex_lock(&h->busy_shutting_down);
3683 remove_from_scan_list(h);
3684 hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */
3685 hpsa_shutdown(pdev);
3686 iounmap(h->vaddr);
3687 pci_free_consistent(h->pdev,
3688 h->nr_cmds * sizeof(struct CommandList),
3689 h->cmd_pool, h->cmd_pool_dhandle);
3690 pci_free_consistent(h->pdev,
3691 h->nr_cmds * sizeof(struct ErrorInfo),
3692 h->errinfo_pool, h->errinfo_pool_dhandle);
Don Brace303932f2010-02-04 08:42:40 -06003693 pci_free_consistent(h->pdev, h->reply_pool_size,
3694 h->reply_pool, h->reply_pool_dhandle);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003695 kfree(h->cmd_pool_bits);
Don Brace303932f2010-02-04 08:42:40 -06003696 kfree(h->blockFetchTable);
Stephen M. Cameron339b2b12010-02-04 08:42:50 -06003697 kfree(h->hba_inquiry_data);
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003698 /*
3699 * Deliberately omit pci_disable_device(): it does something nasty to
3700 * Smart Array controllers that pci_enable_device does not undo
3701 */
3702 pci_release_regions(pdev);
3703 pci_set_drvdata(pdev, NULL);
3704 mutex_unlock(&h->busy_shutting_down);
3705 kfree(h);
3706}
3707
3708static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
3709 __attribute__((unused)) pm_message_t state)
3710{
3711 return -ENOSYS;
3712}
3713
3714static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
3715{
3716 return -ENOSYS;
3717}
3718
3719static struct pci_driver hpsa_pci_driver = {
3720 .name = "hpsa",
3721 .probe = hpsa_init_one,
3722 .remove = __devexit_p(hpsa_remove_one),
3723 .id_table = hpsa_pci_device_id, /* id_table */
3724 .shutdown = hpsa_shutdown,
3725 .suspend = hpsa_suspend,
3726 .resume = hpsa_resume,
3727};
3728
Don Brace303932f2010-02-04 08:42:40 -06003729/* Fill in bucket_map[], given nsgs (the max number of
3730 * scatter gather elements supported) and bucket[],
3731 * which is an array of 8 integers. The bucket[] array
3732 * contains 8 different DMA transfer sizes (in 16
3733 * byte increments) which the controller uses to fetch
3734 * commands. This function fills in bucket_map[], which
3735 * maps a given number of scatter gather elements to one of
3736 * the 8 DMA transfer sizes. The point of it is to allow the
3737 * controller to only do as much DMA as needed to fetch the
3738 * command, with the DMA transfer size encoded in the lower
3739 * bits of the command address.
3740 */
3741static void calc_bucket_map(int bucket[], int num_buckets,
3742 int nsgs, int *bucket_map)
3743{
3744 int i, j, b, size;
3745
3746 /* even a command with 0 SGs requires 4 blocks */
3747#define MINIMUM_TRANSFER_BLOCKS 4
3748#define NUM_BUCKETS 8
3749 /* Note, bucket_map must have nsgs+1 entries. */
3750 for (i = 0; i <= nsgs; i++) {
3751 /* Compute size of a command with i SG entries */
3752 size = i + MINIMUM_TRANSFER_BLOCKS;
3753 b = num_buckets; /* Assume the biggest bucket */
3754 /* Find the bucket that is just big enough */
3755 for (j = 0; j < 8; j++) {
3756 if (bucket[j] >= size) {
3757 b = j;
3758 break;
3759 }
3760 }
3761 /* for a command with i SG entries, use bucket b. */
3762 bucket_map[i] = b;
3763 }
3764}
3765
3766static void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
3767{
3768 u32 trans_support;
3769 u64 trans_offset;
3770 /* 5 = 1 s/g entry or 4k
3771 * 6 = 2 s/g entry or 8k
3772 * 8 = 4 s/g entry or 16k
3773 * 10 = 6 s/g entry or 24k
3774 */
3775 int bft[8] = {5, 6, 8, 10, 12, 20, 28, 35}; /* for scatter/gathers */
3776 int i = 0;
3777 int l = 0;
3778 unsigned long register_value;
3779
3780 trans_support = readl(&(h->cfgtable->TransportSupport));
3781 if (!(trans_support & PERFORMANT_MODE))
3782 return;
3783
3784 h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands));
3785 h->max_sg_entries = 32;
3786 /* Performant mode ring buffer and supporting data structures */
3787 h->reply_pool_size = h->max_commands * sizeof(u64);
3788 h->reply_pool = pci_alloc_consistent(h->pdev, h->reply_pool_size,
3789 &(h->reply_pool_dhandle));
3790
3791 /* Need a block fetch table for performant mode */
3792 h->blockFetchTable = kmalloc(((h->max_sg_entries+1) *
3793 sizeof(u32)), GFP_KERNEL);
3794
3795 if ((h->reply_pool == NULL)
3796 || (h->blockFetchTable == NULL))
3797 goto clean_up;
3798
3799 h->reply_pool_wraparound = 1; /* spec: init to 1 */
3800
3801 /* Controller spec: zero out this buffer. */
3802 memset(h->reply_pool, 0, h->reply_pool_size);
3803 h->reply_pool_head = h->reply_pool;
3804
3805 trans_offset = readl(&(h->cfgtable->TransMethodOffset));
3806 bft[7] = h->max_sg_entries + 4;
3807 calc_bucket_map(bft, ARRAY_SIZE(bft), 32, h->blockFetchTable);
3808 for (i = 0; i < 8; i++)
3809 writel(bft[i], &h->transtable->BlockFetch[i]);
3810
3811 /* size of controller ring buffer */
3812 writel(h->max_commands, &h->transtable->RepQSize);
3813 writel(1, &h->transtable->RepQCount);
3814 writel(0, &h->transtable->RepQCtrAddrLow32);
3815 writel(0, &h->transtable->RepQCtrAddrHigh32);
3816 writel(h->reply_pool_dhandle, &h->transtable->RepQAddr0Low32);
3817 writel(0, &h->transtable->RepQAddr0High32);
3818 writel(CFGTBL_Trans_Performant,
3819 &(h->cfgtable->HostWrite.TransportRequest));
3820 writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
3821 /* under certain very rare conditions, this can take awhile.
3822 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
3823 * as we enter this code.) */
3824 for (l = 0; l < MAX_CONFIG_WAIT; l++) {
3825 register_value = readl(h->vaddr + SA5_DOORBELL);
3826 if (!(register_value & CFGTBL_ChangeReq))
3827 break;
3828 /* delay and try again */
3829 set_current_state(TASK_INTERRUPTIBLE);
3830 schedule_timeout(10);
3831 }
3832 register_value = readl(&(h->cfgtable->TransportActive));
3833 if (!(register_value & CFGTBL_Trans_Performant)) {
3834 dev_warn(&h->pdev->dev, "unable to get board into"
3835 " performant mode\n");
3836 return;
3837 }
3838
3839 /* Change the access methods to the performant access methods */
3840 h->access = SA5_performant_access;
3841 h->transMethod = CFGTBL_Trans_Performant;
3842
3843 return;
3844
3845clean_up:
3846 if (h->reply_pool)
3847 pci_free_consistent(h->pdev, h->reply_pool_size,
3848 h->reply_pool, h->reply_pool_dhandle);
3849 kfree(h->blockFetchTable);
3850}
3851
Stephen M. Cameronedd16362009-12-08 14:09:11 -08003852/*
3853 * This is it. Register the PCI driver information for the cards we control
3854 * the OS will call our registered routines when it finds one of our cards.
3855 */
3856static int __init hpsa_init(void)
3857{
3858 int err;
3859 /* Start the scan thread */
3860 hpsa_scan_thread = kthread_run(hpsa_scan_func, NULL, "hpsa_scan");
3861 if (IS_ERR(hpsa_scan_thread)) {
3862 err = PTR_ERR(hpsa_scan_thread);
3863 return -ENODEV;
3864 }
3865 err = pci_register_driver(&hpsa_pci_driver);
3866 if (err)
3867 kthread_stop(hpsa_scan_thread);
3868 return err;
3869}
3870
3871static void __exit hpsa_cleanup(void)
3872{
3873 pci_unregister_driver(&hpsa_pci_driver);
3874 kthread_stop(hpsa_scan_thread);
3875}
3876
3877module_init(hpsa_init);
3878module_exit(hpsa_cleanup);